diff --git a/app-admin/glance/Manifest b/app-admin/glance/Manifest new file mode 100644 index 000000000000..006bf7a560f4 --- /dev/null +++ b/app-admin/glance/Manifest @@ -0,0 +1 @@ +DIST glance-2012.2.1.tar.gz 636828 SHA256 1c806f434e4f69bb7c5e30bbabb77df39849baffa310d03e7fd995ece681a2fc SHA512 d88b8108506dc71adc1acc614e036694768fc5564e756cfda8eff05b08e647b061d9b97d78a5561fad88f233fd35549a7728125df9132178b36698f37ebfc3fb WHIRLPOOL 0fb585b43360e875c32841e26711d1c336f7c2b0aee105152798fa0ff99b9066124bf145b3e1dea758ceab74bac0b9d83c2ebaf222960d13e13dabb11c99cdce diff --git a/app-admin/glance/files/glance.confd b/app-admin/glance/files/glance.confd new file mode 100644 index 000000000000..4eb2893090a0 --- /dev/null +++ b/app-admin/glance/files/glance.confd @@ -0,0 +1 @@ +PID_PATH=/var/run/glance diff --git a/app-admin/glance/files/glance.initd b/app-admin/glance/files/glance.initd new file mode 100644 index 000000000000..342c0d6cfec9 --- /dev/null +++ b/app-admin/glance/files/glance.initd @@ -0,0 +1,51 @@ +#!/sbin/runscript +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/glance/files/glance.initd,v 1.1 2013/01/20 06:39:20 prometheanfire Exp $ + +depend() { + need net +} + +BASENAME=$(echo $SVCNAME | cut -d '-' -f 1) +SERVERNAME=$(echo $SVCNAME | cut -d '-' -f 2) + +checkconfig() { + if [ ! -r /etc/conf.d/$BASENAME ]; then + eerror "No glance conf.dfile found: /etc/conf.d/$BASENAME)" + return 1 + fi + if [ ! -r /etc/glance/${SVCNAME}.conf ]; then + eerror "No ${BASENAME} config file found: /etc/glance/${SVCNAME}.conf)" + return 1 + fi + return 0 +} + + +start() { + checkconfig || return $? + . /etc/conf.d/$BASENAME + + ebegin "Starting ${SVCNAME}" + + start-stop-daemon --start --quiet --pidfile "${PID_PATH}/${SVCENAME}.pid" \ + --exec /usr/bin/glance-control -- ${SERVERNAME} start + + eend $? "Failed to start ${SVCNAME}" +} + +stop() { + checkconfig || return $? + . /etc/conf.d/$BASENAME + + ebegin "Stopping ${SVCNAME}" + + start-stop-daemon --stop --quiet --pidfile "${PID_PATH}/${SVCNAME}.pid" \ + --exec /usr/bin/glance-control -- ${SERVERNAME} stop + eend $? "Failed to stop ${SVCNAME}" +} + +#restart() { +# +#} diff --git a/app-admin/glance/glance-2012.2.1.ebuild b/app-admin/glance/glance-2012.2.1.ebuild new file mode 100644 index 000000000000..4b28890edb6d --- /dev/null +++ b/app-admin/glance/glance-2012.2.1.ebuild @@ -0,0 +1,63 @@ +# 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-2012.2.1.ebuild,v 1.1 2013/01/20 06:39:20 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}/folsom/${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-2.1.1 + dev-python/anyjson[${PYTHON_USEDEP}] + dev-python/eventlet + dev-python/greenlet + dev-python/httplib2[${PYTHON_USEDEP}] + dev-python/iso8601[${PYTHON_USEDEP}] + dev-python/jsonschema[${PYTHON_USEDEP}] + dev-python/kombu + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/passlib[${PYTHON_USEDEP}] + dev-python/paste + dev-python/pastedeploy + dev-python/pycrypto + dev-python/python-glanceclient[${PYTHON_USEDEP}] + dev-python/routes + >=dev-python/sqlalchemy-migrate-0.7 + >=dev-python/webob-1.0.8 + virtual/python-argparse[${PYTHON_USEDEP}] + swift? ( + >=dev-python/python-swiftclient-1.2[${PYTHON_USEDEP}] + + + + + prometheanfire@gentoo.org + + + Provides services for discovering, registering, and retrieving virtual + machine images. Glance has a RESTful API that allows querying of VM image + metadata as well as retrieval of the actual image. + + + Adds swift storage support + + + diff --git a/app-admin/localepurge/localepurge-0.5.4-r1.ebuild b/app-admin/localepurge/localepurge-0.5.4-r1.ebuild index a1d6a806a977..ba5ca61eabe0 100644 --- a/app-admin/localepurge/localepurge-0.5.4-r1.ebuild +++ b/app-admin/localepurge/localepurge-0.5.4-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/localepurge/localepurge-0.5.4-r1.ebuild,v 1.6 2013/01/13 17:53:05 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/localepurge/localepurge-0.5.4-r1.ebuild,v 1.7 2013/01/20 10:51:13 ago Exp $ EAPI=4 @@ -13,7 +13,7 @@ SRC_URI="http://dev.gentoo.org/~hwoarang/distfiles/${P}.tbz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos" IUSE="" DEPEND="" diff --git a/app-arch/rpm/rpm-4.10.2.ebuild b/app-arch/rpm/rpm-4.10.2.ebuild index 497bec11c42a..8241b426acb5 100644 --- a/app-arch/rpm/rpm-4.10.2.ebuild +++ b/app-arch/rpm/rpm-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/app-arch/rpm/rpm-4.10.2.ebuild,v 1.4 2013/01/07 19:22:57 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.10.2.ebuild,v 1.6 2013/01/20 17:20:55 ago Exp $ EAPI=4 @@ -14,7 +14,7 @@ SRC_URI="http://rpm.org/releases/rpm-$(get_version_component_range 1-2).x/${P}.t LICENSE="GPL-2 LGPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86" IUSE="nls python doc caps lua acl selinux" diff --git a/app-backup/snapback2/Manifest b/app-backup/snapback2/Manifest index 734a136ce8f8..b90bead06d9e 100644 --- a/app-backup/snapback2/Manifest +++ b/app-backup/snapback2/Manifest @@ -1,2 +1,3 @@ DIST Snapback2-0.11.tar.gz 28695 SHA256 31986e558b4f1f410d5d4243c7f1d10eea6c983d433c3def51e36de9ccac330f SHA512 fc7c77c347b4141081726ea15d53d64a28945c9bcd31d072cefd11066751fe2cadca6c143e17163ddfaa4ab74dc10c657ceb302a08b5fbbf196df0460f8c543d WHIRLPOOL 5a1a9d5ab4a4b6bd57cdad6e9d19da646e3b4e2b6d0997dfa1952cded70f847a0badc57ae95fb7546523b5489ea58ec6509709440531d3bd6db661f297d55954 DIST Snapback2-0.917.tar.gz 30449 SHA256 1cf0ea6034adb6b8d90f4d0446cde931c022715fe28403c4fbd94138c99d4ce6 SHA512 5f8e5bc578186881b4653c396d4f797dfb648ab7f40957f344c355ffef623f5ce662d907597fbb2d4b46a9d9ee4f866b0705095f3af81e9779ab76883e3ff3d4 WHIRLPOOL aa0bbee3c2f00497282764477c68e229d1dbcb0877450015819732fc39a509f63eb2f6b2953b776de99526b3d2b8d84bde9a4fde13483d83087be759286e4353 +DIST Snapback2-1.001.tar.gz 31099 SHA256 64512b0aae7df5bf80a74cc9e89c15fbe7c09aa435ea85d38f4b9f582aabecd2 SHA512 11d4a02fffd668f852e93554afbf7c76d1b06fd2cf88e3681489f206e8b1f8a21ae2b3718730f547660c4bcf3bef7eb358c4c809382199c864483ec9d4ab3983 WHIRLPOOL 790e847c2d5586ac104a6719f66b023ff28151b126e332a6d7bce7eda5c659e9f75675dc90c31fb1a4336099b40a1bcd4a00a0429afefeed0bdaa548a29e0072 diff --git a/app-backup/snapback2/metadata.xml b/app-backup/snapback2/metadata.xml index 00c5d737123e..ab80d6aa74bb 100644 --- a/app-backup/snapback2/metadata.xml +++ b/app-backup/snapback2/metadata.xml @@ -2,7 +2,9 @@ app-backup + perl Snapback2 + Backup::Snapback diff --git a/app-backup/snapback2/snapback2-1.1.0.ebuild b/app-backup/snapback2/snapback2-1.1.0.ebuild new file mode 100644 index 000000000000..4b374b097420 --- /dev/null +++ b/app-backup/snapback2/snapback2-1.1.0.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/app-backup/snapback2/snapback2-1.1.0.ebuild,v 1.1 2013/01/20 10:40:55 tove Exp $ + +MY_PN=Snapback2 +MODULE_AUTHOR=MIKEH +MODULE_VERSION=1.001 +inherit perl-module + +DESCRIPTION="Routines for support of rsync-based snapshot backup" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + dev-perl/Config-ApacheFormat +" + +#SRC_TEST=do diff --git a/app-crypt/gnupg/files/gnupg-2.0.17-gpgsm-gencert.patch b/app-crypt/gnupg/files/gnupg-2.0.17-gpgsm-gencert.patch index 88a95fac0072..9506f814378d 100644 --- a/app-crypt/gnupg/files/gnupg-2.0.17-gpgsm-gencert.patch +++ b/app-crypt/gnupg/files/gnupg-2.0.17-gpgsm-gencert.patch @@ -4,6 +4,8 @@ Date: Sun, 17 Apr 2011 01:34:39 +0200 Subject: [PATCH] gpgsm-gencert.sh: make sure not to abort after creating temp file. +https://bugs.g10code.com/gnupg/issue1466 + --- tools/gpgsm-gencert.sh | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app-crypt/gnupg/files/gnupg-2.0.17-libgrcrypt150-bugfix.patch b/app-crypt/gnupg/files/gnupg-2.0.17-libgrcrypt150-bugfix.patch deleted file mode 100644 index 34f4348bcd4f..000000000000 --- a/app-crypt/gnupg/files/gnupg-2.0.17-libgrcrypt150-bugfix.patch +++ /dev/null @@ -1,38 +0,0 @@ -From 13290b0e0fcf3a493e4848b29329d56b69bc4dd9 Mon Sep 17 00:00:00 2001 -From: Werner Koch -Date: Mon, 13 Jun 2011 14:35:30 +0200 -Subject: [PATCH] Fix a for a bug fix in the latest Libgcrypt. - - * pkglue.c (mpi_from_sexp, pk_decrypt): Use GCRYMPI_FMT_USG for - gcry_sexp_nth_mpi. This fixes a problem with a recent bug fix in - Libgcrypt. - -diff --git a/g10/pkglue.c b/g10/pkglue.c -index cbfe21e..5c47511 100644 ---- a/g10/pkglue.c -+++ b/g10/pkglue.c -@@ -34,10 +34,10 @@ mpi_from_sexp (gcry_sexp_t sexp, const char * item) - { - gcry_sexp_t list; - gcry_mpi_t data; -- -+ - list = gcry_sexp_find_token (sexp, item, 0); - assert (list); -- data = gcry_sexp_nth_mpi (list, 1, 0); -+ data = gcry_sexp_nth_mpi (list, 1, GCRYMPI_FMT_USG); - assert (data); - gcry_sexp_release (list); - return data; -@@ -293,7 +293,7 @@ pk_decrypt (int algo, gcry_mpi_t * result, gcry_mpi_t * data, - if (rc) - return rc; - -- *result = gcry_sexp_nth_mpi (s_plain, 0, 0); -+ *result = gcry_sexp_nth_mpi (s_plain, 0, GCRYMPI_FMT_USG); - gcry_sexp_release (s_plain); - if (!*result) - return -1; /* oops */ --- -1.7.1 - diff --git a/app-crypt/gnupg/gnupg-1.4.13-r1.ebuild b/app-crypt/gnupg/gnupg-1.4.13-r1.ebuild new file mode 100644 index 000000000000..d5ba5f82a520 --- /dev/null +++ b/app-crypt/gnupg/gnupg-1.4.13-r1.ebuild @@ -0,0 +1,121 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.13-r1.ebuild,v 1.1 2013/01/19 20:12:23 alonbl Exp $ + +EAPI="4" + +inherit eutils flag-o-matic toolchain-funcs + +ECCVER="0.2.0" +ECCVER_GNUPG="1.4.9" +ECC_PATCH="${PN}-${ECCVER_GNUPG}-ecc${ECCVER}.diff" +MY_P=${P/_/} + +DESCRIPTION="The GNU Privacy Guard, a GPL pgp replacement" +HOMEPAGE="http://www.gnupg.org/" +SRC_URI="mirror://gnupg/gnupg/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos" +IUSE="bzip2 curl ldap mta nls readline selinux smartcard static usb zlib linguas_ru" + +COMMON_DEPEND=" + ldap? ( net-nds/openldap ) + bzip2? ( app-arch/bzip2 ) + zlib? ( sys-libs/zlib ) + curl? ( net-misc/curl ) + mta? ( virtual/mta ) + readline? ( sys-libs/readline ) + smartcard? ( =virtual/libusb-0* ) + usb? ( =virtual/libusb-0* )" + +RDEPEND="!static? ( ${COMMON_DEPEND} ) + selinux? ( sec-policy/selinux-gpg ) + nls? ( virtual/libintl )" + +DEPEND="${COMMON_DEPEND} + dev-lang/perl + nls? ( sys-devel/gettext )" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + # Install RU man page in right location + sed -e "/^man_MANS =/s/ gpg\.ru\.1//" -i doc/Makefile.in || die "sed doc/Makefile.in failed" + + # Fix PIC definitions + sed -i -e 's:PIC:__PIC__:' mpi/i386/mpih-{add,sub}1.S intl/relocatable.c \ + || die "sed PIC failed" + sed -i -e 's:if PIC:ifdef __PIC__:' mpi/sparc32v8/mpih-mul{1,2}.S || \ + die "sed PIC failed" +} + +src_configure() { + # Certain sparc32 machines seem to have trouble building correctly with + # -mcpu enabled. While this is not a gnupg problem, it is a temporary + # fix until the gcc problem can be tracked down. + if [ "${ARCH}" == "sparc" ] && [ "${PROFILE_ARCH}" == "sparc" ]; then + filter-flags -mcpu=supersparc -mcpu=v8 -mcpu=v7 + fi + + # 'USE=static' support was requested in #29299 + use static && append-ldflags -static + + econf \ + --docdir="${EPREFIX}/usr/share/doc/${PF}" \ + $(use_enable ldap) \ + $(use_enable mta mailto) \ + --enable-hkp \ + --enable-finger \ + $(use_with !zlib included-zlib) \ + $(use_with curl libcurl /usr) \ + $(use_enable nls) \ + $(use_enable bzip2) \ + $(use_enable smartcard card-support) \ + $(use_enable selinux selinux-support) \ + --without-capabilities \ + $(use_with readline) \ + $(use_with usb libusb /usr) \ + --enable-static-rnd=linux \ + --libexecdir="${EPREFIX}/usr/libexec" \ + --enable-noexecstack \ + CC_FOR_BUILD=$(tc-getBUILD_CC) \ + ${myconf} +} + +src_install() { + emake DESTDIR="${D}" install + + # keep the documentation in /usr/share/doc/... + rm -rf "${ED}usr/share/gnupg/FAQ" "${ED}usr/share/gnupg/faq.html" || die + + dodoc AUTHORS BUGS ChangeLog NEWS PROJECTS README THANKS \ + TODO VERSION doc/{FAQ,HACKING,DETAILS,OpenPGP} + + exeinto /usr/libexec/gnupg + doexe tools/make-dns-cert + + # install RU documentation in right location + if use linguas_ru; then + cp doc/gpg.ru.1 "${T}/gpg.1" || die + doman -i18n=ru "${T}/gpg.1" + fi +} + +pkg_postinst() { + ewarn "If you are using a non-Linux system, or a kernel older than 2.6.9," + ewarn "you MUST make the gpg binary setuid." + echo +# if use !bindist && use ecc; then +# ewarn +# ewarn "The elliptical curves patch is experimental" +# ewarn "Further info available at http://alumnes.eps.udl.es/%7Ed4372211/index.en.html" +# fi + elog + elog "See http://www.gentoo.org/doc/en/gnupg-user.xml for documentation on gnupg" + elog + elog "If you wish to view images emerge:" + elog "media-gfx/xloadimage, media-gfx/xli or any other viewer" + elog "Remember to use photo-viewer option in configuration file to activate the right viewer" +} diff --git a/app-crypt/gnupg/gnupg-2.0.19-r1.ebuild b/app-crypt/gnupg/gnupg-2.0.19-r1.ebuild index f71934b575f1..e941338dde3f 100644 --- a/app-crypt/gnupg/gnupg-2.0.19-r1.ebuild +++ b/app-crypt/gnupg/gnupg-2.0.19-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-crypt/gnupg/gnupg-2.0.19-r1.ebuild,v 1.2 2013/01/12 20:46:31 alonbl Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.19-r1.ebuild,v 1.3 2013/01/19 20:12:23 alonbl Exp $ EAPI="4" @@ -14,7 +14,7 @@ SRC_URI="mirror://gnupg/gnupg/${P}.tar.bz2" LICENSE="GPL-3" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="adns bzip2 doc ldap nls readline static selinux smartcard usb" +IUSE="adns bzip2 doc ldap nls mta readline static selinux smartcard usb" COMMON_DEPEND_LIBS=" >=dev-libs/libassuan-2 @@ -49,7 +49,7 @@ DEPEND="${COMMON_DEPEND_LIBS} RDEPEND="!static? ( ${COMMON_DEPEND_LIBS} ) ${COMMON_DEPEND_BINS} - virtual/mta + mta? ( virtual/mta ) !<=app-crypt/gnupg-2.0.1 selinux? ( sec-policy/selinux-gpg ) nls? ( virtual/libintl )" @@ -84,6 +84,7 @@ src_configure() { $(use_enable bzip2) \ $(use_enable !elibc_SunOS symcryptrun) \ $(use_enable nls) \ + $(use_enable mta mailto) \ $(use_enable ldap) \ $(use_with readline) \ CC_FOR_BUILD="$(tc-getBUILD_CC)" diff --git a/app-crypt/gnupg/metadata.xml b/app-crypt/gnupg/metadata.xml index c7353c640b37..10f7c80896d7 100644 --- a/app-crypt/gnupg/metadata.xml +++ b/app-crypt/gnupg/metadata.xml @@ -21,5 +21,9 @@ Build direct CCID access for scdaemon; requires dev-libs/libusb. + + Build mta support using + virtual/mta. + diff --git a/app-crypt/johntheripper/johntheripper-1.7.9-r6.ebuild b/app-crypt/johntheripper/johntheripper-1.7.9-r6.ebuild index 12c478baf721..2a4ff57c4f5b 100644 --- a/app-crypt/johntheripper/johntheripper-1.7.9-r6.ebuild +++ b/app-crypt/johntheripper/johntheripper-1.7.9-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/app-crypt/johntheripper/johntheripper-1.7.9-r6.ebuild,v 1.4 2013/01/11 15:24:47 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/johntheripper/johntheripper-1.7.9-r6.ebuild,v 1.6 2013/01/20 13:10:06 ago Exp $ EAPI="4" @@ -19,7 +19,7 @@ SRC_URI="http://www.openwall.com/john/g/${MY_P}.tar.bz2 LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos" +KEYWORDS="alpha amd64 arm ~hppa ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos" #Remove AltiVec USE flag. Appears to be an upstream issue. IUSE="cuda custom-cflags -minimal mmx mpi opencl openmp sse2" REQUIRED_USE="openmp? ( !minimal ) diff --git a/app-dicts/libydpdict/metadata.xml b/app-dicts/libydpdict/metadata.xml index 92feba4ea7b2..90e65ac35ec4 100644 --- a/app-dicts/libydpdict/metadata.xml +++ b/app-dicts/libydpdict/metadata.xml @@ -1,10 +1,6 @@ - - spock@gentoo.org - Michał Januszewski - peper@gentoo.org Piotr Jaroszyński diff --git a/app-dicts/ydpdict/metadata.xml b/app-dicts/ydpdict/metadata.xml index 92feba4ea7b2..90e65ac35ec4 100644 --- a/app-dicts/ydpdict/metadata.xml +++ b/app-dicts/ydpdict/metadata.xml @@ -1,10 +1,6 @@ - - spock@gentoo.org - Michał Januszewski - peper@gentoo.org Piotr Jaroszyński diff --git a/app-doc/abs-guide/Manifest b/app-doc/abs-guide/Manifest index 22846a64caea..752bfdc618cc 100644 --- a/app-doc/abs-guide/Manifest +++ b/app-doc/abs-guide/Manifest @@ -1,4 +1,4 @@ -DIST abs-guide-6.4.pdf 3225292 SHA256 b27a1eac03e8b178f4114383f2c8e901582c58ac5d0512d58aab3dfda89abd20 SHA512 6f2c14d72707eba5c60605faf545366a53c99da5eec69f6f82cb8806876f49426d6a49aa182afc08310f733de5cbc08a7d0ee7e86690eb2027f8d596099e2335 WHIRLPOOL 5c35cd5c7d2660c5cdc4e65b44db7c328e23bdf1c56594ba397fe55310e51115367b4c1f473580c122cd8c0c8384083e48e3d1e5bdadab61da121402fc4d734a -DIST abs-guide-6.4.tar.bz2 1106541 SHA256 cde28ab053e65ce9ad5686e4f13672d675cb28dce7f5500a16e6792f44028060 SHA512 41b720af51d0f25ffd2262c9e1100b471885910c931c35925c3481506dee6c08ccdbe96867f3c98287ee4ce7656ac208b60c1642ddb34fe6a4bda6338b7bddd7 WHIRLPOOL 4a9222e653432dbde2c45f51cce96bc0211b55cf3c3f2b7c54d7ddcca206ccd9d73ef2693ccbc5c0c898bba5a8d94fa7abdf46afe5de33256c1103a445d85912 DIST abs-guide-6.5.pdf 3307182 SHA256 923c02a01d6e91a0795cd72db8fd735e1952e7a9057a3eb39d9ef17a65272daa SHA512 e5c05f5b9d36370bf2b50d4b55f899cec673c036ddf9cb9c23844db11d4d5d235e56d4defe905f1a998f7e3612b51da2885e39c177d66878f1b97dd931083957 WHIRLPOOL cb960d53186ccff4e48d16ce2990b06aed1e02938372c6c75170364040150b1b08bbdc5cebef66a5da32286371c771849d7c81ef41d8d47c7c2d29edf3f0818e DIST abs-guide-6.5.tar.bz2 1109831 SHA256 ee8ae00d60bb2e922a48c481dcc1b2f8cb9459587ba848dafe625816eeb25df1 SHA512 9bbaf9e86b6784aedf8c70f06fafb0c3c85127e606771f48b42aadcd8109a7c5059bc339c1b3444e6e088dc63328f5bca49415f6ab3b39e95682cfe5d094854c WHIRLPOOL 7f8567ad0c3e5917c56c47bbbea4ea53e4b3a1ce57cc30e9fca6858c920819e4cc797c77aa28bb72cf15f2bc0fd9026656bd93e4d42b6d009e61b6aa7c574e6b +DIST abs-guide-6.6.pdf 3348750 SHA256 dc3ab7f8cdd8516e8758dafb943d39ecee6ab289c171507ea4290478749bc970 SHA512 4338edbd19faf256bc857ecbb596f54a05a687583c4cadc76deb97fa50317c58a3b6b7833649b5209b78d32887d08776d8d2e0b0deaaa915e886505b5ead41c1 WHIRLPOOL 777745b854a3c92efaf94c5aa8206a1e19840a78546f39cfb8563015614bee1502f29a20e46510b8307f8f414478937126cd02807ae77cf3a9d3576c85cc9b47 +DIST abs-guide-6.6.tar.bz2 1136823 SHA256 922369ab87545c3ae3118122328508ad201a0893fc09ec474bb88e987777f07a SHA512 506590b8279f6719cbbaa18f4468b1f8b99f9ed3b490475426236fcfcc7a479552c579648d5475e047418de1e56e899288150586bf04ba8e1075a6040f50d7a9 WHIRLPOOL 2dd00b9c8915fa90fae37878c2b651b601a7ee52bd0f1b30dbb49a77574e57a92994e07efa77d6270154c80febb568d30a5110ad28cb51c19553a051aada9662 diff --git a/app-doc/abs-guide/abs-guide-6.4.ebuild b/app-doc/abs-guide/abs-guide-6.6.ebuild similarity index 58% rename from app-doc/abs-guide/abs-guide-6.4.ebuild rename to app-doc/abs-guide/abs-guide-6.6.ebuild index 43478e584850..56cf8570ccc7 100644 --- a/app-doc/abs-guide/abs-guide-6.4.ebuild +++ b/app-doc/abs-guide/abs-guide-6.6.ebuild @@ -1,22 +1,22 @@ -# 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-doc/abs-guide/abs-guide-6.4.ebuild,v 1.2 2012/01/02 04:52:35 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-doc/abs-guide/abs-guide-6.6.ebuild,v 1.1 2013/01/20 06:16:05 dirtyepic Exp $ EAPI="4" DESCRIPTION="An advanced reference and a tutorial on bash shell scripting" HOMEPAGE="http://www.tldp.org/LDP/abs/html" -# Upstream likes to update the tarball without changing the name. -# - fetch http://bash.webofcrafts.net/abs-guide-latest.tar.bz2 -# - fetch http://bash.webofcrafts.net/abs-guide.pdf +# Upstream likes to update the tarballs without changing the names. +# - http://bash.deta.in/abs-guide-${PV}.tar.bz2 +# - http://bash.deta.in/abs-guide.pdf <- remember to rename with ${PV} SRC_URI="http://dev.gentoo.org/~dirtyepic/dist/${P}.tar.bz2 - pdf? ( http://dev.gentoo.org/~dirtyepic/dist/${P}.pdf )" + pdf? ( http://dev.gentoo.org/~dirtyepic/dist/${P}.pdf )" LICENSE="OPL" IUSE="pdf" SLOT="0" -KEYWORDS="alpha amd64 hppa ~mips ppc sparc x86" +KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86" DEPEND="" RDEPEND="" diff --git a/app-emacs/gentoo-syntax/gentoo-syntax-1.20.ebuild b/app-emacs/gentoo-syntax/gentoo-syntax-1.20.ebuild index 7676ce04a658..5a93ef02b1ab 100644 --- a/app-emacs/gentoo-syntax/gentoo-syntax-1.20.ebuild +++ b/app-emacs/gentoo-syntax/gentoo-syntax-1.20.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-emacs/gentoo-syntax/gentoo-syntax-1.20.ebuild,v 1.5 2013/01/17 16:39:25 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/gentoo-syntax/gentoo-syntax-1.20.ebuild,v 1.6 2013/01/20 10:25:21 ago Exp $ EAPI=4 @@ -12,7 +12,7 @@ SRC_URI="mirror://gentoo/${P}.tar.bz2" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~alpha amd64 hppa ~ia64 ppc ppc64 ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +KEYWORDS="alpha amd64 hppa ~ia64 ppc ppc64 ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" DOCS="ChangeLog keyword-generation.sh" ELISP_TEXINFO="${PN}.texi" diff --git a/app-emacs/sml-mode/sml-mode-6.1-r1.ebuild b/app-emacs/sml-mode/sml-mode-6.1-r1.ebuild index 1071c1ae8413..1b50a47d4f96 100644 --- a/app-emacs/sml-mode/sml-mode-6.1-r1.ebuild +++ b/app-emacs/sml-mode/sml-mode-6.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/app-emacs/sml-mode/sml-mode-6.1-r1.ebuild,v 1.4 2013/01/11 11:16:31 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/sml-mode/sml-mode-6.1-r1.ebuild,v 1.5 2013/01/20 10:51:32 ago Exp $ EAPI=4 @@ -13,7 +13,7 @@ SRC_URI="mirror://gentoo/${P}.el.xz" LICENSE="GPL-3+" SLOT="0" -KEYWORDS="~alpha amd64 ppc x86" +KEYWORDS="alpha amd64 ppc x86" DEPEND="app-arch/xz-utils" diff --git a/app-emulation/open-vm-tools-kmod/Manifest b/app-emulation/open-vm-tools-kmod/Manifest index 55154fcb773d..37dafb2c705e 100644 --- a/app-emulation/open-vm-tools-kmod/Manifest +++ b/app-emulation/open-vm-tools-kmod/Manifest @@ -1,4 +1,4 @@ -DIST open-vm-tools-2012.05.21-724730.tar.gz 3567582 SHA256 c7daaaf0ed031cd36295cf10d51dbbdedeb1eb0015e49f0806620792f8dab71b SHA512 54f3d1f052720994432c2b657d8f6c3b16a90aae39e9fec2671def34d57019b58e1f4a8e626b390a79de5d33665a2f8f76e42b9ef110ecb46dddfd27538cd6e7 WHIRLPOOL eaf241384222c0d3591ddc6fda2fa4e5d4ed3ca524309673779685e34f30b1b241bd844f99ed5eb104f60bec7f822db96d09a21a8107b8620213fd4a0aeb57d8 DIST open-vm-tools-2012.10.14-874563.tar.gz 3618001 SHA256 57832997ae206becd1c281dbc1ab361fa33320fb77866126b4ef7f077e66d739 SHA512 ec97e3ef6f6b338994d09d2b25b3ddf7a2aecc5d98818733d2524c65edd0b46ecd1e0107ac33677b4a26bcda30b7fadec1b324e36d1ea4d9fc148824f0a88f31 WHIRLPOOL c31cee1074a04bcfd7bfd5e54c2509028abd1fee76b833c29e171f5c408ac4970a2e1ff85a6ea4be3493dbe25c074fe2882e55a8ea8de0bdba7618e0b625c2cb +DIST open-vm-tools-2012.12.26-958366.tar.gz 3622541 SHA256 8d63a9c1e36ef968b87125b3c55c8ed5f75ecc9eafe84716eddee687b5b81606 SHA512 748d44951dcdff570faab071a5681ce68f8647df002de3a79853fbf1571835499f2dabc863cc7782b23fd55ad568d479ab10db9ff0bfc7c27cab4999b61f2a89 WHIRLPOOL ce4a51e9a40afea2a2f410e05ff9ca3535611a53d99c05e4d079f9b6df2cef1373113e3ec82bec378441f5f6689f6211c570c0ed4cfffe84534943d875f1bacb DIST open-vm-tools-8.8.2-590212.tar.gz 3795261 SHA256 c985c8fe7b292209ec1ac7c2b60749d7a9dd7859d789c332deb6baaf53ba8878 SHA512 5bcf97fe59287d73db43c46895f857ec34da750318150d6878b21ba8df79c76164a688e009585c7a14574f645e1e3ce66c5f9e9bcfc592a79b6f3bbd620dd619 WHIRLPOOL 486b22d74925b4813470ae3f3f5c725f2fec8919a36681cbfb6b47e0fa7452d7ae7b92085e823a96ff22da9f2f59d20267965799d32f609a27864ebce070db56 DIST open-vm-tools-9.2.2-893683.tar.gz 3561799 SHA256 1ae795e75bf4b38185f39083b8075686d3bab4c1222f4e39c863aeccb2f5f387 SHA512 13490bdff2b8b316b1cd09e06c76293f21b83ede025ded5ddc71251e4f64279296f7dd0f248335f7e3d0714759be13f07263f154683878870a062c9ba55644fc WHIRLPOOL 16cbb0977a14a5f0f1efa1194dc1255d343767f7c55d3e97e03172c30117b24018634e870db7ad0d5010f5dd87d4664aa054d24e70e816b54cb1ca6148abb872 diff --git a/app-emulation/open-vm-tools-kmod/open-vm-tools-kmod-2012.05.21.724730.ebuild b/app-emulation/open-vm-tools-kmod/open-vm-tools-kmod-2012.12.26.958366.ebuild similarity index 87% rename from app-emulation/open-vm-tools-kmod/open-vm-tools-kmod-2012.05.21.724730.ebuild rename to app-emulation/open-vm-tools-kmod/open-vm-tools-kmod-2012.12.26.958366.ebuild index 9c39beca682d..e9048f9d82ca 100644 --- a/app-emulation/open-vm-tools-kmod/open-vm-tools-kmod-2012.05.21.724730.ebuild +++ b/app-emulation/open-vm-tools-kmod/open-vm-tools-kmod-2012.12.26.958366.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-emulation/open-vm-tools-kmod/open-vm-tools-kmod-2012.05.21.724730.ebuild,v 1.1 2012/06/02 14:45:23 vadimk Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/open-vm-tools-kmod/open-vm-tools-kmod-2012.12.26.958366.ebuild,v 1.1 2013/01/20 12:09:12 vadimk Exp $ EAPI="4" -inherit linux-info linux-mod versionator +inherit eutils linux-info linux-mod versionator MY_PN="${PN/-kmod}" MY_PV="$(replace_version_separator 3 '-')" @@ -58,6 +58,7 @@ pkg_setup() { src_prepare() { sed -i.bak -e '/\smake\s/s/make/$(MAKE)/g' modules/linux/{vmblock,vmci,vmhgfs,vmsync,vmxnet,vsock}/Makefile\ || die "Sed failed." + epatch "${FILESDIR}/frozen.patch" } src_configure() { diff --git a/app-emulation/open-vm-tools/Manifest b/app-emulation/open-vm-tools/Manifest index 55154fcb773d..37dafb2c705e 100644 --- a/app-emulation/open-vm-tools/Manifest +++ b/app-emulation/open-vm-tools/Manifest @@ -1,4 +1,4 @@ -DIST open-vm-tools-2012.05.21-724730.tar.gz 3567582 SHA256 c7daaaf0ed031cd36295cf10d51dbbdedeb1eb0015e49f0806620792f8dab71b SHA512 54f3d1f052720994432c2b657d8f6c3b16a90aae39e9fec2671def34d57019b58e1f4a8e626b390a79de5d33665a2f8f76e42b9ef110ecb46dddfd27538cd6e7 WHIRLPOOL eaf241384222c0d3591ddc6fda2fa4e5d4ed3ca524309673779685e34f30b1b241bd844f99ed5eb104f60bec7f822db96d09a21a8107b8620213fd4a0aeb57d8 DIST open-vm-tools-2012.10.14-874563.tar.gz 3618001 SHA256 57832997ae206becd1c281dbc1ab361fa33320fb77866126b4ef7f077e66d739 SHA512 ec97e3ef6f6b338994d09d2b25b3ddf7a2aecc5d98818733d2524c65edd0b46ecd1e0107ac33677b4a26bcda30b7fadec1b324e36d1ea4d9fc148824f0a88f31 WHIRLPOOL c31cee1074a04bcfd7bfd5e54c2509028abd1fee76b833c29e171f5c408ac4970a2e1ff85a6ea4be3493dbe25c074fe2882e55a8ea8de0bdba7618e0b625c2cb +DIST open-vm-tools-2012.12.26-958366.tar.gz 3622541 SHA256 8d63a9c1e36ef968b87125b3c55c8ed5f75ecc9eafe84716eddee687b5b81606 SHA512 748d44951dcdff570faab071a5681ce68f8647df002de3a79853fbf1571835499f2dabc863cc7782b23fd55ad568d479ab10db9ff0bfc7c27cab4999b61f2a89 WHIRLPOOL ce4a51e9a40afea2a2f410e05ff9ca3535611a53d99c05e4d079f9b6df2cef1373113e3ec82bec378441f5f6689f6211c570c0ed4cfffe84534943d875f1bacb DIST open-vm-tools-8.8.2-590212.tar.gz 3795261 SHA256 c985c8fe7b292209ec1ac7c2b60749d7a9dd7859d789c332deb6baaf53ba8878 SHA512 5bcf97fe59287d73db43c46895f857ec34da750318150d6878b21ba8df79c76164a688e009585c7a14574f645e1e3ce66c5f9e9bcfc592a79b6f3bbd620dd619 WHIRLPOOL 486b22d74925b4813470ae3f3f5c725f2fec8919a36681cbfb6b47e0fa7452d7ae7b92085e823a96ff22da9f2f59d20267965799d32f609a27864ebce070db56 DIST open-vm-tools-9.2.2-893683.tar.gz 3561799 SHA256 1ae795e75bf4b38185f39083b8075686d3bab4c1222f4e39c863aeccb2f5f387 SHA512 13490bdff2b8b316b1cd09e06c76293f21b83ede025ded5ddc71251e4f64279296f7dd0f248335f7e3d0714759be13f07263f154683878870a062c9ba55644fc WHIRLPOOL 16cbb0977a14a5f0f1efa1194dc1255d343767f7c55d3e97e03172c30117b24018634e870db7ad0d5010f5dd87d4664aa054d24e70e816b54cb1ca6148abb872 diff --git a/app-emulation/open-vm-tools/open-vm-tools-2012.05.21.724730.ebuild b/app-emulation/open-vm-tools/open-vm-tools-2012.12.26.958366.ebuild similarity index 96% rename from app-emulation/open-vm-tools/open-vm-tools-2012.05.21.724730.ebuild rename to app-emulation/open-vm-tools/open-vm-tools-2012.12.26.958366.ebuild index 13cb37db1f94..406a626b5dfd 100644 --- a/app-emulation/open-vm-tools/open-vm-tools-2012.05.21.724730.ebuild +++ b/app-emulation/open-vm-tools/open-vm-tools-2012.12.26.958366.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-emulation/open-vm-tools/open-vm-tools-2012.05.21.724730.ebuild,v 1.2 2012/06/02 15:03:01 vadimk Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/open-vm-tools/open-vm-tools-2012.12.26.958366.ebuild,v 1.1 2013/01/20 12:09:54 vadimk Exp $ EAPI="4" diff --git a/app-emulation/qemu-user/Manifest b/app-emulation/qemu-user/Manifest index ff2aa4befc92..7cb1511c5090 100644 --- a/app-emulation/qemu-user/Manifest +++ b/app-emulation/qemu-user/Manifest @@ -5,3 +5,5 @@ DIST qemu-1.0.tar.gz 10848714 SHA256 47674b7da559d5e1b44cc401af9ac5ad962d14e9eed DIST qemu-1.1.0-1.tar.bz2 9630116 SHA256 1e566f8cbc33e5fb7d5f364c0fd1cdde9e921e647223b5d7ae7e5f95544b258d SHA512 812ba8bedebe5985630f9958330215a499756975b48d9e19af8d597fec9ac5c5422111f2de8e682201364f94fa4430c93688376a1c106fcbf21d364bbfc71156 WHIRLPOOL 47c81346235dea20f9a640eb902d64c6118a4bcded6fe2806a1f52c9ebfbac0d08f1ec2c8e28f4c440a43d18970767b87d9a953b952971a8d573db2954dcbb07 DIST qemu-1.1.0-patches.tar.xz 26728 SHA256 ceae860693a027f57942bd27a0f1d8ec07ec074ea5ffa378837b0da9ebbdf728 SHA512 1f2236ad1c9b2668720c016108dfdfb047073c86828defb2b3c282f594666769efe54c4b18f85227ad49777e2dd80d15492bd3277d1b94f05182a0052dfc8601 WHIRLPOOL 2851162bacd077b68f7d2234ef2b8141f47c291115d258dbffcd068bc6abe8c9747963ac5c2ca63190e5beaa85679e63cf76c08c43efafa2eb0aa9f83a753608 DIST qemu-1.1.0-r1-patches.tar.xz 27916 SHA256 f1e97bff0e7dd2155f572a09f0db407c121004412554612ebfaa29a8d3374609 SHA512 9b099833bc2936b57e8a580421a3db3e2ece12b8334d0de3e348d4d6b0ec758383429461c14bd7a17508df0834e8f281d71aa502ce2362dc87093997f45e2757 WHIRLPOOL 5f21aa0decb79f94b161f2b279099889ecbc8ee93405f206d3a026a9624c382a21bc0d37b4533823ecae57e96d853b9160799e9e00b70e6008700c0f9eda6faf +DIST qemu-1.2.2-patches.tar.xz 26520 SHA256 b4c6a7ea2cd59db49b3844aa4ce4e8cd1bdb0566aa88a606346870fd95e7d683 SHA512 094ed8b970366aa7795799eb71ef5ff0c1cb09fe4e7cb138797fc4a9084cf026f040d53caf094eab0a58e06ed6ae0bbd8dbaf1935712b835d1d27a0fad8b338d WHIRLPOOL 35e9e3eb80d74312164369983ced33e56bfe985f801f328e19e184a8bf481abefd672f2279d5b7cf10ca797a52c53389046002af1fbb0f5749a135418758fa23 +DIST qemu-1.2.2.tar.bz2 9871919 SHA256 27a66629136cf6cefe4875a5d6fce04eb521cfc9e0ca2523335ca72c45be8625 SHA512 74a0040de3c03760a6aee9100acecc672853e5442e3ead3ee6abd191a61d3ed4f9157c692a6dadb8b18f86371fd62034d05ca65195703778fe17316810596915 WHIRLPOOL c54d05d7d1490a95c2c8bc60eee45b524ad9f7556a67e8de9ffc7f5ddb948a471059f31d538b8449ad8552da534c9593755292fadc9a652e38cbfcbb039f9b62 diff --git a/app-emulation/qemu-user/qemu-user-1.2.2.ebuild b/app-emulation/qemu-user/qemu-user-1.2.2.ebuild new file mode 100644 index 000000000000..43f528d0e3c9 --- /dev/null +++ b/app-emulation/qemu-user/qemu-user-1.2.2.ebuild @@ -0,0 +1,139 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu-user/qemu-user-1.2.2.ebuild,v 1.1 2013/01/20 00:47:06 lu_zero Exp $ + +EAPI=4 + +if [[ ${PV} == *9999 ]]; then + EGIT_REPO_URI="git://git.qemu.org/qemu.git + http://git.qemu.org/git/qemu.git" + GIT_ECLASS="git-2" +fi + +PYTHON_DEPEND=2 + +inherit eutils base flag-o-matic pax-utils toolchain-funcs python ${GIT_ECLASS} + +MY_P=${P/-user/} + +if [[ ${PV} != *9999 ]]; then +SRC_URI="http://wiki.qemu.org/download/${MY_P}.tar.bz2 + http://dev.gentoo.org/~lu_zero/distfiles/qemu-${PVR}-patches.tar.xz" +KEYWORDS="~amd64 ~ppc ~x86 ~ppc64" +S="${WORKDIR}/${MY_P}" +fi + +DESCRIPTION="Open source dynamic CPU translator - static user mode emulation" +HOMEPAGE="http://www.qemu.org" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="0" +IUSE="" +RESTRICT="test" + +COMMON_TARGETS="i386 x86_64 alpha arm cris m68k microblaze microblazeel +mips mipsel ppc ppc64 sh4 sh4eb sparc sparc64 s390x" +IUSE_USER_TARGETS="${COMMON_TARGETS} armeb ppc64abi32 sparc32plus unicore32" + +for target in ${IUSE_USER_TARGETS}; do + IUSE="${IUSE} +qemu_user_targets_${target}" +done + +DEPEND="app-text/texi2html + virtual/pkgconfig + sys-libs/zlib[static-libs] + dev-libs/glib[static-libs]" +RDEPEND="" + +QA_WX_LOAD=" + usr/bin/qemu-static-ppc64abi32-binfmt + usr/bin/qemu-static-ppc64 + usr/bin/qemu-static-x86_64-binfmt + usr/bin/qemu-static-x86_64 + usr/bin/qemu-static-unicore32-binfmt + usr/bin/qemu-static-m68k-binfmt + usr/bin/qemu-static-ppc-binfmt + usr/bin/qemu-static-alpha-binfmt + usr/bin/qemu-static-microblazeel-binfmt + usr/bin/qemu-static-sparc-binfmt + usr/bin/qemu-static-sparc32plus-binfmt + usr/bin/qemu-static-ppc + usr/bin/qemu-static-mipsn32el-binfmt + usr/bin/qemu-static-sh4eb-binfmt + usr/bin/qemu-static-ppc64abi32 + usr/bin/qemu-static-ppc64-binfmt + usr/bin/qemu-static-armeb-binfmt + usr/bin/qemu-static-microblaze-binfmt + usr/bin/qemu-static-mips-binfmt + usr/bin/qemu-static-mipsel-binfmt + usr/bin/qemu-static-sh4-binfmt + usr/bin/qemu-static-s390x-binfmt + usr/bin/qemu-static-i386-binfmt + usr/bin/qemu-static-cris-binfmt + usr/bin/qemu-static-arm-binfmt + usr/bin/qemu-static-sparc64-binfmt + usr/bin/qemu-static-mipsn32-binfmt +" + +pkg_setup() { + python_set_active_version 2 +} + +src_prepare() { + # prevent docs to get automatically installed + sed -i '/$(DESTDIR)$(docdir)/d' Makefile || die + # Alter target makefiles to accept CFLAGS set via flag-o + sed -i 's/^\(C\|OP_C\|HELPER_C\)FLAGS=/\1FLAGS+=/' \ + Makefile Makefile.target || die + + EPATCH_SOURCE="${WORKDIR}/patches" EPATCH_SUFFIX="patch" \ + EPATCH_FORCE="yes" epatch +} + +src_configure() { + filter-flags -fpie -fstack-protector + + local conf_opts user_targets + + for target in ${IUSE_USER_TARGETS} ; do + use "qemu_user_targets_${target}" && \ + user_targets="${user_targets} ${target}-linux-user" + done + + conf_opts="--enable-linux-user --disable-strip" + conf_opts+=" --disable-bsd-user" + conf_opts+=" --disable-system" + conf_opts+=" --disable-vnc-tls" + conf_opts+=" --disable-curses" + conf_opts+=" --disable-sdl" + conf_opts+=" --disable-vde" + conf_opts+=" --prefix=/usr --sysconfdir=/etc --disable-bluez --disable-kvm" + conf_opts+=" --cc=$(tc-getCC) --host-cc=$(tc-getBUILD_CC)" + conf_opts+=" --disable-smartcard --disable-smartcard-nss" + conf_opts+=" --extra-ldflags=-Wl,-z,execheap" + conf_opts+=" --disable-strip --disable-werror" + conf_opts+=" --static" + + ./configure ${conf_opts} --target-list="${user_targets}" || die "econf failed" +} + +src_install() { + emake DESTDIR="${ED}" install + + # fixup to avoid collisions with qemu + base_dir="${ED}/usr/bin" + + for qemu_bin in "${base_dir}"/qemu-{img,io,nbd}; do + rm -f ${qemu_bin} + done + + for qemu_bin in "${base_dir}"/qemu-*; do + qemu_bin_name=$(basename "${qemu_bin}") + mv "${qemu_bin}" "${base_dir}"/"${qemu_bin_name/qemu-/qemu-static-}" || die + done + + pax-mark r "${ED}"/usr/bin/qemu-static-* + rm -fr "${ED}/usr/share" "${ED}/usr/libexec" "${ED}/etc" + dohtml qemu-doc.html qemu-tech.html + newinitd "${FILESDIR}/qemu-binfmt.initd" qemu-binfmt +} diff --git a/app-emulation/qemu/Manifest b/app-emulation/qemu/Manifest index 0ce5513a0418..db79777aea69 100644 --- a/app-emulation/qemu/Manifest +++ b/app-emulation/qemu/Manifest @@ -4,6 +4,6 @@ DIST qemu-kvm-1.1.1.tar.gz 6599376 SHA256 c6fab57ccadcad5deb34728623840a0141a0f3 DIST qemu-kvm-1.1.2-6cee76f0.tar.xz 13096 SHA256 0bf503a494d78cc5a59682d22341caa594fcf89a8ce5bd222dd7c45ad009e0c3 SHA512 bb1aa5f40b24cf9860f4af2cbab8bf8d5800ca57c1dccc05f446b5001d426021a3ccc423228ce9607a20dd1fb9e5d93a62f883d5bf56c4ac25b5ebfd3b60940d WHIRLPOOL 3916563bd76d9ae50ddd168863dfada0f44289355c82491a992d2d56c9398c8392fc69a67844154dafb13f9ea315affd27909e3b675ba8b5eab32ab176700b5b DIST qemu-kvm-1.1.2.tar.gz 6605075 SHA256 2be9cb9986c0b67ef97a2d21a51a945e91c4032b8c4229297461d8ed91f95178 SHA512 c1fc6a91276347ec2188c9fa8750b51ed14116ea0a7afc74e0ddf305e9f175a6c16d3dc6ef1ee52926c4d8b9bd0fd5465041f32ec24ce315059062a078e2df82 WHIRLPOOL f21af6107de2343c6a45cbd6aa97cbc58e36a37c37db42110397658a2c303d63e5af96b84b778b5f08e958a5e65a84088c596e1b83cbdcd4009efff64dab4d09 DIST qemu-kvm-1.2.0-3a5940fb.tar.xz 238084 SHA256 031e290d85292e7fce1589fe492093069790c3094b7a302c71db8b2b98cbf3c6 SHA512 316a56a95c35cd304d63f6a444d0360510db79dbbf34c88f26f00998ddd0a1a35b6f6d7848abd6c7a8d7c65253e5449b3def0eefec17ad3989d2e02bc2743d8d WHIRLPOOL bcea3a5c22e7bc46b4c15580fde34de6ddcc3908dd8bb5b4d5f00724a960c5303db275c29b3741665bd47d9309d3d70294be27156958c5948cf17ece2af6da68 -DIST qemu-kvm-1.2.0-9489a8c0.tar.xz 268188 SHA256 6b7d9274ddc492f7c904d60c3fa01c01991fe8f8e7d34afc4c5742db71805247 SHA512 33d49b0ae8575b6cffcc84550551d9ac1ce782d9e443dde0e6ef4f468491cf61b073924a4f6f8ae3eb46b7a4c9913e6d7cbdef30df9aaea4898f33a2f4a11594 WHIRLPOOL 3641697872e50639af9149e8aa65474b325cbf42076166373cce69af3d2e5c8ea908fd6c6ef0fd58b16dcd0bd67e3bd20a43b9161702b6a70201f3cb36316a81 +DIST qemu-kvm-1.2.0-9489a8c0-1.tar.xz 268020 SHA256 3ac9715a6bb50d8e363ea0a225a23472d326c31189637eb7ad25fef47afe526d SHA512 9ea7da5384af22525db40fef62a480e551395907df6bf2420e1ccdaceddb24515f0e463e16e929b6da34ab0c2f0e5e567ef097f186a46c0d2fcc2d0d17fc3045 WHIRLPOOL 89ece68af896212cb9a868f6bb0d0df397d22131e3ae147f575177b39f015860ea0895a1edf938f46d3e2322182f131abc0767b07d8c05565a7ff40420f65464 DIST qemu-kvm-1.2.0-b6773f5e.tar.xz 264756 SHA256 fbb0c3fd17304d6fe2f12064ac354edb8ec67fe09f6f1ab2bfe5534949728d15 SHA512 c8c94bf534f4e844782ada677bc608425b4d209fd01f9d9eab8b9f3d758b03e48b8a02110793e3555421761f3bc36f1363f0f7a8cbe8f3f64455463ae43e23fa WHIRLPOOL a6bb4fe13526a780f0c46e2838fb721b9fcd5642b7412f454d70118e8db144f606bec0a9daf6ae5ddb9ec8140895b8407beaa807599df4503e6a16a16650c555 DIST qemu-kvm-1.2.0.tar.gz 6839420 SHA256 e98ab96c24337e312864f2341016695ac11cb9a04be83548a8da89596d591b05 SHA512 c21354127d4585397ab400600ab1ac9aac80cc0431bbf615c8e906819075b00373f382954fbd9fa39bf6479126d8d8e3321b3713346d04abe2c249edfa4eb6fd WHIRLPOOL 3d0662b39174eee0cd8750f6bea5baf57e2dfa82b490c3f1e54f44720ddd05ad029c3011425f651e745973ddb03aaca310bc8acf9f8e656bbb8390a262f7013c diff --git a/app-emulation/qemu/qemu-1.2.2-r1.ebuild b/app-emulation/qemu/qemu-1.2.2-r2.ebuild similarity index 99% rename from app-emulation/qemu/qemu-1.2.2-r1.ebuild rename to app-emulation/qemu/qemu-1.2.2-r2.ebuild index 81efde9c9f32..3eef210846bc 100644 --- a/app-emulation/qemu/qemu-1.2.2-r1.ebuild +++ b/app-emulation/qemu/qemu-1.2.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/app-emulation/qemu/qemu-1.2.2-r1.ebuild,v 1.1 2013/01/19 03:42:06 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-1.2.2-r2.ebuild,v 1.2 2013/01/19 22:23:05 cardoe Exp $ EAPI=5 @@ -9,7 +9,7 @@ MY_P=${MY_PN}-1.2.0 PYTHON_DEPEND="2" inherit eutils flag-o-matic linux-info toolchain-funcs multilib python user udev -BACKPORTS=9489a8c0 +BACKPORTS=9489a8c0-1 if [[ ${PV} = *9999* ]]; then EGIT_REPO_URI="git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git" diff --git a/app-emulation/uade/metadata.xml b/app-emulation/uade/metadata.xml index 8d22178c5c03..d3c2cc926f0b 100644 --- a/app-emulation/uade/metadata.xml +++ b/app-emulation/uade/metadata.xml @@ -2,7 +2,4 @@ games - - spock@gentoo.org - diff --git a/app-emulation/wine/Manifest b/app-emulation/wine/Manifest index 5f14d950d9a2..34705bcdbfce 100644 --- a/app-emulation/wine/Manifest +++ b/app-emulation/wine/Manifest @@ -17,6 +17,7 @@ DIST wine-1.5.19.tar.bz2 21013509 SHA256 51ad795ae62d8392ac6fbc3ad595ac57d44bcc7 DIST wine-1.5.2.tar.bz2 20104652 SHA256 8ee6fdaf716b5a1c7ccf9be9dc6d9b7546944e79351c4806b2fa596da418342f SHA512 da949f1943a1af1f4f9d75d41d35b5a968b4bb792f25c5d3202de5be944a04deac7116261d70b5b90f233e9fb526ae8d073e2cdd03304ac0f736926108fec7d7 WHIRLPOOL 947bff2ccda47e548e6eec4a1b7cc738b943fbbdf000e5686aa440c9d45962b5dee47e7060e93895cc398c2c82d7dce06c370091859bd46a6d09864c191d357c DIST wine-1.5.20.tar.bz2 21012282 SHA256 75e3073a62a933af5beaa8e8591298325edb57f255ca5b0de55a0f29a4ba2430 SHA512 25de10f4e3f94d79391e61bdadf00af0e6f191b064f61948911d0de4b1c71ab3a727510b7ec4a52882aed0c59e75bb0cd3fb46a0a4da3dc3707045a3af517754 WHIRLPOOL f85ed944dce117761b6509f090161e9d071027571c87675c03f0f78fb29679bf4d4fb382038c5512588e346f8a242ae4a66fa32992a3bacd48af63417158efe2 DIST wine-1.5.21.tar.bz2 21088257 SHA256 ac77c1dd1a31ccc67f0391b4965959096aeb98745f52c4d91b7bd280e3c8b350 SHA512 3d9847da09f5227d0118f0fc1468134e69ee66dfec3cfee5e069050a4e2b848647d2247264d7f2e9e35f434676be97f4104be170fd02915bb3061b4057c11bb9 WHIRLPOOL 67b5b0693cea4998e48d1e4163b1cd8506401252c268854d559c7a323af082cc635ec10752440e0945b7988b85537af92f204ef645e9e4916e01fc476d19eb85 +DIST wine-1.5.22.tar.bz2 21238224 SHA256 db08a40a5e6fce050b5cca7782d396ed3a9b1dfb23b9915dad93efb886fc6739 SHA512 19e337729542991d0b984c69657c4a3437cd17abe78e9ff21ccd7c1d96097598d790e9ea5d95def355ca4af58cfcbc1e61e15c9845a01e664303182878e456a0 WHIRLPOOL 77a5289705f7579b1d0bf6824031bdd7fa8a86913e438bfbf6bf938f9e7e1807b100b6caa46be9fe37cd0eae4547a5404f9f1dbb6f49e6e4c50b92b6e1445c09 DIST wine-1.5.3.tar.bz2 20171697 SHA256 d3e8e484cbc2c4888bc880d0b0c8b52299d36a5cecc96d9367b59142345a1206 SHA512 947c20100d02ec6d393f9bdc1899ddeda21be7fa75869f91953e0eec30f2083b2a7fd31ad92c44765b417e3023914db9cc9945fd241207d8189f20ae92da100a WHIRLPOOL a2e2752731feae4d2a44dd0db1edabadd8c7530abd6e988e5c8f862ba70e234874e1a21ad8a25f4dc68e965d4b5122431278b3ed7674145f7fa935e0c78dcca5 DIST wine-1.5.4.tar.bz2 20187597 SHA256 90b10450b1afb4d54dfd20529e040daa4ee901c52b2f3bc452a86c2e06b4b759 SHA512 cb58358a2af9e15d7ebff21f9f834d521736eeaa44ce0c36d88400f3d3667c5432711bea64322e77c166e024d2ea03d47f64a4fd648d0a802bc44da80e1eb2fe WHIRLPOOL e007bc572181745c585bf24c6aa6a87830df17b57384d180e932b229f89b55d38f2b673243e8b5a5243afb303a18c52092bfbe61f0b49473c7c85edb0056a068 DIST wine-1.5.5.tar.bz2 20158084 SHA256 e7d5ba716d2ac47193fa31eff66cc179145ddcb453c6923eaea70596a82b084e SHA512 f9d080cf3e17b73658222b95e15c353d40963aaaa9cbb4b6293ea69709e68715a97e89854c336288ba6a0a41cb0fc9e2713721705935835e4c9f53fa5b7a3e74 WHIRLPOOL 9f44bf75854410c142f94fe12e028ab120521ffd5b9de682c3eeb6690a35c8b4f5be2eecfd6e02e2bc28594f1524e2b6604035744d6b56a9c3d16d5c0cdc6d5d @@ -40,6 +41,8 @@ DIST wine_gecko-1.7-x86.msi 16995328 SHA256 2ed524e79cc88137b28430389af19cb03298 DIST wine_gecko-1.7-x86_64.msi 17438720 SHA256 19d0364a43621738fa3fd1713ef9590ad0cc61ea4c8858ad3f8703a81b13c927 SHA512 04928aab0ba3ab90074085f9198e46372701249863b6710ed4ffc0c92e0ffc30348a41be528c7c1dec9007441cc1f3d3aa1193e469ac75f5ae635df52dac4dd7 WHIRLPOOL 389ae0eb32b2ea994cac9fdb0fd785bb457489063657040f54a5dd74c74483396772b18bbb0e7b4d86c1036d52a21d0d68610a458842e79e2c2567301d3e1659 DIST wine_gecko-1.8-x86.msi 17774592 SHA256 28f3b7e497e1f884a64b2d982b61dda3167efac4c843de198654a1c9144ff9dc SHA512 81cfa990dde3f19e263ecf2957892201a88fd3c683d448d915348f7d8469e03d21c1c724b982f7a65b931857498822d8f6f6cc724205948b462013c0df6064dd WHIRLPOOL 98824a561892a3e0111d7a3becb9a8f4ac7e9dc02c4b612c7c074b2e77ea2f56d85c0666c9cb22f95f6a79b2f43c74f27b533837ffb0ae19e514f5709c2a24ea DIST wine_gecko-1.8-x86_64.msi 18238976 SHA256 53a600a4767225469fd68431263baac0672ceaec29eb2c7747b4363fd2856db2 SHA512 336527adbc6342fe149d706a05e23a51eb25e54e8ce88e67aa98717a1486bc85d36989315b6a2a428ddc10844bbc9130e76625741d997230a541756b429db1e9 WHIRLPOOL 0f40c5d5177335c6736983d37ee677b4ea183260df07d516bca17ff8327d6024693dec3707db934632bf253cf94614127e60c4e7399de764a3a6c5d59e37c54d +DIST wine_gecko-1.9-x86.msi 19060224 SHA256 2f1df59287a4f21ec0f1322ae10520c8e6a95de10f8ef7339ab217e4b46ce782 SHA512 6bbcbd79f4eb95bcc9ad1902b3b86059f18127c7fbff0f87f7875de2bcdd543441b9dad12d641926e22ba610df2801d82b3c63ef2b62323b5f4bc4f8bd85b124 WHIRLPOOL 5431d42abdefd48cefb5f6ead9324ba7d2a40a305393120beb544f83571974006f4208180c38ea800cc96157523cca16daec5b7b51ea8b5aead9379a4f6ec53a +DIST wine_gecko-1.9-x86_64.msi 19622400 SHA256 0e5f87e5026f1f131fd595f11ae7ed5b5ba9978d917b96821d2ca34d3f91b1ea SHA512 426fe66d0b02ddb7e542db1ef5480867b9bbdd63e927ecba9f237991a2dc4fca119d24bd87dc2c372b90fe899a9f41306e90b3fadea6c69ec1f180f1af02576f WHIRLPOOL 8f7c38089fb89f48db2aa087a55953346a08988e0a0d3c0d215c968127f82f4de10b161fe7015e9114119d5f6f65b7b61bee1ce96720f7d7b7e6d3c1722eae2f DIST winepulse-0.35-configure.ac.patch 2826 SHA256 837bffaaddb6b7b0a474c7262a57f12e250e135cf6228dde1a22849f66de1250 SHA512 cb7a86c75cfca401e12ab117407cbae95c7aecffed37d1843e5b58bfdeb54212cb7c4b783280cc94afa0f1c9e58ebb61e28627ed3b690e099cd539d052cbd3bc WHIRLPOOL eb03bfc3e01798c3203814f9b7cf73bf1839ae3563d464f569166285c035b9e2f5f2d74b1238dc141ae1ec67a9e6be4f87d558014f490f43fa990ad19dea5121 DIST winepulse-0.36.patch 101815 SHA256 7508b171bfecb461ecb464426cb4bcd9c3ff77645b787fcbf61e27dd34fe1b05 SHA512 9b9ca1284c6f8f1108a0456989dd0e7a3a35a3075dd5e6601e84d91e65a60a263992736a16c432a7ca75f40e9dc904cdb546b51acd1508b78cbaff060a461d6f WHIRLPOOL d00f9ebd163b632c9cdf3d6581cc9c010b7c0db4c96666591dc4fc1aa48bac030def35964a4dca9c9405ab32b51eaecf2f392b0f57771bc2dd04f5bc2603e789 DIST winepulse-0.38-winecfg.patch 13088 SHA256 051ef1cb5598c319152ad28b85733927a711b45e0bfa92f0b0b2331588f5894e SHA512 714358ec1c1251fde97430e6a3342a8a455f5bf56f1f57f895c6ebaf73e4c396f15f7b12d0f8e02822526e1b4d19a6f161b53ad7c7dd6db1cf8516c95352404f WHIRLPOOL 9e34956d2da028fed29112791bd8497fcdf8b7de8f5f04903b411f091bbe57a8b8ea647a829ab04fcf08ebc5e59d96029e855fbd20a99ae222aad9b322925ab0 @@ -51,3 +54,4 @@ DIST winepulse-patches-1.5.18.tar.bz2 45298 SHA256 803a3ef5c9223dbb3ded3a2030945 DIST winepulse-patches-1.5.19.tar.bz2 47081 SHA256 7fc8e5964bcd4cdd8f14b6a5d6d66d474b958084fd80fb0f0531b08eb7fdfc2a SHA512 54b593ce75ce1ecc8015c85e7de713ddea1331a2701a1ec81fab88dce90f41470469f05b4f2d924da824fc99b1b9c52ed6795158291d7e8f15b5b3c4341cb13f WHIRLPOOL 56b1506b0ffc60a052c923334d21e111707443caf138ba05c6708e4d652a5c7ee2d22d8a82862b1a87a12b49dc1c9bdd8d89000f529ddd8f06685ebbc03dd7f4 DIST winepulse-patches-1.5.20_pre20121207.tar.bz2 47206 SHA256 7ce845841d1c53f5d2bee3e09e901598321362f8cabc32ff7012c24e366a47e6 SHA512 e0b575231b19c2231ec9648d9e128a2439c672221d579fa40adbe49218db0e98b548f562151cdcbe75a6f018ff9a1c57dbd048de2374ad0cb5748fc3da8060b7 WHIRLPOOL b5511237bac951b39c1fc707348593adc8e5c5b0bf0543e4714cab3e153b2a653fa7ce809097d8dd376cad6c20b1d5b5a9c06d655e0a28c5e035ae5eec761803 DIST winepulse-patches-1.5.21.tar.bz2 46068 SHA256 038b672bed96cae5c89a854d2e2980bf37c887f50ace519ea62b1da6b3b351e2 SHA512 00ee2c2cf67b17c33a2e4a9cc1406e20d05fde33ce9f98fde37176b55a123b21f0e136b3cc9066a9b4d6062893db3cd60b4eb9574831aaaae4da757ece5ca003 WHIRLPOOL 21c0266ae03f4bfdf87ebdd8c5bedc98e6c1c6fda4fd0ce47a073a000e7aaf66a50a82bc77bd31649afd2837d35b6b6867a6d38c28df573ce5e1dbab6cb25dc8 +DIST winepulse-patches-1.5.22.tar.bz2 46325 SHA256 4850ffb54ee4062c14457a6282b432604272858decaa438d95334c164ca05948 SHA512 0f05afafae79288cc73f926280d20b3acfb8aa617ba9bbfc57529eeb7d0a2a3dc7e20b92bef9d2eb04b32c9a7f0c256a61a88faff5c1df41950aaa946bc748a0 WHIRLPOOL eed9896a75b2765dae03215c34807ed42a9d26828f25d9687983ebbabc1fbf3d757ea8ce4cc805343d1fca0463d8f49b9524175efb2af5cc5d6efc19e0b8e6d4 diff --git a/app-emulation/wine/wine-1.5.18.ebuild b/app-emulation/wine/wine-1.5.18.ebuild index 8d9ee365ec29..ad4fa355fcf3 100644 --- a/app-emulation/wine/wine-1.5.18.ebuild +++ b/app-emulation/wine/wine-1.5.18.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-emulation/wine/wine-1.5.18.ebuild,v 1.2 2012/12/26 22:19:44 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-1.5.18.ebuild,v 1.3 2013/01/20 02:27:14 tetromino Exp $ EAPI="4" @@ -120,6 +120,13 @@ DEPEND="${RDEPEND} virtual/yacc sys-devel/flex" +# These use a non-standard "Wine" category, which is provided by +# /etc/xdg/applications-merged/wine.menu +QA_DESKTOP_FILE="usr/share/applications/wine-browsedrive.desktop +usr/share/applications/wine-notepad.desktop +usr/share/applications/wine-uninstaller.desktop +usr/share/applications/wine-winecfg.desktop" + src_unpack() { if use win64 ; then [[ $(( $(gcc-major-version) * 100 + $(gcc-minor-version) )) -lt 404 ]] \ diff --git a/app-emulation/wine/wine-1.5.19.ebuild b/app-emulation/wine/wine-1.5.19.ebuild index 808af2930255..475412bba953 100644 --- a/app-emulation/wine/wine-1.5.19.ebuild +++ b/app-emulation/wine/wine-1.5.19.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-emulation/wine/wine-1.5.19.ebuild,v 1.2 2012/12/26 22:19:44 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-1.5.19.ebuild,v 1.3 2013/01/20 02:27:14 tetromino Exp $ EAPI="4" @@ -120,6 +120,13 @@ DEPEND="${RDEPEND} virtual/yacc sys-devel/flex" +# These use a non-standard "Wine" category, which is provided by +# /etc/xdg/applications-merged/wine.menu +QA_DESKTOP_FILE="usr/share/applications/wine-browsedrive.desktop +usr/share/applications/wine-notepad.desktop +usr/share/applications/wine-uninstaller.desktop +usr/share/applications/wine-winecfg.desktop" + src_unpack() { if use win64 ; then [[ $(( $(gcc-major-version) * 100 + $(gcc-minor-version) )) -lt 404 ]] \ diff --git a/app-emulation/wine/wine-1.5.20.ebuild b/app-emulation/wine/wine-1.5.20.ebuild index 5a6dae5c3111..fa0eb0d934cf 100644 --- a/app-emulation/wine/wine-1.5.20.ebuild +++ b/app-emulation/wine/wine-1.5.20.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-emulation/wine/wine-1.5.20.ebuild,v 1.4 2012/12/31 07:38:44 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-1.5.20.ebuild,v 1.5 2013/01/20 02:27:14 tetromino Exp $ EAPI="5" @@ -122,6 +122,13 @@ DEPEND="${RDEPEND} virtual/yacc sys-devel/flex" +# These use a non-standard "Wine" category, which is provided by +# /etc/xdg/applications-merged/wine.menu +QA_DESKTOP_FILE="usr/share/applications/wine-browsedrive.desktop +usr/share/applications/wine-notepad.desktop +usr/share/applications/wine-uninstaller.desktop +usr/share/applications/wine-winecfg.desktop" + src_unpack() { if use win64 ; then [[ $(( $(gcc-major-version) * 100 + $(gcc-minor-version) )) -lt 404 ]] \ diff --git a/app-emulation/wine/wine-1.5.21.ebuild b/app-emulation/wine/wine-1.5.21.ebuild index 7223453ed6ff..d7f05fb676ee 100644 --- a/app-emulation/wine/wine-1.5.21.ebuild +++ b/app-emulation/wine/wine-1.5.21.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-1.5.21.ebuild,v 1.1 2013/01/06 03:09:25 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-1.5.21.ebuild,v 1.2 2013/01/20 02:27:14 tetromino Exp $ EAPI="5" @@ -122,6 +122,13 @@ DEPEND="${RDEPEND} virtual/yacc sys-devel/flex" +# These use a non-standard "Wine" category, which is provided by +# /etc/xdg/applications-merged/wine.menu +QA_DESKTOP_FILE="usr/share/applications/wine-browsedrive.desktop +usr/share/applications/wine-notepad.desktop +usr/share/applications/wine-uninstaller.desktop +usr/share/applications/wine-winecfg.desktop" + src_unpack() { if use win64 ; then [[ $(( $(gcc-major-version) * 100 + $(gcc-minor-version) )) -lt 404 ]] \ diff --git a/app-emulation/wine/wine-1.5.22.ebuild b/app-emulation/wine/wine-1.5.22.ebuild new file mode 100644 index 000000000000..460108e467e1 --- /dev/null +++ b/app-emulation/wine/wine-1.5.22.ebuild @@ -0,0 +1,285 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-1.5.22.ebuild,v 1.1 2013/01/20 02:27:14 tetromino Exp $ + +EAPI="5" + +inherit autotools eutils flag-o-matic gnome2-utils multilib pax-utils + +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="git://source.winehq.org/git/wine.git" + inherit git-2 + SRC_URI="" + #KEYWORDS="" +else + MY_P="${PN}-${PV/_/-}" + SRC_URI="mirror://sourceforge/${PN}/Source/${MY_P}.tar.bz2" + KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd" + S=${WORKDIR}/${MY_P} +fi + +GV="1.9" +MV="0.0.8" +PULSE_PATCHES="winepulse-patches-1.5.22" +WINE_GENTOO="wine-gentoo-2012.11.24" +DESCRIPTION="Free implementation of Windows(tm) on Unix" +HOMEPAGE="http://www.winehq.org/" +SRC_URI="${SRC_URI} + gecko? ( + mirror://sourceforge/${PN}/Wine%20Gecko/${GV}/wine_gecko-${GV}-x86.msi + win64? ( mirror://sourceforge/${PN}/Wine%20Gecko/${GV}/wine_gecko-${GV}-x86_64.msi ) + ) + mono? ( mirror://sourceforge/${PN}/Wine%20Mono/${MV}/wine-mono-${MV}.msi ) + http://dev.gentoo.org/~tetromino/distfiles/${PN}/${PULSE_PATCHES}.tar.bz2 + http://dev.gentoo.org/~tetromino/distfiles/${PN}/${WINE_GENTOO}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +IUSE="alsa capi cups custom-cflags elibc_glibc fontconfig +gecko gnutls gphoto2 gsm gstreamer jpeg lcms ldap +mono mp3 ncurses nls odbc openal opencl +opengl osmesa +oss +perl png +prelink samba scanner selinux ssl test +threads +truetype udisks v4l +win32 +win64 +X xcomposite xinerama xml" +[[ ${PV} == "9999" ]] || IUSE="${IUSE} pulseaudio" +REQUIRED_USE="elibc_glibc? ( threads ) + mono? ( || ( win32 !win64 ) ) + osmesa? ( opengl )" #286560 +RESTRICT="test" #72375 + +MLIB_DEPS="amd64? ( + truetype? ( >=app-emulation/emul-linux-x86-xlibs-2.1 ) + X? ( + >=app-emulation/emul-linux-x86-xlibs-2.1 + >=app-emulation/emul-linux-x86-soundlibs-2.1 + ) + mp3? ( app-emulation/emul-linux-x86-soundlibs ) + odbc? ( app-emulation/emul-linux-x86-db ) + openal? ( app-emulation/emul-linux-x86-sdl ) + opengl? ( app-emulation/emul-linux-x86-opengl ) + osmesa? ( >=app-emulation/emul-linux-x86-opengl-20121028 ) + scanner? ( app-emulation/emul-linux-x86-medialibs ) + v4l? ( app-emulation/emul-linux-x86-medialibs ) + app-emulation/emul-linux-x86-baselibs + >=sys-kernel/linux-headers-2.6 + )" +RDEPEND="truetype? ( >=media-libs/freetype-2.0.0 media-fonts/corefonts ) + perl? ( dev-lang/perl dev-perl/XML-Simple ) + capi? ( net-dialup/capi4k-utils ) + ncurses? ( >=sys-libs/ncurses-5.2 ) + fontconfig? ( media-libs/fontconfig:= ) + gphoto2? ( media-libs/libgphoto2:= ) + openal? ( media-libs/openal:= ) + udisks? ( + sys-apps/dbus + sys-fs/udisks:2 + ) + gnutls? ( net-libs/gnutls:= ) + gstreamer? ( media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 ) + X? ( + x11-libs/libXcursor + x11-libs/libXext + x11-libs/libXrandr + x11-libs/libXi + x11-libs/libXmu + x11-libs/libXxf86vm + ) + xinerama? ( x11-libs/libXinerama ) + alsa? ( media-libs/alsa-lib ) + cups? ( net-print/cups:= ) + opencl? ( virtual/opencl ) + opengl? ( + virtual/glu + virtual/opengl + ) + gsm? ( media-sound/gsm:= ) + jpeg? ( virtual/jpeg:= ) + ldap? ( net-nds/openldap:= ) + lcms? ( media-libs/lcms:0= ) + mp3? ( >=media-sound/mpg123-1.5.0 ) + nls? ( sys-devel/gettext ) + odbc? ( dev-db/unixODBC:= ) + osmesa? ( media-libs/mesa[osmesa] ) + samba? ( >=net-fs/samba-3.0.25 ) + selinux? ( sec-policy/selinux-wine ) + xml? ( dev-libs/libxml2 dev-libs/libxslt ) + scanner? ( media-gfx/sane-backends:= ) + ssl? ( dev-libs/openssl:= ) + png? ( media-libs/libpng:= ) + v4l? ( media-libs/libv4l ) + !win64? ( ${MLIB_DEPS} ) + win32? ( ${MLIB_DEPS} ) + xcomposite? ( x11-libs/libXcomposite )" +[[ ${PV} == "9999" ]] || RDEPEND="${RDEPEND} + pulseaudio? ( + media-sound/pulseaudio + sys-auth/rtkit + )" +DEPEND="${RDEPEND} + X? ( + x11-proto/inputproto + x11-proto/xextproto + x11-proto/xf86vidmodeproto + ) + xinerama? ( x11-proto/xineramaproto ) + prelink? ( sys-devel/prelink ) + virtual/pkgconfig + virtual/yacc + sys-devel/flex" + +# These use a non-standard "Wine" category, which is provided by +# /etc/xdg/applications-merged/wine.menu +QA_DESKTOP_FILE="usr/share/applications/wine-browsedrive.desktop +usr/share/applications/wine-notepad.desktop +usr/share/applications/wine-uninstaller.desktop +usr/share/applications/wine-winecfg.desktop" + +src_unpack() { + if use win64 ; then + [[ $(( $(gcc-major-version) * 100 + $(gcc-minor-version) )) -lt 404 ]] \ + && die "you need gcc-4.4+ to build 64bit wine" + fi + + if use win32 && use opencl; then + [[ x$(eselect opencl show) = "xintel" ]] && + die "Cannot build wine[opencl,win32]: intel-ocl-sdk is 64-bit only" # 403947 + fi + + if [[ ${PV} == "9999" ]] ; then + git-2_src_unpack + else + unpack ${MY_P}.tar.bz2 + fi + + unpack "${PULSE_PATCHES}.tar.bz2" + unpack "${WINE_GENTOO}.tar.bz2" +} + +src_prepare() { + local md5="$(md5sum server/protocol.def)" + epatch "${FILESDIR}"/${PN}-1.1.15-winegcc.patch #260726 + epatch "${FILESDIR}"/${PN}-1.4_rc2-multilib-portage.patch #395615 + epatch "${FILESDIR}"/${PN}-1.5.17-osmesa-check.patch #429386 + [[ ${PV} == "9999" ]] || epatch "../${PULSE_PATCHES}"/*.patch #421365 + epatch_user #282735 + if [[ "$(md5sum server/protocol.def)" != "${md5}" ]]; then + einfo "server/protocol.def was patched; running tools/make_requests" + tools/make_requests || die #432348 + fi + eautoreconf + sed -i '/^UPDATE_DESKTOP_DATABASE/s:=.*:=true:' tools/Makefile.in || die + sed -i '/^MimeType/d' tools/wine.desktop || die #117785 +} + +do_configure() { + local builddir="${WORKDIR}/wine$1" + mkdir -p "${builddir}" + pushd "${builddir}" >/dev/null + + local usepulse + [[ ${PV} == "9999" ]] || usepulse=$(use_with pulseaudio pulse) + + ECONF_SOURCE=${S} \ + econf \ + --sysconfdir=/etc/wine \ + $(use_with alsa) \ + $(use_with capi) \ + $(use_with lcms cms) \ + $(use_with cups) \ + $(use_with ncurses curses) \ + $(use_with udisks dbus) \ + $(use_with fontconfig) \ + $(use_with gnutls) \ + $(use_with gphoto2 gphoto) \ + $(use_with gsm) \ + $(use_with gstreamer) \ + --without-hal \ + $(use_with jpeg) \ + $(use_with ldap) \ + $(use_with mp3 mpg123) \ + $(use_with nls gettext) \ + $(use_with openal) \ + $(use_with opencl) \ + $(use_with opengl) \ + $(use_with ssl openssl) \ + $(use_with osmesa) \ + $(use_with oss) \ + $(use_with png) \ + $(use_with threads pthread) \ + ${usepulse} \ + $(use_with scanner sane) \ + $(use_enable test tests) \ + $(use_with truetype freetype) \ + $(use_with v4l) \ + $(use_with X x) \ + $(use_with xcomposite) \ + $(use_with xinerama) \ + $(use_with xml) \ + $(use_with xml xslt) \ + $2 + + emake -j1 depend + + popd >/dev/null +} + +src_configure() { + export LDCONFIG=/bin/true + use custom-cflags || strip-flags + + if use win64 ; then + do_configure 64 --enable-win64 + use win32 && ABI=x86 do_configure 32 --with-wine64=../wine64 + else + ABI=x86 do_configure 32 --disable-win64 + fi +} + +src_compile() { + local b + for b in 64 32 ; do + local builddir="${WORKDIR}/wine${b}" + [[ -d ${builddir} ]] || continue + emake -C "${builddir}" all + done +} + +src_install() { + local b + for b in 64 32 ; do + local builddir="${WORKDIR}/wine${b}" + [[ -d ${builddir} ]] || continue + emake -C "${builddir}" install DESTDIR="${D}" + done + emake -C "../${WINE_GENTOO}" install DESTDIR="${D}" EPREFIX="${EPREFIX}" + dodoc ANNOUNCE AUTHORS README + if use gecko ; then + insinto /usr/share/wine/gecko + doins "${DISTDIR}"/wine_gecko-${GV}-x86.msi + use win64 && doins "${DISTDIR}"/wine_gecko-${GV}-x86_64.msi + fi + if use mono ; then + insinto /usr/share/wine/mono + doins "${DISTDIR}"/wine-mono-${MV}.msi + fi + if ! use perl ; then + rm "${D}"usr/bin/{wine{dump,maker},function_grep.pl} "${D}"usr/share/man/man1/wine{dump,maker}.1 || die + fi + + if use win32 || ! use win64; then + pax-mark psmr "${D}"usr/bin/wine{,-preloader} #255055 + fi + use win64 && pax-mark psmr "${D}"usr/bin/wine64{,-preloader} + + if use win64 && ! use win32; then + dosym /usr/bin/wine{64,} # 404331 + dosym /usr/bin/wine{64,}-preloader + fi +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} diff --git a/app-emulation/wine/wine-9999.ebuild b/app-emulation/wine/wine-9999.ebuild index a902fb4c6c92..f3e3bb580689 100644 --- a/app-emulation/wine/wine-9999.ebuild +++ b/app-emulation/wine/wine-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-emulation/wine/wine-9999.ebuild,v 1.128 2013/01/06 03:09:25 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-9999.ebuild,v 1.129 2013/01/20 02:27:14 tetromino Exp $ EAPI="5" @@ -18,9 +18,9 @@ else S=${WORKDIR}/${MY_P} fi -GV="1.8" +GV="1.9" MV="0.0.8" -PULSE_PATCHES="winepulse-patches-1.5.21" +PULSE_PATCHES="winepulse-patches-1.5.22" WINE_GENTOO="wine-gentoo-2012.11.24" DESCRIPTION="Free implementation of Windows(tm) on Unix" HOMEPAGE="http://www.winehq.org/" @@ -122,6 +122,13 @@ DEPEND="${RDEPEND} virtual/yacc sys-devel/flex" +# These use a non-standard "Wine" category, which is provided by +# /etc/xdg/applications-merged/wine.menu +QA_DESKTOP_FILE="usr/share/applications/wine-browsedrive.desktop +usr/share/applications/wine-notepad.desktop +usr/share/applications/wine-uninstaller.desktop +usr/share/applications/wine-winecfg.desktop" + src_unpack() { if use win64 ; then [[ $(( $(gcc-major-version) * 100 + $(gcc-minor-version) )) -lt 404 ]] \ diff --git a/app-emulation/winetricks/Manifest b/app-emulation/winetricks/Manifest index fc36cde3b775..3e35b9424f60 100644 --- a/app-emulation/winetricks/Manifest +++ b/app-emulation/winetricks/Manifest @@ -1,5 +1,5 @@ -DIST winetricks-927 617153 SHA256 5d472bd7e38e002eaa8d7d728d46cad04a0c86add3edb74ee47ea8cfc9b8bce2 SHA512 8b585a04702ab56f1513028d0e69bfcc44eefac714bad8bea0b6442b43d07239af52c01c6813b3b2072f765a7dbadc04296462f9da810ca7e616ca462b0dcdc1 WHIRLPOOL 36a406c3bd46820a8bd16ac8343f54ed78251f2210971030498a7cb6c97c6a232b9ab31f34a8403931bca64d58bfb8319244f57f89d910f3cd5664b01a4a9428 -DIST winetricks-927.1 3469 SHA256 f522f4c991194cbed1044182ca6fbbb7645cd4b98d9557ab7d073ace1af4738d SHA512 2c832a9cc4286f641aeed7a5a47131773b48dd0cf123798f753ffb24799dabca29986b2b740698fbe9efb8034ac874a18147c6bd645bea8e69fdb42f1437fdf2 WHIRLPOOL 0ccb982022189b4d2e134756cadbca3628c33e57be6879b07e84f99182ed5a201379413a32af5d689744b4d7527f6abf56aae7113f34401c4cbe62b902462424 DIST winetricks-931 617522 SHA256 ca7d1ae94879282c50516dc918c31ab42b6809d682849c198bff795006aef7e4 SHA512 fc2e17c5e0a2abf130b7a02ef75aba5cccebccb51c5c203b3d9115e971ce3055b991ec9c5ffa0ee24f99dfbbfeb94cc6bf8eb40af3a2d46be70beb399992393c WHIRLPOOL 385a793fd554f2326ee309224e8127c8d26a336310b3c1f02b9236513902bc102491deaf690f4151a396c5777a37234d50fc4ad1fd54c266be9b1d5709dd433c DIST winetricks-931.1 3469 SHA256 f522f4c991194cbed1044182ca6fbbb7645cd4b98d9557ab7d073ace1af4738d SHA512 2c832a9cc4286f641aeed7a5a47131773b48dd0cf123798f753ffb24799dabca29986b2b740698fbe9efb8034ac874a18147c6bd645bea8e69fdb42f1437fdf2 WHIRLPOOL 0ccb982022189b4d2e134756cadbca3628c33e57be6879b07e84f99182ed5a201379413a32af5d689744b4d7527f6abf56aae7113f34401c4cbe62b902462424 +DIST winetricks-935 617548 SHA256 a7e663f655bfb7e1cbff328ade3d217d77cd18f7c85ef2850c97432d7d6cd306 SHA512 1dae0e8a14ee93047945f2312b9b3a208c104850232bef32cfb9010685d4f828468cfe92a8ddba7e4742ee253a57d81e0e82e8e1e09bdaa10fc907eed02f7c88 WHIRLPOOL 2166a42bd7e6859ff4e1a87c14020564d94ae053dfeaa6aecb397a731fbd06b3ac0dcc3608848f9e2b9a6fca310d9f7e6f033a4a614b7016c4813f1d189bfe65 +DIST winetricks-935.1 3469 SHA256 f522f4c991194cbed1044182ca6fbbb7645cd4b98d9557ab7d073ace1af4738d SHA512 2c832a9cc4286f641aeed7a5a47131773b48dd0cf123798f753ffb24799dabca29986b2b740698fbe9efb8034ac874a18147c6bd645bea8e69fdb42f1437fdf2 WHIRLPOOL 0ccb982022189b4d2e134756cadbca3628c33e57be6879b07e84f99182ed5a201379413a32af5d689744b4d7527f6abf56aae7113f34401c4cbe62b902462424 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 SHA256 dded8c294cc5c2e71e4a5d1531ab165178cf3d2d1d890d0656368c2e499bfeb9 SHA512 59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a WHIRLPOOL 268da9e06712a678fbbcfff8eac1fca364b5e46f0a9c48a591eb88f03260b1a55f203eb2908bfe1f0a534b77c866127ff6f7049b0e43fe8abeaaa26fe55de75b diff --git a/app-emulation/winetricks/winetricks-931.ebuild b/app-emulation/winetricks/winetricks-931.ebuild index 360460c77465..18b4e9fdd59f 100644 --- a/app-emulation/winetricks/winetricks-931.ebuild +++ b/app-emulation/winetricks/winetricks-931.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/winetricks/winetricks-931.ebuild,v 1.1 2013/01/06 02:58:24 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/winetricks/winetricks-931.ebuild,v 1.2 2013/01/19 22:31:02 tetromino Exp $ EAPI=4 @@ -33,6 +33,9 @@ RDEPEND="app-arch/cabextract gtk? ( gnome-extra/zenity ) kde? ( kde-base/kdialog )" +# Uses non-standard "Wine" category, which is provided by app-emulation/wine; #451552 +QA_DESKTOP_FILE="usr/share/applications/winetricks.desktop" + S="${WORKDIR}" src_unpack() { diff --git a/app-emulation/winetricks/winetricks-927.ebuild b/app-emulation/winetricks/winetricks-935.ebuild similarity index 87% rename from app-emulation/winetricks/winetricks-927.ebuild rename to app-emulation/winetricks/winetricks-935.ebuild index b29b7e83963d..db6737e7fe8b 100644 --- a/app-emulation/winetricks/winetricks-927.ebuild +++ b/app-emulation/winetricks/winetricks-935.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-emulation/winetricks/winetricks-927.ebuild,v 1.1 2012/12/08 05:11:12 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/winetricks/winetricks-935.ebuild,v 1.1 2013/01/19 22:31:02 tetromino Exp $ EAPI=4 @@ -33,6 +33,9 @@ RDEPEND="app-arch/cabextract gtk? ( gnome-extra/zenity ) kde? ( kde-base/kdialog )" +# Uses non-standard "Wine" category, which is provided by app-emulation/wine; #451552 +QA_DESKTOP_FILE="usr/share/applications/winetricks.desktop" + S="${WORKDIR}" src_unpack() { diff --git a/app-emulation/winetricks/winetricks-99999999.ebuild b/app-emulation/winetricks/winetricks-99999999.ebuild index ece559fc7af6..cc6ba5cb2fbc 100644 --- a/app-emulation/winetricks/winetricks-99999999.ebuild +++ b/app-emulation/winetricks/winetricks-99999999.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-emulation/winetricks/winetricks-99999999.ebuild,v 1.6 2012/11/24 23:08:31 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/winetricks/winetricks-99999999.ebuild,v 1.7 2013/01/19 22:31:02 tetromino Exp $ EAPI=4 @@ -33,6 +33,9 @@ RDEPEND="app-arch/cabextract gtk? ( gnome-extra/zenity ) kde? ( kde-base/kdialog )" +# Uses non-standard "Wine" category, which is provided by app-emulation/wine; #451552 +QA_DESKTOP_FILE="usr/share/applications/winetricks.desktop" + S="${WORKDIR}" src_unpack() { diff --git a/app-i18n/cstools/cstools-3.42.ebuild b/app-i18n/cstools/cstools-3.42.ebuild index dd1ffedd7677..bb31ecc996b5 100644 --- a/app-i18n/cstools/cstools-3.42.ebuild +++ b/app-i18n/cstools/cstools-3.42.ebuild @@ -1,18 +1,21 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/cstools/cstools-3.42.ebuild,v 1.5 2005/11/28 12:08:12 mcummings Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/cstools/cstools-3.42.ebuild,v 1.6 2013/01/20 09:56:31 pinkbyte Exp $ + +EAPI=5 inherit perl-app MY_P="Cstools-${PV}" -DESCRIPTION="A charset conversion tool cstocs and two convenience Perl modules for Czech language." -SRC_URI="http://www.fi.muni.cz/~adelton/perl/${MY_P}.tar.gz" -HOMEPAGE="http://www.fi.muni.cz/~adelton/perl/#cstools" +DESCRIPTION="A charset conversion tool cstocs and two convenience Perl modules for Czech language" +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" IUSE="" DEPEND="dev-perl/MIME-tools" +RDEPEND="${DEPEND}" -S=${WORKDIR}/${MY_P} +S="${WORKDIR}/${MY_P}" diff --git a/app-i18n/enca/enca-1.13-r3.ebuild b/app-i18n/enca/enca-1.13-r3.ebuild index 6e9fb6b23b82..8f56bacfd5b3 100644 --- a/app-i18n/enca/enca-1.13-r3.ebuild +++ b/app-i18n/enca/enca-1.13-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/app-i18n/enca/enca-1.13-r3.ebuild,v 1.6 2013/01/18 09:07:17 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/enca/enca-1.13-r3.ebuild,v 1.7 2013/01/20 10:45:52 ago Exp $ EAPI="4" @@ -12,7 +12,7 @@ SRC_URI="http://dl.cihar.com/${PN}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="doc +recode" DEPEND="recode? ( >=app-text/recode-3.6_p15 )" diff --git a/app-laptop/nvidiabl/Manifest b/app-laptop/nvidiabl/Manifest index 69b94d704818..0e07578a7637 100644 --- a/app-laptop/nvidiabl/Manifest +++ b/app-laptop/nvidiabl/Manifest @@ -1,2 +1,2 @@ -DIST nvidiabl-0.77-source-only.dkms.tar.gz 12222 SHA256 c769af581d077a22c5ce919d4244708956eece868f71d30e1cc08c90a5701731 SHA512 049fbc9da258be9d22b883ca8f0ff69d790847d3d80200a5f5480c41cc2a640cc131c0241aeb0dd9cd00f9d0cea48ca5eca266bea3b300933da4be927437d18d WHIRLPOOL a9ba7cad7db754b12b3c06c2e75dd0728193659c3270e431978f0e29944a0c232f8b388489c1e8792b730b3d4d9ef5fc496044c37b7da7d3182dae3f90232b49 DIST nvidiabl-0.79-source-only.dkms.tar.gz 12662 SHA256 fcef47beac64d4cbf8df89f75e1c863bbf616e3c49688814459513f484ae90ba SHA512 afc8750e3363297f26a3bd1f0782d2043228c1b9aa7f4c0f7f0361440ce7b3a9136893c7bd7247b3247eca44a4ea33e5e52a80847cfb9df89dd9005769c7eab2 WHIRLPOOL 947aba9dc090ebdb5a75e82fe2e6e6a0e3400fb1790c1e58d9aea56dc659083271c3a067df7835668bd6b26eeecc038e6342496b764275cf1de9711d38dc3d7b +DIST nvidiabl-0.80-source-only.dkms.tar.gz 12735 SHA256 91c6f41b42f0f53938aacdaf426a7d76fce5c396ecf39a42d068a3de2e3c75a6 SHA512 ba206d5bf88cb8d4ee1e35938d85291668365a1237d2954287d7ba2014faa9210d32072d10fbcbbf1489efd5cd60480f5bad34e45975cced2468946437339c0d WHIRLPOOL 203a698f9f31c43ab14e5e8489a5189531b81e7aebc7da75d52029b8a45d3a8a5cdad45449ef31e1fb0c6e0d2414789af7b61d523dd573dbfe29b3cfe5321923 diff --git a/app-laptop/nvidiabl/nvidiabl-0.77.ebuild b/app-laptop/nvidiabl/nvidiabl-0.80.ebuild similarity index 90% rename from app-laptop/nvidiabl/nvidiabl-0.77.ebuild rename to app-laptop/nvidiabl/nvidiabl-0.80.ebuild index 016f622a88e1..b146a151e4de 100644 --- a/app-laptop/nvidiabl/nvidiabl-0.77.ebuild +++ b/app-laptop/nvidiabl/nvidiabl-0.80.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-laptop/nvidiabl/nvidiabl-0.77.ebuild,v 1.1 2012/09/03 20:05:00 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-laptop/nvidiabl/nvidiabl-0.80.ebuild,v 1.1 2013/01/19 21:23:37 angelos Exp $ EAPI=4 inherit linux-mod diff --git a/app-misc/colordiff/colordiff-1.0.13.ebuild b/app-misc/colordiff/colordiff-1.0.13.ebuild index 8369b82c5559..41cd526d580f 100644 --- a/app-misc/colordiff/colordiff-1.0.13.ebuild +++ b/app-misc/colordiff/colordiff-1.0.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/app-misc/colordiff/colordiff-1.0.13.ebuild,v 1.5 2013/01/16 18:53:58 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/colordiff/colordiff-1.0.13.ebuild,v 1.6 2013/01/20 10:16:28 ago Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="http://www.colordiff.org/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 ~ppc-aix ~x86-fbsd ~hppa-hpux ~ia64-hpux ~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 ~sparc ~x86 ~ppc-aix ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="" RDEPEND="sys-apps/diffutils" diff --git a/app-misc/dtach/metadata.xml b/app-misc/dtach/metadata.xml index 7a791c6c6dec..40149c995561 100644 --- a/app-misc/dtach/metadata.xml +++ b/app-misc/dtach/metadata.xml @@ -2,8 +2,4 @@ shell-tools - - swegener@gentoo.org - Sven Wegener - diff --git a/app-portage/layman/layman-2.0.0.ebuild b/app-portage/layman/layman-2.0.0.ebuild index fb07e9d4ab9e..622ece30d486 100644 --- a/app-portage/layman/layman-2.0.0.ebuild +++ b/app-portage/layman/layman-2.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/app-portage/layman/layman-2.0.0.ebuild,v 1.7 2013/01/16 18:48:46 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/layman/layman-2.0.0.ebuild,v 1.8 2013/01/20 10:13:38 ago Exp $ EAPI="4" SUPPORT_PYTHON_ABIS="1" @@ -16,7 +16,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~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 ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="bazaar cvs darcs +git mercurial subversion test" COMMON_DEPS="dev-lang/python" diff --git a/app-shells/ccsh/ccsh-0.0.4-r3.ebuild b/app-shells/ccsh/ccsh-0.0.4-r3.ebuild index 6c6baf941c73..f34bec7a80dd 100644 --- a/app-shells/ccsh/ccsh-0.0.4-r3.ebuild +++ b/app-shells/ccsh/ccsh-0.0.4-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/app-shells/ccsh/ccsh-0.0.4-r3.ebuild,v 1.1 2012/10/15 09:56:12 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/ccsh/ccsh-0.0.4-r3.ebuild,v 1.2 2013/01/20 11:00:01 pinkbyte Exp $ EAPI="4" @@ -20,7 +20,8 @@ src_compile() { } src_install() { - dobin ccsh + exeinto /bin + doexe ccsh newman ccsh.man ccsh.1 dodoc ChangeLog README TODO } diff --git a/app-text/highlight/highlight-3.9.ebuild b/app-text/highlight/highlight-3.9.ebuild index 3a39ded18fda..7116aea97bc0 100644 --- a/app-text/highlight/highlight-3.9.ebuild +++ b/app-text/highlight/highlight-3.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/highlight/highlight-3.9.ebuild,v 1.7 2013/01/16 20:04:27 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/highlight/highlight-3.9.ebuild,v 1.8 2013/01/20 17:03:52 ago Exp $ EAPI=4 @@ -12,7 +12,7 @@ SRC_URI="http://www.andre-simon.de/zip/${P}.tar.bz2" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos" +KEYWORDS="alpha ~amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos" IUSE="examples qt4" RDEPEND="dev-lang/lua diff --git a/app-text/poppler/poppler-0.20.5.ebuild b/app-text/poppler/poppler-0.20.5.ebuild index 5861ab3055f8..7a00ce6483cc 100644 --- a/app-text/poppler/poppler-0.20.5.ebuild +++ b/app-text/poppler/poppler-0.20.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-text/poppler/poppler-0.20.5.ebuild,v 1.4 2013/01/16 18:49:44 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/poppler-0.20.5.ebuild,v 1.6 2013/01/20 13:12:18 ago Exp $ EAPI=4 @@ -11,7 +11,7 @@ HOMEPAGE="http://poppler.freedesktop.org/" SRC_URI="http://poppler.freedesktop.org/${P}.tar.gz" LICENSE="GPL-2" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~ia64-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 ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" SLOT="0" IUSE="cairo cjk curl cxx debug doc +introspection jpeg jpeg2k +lcms png qt4 tiff +utils" diff --git a/app-text/txt2pdbdoc/txt2pdbdoc-1.4.4.ebuild b/app-text/txt2pdbdoc/txt2pdbdoc-1.4.4.ebuild index a63e9f2742aa..32861090aef1 100644 --- a/app-text/txt2pdbdoc/txt2pdbdoc-1.4.4.ebuild +++ b/app-text/txt2pdbdoc/txt2pdbdoc-1.4.4.ebuild @@ -1,6 +1,8 @@ -# 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/app-text/txt2pdbdoc/txt2pdbdoc-1.4.4.ebuild,v 1.9 2009/01/03 00:40:35 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/txt2pdbdoc/txt2pdbdoc-1.4.4.ebuild,v 1.10 2013/01/20 15:07:59 scarabeus Exp $ + +EAPI=5 inherit autotools @@ -14,16 +16,11 @@ KEYWORDS="amd64 ppc sparc x86" IUSE="" DEPEND="dev-lang/perl" +RDEPEND="${DEPEND}" -src_unpack() { - unpack ${A} - cd "${S}" +DOCS=( AUTHORS README ChangeLog ) +src_prepare() { sed -i -e "/^CFLAGS/d" configure.in eautoreconf } - -src_install () { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS README ChangeLog -} diff --git a/dev-cpp/libbinio/metadata.xml b/dev-cpp/libbinio/metadata.xml index 4992d06e8217..8434377a6047 100644 --- a/dev-cpp/libbinio/metadata.xml +++ b/dev-cpp/libbinio/metadata.xml @@ -2,7 +2,4 @@ cpp - - spock@gentoo.org - diff --git a/dev-db/mariadb/Manifest b/dev-db/mariadb/Manifest index 3b17ad6febab..f38898d025e7 100644 --- a/dev-db/mariadb/Manifest +++ b/dev-db/mariadb/Manifest @@ -1,15 +1,13 @@ -DIST mariadb-5.1.42.tar.gz 21616693 SHA256 f93dbf85ad03fe1928738e5552b8a7f911a0c3f2d644784a355a8f1b8fc2c29b SHA512 25980e57c7e6d17b2181183e1a5fd9440806630ca7bd1c54846b3a566f684481ce8ef5ab78f3ee719f6ab1071114a73b3a936c10fbb764eb75a4674b8fd5184b WHIRLPOOL c7599b19d484fc50c5a8d91798d746cf63cee70c213cd8739f376ddbfd9a3cfcba3465fe85b5bad9ca10ee931cbba265b2054d44b743adce4e01b0bb72a21b2c -DIST mariadb-5.1.50.tar.gz 24567591 SHA256 7d2a42374d05de28180985e8f4de98c2133ea1c7e39d8ccb9c12a4323704a5e7 SHA512 2ecf3b23880173868cfa72fcf3e093111c32e05f585b10b9b61d2f265c4a929c6bb8a23002699076a95ec6c8e1a5e16ceab0c780b7a2f58f64520f0d40060d43 WHIRLPOOL 85987a3372cd9088272bc291eb1b33c2c2532dfe8b86c88a876cec04a7b9c71b61c69782973fece77f32f04c5a2563210ea4099595fc0e1d3f91a3950a450880 -DIST mariadb-5.1.55.tar.gz 24613002 SHA256 df031b2f7dcc92a36da3a76b346034c286e5cb77d8f634e3030543b54f8c052b SHA512 233e9fc07144aa266e4d0f65117e0f47d6445162469860e98351926c98f269c89e466bb0da8fdb9b46874f5fa5d1fdfdc63fe092218272fe02519abdadcc84b8 WHIRLPOOL 9750d587db600687465e1acc9431613a0adec734964a68752d1c2884052e1d27fdb476bbaaec9e914a90ef939d5b51f3886e2d14caeab6b451800f4329074171 DIST mariadb-5.1.62.tar.gz 24931609 SHA256 2293e973d22bc969dcb8b17710c909182d2b7960f711b124c0c9f429f9dd11da SHA512 a579e7fb9421a7de1a77881575c35d43bfaa2cdfc398477f80373fad4faec0bcc7bea3248cd67972787745744653dbf0c27b226d79dccbc4ffe77bab7dda0c35 WHIRLPOOL 5e8207c5344309a7263570cbd6beca438b4287024ff48aedf33465327d81b2360977fe8da44d1f49500e6c3181e6dea664eb425b73185bbc0c10d3ed55c57e72 +DIST mariadb-5.1.66.tar.gz 25017546 SHA256 c11d8e4f6bfcdea8833470a33738e0561da97dd3c63575de2b959008509ae372 SHA512 603e8f571e2446f7596776769633dcf5496f4fdea100c43222efcc74b9c8ed292a0c2944c43f7c216fd2676b59ee18bdbb5d6f38f27627551252ff25d722dce6 WHIRLPOOL 9043e5a0215773f8f7cb8b5265101f019caeb5f73bc5cc3ea2b37a67500fc149395201611cd87c3e131b562a9ad9cdd5672bc6c545cd8e71da983a4a7b6ef737 DIST mariadb-5.2.12.tar.gz 25364319 SHA256 6d53bc0831d87b695cc872c3456c16935aed67250fb305cdb7197274e2632a49 SHA512 d4583e0f6b8ae5b90e6c2818ecb98eadd5245e1c2c1a270980dc7b002c62f056fe0c15a389548d6e0ec3c0d83ac72a9fe30b6f9b220c92eae0e0ca29fd7bb333 WHIRLPOOL 10cdec3090f733110c762daae945f6a77f61103f3c14ccf38884df41b036497c360d98cc3be3c754563f8a0affb6ad012224f2f31905b709eb34a61e0613bf90 -DIST mariadb-5.2.9.tar.gz 25107185 SHA256 6ef38be1d6f1fe7b1b99b9d6ddf5ac46cd7d0c05cb2a5088a7ec294e62fbd611 SHA512 64788ddd28c078208e2e76eed451615ffaabefc240573def176b1830dd005dc66e2b568ff9f7698aa718d605eb07ed31fa26b160fef51cd672d7b0a61872fec4 WHIRLPOOL ddaf1894ecccc8fb04fd35162169961a842786c17011f1f621cf9c30018d7066872fe15a4e21dd6fe445e07182c736fdd8db7e7a3deb2150e784fd22f58a9282 +DIST mariadb-5.2.13.tar.gz 25459987 SHA256 96887416e097f1d4a7dde70ad404e6b7d26d3d13b5d1a8451e1ea62cdd9b0ca8 SHA512 696bb5f59f25fa31fc35399c99f6f13e37a178b1e9b0155e3cf053b1232a950035132d075b0594ff611f6b59635d49d0800820c2bbd02932d16917e174717f8a WHIRLPOOL 6755eb6a841350eb69668a1679b1cb7ec3d6ac58bb793b07d07353cc1962a82c111920dc7bc8b08056a85beb7f8d371045fdeb31751a44981f7b910d52e3da74 +DIST mariadb-5.3.11.tar.gz 26865690 SHA256 07a766b007c2f2c50680ccde121801208222877bb9311ffc9abf85e2f5e09f3a SHA512 8f501c6c4c3c886ff65c079ebba8e4870ebf8e6b451f35014b6d7cd4f74bf5c23360c271b5ef759b10a491914136213d759b859b1df9ba06d9863d684aa8d8e9 WHIRLPOOL 4b74bc8e4606a5c14e437a57398091d717bd866e179e26ced8054f3b5c6e88548f8e15e9a822f39ff5e81c6d6f90d7d69c5a42549bf81c2eb57f5b0d448ca2c0 DIST mariadb-5.3.6.tar.gz 26724631 SHA256 899410ef19981d9be3c293f57fbceffc88487ccbd6ebcb02a8c14831c918e040 SHA512 ccf61f42084318a9084f742bdf03786b6590b0969b42c17c05503fac9608a56e39ee1a0ad0276aea413c61822cf5edfddcf25bfe9d421d76e01824332b7fee67 WHIRLPOOL cf5887291affd437f755e63d2c79e3fcc63fa5687dfab8c069b62caced59ced2cdae2a54e560e54a1435ec52c5a21ea19efe081704d98de104fc3c8688713b85 DIST mariadb-5.5.23.tar.gz 27432223 SHA256 e4ce1f31739d97f43768cf3c1efaf05d291d9758e6097fd2512fafa5686a2797 SHA512 969836bdc4cf8a0c850b7b5aabbe148b31f5e5be387f986e59d35b83b0d10e93f89c65cdb7541d34c18b5cddbb1b7379f73bc52c4bd08f8a0c92ae958d566ad6 WHIRLPOOL f54fc3da96bbc6663bde43ce4d692fd453cc5dca9c697aaf6da33241b08e746e52dbebfc54c360c3d0bee9cfb65413379cb6d221f1fe849c2882abd070a7b893 DIST mariadb-5.5.28.tar.gz 27819467 SHA256 1237568d36fcbda707d363f2819ac539aedf2f49267162ec95e90cf4bb049850 SHA512 8ee9c624da4683ba4145f15014780568c4ea2034204d4f80e0aad688cdfe41cba49d3ca6db7adf52023054a5b7f467ab11d62a5fe30e0d5e92dff491dc8e5e5e WHIRLPOOL 879683cae962d8d15d0913d21df05570b01d24e7c5e9ece3c4ce8e23324005a044122d16a7e683ce43637bed796c93fa05c17e516ddf4e59f0662705be244b6c -DIST mysql-extras-20100324-0235Z.tar.bz2 1054397 SHA256 6345de31176cbc69b13e92a4d459432c54a82fcd5f54350c4280287da9b3b0c1 SHA512 dd16e1a48c0b9483fcc2fb7dc9382fd04042648a4c1763abd48873d3d78453ffea94378f56b2f358c9777b4473254c80681e8676b8bdc37524f83887d0f93e15 WHIRLPOOL ece51de1c57fe7dcf2ec0948287c78084844fecd84f61cdae551e91ecc619c18602755bbe0b9f53871997304ab5cb9d6537eae7a8bbe137d5670ca03041eca14 -DIST mysql-extras-20101006-0004Z.tar.bz2 1251792 SHA256 a42c4988a25113bef5cc727fb24c994502f4d02469246ff839f8ea2a08c07bb7 SHA512 977917c6d36c458155dbc80aeb849288a597aa0c894ec689eaea9050494aa86261b4fc5c027ece20428812592257aa37c7dfcd8f4f90de549e0be7d23d911306 WHIRLPOOL 6544647259a560f30122c6151e794430fbea5110f2726b9d1e3d78d64d10183b813a2bf0ac6142e5dea6efbdc9f2c5f27119fba318a5d644a11628179b134b78 -DIST mysql-extras-20110426-1046Z.tar.bz2 1312102 SHA256 e49636b2527d96bc4fe6d2143b00af47c63202ad999fed332a544aa6b7b1ffa8 SHA512 4441715d9b46b4b100b5e3ff05675a5408ad53f304cb9c476c98008ef276a7b68206231b54dd01ea562491ab6f37e42bb5f49f9549862ad161e26adbbc04e267 WHIRLPOOL 34bbe9cd7151d9635b62a09c8a4d3850e1d2757113050b581363b93aea3185f2a35f372d30f12e42f65fdb6a454b3dc3809a05b1e16392ae2c07dfe1b9160de8 -DIST mysql-extras-20110819-0415Z.tar.bz2 1734262 SHA256 f2749639669d458ae59c6eb3134f5c2689219281ee4f4d33fdc525a19d456a5f SHA512 9432f7bc95118f5fcf0c18779391af27f98bfed3eab4bc26e33266ed2411ba9ed1699b13c5450e59ff8c420bd6cac3122586a2d50d041a9a67adc8eeda639971 WHIRLPOOL d24b123899bccda6758e0f70398a68ae3340592320f641d112e3c0e317da864ef8ef0b65534554557381b60af4b697faef3181c03b395eebcbc2c45e2bc3baf4 +DIST mariadb-5.5.28a.tar.gz 27844298 SHA256 66c908592763c641f2a1e9fd83f080458a0d3375cda9aaf7700a37877b1e9968 SHA512 49fbbffb68f77e370cb288f7e406389101dd85433f2bbf25f9932d5e22ad6647b5a5f7fa397fa2f2efb5b7f2d860f395224d3188b70ed474373b820b1e708df7 WHIRLPOOL 3575a808b5bd0cf3778fcc81c78a4999abdb0cf82a577ebc4cda77df8db8c54120108d086c598ed40ae9eeb8660874cc8f33f6de2380a2a6fcb5ea70d0a1c727 DIST mysql-extras-20120416-2021Z.tar.bz2 1874771 SHA256 af780a9c41a5073d7a66e991e9b1c468bea89b1efd7fbea7e6daa5f75d235e33 SHA512 c1a33fb4875274ee5c04182b62697037454f3aea26e094003e985b9c3c0d47a8dd62a572e4db95ce98d6dbfba4388ae1f2577378acc15b4d3ad0b762e3cecb1d WHIRLPOOL bc3b2018fab6ab93bfbf834a99061c95a511415fd25bea988a27108fcd210142791983d1f5a561961e471a7b2e99210e4b260a200d85150bac596cdb6e1a83d5 DIST mysql-extras-20120906-1344Z.tar.bz2 1898342 SHA256 75e8efa38d6b10b63d05553f5c884396bdd50b9a445731892dc7780d0a015b2e SHA512 4c253a5772eea4e130c39b4e127372431afaf53d574f8369e905c636c7c12e7eb534432e1ffd681eb83de857850ddcba161ef5c489e1f077ff850bf95978d4f8 WHIRLPOOL 1e9bd9f1ce83d219c20e089e952a8b39c73d97d027a1309788a3d8e529d5444412d6e4445d362b16e01c9ea918cc7c994635c240ca7f7848a2c06f528d832485 +DIST mysql-extras-20121101-2319Z.tar.bz2 1898358 SHA256 ea5da082d3384bde67e005ebc39b78e7caadea80745333fb5a9cf47a4c4e4c5d SHA512 6a49abb1beee012d87ab63071a568ee6d9d8e4ff7a76401b91f5bdc127860d1c504a3877cbadb81536b07afe5ff419c77c793b0fc14ba484f56765d1ca526614 WHIRLPOOL 4bda75a0a9063830b3140bbc3cb12b60fa21289eee2fa476fb286da6318fdf0445a9c6193bd2063aefcd3f4ecc1f8045b30635f0e32014098d0f3dbee86e01fc +DIST mysql-extras-20130120-0100Z.tar.bz2 1899297 SHA256 56db6daa26070cb10b220cb06e7b4d4a84214932a5a04500ed0e76b938c01776 SHA512 9fc9b21e547ec0e1ae37b288a1ade28b11c03a89129302226c36018cf69842fda95665799ded84f04cccffaf54555acde40bf2ae6e2ea39ec63b3876382af1ba WHIRLPOOL 25f31d91d6004e7472ef6f2ff0d02b9dde9915f56fc84da600145ac09d1d56751c2ef85c897d3b7bacd29b1010b304445517452254a1e9208bc7bfa9c2e9bf2e diff --git a/dev-db/mariadb/files/my.cnf-5.1 b/dev-db/mariadb/files/my.cnf-5.1 index 3a4b17c93183..baf41c5b9e9d 100644 --- a/dev-db/mariadb/files/my.cnf-5.1 +++ b/dev-db/mariadb/files/my.cnf-5.1 @@ -1,66 +1,66 @@ -# /etc/mysql/my.cnf: The global mysql configuration file. -# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/files/my.cnf-5.1,v 1.2 2010/03/24 18:27:39 robbat2 Exp $ +# @GENTOO_PORTAGE_EPREFIX@/etc/mysql/my.cnf: The global mysql configuration file. +# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/files/my.cnf-5.1,v 1.3 2013/01/20 02:39:55 robbat2 Exp $ # The following options will be passed to all MySQL clients [client] #password = your_password port = 3306 -socket = /var/run/mysqld/mysqld.sock +socket = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.sock [mysql] -character-sets-dir=/usr/share/mysql/charsets +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets default-character-set=utf8 [mysqladmin] -character-sets-dir=/usr/share/mysql/charsets +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets default-character-set=utf8 [mysqlcheck] -character-sets-dir=/usr/share/mysql/charsets +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets default-character-set=utf8 [mysqldump] -character-sets-dir=/usr/share/mysql/charsets +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets default-character-set=utf8 [mysqlimport] -character-sets-dir=/usr/share/mysql/charsets +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets default-character-set=utf8 [mysqlshow] -character-sets-dir=/usr/share/mysql/charsets +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets default-character-set=utf8 [myisamchk] -character-sets-dir=/usr/share/mysql/charsets +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets [myisampack] -character-sets-dir=/usr/share/mysql/charsets +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets # use [safe_mysqld] with mysql-3 [mysqld_safe] -err-log = /var/log/mysql/mysql.err +err-log = @GENTOO_PORTAGE_EPREFIX@/var/log/mysql/mysql.err # add a section [mysqld-4.1] or [mysqld-5.0] for specific configurations [mysqld] character-set-server = utf8 user = mysql port = 3306 -socket = /var/run/mysqld/mysqld.sock -pid-file = /var/run/mysqld/mysqld.pid -log-error = /var/log/mysql/mysqld.err -basedir = /usr +socket = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.sock +pid-file = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.pid +log-error = @GENTOO_PORTAGE_EPREFIX@/var/log/mysql/mysqld.err +basedir = @GENTOO_PORTAGE_EPREFIX@/usr datadir = @DATADIR@ skip-external-locking key_buffer = 16M max_allowed_packet = 1M -table_cache = 64 +table_open_cache = 64 sort_buffer_size = 512K net_buffer_length = 8K read_buffer_size = 256K read_rnd_buffer_size = 512K myisam_sort_buffer_size = 8M -language = /usr/share/mysql/english +language = @GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/english # security: # using "localhost" in connects uses sockets by default @@ -71,15 +71,15 @@ log-bin server-id = 1 # point the following paths to different dedicated disks -tmpdir = /tmp/ -#log-update = /path-to-dedicated-directory/hostname +tmpdir = @GENTOO_PORTAGE_EPREFIX@/tmp/ +#log-update = @GENTOO_PORTAGE_EPREFIX@/path-to-dedicated-directory/hostname # you need the debug USE flag enabled to use the following directives, # if needed, uncomment them, start the server and issue -# #tail -f /tmp/mysqld.sql /tmp/mysqld.trace +# #tail -f @GENTOO_PORTAGE_EPREFIX@/tmp/mysqld.sql @GENTOO_PORTAGE_EPREFIX@/tmp/mysqld.trace # this will show you *exactly* what's happening in your server ;) -#log = /tmp/mysqld.sql +#log = @GENTOO_PORTAGE_EPREFIX@/tmp/mysqld.sql #gdb #debug = d:t:i:o,/tmp/mysqld.trace #one-thread @@ -100,12 +100,12 @@ innodb_buffer_pool_size = 16M # this is the default, increase it if you have lots of tables innodb_additional_mem_pool_size = 2M # -# i'd like to use /var/lib/mysql/innodb, but that is seen as a database :-( -# and upstream wants things to be under /var/lib/mysql/, so that's the route +# i'd like to use @GENTOO_PORTAGE_EPREFIX@/var/lib/mysql/innodb, but that is seen as a database :-( +# and upstream wants things to be under @GENTOO_PORTAGE_EPREFIX@/var/lib/mysql/, so that's the route # we have to take for the moment -#innodb_data_home_dir = /var/lib/mysql/ -#innodb_log_arch_dir = /var/lib/mysql/ -#innodb_log_group_home_dir = /var/lib/mysql/ +#innodb_data_home_dir = @GENTOO_PORTAGE_EPREFIX@/var/lib/mysql/ +#innodb_log_arch_dir = @GENTOO_PORTAGE_EPREFIX@/var/lib/mysql/ +#innodb_log_group_home_dir = @GENTOO_PORTAGE_EPREFIX@/var/lib/mysql/ # you may wish to change this size to be more suitable for your system # the max is there to avoid run-away growth on your machine innodb_data_file_path = ibdata1:10M:autoextend:max:128M diff --git a/dev-db/mariadb/files/my.cnf-5.5 b/dev-db/mariadb/files/my.cnf-5.5 new file mode 100644 index 000000000000..1f425613c592 --- /dev/null +++ b/dev-db/mariadb/files/my.cnf-5.5 @@ -0,0 +1,153 @@ +# @GENTOO_PORTAGE_EPREFIX@/etc/mysql/my.cnf: The global mysql configuration file. +# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/files/my.cnf-5.5,v 1.2 2013/01/20 02:39:55 robbat2 Exp $ + +# The following options will be passed to all MySQL clients +[client] +#password = your_password +port = 3306 +socket = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.sock + +[mysql] +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets +default-character-set=utf8 + +[mysqladmin] +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets +default-character-set=utf8 + +[mysqlcheck] +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets +default-character-set=utf8 + +[mysqldump] +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets +default-character-set=utf8 + +[mysqlimport] +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets +default-character-set=utf8 + +[mysqlshow] +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets +default-character-set=utf8 + +[myisamchk] +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets + +[myisampack] +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets + +# use [safe_mysqld] with mysql-3 +[mysqld_safe] +err-log = @GENTOO_PORTAGE_EPREFIX@/var/log/mysql/mysql.err + +# add a section [mysqld-4.1] or [mysqld-5.0] for specific configurations +[mysqld] +character-set-server = utf8 +user = mysql +port = 3306 +socket = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.sock +pid-file = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.pid +log-error = @GENTOO_PORTAGE_EPREFIX@/var/log/mysql/mysqld.err +basedir = @GENTOO_PORTAGE_EPREFIX@/usr +datadir = @DATADIR@ +skip-external-locking +key_buffer = 16M +max_allowed_packet = 1M +table_open_cache = 64 +sort_buffer_size = 512K +net_buffer_length = 8K +read_buffer_size = 256K +read_rnd_buffer_size = 512K +myisam_sort_buffer_size = 8M +lc_messages_dir = @GENTOO_PORTAGE_EPREFIX@/usr/share/mysql +#Set this to your desired error message language +lc_messages = en_US + +# security: +# using "localhost" in connects uses sockets by default +# skip-networking +bind-address = 127.0.0.1 + +log-bin +server-id = 1 + +# point the following paths to different dedicated disks +tmpdir = @GENTOO_PORTAGE_EPREFIX@/tmp/ +#log-update = @GENTOO_PORTAGE_EPREFIX@/path-to-dedicated-directory/hostname + +# you need the debug USE flag enabled to use the following directives, +# if needed, uncomment them, start the server and issue +# #tail -f @GENTOO_PORTAGE_EPREFIX@/tmp/mysqld.sql @GENTOO_PORTAGE_EPREFIX@/tmp/mysqld.trace +# this will show you *exactly* what's happening in your server ;) + +#log = @GENTOO_PORTAGE_EPREFIX@/tmp/mysqld.sql +#gdb +#debug = d:t:i:o,/tmp/mysqld.trace +#one-thread + +# uncomment the following directives if you are using BDB tables +#bdb_cache_size = 4M +#bdb_max_lock = 10000 + +# the following is the InnoDB configuration +# if you wish to disable innodb instead +# uncomment just the next line +#skip-innodb +# +# the rest of the innodb config follows: +# don't eat too much memory, we're trying to be safe on 64Mb boxes +# you might want to bump this up a bit on boxes with more RAM +innodb_buffer_pool_size = 16M +# this is the default, increase it if you have lots of tables +innodb_additional_mem_pool_size = 2M +# +# i'd like to use @GENTOO_PORTAGE_EPREFIX@/var/lib/mysql/innodb, but that is seen as a database :-( +# and upstream wants things to be under @GENTOO_PORTAGE_EPREFIX@/var/lib/mysql/, so that's the route +# we have to take for the moment +#innodb_data_home_dir = @GENTOO_PORTAGE_EPREFIX@/var/lib/mysql/ +#innodb_log_arch_dir = @GENTOO_PORTAGE_EPREFIX@/var/lib/mysql/ +#innodb_log_group_home_dir = @GENTOO_PORTAGE_EPREFIX@/var/lib/mysql/ +# you may wish to change this size to be more suitable for your system +# the max is there to avoid run-away growth on your machine +innodb_data_file_path = ibdata1:10M:autoextend:max:128M +# we keep this at around 25% of of innodb_buffer_pool_size +# sensible values range from 1MB to (1/innodb_log_files_in_group*innodb_buffer_pool_size) +innodb_log_file_size = 5M +# this is the default, increase it if you have very large transactions going on +innodb_log_buffer_size = 8M +# this is the default and won't hurt you +# you shouldn't need to tweak it +innodb_log_files_in_group=2 +# see the innodb config docs, the other options are not always safe +innodb_flush_log_at_trx_commit = 1 +innodb_lock_wait_timeout = 50 +innodb_file_per_table + +# Uncomment this to get FEDERATED engine support +#plugin-load=federated=ha_federated.so +loose-federated + +[mysqldump] +quick +max_allowed_packet = 16M + +[mysql] +# uncomment the next directive if you are not familiar with SQL +#safe-updates + +[isamchk] +key_buffer = 20M +sort_buffer_size = 20M +read_buffer = 2M +write_buffer = 2M + +[myisamchk] +key_buffer = 20M +sort_buffer_size = 20M +read_buffer = 2M +write_buffer = 2M + +[mysqlhotcopy] +interactive-timeout + diff --git a/dev-db/mariadb/mariadb-5.1.42-r1.ebuild b/dev-db/mariadb/mariadb-5.1.42-r1.ebuild deleted file mode 100644 index 38bbebb37431..000000000000 --- a/dev-db/mariadb/mariadb-5.1.42-r1.ebuild +++ /dev/null @@ -1,208 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/mariadb-5.1.42-r1.ebuild,v 1.4 2012/04/13 17:55:05 ulm Exp $ - -EAPI="4" -MY_EXTRAS_VER="20100324-0235Z" - -inherit toolchain-funcs mysql -# only to make repoman happy. it is really set in the eclass -IUSE="$IUSE" - -# REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd" - -# When MY_EXTRAS is bumped, the index should be revised to exclude these. -EPATCH_EXCLUDE='' - -DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 )" -RDEPEND="!media-sound/amarok[embedded]" - -# Please do not add a naive src_unpack to this ebuild -# If you want to add a single patch, copy the ebuild to an overlay -# and create your own mysql-extras tarball, looking at 000_index.txt - -# Official test instructions: -# USE='berkdb -cluster embedded extraengine perl ssl community' \ -# FEATURES='test userpriv -usersandbox' \ -# ebuild mysql-X.X.XX.ebuild \ -# digest clean package -src_test() { - # Bug #213475 - MySQL _will_ object strenously if your machine is named - # localhost. Also causes weird failures. - [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" - - emake check || die "make check failed" - if ! use "minimal" ; then - if [[ $UID -eq 0 ]]; then - die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." - fi - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - cd "${S}" - einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" - local retstatus_unit - local retstatus_ns - local retstatus_ps - local t - addpredict /this-dir-does-not-exist/t9.MYI - - # Ensure that parallel runs don't die - export MTR_BUILD_THREAD="$((${RANDOM} % 100))" - - # archive_gis really sucks a lot, but it's only relevant for the - # USE=extraengines case - case ${PV} in - 5.0.42) - mysql_disable_test "archive_gis" "Totally broken in 5.0.42" - ;; - - 5.0.4[3-9]|5.0.[56]*|5.0.70|5.0.87) - [ "$(tc-endian)" == "big" ] && \ - mysql_disable_test \ - "archive_gis" \ - "Broken in 5.0.43-70 and 5.0.87 on big-endian boxes only" - ;; - esac - - # This was a slight testcase breakage when the read_only security issue - # was fixed. - case ${PV} in - 5.0.54|5.0.51*) - mysql_disable_test \ - "read_only" \ - "Broken in 5.0.51-54, output in wrong order" - ;; - esac - - # Ditto to read_only - [ "${PV}" == "5.0.51a" ] && \ - mysql_disable_test \ - "view" \ - "Broken in 5.0.51, output in wrong order" - - # x86-specific, OOM issue with some subselects on low memory servers - [ "${PV}" == "5.0.54" ] && \ - [ "${ARCH/x86}" != "${ARCH}" ] && \ - mysql_disable_test \ - "subselect" \ - "Testcase needs tuning on x86 for oom condition" - - # Broke with the YaSSL security issue that didn't affect Gentoo. - [ "${PV}" == "5.0.56" ] && \ - for t in openssl_1 rpl_openssl rpl_ssl ssl \ - ssl_8k_key ssl_compress ssl_connect ; do \ - mysql_disable_test \ - "$t" \ - "OpenSSL tests broken on 5.0.56" - done - - # New test was broken in first time - # Upstream bug 41066 - # http://bugs.mysql.com/bug.php?id=41066 - [ "${PV}" == "5.0.72" ] && \ - mysql_disable_test \ - "status2" \ - "Broken in 5.0.72, new test is broken, upstream bug #41066" - - # The entire 5.0 series has pre-generated SSL certificates, they have - # mostly expired now. ${S}/mysql-tests/std-data/*.pem - # The certs really SHOULD be generated for the tests, so that they are - # not expiring like this. We cannot do so ourselves as the tests look - # closely as the cert path data, and we do not have the CA key to regen - # ourselves. Alternatively, upstream should generate them with at least - # 50-year validity. - # - # Known expiry points: - # 4.1.*, 5.0.0-5.0.22, 5.1.7: Expires 2013/09/09 - # 5.0.23-5.0.77, 5.1.7-5.1.22?: Expires 2009/01/27 - # 5.0.78-5.0.90, 5.1.??-5.1.42: Expires 2010/01/28 - # - # mysql-test/std_data/untrusted-cacert.pem is MEANT to be - # expired/invalid. - case ${PV} in - 5.0.*|5.1.*|5.4.*|5.5.*) - for t in openssl_1 rpl_openssl rpl.rpl_ssl rpl.rpl_ssl1 ssl ssl_8k_key \ - ssl_compress ssl_connect rpl.rpl_heartbeat_ssl ; do \ - mysql_disable_test \ - "$t" \ - "These OpenSSL tests break due to expired certificates" - done - ;; - esac - - # These are also failing in MySQL 5.1 for now, and are believed to be - # false positives: - # - # main.mysql_comment, main.mysql_upgrade, main.information_schema, - # funcs_1.is_columns_mysql funcs_1.is_tables_mysql funcs_1.is_triggers: - # fails due to USE=-latin1 / utf8 default - # - # main.mysql_client_test: - # segfaults at random under Portage only, suspect resource limits. - # - # main.not_partition: - # Failure reason unknown at this time, must resolve before package.mask - # removal FIXME - case ${PV} in - 5.1.*|5.4.*|5.5.*) - for t in main.mysql_client_test main.mysql_comments \ - main.mysql_upgrade \ - main.information_schema \ - main.not_partition funcs_1.is_columns_mysql \ - funcs_1.is_tables_mysql funcs_1.is_triggers; do - mysql_disable_test "$t" "False positives in Gentoo" - done - ;; - esac - - if [ "${PN}" == "mariadb" ]; then - use profiling \ - || mysql_disable_test main.profiling \ - "Profiling test needs profiling support" - - for t in \ - parts.part_supported_sql_func_ndb \ - parts.partition_auto_increment_ndb ; do - mysql_disable_test $t "ndb not supported in mariadb" - done - fi - - use profiling && use community \ - || mysql_disable_test main.profiling \ - "Profiling test needs profiling support" - - # create directories because mysqladmin might make out of order - mkdir -p "${S}"/mysql-test/var-{ps,ns}{,/log} - - # We run the test protocols seperately - emake test-unit - retstatus_unit=$? - [[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed" - - emake test-ns force="--force --vardir=${S}/mysql-test/var-ns" - retstatus_ns=$? - [[ $retstatus_ns -eq 0 ]] || eerror "test-ns failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - emake test-ps force="--force --vardir=${S}/mysql-test/var-ps" - retstatus_ps=$? - [[ $retstatus_ps -eq 0 ]] || eerror "test-ps failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - # TODO: - # When upstream enables the pr and nr testsuites, we need those as well. - - # Cleanup is important for these testcases. - pkill -9 -f "${S}/ndb" 2>/dev/null - pkill -9 -f "${S}/sql" 2>/dev/null - failures="" - [[ $retstatus_unit -eq 0 ]] || failures="${failures} test-unit" - [[ $retstatus_ns -eq 0 ]] || failures="${failures} test-ns" - [[ $retstatus_ps -eq 0 ]] || failures="${failures} test-ps" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - [[ -z "$failures" ]] || die "Test failures: $failures" - einfo "Tests successfully completed" - else - einfo "Skipping server tests due to minimal build." - fi -} diff --git a/dev-db/mariadb/mariadb-5.1.42.ebuild b/dev-db/mariadb/mariadb-5.1.42.ebuild deleted file mode 100644 index b31f8c732f61..000000000000 --- a/dev-db/mariadb/mariadb-5.1.42.ebuild +++ /dev/null @@ -1,208 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/mariadb-5.1.42.ebuild,v 1.8 2012/04/13 17:55:05 ulm Exp $ - -EAPI="4" -MY_EXTRAS_VER="20100324-0235Z" - -inherit toolchain-funcs mysql -# only to make repoman happy. it is really set in the eclass -IUSE="$IUSE" - -# REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd" - -# When MY_EXTRAS is bumped, the index should be revised to exclude these. -EPATCH_EXCLUDE='' - -DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 )" -RDEPEND="!media-sound/amarok[embedded]" - -# Please do not add a naive src_unpack to this ebuild -# If you want to add a single patch, copy the ebuild to an overlay -# and create your own mysql-extras tarball, looking at 000_index.txt - -# Official test instructions: -# USE='berkdb -cluster embedded extraengine perl ssl community' \ -# FEATURES='test userpriv -usersandbox' \ -# ebuild mysql-X.X.XX.ebuild \ -# digest clean package -src_test() { - # Bug #213475 - MySQL _will_ object strenously if your machine is named - # localhost. Also causes weird failures. - [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" - - emake check || die "make check failed" - if ! use "minimal" ; then - if [[ $UID -eq 0 ]]; then - die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." - fi - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - cd "${S}" - einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" - local retstatus_unit - local retstatus_ns - local retstatus_ps - local t - addpredict /this-dir-does-not-exist/t9.MYI - - # Ensure that parallel runs don't die - export MTR_BUILD_THREAD="$((${RANDOM} % 100))" - - # archive_gis really sucks a lot, but it's only relevant for the - # USE=extraengines case - case ${PV} in - 5.0.42) - mysql_disable_test "archive_gis" "Totally broken in 5.0.42" - ;; - - 5.0.4[3-9]|5.0.[56]*|5.0.70|5.0.87) - [ "$(tc-endian)" == "big" ] && \ - mysql_disable_test \ - "archive_gis" \ - "Broken in 5.0.43-70 and 5.0.87 on big-endian boxes only" - ;; - esac - - # This was a slight testcase breakage when the read_only security issue - # was fixed. - case ${PV} in - 5.0.54|5.0.51*) - mysql_disable_test \ - "read_only" \ - "Broken in 5.0.51-54, output in wrong order" - ;; - esac - - # Ditto to read_only - [ "${PV}" == "5.0.51a" ] && \ - mysql_disable_test \ - "view" \ - "Broken in 5.0.51, output in wrong order" - - # x86-specific, OOM issue with some subselects on low memory servers - [ "${PV}" == "5.0.54" ] && \ - [ "${ARCH/x86}" != "${ARCH}" ] && \ - mysql_disable_test \ - "subselect" \ - "Testcase needs tuning on x86 for oom condition" - - # Broke with the YaSSL security issue that didn't affect Gentoo. - [ "${PV}" == "5.0.56" ] && \ - for t in openssl_1 rpl_openssl rpl_ssl ssl \ - ssl_8k_key ssl_compress ssl_connect ; do \ - mysql_disable_test \ - "$t" \ - "OpenSSL tests broken on 5.0.56" - done - - # New test was broken in first time - # Upstream bug 41066 - # http://bugs.mysql.com/bug.php?id=41066 - [ "${PV}" == "5.0.72" ] && \ - mysql_disable_test \ - "status2" \ - "Broken in 5.0.72, new test is broken, upstream bug #41066" - - # The entire 5.0 series has pre-generated SSL certificates, they have - # mostly expired now. ${S}/mysql-tests/std-data/*.pem - # The certs really SHOULD be generated for the tests, so that they are - # not expiring like this. We cannot do so ourselves as the tests look - # closely as the cert path data, and we do not have the CA key to regen - # ourselves. Alternatively, upstream should generate them with at least - # 50-year validity. - # - # Known expiry points: - # 4.1.*, 5.0.0-5.0.22, 5.1.7: Expires 2013/09/09 - # 5.0.23-5.0.77, 5.1.7-5.1.22?: Expires 2009/01/27 - # 5.0.78-5.0.90, 5.1.??-5.1.42: Expires 2010/01/28 - # - # mysql-test/std_data/untrusted-cacert.pem is MEANT to be - # expired/invalid. - case ${PV} in - 5.0.*|5.1.*|5.4.*|5.5.*) - for t in openssl_1 rpl_openssl rpl.rpl_ssl rpl.rpl_ssl1 ssl ssl_8k_key \ - ssl_compress ssl_connect rpl.rpl_heartbeat_ssl ; do \ - mysql_disable_test \ - "$t" \ - "These OpenSSL tests break due to expired certificates" - done - ;; - esac - - # These are also failing in MySQL 5.1 for now, and are believed to be - # false positives: - # - # main.mysql_comment, main.mysql_upgrade, main.information_schema, - # funcs_1.is_columns_mysql funcs_1.is_tables_mysql funcs_1.is_triggers: - # fails due to USE=-latin1 / utf8 default - # - # main.mysql_client_test: - # segfaults at random under Portage only, suspect resource limits. - # - # main.not_partition: - # Failure reason unknown at this time, must resolve before package.mask - # removal FIXME - case ${PV} in - 5.1.*|5.4.*|5.5.*) - for t in main.mysql_client_test main.mysql_comments \ - main.mysql_upgrade \ - main.information_schema \ - main.not_partition funcs_1.is_columns_mysql \ - funcs_1.is_tables_mysql funcs_1.is_triggers; do - mysql_disable_test "$t" "False positives in Gentoo" - done - ;; - esac - - if [ "${PN}" == "mariadb" ]; then - use profiling \ - || mysql_disable_test main.profiling \ - "Profiling test needs profiling support" - - for t in \ - parts.part_supported_sql_func_ndb \ - parts.partition_auto_increment_ndb ; do - mysql_disable_test $t "ndb not supported in mariadb" - done - fi - - use profiling && use community \ - || mysql_disable_test main.profiling \ - "Profiling test needs profiling support" - - # create directories because mysqladmin might make out of order - mkdir -p "${S}"/mysql-test/var-{ps,ns}{,/log} - - # We run the test protocols seperately - emake test-unit - retstatus_unit=$? - [[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed" - - emake test-ns force="--force --vardir=${S}/mysql-test/var-ns" - retstatus_ns=$? - [[ $retstatus_ns -eq 0 ]] || eerror "test-ns failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - emake test-ps force="--force --vardir=${S}/mysql-test/var-ps" - retstatus_ps=$? - [[ $retstatus_ps -eq 0 ]] || eerror "test-ps failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - # TODO: - # When upstream enables the pr and nr testsuites, we need those as well. - - # Cleanup is important for these testcases. - pkill -9 -f "${S}/ndb" 2>/dev/null - pkill -9 -f "${S}/sql" 2>/dev/null - failures="" - [[ $retstatus_unit -eq 0 ]] || failures="${failures} test-unit" - [[ $retstatus_ns -eq 0 ]] || failures="${failures} test-ns" - [[ $retstatus_ps -eq 0 ]] || failures="${failures} test-ps" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - [[ -z "$failures" ]] || die "Test failures: $failures" - einfo "Tests successfully completed" - else - einfo "Skipping server tests due to minimal build." - fi -} diff --git a/dev-db/mariadb/mariadb-5.1.62.ebuild b/dev-db/mariadb/mariadb-5.1.62.ebuild index 0467c281e4f3..6e74e9072b23 100644 --- a/dev-db/mariadb/mariadb-5.1.62.ebuild +++ b/dev-db/mariadb/mariadb-5.1.62.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-db/mariadb/mariadb-5.1.62.ebuild,v 1.2 2012/05/09 06:50:24 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/mariadb-5.1.62.ebuild,v 1.3 2013/01/20 02:06:27 robbat2 Exp $ EAPI="4" MY_EXTRAS_VER="20120416-2021Z" diff --git a/dev-db/mariadb/mariadb-5.2.9.ebuild b/dev-db/mariadb/mariadb-5.1.66.ebuild similarity index 93% rename from dev-db/mariadb/mariadb-5.2.9.ebuild rename to dev-db/mariadb/mariadb-5.1.66.ebuild index dd17fe748816..c2d48270bdfb 100644 --- a/dev-db/mariadb/mariadb-5.2.9.ebuild +++ b/dev-db/mariadb/mariadb-5.1.66.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/dev-db/mariadb/mariadb-5.2.9.ebuild,v 1.3 2012/04/13 17:55:05 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/mariadb-5.1.66.ebuild,v 1.1 2013/01/20 02:19:54 robbat2 Exp $ EAPI="4" -MY_EXTRAS_VER="20110819-0415Z" +MY_EXTRAS_VER="20121101-2319Z" # Build system BUILD="autotools" @@ -13,7 +13,7 @@ inherit toolchain-funcs mysql-v2 IUSE="$IUSE" # REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="~amd64 ~s390 ~sh ~x86 ~sparc-fbsd ~x86-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" # When MY_EXTRAS is bumped, the index should be revised to exclude these. EPATCH_EXCLUDE='' diff --git a/dev-db/mariadb/mariadb-5.2.12.ebuild b/dev-db/mariadb/mariadb-5.2.12.ebuild index 579fa22c9d23..742e7250a2e6 100644 --- a/dev-db/mariadb/mariadb-5.2.12.ebuild +++ b/dev-db/mariadb/mariadb-5.2.12.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-db/mariadb/mariadb-5.2.12.ebuild,v 1.2 2012/05/09 06:50:24 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/mariadb-5.2.12.ebuild,v 1.3 2013/01/20 02:06:27 robbat2 Exp $ EAPI="4" MY_EXTRAS_VER="20120416-2021Z" diff --git a/dev-db/mariadb/mariadb-5.1.55.ebuild b/dev-db/mariadb/mariadb-5.2.13.ebuild similarity index 93% rename from dev-db/mariadb/mariadb-5.1.55.ebuild rename to dev-db/mariadb/mariadb-5.2.13.ebuild index 63e7ff93eafb..75532c7f73e9 100644 --- a/dev-db/mariadb/mariadb-5.1.55.ebuild +++ b/dev-db/mariadb/mariadb-5.2.13.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/dev-db/mariadb/mariadb-5.1.55.ebuild,v 1.3 2012/04/13 17:55:05 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/mariadb-5.2.13.ebuild,v 1.1 2013/01/20 02:19:54 robbat2 Exp $ EAPI="4" -MY_EXTRAS_VER="20110426-1046Z" +MY_EXTRAS_VER="20121101-2319Z" # Build system BUILD="autotools" @@ -13,7 +13,7 @@ inherit toolchain-funcs mysql-v2 IUSE="$IUSE" # REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" # When MY_EXTRAS is bumped, the index should be revised to exclude these. EPATCH_EXCLUDE='' diff --git a/dev-db/mariadb/mariadb-5.1.50.ebuild b/dev-db/mariadb/mariadb-5.3.11.ebuild similarity index 70% rename from dev-db/mariadb/mariadb-5.1.50.ebuild rename to dev-db/mariadb/mariadb-5.3.11.ebuild index 7e2109a187d6..0e46ac0cf2c5 100644 --- a/dev-db/mariadb/mariadb-5.1.50.ebuild +++ b/dev-db/mariadb/mariadb-5.3.11.ebuild @@ -1,24 +1,25 @@ -# 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-db/mariadb/mariadb-5.1.50.ebuild,v 1.4 2012/04/13 17:55:05 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/mariadb-5.3.11.ebuild,v 1.1 2013/01/20 02:19:54 robbat2 Exp $ EAPI="4" -MY_EXTRAS_VER="20101006-0004Z" +MY_EXTRAS_VER="20121101-2319Z" -inherit toolchain-funcs mysql +# Build system +BUILD="autotools" + +inherit toolchain-funcs mysql-v2 # only to make repoman happy. it is really set in the eclass IUSE="$IUSE" # REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" # When MY_EXTRAS is bumped, the index should be revised to exclude these. EPATCH_EXCLUDE='' -# Most of these are in the eclass -RDEPEND="" -DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) - >=sys-devel/libtool-2.2.10" +DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 )" +RDEPEND="${RDEPEND}" # Please do not add a naive src_unpack to this ebuild # If you want to add a single patch, copy the ebuild to an overlay @@ -27,13 +28,13 @@ src_prepare() { sed -i \ -e '/^noinst_PROGRAMS/s/basic-t//g' \ "${S}"/unittest/mytap/t/Makefile.am - mysql_src_prepare + mysql-v2_src_prepare } # Official test instructions: # USE='berkdb -cluster embedded extraengine perl ssl community' \ # FEATURES='test userpriv -usersandbox' \ -# ebuild mysql-X.X.XX.ebuild \ +# ebuild mariadb-X.X.XX.ebuild \ # digest clean package src_test() { # Bug #213475 - MySQL _will_ object strenously if your machine is named @@ -57,61 +58,6 @@ src_test() { # Ensure that parallel runs don't die export MTR_BUILD_THREAD="$((${RANDOM} % 100))" - # archive_gis really sucks a lot, but it's only relevant for the - # USE=extraengines case - case ${PV} in - 5.0.42) - mysql_disable_test "archive_gis" "Totally broken in 5.0.42" - ;; - - 5.0.4[3-9]|5.0.[56]*|5.0.70|5.0.87) - [ "$(tc-endian)" == "big" ] && \ - mysql_disable_test \ - "archive_gis" \ - "Broken in 5.0.43-70 and 5.0.87 on big-endian boxes only" - ;; - esac - - # This was a slight testcase breakage when the read_only security issue - # was fixed. - case ${PV} in - 5.0.54|5.0.51*) - mysql_disable_test \ - "read_only" \ - "Broken in 5.0.51-54, output in wrong order" - ;; - esac - - # Ditto to read_only - [ "${PV}" == "5.0.51a" ] && \ - mysql_disable_test \ - "view" \ - "Broken in 5.0.51, output in wrong order" - - # x86-specific, OOM issue with some subselects on low memory servers - [ "${PV}" == "5.0.54" ] && \ - [ "${ARCH/x86}" != "${ARCH}" ] && \ - mysql_disable_test \ - "subselect" \ - "Testcase needs tuning on x86 for oom condition" - - # Broke with the YaSSL security issue that didn't affect Gentoo. - [ "${PV}" == "5.0.56" ] && \ - for t in openssl_1 rpl_openssl rpl_ssl ssl \ - ssl_8k_key ssl_compress ssl_connect ; do \ - mysql_disable_test \ - "$t" \ - "OpenSSL tests broken on 5.0.56" - done - - # New test was broken in first time - # Upstream bug 41066 - # http://bugs.mysql.com/bug.php?id=41066 - [ "${PV}" == "5.0.72" ] && \ - mysql_disable_test \ - "status2" \ - "Broken in 5.0.72, new test is broken, upstream bug #41066" - # The entire 5.0 series has pre-generated SSL certificates, they have # mostly expired now. ${S}/mysql-tests/std-data/*.pem # The certs really SHOULD be generated for the tests, so that they are @@ -128,10 +74,10 @@ src_test() { # mysql-test/std_data/untrusted-cacert.pem is MEANT to be # expired/invalid. case ${PV} in - 5.0.*|5.1.*|5.4.*|5.5.*) + 5.1.*|5.4.*|5.5.*) for t in openssl_1 rpl_openssl rpl.rpl_ssl rpl.rpl_ssl1 ssl ssl_8k_key \ ssl_compress ssl_connect rpl.rpl_heartbeat_ssl ; do \ - mysql_disable_test \ + mysql-v2_disable_test \ "$t" \ "These OpenSSL tests break due to expired certificates" done @@ -152,13 +98,13 @@ src_test() { # Failure reason unknown at this time, must resolve before package.mask # removal FIXME case ${PV} in - 5.1.*|5.4.*|5.5.*) + 5.1.*|5.2.*|5.4.*|5.5.*) for t in main.mysql_client_test main.mysql_comments \ main.mysql_upgrade \ main.information_schema \ main.not_partition funcs_1.is_columns_mysql \ funcs_1.is_tables_mysql funcs_1.is_triggers; do - mysql_disable_test "$t" "False positives in Gentoo" + mysql-v2_disable_test "$t" "False positives in Gentoo" done ;; esac @@ -170,21 +116,21 @@ src_test() { case ${PV} in 5.1.5*|5.4.*|5.5.*|6*) for t in rpl.rpl_mysql_upgrade main.log_tables_upgrade ; do - mysql_disable_test "$t" \ + mysql-v2_disable_test "$t" \ "False positives in Gentoo: connect-timeout" done ;; esac use profiling && use community \ - || mysql_disable_test main.profiling \ + || mysql-v2_disable_test main.profiling \ "Profiling test needs profiling support" if [ "${PN}" == "mariadb" ]; then for t in \ parts.part_supported_sql_func_ndb \ parts.partition_auto_increment_ndb ; do - mysql_disable_test $t "ndb not supported in mariadb" + mysql-v2_disable_test $t "ndb not supported in mariadb" done fi diff --git a/dev-db/mariadb/mariadb-5.3.6.ebuild b/dev-db/mariadb/mariadb-5.3.6.ebuild index e287177fb36e..3249b7f71b67 100644 --- a/dev-db/mariadb/mariadb-5.3.6.ebuild +++ b/dev-db/mariadb/mariadb-5.3.6.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-db/mariadb/mariadb-5.3.6.ebuild,v 1.2 2012/05/09 06:50:24 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/mariadb-5.3.6.ebuild,v 1.3 2013/01/20 02:06:27 robbat2 Exp $ EAPI="4" MY_EXTRAS_VER="20120416-2021Z" diff --git a/dev-db/mariadb/mariadb-5.5.23.ebuild b/dev-db/mariadb/mariadb-5.5.23.ebuild index 132cca11ed3f..e41976d222a1 100644 --- a/dev-db/mariadb/mariadb-5.5.23.ebuild +++ b/dev-db/mariadb/mariadb-5.5.23.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-db/mariadb/mariadb-5.5.23.ebuild,v 1.2 2012/05/09 06:50:24 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/mariadb-5.5.23.ebuild,v 1.3 2013/01/20 02:09:35 robbat2 Exp $ EAPI="4" MY_EXTRAS_VER="20120416-2021Z" diff --git a/dev-db/mariadb/mariadb-5.5.28.ebuild b/dev-db/mariadb/mariadb-5.5.28.ebuild index aea820b0c4aa..bf8b895271a8 100644 --- a/dev-db/mariadb/mariadb-5.5.28.ebuild +++ b/dev-db/mariadb/mariadb-5.5.28.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-db/mariadb/mariadb-5.5.28.ebuild,v 1.2 2012/12/18 17:51:01 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/mariadb-5.5.28.ebuild,v 1.4 2013/01/20 02:09:35 robbat2 Exp $ EAPI="4" MY_EXTRAS_VER="20120906-1344Z" @@ -65,7 +65,7 @@ src_test() { export MTR_BUILD_THREAD="$((${RANDOM} % 100))" # create directories because mysqladmin might right out of order - mkdir -p "${S}"/mysql-test/var-{tests}{,/log} + mkdir -p "${S}"/mysql-test/var-tests{,/log} # These are failing in MySQL 5.5 for now and are believed to be # false positives: diff --git a/dev-db/mariadb/mariadb-5.5.28a.ebuild b/dev-db/mariadb/mariadb-5.5.28a.ebuild new file mode 100644 index 000000000000..bd208ea29bd2 --- /dev/null +++ b/dev-db/mariadb/mariadb-5.5.28a.ebuild @@ -0,0 +1,134 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/mariadb-5.5.28a.ebuild,v 1.1 2013/01/20 02:19:54 robbat2 Exp $ + +EAPI="4" +MY_EXTRAS_VER="20130120-0100Z" + +# Build system +BUILD="cmake" + +inherit toolchain-funcs mysql-v2 +# only to make repoman happy. it is really set in the eclass +IUSE="$IUSE" + +# REMEMBER: also update eclass/mysql*.eclass before committing! +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" + +# When MY_EXTRAS is bumped, the index should be revised to exclude these. +EPATCH_EXCLUDE='20001_all_fix-minimal-build-cmake-mariadb.patch' + +DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 )" +RDEPEND="${RDEPEND}" + +# Please do not add a naive src_unpack to this ebuild +# If you want to add a single patch, copy the ebuild to an overlay +# and create your own mysql-extras tarball, looking at 000_index.txt +src_prepare() { + sed -i \ + -e '/^noinst_PROGRAMS/s/basic-t//g' \ + "${S}"/unittest/mytap/t/Makefile.am + mysql-v2_src_prepare +} + +# Official test instructions: +# USE='berkdb -cluster embedded extraengine perl ssl community' \ +# FEATURES='test userpriv -usersandbox' \ +# ebuild mariadb-X.X.XX.ebuild \ +# digest clean package +src_test() { + + local TESTDIR="${CMAKE_BUILD_DIR}/mysql-test" + local retstatus_unit + local retstatus_tests + + # Bug #213475 - MySQL _will_ object strenously if your machine is named + # localhost. Also causes weird failures. + [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" + + if ! use "minimal" ; then + + if [[ $UID -eq 0 ]]; then + die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." + fi + has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" + + einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" + addpredict /this-dir-does-not-exist/t9.MYI + + # Run CTest (test-units) + cmake-utils_src_test + retstatus_unit=$? + [[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed" + + # Ensure that parallel runs don't die + export MTR_BUILD_THREAD="$((${RANDOM} % 100))" + + # create directories because mysqladmin might right out of order + mkdir -p "${S}"/mysql-test/var-tests{,/log} + + # These are failing in MySQL 5.5 for now and are believed to be + # false positives: + # + # main.information_schema, binlog.binlog_statement_insert_delayed, + # main.mysqld--help, funcs_1.is_triggers, funcs_1.is_tables_mysql, + # funcs_1.is_columns_mysql + # fails due to USE=-latin1 / utf8 default + # + # main.mysql_client_test, main.mysql_client_test_nonblock: + # segfaults at random under Portage only, suspect resource limits. + # + # sys_vars.plugin_dir_basic + # fails because PLUGIN_DIR is set to MYSQL_LIBDIR64/plugin + # instead of MYSQL_LIBDIR/plugin + # + # main.flush_read_lock_kill + # fails because of unknown system variable 'DEBUG_SYNC' + # + # main.openssl_1 + # error message changing + # -mysqltest: Could not open connection 'default': 2026 SSL connection + # error: ASN: bad other signature confirmation + # +mysqltest: Could not open connection 'default': 2026 SSL connection + # error: error:00000001:lib(0):func(0):reason(1) + # + # plugins.unix_socket + # fails because portage strips out the USER enviornment variable + # + + for t in main.mysql_client_test main.mysql_client_test_nonblock \ + binlog.binlog_statement_insert_delayed main.information_schema \ + main.mysqld--help main.flush_read_lock_kill \ + sys_vars.plugin_dir_basic main.openssl_1 plugins.unix_socket \ + funcs_1.is_triggers funcs_1.is_tables_mysql funcs_1.is_columns_mysql ; do + mysql-v2_disable_test "$t" "False positives in Gentoo" + done + + # Run mysql tests + pushd "${TESTDIR}" + + # run mysql-test tests + perl mysql-test-run.pl --force --vardir="${S}/mysql-test/var-tests" + retstatus_tests=$? + [[ $retstatus_tests -eq 0 ]] || eerror "tests failed" + has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" + + popd + + # Cleanup is important for these testcases. + pkill -9 -f "${S}/ndb" 2>/dev/null + pkill -9 -f "${S}/sql" 2>/dev/null + + failures="" + [[ $retstatus_unit -eq 0 ]] || failures="${failures} test-unit" + [[ $retstatus_tests -eq 0 ]] || failures="${failures} tests" + has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" + + [[ -z "$failures" ]] || die "Test failures: $failures" + einfo "Tests successfully completed" + + else + + einfo "Skipping server tests due to minimal build." + fi +} diff --git a/dev-db/mysql/Manifest b/dev-db/mysql/Manifest index c528c7bfd786..f58d41518e72 100644 --- a/dev-db/mysql/Manifest +++ b/dev-db/mysql/Manifest @@ -1,35 +1,21 @@ DIST mysql-4.0.27.tar.gz 11152643 SHA256 c79f83bed7c1ea98e018b8829375b55c1de838d21a526d7f679becc75de00d0f SHA512 188283133e99e1c0b52ac8650aff325d7c9762fbad526c2c67b26dd614f2a86afb247a3f55ff071be1d44cd13060b9d7cca08ba1d758a04d2369381fa104454e WHIRLPOOL d3964468635eae0caf7fc8fb7b3576da12d49264bd9b797bb2191da8c6b91ca46321fb090e994df2b93b43f50686dcc4f735bdff03b49a3176fa746d5c4a60ab DIST mysql-4.1.22.tar.gz 17761101 SHA256 6bd2436fd0f233bb1518e15975cb4e9fa4434acb53c3c3cd7d4648219abf58e9 SHA512 9de1c2b27cf428a10f67a6217fc2783b638beb6345e2127a4163ceb286073886d223de861c40be0ab36ea78ec5f33ccd5ee457d1e35e67b081d629118b68d390 WHIRLPOOL b40ca2e0d07fc0bd504e57b7eb005d36cf842bb668e93722c723bcc5a797dc9b456ee8971ea99bfc2b9119a2e19ee599f8441eb4601709eb4238196a27319257 -DIST mysql-5.0.91.tar.gz 22340514 SHA256 4669abf059bcf97c2fc1f3ce678e83f738ffe2299bd893e1a3d31afbc682c754 SHA512 e9b8dd911941ca0b6781ebd8cc5eb2bfbf4424f51c54f191b7ea6ccb6373cbcf1b76e7aff6538ca2e537059c545d628875ba4ba75d51249abf430c6e42b3ac29 WHIRLPOOL 59789b73b2a0ac2dbf18f3d3aafa9559a432a38ef4f930f5b1d9a5c575e3c23d10b8bc82bb7ecc5143303d593c7ed35e6c89d7e0f8d232f1e67cfe5350c3cf0d -DIST mysql-5.0.92.tar.gz 22440590 SHA256 223530c4cd6d45e2906e6c7d33615c5824816dfdb772d104f4165a483ea78a55 SHA512 8fdc609761be56f64c71d5334611c1744f5496cef3adb68bbc52f5249d34174373e7b3fb15e6592d138cfd77d1b46d23bc9991ff49fd0d2636abe71304493fe2 WHIRLPOOL 58fb2dc8fabd376000418f5a7fd0aecda6b824704ebff2f3f2ca0776458f1e0e28e2fcfe7194253dd7437f6c14c8cc6625d19b59714ba421379f3b8f0f08a579 DIST mysql-5.0.96.tar.gz 22686667 SHA256 43853814775158aa1650f483530a7dde153957579e3349e3ec780b89d741fc84 SHA512 2e3b4ac221c1c1c11618dc79067a7feff680380fcea435813287b02cb0dff45fb5a32a4393c53cf13165f6efc99dbf347a9388ad364cfdf2e392760a310aa5a9 WHIRLPOOL 3e167e4ff4c56095fbdee55b7e619c9b7ad2120eb72c9a58fe77a023ab6e7498c74e2053876e61687d7812f9ff7022303728ddda49732e7569035684263d2517 -DIST mysql-5.1.51.tar.gz 23830456 SHA256 39d962222f068c426d4616950f0e8451d947a132f0c42af17a2fc8b3b5a42882 SHA512 81519e0143ff683cb5c2cfac4d0aa7bd6b8b79b7fcbf2a4e9f9b6793ea86958d9de302a02df2a37aa634117da37d4bdf2bd14f67c1313882e1b14d0a73a501bc WHIRLPOOL cfab48307f4deabd6f599db36f3f2aeb4c965cc1afe7bc48d0b8ca95622da6287ee857a9c694e2dd7ae04638bb598be8bbc369b6e451d74c5ded54e11c209223 -DIST mysql-5.1.52.tar.gz 23841760 SHA256 b1c458b68aaf7b7745453c27b615ffc59cd213453ee78bc6b477b0f40df83917 SHA512 8cd893424dbd513417dbac28d20d012c2105a8aea2278b72ef2c0e70c029cc22eef458d5e51ae066ce6072114bc29a972f7c6c3813eb1ab2a7ef9fd53b302ec0 WHIRLPOOL 433c15002a782679745c3aaa7f311598c947c022f79f17c8b7307c02a7ef0deecc065183ae56a3716b0dd1104ea06f08b4b17ac6d2446389c846b7a6940fcfb7 -DIST mysql-5.1.53.tar.gz 23871815 SHA256 d68c0db580bb514bb1759d4c69dc71ceb0e3573ac88a1025111bdd8f89e234a4 SHA512 2245c3e3fbcec2c5d840428b0691f6c0ab11b24b2fbb4990ba6df09e4f5e94a614ab8843be964662a9fd29e0496c402a66d8737c19b489e9bf9058cec767d485 WHIRLPOOL 3020ffa08d41854cc61d9f689edb37e130a6384a87bb8295fe19d9427ea1a58bd492b511de12a9232ad73338c3492d9699d6f61100fbf042e86a986fced5c846 -DIST mysql-5.1.56.tar.gz 24795624 SHA256 930e731c8f9318aa3f5e2e6985f6776aaaec81cd32df310e79e73d87177f6613 SHA512 848ce26da5478ac6e3c10c1134260768333b3f1e32a814f9895b8cdf3a9bcaa5a88df918bde2f36c846e614edeb587278dd4bae127db362d10ee4e46b32a5c0a WHIRLPOOL 185bb4fddbb0de1cea78f1cfcab859fb019a8dbf5475faf2e395c2afde873c9979bdf95bfd2f4f0ce025d002e3ad9abbdacf3920d2ce1181eaf4045a82e0735c -DIST mysql-5.1.57.tar.gz 23660514 SHA256 7944fa56476f44173af4c91ad685a9da5e9d5fa9dea69dafb4b9919df3f3667d SHA512 03015e8cd865f6fa14eb68f29a3cd636bd5aec08a0ca43ece90bfc97afe5be012536b1214dc268585ecceb49f17ed5ce0f798164a30f7f6301eeef928d324f95 WHIRLPOOL 7ec692c8a4709c93e91d5671fb8c446e3dffb49a00af23e0acc002d00972788025f24348b52a73e478dafc5fdb37ac8161fa358b3e82778d4044e1187ac249c3 -DIST mysql-5.1.58.tar.gz 24333490 SHA256 3c69562399655fc62d1424437e6ef59ef7c1ed225f940f81558f549b803f3fd7 SHA512 490a3b6d6269220003e8f686da52d83d445dcef3d3cd84eceda759bcb8b443757cb430fef4bbaa8d18ae8a58ed23fb532265c128f235b29ad2073fc3b642c2eb WHIRLPOOL 01707ae98981c317a56cd10108c4449d73480d4db4b1ec8e94ac0c256d68be5ca61e85a77d512b00f8d4f495dca178192e23df611c013120346c2370648e8482 -DIST mysql-5.1.59.tar.gz 24325443 SHA256 f87b99b73c0d936ed892326ebd4c90b1d5c7d5d2ac8832fc62f538db99fb04f7 SHA512 be5d2d2aeabf0ae787848e702b553979c864b7878536aace34c1a7bbfc917c6b44552ff1b541b2cf744c30852441f45b9012d337cc0875274ea82aaec777b83d WHIRLPOOL 29ac84bef2b64b45066f6ad651682cd0011a532ca21832140b933af733600d5fb8edba09294a4fd03305ee9f668cda0caeba9f49d582f083418810d67f530f52 -DIST mysql-5.1.61.tar.gz 24462261 SHA256 879c6424282e38eb1ba9b1910db98b378a5574ceed431a69e344643a5524f918 SHA512 62c623c32d9b79ccccc0fecd921d06cb40de91d1a92daf8b325ca7e8f17bc17bd35ab56fa524b40235ca933aabd71b3900f0c60901f8907da86a860dd93fc26a WHIRLPOOL 92b84e006147781c50f27600ed8cfd9c8e527d8e4a032d8560f20dd48080cf0b3d1d6008beaacf317af92ddd37fe9b2882e1b152db57763179d9f1b62eabe612 -DIST mysql-5.1.62.tar.gz 24503313 SHA256 97c07b2478e25892fe915b2c46e99083973f541ecdf06672241f0c22f79fead3 SHA512 9dc9ae3035ccbad0b537ec5257cc9b4c3b0715136cdc67ed82bb3dfced04584d165716c485be65929d31dc98569d0d2e0b5162b95ff2da8f291d1dab352c98c0 WHIRLPOOL 73158dc457d9f7deac6945d54074cf3dba6367ea52e00297110779c6ed6208283030955a0abbf5c6b594d2e692f047147eb6e8a4cfa4c1da504335093896fd23 DIST mysql-5.1.66.tar.gz 24771341 SHA256 eb85e3fa152949670f5b6f4379bd1d700a5f4726660ce18ff0ca628190cba907 SHA512 01b7ff0a08362249e04a9a66cf0f255cb517f22d336201ba4ae8759cfc8047cb3dcaff75821796c01f87b35a7e8f5533957152cc7ae905cdf65f40239634e4f0 WHIRLPOOL 384cb0ef805ac70646f834ed7140ec1dd9ee4810692ba8e671eb7f5006ce2f97a401097224ce78316c371860639322164505e9099c1233d1816fa7bbc4fd354b +DIST mysql-5.1.67.tar.gz 24781885 SHA256 8a5fa02a6db0fd167974c5fc4401ae05c6982e5331d93554a241a3ee2dbda406 SHA512 f0477ebd322d7e69c379bfacd2f4980cdca35c6903e67c44ac97aad5183033f1b791030d3b43c2946adf0154abbaab77add226f47de507d5f8050e6fa401f0cc WHIRLPOOL fd4e39d52b42c8a29ec06e153a5089aad23a042e0fe87653c5312884b8737ed72eb2ac914493dca3f9a7359b988dc9d1667c8249a88b20093b0660d7005cba4d DIST mysql-5.5.19.tar.gz 24296942 SHA256 7f3643b378101de19205d133e6fb5ce03d8394e183f4e9ac2b0de59ba57fc34f SHA512 02f741df70c0b8058babb2cb6b9469856641413eb334e76ffeec91f21ab71440f1ee644cc58471e86f03ca850cf789869d48b68788ea346b0b3dfc5b509a5bd1 WHIRLPOOL 8b119fd8be0d2191d0b4df49de8abde5b0382b5eb0fab4bafea83dcd54fabf9751f4ab3d008f860828bd6e9667696e831a0c7f88dcc648f372efec39cae1552d DIST mysql-5.5.20.tar.gz 24305842 SHA256 d07a84152ad3131ca63c20068be6192b0d212462e6cfedd092a1e9fc2b30540e SHA512 df433cf831f1aef6c143d70e0b447268f6ebd3a7bf2573b6269aea3309ef0cfed881beb917a7c6d6f2d0a8fe96b05c36a3c9d10e3763b56fc7a2eb6bb721100f WHIRLPOOL 84423528dac7b781b1ef267b830bef8b21e4ae98b9f356fa891d55cc601dd3bd867964182772f54b3cad1a076f3f5a3c511e7f025316bd9c101868ebfee9afa7 DIST mysql-5.5.21.tar.gz 24341768 SHA256 2471fedc42bafb8210f7ff132172f6f57933f9727cc61d98197a91cfbfdf78cd SHA512 183ffc9b742c8910ec9c97ad82845f0be35a7da764c2c8a6a5269cc7251c0443b2641a5d5f4302ab4afdcd908099af1d3ae4abba5c43f534ac65f931e2672377 WHIRLPOOL 710e9ce0fddbb0ae4f495d04ba3667a8c44bdfedd9087795ef4b57c59357a50654248427c5ca3751c462f9b744adf0391ae709d42e00eb1530a550972c5f9f55 DIST mysql-5.5.22.tar.gz 24475686 SHA256 f3333ffbe13e586471225fcb521f6ce511fa4374010901813ac35e0f5909dcdd SHA512 729621d2755bf80b8d4d98ac3ec883cdd0711da3fcdd13d8eb478fac25ea2744d743192cd800d4b028b9341fc11d7293863561e6c2ad34830ec2ced7c6806042 WHIRLPOOL 05bfe1da714c38ac3347d2f4d139c63a42b8159742cea11fab5237196c9b640865b645a790e5d08de6fb61d8493cae52b8f61ac3fa87e393e048dbdac51d9b04 DIST mysql-5.5.28.tar.gz 24739429 SHA256 f9b2491f1ddd99842a8e75c21958368bebe59c47e84bec778baa915e255cc78f SHA512 61b20e7ae11ef0fc53d199a6a177a34a95e0a7cf17cd574e7ed75d2e51e62da8178184333adb0805b6bbe7649355ae2062ac36c70faa23acfbc419aaa47a7365 WHIRLPOOL 909018977ddbd124b2152372d858a65d85ee0cbebef2f94ea14b04188ebaf90529a576f24f47cc6bc232e9d6ddd5251ed18242eb08ee0d3da081c81a04da9d3b +DIST mysql-5.5.29.tar.gz 24870769 SHA256 22b50c089038913b3468c7055fc288f7b5d973199ca37c563cd3a3292e812ae5 SHA512 167bc48c0d4e5351af342828d1f14c003b0d62f7388dd15b1b816df708cc4f06cfe8f7c4177af76fb1c1cbaba5adafe9cb884f76bf75d21a067da25896b29210 WHIRLPOOL 06b4e45c5ed6950d45d4a0623f7626af3b2a9d35656a96867b7cdc4bfc0534207c10afd9b3bcca703b826c67cea62e08992b2de99bdd8d661108c16071fb9773 DIST mysql-extras-20070105.tar.bz2 50005 SHA256 17697bf70acffd0eeefd976b5ef06dd36080273bf7e805b51a31d72f5f2c5172 SHA512 65e8fd1f9cc71083dbcfaffc331171e0d7deedbd784e416a4b629139f71cc102a84fa62c2d9e48310a18571ef7f06153911ee75c5d7bb6ba88807c287e7cbf34 WHIRLPOOL 3f858fbed6f57ffac863c29bef09a658e3d9f57cf4c6b5c62537973ae44f217344a8592ad311b14b1e7e8d475434b3c69339a8d2873c498ba712ff6f5e128cec DIST mysql-extras-20090228-2228Z.tar.bz2 254048 SHA256 03a986a5c5ae57f1436553565239613e978ae11e12834fcb275ec6457b12b6fb SHA512 b347c0894d45cff2c10e26c12d7586c335811b607cd760b48e51743e74c55ace820d2d50fac2ce72543c14b9b4d15afce336bd956ea8a820df4a651f23e3b79f WHIRLPOOL 4d89a44791ec7e95baa3822bb62a3638c86d24bcfc777b9ff5a8d26020e7401159a3c03ebda9907fcbf02589b80726f2daa5bf2498d8e6e6e33540edf9b1d551 -DIST mysql-extras-20100809-0452Z.tar.bz2 1228458 SHA256 2ba39a87dd5ea2c819193d1b25c6e2abbd4506d63c1e8b845846b7b33d64e52b SHA512 1d7b5c443a21c6383dfedb07b3d8ac3d55d2b380c9caa3738110697bb9da9f920e99585ee40c4c94ca77807c01e4a3350b6aa1148a834357c24e1ff38b4f2ce6 WHIRLPOOL e6e33baeef0d7ea72ff13af3e93966cd7786e05d7e151b77e3129ac85d7ca64d0637b77cd20520f02c25de863f03dbebefd5d0771cf519933df2574739c10d18 -DIST mysql-extras-20101006-0004Z.tar.bz2 1251792 SHA256 a42c4988a25113bef5cc727fb24c994502f4d02469246ff839f8ea2a08c07bb7 SHA512 977917c6d36c458155dbc80aeb849288a597aa0c894ec689eaea9050494aa86261b4fc5c027ece20428812592257aa37c7dfcd8f4f90de549e0be7d23d911306 WHIRLPOOL 6544647259a560f30122c6151e794430fbea5110f2726b9d1e3d78d64d10183b813a2bf0ac6142e5dea6efbdc9f2c5f27119fba318a5d644a11628179b134b78 -DIST mysql-extras-20101104-1842Z.tar.bz2 1255196 SHA256 64a1f9c29b955eec52f3b45b2cd50bbcc286982290c36c5eb87fe9b160be6cc2 SHA512 5fdeab72e75dab94c8d8f033bc2770d126a8615580f63b29009d8d50181ed3c2df484013e0d8f01170f55ae556d41c765d309e1535ccac4e769ab8e3d1535186 WHIRLPOOL c0e7170bc2d4bacf0eb923a95e86aca953f488d3d2a4b75afc6b9c425dae16ee4f408c5f9c07137f30634c8e05c45d430dff932e2577b406d2ea104a351bf5cb -DIST mysql-extras-20101128-2122Z.tar.bz2 1237793 SHA256 a804e4418fff742a72fc4cc8c83f1107a86f95b2fafde96002436905a9b5f729 SHA512 8174b25dfe296c024ff1903f13372d0dc11a4cfe1848db3ca0e439bc75220e36513478e8addabe67b852c40da167cb663f82de26819f61d6f472199404c2b41a WHIRLPOOL 54d239a1a1edcbab41c58d99ed96a31e05a8c59ad79df7c9fb496f9aac61013469a017b692a81b170a732cfaff7eb163f15593c81ae8f6a8140ae24e0d345df1 -DIST mysql-extras-20110426-1046Z.tar.bz2 1312102 SHA256 e49636b2527d96bc4fe6d2143b00af47c63202ad999fed332a544aa6b7b1ffa8 SHA512 4441715d9b46b4b100b5e3ff05675a5408ad53f304cb9c476c98008ef276a7b68206231b54dd01ea562491ab6f37e42bb5f49f9549862ad161e26adbbc04e267 WHIRLPOOL 34bbe9cd7151d9635b62a09c8a4d3850e1d2757113050b581363b93aea3185f2a35f372d30f12e42f65fdb6a454b3dc3809a05b1e16392ae2c07dfe1b9160de8 DIST mysql-extras-20110713-0702Z.tar.bz2 1723462 SHA256 2b0e1ce0bf5a2bcb543e631f27bf1d6bcb15da0a966112dfe64b2591945cd605 SHA512 87d7b80d2df8f5e52bff2abd070eb8ed73d6bf19a32fcf82167a74d0f4600e62bc17cb09076b82bc643ed37279a7e4c402f1da8db25a06955c037b7173810a7f WHIRLPOOL a959ec13bd06c96988691b2458cf8ceb510f99aba20dd1f6e9c90f9c5f7bf9fe0c811badfd056ffe66c1c14cb2c9d3c29cd47481ac445a2df2fc22aa0b8a1324 -DIST mysql-extras-20110721-0450Z.tar.bz2 1734716 SHA256 354c270c777b4c9b5afad1f5dcdcf400989273779fafa726c70d05277bb74a37 SHA512 c5273e56ecaa5fb630e85844ae7379a55dd8c68bb64af1cb73df2120ca236f62f2834bb05c091a38d7dc48090b1d65573988f9a3728839a8b210c89923e31010 WHIRLPOOL 4f9d67428b1df2edab627a8408623848698e3c4f56f614ce24b7f17052b0404fd06deb4e066823a07725ef95ecf41f3202fc76f6c3df63e32a054d2a3af65168 DIST mysql-extras-20111118-2347Z.tar.bz2 1780751 SHA256 db380436ad13231245c02c2e36d4a1d5b3d27fa39c19e844507736a8ba69b6f5 SHA512 bf0e4a88d6b981aff0ae25a1294a808b12414aed591634dc6aaf7f5b1b2e31a401c622b7f60408dd85c3f71d79eedb7c9118a25eafb2cd739278266edadd75c1 WHIRLPOOL 8a5790ce2a94378e594afb662c0e465db045e720e026ba98aafa8289c861af71e25ed4a10fce6061ec4ba683952a92f3bbc484937bb4e5de0617026f95bdc28b DIST mysql-extras-20120401-2131Z.tar.bz2 1835097 SHA256 95e531799ed267c566da8b0759da78d0351d6004c7c8a45018054e287a989495 SHA512 0625e1f06e04c7841256955950dd7766a5f03d4ade2aee3c13335f08acff374933ed1fd7ddea214eaaa3531d7373ef094734f5c00530555347f058f5ec4d9d36 WHIRLPOOL f2c6e9387b38b609d3bfea83c6983c456d30a9dcf95c256a44402d4c63fa22543d55d6afa9b8dbf4238dcadf32fac3daec5031d50c8a4acf7a074d04fbede213 DIST mysql-extras-20120421-2004Z.tar.bz2 1836159 SHA256 11cbf44c5983adf496ea6e00c461ea54915ddb1baf527c05953284b409d8bc6d SHA512 73b967480b8520de50a615c3cd773c0c43533ca5a299056c1de300324994e9ba9e18a10a81736fb739a75b2c8fa8d6eace70a811614d3553256a15b63a364de8 WHIRLPOOL 48a8fb617c1497c3635bb3f3a6315dfc09924fabf9acdb0a09368fa8861b37cb231febb35201c7cbdda6bc576038ff09e73a68347366fc1f26c6d8c930fc0999 DIST mysql-extras-20121101-2319Z.tar.bz2 1898358 SHA256 ea5da082d3384bde67e005ebc39b78e7caadea80745333fb5a9cf47a4c4e4c5d SHA512 6a49abb1beee012d87ab63071a568ee6d9d8e4ff7a76401b91f5bdc127860d1c504a3877cbadb81536b07afe5ff419c77c793b0fc14ba484f56765d1ca526614 WHIRLPOOL 4bda75a0a9063830b3140bbc3cb12b60fa21289eee2fa476fb286da6318fdf0445a9c6193bd2063aefcd3f4ecc1f8045b30635f0e32014098d0f3dbee86e01fc +DIST mysql-extras-20130120-0100Z.tar.bz2 1899297 SHA256 56db6daa26070cb10b220cb06e7b4d4a84214932a5a04500ed0e76b938c01776 SHA512 9fc9b21e547ec0e1ae37b288a1ade28b11c03a89129302226c36018cf69842fda95665799ded84f04cccffaf54555acde40bf2ae6e2ea39ec63b3876382af1ba WHIRLPOOL 25f31d91d6004e7472ef6f2ff0d02b9dde9915f56fc84da600145ac09d1d56751c2ef85c897d3b7bacd29b1010b304445517452254a1e9208bc7bfa9c2e9bf2e DIST pbxt-1.0.11-6-pre-ga.tar.gz 3156307 SHA256 71ff3d86e9e5691f3efe541bf31f55a7ec2a88af27df6ad853b65902e00e6d12 SHA512 fa238303f06e0a9adfb10bd5a2e1d2e4850d2c17a350af3874cbff099d6e47b7c555d750c584d06a3ca87c1eb1e9301a9619d8d9a4cffb7fd0169b2b3a63c80c WHIRLPOOL 05cdd39f6f5dafff2def0062a00a24eff6cf6d8754f622b133365cef47cd6b828df5500ac407359d0793a75dd239ec1e49a13d2400a01ddf8b4cef7466e86962 DIST percona-xtradb-1.0.6-10.tar.gz 1676716 SHA256 e3aa818f13cf669412e59ad194eae8eada7a857bf7a4260e4bb41cab4d7ae39c SHA512 72e4b656b22a0420e6f5935dc28060e5c50fbeb48c6d1ae430579d9ccef8042fdd4dde128cc977b903de6221f7021e8c87ea29fe6a8a8c74edb84bf54ab889f3 WHIRLPOOL a916879be315498da27c60992efa4d19e91305b81242925e161547f3fb97a820256e1d07863e9e007ef843af54cd087ce5ac47d5ed1b70862da6cd5a9d81eccf diff --git a/dev-db/mysql/files/my.cnf-5.1 b/dev-db/mysql/files/my.cnf-5.1 index 7d5f69b7ddac..f1ee4f23a247 100644 --- a/dev-db/mysql/files/my.cnf-5.1 +++ b/dev-db/mysql/files/my.cnf-5.1 @@ -1,55 +1,55 @@ -# /etc/mysql/my.cnf: The global mysql configuration file. -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/files/my.cnf-5.1,v 1.3 2012/02/15 02:07:21 jmbsvicetto Exp $ +# @GENTOO_PORTAGE_EPREFIX@/etc/mysql/my.cnf: The global mysql configuration file. +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/files/my.cnf-5.1,v 1.4 2013/01/20 02:40:02 robbat2 Exp $ # The following options will be passed to all MySQL clients [client] #password = your_password port = 3306 -socket = /var/run/mysqld/mysqld.sock +socket = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.sock [mysql] -character-sets-dir=/usr/share/mysql/charsets +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets default-character-set=utf8 [mysqladmin] -character-sets-dir=/usr/share/mysql/charsets +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets default-character-set=utf8 [mysqlcheck] -character-sets-dir=/usr/share/mysql/charsets +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets default-character-set=utf8 [mysqldump] -character-sets-dir=/usr/share/mysql/charsets +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets default-character-set=utf8 [mysqlimport] -character-sets-dir=/usr/share/mysql/charsets +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets default-character-set=utf8 [mysqlshow] -character-sets-dir=/usr/share/mysql/charsets +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets default-character-set=utf8 [myisamchk] -character-sets-dir=/usr/share/mysql/charsets +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets [myisampack] -character-sets-dir=/usr/share/mysql/charsets +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets # use [safe_mysqld] with mysql-3 [mysqld_safe] -err-log = /var/log/mysql/mysql.err +err-log = @GENTOO_PORTAGE_EPREFIX@/var/log/mysql/mysql.err # add a section [mysqld-4.1] or [mysqld-5.0] for specific configurations [mysqld] character-set-server = utf8 user = mysql port = 3306 -socket = /var/run/mysqld/mysqld.sock -pid-file = /var/run/mysqld/mysqld.pid -log-error = /var/log/mysql/mysqld.err -basedir = /usr +socket = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.sock +pid-file = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.pid +log-error = @GENTOO_PORTAGE_EPREFIX@/var/log/mysql/mysqld.err +basedir = @GENTOO_PORTAGE_EPREFIX@/usr datadir = @DATADIR@ skip-external-locking key_buffer = 16M @@ -60,7 +60,7 @@ net_buffer_length = 8K read_buffer_size = 256K read_rnd_buffer_size = 512K myisam_sort_buffer_size = 8M -language = /usr/share/mysql/english +language = @GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/english # security: # using "localhost" in connects uses sockets by default @@ -71,15 +71,15 @@ log-bin server-id = 1 # point the following paths to different dedicated disks -tmpdir = /tmp/ -#log-update = /path-to-dedicated-directory/hostname +tmpdir = @GENTOO_PORTAGE_EPREFIX@/tmp/ +#log-update = @GENTOO_PORTAGE_EPREFIX@/path-to-dedicated-directory/hostname # you need the debug USE flag enabled to use the following directives, # if needed, uncomment them, start the server and issue -# #tail -f /tmp/mysqld.sql /tmp/mysqld.trace +# #tail -f @GENTOO_PORTAGE_EPREFIX@/tmp/mysqld.sql @GENTOO_PORTAGE_EPREFIX@/tmp/mysqld.trace # this will show you *exactly* what's happening in your server ;) -#log = /tmp/mysqld.sql +#log = @GENTOO_PORTAGE_EPREFIX@/tmp/mysqld.sql #gdb #debug = d:t:i:o,/tmp/mysqld.trace #one-thread @@ -100,12 +100,12 @@ innodb_buffer_pool_size = 16M # this is the default, increase it if you have lots of tables innodb_additional_mem_pool_size = 2M # -# i'd like to use /var/lib/mysql/innodb, but that is seen as a database :-( -# and upstream wants things to be under /var/lib/mysql/, so that's the route +# i'd like to use @GENTOO_PORTAGE_EPREFIX@/var/lib/mysql/innodb, but that is seen as a database :-( +# and upstream wants things to be under @GENTOO_PORTAGE_EPREFIX@/var/lib/mysql/, so that's the route # we have to take for the moment -#innodb_data_home_dir = /var/lib/mysql/ -#innodb_log_arch_dir = /var/lib/mysql/ -#innodb_log_group_home_dir = /var/lib/mysql/ +#innodb_data_home_dir = @GENTOO_PORTAGE_EPREFIX@/var/lib/mysql/ +#innodb_log_arch_dir = @GENTOO_PORTAGE_EPREFIX@/var/lib/mysql/ +#innodb_log_group_home_dir = @GENTOO_PORTAGE_EPREFIX@/var/lib/mysql/ # you may wish to change this size to be more suitable for your system # the max is there to avoid run-away growth on your machine innodb_data_file_path = ibdata1:10M:autoextend:max:128M diff --git a/dev-db/mysql/files/my.cnf-5.5 b/dev-db/mysql/files/my.cnf-5.5 new file mode 100644 index 000000000000..f43d535a7fd0 --- /dev/null +++ b/dev-db/mysql/files/my.cnf-5.5 @@ -0,0 +1,153 @@ +# @GENTOO_PORTAGE_EPREFIX@/etc/mysql/my.cnf: The global mysql configuration file. +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/files/my.cnf-5.5,v 1.2 2013/01/20 02:40:02 robbat2 Exp $ + +# The following options will be passed to all MySQL clients +[client] +#password = your_password +port = 3306 +socket = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.sock + +[mysql] +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets +default-character-set=utf8 + +[mysqladmin] +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets +default-character-set=utf8 + +[mysqlcheck] +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets +default-character-set=utf8 + +[mysqldump] +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets +default-character-set=utf8 + +[mysqlimport] +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets +default-character-set=utf8 + +[mysqlshow] +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets +default-character-set=utf8 + +[myisamchk] +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets + +[myisampack] +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets + +# use [safe_mysqld] with mysql-3 +[mysqld_safe] +err-log = @GENTOO_PORTAGE_EPREFIX@/var/log/mysql/mysql.err + +# add a section [mysqld-4.1] or [mysqld-5.0] for specific configurations +[mysqld] +character-set-server = utf8 +user = mysql +port = 3306 +socket = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.sock +pid-file = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.pid +log-error = @GENTOO_PORTAGE_EPREFIX@/var/log/mysql/mysqld.err +basedir = @GENTOO_PORTAGE_EPREFIX@/usr +datadir = @DATADIR@ +skip-external-locking +key_buffer = 16M +max_allowed_packet = 1M +table_open_cache = 64 +sort_buffer_size = 512K +net_buffer_length = 8K +read_buffer_size = 256K +read_rnd_buffer_size = 512K +myisam_sort_buffer_size = 8M +lc_messages_dir = @GENTOO_PORTAGE_EPREFIX@/usr/share/mysql +#Set this to your desired error message language +lc_messages = en_US + +# security: +# using "localhost" in connects uses sockets by default +# skip-networking +bind-address = 127.0.0.1 + +log-bin +server-id = 1 + +# point the following paths to different dedicated disks +tmpdir = @GENTOO_PORTAGE_EPREFIX@/tmp/ +#log-update = @GENTOO_PORTAGE_EPREFIX@/path-to-dedicated-directory/hostname + +# you need the debug USE flag enabled to use the following directives, +# if needed, uncomment them, start the server and issue +# #tail -f @GENTOO_PORTAGE_EPREFIX@/tmp/mysqld.sql @GENTOO_PORTAGE_EPREFIX@/tmp/mysqld.trace +# this will show you *exactly* what's happening in your server ;) + +#log = @GENTOO_PORTAGE_EPREFIX@/tmp/mysqld.sql +#gdb +#debug = d:t:i:o,/tmp/mysqld.trace +#one-thread + +# uncomment the following directives if you are using BDB tables +#bdb_cache_size = 4M +#bdb_max_lock = 10000 + +# the following is the InnoDB configuration +# if you wish to disable innodb instead +# uncomment just the next line +#skip-innodb +# +# the rest of the innodb config follows: +# don't eat too much memory, we're trying to be safe on 64Mb boxes +# you might want to bump this up a bit on boxes with more RAM +innodb_buffer_pool_size = 16M +# this is the default, increase it if you have lots of tables +innodb_additional_mem_pool_size = 2M +# +# i'd like to use @GENTOO_PORTAGE_EPREFIX@/var/lib/mysql/innodb, but that is seen as a database :-( +# and upstream wants things to be under @GENTOO_PORTAGE_EPREFIX@/var/lib/mysql/, so that's the route +# we have to take for the moment +#innodb_data_home_dir = @GENTOO_PORTAGE_EPREFIX@/var/lib/mysql/ +#innodb_log_arch_dir = @GENTOO_PORTAGE_EPREFIX@/var/lib/mysql/ +#innodb_log_group_home_dir = @GENTOO_PORTAGE_EPREFIX@/var/lib/mysql/ +# you may wish to change this size to be more suitable for your system +# the max is there to avoid run-away growth on your machine +innodb_data_file_path = ibdata1:10M:autoextend:max:128M +# we keep this at around 25% of of innodb_buffer_pool_size +# sensible values range from 1MB to (1/innodb_log_files_in_group*innodb_buffer_pool_size) +innodb_log_file_size = 5M +# this is the default, increase it if you have very large transactions going on +innodb_log_buffer_size = 8M +# this is the default and won't hurt you +# you shouldn't need to tweak it +innodb_log_files_in_group=2 +# see the innodb config docs, the other options are not always safe +innodb_flush_log_at_trx_commit = 1 +innodb_lock_wait_timeout = 50 +innodb_file_per_table + +# Uncomment this to get FEDERATED engine support +#plugin-load=federated=ha_federated.so +loose-federated + +[mysqldump] +quick +max_allowed_packet = 16M + +[mysql] +# uncomment the next directive if you are not familiar with SQL +#safe-updates + +[isamchk] +key_buffer = 20M +sort_buffer_size = 20M +read_buffer = 2M +write_buffer = 2M + +[myisamchk] +key_buffer = 20M +sort_buffer_size = 20M +read_buffer = 2M +write_buffer = 2M + +[mysqlhotcopy] +interactive-timeout + diff --git a/dev-db/mysql/mysql-5.0.91.ebuild b/dev-db/mysql/mysql-5.0.91.ebuild deleted file mode 100644 index b7ae1cb01dc9..000000000000 --- a/dev-db/mysql/mysql-5.0.91.ebuild +++ /dev/null @@ -1,198 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.91.ebuild,v 1.9 2012/04/13 18:00:05 ulm Exp $ - -EAPI=2 -MY_EXTRAS_VER="20100809-0452Z" -# 5.0.91 tarball has wrong version number in the directory. -#MY_SOURCEDIR='mysql-5.0.90' - -inherit toolchain-funcs mysql -# only to make repoman happy. it is really set in the eclass -IUSE="$IUSE" - -# REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" - -# When MY_EXTRAS is bumped, the index should be revised to exclude these. -EPATCH_EXCLUDE='' - -DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 )" -RDEPEND="" - -# Please do not add a naive src_unpack to this ebuild -# If you want to add a single patch, copy the ebuild to an overlay -# and create your own mysql-extras tarball, looking at 000_index.txt - -# Official test instructions: -# USE='berkdb -cluster embedded extraengine perl ssl community' \ -# FEATURES='test userpriv -usersandbox' \ -# ebuild mysql-X.X.XX.ebuild \ -# digest clean package -src_test() { - # Bug #213475 - MySQL _will_ object strenously if your machine is named - # localhost. Also causes weird failures. - [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" - - emake check || die "make check failed" - if ! use "minimal" ; then - if [[ $UID -eq 0 ]]; then - die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." - fi - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - cd "${S}" - einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" - local retstatus_ns - local retstatus_ps - local t - addpredict /this-dir-does-not-exist/t9.MYI - - # Ensure that parallel runs don't die - export MTR_BUILD_THREAD="$((${RANDOM} % 100))" - - # archive_gis really sucks a lot, but it's only relevant for the - # USE=extraengines case - case ${PV} in - 5.0.42) - mysql_disable_test "archive_gis" "Totally broken in 5.0.42" - ;; - - 5.0.4[3-9]|5.0.[56]*|5.0.70|5.0.87) - [ "$(tc-endian)" == "big" ] && \ - mysql_disable_test \ - "archive_gis" \ - "Broken in 5.0.43-70 and 5.0.87 on big-endian boxes only" - ;; - esac - - # This was a slight testcase breakage when the read_only security issue - # was fixed. - case ${PV} in - 5.0.54|5.0.51*) - mysql_disable_test \ - "read_only" \ - "Broken in 5.0.51-54, output in wrong order" - ;; - esac - - # Ditto to read_only - [ "${PV}" == "5.0.51a" ] && \ - mysql_disable_test \ - "view" \ - "Broken in 5.0.51, output in wrong order" - - # x86-specific, OOM issue with some subselects on low memory servers - [ "${PV}" == "5.0.54" ] && \ - [ "${ARCH/x86}" != "${ARCH}" ] && \ - mysql_disable_test \ - "subselect" \ - "Testcase needs tuning on x86 for oom condition" - - # Broke with the YaSSL security issue that didn't affect Gentoo. - [ "${PV}" == "5.0.56" ] && \ - for t in openssl_1 rpl_openssl rpl_ssl ssl \ - ssl_8k_key ssl_compress ssl_connect ; do \ - mysql_disable_test \ - "$t" \ - "OpenSSL tests broken on 5.0.56" - done - - # New test was broken in first time - # Upstream bug 41066 - # http://bugs.mysql.com/bug.php?id=41066 - [ "${PV}" == "5.0.72" ] && \ - mysql_disable_test \ - "status2" \ - "Broken in 5.0.72, new test is broken, upstream bug #41066" - - # The entire 5.0 series has pre-generated SSL certificates, they have - # mostly expired now. ${S}/mysql-tests/std-data/*.pem - # The certs really SHOULD be generated for the tests, so that they are - # not expiring like this. We cannot do so ourselves as the tests look - # closely as the cert path data, and we do not have the CA key to regen - # ourselves. Alternatively, upstream should generate them with at least - # 50-year validity. - # - # Known expiry points: - # 4.1.*, 5.0.0-5.0.22, 5.1.7: Expires 2013/09/09 - # 5.0.23-5.0.77, 5.1.7-5.1.22?: Expires 2009/01/27 - # 5.0.78-5.0.90, 5.1.??-5.1.42: Expires 2010/01/28 - # - # mysql-test/std_data/untrusted-cacert.pem is MEANT to be - # expired/invalid. - case ${PV} in - 5.0.*|5.1.*) - for t in openssl_1 rpl_openssl rpl.rpl_ssl rpl.rpl_ssl1 ssl ssl_8k_key \ - ssl_compress ssl_connect ; do \ - mysql_disable_test \ - "$t" \ - "These OpenSSL tests break due to expired certificates" - done - ;; - esac - - # These are also failing in MySQL 5.0 for now, and are believed to be - # false positives: - # - # main.mysql_comment, main.mysql_upgrade: - # fails due to USE=-latin1 / utf8 default - # - # main.mysql_client_test: - # segfaults at random under Portage only, suspect resource limits. - case ${PV} in - 5.0.*) - for t in main.mysql_client_test main.mysql_comments main.mysql_upgrade; do - mysql_disable_test "$t" "False positives in Gentoo" - done - ;; - esac - - use profiling && use community \ - || mysql_disable_test main.profiling \ - "Profiling test needs profiling support" - - if [ "${PN}" == "mariadb" ]; then - for t in \ - parts.part_supported_sql_func_ndb \ - parts.partition_auto_increment_ndb ; do - mysql_disable_test $t "ndb not supported in mariadb" - done - fi - - case $PV in - 5.0.91) - for t in archive archive_gis archive-big \ - federated_archive mysqldump-max \ - ; do - mysql_disable_test $t "Broken in 5.0.91" - done - ;; - esac - - # create directories because mysqladmin might make out of order - mkdir -p "${S}"/mysql-test/var-{ps,ns}{,/log} - - # We run the test protocols seperately - emake test-ns force="--force --vardir=${S}/mysql-test/var-ns" - retstatus_ns=$? - [[ $retstatus_ns -eq 0 ]] || eerror "test-ns failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - emake test-ps force="--force --vardir=${S}/mysql-test/var-ps" - retstatus_ps=$? - [[ $retstatus_ps -eq 0 ]] || eerror "test-ps failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - # Cleanup is important for these testcases. - pkill -9 -f "${S}/ndb" 2>/dev/null - pkill -9 -f "${S}/sql" 2>/dev/null - failures="" - [[ $retstatus_ns -eq 0 ]] || failures="${failures} test-ns" - [[ $retstatus_ps -eq 0 ]] || failures="${failures} test-ps" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - [[ -z "$failures" ]] || die "Test failures: $failures" - einfo "Tests successfully completed" - else - einfo "Skipping server tests due to minimal build." - fi -} diff --git a/dev-db/mysql/mysql-5.0.92.ebuild b/dev-db/mysql/mysql-5.0.92.ebuild deleted file mode 100644 index 334e0d557072..000000000000 --- a/dev-db/mysql/mysql-5.0.92.ebuild +++ /dev/null @@ -1,196 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.92.ebuild,v 1.3 2012/04/13 18:00:05 ulm Exp $ - -EAPI="4" -MY_EXTRAS_VER="20110713-0702Z" - -inherit toolchain-funcs mysql -# only to make repoman happy. it is really set in the eclass -IUSE="$IUSE" - -# REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" - -# When MY_EXTRAS is bumped, the index should be revised to exclude these. -EPATCH_EXCLUDE='' - -DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 )" -RDEPEND="" - -# Please do not add a naive src_unpack to this ebuild -# If you want to add a single patch, copy the ebuild to an overlay -# and create your own mysql-extras tarball, looking at 000_index.txt - -# Official test instructions: -# USE='berkdb -cluster embedded extraengine perl ssl community' \ -# FEATURES='test userpriv -usersandbox' \ -# ebuild mysql-X.X.XX.ebuild \ -# digest clean package -src_test() { - # Bug #213475 - MySQL _will_ object strenously if your machine is named - # localhost. Also causes weird failures. - [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" - - emake check || die "make check failed" - if ! use "minimal" ; then - if [[ $UID -eq 0 ]]; then - die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." - fi - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - cd "${S}" - einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" - local retstatus_ns - local retstatus_ps - local t - addpredict /this-dir-does-not-exist/t9.MYI - - # Ensure that parallel runs don't die - export MTR_BUILD_THREAD="$((${RANDOM} % 100))" - - # archive_gis really sucks a lot, but it's only relevant for the - # USE=extraengines case - case ${PV} in - 5.0.42) - mysql_disable_test "archive_gis" "Totally broken in 5.0.42" - ;; - - 5.0.4[3-9]|5.0.[56]*|5.0.70|5.0.87) - [ "$(tc-endian)" == "big" ] && \ - mysql_disable_test \ - "archive_gis" \ - "Broken in 5.0.43-70 and 5.0.87 on big-endian boxes only" - ;; - esac - - # This was a slight testcase breakage when the read_only security issue - # was fixed. - case ${PV} in - 5.0.54|5.0.51*) - mysql_disable_test \ - "read_only" \ - "Broken in 5.0.51-54, output in wrong order" - ;; - esac - - # Ditto to read_only - [ "${PV}" == "5.0.51a" ] && \ - mysql_disable_test \ - "view" \ - "Broken in 5.0.51, output in wrong order" - - # x86-specific, OOM issue with some subselects on low memory servers - [ "${PV}" == "5.0.54" ] && \ - [ "${ARCH/x86}" != "${ARCH}" ] && \ - mysql_disable_test \ - "subselect" \ - "Testcase needs tuning on x86 for oom condition" - - # Broke with the YaSSL security issue that didn't affect Gentoo. - [ "${PV}" == "5.0.56" ] && \ - for t in openssl_1 rpl_openssl rpl_ssl ssl \ - ssl_8k_key ssl_compress ssl_connect ; do \ - mysql_disable_test \ - "$t" \ - "OpenSSL tests broken on 5.0.56" - done - - # New test was broken in first time - # Upstream bug 41066 - # http://bugs.mysql.com/bug.php?id=41066 - [ "${PV}" == "5.0.72" ] && \ - mysql_disable_test \ - "status2" \ - "Broken in 5.0.72, new test is broken, upstream bug #41066" - - # The entire 5.0 series has pre-generated SSL certificates, they have - # mostly expired now. ${S}/mysql-tests/std-data/*.pem - # The certs really SHOULD be generated for the tests, so that they are - # not expiring like this. We cannot do so ourselves as the tests look - # closely as the cert path data, and we do not have the CA key to regen - # ourselves. Alternatively, upstream should generate them with at least - # 50-year validity. - # - # Known expiry points: - # 4.1.*, 5.0.0-5.0.22, 5.1.7: Expires 2013/09/09 - # 5.0.23-5.0.77, 5.1.7-5.1.22?: Expires 2009/01/27 - # 5.0.78-5.0.90, 5.1.??-5.1.42: Expires 2010/01/28 - # - # mysql-test/std_data/untrusted-cacert.pem is MEANT to be - # expired/invalid. - case ${PV} in - 5.0.*|5.1.*) - for t in openssl_1 rpl_openssl rpl.rpl_ssl rpl.rpl_ssl1 ssl ssl_8k_key \ - ssl_compress ssl_connect ; do \ - mysql_disable_test \ - "$t" \ - "These OpenSSL tests break due to expired certificates" - done - ;; - esac - - # These are also failing in MySQL 5.0 for now, and are believed to be - # false positives: - # - # main.mysql_comment, main.mysql_upgrade: - # fails due to USE=-latin1 / utf8 default - # - # main.mysql_client_test: - # segfaults at random under Portage only, suspect resource limits. - case ${PV} in - 5.0.*) - for t in main.mysql_client_test main.mysql_comments main.mysql_upgrade; do - mysql_disable_test "$t" "False positives in Gentoo" - done - ;; - esac - - use profiling && use community \ - || mysql_disable_test main.profiling \ - "Profiling test needs profiling support" - - if [ "${PN}" == "mariadb" ]; then - for t in \ - parts.part_supported_sql_func_ndb \ - parts.partition_auto_increment_ndb ; do - mysql_disable_test $t "ndb not supported in mariadb" - done - fi - - case $PV in - 5.0.91) - for t in archive archive_gis archive-big \ - federated_archive mysqldump-max \ - ; do - mysql_disable_test $t "Broken in 5.0.91" - done - ;; - esac - - # create directories because mysqladmin might make out of order - mkdir -p "${S}"/mysql-test/var-{ps,ns}{,/log} - - # We run the test protocols seperately - emake test-ns force="--force --vardir=${S}/mysql-test/var-ns" - retstatus_ns=$? - [[ $retstatus_ns -eq 0 ]] || eerror "test-ns failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - emake test-ps force="--force --vardir=${S}/mysql-test/var-ps" - retstatus_ps=$? - [[ $retstatus_ps -eq 0 ]] || eerror "test-ps failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - # Cleanup is important for these testcases. - pkill -9 -f "${S}/ndb" 2>/dev/null - pkill -9 -f "${S}/sql" 2>/dev/null - failures="" - [[ $retstatus_ns -eq 0 ]] || failures="${failures} test-ns" - [[ $retstatus_ps -eq 0 ]] || failures="${failures} test-ps" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - [[ -z "$failures" ]] || die "Test failures: $failures" - einfo "Tests successfully completed" - else - einfo "Skipping server tests due to minimal build." - fi -} diff --git a/dev-db/mysql/mysql-5.0.96.ebuild b/dev-db/mysql/mysql-5.0.96.ebuild index 5780a7b1e2f8..f22bc535435c 100644 --- a/dev-db/mysql/mysql-5.0.96.ebuild +++ b/dev-db/mysql/mysql-5.0.96.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-db/mysql/mysql-5.0.96.ebuild,v 1.3 2012/04/13 18:00:05 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.96.ebuild,v 1.4 2013/01/20 01:49:23 robbat2 Exp $ EAPI="4" MY_EXTRAS_VER="20120401-2131Z" @@ -10,7 +10,7 @@ inherit toolchain-funcs mysql IUSE="$IUSE" # REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" # When MY_EXTRAS is bumped, the index should be revised to exclude these. EPATCH_EXCLUDE='' diff --git a/dev-db/mysql/mysql-5.1.51.ebuild b/dev-db/mysql/mysql-5.1.51.ebuild deleted file mode 100644 index 75e49f610ec0..000000000000 --- a/dev-db/mysql/mysql-5.1.51.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/dev-db/mysql/mysql-5.1.51.ebuild,v 1.11 2012/04/13 18:00:05 ulm Exp $ - -EAPI="4" -MY_EXTRAS_VER="20101006-0004Z" - -# PBXT -PBXT_VERSION='1.0.11-6-pre-ga' -# XtraDB -PERCONA_VER='5.1.45-10' XTRADB_VER='1.0.6-10' - -inherit toolchain-funcs mysql -# only to make repoman happy. it is really set in the eclass -IUSE="$IUSE" - -# REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x64-macos ~x86-solaris" - -# When MY_EXTRAS is bumped, the index should be revised to exclude these. -# This is often broken still -EPATCH_EXCLUDE='' - -# Most of these are in the eclass -RDEPEND="" -DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) - >=sys-devel/libtool-2.2.10" - -# Please do not add a naive src_unpack to this ebuild -# If you want to add a single patch, copy the ebuild to an overlay -# and create your own mysql-extras tarball, looking at 000_index.txt -src_prepare() { - sed -i \ - -e '/^noinst_PROGRAMS/s/basic-t//g' \ - "${S}"/unittest/mytap/t/Makefile.am - mysql_src_prepare -} - -# Official test instructions: -# USE='berkdb -cluster embedded extraengine perl ssl community' \ -# FEATURES='test userpriv -usersandbox' \ -# ebuild mysql-X.X.XX.ebuild \ -# digest clean package -src_test() { - # Bug #213475 - MySQL _will_ object strenously if your machine is named - # localhost. Also causes weird failures. - [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" - - emake check || die "make check failed" - if ! use "minimal" ; then - if [[ $UID -eq 0 ]]; then - die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." - fi - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - cd "${S}" - einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" - local retstatus_unit - local retstatus_ns - local retstatus_ps - local t - addpredict /this-dir-does-not-exist/t9.MYI - - # Ensure that parallel runs don't die - export MTR_BUILD_THREAD="$((${RANDOM} % 100))" - - # archive_gis really sucks a lot, but it's only relevant for the - # USE=extraengines case - case ${PV} in - 5.0.42) - mysql_disable_test "archive_gis" "Totally broken in 5.0.42" - ;; - - 5.0.4[3-9]|5.0.[56]*|5.0.70|5.0.87) - [ "$(tc-endian)" == "big" ] && \ - mysql_disable_test \ - "archive_gis" \ - "Broken in 5.0.43-70 and 5.0.87 on big-endian boxes only" - ;; - esac - - # This was a slight testcase breakage when the read_only security issue - # was fixed. - case ${PV} in - 5.0.54|5.0.51*) - mysql_disable_test \ - "read_only" \ - "Broken in 5.0.51-54, output in wrong order" - ;; - esac - - # Ditto to read_only - [ "${PV}" == "5.0.51a" ] && \ - mysql_disable_test \ - "view" \ - "Broken in 5.0.51, output in wrong order" - - # x86-specific, OOM issue with some subselects on low memory servers - [ "${PV}" == "5.0.54" ] && \ - [ "${ARCH/x86}" != "${ARCH}" ] && \ - mysql_disable_test \ - "subselect" \ - "Testcase needs tuning on x86 for oom condition" - - # Broke with the YaSSL security issue that didn't affect Gentoo. - [ "${PV}" == "5.0.56" ] && \ - for t in openssl_1 rpl_openssl rpl_ssl ssl \ - ssl_8k_key ssl_compress ssl_connect ; do \ - mysql_disable_test \ - "$t" \ - "OpenSSL tests broken on 5.0.56" - done - - # New test was broken in first time - # Upstream bug 41066 - # http://bugs.mysql.com/bug.php?id=41066 - [ "${PV}" == "5.0.72" ] && \ - mysql_disable_test \ - "status2" \ - "Broken in 5.0.72, new test is broken, upstream bug #41066" - - # The entire 5.0 series has pre-generated SSL certificates, they have - # mostly expired now. ${S}/mysql-tests/std-data/*.pem - # The certs really SHOULD be generated for the tests, so that they are - # not expiring like this. We cannot do so ourselves as the tests look - # closely as the cert path data, and we do not have the CA key to regen - # ourselves. Alternatively, upstream should generate them with at least - # 50-year validity. - # - # Known expiry points: - # 4.1.*, 5.0.0-5.0.22, 5.1.7: Expires 2013/09/09 - # 5.0.23-5.0.77, 5.1.7-5.1.22?: Expires 2009/01/27 - # 5.0.78-5.0.90, 5.1.??-5.1.42: Expires 2010/01/28 - # - # mysql-test/std_data/untrusted-cacert.pem is MEANT to be - # expired/invalid. - case ${PV} in - 5.0.*|5.1.*|5.4.*|5.5.*) - for t in openssl_1 rpl_openssl rpl.rpl_ssl rpl.rpl_ssl1 ssl ssl_8k_key \ - ssl_compress ssl_connect rpl.rpl_heartbeat_ssl ; do \ - mysql_disable_test \ - "$t" \ - "These OpenSSL tests break due to expired certificates" - done - ;; - esac - - # These are also failing in MySQL 5.1 for now, and are believed to be - # false positives: - # - # main.mysql_comment, main.mysql_upgrade, main.information_schema, - # funcs_1.is_columns_mysql funcs_1.is_tables_mysql funcs_1.is_triggers: - # fails due to USE=-latin1 / utf8 default - # - # main.mysql_client_test: - # segfaults at random under Portage only, suspect resource limits. - # - # main.not_partition: - # Failure reason unknown at this time, must resolve before package.mask - # removal FIXME - case ${PV} in - 5.1.*|5.4.*|5.5.*) - for t in main.mysql_client_test main.mysql_comments \ - main.mysql_upgrade \ - main.information_schema \ - main.not_partition funcs_1.is_columns_mysql \ - funcs_1.is_tables_mysql funcs_1.is_triggers; do - mysql_disable_test "$t" "False positives in Gentoo" - done - ;; - esac - - # New failures in 5.1.50/5.1.51, reported by jmbsvicetto. - # These tests are picking up a 'connect-timeout' config from somewhere, - # which is not valid, and since it does not have 'loose-' in front of - # it, it's causing a failure - case ${PV} in - 5.1.5*|5.4.*|5.5.*|6*) - for t in rpl.rpl_mysql_upgrade main.log_tables_upgrade ; do - mysql_disable_test "$t" \ - "False positives in Gentoo: connect-timeout" - done - ;; - esac - - use profiling && use community \ - || mysql_disable_test main.profiling \ - "Profiling test needs profiling support" - - if [ "${PN}" == "mariadb" ]; then - for t in \ - parts.part_supported_sql_func_ndb \ - parts.partition_auto_increment_ndb ; do - mysql_disable_test $t "ndb not supported in mariadb" - done - fi - - # This fail with XtraDB in place of normal InnoDB - # TODO: test if they are broken with the rest of the Percona patches - if xtradb_patch_available && use xtradb ; then - for t in main.innodb innodb.innodb_bug51378 \ - main.information_schema_db main.mysqlshow \ - main.innodb-autoinc main.innodb_bug21704 \ - main.innodb_bug44369 main.innodb_bug46000 \ - main.index_merge_innodb \ - innodb.innodb innodb.innodb_misc1 innodb.innodb_bug52663 \ - innodb.innodb-autoinc innodb.innodb-autoinc-44030 \ - innodb.innodb_bug21704 innodb.innodb_bug44369 \ - innodb.innodb_bug46000 innodb.innodb_bug48024 \ - innodb.innodb_bug49164 innodb.innodb_bug51920 \ - innodb.innodb_bug54044 \ - ; do - mysql_disable_test $t "tests broken in xtradb" - done - fi - - # bug 332565 - if ! use extraengine ; then - for t in main.range ; do - mysql_disable_test $t "Test $t requires USE=extraengine" - done - fi - - # create directories because mysqladmin might make out of order - mkdir -p "${S}"/mysql-test/var-{ps,ns}{,/log} - - # We run the test protocols seperately - emake test-unit - retstatus_unit=$? - [[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed" - - emake test-ns force="--force --vardir=${S}/mysql-test/var-ns" - retstatus_ns=$? - [[ $retstatus_ns -eq 0 ]] || eerror "test-ns failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - emake test-ps force="--force --vardir=${S}/mysql-test/var-ps" - retstatus_ps=$? - [[ $retstatus_ps -eq 0 ]] || eerror "test-ps failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - # TODO: - # When upstream enables the pr and nr testsuites, we need those as well. - - # Cleanup is important for these testcases. - pkill -9 -f "${S}/ndb" 2>/dev/null - pkill -9 -f "${S}/sql" 2>/dev/null - failures="" - [[ $retstatus_unit -eq 0 ]] || failures="${failures} test-unit" - [[ $retstatus_ns -eq 0 ]] || failures="${failures} test-ns" - [[ $retstatus_ps -eq 0 ]] || failures="${failures} test-ps" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - [[ -z "$failures" ]] || die "Test failures: $failures" - einfo "Tests successfully completed" - else - einfo "Skipping server tests due to minimal build." - fi -} diff --git a/dev-db/mysql/mysql-5.1.52-r1.ebuild b/dev-db/mysql/mysql-5.1.52-r1.ebuild deleted file mode 100644 index 9cd4f0fdabe0..000000000000 --- a/dev-db/mysql/mysql-5.1.52-r1.ebuild +++ /dev/null @@ -1,258 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.1.52-r1.ebuild,v 1.3 2012/04/13 18:00:05 ulm Exp $ - -EAPI="4" -MY_EXTRAS_VER="20101128-2122Z" - -# PBXT -PBXT_VERSION='1.0.11-6-pre-ga' -# XtraDB -PERCONA_VER='5.1.45-10' XTRADB_VER='1.0.6-10' - -inherit toolchain-funcs mysql -# only to make repoman happy. it is really set in the eclass -IUSE="$IUSE" - -# REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x64-macos ~x86-solaris" - -# When MY_EXTRAS is bumped, the index should be revised to exclude these. -# This is often broken still -EPATCH_EXCLUDE='' - -# Most of these are in the eclass -RDEPEND="" -DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) - >=sys-devel/libtool-2.2.10" - -# Please do not add a naive src_unpack to this ebuild -# If you want to add a single patch, copy the ebuild to an overlay -# and create your own mysql-extras tarball, looking at 000_index.txt -src_prepare() { - sed -i \ - -e '/^noinst_PROGRAMS/s/basic-t//g' \ - "${S}"/unittest/mytap/t/Makefile.am - mysql_src_prepare -} - -# Official test instructions: -# USE='berkdb -cluster embedded extraengine perl ssl community' \ -# FEATURES='test userpriv -usersandbox' \ -# ebuild mysql-X.X.XX.ebuild \ -# digest clean package -src_test() { - # Bug #213475 - MySQL _will_ object strenously if your machine is named - # localhost. Also causes weird failures. - [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" - - emake check || die "make check failed" - if ! use "minimal" ; then - if [[ $UID -eq 0 ]]; then - die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." - fi - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - cd "${S}" - einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" - local retstatus_unit - local retstatus_ns - local retstatus_ps - local t - addpredict /this-dir-does-not-exist/t9.MYI - - # Ensure that parallel runs don't die - export MTR_BUILD_THREAD="$((${RANDOM} % 100))" - - # archive_gis really sucks a lot, but it's only relevant for the - # USE=extraengines case - case ${PV} in - 5.0.42) - mysql_disable_test "archive_gis" "Totally broken in 5.0.42" - ;; - - 5.0.4[3-9]|5.0.[56]*|5.0.70|5.0.87) - [ "$(tc-endian)" == "big" ] && \ - mysql_disable_test \ - "archive_gis" \ - "Broken in 5.0.43-70 and 5.0.87 on big-endian boxes only" - ;; - esac - - # This was a slight testcase breakage when the read_only security issue - # was fixed. - case ${PV} in - 5.0.54|5.0.51*) - mysql_disable_test \ - "read_only" \ - "Broken in 5.0.51-54, output in wrong order" - ;; - esac - - # Ditto to read_only - [ "${PV}" == "5.0.51a" ] && \ - mysql_disable_test \ - "view" \ - "Broken in 5.0.51, output in wrong order" - - # x86-specific, OOM issue with some subselects on low memory servers - [ "${PV}" == "5.0.54" ] && \ - [ "${ARCH/x86}" != "${ARCH}" ] && \ - mysql_disable_test \ - "subselect" \ - "Testcase needs tuning on x86 for oom condition" - - # Broke with the YaSSL security issue that didn't affect Gentoo. - [ "${PV}" == "5.0.56" ] && \ - for t in openssl_1 rpl_openssl rpl_ssl ssl \ - ssl_8k_key ssl_compress ssl_connect ; do \ - mysql_disable_test \ - "$t" \ - "OpenSSL tests broken on 5.0.56" - done - - # New test was broken in first time - # Upstream bug 41066 - # http://bugs.mysql.com/bug.php?id=41066 - [ "${PV}" == "5.0.72" ] && \ - mysql_disable_test \ - "status2" \ - "Broken in 5.0.72, new test is broken, upstream bug #41066" - - # The entire 5.0 series has pre-generated SSL certificates, they have - # mostly expired now. ${S}/mysql-tests/std-data/*.pem - # The certs really SHOULD be generated for the tests, so that they are - # not expiring like this. We cannot do so ourselves as the tests look - # closely as the cert path data, and we do not have the CA key to regen - # ourselves. Alternatively, upstream should generate them with at least - # 50-year validity. - # - # Known expiry points: - # 4.1.*, 5.0.0-5.0.22, 5.1.7: Expires 2013/09/09 - # 5.0.23-5.0.77, 5.1.7-5.1.22?: Expires 2009/01/27 - # 5.0.78-5.0.90, 5.1.??-5.1.42: Expires 2010/01/28 - # - # mysql-test/std_data/untrusted-cacert.pem is MEANT to be - # expired/invalid. - case ${PV} in - 5.0.*|5.1.*|5.4.*|5.5.*) - for t in openssl_1 rpl_openssl rpl.rpl_ssl rpl.rpl_ssl1 ssl ssl_8k_key \ - ssl_compress ssl_connect rpl.rpl_heartbeat_ssl ; do \ - mysql_disable_test \ - "$t" \ - "These OpenSSL tests break due to expired certificates" - done - ;; - esac - - # These are also failing in MySQL 5.1 for now, and are believed to be - # false positives: - # - # main.mysql_comment, main.mysql_upgrade, main.information_schema, - # funcs_1.is_columns_mysql funcs_1.is_tables_mysql funcs_1.is_triggers: - # fails due to USE=-latin1 / utf8 default - # - # main.mysql_client_test: - # segfaults at random under Portage only, suspect resource limits. - # - # main.not_partition: - # Failure reason unknown at this time, must resolve before package.mask - # removal FIXME - case ${PV} in - 5.1.*|5.4.*|5.5.*) - for t in main.mysql_client_test main.mysql_comments \ - main.mysql_upgrade \ - main.information_schema \ - main.not_partition funcs_1.is_columns_mysql \ - funcs_1.is_tables_mysql funcs_1.is_triggers; do - mysql_disable_test "$t" "False positives in Gentoo" - done - ;; - esac - - # New failures in 5.1.50/5.1.51, reported by jmbsvicetto. - # These tests are picking up a 'connect-timeout' config from somewhere, - # which is not valid, and since it does not have 'loose-' in front of - # it, it's causing a failure - case ${PV} in - 5.1.5*|5.4.*|5.5.*|6*) - for t in rpl.rpl_mysql_upgrade main.log_tables_upgrade ; do - mysql_disable_test "$t" \ - "False positives in Gentoo: connect-timeout" - done - ;; - esac - - use profiling && use community \ - || mysql_disable_test main.profiling \ - "Profiling test needs profiling support" - - if [ "${PN}" == "mariadb" ]; then - for t in \ - parts.part_supported_sql_func_ndb \ - parts.partition_auto_increment_ndb ; do - mysql_disable_test $t "ndb not supported in mariadb" - done - fi - - # This fail with XtraDB in place of normal InnoDB - # TODO: test if they are broken with the rest of the Percona patches - if xtradb_patch_available && use xtradb ; then - for t in main.innodb innodb.innodb_bug51378 \ - main.information_schema_db main.mysqlshow \ - main.innodb-autoinc main.innodb_bug21704 \ - main.innodb_bug44369 main.innodb_bug46000 \ - main.index_merge_innodb \ - innodb.innodb innodb.innodb_misc1 innodb.innodb_bug52663 \ - innodb.innodb-autoinc innodb.innodb-autoinc-44030 \ - innodb.innodb_bug21704 innodb.innodb_bug44369 \ - innodb.innodb_bug46000 innodb.innodb_bug48024 \ - innodb.innodb_bug49164 innodb.innodb_bug51920 \ - innodb.innodb_bug54044 \ - ; do - mysql_disable_test $t "tests broken in xtradb" - done - fi - - # bug 332565 - if ! use extraengine ; then - for t in main.range ; do - mysql_disable_test $t "Test $t requires USE=extraengine" - done - fi - - # create directories because mysqladmin might make out of order - mkdir -p "${S}"/mysql-test/var-{ps,ns}{,/log} - - # We run the test protocols seperately - #emake test-unit - retstatus_unit=$? - retstatus_unit=0 - [[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed" - - emake test-ns force="--force --vardir=${S}/mysql-test/var-ns" - retstatus_ns=$? - [[ $retstatus_ns -eq 0 ]] || eerror "test-ns failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - emake test-ps force="--force --vardir=${S}/mysql-test/var-ps" - retstatus_ps=$? - [[ $retstatus_ps -eq 0 ]] || eerror "test-ps failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - # TODO: - # When upstream enables the pr and nr testsuites, we need those as well. - - # Cleanup is important for these testcases. - pkill -9 -f "${S}/ndb" 2>/dev/null - pkill -9 -f "${S}/sql" 2>/dev/null - failures="" - [[ $retstatus_unit -eq 0 ]] || failures="${failures} test-unit" - [[ $retstatus_ns -eq 0 ]] || failures="${failures} test-ns" - [[ $retstatus_ps -eq 0 ]] || failures="${failures} test-ps" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - [[ -z "$failures" ]] || die "Test failures: $failures" - einfo "Tests successfully completed" - else - einfo "Skipping server tests due to minimal build." - fi -} diff --git a/dev-db/mysql/mysql-5.1.52.ebuild b/dev-db/mysql/mysql-5.1.52.ebuild deleted file mode 100644 index d04befb78105..000000000000 --- a/dev-db/mysql/mysql-5.1.52.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/dev-db/mysql/mysql-5.1.52.ebuild,v 1.4 2012/04/13 18:00:05 ulm Exp $ - -EAPI="4" -MY_EXTRAS_VER="20101104-1842Z" - -# PBXT -PBXT_VERSION='1.0.11-6-pre-ga' -# XtraDB -PERCONA_VER='5.1.45-10' XTRADB_VER='1.0.6-10' - -inherit toolchain-funcs mysql -# only to make repoman happy. it is really set in the eclass -IUSE="$IUSE" - -# REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x64-macos ~x86-solaris" - -# When MY_EXTRAS is bumped, the index should be revised to exclude these. -# This is often broken still -EPATCH_EXCLUDE='' - -# Most of these are in the eclass -RDEPEND="" -DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) - >=sys-devel/libtool-2.2.10" - -# Please do not add a naive src_unpack to this ebuild -# If you want to add a single patch, copy the ebuild to an overlay -# and create your own mysql-extras tarball, looking at 000_index.txt -src_prepare() { - sed -i \ - -e '/^noinst_PROGRAMS/s/basic-t//g' \ - "${S}"/unittest/mytap/t/Makefile.am - mysql_src_prepare -} - -# Official test instructions: -# USE='berkdb -cluster embedded extraengine perl ssl community' \ -# FEATURES='test userpriv -usersandbox' \ -# ebuild mysql-X.X.XX.ebuild \ -# digest clean package -src_test() { - # Bug #213475 - MySQL _will_ object strenously if your machine is named - # localhost. Also causes weird failures. - [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" - - emake check || die "make check failed" - if ! use "minimal" ; then - if [[ $UID -eq 0 ]]; then - die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." - fi - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - cd "${S}" - einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" - local retstatus_unit - local retstatus_ns - local retstatus_ps - local t - addpredict /this-dir-does-not-exist/t9.MYI - - # Ensure that parallel runs don't die - export MTR_BUILD_THREAD="$((${RANDOM} % 100))" - - # archive_gis really sucks a lot, but it's only relevant for the - # USE=extraengines case - case ${PV} in - 5.0.42) - mysql_disable_test "archive_gis" "Totally broken in 5.0.42" - ;; - - 5.0.4[3-9]|5.0.[56]*|5.0.70|5.0.87) - [ "$(tc-endian)" == "big" ] && \ - mysql_disable_test \ - "archive_gis" \ - "Broken in 5.0.43-70 and 5.0.87 on big-endian boxes only" - ;; - esac - - # This was a slight testcase breakage when the read_only security issue - # was fixed. - case ${PV} in - 5.0.54|5.0.51*) - mysql_disable_test \ - "read_only" \ - "Broken in 5.0.51-54, output in wrong order" - ;; - esac - - # Ditto to read_only - [ "${PV}" == "5.0.51a" ] && \ - mysql_disable_test \ - "view" \ - "Broken in 5.0.51, output in wrong order" - - # x86-specific, OOM issue with some subselects on low memory servers - [ "${PV}" == "5.0.54" ] && \ - [ "${ARCH/x86}" != "${ARCH}" ] && \ - mysql_disable_test \ - "subselect" \ - "Testcase needs tuning on x86 for oom condition" - - # Broke with the YaSSL security issue that didn't affect Gentoo. - [ "${PV}" == "5.0.56" ] && \ - for t in openssl_1 rpl_openssl rpl_ssl ssl \ - ssl_8k_key ssl_compress ssl_connect ; do \ - mysql_disable_test \ - "$t" \ - "OpenSSL tests broken on 5.0.56" - done - - # New test was broken in first time - # Upstream bug 41066 - # http://bugs.mysql.com/bug.php?id=41066 - [ "${PV}" == "5.0.72" ] && \ - mysql_disable_test \ - "status2" \ - "Broken in 5.0.72, new test is broken, upstream bug #41066" - - # The entire 5.0 series has pre-generated SSL certificates, they have - # mostly expired now. ${S}/mysql-tests/std-data/*.pem - # The certs really SHOULD be generated for the tests, so that they are - # not expiring like this. We cannot do so ourselves as the tests look - # closely as the cert path data, and we do not have the CA key to regen - # ourselves. Alternatively, upstream should generate them with at least - # 50-year validity. - # - # Known expiry points: - # 4.1.*, 5.0.0-5.0.22, 5.1.7: Expires 2013/09/09 - # 5.0.23-5.0.77, 5.1.7-5.1.22?: Expires 2009/01/27 - # 5.0.78-5.0.90, 5.1.??-5.1.42: Expires 2010/01/28 - # - # mysql-test/std_data/untrusted-cacert.pem is MEANT to be - # expired/invalid. - case ${PV} in - 5.0.*|5.1.*|5.4.*|5.5.*) - for t in openssl_1 rpl_openssl rpl.rpl_ssl rpl.rpl_ssl1 ssl ssl_8k_key \ - ssl_compress ssl_connect rpl.rpl_heartbeat_ssl ; do \ - mysql_disable_test \ - "$t" \ - "These OpenSSL tests break due to expired certificates" - done - ;; - esac - - # These are also failing in MySQL 5.1 for now, and are believed to be - # false positives: - # - # main.mysql_comment, main.mysql_upgrade, main.information_schema, - # funcs_1.is_columns_mysql funcs_1.is_tables_mysql funcs_1.is_triggers: - # fails due to USE=-latin1 / utf8 default - # - # main.mysql_client_test: - # segfaults at random under Portage only, suspect resource limits. - # - # main.not_partition: - # Failure reason unknown at this time, must resolve before package.mask - # removal FIXME - case ${PV} in - 5.1.*|5.4.*|5.5.*) - for t in main.mysql_client_test main.mysql_comments \ - main.mysql_upgrade \ - main.information_schema \ - main.not_partition funcs_1.is_columns_mysql \ - funcs_1.is_tables_mysql funcs_1.is_triggers; do - mysql_disable_test "$t" "False positives in Gentoo" - done - ;; - esac - - # New failures in 5.1.50/5.1.51, reported by jmbsvicetto. - # These tests are picking up a 'connect-timeout' config from somewhere, - # which is not valid, and since it does not have 'loose-' in front of - # it, it's causing a failure - case ${PV} in - 5.1.5*|5.4.*|5.5.*|6*) - for t in rpl.rpl_mysql_upgrade main.log_tables_upgrade ; do - mysql_disable_test "$t" \ - "False positives in Gentoo: connect-timeout" - done - ;; - esac - - use profiling && use community \ - || mysql_disable_test main.profiling \ - "Profiling test needs profiling support" - - if [ "${PN}" == "mariadb" ]; then - for t in \ - parts.part_supported_sql_func_ndb \ - parts.partition_auto_increment_ndb ; do - mysql_disable_test $t "ndb not supported in mariadb" - done - fi - - # This fail with XtraDB in place of normal InnoDB - # TODO: test if they are broken with the rest of the Percona patches - if xtradb_patch_available && use xtradb ; then - for t in main.innodb innodb.innodb_bug51378 \ - main.information_schema_db main.mysqlshow \ - main.innodb-autoinc main.innodb_bug21704 \ - main.innodb_bug44369 main.innodb_bug46000 \ - main.index_merge_innodb \ - innodb.innodb innodb.innodb_misc1 innodb.innodb_bug52663 \ - innodb.innodb-autoinc innodb.innodb-autoinc-44030 \ - innodb.innodb_bug21704 innodb.innodb_bug44369 \ - innodb.innodb_bug46000 innodb.innodb_bug48024 \ - innodb.innodb_bug49164 innodb.innodb_bug51920 \ - innodb.innodb_bug54044 \ - ; do - mysql_disable_test $t "tests broken in xtradb" - done - fi - - # bug 332565 - if ! use extraengine ; then - for t in main.range ; do - mysql_disable_test $t "Test $t requires USE=extraengine" - done - fi - - # create directories because mysqladmin might make out of order - mkdir -p "${S}"/mysql-test/var-{ps,ns}{,/log} - - # We run the test protocols seperately - emake test-unit - retstatus_unit=$? - [[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed" - - emake test-ns force="--force --vardir=${S}/mysql-test/var-ns" - retstatus_ns=$? - [[ $retstatus_ns -eq 0 ]] || eerror "test-ns failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - emake test-ps force="--force --vardir=${S}/mysql-test/var-ps" - retstatus_ps=$? - [[ $retstatus_ps -eq 0 ]] || eerror "test-ps failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - # TODO: - # When upstream enables the pr and nr testsuites, we need those as well. - - # Cleanup is important for these testcases. - pkill -9 -f "${S}/ndb" 2>/dev/null - pkill -9 -f "${S}/sql" 2>/dev/null - failures="" - [[ $retstatus_unit -eq 0 ]] || failures="${failures} test-unit" - [[ $retstatus_ns -eq 0 ]] || failures="${failures} test-ns" - [[ $retstatus_ps -eq 0 ]] || failures="${failures} test-ps" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - [[ -z "$failures" ]] || die "Test failures: $failures" - einfo "Tests successfully completed" - else - einfo "Skipping server tests due to minimal build." - fi -} diff --git a/dev-db/mysql/mysql-5.1.53.ebuild b/dev-db/mysql/mysql-5.1.53.ebuild deleted file mode 100644 index 0ccf27f48604..000000000000 --- a/dev-db/mysql/mysql-5.1.53.ebuild +++ /dev/null @@ -1,258 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.1.53.ebuild,v 1.4 2012/04/13 18:00:05 ulm Exp $ - -EAPI="4" -MY_EXTRAS_VER="20101128-2122Z" - -# PBXT -PBXT_VERSION='1.0.11-6-pre-ga' -# XtraDB -PERCONA_VER='5.1.45-10' XTRADB_VER='1.0.6-10' - -inherit toolchain-funcs mysql -# only to make repoman happy. it is really set in the eclass -IUSE="$IUSE" - -# REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x64-macos ~x86-solaris" - -# When MY_EXTRAS is bumped, the index should be revised to exclude these. -# This is often broken still -EPATCH_EXCLUDE='' - -# Most of these are in the eclass -RDEPEND="" -DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) - >=sys-devel/libtool-2.2.10" - -# Please do not add a naive src_unpack to this ebuild -# If you want to add a single patch, copy the ebuild to an overlay -# and create your own mysql-extras tarball, looking at 000_index.txt -src_prepare() { - sed -i \ - -e '/^noinst_PROGRAMS/s/basic-t//g' \ - "${S}"/unittest/mytap/t/Makefile.am - mysql_src_prepare -} - -# Official test instructions: -# USE='berkdb -cluster embedded extraengine perl ssl community' \ -# FEATURES='test userpriv -usersandbox' \ -# ebuild mysql-X.X.XX.ebuild \ -# digest clean package -src_test() { - # Bug #213475 - MySQL _will_ object strenously if your machine is named - # localhost. Also causes weird failures. - [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" - - emake check || die "make check failed" - if ! use "minimal" ; then - if [[ $UID -eq 0 ]]; then - die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." - fi - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - cd "${S}" - einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" - local retstatus_unit - local retstatus_ns - local retstatus_ps - local t - addpredict /this-dir-does-not-exist/t9.MYI - - # Ensure that parallel runs don't die - export MTR_BUILD_THREAD="$((${RANDOM} % 100))" - - # archive_gis really sucks a lot, but it's only relevant for the - # USE=extraengines case - case ${PV} in - 5.0.42) - mysql_disable_test "archive_gis" "Totally broken in 5.0.42" - ;; - - 5.0.4[3-9]|5.0.[56]*|5.0.70|5.0.87) - [ "$(tc-endian)" == "big" ] && \ - mysql_disable_test \ - "archive_gis" \ - "Broken in 5.0.43-70 and 5.0.87 on big-endian boxes only" - ;; - esac - - # This was a slight testcase breakage when the read_only security issue - # was fixed. - case ${PV} in - 5.0.54|5.0.51*) - mysql_disable_test \ - "read_only" \ - "Broken in 5.0.51-54, output in wrong order" - ;; - esac - - # Ditto to read_only - [ "${PV}" == "5.0.51a" ] && \ - mysql_disable_test \ - "view" \ - "Broken in 5.0.51, output in wrong order" - - # x86-specific, OOM issue with some subselects on low memory servers - [ "${PV}" == "5.0.54" ] && \ - [ "${ARCH/x86}" != "${ARCH}" ] && \ - mysql_disable_test \ - "subselect" \ - "Testcase needs tuning on x86 for oom condition" - - # Broke with the YaSSL security issue that didn't affect Gentoo. - [ "${PV}" == "5.0.56" ] && \ - for t in openssl_1 rpl_openssl rpl_ssl ssl \ - ssl_8k_key ssl_compress ssl_connect ; do \ - mysql_disable_test \ - "$t" \ - "OpenSSL tests broken on 5.0.56" - done - - # New test was broken in first time - # Upstream bug 41066 - # http://bugs.mysql.com/bug.php?id=41066 - [ "${PV}" == "5.0.72" ] && \ - mysql_disable_test \ - "status2" \ - "Broken in 5.0.72, new test is broken, upstream bug #41066" - - # The entire 5.0 series has pre-generated SSL certificates, they have - # mostly expired now. ${S}/mysql-tests/std-data/*.pem - # The certs really SHOULD be generated for the tests, so that they are - # not expiring like this. We cannot do so ourselves as the tests look - # closely as the cert path data, and we do not have the CA key to regen - # ourselves. Alternatively, upstream should generate them with at least - # 50-year validity. - # - # Known expiry points: - # 4.1.*, 5.0.0-5.0.22, 5.1.7: Expires 2013/09/09 - # 5.0.23-5.0.77, 5.1.7-5.1.22?: Expires 2009/01/27 - # 5.0.78-5.0.90, 5.1.??-5.1.42: Expires 2010/01/28 - # - # mysql-test/std_data/untrusted-cacert.pem is MEANT to be - # expired/invalid. - case ${PV} in - 5.0.*|5.1.*|5.4.*|5.5.*) - for t in openssl_1 rpl_openssl rpl.rpl_ssl rpl.rpl_ssl1 ssl ssl_8k_key \ - ssl_compress ssl_connect rpl.rpl_heartbeat_ssl ; do \ - mysql_disable_test \ - "$t" \ - "These OpenSSL tests break due to expired certificates" - done - ;; - esac - - # These are also failing in MySQL 5.1 for now, and are believed to be - # false positives: - # - # main.mysql_comment, main.mysql_upgrade, main.information_schema, - # funcs_1.is_columns_mysql funcs_1.is_tables_mysql funcs_1.is_triggers: - # fails due to USE=-latin1 / utf8 default - # - # main.mysql_client_test: - # segfaults at random under Portage only, suspect resource limits. - # - # main.not_partition: - # Failure reason unknown at this time, must resolve before package.mask - # removal FIXME - case ${PV} in - 5.1.*|5.4.*|5.5.*) - for t in main.mysql_client_test main.mysql_comments \ - main.mysql_upgrade \ - main.information_schema \ - main.not_partition funcs_1.is_columns_mysql \ - funcs_1.is_tables_mysql funcs_1.is_triggers; do - mysql_disable_test "$t" "False positives in Gentoo" - done - ;; - esac - - # New failures in 5.1.50/5.1.51, reported by jmbsvicetto. - # These tests are picking up a 'connect-timeout' config from somewhere, - # which is not valid, and since it does not have 'loose-' in front of - # it, it's causing a failure - case ${PV} in - 5.1.5*|5.4.*|5.5.*|6*) - for t in rpl.rpl_mysql_upgrade main.log_tables_upgrade ; do - mysql_disable_test "$t" \ - "False positives in Gentoo: connect-timeout" - done - ;; - esac - - use profiling && use community \ - || mysql_disable_test main.profiling \ - "Profiling test needs profiling support" - - if [ "${PN}" == "mariadb" ]; then - for t in \ - parts.part_supported_sql_func_ndb \ - parts.partition_auto_increment_ndb ; do - mysql_disable_test $t "ndb not supported in mariadb" - done - fi - - # This fail with XtraDB in place of normal InnoDB - # TODO: test if they are broken with the rest of the Percona patches - if xtradb_patch_available && use xtradb ; then - for t in main.innodb innodb.innodb_bug51378 \ - main.information_schema_db main.mysqlshow \ - main.innodb-autoinc main.innodb_bug21704 \ - main.innodb_bug44369 main.innodb_bug46000 \ - main.index_merge_innodb \ - innodb.innodb innodb.innodb_misc1 innodb.innodb_bug52663 \ - innodb.innodb-autoinc innodb.innodb-autoinc-44030 \ - innodb.innodb_bug21704 innodb.innodb_bug44369 \ - innodb.innodb_bug46000 innodb.innodb_bug48024 \ - innodb.innodb_bug49164 innodb.innodb_bug51920 \ - innodb.innodb_bug54044 \ - ; do - mysql_disable_test $t "tests broken in xtradb" - done - fi - - # bug 332565 - if ! use extraengine ; then - for t in main.range ; do - mysql_disable_test $t "Test $t requires USE=extraengine" - done - fi - - # create directories because mysqladmin might make out of order - mkdir -p "${S}"/mysql-test/var-{ps,ns}{,/log} - - # We run the test protocols seperately - #emake test-unit - retstatus_unit=$? - retstatus_unit=0 - [[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed" - - emake test-ns force="--force --vardir=${S}/mysql-test/var-ns" - retstatus_ns=$? - [[ $retstatus_ns -eq 0 ]] || eerror "test-ns failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - emake test-ps force="--force --vardir=${S}/mysql-test/var-ps" - retstatus_ps=$? - [[ $retstatus_ps -eq 0 ]] || eerror "test-ps failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - # TODO: - # When upstream enables the pr and nr testsuites, we need those as well. - - # Cleanup is important for these testcases. - pkill -9 -f "${S}/ndb" 2>/dev/null - pkill -9 -f "${S}/sql" 2>/dev/null - failures="" - [[ $retstatus_unit -eq 0 ]] || failures="${failures} test-unit" - [[ $retstatus_ns -eq 0 ]] || failures="${failures} test-ns" - [[ $retstatus_ps -eq 0 ]] || failures="${failures} test-ps" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - [[ -z "$failures" ]] || die "Test failures: $failures" - einfo "Tests successfully completed" - else - einfo "Skipping server tests due to minimal build." - fi -} diff --git a/dev-db/mysql/mysql-5.1.56-r1.ebuild b/dev-db/mysql/mysql-5.1.56-r1.ebuild deleted file mode 100644 index d4ca5dcfec6a..000000000000 --- a/dev-db/mysql/mysql-5.1.56-r1.ebuild +++ /dev/null @@ -1,261 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.1.56-r1.ebuild,v 1.2 2012/01/06 21:28:19 jmbsvicetto Exp $ - -EAPI="4" - -MY_EXTRAS_VER="20110713-0702Z" -# PBXT -PBXT_VERSION='1.0.11-6-pre-ga' -# XtraDB -PERCONA_VER='5.1.45-10' XTRADB_VER='1.0.6-10' - -# Build type -BUILD="autotools" - -inherit toolchain-funcs mysql-v2 - -# only to make repoman happy. it is really set in the eclass -IUSE="$IUSE" - -# REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x64-macos ~x86-solaris" - -# When MY_EXTRAS is bumped, the index should be revised to exclude these. -# This is often broken still -EPATCH_EXCLUDE='' - -# Most of these are in the eclass -DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) - >=sys-devel/libtool-2.2.10" -RDEPEND="${RDEPEND}" - -# Please do not add a naive src_unpack to this ebuild -# If you want to add a single patch, copy the ebuild to an overlay -# and create your own mysql-extras tarball, looking at 000_index.txt -src_prepare() { - sed -i \ - -e '/^noinst_PROGRAMS/s/basic-t//g' \ - "${S}"/unittest/mytap/t/Makefile.am - mysql-v2_src_prepare -} - -# Official test instructions: -# USE='berkdb -cluster embedded extraengine perl ssl community' \ -# FEATURES='test userpriv -usersandbox' \ -# ebuild mysql-X.X.XX.ebuild \ -# digest clean package -src_test() { - # Bug #213475 - MySQL _will_ object strenously if your machine is named - # localhost. Also causes weird failures. - [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" - - emake check || die "make check failed" - if ! use "minimal" ; then - if [[ $UID -eq 0 ]]; then - die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." - fi - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - cd "${S}" - einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" - local retstatus_unit - local retstatus_ns - local retstatus_ps - local t - addpredict /this-dir-does-not-exist/t9.MYI - - # Ensure that parallel runs don't die - export MTR_BUILD_THREAD="$((${RANDOM} % 100))" - - # archive_gis really sucks a lot, but it's only relevant for the - # USE=extraengines case - case ${PV} in - 5.0.42) - mysql_disable_test "archive_gis" "Totally broken in 5.0.42" - ;; - - 5.0.4[3-9]|5.0.[56]*|5.0.70|5.0.87) - [ "$(tc-endian)" == "big" ] && \ - mysql_disable_test \ - "archive_gis" \ - "Broken in 5.0.43-70 and 5.0.87 on big-endian boxes only" - ;; - esac - - # This was a slight testcase breakage when the read_only security issue - # was fixed. - case ${PV} in - 5.0.54|5.0.51*) - mysql_disable_test \ - "read_only" \ - "Broken in 5.0.51-54, output in wrong order" - ;; - esac - - # Ditto to read_only - [ "${PV}" == "5.0.51a" ] && \ - mysql_disable_test \ - "view" \ - "Broken in 5.0.51, output in wrong order" - - # x86-specific, OOM issue with some subselects on low memory servers - [ "${PV}" == "5.0.54" ] && \ - [ "${ARCH/x86}" != "${ARCH}" ] && \ - mysql_disable_test \ - "subselect" \ - "Testcase needs tuning on x86 for oom condition" - - # Broke with the YaSSL security issue that didn't affect Gentoo. - [ "${PV}" == "5.0.56" ] && \ - for t in openssl_1 rpl_openssl rpl_ssl ssl \ - ssl_8k_key ssl_compress ssl_connect ; do \ - mysql_disable_test \ - "$t" \ - "OpenSSL tests broken on 5.0.56" - done - - # New test was broken in first time - # Upstream bug 41066 - # http://bugs.mysql.com/bug.php?id=41066 - [ "${PV}" == "5.0.72" ] && \ - mysql_disable_test \ - "status2" \ - "Broken in 5.0.72, new test is broken, upstream bug #41066" - - # The entire 5.0 series has pre-generated SSL certificates, they have - # mostly expired now. ${S}/mysql-tests/std-data/*.pem - # The certs really SHOULD be generated for the tests, so that they are - # not expiring like this. We cannot do so ourselves as the tests look - # closely as the cert path data, and we do not have the CA key to regen - # ourselves. Alternatively, upstream should generate them with at least - # 50-year validity. - # - # Known expiry points: - # 4.1.*, 5.0.0-5.0.22, 5.1.7: Expires 2013/09/09 - # 5.0.23-5.0.77, 5.1.7-5.1.22?: Expires 2009/01/27 - # 5.0.78-5.0.90, 5.1.??-5.1.42: Expires 2010/01/28 - # - # mysql-test/std_data/untrusted-cacert.pem is MEANT to be - # expired/invalid. - case ${PV} in - 5.0.*|5.1.*|5.4.*|5.5.*) - for t in openssl_1 rpl_openssl rpl.rpl_ssl rpl.rpl_ssl1 ssl ssl_8k_key \ - ssl_compress ssl_connect rpl.rpl_heartbeat_ssl ; do \ - mysql_disable_test \ - "$t" \ - "These OpenSSL tests break due to expired certificates" - done - ;; - esac - - # These are also failing in MySQL 5.1 for now, and are believed to be - # false positives: - # - # main.mysql_comment, main.mysql_upgrade, main.information_schema, - # funcs_1.is_columns_mysql funcs_1.is_tables_mysql funcs_1.is_triggers: - # fails due to USE=-latin1 / utf8 default - # - # main.mysql_client_test: - # segfaults at random under Portage only, suspect resource limits. - # - # main.not_partition: - # Failure reason unknown at this time, must resolve before package.mask - # removal FIXME - case ${PV} in - 5.1.*|5.4.*|5.5.*) - for t in main.mysql_client_test main.mysql_comments \ - main.mysql_upgrade \ - main.information_schema \ - main.not_partition funcs_1.is_columns_mysql \ - funcs_1.is_tables_mysql funcs_1.is_triggers; do - mysql_disable_test "$t" "False positives in Gentoo" - done - ;; - esac - - # New failures in 5.1.50/5.1.51, reported by jmbsvicetto. - # These tests are picking up a 'connect-timeout' config from somewhere, - # which is not valid, and since it does not have 'loose-' in front of - # it, it's causing a failure - case ${PV} in - 5.1.5*|5.4.*|5.5.*|6*) - for t in rpl.rpl_mysql_upgrade main.log_tables_upgrade ; do - mysql_disable_test "$t" \ - "False positives in Gentoo: connect-timeout" - done - ;; - esac - - use profiling && use community \ - || mysql_disable_test main.profiling \ - "Profiling test needs profiling support" - - if [ "${PN}" == "mariadb" ]; then - for t in \ - parts.part_supported_sql_func_ndb \ - parts.partition_auto_increment_ndb ; do - mysql_disable_test $t "ndb not supported in mariadb" - done - fi - - # This fail with XtraDB in place of normal InnoDB - # TODO: test if they are broken with the rest of the Percona patches - if xtradb_patch_available && use xtradb ; then - for t in main.innodb innodb.innodb_bug51378 \ - main.information_schema_db main.mysqlshow \ - main.innodb-autoinc main.innodb_bug21704 \ - main.innodb_bug44369 main.innodb_bug46000 \ - main.index_merge_innodb \ - innodb.innodb innodb.innodb_misc1 innodb.innodb_bug52663 \ - innodb.innodb-autoinc innodb.innodb-autoinc-44030 \ - innodb.innodb_bug21704 innodb.innodb_bug44369 \ - innodb.innodb_bug46000 innodb.innodb_bug48024 \ - innodb.innodb_bug49164 innodb.innodb_bug51920 \ - innodb.innodb_bug54044 \ - ; do - mysql_disable_test $t "tests broken in xtradb" - done - fi - - # bug 332565 - if ! use extraengine ; then - for t in main.range ; do - mysql_disable_test $t "Test $t requires USE=extraengine" - done - fi - - # create directories because mysqladmin might make out of order - mkdir -p "${S}"/mysql-test/var-{ps,ns}{,/log} - - # We run the test protocols seperately - emake test-unit - retstatus_unit=$? - [[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed" - - emake test-ns force="--force --vardir=${S}/mysql-test/var-ns" - retstatus_ns=$? - [[ $retstatus_ns -eq 0 ]] || eerror "test-ns failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - emake test-ps force="--force --vardir=${S}/mysql-test/var-ps" - retstatus_ps=$? - [[ $retstatus_ps -eq 0 ]] || eerror "test-ps failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - # TODO: - # When upstream enables the pr and nr testsuites, we need those as well. - - # Cleanup is important for these testcases. - pkill -9 -f "${S}/ndb" 2>/dev/null - pkill -9 -f "${S}/sql" 2>/dev/null - failures="" - [[ $retstatus_unit -eq 0 ]] || failures="${failures} test-unit" - [[ $retstatus_ns -eq 0 ]] || failures="${failures} test-ns" - [[ $retstatus_ps -eq 0 ]] || failures="${failures} test-ps" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - [[ -z "$failures" ]] || die "Test failures: $failures" - einfo "Tests successfully completed" - else - einfo "Skipping server tests due to minimal build." - fi -} diff --git a/dev-db/mysql/mysql-5.1.56.ebuild b/dev-db/mysql/mysql-5.1.56.ebuild deleted file mode 100644 index 584d31e367f8..000000000000 --- a/dev-db/mysql/mysql-5.1.56.ebuild +++ /dev/null @@ -1,261 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.1.56.ebuild,v 1.9 2012/01/08 23:40:20 jmbsvicetto Exp $ - -EAPI="4" - -MY_EXTRAS_VER="20110426-1046Z" -# PBXT -PBXT_VERSION='1.0.11-6-pre-ga' -# XtraDB -PERCONA_VER='5.1.45-10' XTRADB_VER='1.0.6-10' - -# Build type -BUILD="autotools" - -inherit toolchain-funcs mysql - -# only to make repoman happy. it is really set in the eclass -IUSE="$IUSE" - -# REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x64-macos ~x86-solaris" - -# When MY_EXTRAS is bumped, the index should be revised to exclude these. -# This is often broken still -EPATCH_EXCLUDE='' - -# Most of these are in the eclass -DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) - >=sys-devel/libtool-2.2.10" -RDEPEND="${RDEPEND}" - -# Please do not add a naive src_unpack to this ebuild -# If you want to add a single patch, copy the ebuild to an overlay -# and create your own mysql-extras tarball, looking at 000_index.txt -src_prepare() { - sed -i \ - -e '/^noinst_PROGRAMS/s/basic-t//g' \ - "${S}"/unittest/mytap/t/Makefile.am - mysql_src_prepare -} - -# Official test instructions: -# USE='berkdb -cluster embedded extraengine perl ssl community' \ -# FEATURES='test userpriv -usersandbox' \ -# ebuild mysql-X.X.XX.ebuild \ -# digest clean package -src_test() { - # Bug #213475 - MySQL _will_ object strenously if your machine is named - # localhost. Also causes weird failures. - [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" - - emake check || die "make check failed" - if ! use "minimal" ; then - if [[ $UID -eq 0 ]]; then - die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." - fi - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - cd "${S}" - einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" - local retstatus_unit - local retstatus_ns - local retstatus_ps - local t - addpredict /this-dir-does-not-exist/t9.MYI - - # Ensure that parallel runs don't die - export MTR_BUILD_THREAD="$((${RANDOM} % 100))" - - # archive_gis really sucks a lot, but it's only relevant for the - # USE=extraengines case - case ${PV} in - 5.0.42) - mysql_disable_test "archive_gis" "Totally broken in 5.0.42" - ;; - - 5.0.4[3-9]|5.0.[56]*|5.0.70|5.0.87) - [ "$(tc-endian)" == "big" ] && \ - mysql_disable_test \ - "archive_gis" \ - "Broken in 5.0.43-70 and 5.0.87 on big-endian boxes only" - ;; - esac - - # This was a slight testcase breakage when the read_only security issue - # was fixed. - case ${PV} in - 5.0.54|5.0.51*) - mysql_disable_test \ - "read_only" \ - "Broken in 5.0.51-54, output in wrong order" - ;; - esac - - # Ditto to read_only - [ "${PV}" == "5.0.51a" ] && \ - mysql_disable_test \ - "view" \ - "Broken in 5.0.51, output in wrong order" - - # x86-specific, OOM issue with some subselects on low memory servers - [ "${PV}" == "5.0.54" ] && \ - [ "${ARCH/x86}" != "${ARCH}" ] && \ - mysql_disable_test \ - "subselect" \ - "Testcase needs tuning on x86 for oom condition" - - # Broke with the YaSSL security issue that didn't affect Gentoo. - [ "${PV}" == "5.0.56" ] && \ - for t in openssl_1 rpl_openssl rpl_ssl ssl \ - ssl_8k_key ssl_compress ssl_connect ; do \ - mysql_disable_test \ - "$t" \ - "OpenSSL tests broken on 5.0.56" - done - - # New test was broken in first time - # Upstream bug 41066 - # http://bugs.mysql.com/bug.php?id=41066 - [ "${PV}" == "5.0.72" ] && \ - mysql_disable_test \ - "status2" \ - "Broken in 5.0.72, new test is broken, upstream bug #41066" - - # The entire 5.0 series has pre-generated SSL certificates, they have - # mostly expired now. ${S}/mysql-tests/std-data/*.pem - # The certs really SHOULD be generated for the tests, so that they are - # not expiring like this. We cannot do so ourselves as the tests look - # closely as the cert path data, and we do not have the CA key to regen - # ourselves. Alternatively, upstream should generate them with at least - # 50-year validity. - # - # Known expiry points: - # 4.1.*, 5.0.0-5.0.22, 5.1.7: Expires 2013/09/09 - # 5.0.23-5.0.77, 5.1.7-5.1.22?: Expires 2009/01/27 - # 5.0.78-5.0.90, 5.1.??-5.1.42: Expires 2010/01/28 - # - # mysql-test/std_data/untrusted-cacert.pem is MEANT to be - # expired/invalid. - case ${PV} in - 5.0.*|5.1.*|5.4.*|5.5.*) - for t in openssl_1 rpl_openssl rpl.rpl_ssl rpl.rpl_ssl1 ssl ssl_8k_key \ - ssl_compress ssl_connect rpl.rpl_heartbeat_ssl ; do \ - mysql_disable_test \ - "$t" \ - "These OpenSSL tests break due to expired certificates" - done - ;; - esac - - # These are also failing in MySQL 5.1 for now, and are believed to be - # false positives: - # - # main.mysql_comment, main.mysql_upgrade, main.information_schema, - # funcs_1.is_columns_mysql funcs_1.is_tables_mysql funcs_1.is_triggers: - # fails due to USE=-latin1 / utf8 default - # - # main.mysql_client_test: - # segfaults at random under Portage only, suspect resource limits. - # - # main.not_partition: - # Failure reason unknown at this time, must resolve before package.mask - # removal FIXME - case ${PV} in - 5.1.*|5.4.*|5.5.*) - for t in main.mysql_client_test main.mysql_comments \ - main.mysql_upgrade \ - main.information_schema \ - main.not_partition funcs_1.is_columns_mysql \ - funcs_1.is_tables_mysql funcs_1.is_triggers; do - mysql_disable_test "$t" "False positives in Gentoo" - done - ;; - esac - - # New failures in 5.1.50/5.1.51, reported by jmbsvicetto. - # These tests are picking up a 'connect-timeout' config from somewhere, - # which is not valid, and since it does not have 'loose-' in front of - # it, it's causing a failure - case ${PV} in - 5.1.5*|5.4.*|5.5.*|6*) - for t in rpl.rpl_mysql_upgrade main.log_tables_upgrade ; do - mysql_disable_test "$t" \ - "False positives in Gentoo: connect-timeout" - done - ;; - esac - - use profiling && use community \ - || mysql_disable_test main.profiling \ - "Profiling test needs profiling support" - - if [ "${PN}" == "mariadb" ]; then - for t in \ - parts.part_supported_sql_func_ndb \ - parts.partition_auto_increment_ndb ; do - mysql_disable_test $t "ndb not supported in mariadb" - done - fi - - # This fail with XtraDB in place of normal InnoDB - # TODO: test if they are broken with the rest of the Percona patches - if xtradb_patch_available && use xtradb ; then - for t in main.innodb innodb.innodb_bug51378 \ - main.information_schema_db main.mysqlshow \ - main.innodb-autoinc main.innodb_bug21704 \ - main.innodb_bug44369 main.innodb_bug46000 \ - main.index_merge_innodb \ - innodb.innodb innodb.innodb_misc1 innodb.innodb_bug52663 \ - innodb.innodb-autoinc innodb.innodb-autoinc-44030 \ - innodb.innodb_bug21704 innodb.innodb_bug44369 \ - innodb.innodb_bug46000 innodb.innodb_bug48024 \ - innodb.innodb_bug49164 innodb.innodb_bug51920 \ - innodb.innodb_bug54044 \ - ; do - mysql_disable_test $t "tests broken in xtradb" - done - fi - - # bug 332565 - if ! use extraengine ; then - for t in main.range ; do - mysql_disable_test $t "Test $t requires USE=extraengine" - done - fi - - # create directories because mysqladmin might make out of order - mkdir -p "${S}"/mysql-test/var-{ps,ns}{,/log} - - # We run the test protocols seperately - emake test-unit - retstatus_unit=$? - [[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed" - - emake test-ns force="--force --vardir=${S}/mysql-test/var-ns" - retstatus_ns=$? - [[ $retstatus_ns -eq 0 ]] || eerror "test-ns failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - emake test-ps force="--force --vardir=${S}/mysql-test/var-ps" - retstatus_ps=$? - [[ $retstatus_ps -eq 0 ]] || eerror "test-ps failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - # TODO: - # When upstream enables the pr and nr testsuites, we need those as well. - - # Cleanup is important for these testcases. - pkill -9 -f "${S}/ndb" 2>/dev/null - pkill -9 -f "${S}/sql" 2>/dev/null - failures="" - [[ $retstatus_unit -eq 0 ]] || failures="${failures} test-unit" - [[ $retstatus_ns -eq 0 ]] || failures="${failures} test-ns" - [[ $retstatus_ps -eq 0 ]] || failures="${failures} test-ps" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - [[ -z "$failures" ]] || die "Test failures: $failures" - einfo "Tests successfully completed" - else - einfo "Skipping server tests due to minimal build." - fi -} diff --git a/dev-db/mysql/mysql-5.1.57.ebuild b/dev-db/mysql/mysql-5.1.57.ebuild deleted file mode 100644 index c75e1969c5ff..000000000000 --- a/dev-db/mysql/mysql-5.1.57.ebuild +++ /dev/null @@ -1,261 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.1.57.ebuild,v 1.2 2012/01/06 21:28:19 jmbsvicetto Exp $ - -EAPI="4" - -MY_EXTRAS_VER="20110713-0702Z" -# PBXT -PBXT_VERSION='1.0.11-6-pre-ga' -# XtraDB -PERCONA_VER='5.1.45-10' XTRADB_VER='1.0.6-10' - -# Build type -BUILD="autotools" - -inherit toolchain-funcs mysql-v2 - -# only to make repoman happy. it is really set in the eclass -IUSE="$IUSE" - -# REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x64-macos ~x86-solaris" - -# When MY_EXTRAS is bumped, the index should be revised to exclude these. -# This is often broken still -EPATCH_EXCLUDE='' - -# Most of these are in the eclass -DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) - >=sys-devel/libtool-2.2.10" -RDEPEND="${RDEPEND}" - -# Please do not add a naive src_unpack to this ebuild -# If you want to add a single patch, copy the ebuild to an overlay -# and create your own mysql-extras tarball, looking at 000_index.txt -src_prepare() { - sed -i \ - -e '/^noinst_PROGRAMS/s/basic-t//g' \ - "${S}"/unittest/mytap/t/Makefile.am - mysql_src_prepare -} - -# Official test instructions: -# USE='berkdb -cluster embedded extraengine perl ssl community' \ -# FEATURES='test userpriv -usersandbox' \ -# ebuild mysql-X.X.XX.ebuild \ -# digest clean package -src_test() { - # Bug #213475 - MySQL _will_ object strenously if your machine is named - # localhost. Also causes weird failures. - [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" - - emake check || die "make check failed" - if ! use "minimal" ; then - if [[ $UID -eq 0 ]]; then - die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." - fi - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - cd "${S}" - einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" - local retstatus_unit - local retstatus_ns - local retstatus_ps - local t - addpredict /this-dir-does-not-exist/t9.MYI - - # Ensure that parallel runs don't die - export MTR_BUILD_THREAD="$((${RANDOM} % 100))" - - # archive_gis really sucks a lot, but it's only relevant for the - # USE=extraengines case - case ${PV} in - 5.0.42) - mysql-v2_disable_test "archive_gis" "Totally broken in 5.0.42" - ;; - - 5.0.4[3-9]|5.0.[56]*|5.0.70|5.0.87) - [ "$(tc-endian)" == "big" ] && \ - mysql-v2_disable_test \ - "archive_gis" \ - "Broken in 5.0.43-70 and 5.0.87 on big-endian boxes only" - ;; - esac - - # This was a slight testcase breakage when the read_only security issue - # was fixed. - case ${PV} in - 5.0.54|5.0.51*) - mysql-v2_disable_test \ - "read_only" \ - "Broken in 5.0.51-54, output in wrong order" - ;; - esac - - # Ditto to read_only - [ "${PV}" == "5.0.51a" ] && \ - mysql-v2_disable_test \ - "view" \ - "Broken in 5.0.51, output in wrong order" - - # x86-specific, OOM issue with some subselects on low memory servers - [ "${PV}" == "5.0.54" ] && \ - [ "${ARCH/x86}" != "${ARCH}" ] && \ - mysql-v2_disable_test \ - "subselect" \ - "Testcase needs tuning on x86 for oom condition" - - # Broke with the YaSSL security issue that didn't affect Gentoo. - [ "${PV}" == "5.0.56" ] && \ - for t in openssl_1 rpl_openssl rpl_ssl ssl \ - ssl_8k_key ssl_compress ssl_connect ; do \ - mysql-v2_disable_test \ - "$t" \ - "OpenSSL tests broken on 5.0.56" - done - - # New test was broken in first time - # Upstream bug 41066 - # http://bugs.mysql.com/bug.php?id=41066 - [ "${PV}" == "5.0.72" ] && \ - mysql-v2_disable_test \ - "status2" \ - "Broken in 5.0.72, new test is broken, upstream bug #41066" - - # The entire 5.0 series has pre-generated SSL certificates, they have - # mostly expired now. ${S}/mysql-tests/std-data/*.pem - # The certs really SHOULD be generated for the tests, so that they are - # not expiring like this. We cannot do so ourselves as the tests look - # closely as the cert path data, and we do not have the CA key to regen - # ourselves. Alternatively, upstream should generate them with at least - # 50-year validity. - # - # Known expiry points: - # 4.1.*, 5.0.0-5.0.22, 5.1.7: Expires 2013/09/09 - # 5.0.23-5.0.77, 5.1.7-5.1.22?: Expires 2009/01/27 - # 5.0.78-5.0.90, 5.1.??-5.1.42: Expires 2010/01/28 - # - # mysql-test/std_data/untrusted-cacert.pem is MEANT to be - # expired/invalid. - case ${PV} in - 5.0.*|5.1.*|5.4.*|5.5.*) - for t in openssl_1 rpl_openssl rpl.rpl_ssl rpl.rpl_ssl1 ssl ssl_8k_key \ - ssl_compress ssl_connect rpl.rpl_heartbeat_ssl ; do \ - mysql-v2_disable_test \ - "$t" \ - "These OpenSSL tests break due to expired certificates" - done - ;; - esac - - # These are also failing in MySQL 5.1 for now, and are believed to be - # false positives: - # - # main.mysql_comment, main.mysql_upgrade, main.information_schema, - # funcs_1.is_columns_mysql funcs_1.is_tables_mysql funcs_1.is_triggers: - # fails due to USE=-latin1 / utf8 default - # - # main.mysql_client_test: - # segfaults at random under Portage only, suspect resource limits. - # - # main.not_partition: - # Failure reason unknown at this time, must resolve before package.mask - # removal FIXME - case ${PV} in - 5.1.*|5.4.*|5.5.*) - for t in main.mysql_client_test main.mysql_comments \ - main.mysql_upgrade \ - main.information_schema \ - main.not_partition funcs_1.is_columns_mysql \ - funcs_1.is_tables_mysql funcs_1.is_triggers; do - mysql-v2_disable_test "$t" "False positives in Gentoo" - done - ;; - esac - - # New failures in 5.1.50/5.1.51, reported by jmbsvicetto. - # These tests are picking up a 'connect-timeout' config from somewhere, - # which is not valid, and since it does not have 'loose-' in front of - # it, it's causing a failure - case ${PV} in - 5.1.5*|5.4.*|5.5.*|6*) - for t in rpl.rpl_mysql_upgrade main.log_tables_upgrade ; do - mysql-v2_disable_test "$t" \ - "False positives in Gentoo: connect-timeout" - done - ;; - esac - - use profiling && use community \ - || mysql-v2_disable_test main.profiling \ - "Profiling test needs profiling support" - - if [ "${PN}" == "mariadb" ]; then - for t in \ - parts.part_supported_sql_func_ndb \ - parts.partition_auto_increment_ndb ; do - mysql-v2_disable_test $t "ndb not supported in mariadb" - done - fi - - # This fail with XtraDB in place of normal InnoDB - # TODO: test if they are broken with the rest of the Percona patches - if xtradb_patch_available && use xtradb ; then - for t in main.innodb innodb.innodb_bug51378 \ - main.information_schema_db main.mysqlshow \ - main.innodb-autoinc main.innodb_bug21704 \ - main.innodb_bug44369 main.innodb_bug46000 \ - main.index_merge_innodb \ - innodb.innodb innodb.innodb_misc1 innodb.innodb_bug52663 \ - innodb.innodb-autoinc innodb.innodb-autoinc-44030 \ - innodb.innodb_bug21704 innodb.innodb_bug44369 \ - innodb.innodb_bug46000 innodb.innodb_bug48024 \ - innodb.innodb_bug49164 innodb.innodb_bug51920 \ - innodb.innodb_bug54044 \ - ; do - mysql-v2_disable_test $t "tests broken in xtradb" - done - fi - - # bug 332565 - if ! use extraengine ; then - for t in main.range ; do - mysql-v2_disable_test $t "Test $t requires USE=extraengine" - done - fi - - # create directories because mysqladmin might make out of order - mkdir -p "${S}"/mysql-test/var-{ps,ns}{,/log} - - # We run the test protocols seperately - emake test-unit - retstatus_unit=$? - [[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed" - - emake test-ns force="--force --vardir=${S}/mysql-test/var-ns" - retstatus_ns=$? - [[ $retstatus_ns -eq 0 ]] || eerror "test-ns failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - emake test-ps force="--force --vardir=${S}/mysql-test/var-ps" - retstatus_ps=$? - [[ $retstatus_ps -eq 0 ]] || eerror "test-ps failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - # TODO: - # When upstream enables the pr and nr testsuites, we need those as well. - - # Cleanup is important for these testcases. - pkill -9 -f "${S}/ndb" 2>/dev/null - pkill -9 -f "${S}/sql" 2>/dev/null - failures="" - [[ $retstatus_unit -eq 0 ]] || failures="${failures} test-unit" - [[ $retstatus_ns -eq 0 ]] || failures="${failures} test-ns" - [[ $retstatus_ps -eq 0 ]] || failures="${failures} test-ps" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - [[ -z "$failures" ]] || die "Test failures: $failures" - einfo "Tests successfully completed" - else - einfo "Skipping server tests due to minimal build." - fi -} diff --git a/dev-db/mysql/mysql-5.1.58-r1.ebuild b/dev-db/mysql/mysql-5.1.58-r1.ebuild deleted file mode 100644 index 9210de587ce8..000000000000 --- a/dev-db/mysql/mysql-5.1.58-r1.ebuild +++ /dev/null @@ -1,261 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.1.58-r1.ebuild,v 1.2 2012/01/06 21:28:19 jmbsvicetto Exp $ - -EAPI="4" - -MY_EXTRAS_VER="20110721-0450Z" -# PBXT -PBXT_VERSION='1.0.11-6-pre-ga' -# XtraDB -PERCONA_VER='5.1.45-10' XTRADB_VER='1.0.6-10' - -# Build type -BUILD="autotools" - -inherit toolchain-funcs mysql-v2 - -# only to make repoman happy. it is really set in the eclass -IUSE="$IUSE" - -# REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x64-macos ~x86-solaris" - -# When MY_EXTRAS is bumped, the index should be revised to exclude these. -# This is often broken still -EPATCH_EXCLUDE='' - -# Most of these are in the eclass -DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) - >=sys-devel/libtool-2.2.10" -RDEPEND="${RDEPEND}" - -# Please do not add a naive src_unpack to this ebuild -# If you want to add a single patch, copy the ebuild to an overlay -# and create your own mysql-extras tarball, looking at 000_index.txt -src_prepare() { - sed -i \ - -e '/^noinst_PROGRAMS/s/basic-t//g' \ - "${S}"/unittest/mytap/t/Makefile.am - mysql-v2_src_prepare -} - -# Official test instructions: -# USE='berkdb -cluster embedded extraengine perl ssl community' \ -# FEATURES='test userpriv -usersandbox' \ -# ebuild mysql-X.X.XX.ebuild \ -# digest clean package -src_test() { - # Bug #213475 - MySQL _will_ object strenously if your machine is named - # localhost. Also causes weird failures. - [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" - - emake check || die "make check failed" - if ! use "minimal" ; then - if [[ $UID -eq 0 ]]; then - die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." - fi - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - cd "${S}" - einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" - local retstatus_unit - local retstatus_ns - local retstatus_ps - local t - addpredict /this-dir-does-not-exist/t9.MYI - - # Ensure that parallel runs don't die - export MTR_BUILD_THREAD="$((${RANDOM} % 100))" - - # archive_gis really sucks a lot, but it's only relevant for the - # USE=extraengines case - case ${PV} in - 5.0.42) - mysql-v2_disable_test "archive_gis" "Totally broken in 5.0.42" - ;; - - 5.0.4[3-9]|5.0.[56]*|5.0.70|5.0.87) - [ "$(tc-endian)" == "big" ] && \ - mysql-v2_disable_test \ - "archive_gis" \ - "Broken in 5.0.43-70 and 5.0.87 on big-endian boxes only" - ;; - esac - - # This was a slight testcase breakage when the read_only security issue - # was fixed. - case ${PV} in - 5.0.54|5.0.51*) - mysql-v2_disable_test \ - "read_only" \ - "Broken in 5.0.51-54, output in wrong order" - ;; - esac - - # Ditto to read_only - [ "${PV}" == "5.0.51a" ] && \ - mysql-v2_disable_test \ - "view" \ - "Broken in 5.0.51, output in wrong order" - - # x86-specific, OOM issue with some subselects on low memory servers - [ "${PV}" == "5.0.54" ] && \ - [ "${ARCH/x86}" != "${ARCH}" ] && \ - mysql-v2_disable_test \ - "subselect" \ - "Testcase needs tuning on x86 for oom condition" - - # Broke with the YaSSL security issue that didn't affect Gentoo. - [ "${PV}" == "5.0.56" ] && \ - for t in openssl_1 rpl_openssl rpl_ssl ssl \ - ssl_8k_key ssl_compress ssl_connect ; do \ - mysql-v2_disable_test \ - "$t" \ - "OpenSSL tests broken on 5.0.56" - done - - # New test was broken in first time - # Upstream bug 41066 - # http://bugs.mysql.com/bug.php?id=41066 - [ "${PV}" == "5.0.72" ] && \ - mysql-v2_disable_test \ - "status2" \ - "Broken in 5.0.72, new test is broken, upstream bug #41066" - - # The entire 5.0 series has pre-generated SSL certificates, they have - # mostly expired now. ${S}/mysql-tests/std-data/*.pem - # The certs really SHOULD be generated for the tests, so that they are - # not expiring like this. We cannot do so ourselves as the tests look - # closely as the cert path data, and we do not have the CA key to regen - # ourselves. Alternatively, upstream should generate them with at least - # 50-year validity. - # - # Known expiry points: - # 4.1.*, 5.0.0-5.0.22, 5.1.7: Expires 2013/09/09 - # 5.0.23-5.0.77, 5.1.7-5.1.22?: Expires 2009/01/27 - # 5.0.78-5.0.90, 5.1.??-5.1.42: Expires 2010/01/28 - # - # mysql-test/std_data/untrusted-cacert.pem is MEANT to be - # expired/invalid. - case ${PV} in - 5.0.*|5.1.*|5.4.*|5.5.*) - for t in openssl_1 rpl_openssl rpl.rpl_ssl rpl.rpl_ssl1 ssl ssl_8k_key \ - ssl_compress ssl_connect rpl.rpl_heartbeat_ssl ; do \ - mysql-v2_disable_test \ - "$t" \ - "These OpenSSL tests break due to expired certificates" - done - ;; - esac - - # These are also failing in MySQL 5.1 for now, and are believed to be - # false positives: - # - # main.mysql_comment, main.mysql_upgrade, main.information_schema, - # funcs_1.is_columns_mysql funcs_1.is_tables_mysql funcs_1.is_triggers: - # fails due to USE=-latin1 / utf8 default - # - # main.mysql_client_test: - # segfaults at random under Portage only, suspect resource limits. - # - # main.not_partition: - # Failure reason unknown at this time, must resolve before package.mask - # removal FIXME - case ${PV} in - 5.1.*|5.4.*|5.5.*) - for t in main.mysql_client_test main.mysql_comments \ - main.mysql_upgrade \ - main.information_schema \ - main.not_partition funcs_1.is_columns_mysql \ - funcs_1.is_tables_mysql funcs_1.is_triggers; do - mysql-v2_disable_test "$t" "False positives in Gentoo" - done - ;; - esac - - # New failures in 5.1.50/5.1.51, reported by jmbsvicetto. - # These tests are picking up a 'connect-timeout' config from somewhere, - # which is not valid, and since it does not have 'loose-' in front of - # it, it's causing a failure - case ${PV} in - 5.1.5*|5.4.*|5.5.*|6*) - for t in rpl.rpl_mysql_upgrade main.log_tables_upgrade ; do - mysql-v2_disable_test "$t" \ - "False positives in Gentoo: connect-timeout" - done - ;; - esac - - use profiling && use community \ - || mysql-v2_disable_test main.profiling \ - "Profiling test needs profiling support" - - if [ "${PN}" == "mariadb" ]; then - for t in \ - parts.part_supported_sql_func_ndb \ - parts.partition_auto_increment_ndb ; do - mysql-v2_disable_test $t "ndb not supported in mariadb" - done - fi - - # This fail with XtraDB in place of normal InnoDB - # TODO: test if they are broken with the rest of the Percona patches - if xtradb_patch_available && use xtradb ; then - for t in main.innodb innodb.innodb_bug51378 \ - main.information_schema_db main.mysqlshow \ - main.innodb-autoinc main.innodb_bug21704 \ - main.innodb_bug44369 main.innodb_bug46000 \ - main.index_merge_innodb \ - innodb.innodb innodb.innodb_misc1 innodb.innodb_bug52663 \ - innodb.innodb-autoinc innodb.innodb-autoinc-44030 \ - innodb.innodb_bug21704 innodb.innodb_bug44369 \ - innodb.innodb_bug46000 innodb.innodb_bug48024 \ - innodb.innodb_bug49164 innodb.innodb_bug51920 \ - innodb.innodb_bug54044 \ - ; do - mysql-v2_disable_test $t "tests broken in xtradb" - done - fi - - # bug 332565 - if ! use extraengine ; then - for t in main.range ; do - mysql-v2_disable_test $t "Test $t requires USE=extraengine" - done - fi - - # create directories because mysqladmin might make out of order - mkdir -p "${S}"/mysql-test/var-{ps,ns}{,/log} - - # We run the test protocols seperately - emake test-unit - retstatus_unit=$? - [[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed" - - emake test-ns force="--force --vardir=${S}/mysql-test/var-ns" - retstatus_ns=$? - [[ $retstatus_ns -eq 0 ]] || eerror "test-ns failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - emake test-ps force="--force --vardir=${S}/mysql-test/var-ps" - retstatus_ps=$? - [[ $retstatus_ps -eq 0 ]] || eerror "test-ps failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - # TODO: - # When upstream enables the pr and nr testsuites, we need those as well. - - # Cleanup is important for these testcases. - pkill -9 -f "${S}/ndb" 2>/dev/null - pkill -9 -f "${S}/sql" 2>/dev/null - failures="" - [[ $retstatus_unit -eq 0 ]] || failures="${failures} test-unit" - [[ $retstatus_ns -eq 0 ]] || failures="${failures} test-ns" - [[ $retstatus_ps -eq 0 ]] || failures="${failures} test-ps" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - [[ -z "$failures" ]] || die "Test failures: $failures" - einfo "Tests successfully completed" - else - einfo "Skipping server tests due to minimal build." - fi -} diff --git a/dev-db/mysql/mysql-5.1.59.ebuild b/dev-db/mysql/mysql-5.1.59.ebuild deleted file mode 100644 index b459637b0605..000000000000 --- a/dev-db/mysql/mysql-5.1.59.ebuild +++ /dev/null @@ -1,261 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.1.59.ebuild,v 1.3 2012/01/06 21:28:19 jmbsvicetto Exp $ - -EAPI="4" - -MY_EXTRAS_VER="20110721-0450Z" -# PBXT -PBXT_VERSION='1.0.11-6-pre-ga' -# XtraDB -PERCONA_VER='5.1.45-10' XTRADB_VER='1.0.6-10' - -# Build type -BUILD="autotools" - -inherit toolchain-funcs mysql-v2 - -# only to make repoman happy. it is really set in the eclass -IUSE="$IUSE" - -# REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-solaris" - -# When MY_EXTRAS is bumped, the index should be revised to exclude these. -# This is often broken still -EPATCH_EXCLUDE='' - -# Most of these are in the eclass -DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) - >=sys-devel/libtool-2.2.10" -RDEPEND="${RDEPEND}" - -# Please do not add a naive src_unpack to this ebuild -# If you want to add a single patch, copy the ebuild to an overlay -# and create your own mysql-extras tarball, looking at 000_index.txt -src_prepare() { - sed -i \ - -e '/^noinst_PROGRAMS/s/basic-t//g' \ - "${S}"/unittest/mytap/t/Makefile.am - mysql-v2_src_prepare -} - -# Official test instructions: -# USE='berkdb -cluster embedded extraengine perl ssl community' \ -# FEATURES='test userpriv -usersandbox' \ -# ebuild mysql-X.X.XX.ebuild \ -# digest clean package -src_test() { - # Bug #213475 - MySQL _will_ object strenously if your machine is named - # localhost. Also causes weird failures. - [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" - - emake check || die "make check failed" - if ! use "minimal" ; then - if [[ $UID -eq 0 ]]; then - die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." - fi - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - cd "${S}" - einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" - local retstatus_unit - local retstatus_ns - local retstatus_ps - local t - addpredict /this-dir-does-not-exist/t9.MYI - - # Ensure that parallel runs don't die - export MTR_BUILD_THREAD="$((${RANDOM} % 100))" - - # archive_gis really sucks a lot, but it's only relevant for the - # USE=extraengines case - case ${PV} in - 5.0.42) - mysql-v2_disable_test "archive_gis" "Totally broken in 5.0.42" - ;; - - 5.0.4[3-9]|5.0.[56]*|5.0.70|5.0.87) - [ "$(tc-endian)" == "big" ] && \ - mysql-v2_disable_test \ - "archive_gis" \ - "Broken in 5.0.43-70 and 5.0.87 on big-endian boxes only" - ;; - esac - - # This was a slight testcase breakage when the read_only security issue - # was fixed. - case ${PV} in - 5.0.54|5.0.51*) - mysql-v2_disable_test \ - "read_only" \ - "Broken in 5.0.51-54, output in wrong order" - ;; - esac - - # Ditto to read_only - [ "${PV}" == "5.0.51a" ] && \ - mysql-v2_disable_test \ - "view" \ - "Broken in 5.0.51, output in wrong order" - - # x86-specific, OOM issue with some subselects on low memory servers - [ "${PV}" == "5.0.54" ] && \ - [ "${ARCH/x86}" != "${ARCH}" ] && \ - mysql-v2_disable_test \ - "subselect" \ - "Testcase needs tuning on x86 for oom condition" - - # Broke with the YaSSL security issue that didn't affect Gentoo. - [ "${PV}" == "5.0.56" ] && \ - for t in openssl_1 rpl_openssl rpl_ssl ssl \ - ssl_8k_key ssl_compress ssl_connect ; do \ - mysql-v2_disable_test \ - "$t" \ - "OpenSSL tests broken on 5.0.56" - done - - # New test was broken in first time - # Upstream bug 41066 - # http://bugs.mysql.com/bug.php?id=41066 - [ "${PV}" == "5.0.72" ] && \ - mysql-v2_disable_test \ - "status2" \ - "Broken in 5.0.72, new test is broken, upstream bug #41066" - - # The entire 5.0 series has pre-generated SSL certificates, they have - # mostly expired now. ${S}/mysql-tests/std-data/*.pem - # The certs really SHOULD be generated for the tests, so that they are - # not expiring like this. We cannot do so ourselves as the tests look - # closely as the cert path data, and we do not have the CA key to regen - # ourselves. Alternatively, upstream should generate them with at least - # 50-year validity. - # - # Known expiry points: - # 4.1.*, 5.0.0-5.0.22, 5.1.7: Expires 2013/09/09 - # 5.0.23-5.0.77, 5.1.7-5.1.22?: Expires 2009/01/27 - # 5.0.78-5.0.90, 5.1.??-5.1.42: Expires 2010/01/28 - # - # mysql-test/std_data/untrusted-cacert.pem is MEANT to be - # expired/invalid. - case ${PV} in - 5.0.*|5.1.*|5.4.*|5.5.*) - for t in openssl_1 rpl_openssl rpl.rpl_ssl rpl.rpl_ssl1 ssl ssl_8k_key \ - ssl_compress ssl_connect rpl.rpl_heartbeat_ssl ; do \ - mysql-v2_disable_test \ - "$t" \ - "These OpenSSL tests break due to expired certificates" - done - ;; - esac - - # These are also failing in MySQL 5.1 for now, and are believed to be - # false positives: - # - # main.mysql_comment, main.mysql_upgrade, main.information_schema, - # funcs_1.is_columns_mysql funcs_1.is_tables_mysql funcs_1.is_triggers: - # fails due to USE=-latin1 / utf8 default - # - # main.mysql_client_test: - # segfaults at random under Portage only, suspect resource limits. - # - # main.not_partition: - # Failure reason unknown at this time, must resolve before package.mask - # removal FIXME - case ${PV} in - 5.1.*|5.4.*|5.5.*) - for t in main.mysql_client_test main.mysql_comments \ - main.mysql_upgrade \ - main.information_schema \ - main.not_partition funcs_1.is_columns_mysql \ - funcs_1.is_tables_mysql funcs_1.is_triggers; do - mysql-v2_disable_test "$t" "False positives in Gentoo" - done - ;; - esac - - # New failures in 5.1.50/5.1.51, reported by jmbsvicetto. - # These tests are picking up a 'connect-timeout' config from somewhere, - # which is not valid, and since it does not have 'loose-' in front of - # it, it's causing a failure - case ${PV} in - 5.1.5*|5.4.*|5.5.*|6*) - for t in rpl.rpl_mysql_upgrade main.log_tables_upgrade ; do - mysql-v2_disable_test "$t" \ - "False positives in Gentoo: connect-timeout" - done - ;; - esac - - use profiling && use community \ - || mysql-v2_disable_test main.profiling \ - "Profiling test needs profiling support" - - if [ "${PN}" == "mariadb" ]; then - for t in \ - parts.part_supported_sql_func_ndb \ - parts.partition_auto_increment_ndb ; do - mysql-v2_disable_test $t "ndb not supported in mariadb" - done - fi - - # This fail with XtraDB in place of normal InnoDB - # TODO: test if they are broken with the rest of the Percona patches - if xtradb_patch_available && use xtradb ; then - for t in main.innodb innodb.innodb_bug51378 \ - main.information_schema_db main.mysqlshow \ - main.innodb-autoinc main.innodb_bug21704 \ - main.innodb_bug44369 main.innodb_bug46000 \ - main.index_merge_innodb \ - innodb.innodb innodb.innodb_misc1 innodb.innodb_bug52663 \ - innodb.innodb-autoinc innodb.innodb-autoinc-44030 \ - innodb.innodb_bug21704 innodb.innodb_bug44369 \ - innodb.innodb_bug46000 innodb.innodb_bug48024 \ - innodb.innodb_bug49164 innodb.innodb_bug51920 \ - innodb.innodb_bug54044 \ - ; do - mysql-v2_disable_test $t "tests broken in xtradb" - done - fi - - # bug 332565 - if ! use extraengine ; then - for t in main.range ; do - mysql-v2_disable_test $t "Test $t requires USE=extraengine" - done - fi - - # create directories because mysqladmin might make out of order - mkdir -p "${S}"/mysql-test/var-{ps,ns}{,/log} - - # We run the test protocols seperately - emake test-unit - retstatus_unit=$? - [[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed" - - emake test-ns force="--force --vardir=${S}/mysql-test/var-ns" - retstatus_ns=$? - [[ $retstatus_ns -eq 0 ]] || eerror "test-ns failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - emake test-ps force="--force --vardir=${S}/mysql-test/var-ps" - retstatus_ps=$? - [[ $retstatus_ps -eq 0 ]] || eerror "test-ps failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - # TODO: - # When upstream enables the pr and nr testsuites, we need those as well. - - # Cleanup is important for these testcases. - pkill -9 -f "${S}/ndb" 2>/dev/null - pkill -9 -f "${S}/sql" 2>/dev/null - failures="" - [[ $retstatus_unit -eq 0 ]] || failures="${failures} test-unit" - [[ $retstatus_ns -eq 0 ]] || failures="${failures} test-ns" - [[ $retstatus_ps -eq 0 ]] || failures="${failures} test-ps" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - [[ -z "$failures" ]] || die "Test failures: $failures" - einfo "Tests successfully completed" - else - einfo "Skipping server tests due to minimal build." - fi -} diff --git a/dev-db/mysql/mysql-5.1.61.ebuild b/dev-db/mysql/mysql-5.1.61.ebuild deleted file mode 100644 index c0fa5c26be35..000000000000 --- a/dev-db/mysql/mysql-5.1.61.ebuild +++ /dev/null @@ -1,265 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.1.61.ebuild,v 1.9 2012/03/03 17:12:21 ranger Exp $ - -EAPI="4" - -MY_EXTRAS_VER="20111118-2347Z" -# PBXT -PBXT_VERSION='1.0.11-6-pre-ga' -# XtraDB -PERCONA_VER='5.1.45-10' XTRADB_VER='1.0.6-10' - -# Build type -BUILD="autotools" - -inherit toolchain-funcs mysql-v2 - -# only to make repoman happy. it is really set in the eclass -IUSE="$IUSE" - -# REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-solaris" - -# When MY_EXTRAS is bumped, the index should be revised to exclude these. -# This is often broken still -EPATCH_EXCLUDE='' - -# Most of these are in the eclass -DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) - >=sys-devel/libtool-2.2.10" -RDEPEND="${RDEPEND}" - -# Please do not add a naive src_unpack to this ebuild -# If you want to add a single patch, copy the ebuild to an overlay -# and create your own mysql-extras tarball, looking at 000_index.txt -src_prepare() { - sed -i \ - -e '/^noinst_PROGRAMS/s/basic-t//g' \ - "${S}"/unittest/mytap/t/Makefile.am - mysql-v2_src_prepare -} - -# Official test instructions: -# USE='berkdb -cluster embedded extraengine perl ssl community' \ -# FEATURES='test userpriv -usersandbox' \ -# ebuild mysql-X.X.XX.ebuild \ -# digest clean package -src_test() { - # Bug #213475 - MySQL _will_ object strenously if your machine is named - # localhost. Also causes weird failures. - [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" - - emake check || die "make check failed" - if ! use "minimal" ; then - if [[ $UID -eq 0 ]]; then - die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." - fi - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - cd "${S}" - einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" - local retstatus_unit - local retstatus_ns - local retstatus_ps - local t - addpredict /this-dir-does-not-exist/t9.MYI - - # Ensure that parallel runs don't die - export MTR_BUILD_THREAD="$((${RANDOM} % 100))" - - # archive_gis really sucks a lot, but it's only relevant for the - # USE=extraengines case - case ${PV} in - 5.0.42) - mysql-v2_disable_test "archive_gis" "Totally broken in 5.0.42" - ;; - - 5.0.4[3-9]|5.0.[56]*|5.0.70|5.0.87) - [ "$(tc-endian)" == "big" ] && \ - mysql-v2_disable_test \ - "archive_gis" \ - "Broken in 5.0.43-70 and 5.0.87 on big-endian boxes only" - ;; - esac - - # This was a slight testcase breakage when the read_only security issue - # was fixed. - case ${PV} in - 5.0.54|5.0.51*) - mysql-v2_disable_test \ - "read_only" \ - "Broken in 5.0.51-54, output in wrong order" - ;; - esac - - # Ditto to read_only - [ "${PV}" == "5.0.51a" ] && \ - mysql-v2_disable_test \ - "view" \ - "Broken in 5.0.51, output in wrong order" - - # x86-specific, OOM issue with some subselects on low memory servers - [ "${PV}" == "5.0.54" ] && \ - [ "${ARCH/x86}" != "${ARCH}" ] && \ - mysql-v2_disable_test \ - "subselect" \ - "Testcase needs tuning on x86 for oom condition" - - # Broke with the YaSSL security issue that didn't affect Gentoo. - [ "${PV}" == "5.0.56" ] && \ - for t in openssl_1 rpl_openssl rpl_ssl ssl \ - ssl_8k_key ssl_compress ssl_connect ; do \ - mysql-v2_disable_test \ - "$t" \ - "OpenSSL tests broken on 5.0.56" - done - - # New test was broken in first time - # Upstream bug 41066 - # http://bugs.mysql.com/bug.php?id=41066 - [ "${PV}" == "5.0.72" ] && \ - mysql-v2_disable_test \ - "status2" \ - "Broken in 5.0.72, new test is broken, upstream bug #41066" - - # The entire 5.0 series has pre-generated SSL certificates, they have - # mostly expired now. ${S}/mysql-tests/std-data/*.pem - # The certs really SHOULD be generated for the tests, so that they are - # not expiring like this. We cannot do so ourselves as the tests look - # closely as the cert path data, and we do not have the CA key to regen - # ourselves. Alternatively, upstream should generate them with at least - # 50-year validity. - # - # Known expiry points: - # 4.1.*, 5.0.0-5.0.22, 5.1.7: Expires 2013/09/09 - # 5.0.23-5.0.77, 5.1.7-5.1.22?: Expires 2009/01/27 - # 5.0.78-5.0.90, 5.1.??-5.1.42: Expires 2010/01/28 - # - # mysql-test/std_data/untrusted-cacert.pem is MEANT to be - # expired/invalid. - case ${PV} in - 5.0.*|5.1.*|5.4.*|5.5.*) - for t in openssl_1 rpl_openssl rpl.rpl_ssl rpl.rpl_ssl1 ssl ssl_8k_key \ - ssl_compress ssl_connect rpl.rpl_heartbeat_ssl ; do \ - mysql-v2_disable_test \ - "$t" \ - "These OpenSSL tests break due to expired certificates" - done - ;; - esac - - # These are also failing in MySQL 5.1 for now, and are believed to be - # false positives: - # - # main.mysql_comment, main.mysql_upgrade, main.information_schema, - # funcs_1.is_columns_mysql funcs_1.is_tables_mysql funcs_1.is_triggers: - # fails due to USE=-latin1 / utf8 default - # - # main.mysql_client_test: - # segfaults at random under Portage only, suspect resource limits. - # - # main.not_partition: - # Failure reason unknown at this time, must resolve before package.mask - # removal FIXME - case ${PV} in - 5.1.*|5.4.*|5.5.*) - for t in main.mysql_client_test main.mysql_comments \ - main.mysql_upgrade \ - main.information_schema \ - main.not_partition funcs_1.is_columns_mysql \ - funcs_1.is_tables_mysql funcs_1.is_triggers; do - mysql-v2_disable_test "$t" "False positives in Gentoo" - done - ;; - esac - - # New failures in 5.1.50/5.1.51, reported by jmbsvicetto. - # These tests are picking up a 'connect-timeout' config from somewhere, - # which is not valid, and since it does not have 'loose-' in front of - # it, it's causing a failure - case ${PV} in - 5.1.5*|5.4.*|5.5.*|6*) - for t in rpl.rpl_mysql_upgrade main.log_tables_upgrade ; do - mysql-v2_disable_test "$t" \ - "False positives in Gentoo: connect-timeout" - done - ;; - esac - - use profiling && use community \ - || mysql-v2_disable_test main.profiling \ - "Profiling test needs profiling support" - - if [ "${PN}" == "mariadb" ]; then - for t in \ - parts.part_supported_sql_func_ndb \ - parts.partition_auto_increment_ndb ; do - mysql-v2_disable_test $t "ndb not supported in mariadb" - done - fi - - # This fail with XtraDB in place of normal InnoDB - # TODO: test if they are broken with the rest of the Percona patches - if xtradb_patch_available && use xtradb ; then - for t in main.innodb innodb.innodb_bug51378 \ - main.information_schema_db main.mysqlshow \ - main.innodb-autoinc main.innodb_bug21704 \ - main.innodb_bug44369 main.innodb_bug46000 \ - main.index_merge_innodb \ - innodb.innodb innodb.innodb_misc1 innodb.innodb_bug52663 \ - innodb.innodb-autoinc innodb.innodb-autoinc-44030 \ - innodb.innodb_bug21704 innodb.innodb_bug44369 \ - innodb.innodb_bug46000 innodb.innodb_bug48024 \ - innodb.innodb_bug49164 innodb.innodb_bug51920 \ - innodb.innodb_bug54044 \ - ; do - mysql-v2_disable_test $t "tests broken in xtradb" - done - fi - - if ! use extraengine ; then - # bug 332565 - for t in main.range ; do - mysql-v2_disable_test $t "Test $t requires USE=extraengine" - done - # bug 401673 - for t in federated.federated_plugin ; do - mysql-v2_disable_test $t "Test $t requires USE=extraengine (Need federated engine)" - done - fi - - # create directories because mysqladmin might make out of order - mkdir -p "${S}"/mysql-test/var-{ps,ns}{,/log} - - # We run the test protocols seperately - emake test-unit - retstatus_unit=$? - [[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed" - - emake test-ns force="--force --vardir=${S}/mysql-test/var-ns" - retstatus_ns=$? - [[ $retstatus_ns -eq 0 ]] || eerror "test-ns failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - emake test-ps force="--force --vardir=${S}/mysql-test/var-ps" - retstatus_ps=$? - [[ $retstatus_ps -eq 0 ]] || eerror "test-ps failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - # TODO: - # When upstream enables the pr and nr testsuites, we need those as well. - - # Cleanup is important for these testcases. - pkill -9 -f "${S}/ndb" 2>/dev/null - pkill -9 -f "${S}/sql" 2>/dev/null - failures="" - [[ $retstatus_unit -eq 0 ]] || failures="${failures} test-unit" - [[ $retstatus_ns -eq 0 ]] || failures="${failures} test-ns" - [[ $retstatus_ps -eq 0 ]] || failures="${failures} test-ps" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - [[ -z "$failures" ]] || die "Test failures: $failures" - einfo "Tests successfully completed" - else - einfo "Skipping server tests due to minimal build." - fi -} diff --git a/dev-db/mysql/mysql-5.1.62-r1.ebuild b/dev-db/mysql/mysql-5.1.62-r1.ebuild deleted file mode 100644 index aec18b7437eb..000000000000 --- a/dev-db/mysql/mysql-5.1.62-r1.ebuild +++ /dev/null @@ -1,265 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.1.62-r1.ebuild,v 1.8 2012/05/26 17:06:45 armin76 Exp $ - -EAPI="4" - -MY_EXTRAS_VER="20120421-2004Z" -# PBXT -PBXT_VERSION='1.0.11-6-pre-ga' -# XtraDB -PERCONA_VER='5.1.45-10' XTRADB_VER='1.0.6-10' - -# Build type -BUILD="autotools" - -inherit toolchain-funcs mysql-v2 - -# only to make repoman happy. it is really set in the eclass -IUSE="$IUSE" - -# REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-solaris" - -# When MY_EXTRAS is bumped, the index should be revised to exclude these. -# This is often broken still -EPATCH_EXCLUDE='' - -# Most of these are in the eclass -DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) - >=sys-devel/libtool-2.2.10" -RDEPEND="${RDEPEND}" - -# Please do not add a naive src_unpack to this ebuild -# If you want to add a single patch, copy the ebuild to an overlay -# and create your own mysql-extras tarball, looking at 000_index.txt -src_prepare() { - sed -i \ - -e '/^noinst_PROGRAMS/s/basic-t//g' \ - "${S}"/unittest/mytap/t/Makefile.am - mysql-v2_src_prepare -} - -# Official test instructions: -# USE='berkdb -cluster embedded extraengine perl ssl community' \ -# FEATURES='test userpriv -usersandbox' \ -# ebuild mysql-X.X.XX.ebuild \ -# digest clean package -src_test() { - # Bug #213475 - MySQL _will_ object strenously if your machine is named - # localhost. Also causes weird failures. - [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" - - emake check || die "make check failed" - if ! use "minimal" ; then - if [[ $UID -eq 0 ]]; then - die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." - fi - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - cd "${S}" - einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" - local retstatus_unit - local retstatus_ns - local retstatus_ps - local t - addpredict /this-dir-does-not-exist/t9.MYI - - # Ensure that parallel runs don't die - export MTR_BUILD_THREAD="$((${RANDOM} % 100))" - - # archive_gis really sucks a lot, but it's only relevant for the - # USE=extraengines case - case ${PV} in - 5.0.42) - mysql-v2_disable_test "archive_gis" "Totally broken in 5.0.42" - ;; - - 5.0.4[3-9]|5.0.[56]*|5.0.70|5.0.87) - [ "$(tc-endian)" == "big" ] && \ - mysql-v2_disable_test \ - "archive_gis" \ - "Broken in 5.0.43-70 and 5.0.87 on big-endian boxes only" - ;; - esac - - # This was a slight testcase breakage when the read_only security issue - # was fixed. - case ${PV} in - 5.0.54|5.0.51*) - mysql-v2_disable_test \ - "read_only" \ - "Broken in 5.0.51-54, output in wrong order" - ;; - esac - - # Ditto to read_only - [ "${PV}" == "5.0.51a" ] && \ - mysql-v2_disable_test \ - "view" \ - "Broken in 5.0.51, output in wrong order" - - # x86-specific, OOM issue with some subselects on low memory servers - [ "${PV}" == "5.0.54" ] && \ - [ "${ARCH/x86}" != "${ARCH}" ] && \ - mysql-v2_disable_test \ - "subselect" \ - "Testcase needs tuning on x86 for oom condition" - - # Broke with the YaSSL security issue that didn't affect Gentoo. - [ "${PV}" == "5.0.56" ] && \ - for t in openssl_1 rpl_openssl rpl_ssl ssl \ - ssl_8k_key ssl_compress ssl_connect ; do \ - mysql-v2_disable_test \ - "$t" \ - "OpenSSL tests broken on 5.0.56" - done - - # New test was broken in first time - # Upstream bug 41066 - # http://bugs.mysql.com/bug.php?id=41066 - [ "${PV}" == "5.0.72" ] && \ - mysql-v2_disable_test \ - "status2" \ - "Broken in 5.0.72, new test is broken, upstream bug #41066" - - # The entire 5.0 series has pre-generated SSL certificates, they have - # mostly expired now. ${S}/mysql-tests/std-data/*.pem - # The certs really SHOULD be generated for the tests, so that they are - # not expiring like this. We cannot do so ourselves as the tests look - # closely as the cert path data, and we do not have the CA key to regen - # ourselves. Alternatively, upstream should generate them with at least - # 50-year validity. - # - # Known expiry points: - # 4.1.*, 5.0.0-5.0.22, 5.1.7: Expires 2013/09/09 - # 5.0.23-5.0.77, 5.1.7-5.1.22?: Expires 2009/01/27 - # 5.0.78-5.0.90, 5.1.??-5.1.42: Expires 2010/01/28 - # - # mysql-test/std_data/untrusted-cacert.pem is MEANT to be - # expired/invalid. - case ${PV} in - 5.0.*|5.1.*|5.4.*|5.5.*) - for t in openssl_1 rpl_openssl rpl.rpl_ssl rpl.rpl_ssl1 ssl ssl_8k_key \ - ssl_compress ssl_connect rpl.rpl_heartbeat_ssl ; do \ - mysql-v2_disable_test \ - "$t" \ - "These OpenSSL tests break due to expired certificates" - done - ;; - esac - - # These are also failing in MySQL 5.1 for now, and are believed to be - # false positives: - # - # main.mysql_comment, main.mysql_upgrade, main.information_schema, - # funcs_1.is_columns_mysql funcs_1.is_tables_mysql funcs_1.is_triggers: - # fails due to USE=-latin1 / utf8 default - # - # main.mysql_client_test: - # segfaults at random under Portage only, suspect resource limits. - # - # main.not_partition: - # Failure reason unknown at this time, must resolve before package.mask - # removal FIXME - case ${PV} in - 5.1.*|5.4.*|5.5.*) - for t in main.mysql_client_test main.mysql_comments \ - main.mysql_upgrade \ - main.information_schema \ - main.not_partition funcs_1.is_columns_mysql \ - funcs_1.is_tables_mysql funcs_1.is_triggers; do - mysql-v2_disable_test "$t" "False positives in Gentoo" - done - ;; - esac - - # New failures in 5.1.50/5.1.51, reported by jmbsvicetto. - # These tests are picking up a 'connect-timeout' config from somewhere, - # which is not valid, and since it does not have 'loose-' in front of - # it, it's causing a failure - case ${PV} in - 5.1.5*|5.4.*|5.5.*|6*) - for t in rpl.rpl_mysql_upgrade main.log_tables_upgrade ; do - mysql-v2_disable_test "$t" \ - "False positives in Gentoo: connect-timeout" - done - ;; - esac - - use profiling && use community \ - || mysql-v2_disable_test main.profiling \ - "Profiling test needs profiling support" - - if [ "${PN}" == "mariadb" ]; then - for t in \ - parts.part_supported_sql_func_ndb \ - parts.partition_auto_increment_ndb ; do - mysql-v2_disable_test $t "ndb not supported in mariadb" - done - fi - - # This fail with XtraDB in place of normal InnoDB - # TODO: test if they are broken with the rest of the Percona patches - if xtradb_patch_available && use xtradb ; then - for t in main.innodb innodb.innodb_bug51378 \ - main.information_schema_db main.mysqlshow \ - main.innodb-autoinc main.innodb_bug21704 \ - main.innodb_bug44369 main.innodb_bug46000 \ - main.index_merge_innodb \ - innodb.innodb innodb.innodb_misc1 innodb.innodb_bug52663 \ - innodb.innodb-autoinc innodb.innodb-autoinc-44030 \ - innodb.innodb_bug21704 innodb.innodb_bug44369 \ - innodb.innodb_bug46000 innodb.innodb_bug48024 \ - innodb.innodb_bug49164 innodb.innodb_bug51920 \ - innodb.innodb_bug54044 \ - ; do - mysql-v2_disable_test $t "tests broken in xtradb" - done - fi - - if ! use extraengine ; then - # bug 332565 - for t in main.range ; do - mysql-v2_disable_test $t "Test $t requires USE=extraengine" - done - # bug 401673 - for t in federated.federated_plugin ; do - mysql-v2_disable_test $t "Test $t requires USE=extraengine (Need federated engine)" - done - fi - - # create directories because mysqladmin might make out of order - mkdir -p "${S}"/mysql-test/var-{ps,ns}{,/log} - - # We run the test protocols seperately - emake test-unit - retstatus_unit=$? - [[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed" - - emake test-ns force="--force --vardir=${S}/mysql-test/var-ns" - retstatus_ns=$? - [[ $retstatus_ns -eq 0 ]] || eerror "test-ns failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - emake test-ps force="--force --vardir=${S}/mysql-test/var-ps" - retstatus_ps=$? - [[ $retstatus_ps -eq 0 ]] || eerror "test-ps failed" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - - # TODO: - # When upstream enables the pr and nr testsuites, we need those as well. - - # Cleanup is important for these testcases. - pkill -9 -f "${S}/ndb" 2>/dev/null - pkill -9 -f "${S}/sql" 2>/dev/null - failures="" - [[ $retstatus_unit -eq 0 ]] || failures="${failures} test-unit" - [[ $retstatus_ns -eq 0 ]] || failures="${failures} test-ns" - [[ $retstatus_ps -eq 0 ]] || failures="${failures} test-ps" - has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" - [[ -z "$failures" ]] || die "Test failures: $failures" - einfo "Tests successfully completed" - else - einfo "Skipping server tests due to minimal build." - fi -} diff --git a/dev-db/mysql/mysql-5.1.62.ebuild b/dev-db/mysql/mysql-5.1.67.ebuild similarity index 96% rename from dev-db/mysql/mysql-5.1.62.ebuild rename to dev-db/mysql/mysql-5.1.67.ebuild index 362ba97b1a06..779d8838e2a7 100644 --- a/dev-db/mysql/mysql-5.1.62.ebuild +++ b/dev-db/mysql/mysql-5.1.67.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-db/mysql/mysql-5.1.62.ebuild,v 1.2 2012/05/09 17:11:55 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.1.67.ebuild,v 1.2 2013/01/20 17:17:29 ago Exp $ EAPI="4" -MY_EXTRAS_VER="20120401-2131Z" +MY_EXTRAS_VER="20121101-2319Z" # PBXT PBXT_VERSION='1.0.11-6-pre-ga' # XtraDB @@ -19,7 +19,7 @@ inherit toolchain-funcs mysql-v2 IUSE="$IUSE" # REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-solaris" +KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-solaris" # When MY_EXTRAS is bumped, the index should be revised to exclude these. # This is often broken still diff --git a/dev-db/mysql/mysql-5.5.19.ebuild b/dev-db/mysql/mysql-5.5.19.ebuild index fa982cea70f2..a67be5d65162 100644 --- a/dev-db/mysql/mysql-5.5.19.ebuild +++ b/dev-db/mysql/mysql-5.5.19.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-db/mysql/mysql-5.5.19.ebuild,v 1.2 2012/01/06 21:28:19 jmbsvicetto Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.5.19.ebuild,v 1.3 2013/01/20 01:00:58 robbat2 Exp $ EAPI="4" @@ -65,7 +65,7 @@ src_test() { export MTR_BUILD_THREAD="$((${RANDOM} % 100))" # create directories because mysqladmin might right out of order - mkdir -p "${S}"/mysql-test/var-{tests}{,/log} + mkdir -p "${S}"/mysql-test/var-tests{,/log} # These are failing in MySQL 5.5 for now and are believed to be # false positives: diff --git a/dev-db/mysql/mysql-5.5.20.ebuild b/dev-db/mysql/mysql-5.5.20.ebuild index a9f2d5d90765..664355a701ab 100644 --- a/dev-db/mysql/mysql-5.5.20.ebuild +++ b/dev-db/mysql/mysql-5.5.20.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-db/mysql/mysql-5.5.20.ebuild,v 1.1 2012/01/31 09:33:11 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.5.20.ebuild,v 1.2 2013/01/20 01:00:58 robbat2 Exp $ EAPI="4" @@ -65,7 +65,7 @@ src_test() { export MTR_BUILD_THREAD="$((${RANDOM} % 100))" # create directories because mysqladmin might right out of order - mkdir -p "${S}"/mysql-test/var-{tests}{,/log} + mkdir -p "${S}"/mysql-test/var-tests{,/log} # These are failing in MySQL 5.5 for now and are believed to be # false positives: diff --git a/dev-db/mysql/mysql-5.5.21.ebuild b/dev-db/mysql/mysql-5.5.21.ebuild index 89f04579bc5b..d33ad2a0a2f6 100644 --- a/dev-db/mysql/mysql-5.5.21.ebuild +++ b/dev-db/mysql/mysql-5.5.21.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-db/mysql/mysql-5.5.21.ebuild,v 1.1 2012/02/21 08:55:34 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.5.21.ebuild,v 1.2 2013/01/20 01:00:58 robbat2 Exp $ EAPI="4" @@ -65,7 +65,7 @@ src_test() { export MTR_BUILD_THREAD="$((${RANDOM} % 100))" # create directories because mysqladmin might right out of order - mkdir -p "${S}"/mysql-test/var-{tests}{,/log} + mkdir -p "${S}"/mysql-test/var-tests{,/log} # These are failing in MySQL 5.5 for now and are believed to be # false positives: diff --git a/dev-db/mysql/mysql-5.5.22-r1.ebuild b/dev-db/mysql/mysql-5.5.22-r1.ebuild index 30382e96a041..ac28f8b32126 100644 --- a/dev-db/mysql/mysql-5.5.22-r1.ebuild +++ b/dev-db/mysql/mysql-5.5.22-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/dev-db/mysql/mysql-5.5.22-r1.ebuild,v 1.1 2012/04/21 20:25:04 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.5.22-r1.ebuild,v 1.2 2013/01/20 01:00:58 robbat2 Exp $ EAPI="4" @@ -65,7 +65,7 @@ src_test() { export MTR_BUILD_THREAD="$((${RANDOM} % 100))" # create directories because mysqladmin might right out of order - mkdir -p "${S}"/mysql-test/var-{tests}{,/log} + mkdir -p "${S}"/mysql-test/var-tests{,/log} # These are failing in MySQL 5.5 for now and are believed to be # false positives: diff --git a/dev-db/mysql/mysql-5.5.22.ebuild b/dev-db/mysql/mysql-5.5.22.ebuild index e0d09d5d2d17..275fa401c685 100644 --- a/dev-db/mysql/mysql-5.5.22.ebuild +++ b/dev-db/mysql/mysql-5.5.22.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-db/mysql/mysql-5.5.22.ebuild,v 1.1 2012/04/02 00:39:27 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.5.22.ebuild,v 1.2 2013/01/20 01:00:58 robbat2 Exp $ EAPI="4" @@ -65,7 +65,7 @@ src_test() { export MTR_BUILD_THREAD="$((${RANDOM} % 100))" # create directories because mysqladmin might right out of order - mkdir -p "${S}"/mysql-test/var-{tests}{,/log} + mkdir -p "${S}"/mysql-test/var-tests{,/log} # These are failing in MySQL 5.5 for now and are believed to be # false positives: diff --git a/dev-db/mysql/mysql-5.5.28.ebuild b/dev-db/mysql/mysql-5.5.28.ebuild index 5bc35cd8b9a0..0e4b4b73833b 100644 --- a/dev-db/mysql/mysql-5.5.28.ebuild +++ b/dev-db/mysql/mysql-5.5.28.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-db/mysql/mysql-5.5.28.ebuild,v 1.2 2012/12/05 11:23:26 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.5.28.ebuild,v 1.3 2013/01/20 01:00:58 robbat2 Exp $ EAPI="4" @@ -65,7 +65,7 @@ src_test() { export MTR_BUILD_THREAD="$((${RANDOM} % 100))" # create directories because mysqladmin might right out of order - mkdir -p "${S}"/mysql-test/var-{tests}{,/log} + mkdir -p "${S}"/mysql-test/var-tests{,/log} # These are failing in MySQL 5.5 for now and are believed to be # false positives: diff --git a/dev-db/mysql/mysql-5.5.29.ebuild b/dev-db/mysql/mysql-5.5.29.ebuild new file mode 100644 index 000000000000..485881c53294 --- /dev/null +++ b/dev-db/mysql/mysql-5.5.29.ebuild @@ -0,0 +1,129 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.5.29.ebuild,v 1.1 2013/01/20 02:18:30 robbat2 Exp $ + +EAPI="4" + +MY_EXTRAS_VER="20130120-0100Z" +MY_PV="${PV//_alpha_pre/-m}" +MY_PV="${MY_PV//_/-}" + +# Build type +BUILD="cmake" + +inherit toolchain-funcs mysql-v2 +# only to make repoman happy. it is really set in the eclass +IUSE="$IUSE" + +# Define the mysql-extras source +EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" + +# REMEMBER: also update eclass/mysql*.eclass before committing! +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-linux" + +# When MY_EXTRAS is bumped, the index should be revised to exclude these. +EPATCH_EXCLUDE='' + +DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 )" +RDEPEND="${RDEPEND}" + +# Please do not add a naive src_unpack to this ebuild +# If you want to add a single patch, copy the ebuild to an overlay +# and create your own mysql-extras tarball, looking at 000_index.txt + +# Official test instructions: +# USE='berkdb -cluster embedded extraengine perl ssl community' \ +# FEATURES='test userpriv -usersandbox' \ +# ebuild mysql-X.X.XX.ebuild \ +# digest clean package +src_test() { + + local TESTDIR="${CMAKE_BUILD_DIR}/mysql-test" + local retstatus_unit + local retstatus_tests + + # Bug #213475 - MySQL _will_ object strenously if your machine is named + # localhost. Also causes weird failures. + [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" + + if ! use "minimal" ; then + + if [[ $UID -eq 0 ]]; then + die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." + fi + has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" + + einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" + addpredict /this-dir-does-not-exist/t9.MYI + + # Run CTest (test-units) + cmake-utils_src_test + retstatus_unit=$? + [[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed" + + # Ensure that parallel runs don't die + export MTR_BUILD_THREAD="$((${RANDOM} % 100))" + + # create directories because mysqladmin might right out of order + mkdir -p "${S}"/mysql-test/var-tests{,/log} + + # These are failing in MySQL 5.5 for now and are believed to be + # false positives: + # + # main.information_schema, binlog.binlog_statement_insert_delayed, + # main.mysqld--help-notwin + # fails due to USE=-latin1 / utf8 default + # + # main.mysql_client_test: + # segfaults at random under Portage only, suspect resource limits. + # + # sys_vars.plugin_dir_basic + # fails because PLUGIN_DIR is set to MYSQL_LIBDIR64/plugin + # instead of MYSQL_LIBDIR/plugin + # + # main.flush_read_lock_kill + # fails because of unknown system variable 'DEBUG_SYNC' + # + # main.openssl_1 + # error message changing + # -mysqltest: Could not open connection 'default': 2026 SSL connection + # error: ASN: bad other signature confirmation + # +mysqltest: Could not open connection 'default': 2026 SSL connection + # error: error:00000001:lib(0):func(0):reason(1) + # + + for t in main.mysql_client_test \ + binlog.binlog_statement_insert_delayed main.information_schema \ + main.mysqld--help-notwin main.flush_read_lock_kill \ + sys_vars.plugin_dir_basic main.openssl_1 ; do + mysql-v2_disable_test "$t" "False positives in Gentoo" + done + + # Run mysql tests + pushd "${TESTDIR}" + + # run mysql-test tests + perl mysql-test-run.pl --force --vardir="${S}/mysql-test/var-tests" + retstatus_tests=$? + [[ $retstatus_tests -eq 0 ]] || eerror "tests failed" + has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" + + popd + + # Cleanup is important for these testcases. + pkill -9 -f "${S}/ndb" 2>/dev/null + pkill -9 -f "${S}/sql" 2>/dev/null + + failures="" + [[ $retstatus_unit -eq 0 ]] || failures="${failures} test-unit" + [[ $retstatus_tests -eq 0 ]] || failures="${failures} tests" + has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" + + [[ -z "$failures" ]] || die "Test failures: $failures" + einfo "Tests successfully completed" + + else + + einfo "Skipping server tests due to minimal build." + fi +} diff --git a/dev-embedded/urjtag/urjtag-9999.ebuild b/dev-embedded/urjtag/urjtag-9999.ebuild index 28aa0bd6b83c..1c0292c5600e 100644 --- a/dev-embedded/urjtag/urjtag-9999.ebuild +++ b/dev-embedded/urjtag/urjtag-9999.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-embedded/urjtag/urjtag-9999.ebuild,v 1.2 2012/03/28 17:30:31 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/urjtag/urjtag-9999.ebuild,v 1.3 2013/01/20 13:58:53 swegener Exp $ # TODO: figure out htf to make python.eclass work EAPI="4" -inherit eutils +inherit eutils multilib if [[ ${PV} == "9999" ]] ; then EGIT_REPO_URI="git://urjtag.git.sourceforge.net/gitroot/urjtag/urjtag" EGIT_SOURCEDIR=${WORKDIR} @@ -40,6 +40,8 @@ src_prepare() { } src_configure() { + use ftd2xx && LDFLAGS="${LDFLAGS} -L/opt/$(get_libdir)" + econf \ --disable-werror \ --disable-python \ diff --git a/dev-games/physfs/physfs-2.0.3.ebuild b/dev-games/physfs/physfs-2.0.3.ebuild index 6e332fadd3c9..79b436cae7b5 100644 --- a/dev-games/physfs/physfs-2.0.3.ebuild +++ b/dev-games/physfs/physfs-2.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-games/physfs/physfs-2.0.3.ebuild,v 1.7 2013/01/13 11:22:36 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-games/physfs/physfs-2.0.3.ebuild,v 1.9 2013/01/20 13:11:50 ago Exp $ EAPI=2 inherit cmake-utils @@ -11,7 +11,7 @@ SRC_URI="http://icculus.org/physfs/downloads/${P}.tar.bz2" LICENSE="ZLIB" SLOT="0" -KEYWORDS="~alpha amd64 ~arm hppa ppc ppc64 sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ppc ppc64 sparc x86 ~x86-fbsd" IUSE="doc grp hog mvl qpak static-libs wad +zip" RDEPEND="" diff --git a/dev-haskell/arrows/arrows-0.4.4.1.ebuild b/dev-haskell/arrows/arrows-0.4.4.1.ebuild index 098d69261283..473b0a5ac844 100644 --- a/dev-haskell/arrows/arrows-0.4.4.1.ebuild +++ b/dev-haskell/arrows/arrows-0.4.4.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-haskell/arrows/arrows-0.4.4.1.ebuild,v 1.6 2013/01/05 19:20:32 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/arrows/arrows-0.4.4.1.ebuild,v 1.7 2013/01/20 17:10:10 ago Exp $ EAPI=4 @@ -13,7 +13,7 @@ SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 ia64 ppc ~ppc64 sparc x86" +KEYWORDS="alpha amd64 ia64 ppc ~ppc64 sparc x86" IUSE="" RDEPEND="dev-haskell/stream[profile?] diff --git a/dev-haskell/network/network-2.3.0.14.ebuild b/dev-haskell/network/network-2.3.0.14.ebuild index f1571de04633..fe448c91ca56 100644 --- a/dev-haskell/network/network-2.3.0.14.ebuild +++ b/dev-haskell/network/network-2.3.0.14.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-haskell/network/network-2.3.0.14.ebuild,v 1.9 2012/12/30 13:55:55 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/network/network-2.3.0.14.ebuild,v 1.10 2013/01/20 17:07:46 ago Exp $ EAPI="4" @@ -13,7 +13,7 @@ SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" IUSE="test" RDEPEND="dev-haskell/parsec[profile?] diff --git a/dev-java/java-config/java-config-2.1.12-r1.ebuild b/dev-java/java-config/java-config-2.1.12-r1.ebuild index 70d3ca647d6b..18bf736d77a5 100644 --- a/dev-java/java-config/java-config-2.1.12-r1.ebuild +++ b/dev-java/java-config/java-config-2.1.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/dev-java/java-config/java-config-2.1.12-r1.ebuild,v 1.3 2013/01/16 18:51:32 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/java-config/java-config-2.1.12-r1.ebuild,v 1.5 2013/01/20 14:10:12 ago Exp $ EAPI="5" @@ -15,7 +15,7 @@ SRC_URI="mirror://gentoo/${P}.tar.bz2" LICENSE="GPL-2" SLOT="2" -KEYWORDS="~amd64 ~arm ~ia64 ~ppc ppc64 ~x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="amd64 ~arm ~ia64 ~ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd" IUSE="" DEPEND="" diff --git a/dev-lang/erlang/erlang-15.2.2.ebuild b/dev-lang/erlang/erlang-15.2.2.ebuild index c265f21415ad..83ab810448b5 100644 --- a/dev-lang/erlang/erlang-15.2.2.ebuild +++ b/dev-lang/erlang/erlang-15.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-lang/erlang/erlang-15.2.2.ebuild,v 1.7 2013/01/05 17:33:37 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/erlang/erlang-15.2.2.ebuild,v 1.8 2013/01/20 10:22:24 ago Exp $ EAPI=3 WX_GTK_VER="2.8" @@ -29,7 +29,7 @@ SRC_URI="http://www.erlang.org/download/${MY_P}.tar.gz LICENSE="ErlPL-1.1" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" +KEYWORDS="alpha amd64 ~arm ~ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" IUSE="compat-ethread doc emacs halfword hipe java kpoll odbc smp sctp ssl tk wxwidgets" RDEPEND=">=dev-lang/perl-5.6.1 diff --git a/dev-libs/libevent/libevent-2.0.21.ebuild b/dev-libs/libevent/libevent-2.0.21.ebuild index df386f9b8f41..0b47c954771b 100644 --- a/dev-libs/libevent/libevent-2.0.21.ebuild +++ b/dev-libs/libevent/libevent-2.0.21.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.21.ebuild,v 1.12 2013/01/13 11:33:11 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.21.ebuild,v 1.13 2013/01/20 10:24:57 ago Exp $ EAPI="2" @@ -14,7 +14,7 @@ SRC_URI="mirror://github/${PN}/${PN}/${MY_P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~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 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="+ssl static-libs test" DEPEND="ssl? ( dev-libs/openssl )" diff --git a/dev-libs/libgusb/libgusb-0.1.4.ebuild b/dev-libs/libgusb/libgusb-0.1.4.ebuild index 6148af85016b..0a2908878fde 100644 --- a/dev-libs/libgusb/libgusb-0.1.4.ebuild +++ b/dev-libs/libgusb/libgusb-0.1.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/libgusb/libgusb-0.1.4.ebuild,v 1.9 2013/01/06 09:23:53 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgusb/libgusb-0.1.4.ebuild,v 1.10 2013/01/20 17:09:03 ago Exp $ EAPI=4 @@ -15,7 +15,7 @@ SRC_URI="http://people.freedesktop.org/~hughsient/releases/${P}.tar.xz" LICENSE="LGPL-2.1+" 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="+introspection static-libs vala" REQUIRED_USE="vala? ( introspection )" diff --git a/dev-perl/AnyEvent-I3/AnyEvent-I3-0.140.0.ebuild b/dev-perl/AnyEvent-I3/AnyEvent-I3-0.140.0.ebuild new file mode 100644 index 000000000000..37d18c8fe9c6 --- /dev/null +++ b/dev-perl/AnyEvent-I3/AnyEvent-I3-0.140.0.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/dev-perl/AnyEvent-I3/AnyEvent-I3-0.140.0.ebuild,v 1.1 2013/01/20 11:31:38 tove Exp $ + +EAPI=5 + +MODULE_AUTHOR=MSTPLBG +MODULE_VERSION=0.14 +inherit perl-module + +DESCRIPTION="Communicate with the i3 window manager" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +COMMON_DEPEND=" + dev-perl/AnyEvent + dev-perl/JSON-XS +" +DEPEND=" + ${COMMON_DEPEND} +" +RDEPEND=" + ${COMMON_DEPEND} +" +#SRC_TEST="do" diff --git a/dev-perl/AnyEvent-I3/Manifest b/dev-perl/AnyEvent-I3/Manifest index b60190fb920c..66dcdbdce87a 100644 --- a/dev-perl/AnyEvent-I3/Manifest +++ b/dev-perl/AnyEvent-I3/Manifest @@ -1 +1,2 @@ DIST AnyEvent-I3-0.09.tar.gz 22706 SHA256 47e7a06cb05e0d1ec7bb0d15b37c7252d970267f89ea0c69a8fc6a215618ab6e SHA512 764303f58a4406a1cb3a84f2b3e2fb2845212bc77a08f7c4f3ceb8819c6aa330d8914a438846180d7db6245a12e230759ad4d656554924b99385108a6293d90c WHIRLPOOL 87e433f346867e69ca6c4282ecf4a11607ea256f968b5b80e541f6cce5df61ac0ddaec2c7470456703f9d2ab3917709f7053c348b9aa4c08a88e1e5a31ff079f +DIST AnyEvent-I3-0.14.tar.gz 24641 SHA256 1503787e452f24f19ff262c7e97ae2e6401f7505f17bf4fb3f0af9e9e1d75109 SHA512 a65c7d2876292add4b0fd72797d29d1f28285c319d53570c877f1ae00122e07b7b8f9a6c0cc622ef57b3239987fad5a2495d7056fd2772244c6bc1f3bab7c024 WHIRLPOOL ca591979df43354f6eee7bbd9f0340bb95cc419bfba921300f6dc76d89d2b138731f673b91641077825a12578cab6e798d06236220bbd4d0a7454f0bde7db725 diff --git a/dev-perl/AnyEvent-I3/metadata.xml b/dev-perl/AnyEvent-I3/metadata.xml index f09c715965e1..f46c5a710462 100644 --- a/dev-perl/AnyEvent-I3/metadata.xml +++ b/dev-perl/AnyEvent-I3/metadata.xml @@ -2,10 +2,6 @@ perl - - kentfredric@gmail.com - Kent Fredric - AnyEvent-I3 AnyEvent::I3 diff --git a/dev-perl/Carp-Assert-More/Carp-Assert-More-1.140.0.ebuild b/dev-perl/Carp-Assert-More/Carp-Assert-More-1.140.0.ebuild new file mode 100644 index 000000000000..5dded05d00ed --- /dev/null +++ b/dev-perl/Carp-Assert-More/Carp-Assert-More-1.140.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-perl/Carp-Assert-More/Carp-Assert-More-1.140.0.ebuild,v 1.1 2013/01/19 20:03:07 tove Exp $ + +EAPI=5 + +MODULE_AUTHOR=PETDANCE +MODULE_VERSION=1.14 +inherit perl-module + +DESCRIPTION="convenience wrappers around Carp::Assert" + +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="test" + +RDEPEND="virtual/perl-Scalar-List-Utils + dev-perl/Carp-Assert" +DEPEND="${RDEPEND} + test? ( dev-perl/Test-Exception )" + +SRC_TEST="do" diff --git a/dev-perl/Carp-Assert-More/Manifest b/dev-perl/Carp-Assert-More/Manifest index 6e5c6202526c..652e54086cad 100644 --- a/dev-perl/Carp-Assert-More/Manifest +++ b/dev-perl/Carp-Assert-More/Manifest @@ -1 +1,2 @@ DIST Carp-Assert-More-1.12.tar.gz 8371 SHA256 d9d3312aa99f036eab24a5e195ea6796a24c5a8135310b451f408350c13733d5 SHA512 a39d9ac2fdf8af49811ea5f05c88b68be18a16c4afd31008a5dccef0cb6b6db198fef50baad168f8b2e61a1cff6cad53832cdfa30abbcda1df125a5d4467859f WHIRLPOOL 2fc60a127dfe96311d6ebac6123c40ecb187b0ca8573363d3ec3f66af7ba3f1f8b174a642c3d276d388ef9f6afb69b23170e15e0ca4a70c8e2bda640d3020996 +DIST Carp-Assert-More-1.14.tar.gz 10304 SHA256 3f004cbfa53476d85ab604a1e09fc4a5d7b28898c52f9549bd17c385c9c40733 SHA512 0411908afd5cc45cedce83fb10e67f78f7513fa788421d9c4e0f0f0064bf6fdd7154c2414a449456ff4c600f31eba138fb4d3f94e68743af4b71f7368c30b398 WHIRLPOOL 747a1ddf1bd8973a7ebbeb3a673aae00a182969291f1a946597e801afc5dab1237c5b13c28f46297bd43d44b904929faf552d8337a9965f040f31d4d51827452 diff --git a/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.640.0.ebuild b/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.640.0.ebuild new file mode 100644 index 000000000000..962b258a0d93 --- /dev/null +++ b/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.640.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.640.0.ebuild,v 1.1 2013/01/20 12:27:33 tove Exp $ + +EAPI=5 + +MODULE_AUTHOR=NANIS +MODULE_VERSION=0.64 +inherit perl-module + +DESCRIPTION="Crypt::SSLeay module for perl" + +LICENSE="Artistic-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="" + +# Disabling tests for now. Opening a port always leads to mixed results for +# folks - bug 59554 +# nb. Re-enabled tests, seem to be better written now, keeping an eye on bugs +# for this though. +SRC_TEST="do" + +RDEPEND=" + >=dev-libs/openssl-0.9.7c + virtual/perl-MIME-Base64 +" +DEPEND="${RDEPEND}" +# PDEPEND: circular dependencies bug #144761 +PDEPEND="dev-perl/libwww-perl" + +export OPTIMIZE="${CFLAGS}" +#myconf="--lib=${EPREFIX}/usr" diff --git a/dev-perl/Crypt-SSLeay/Manifest b/dev-perl/Crypt-SSLeay/Manifest index b048309501da..d5592adf21fb 100644 --- a/dev-perl/Crypt-SSLeay/Manifest +++ b/dev-perl/Crypt-SSLeay/Manifest @@ -1,2 +1,3 @@ DIST Crypt-SSLeay-0.57.tar.gz 122980 SHA256 14e880ce3d007457f193056d9f373024fc59d1c7fc5f6990db69789a922f11b8 SHA512 6b28c7f4fc93958181442594eae3ed368e2296f7cb9b285d2027a9b04eb3c4fcb35b93220739e73afc26d8c1cbbadf4ca9ae0865bfc348fe6850b7a484636ad3 WHIRLPOOL 10d1800a94a84909f473d5a02742cc88c94efb48173efa76eae3e0b82949ba81e41c8c8720cc2a130100ad17c1c4e96ba417f02024121e52fade153b488cd0c1 DIST Crypt-SSLeay-0.58.tar.gz 123845 SHA256 1e714c5bcb28bc2547619a9b11e5b270a3c34113f85f091cd72556ae9805e02e SHA512 26a0d882742f39fc8e9a6f6fa0abf5fdb11eca314743bc17382c92d90c77ec8fd1f7eb3497e69b29a07ed4286883d694de327e73278a792d80b0049f98385e0b WHIRLPOOL 8b70c43efabe57f526057a085eb45a1640f6753935c050785aab9caf2bede29ee8143fb5cea026dcbbc8154796b765a0b9aa6492c52f1081c9a3e6ab97cbeb8d +DIST Crypt-SSLeay-0.64.tar.gz 121431 SHA256 eae61cf7aa64d79385b764010d8d77d09477e034c52fc3dfe68d0a13be78217c SHA512 2530a62f13154e2ce8a55e845dbc3dc2822420d56631ff64de2fd71c6cad5ddaa5e779070e7929f797a3fb09d004e31a9097bba0616d396abcb79aca710fa9eb WHIRLPOOL 4ddccd0cde43bb5c2a3c1f3bd59e221c758c0b31ba9f24b1fbc0fec40dbc2a98cc1a7da1a072af588379f6504b3e7c52a3b101a650005c2784ef34005adb4a19 diff --git a/dev-perl/Data-Random/Data-Random-0.80.0.ebuild b/dev-perl/Data-Random/Data-Random-0.80.0.ebuild new file mode 100644 index 000000000000..60a1172ed7be --- /dev/null +++ b/dev-perl/Data-Random/Data-Random-0.80.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Data-Random/Data-Random-0.80.0.ebuild,v 1.1 2013/01/20 12:35:10 tove Exp $ + +EAPI=5 + +MODULE_AUTHOR=BAREFOOT +MODULE_VERSION=0.08 +inherit perl-module + +DESCRIPTION="A module used to generate random data" + +SLOT="0" +KEYWORDS="~amd64 ~sparc ~x86" +IUSE="test" + +DEPEND=" + test? ( + dev-perl/Test-Pod + dev-perl/Test-Pod-Coverage + ) +" + +SRC_TEST="do" + +src_prepare() { + sed -i '/jsonmeta;/d' Makefile.PL || die + sed -i \ + -e '/^Data-Random-0.07_001.tar.gz/d' \ + -e '/^META.yml/d' \ + MANIFEST || die + + perl-module_src_prepare +} diff --git a/dev-perl/Data-Random/Manifest b/dev-perl/Data-Random/Manifest index 148fc3674fbe..9d4b9a9606a9 100644 --- a/dev-perl/Data-Random/Manifest +++ b/dev-perl/Data-Random/Manifest @@ -1,2 +1,3 @@ DIST Data-Random-0.05.tar.gz 147055 SHA256 1def0ac0147009d3ff07140a7cd6fb0672469af118b8eda530dcd15f21747362 SHA512 7edc8dd3108f2ce003fdb93e579c8297da87a23d855165f6ee0a5adb10d658e1d029dda25fa1a9c09698f561f005e22ca223d101d4e73c6db54efb877ac7002f WHIRLPOOL 358b3a78d86bb52b664df7b474f57d115885002922252ff14455895f7e0c8a75d9b756d61290eaf5426a696f0fd2e2bc5f750c54e0914e45291c08b966bf4da5 DIST Data-Random-0.06.tar.gz 165081 SHA256 c9def0badf01dc2d182f44dea5c950baa7657e351faa954eb1142cd1e69b7c5f SHA512 bc893d0c8bb8098742c674c78e1863318b5cb9191cb99b80b849475018867e315631426789229c7237de862c839f9f7bafe27eb9a857538b3c5d9794061f2c87 WHIRLPOOL f799fc15185e0e670bb8c4e04ad0b071e270f3c82ea6a2d813977b785e0f8a5891b4a3b93198b69c164791f0bc948ca27510698526df4c4ac7e09959a77c1224 +DIST Data-Random-0.08.tar.gz 168327 SHA256 e14c10e1e47c66a082387fa1497894d059bd316212bbd6b8f0905b30eea92d43 SHA512 a523f2cfa2031006e41efbc7a52d1f8ce08ca490d02db5f1068045019e9f07f145824843e9650fc04e5269284e9a4825f54b4e90557fec1d3e26c40164f8a591 WHIRLPOOL 45181d1ce02f1505e7ccd5d7024be59f12b219e02faa86bb107861306c1b16e68b87651dad79d531cb6f50d0353ddef55d67298d4f6740fd5e4f9d6b0b44affb diff --git a/dev-perl/DateManip/DateManip-6.380.0.ebuild b/dev-perl/DateManip/DateManip-6.380.0.ebuild new file mode 100644 index 000000000000..04dd60180ddf --- /dev/null +++ b/dev-perl/DateManip/DateManip-6.380.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/DateManip/DateManip-6.380.0.ebuild,v 1.1 2013/01/19 19:56:56 tove Exp $ + +EAPI=5 + +MY_PN=Date-Manip +MODULE_AUTHOR=SBECK +MODULE_VERSION=6.38 +inherit perl-module + +DESCRIPTION="Perl date manipulation routines" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris" +IUSE="test" + +RDEPEND=" + virtual/perl-Storable +" +DEPEND="${RDEPEND} + >=virtual/perl-Module-Build-0.390.0 + test? ( + dev-perl/Test-Pod + dev-perl/Test-Pod-Coverage + dev-perl/Test-Inter + ) +" + +SRC_TEST="do" + +mydoc="HISTORY" diff --git a/dev-perl/DateManip/Manifest b/dev-perl/DateManip/Manifest index 5b1b07f84475..0214ca6dc591 100644 --- a/dev-perl/DateManip/Manifest +++ b/dev-perl/DateManip/Manifest @@ -1,3 +1,4 @@ DIST Date-Manip-5.56.tar.gz 179989 SHA256 ceaca3c3f4504fcb4b5f543df513df44c4bb2e2caad064f38f5e9877f4f982f3 SHA512 2e3e14c7cbcc4e7c0eec7d756b1288cfd0faa4e069c60500d42f15cee54c6e9d35403800a1f3f65218a6ea646a1d56c553f9323dd24307540dc281d622cdce7c WHIRLPOOL 9eaf3ab551717da790ad12ada18585db443a08835943929a71f24b29e5a7e2c3b65e94efa68bdf833423ee59ab8d93479f46b192a667479cb764d90bae7c1bb2 DIST Date-Manip-6.31.tar.gz 1603411 SHA256 1e3ccbc5f02dba6ba8d0a12db33bbd7f9384b45786a89c1b572482263e22f6a2 SHA512 26e0f609beaa21a4f4363da6d679ebd1028e9345f3a52527ddd68b160cb17d2a25168fe9559caf8592d714d991fb90286030ea0ff06ec69f3fd065d381ee2215 WHIRLPOOL a75defb01a8d76d5b8a8e6335a763555d8bc7d0413e72a0ad7fdac359ef2b9c66aa8710349e60801bcd844a3b7295883d06a65872e8741cc3454e676e12793f2 DIST Date-Manip-6.37.tar.gz 2083828 SHA256 fdf085f13814266b0f182e9a3c5a7c2028a46efe3447cfa4d7bb5c51db0310d0 SHA512 42ed4ddce35e66b073a155361528ad7b0a3b2dd5a68f67afd6878aebf1560e9f2654965003af10e7ce249ea73fe6b67cfa518f768ed39c8225228de327689104 WHIRLPOOL 495bfdaab2368ef166811725750ccb67a3dd6cada435e53e53955a99533cb3606552624ad1e99f12da9efea0e448faed03891f2d2c75c7ef534e6b61251721f1 +DIST Date-Manip-6.38.tar.gz 2004893 SHA256 05519d790bf3715308735af45c14c877894bb1f5efb8d624ffff12486c2ed1a0 SHA512 65fa4a28866f773d4acf37e6ef2a29cf7286946510538fbf1e590da639b1043134bc82256639a0149a0683d2ecb36f0b65c2ddb3f634c6edd0c31b1c75cf8436 WHIRLPOOL 1e840c985e896019324c0f15566709038e555942e9f72991116ffc09d054b246fefbae0354da4ce6f2005af18953b407843f93bf3ee8093b2e332e562ffc2a31 diff --git a/dev-perl/DateTime/DateTime-0.780.0.ebuild b/dev-perl/DateTime/DateTime-0.780.0.ebuild index ea99ea3e6165..219df348a54c 100644 --- a/dev-perl/DateTime/DateTime-0.780.0.ebuild +++ b/dev-perl/DateTime/DateTime-0.780.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-perl/DateTime/DateTime-0.780.0.ebuild,v 1.6 2013/01/13 17:48:57 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/DateTime/DateTime-0.780.0.ebuild,v 1.7 2013/01/20 10:19:23 ago Exp $ EAPI=4 @@ -12,7 +12,7 @@ DESCRIPTION="A date and time object" LICENSE="Artistic-2" SLOT="0" -KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" IUSE="test" RDEPEND=" diff --git a/dev-perl/Devel-Caller/Devel-Caller-2.60.0.ebuild b/dev-perl/Devel-Caller/Devel-Caller-2.60.0.ebuild new file mode 100644 index 000000000000..b9d58b702456 --- /dev/null +++ b/dev-perl/Devel-Caller/Devel-Caller-2.60.0.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-perl/Devel-Caller/Devel-Caller-2.60.0.ebuild,v 1.1 2013/01/19 19:47:36 tove Exp $ + +EAPI=5 + +MODULE_AUTHOR=RCLAMP +MODULE_VERSION=2.06 +inherit perl-module + +DESCRIPTION="Meatier versions of caller" + +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +DEPEND="dev-perl/PadWalker" +RDEPEND="${DEPEND}" + +SRC_TEST=do diff --git a/dev-perl/Devel-Caller/Manifest b/dev-perl/Devel-Caller/Manifest index 2e45124ac538..09b227528af0 100644 --- a/dev-perl/Devel-Caller/Manifest +++ b/dev-perl/Devel-Caller/Manifest @@ -1 +1,2 @@ DIST Devel-Caller-2.05.tar.gz 5716 SHA256 dcfb590044277e125e78f781a150198a94c89769af6faab8f544a916dfbb4388 SHA512 c6f1fd9ac63615fc2e492f530a1d1da7db835516b99e8abae1a3dd5dcb05982e39a24789726a5fe48b370370897da68d195fffcb787c5409c4560ad629f5b71b WHIRLPOOL 2461b0d61b30b9d7187857f146d689299a10d90a3b70086fabe53a52ddce04a4c20b0f631cceed55895e3ed46ebcce072d715bd2102c41bd177d863f93ae3db6 +DIST Devel-Caller-2.06.tar.gz 6540 SHA256 6a73ae6a292834255b90da9409205425305fcfe994b148dcb6d2d6ef628db7df SHA512 f15a59169e191c8526f613d21c415e5d8d51b59eabf309952468fdee15277b2e8f831a2263a9dc006d9f3144a234fbc9c46ad3ab464b6fc055360c6445b209f9 WHIRLPOOL 0d909c146a6b093b20d9d85eb6a9e5ad4a54c760e6bc0f6487b4eefc16b95dc4f0923635a7c6e6459a3832682559ffeee59561e5a1360a2c73575282417c3161 diff --git a/dev-perl/Event/Event-1.210.0.ebuild b/dev-perl/Event/Event-1.210.0.ebuild new file mode 100644 index 000000000000..539b51b7825a --- /dev/null +++ b/dev-perl/Event/Event-1.210.0.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Event/Event-1.210.0.ebuild,v 1.1 2013/01/19 20:21:50 tove Exp $ + +EAPI=5 + +MODULE_AUTHOR=JPRIT +MODULE_VERSION=1.21 +inherit perl-module + +DESCRIPTION="fast, generic event loop" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-solaris" +IUSE="" + +SRC_TEST="do" + +mydoc="ANNOUNCE INSTALL TODO Tutorial.pdf" diff --git a/dev-perl/Event/Manifest b/dev-perl/Event/Manifest index bfa540e101db..49fbf9cf0604 100644 --- a/dev-perl/Event/Manifest +++ b/dev-perl/Event/Manifest @@ -1,3 +1,4 @@ DIST Event-1.09.tar.gz 251549 SHA256 152c7ac259898d277aae75b64fc75217068eea1e686627202929bb787919b935 SHA512 7ca7b732758750c7c1a7ad17fe5bba4e35d436db751e997d8f51164c21f7e7eb759a06987cf8c846bf1f9f10abec00dbfc1e9d07971617b072a8aaf44d7d1ffa WHIRLPOOL 9ce2c3bd7d814e76746f28690750bbe238d73c34db93d31fb1101797ac65c8da031b77f2ba0b5bc1cfdf65f75e5629df16cb2a68e2a8be2a83d84c811f157324 DIST Event-1.10.tar.gz 251621 SHA256 95aa4ca0d312cd751a8c08787e4e850e4602fcd04951dc7912ccfcd87e2a22f8 SHA512 1080333984d09ae14336468e8e5e49c3fa806206e4c0deadd541c4c26f6e482e26b0e600a4c5d564517731eb0e04e0e6a61cdd5db2d1c731c2a918cce47b57d1 WHIRLPOOL e775712cd0b84578036f3a4dc3dfae75f272708d63869d1dde7a05d05edced1fbebc810abea389284b92190c859cbd33eacf4b9800fb8d704bd7082610ac7c51 DIST Event-1.20.tar.gz 253167 SHA256 9a39cc29ccb7d4962c05d77408e580dcf833bb05eb9950a7d78e7d4b6f33aa9b SHA512 ea7df1a89415a87c282995b7491e637bbcdfa4b4c07a065c95ae2ce555d2adcc200fdbc1687cfe11f101b14db2db3ec1a8e85893ef27b7e034bfcded416e7bb6 WHIRLPOOL a5b6993cc8ec19cd6b08ceb844503ce4be415eeb8bc881fa3145e0e7d5b1e9db2dce30e5fcf986f810f91f69e65035b452e713df2f3f011d72046c7579132128 +DIST Event-1.21.tar.gz 253340 SHA256 66ef435bdaf471c64a19f3afbdc0cbf71705a4ebd818f352e5d94082e84055d7 SHA512 9e2ba21d88bd841fd8a2ad6d9f42a29f6a30f47b21f0407dde2b66e9e48dfd04dcba30301e3df8e1bb15edd479e23b1cd43a821ecface4139606e8afc78ef08a WHIRLPOOL d0c89a191ad813a2e3ce7d59e8cb2efcd016ef6b426c34a148ee999587e3e840063d84e127c468e62eb95932845aebb73abfd85b21505cf49036013d0d770ea4 diff --git a/dev-perl/Net-SSH2/Manifest b/dev-perl/Net-SSH2/Manifest index e4132777c58c..23263276627f 100644 --- a/dev-perl/Net-SSH2/Manifest +++ b/dev-perl/Net-SSH2/Manifest @@ -1 +1,2 @@ DIST Net-SSH2-0.40.tar.gz 106713 SHA256 96191f3a982e5be8bf5923330ec3027314bff20fa5f02ac5f2aafdd23df90ae5 SHA512 720dc9417748c646642870d64e671d0ccb3b9a5c2f2500b07606e5bb9550f04897bb958668cef647d14bb30621d6c2120928554549967e68509bbe0ef199a942 WHIRLPOOL d88589e3fe9af48c050e6dd15982a94b75f597e6c22e3ad87082cde441873f1697daa6dd57fc4ec8a92154f22193be15279ab4bac2493c2a3789e9c97eceb21b +DIST Net-SSH2-0.46.tar.gz 112190 SHA256 814f662140956d8b39cae277c1341d17b6be4494283cefbce70d234c8082dfe0 SHA512 36ffed2c96660c3a009b3ad42c944450cd710426953fb909d1e8989dcdb3d0d7807361c672d4904bff33cd1a206479149e7f2dc09c16b806a9ff2a6355e41ed8 WHIRLPOOL 9854701fb497306566bee86c5850fd7fc0466ce639c5ac794f63502b02dc093af60699625e57605660a0fc0a310b808ad3d313b72802a33b771482bbcdcbdd9f diff --git a/dev-perl/Net-SSH2/Net-SSH2-0.460.0.ebuild b/dev-perl/Net-SSH2/Net-SSH2-0.460.0.ebuild new file mode 100644 index 000000000000..31312a996bb1 --- /dev/null +++ b/dev-perl/Net-SSH2/Net-SSH2-0.460.0.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/dev-perl/Net-SSH2/Net-SSH2-0.460.0.ebuild,v 1.1 2013/01/20 10:52:33 tove Exp $ + +EAPI=5 + +MODULE_AUTHOR=RKITOVER +MODULE_VERSION=0.46 +inherit perl-module + +DESCRIPTION="Net::SSH2 - Support for the SSH 2 protocol via libssh2." + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="net-libs/libssh2 +>=virtual/perl-ExtUtils-MakeMaker-6.50" +DEPEND="${RDEPEND}" + +SRC_TEST="do" diff --git a/dev-perl/Net-SSH2/metadata.xml b/dev-perl/Net-SSH2/metadata.xml index 7e27552f1cbc..124692f5ede4 100644 --- a/dev-perl/Net-SSH2/metadata.xml +++ b/dev-perl/Net-SSH2/metadata.xml @@ -5,5 +5,11 @@ Net-SSH2 Net::SSH2 + Net::SSH2::Channel + Net::SSH2::Dir + Net::SSH2::File + Net::SSH2::Listener + Net::SSH2::PublicKey + Net::SSH2::SFTP diff --git a/dev-perl/Net-SSLeay/Manifest b/dev-perl/Net-SSLeay/Manifest index a872dff12ff8..7be24f719ed9 100644 --- a/dev-perl/Net-SSLeay/Manifest +++ b/dev-perl/Net-SSLeay/Manifest @@ -1 +1,2 @@ DIST Net-SSLeay-1.49.tar.gz 385835 SHA256 194fa1db88d74fbf0598e40553176805ed997fcfefd23a88f5cc229a1c591e75 SHA512 1e39048a955c0b4dd5bb1194615d5a34aa1483dfe5acb1c2269ef663c626f593617ef841412170446cde94b830bf736bf64d73a1c9e238258ec90e6ad84c4a2c WHIRLPOOL d8625f5cd186509191464edd5a8008575bdc81cd07dbe7c98b94e20ce842e3eca3c5be3b0f848b345049f718e07c15dd4529f9e260b68268477304f9fd7055b3 +DIST Net-SSLeay-1.52.tar.gz 390050 SHA256 48ece32f8f1b4c20acedfcaefd5d66f0ab8818ae6f994ab7c02da7f42e6d77ba SHA512 74c618d0a3174bc0b72c1a1ea49b381199acdb4a0bb3ea261bda28eaae6cd757f0766a90f397c84d686a62ee9f926e2c7d421ee2c2a3fdabdec9b66cc88ddf7c WHIRLPOOL eb9dc765680068717ebd834a371a0a4755f65bfe05d404b22801ef57dcb770b57ec65cc929cee3afb943ff9d1859881ce050f57928dd3dc3d42e46fe26b6c973 diff --git a/dev-perl/Net-SSLeay/Net-SSLeay-1.520.0.ebuild b/dev-perl/Net-SSLeay/Net-SSLeay-1.520.0.ebuild new file mode 100644 index 000000000000..6b436436d3d8 --- /dev/null +++ b/dev-perl/Net-SSLeay/Net-SSLeay-1.520.0.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-perl/Net-SSLeay/Net-SSLeay-1.520.0.ebuild,v 1.1 2013/01/19 20:30:07 tove Exp $ + +EAPI=5 + +MODULE_AUTHOR=MIKEM +MODULE_VERSION=1.52 +inherit multilib perl-module + +DESCRIPTION="Net::SSLeay module for perl" + +LICENSE="SSLeay" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="" + +RDEPEND="dev-libs/openssl" +DEPEND="${RDEPEND}" +# test? ( dev-perl/Test-Exception +# dev-perl/Test-Warn +# dev-perl/Test-NoWarnings )" + +#SRC_TEST=do + +export OPTIMIZE="$CFLAGS" +export OPENSSL_PREFIX=${EPREFIX}/usr + +src_prepare() { + sed -i \ + -e "/\$opts->{optimize} = '-O2 -g';/d" \ + -e "s,\"\$prefix/lib\",\"\$prefix/$(get_libdir)\"," \ + inc/Module/Install/PRIVATE/Net/SSLeay.pm || die + perl-module_src_prepare +} diff --git a/dev-perl/POE-Component-IKC/Manifest b/dev-perl/POE-Component-IKC/Manifest index 21a989e3feb5..fd45734f7b5b 100644 --- a/dev-perl/POE-Component-IKC/Manifest +++ b/dev-perl/POE-Component-IKC/Manifest @@ -1 +1,2 @@ DIST POE-Component-IKC-0.2302.tar.gz 68963 SHA256 1fa7db0325a82576cfb32c20bc55051c625f621b5373ea0eced937349e0331c0 SHA512 3a092e99240a7eee4682f7de71d50f00664984a4fbf5fe4737b0f3941af462a5d8d4766b9ae6eea93e9d097dd691bf3cef413e0b8d7068cf913e0dc6251cd151 WHIRLPOOL 5dd0aef654f60a0e057bf2b5d4ad14cd833c04c69e48e1c39da971986dce259d310fccd61a008f1a1c7fcd60b55b83062cd4307d53db29e53cb4882b2a92b79a +DIST POE-Component-IKC-0.2303.tar.gz 69229 SHA256 c5371db5f544ce97a8bbccd5ed8e0ee91b513b1c2471851f83f30061fecb8d7a SHA512 b92e4a472dfdd4f8c30d40ef1fd2d091e5d5de08fba8d8b6d93c6461898b1830e141175453133a85d314c83e063c77ba03e79419f9e4f4ec582c9fa1ede1349c WHIRLPOOL 3d75ec8edd934719cb307c02254ac3657f87b8f3a70f6f4b012b86c51b083e3188afec2272ab581831fdecb92784ca7574ecd91e7309ecb68194c4057bdbcdce diff --git a/dev-perl/POE-Component-IKC/POE-Component-IKC-0.230.300.ebuild b/dev-perl/POE-Component-IKC/POE-Component-IKC-0.230.300.ebuild new file mode 100644 index 000000000000..ac6d38ca5a29 --- /dev/null +++ b/dev-perl/POE-Component-IKC/POE-Component-IKC-0.230.300.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-perl/POE-Component-IKC/POE-Component-IKC-0.230.300.ebuild,v 1.1 2013/01/19 19:43:17 tove Exp $ + +EAPI=5 + +MODULE_AUTHOR=GWYN +MODULE_VERSION=0.2303 +inherit perl-module + +DESCRIPTION="POE Inter-Kernel Communication" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + >=dev-perl/POE-API-Peek-1.34 + dev-perl/POE + dev-perl/Devel-Size +" +DEPEND="${RDEPEND}" diff --git a/dev-perl/PPIx-Regexp/Manifest b/dev-perl/PPIx-Regexp/Manifest index d43f0336bb10..3f6cf346c794 100644 --- a/dev-perl/PPIx-Regexp/Manifest +++ b/dev-perl/PPIx-Regexp/Manifest @@ -1 +1,2 @@ DIST PPIx-Regexp-0.028.tar.gz 146435 SHA256 48454e762311780ecaf9b3b32a3fbdc6e30a52542659cbccb95f62980013ce8f SHA512 8ddbbe692fb944f1ac461c189b755a5db3bb955c341133aa08a2ace78f9e14a79371d4f413c3b97a569825abfc0a9ccec80543ef1a4df67bd3fc7756baa16629 WHIRLPOOL 69ebb3b0b2aee37ff42eaba24b84bcb6189b7dbcdb49dd0adc56f006ad88cb1e71c40b27dfd63857426f7f3760d2060ccf9ef9ee9ea8aaca8a8213c9366c2dc1 +DIST PPIx-Regexp-0.029.tar.gz 149471 SHA256 e260d88e53947a061661a2e07381871e09b1f2d21bd8b8bb8027f6f5be306cec SHA512 b76062e29fad500d83129467d585878964178f47fc38192dab31f45c039dcddc43e32d0b067347539c79cc2d410ac140084be1088f070c73b84eab86145d7285 WHIRLPOOL e6e622fade368efd904caa62c7f2543f48e40c1a831499d9e5e4a1d2543256c64fff3255261eec23e12c01c7ba55ac8eb6365390c6cb7f7b4a97a4257126fb63 diff --git a/dev-perl/PPIx-Regexp/PPIx-Regexp-0.29.0.ebuild b/dev-perl/PPIx-Regexp/PPIx-Regexp-0.29.0.ebuild new file mode 100644 index 000000000000..c157254577c9 --- /dev/null +++ b/dev-perl/PPIx-Regexp/PPIx-Regexp-0.29.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-perl/PPIx-Regexp/PPIx-Regexp-0.29.0.ebuild,v 1.1 2013/01/19 20:04:41 tove Exp $ + +EAPI=5 + +MODULE_AUTHOR=WYANT +MODULE_VERSION=0.029 +inherit perl-module + +DESCRIPTION="Represent a regular expression of some sort" + +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND=" + dev-perl/List-MoreUtils + dev-perl/PPI + virtual/perl-Scalar-List-Utils +" +DEPEND="${RDEPEND} + virtual/perl-Module-Build +" + +SRC_TEST=do diff --git a/dev-perl/dbix-searchbuilder/Manifest b/dev-perl/dbix-searchbuilder/Manifest index a22f49d1d46f..0c821f6d445e 100644 --- a/dev-perl/dbix-searchbuilder/Manifest +++ b/dev-perl/dbix-searchbuilder/Manifest @@ -1 +1,2 @@ DIST DBIx-SearchBuilder-1.62.tar.gz 106550 SHA256 dfcbb96233d7851b8b30a2ccba13cfb5509f60cce8168bf846b408c33d4411d2 SHA512 0d549ccc86c0cba0e5eb4e184d638ea7b651b14d37f682d7465bb37b504252dce7bf08618264fd3652b8a632974fa27c392f68f6bc439e9c3f9f789b09d5d449 WHIRLPOOL 04c18490458f23395249463205b0b0a2b214df3d7c84e41741c20e0d77250acb1ae8125ffe8b62e810eabc55a1ed63efa43fa9d2893a9bd42e92381d5d1fdf82 +DIST DBIx-SearchBuilder-1.63.tar.gz 107851 SHA256 2dc89fc29e804d4b702bc774e78ff54fc8b7867dab5ba140a3b7c7040a87a337 SHA512 9b1d8f9a594fb3f1ded031142f28020aaf8a68bcc6fa49001b27b8f0638896f9c96135b62691c80ad82d93937cf032d145bdaaa35ecfce3732924a0751e04ed9 WHIRLPOOL 86c9ec9c8082dace50ffc2eda5432d617a07e1b5261b1b1c50dc2ce2bbd93409ce687716f195290921e31bd02c74b4bc7aaafd06ec97c02ca850db4b73a9808b diff --git a/dev-perl/dbix-searchbuilder/dbix-searchbuilder-1.630.0.ebuild b/dev-perl/dbix-searchbuilder/dbix-searchbuilder-1.630.0.ebuild new file mode 100644 index 000000000000..56cc8a67b3ac --- /dev/null +++ b/dev-perl/dbix-searchbuilder/dbix-searchbuilder-1.630.0.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-perl/dbix-searchbuilder/dbix-searchbuilder-1.630.0.ebuild,v 1.1 2013/01/19 20:18:20 tove Exp $ + +EAPI=5 + +MY_PN=DBIx-SearchBuilder +MODULE_AUTHOR=TSIBLEY +MODULE_VERSION=1.63 +inherit perl-module + +DESCRIPTION="Encapsulate SQL queries and rows in simple perl objects" + +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~x86" +IUSE="test" + +RDEPEND=" + dev-perl/DBI + dev-perl/DBIx-DBSchema + dev-perl/Want + >=dev-perl/Cache-Simple-TimedExpiry-0.210.0 + dev-perl/Clone + dev-perl/Class-Accessor + >=dev-perl/class-returnvalue-0.400.0 + >=dev-perl/capitalization-0.30.0 +" +DEPEND=" + test? ( ${RDEPEND} + dev-perl/DBD-SQLite + >=virtual/perl-Test-Simple-0.520.0 + ) +" + +SRC_TEST="do" diff --git a/dev-perl/wxperl/Manifest b/dev-perl/wxperl/Manifest index 45a6c9cec296..79aa3946df2c 100644 --- a/dev-perl/wxperl/Manifest +++ b/dev-perl/wxperl/Manifest @@ -1,2 +1,3 @@ DIST Wx-0.9902.tar.gz 406639 SHA256 ea4982993de1a188d4bc130d785f10faa0fda4c8521b08b3768915d0ed8b7ebf SHA512 e6d1061319c0232b0f5109f314b88c771960aeb2ce18effd4bf040fd377edd0f9ab94f3359c318b52a40fe73bd8e1a0c9f90d87d5c23690435303e644e5bbfd3 WHIRLPOOL 59f4b30616931d3c89bd61076bbaf69592ec0facb3eb063387d8d34f004b5c42775b5bafe688d2bd5458af9556c023a6149a0e104d7ef34403eccb9c760dc353 DIST Wx-0.9915.tar.gz 476594 SHA256 6c6f93fae8400fdc6a9d791ebf81bead8dec2e773abf3ca8efc833df73304dec SHA512 1687414f86b74fda0d144ca37194aafb75182b49144a716a1c4293a64ba22860cf07306982822736ff979ff9336d6030232859add21456dd59d74aa658bcc6d5 WHIRLPOOL 2298a2298879c83521f9fa907a129e5fbf2129970a94722ce059ed6c4bba238b2dfc8e45bf3b8ce6af1f3fce8e2115beddc70def6a3a4f6f5041f7238bdf13ae +DIST Wx-0.9916.tar.gz 476639 SHA256 17f9967d63bb8fd0ea1bbdeec3a6eff1a512d53c4f6b576eca3aed00b7722c5b SHA512 2e569dff9e3dc258e7abff4e2df8f3f70b385fa3a4716e7d9c6314c02f68ff4b0256ad739b86aeea98a2e52dcc3fd6aadfe9873b8235f1fb68217ef32f1316c9 WHIRLPOOL eaa0b250abc798363735039d2462bcd0d60d10f2a6fb2802568beeaa667a63a14a2dd32f13f4b053b29cfa9521496e5ad33db788350dc0582ec449f2e37d2f41 diff --git a/dev-perl/wxperl/wxperl-0.991.600.ebuild b/dev-perl/wxperl/wxperl-0.991.600.ebuild new file mode 100644 index 000000000000..f55401c64ede --- /dev/null +++ b/dev-perl/wxperl/wxperl-0.991.600.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-perl/wxperl/wxperl-0.991.600.ebuild,v 1.1 2013/01/20 10:10:34 tove Exp $ + +EAPI=5 + +MY_PN=Wx +WX_GTK_VER="2.8" +MODULE_AUTHOR=MDOOTSON +MODULE_VERSION=0.9916 +inherit wxwidgets perl-module + +DESCRIPTION="Perl bindings for wxGTK" +HOMEPAGE="http://wxperl.sourceforge.net/ ${HOMEPAGE}" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + >=dev-perl/Alien-wxWidgets-0.25 + >=virtual/perl-File-Spec-0.82 +" +DEPEND="${RDEPEND} + >=virtual/perl-ExtUtils-ParseXS-0.22.03 + >=dev-perl/ExtUtils-XSpp-0.160.200 +" + +MAKEOPTS="${MAKEOPTS} -j1" diff --git a/dev-python/amqplib/amqplib-1.0.2-r1.ebuild b/dev-python/amqplib/amqplib-1.0.2-r1.ebuild new file mode 100644 index 000000000000..200d7a104829 --- /dev/null +++ b/dev-python/amqplib/amqplib-1.0.2-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/amqplib/amqplib-1.0.2-r1.ebuild,v 1.1 2013/01/19 20:13:07 mgorny Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} ) + +inherit distutils-r1 + +DESCRIPTION="Python client for the Advanced Message Queuing Procotol (AMQP)" +HOMEPAGE="http://code.google.com/p/py-amqplib/" +SRC_URI="http://py-amqplib.googlecode.com/files/${P}.tgz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples extras test" + +PATCHES=( + "${FILESDIR}/${PN}-0.6.1_disable_socket_tests.patch" + "${FILESDIR}/${P}-unicode_tests_py3.patch" +) + +python_test() { + "${PYTHON}" tests/client_0_8/run_all.py \ + || die "Tests fail with ${EPYTHON}" +} + +python_install_all() { + distutils-r1_python_install_all + + dodoc -r docs/ + if use examples; then + docinto examples + dodoc -r demo/. + docompress -x /usr/share/doc/${PF}/examples + fi + if use extras; then + insinto /usr/share/${PF} + doins -r extras + fi +} diff --git a/dev-python/ansi2html/ansi2html-0.9.3-r1.ebuild b/dev-python/ansi2html/ansi2html-0.9.3-r1.ebuild new file mode 100644 index 000000000000..67c89fdf1eb3 --- /dev/null +++ b/dev-python/ansi2html/ansi2html-0.9.3-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/ansi2html/ansi2html-0.9.3-r1.ebuild,v 1.1 2013/01/19 20:25:10 mgorny Exp $ + +EAPI=5 + +# ordereddict is need for < 2.7, but it's not packaged (yet) +PYTHON_COMPAT=( python{2_7,3_1,3_2,3_3} pypy{1_9,2_0} ) + +inherit distutils-r1 + +DESCRIPTION="Convert text with ANSI color codes to HTML" +HOMEPAGE="http://pypi.python.org/pypi/ansi2html https://github.com/ralphbean/ansi2html" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + ) + dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + nosetests -w tests \ + || die "Tests fail with ${EPYTHON}" +} diff --git a/dev-python/apipkg/apipkg-1.2-r1.ebuild b/dev-python/apipkg/apipkg-1.2-r1.ebuild new file mode 100644 index 000000000000..f68191096b13 --- /dev/null +++ b/dev-python/apipkg/apipkg-1.2-r1.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/apipkg/apipkg-1.2-r1.ebuild,v 1.1 2013/01/19 20:46:21 mgorny Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} ) + +inherit distutils-r1 + +DESCRIPTION="namespace control and lazy-import mechanism" +HOMEPAGE="http://pypi.python.org/pypi/apipkg" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="" +DEPEND="app-arch/unzip + dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + py.test || die "Tests fail with ${EPYTHON}" +} diff --git a/dev-python/appdirs/appdirs-1.2.0-r1.ebuild b/dev-python/appdirs/appdirs-1.2.0-r1.ebuild new file mode 100644 index 000000000000..3b5766f9e4ec --- /dev/null +++ b/dev-python/appdirs/appdirs-1.2.0-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-python/appdirs/appdirs-1.2.0-r1.ebuild,v 1.1 2013/01/20 00:16:10 mgorny Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} ) + +inherit distutils-r1 + +DESCRIPTION="Module for determining appropriate platform-specific dirs" +HOMEPAGE="http://github.com/ActiveState/appdirs" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +# api.doctests is missing in the dist zipfile +# and the 'internal' doctest does nothing +RESTRICT=test + +python_test() { + cd test || die + "${PYTHON}" test.py \ + || die "Tests fail with ${EPYTHON}" +} diff --git a/dev-python/apse/apse-0.2-r2.ebuild b/dev-python/apse/apse-0.2-r2.ebuild new file mode 100644 index 000000000000..36a0e7be3d69 --- /dev/null +++ b/dev-python/apse/apse-0.2-r2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/apse/apse-0.2-r2.ebuild,v 1.1 2013/01/20 00:45:10 mgorny Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy{1_9,2_0} ) + +inherit distutils-r1 + +MY_P="Apse-${PV}" + +DESCRIPTION="Approximate String Matching in Python." +HOMEPAGE="http://www.personal.psu.edu/staff/i/u/iua1/python/apse/" +SRC_URI="http://www.personal.psu.edu/staff/i/u/iua1/python/${PN}/dist/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86" +IUSE="" + +RDEPEND="" +DEPEND="&2 + "${@}" || die +} + +python_test() { + "${PYTHON}" test/test_Apse.py || die "Tests fail with ${EPYTHON}" +} diff --git a/dev-python/django/django-1.4.2-r1.ebuild b/dev-python/django/django-1.4.2-r2.ebuild similarity index 93% rename from dev-python/django/django-1.4.2-r1.ebuild rename to dev-python/django/django-1.4.2-r2.ebuild index b369ec63f22c..2158b59dd646 100644 --- a/dev-python/django/django-1.4.2-r1.ebuild +++ b/dev-python/django/django-1.4.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/dev-python/django/django-1.4.2-r1.ebuild,v 1.1 2013/01/17 22:56:47 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.4.2-r2.ebuild,v 1.1 2013/01/19 18:10:32 mgorny Exp $ EAPI=5 @@ -58,6 +58,11 @@ python_test() { || die "Tests fail with ${EPYTHON}" } +src_install() { + distutils-r1_src_install + webapp_src_install +} + python_install_all() { distutils-r1_python_install_all @@ -70,8 +75,6 @@ python_install_all() { insinto "${MY_HTDOCSDIR#${EPREFIX}}" doins -r django/contrib/admin/static/admin/. - - webapp_src_install } pkg_postinst() { @@ -81,6 +84,8 @@ pkg_postinst() { elog "site-packages dir for easy development" elog ewarn "If you build Django ${PV} without USE=\"vhosts\"" + + # XXX: call webapp_pkg_postinst? the old ebuild didn't do that... ewarn "webapp-config will automatically install the" ewarn "admin media into the localhost webroot." } diff --git a/dev-python/docutils-glep/docutils-glep-0.4-r1.ebuild b/dev-python/docutils-glep/docutils-glep-0.4-r1.ebuild index c593b5ef2446..c621d3b186dd 100644 --- a/dev-python/docutils-glep/docutils-glep-0.4-r1.ebuild +++ b/dev-python/docutils-glep/docutils-glep-0.4-r1.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/dev-python/docutils-glep/docutils-glep-0.4-r1.ebuild,v 1.3 2013/01/18 11:11:48 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/docutils-glep/docutils-glep-0.4-r1.ebuild,v 1.4 2013/01/20 00:01:07 mgorny Exp $ EAPI=5 -PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy1_9 ) +PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} ) inherit eutils python-r1 diff --git a/dev-python/docutils/docutils-0.10.ebuild b/dev-python/docutils/docutils-0.10.ebuild index f0a7a3df5f6c..faaf71ea4ae0 100644 --- a/dev-python/docutils/docutils-0.10.ebuild +++ b/dev-python/docutils/docutils-0.10.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/dev-python/docutils/docutils-0.10.ebuild,v 1.4 2013/01/18 11:11:47 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/docutils/docutils-0.10.ebuild,v 1.5 2013/01/19 23:58:19 mgorny Exp $ EAPI="5" -PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy1_9 ) +PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} ) inherit distutils-r1 diff --git a/dev-python/execnet/execnet-1.1-r1.ebuild b/dev-python/execnet/execnet-1.1-r1.ebuild new file mode 100644 index 000000000000..feef8c17c6b0 --- /dev/null +++ b/dev-python/execnet/execnet-1.1-r1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/execnet/execnet-1.1-r1.ebuild,v 1.1 2013/01/20 00:04:40 mgorny Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy{1_9,2_0} ) + +inherit distutils-r1 + +DESCRIPTION="Rapid multi-Python deployment" +HOMEPAGE="http://codespeak.net/execnet/ http://pypi.python.org/pypi/execnet/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +DEPEND="app-arch/unzip + dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" +RDEPEND="" + +python_compile_all() { + use doc && emake -C doc html +} + +src_test() { + # Tests are a bit fragile to failures in parallel. + # XXX: take a closer look, it may be easy to fix. + local DISTUTILS_NO_PARALLEL_BUILD=1 + + distutils-r1_python_test +} + +python_test() { + # Re-enable in order to properly test disabling it ;). + # https://bitbucket.org/hpk42/execnet/issue/10 + unset PYTHONDONTWRITEBYTECODE + + py.test || die "Tests fail with ${EPYTHON}" +} + +python_install_all() { + use doc && local HTML_DOCS=( doc/_build/html/. ) + + distutils-r1_python_install_all +} diff --git a/dev-python/jsonpatch/Manifest b/dev-python/jsonpatch/Manifest index 63015530b69f..18f00e498467 100644 --- a/dev-python/jsonpatch/Manifest +++ b/dev-python/jsonpatch/Manifest @@ -1 +1,2 @@ +DIST jsonpatch-0.10.tar.gz 5413 SHA256 86409f5c0a8392a277488dd11fc0f603e7241c95cf547b7048e30e69b7f74107 SHA512 74d2bd0cc7ad8a383da0db7711161e87305f1f23ea2f0f1e0fd9fe3e3aa5e94a0846f51996356d7402c231eeaca062ebc69e7593374a81c7cee6f300efc28904 WHIRLPOOL 7dcd646193efae687ea99f7dfe5693fbe6ba7e69ddbb10dfe237e70c66e32dcce9cb678f0999a377d5a8c90d5cbc55299210beb240b10106cdc3a5763b27d031 DIST jsonpatch-0.12.tar.gz 5396 SHA256 d62765ac03bd9cc6273bfddcf745ea2b86f7697ea01a9a44f762db2647945886 SHA512 5ce4efcd63c2be32f749f358e4fbdc31ea5746d2832d78b44a7e76caa38fd08472cedeacf2c8d71890d53f11f2ba78fb9e5a4011103775c6e805ad9ebee6de8a WHIRLPOOL 9286ce065db063b8e5aeb42314a40a27c5e83a8d027f6bd1a3273dd348a3264bc86c32b3dbe1198b19a2eecf51190fce1fe77d9d299ba2c5605951b2739c1459 diff --git a/dev-python/jsonpatch/jsonpatch-0.10.ebuild b/dev-python/jsonpatch/jsonpatch-0.10.ebuild new file mode 100644 index 000000000000..0c75241e76c1 --- /dev/null +++ b/dev-python/jsonpatch/jsonpatch-0.10.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/dev-python/jsonpatch/jsonpatch-0.10.ebuild,v 1.1 2013/01/20 06:18:47 prometheanfire Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_6 python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="Apply JSON-Patches according to +http://tools.ietf.org/html/draft-pbryan-json-patch-04" +HOMEPAGE="https://github.com/stefankoegl/python-json-patch" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="dev-python/jsonpointer[${PYTHON_USEDEP}]" diff --git a/dev-python/paramiko/paramiko-1.9.0.ebuild b/dev-python/paramiko/paramiko-1.9.0.ebuild index 32e301c378c1..04db8ea2e5d4 100644 --- a/dev-python/paramiko/paramiko-1.9.0.ebuild +++ b/dev-python/paramiko/paramiko-1.9.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/paramiko/paramiko-1.9.0.ebuild,v 1.5 2013/01/17 16:43:51 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/paramiko/paramiko-1.9.0.ebuild,v 1.7 2013/01/20 13:12:47 ago Exp $ EAPI="4" PYTHON_DEPEND="2" @@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris" IUSE="doc examples" RDEPEND=">=dev-python/pycrypto-2.1" diff --git a/dev-python/pycuda/Manifest b/dev-python/pycuda/Manifest index 86d99976f58d..de329fd0a420 100644 --- a/dev-python/pycuda/Manifest +++ b/dev-python/pycuda/Manifest @@ -1,2 +1 @@ -DIST pycuda-2011.2.2.tar.gz 1310515 SHA256 54a354c7c8f43a098482436059a7a6258390d013bf558d04d3f4822c23eee99a SHA512 ffc10394237aebaafb16c536d098abfa94d5697341210bb4b228ab534ee5930ab4c5c38158b2f166ac399efd3f972c5688034365fa3687409c99f5981e589f9f WHIRLPOOL 3531d5f68515a534cb6925c9c88cd52aad18af7cdbcdeb7d0ff2fc0f87378f41cfa67ce07baf7efa7dfbb0973c1c3722a9ab7d58dbeaef66a50e76f35fc64a07 DIST pycuda-2012.1.tar.gz 1473695 SHA256 d5b90467b926c73ceaf2dd2662fef2e21e106f00a0aa0d11f09a891aac3925dc SHA512 bb8889fa46de3d4ae57fb47883232953eba0e12a53431fffdefb12af3134540aec2671f0f2fbbe1d836dab354d407e078e773e84f8ee9a5345400a4a59da7937 WHIRLPOOL b35484ddc8d2c1808a0d706dcdcc9ebe49af153b0aaaf8fc2596f4068c5c2dbdb9fb4f84ac46512b314ef9383f70dfcefa4895191d7a9f6d78eee8ae8a56fe71 diff --git a/dev-python/pycuda/metadata.xml b/dev-python/pycuda/metadata.xml index 5d6640e9c329..2e0e92ca4e34 100644 --- a/dev-python/pycuda/metadata.xml +++ b/dev-python/pycuda/metadata.xml @@ -2,7 +2,7 @@ - spock@gentoo.org + maintainer-needed@gentoo.org pycuda diff --git a/dev-python/pycuda/pycuda-2011.2.2-r1.ebuild b/dev-python/pycuda/pycuda-2011.2.2-r1.ebuild deleted file mode 100644 index e3fa600f710a..000000000000 --- a/dev-python/pycuda/pycuda-2011.2.2-r1.ebuild +++ /dev/null @@ -1,57 +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/pycuda/pycuda-2011.2.2-r1.ebuild,v 1.3 2012/02/25 01:54:53 patrick Exp $ - -EAPI="4" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.* *-jython 2.7-pypy-*" - -inherit distutils multilib - -DESCRIPTION="Python wrapper for NVIDIA CUDA" -HOMEPAGE="http://mathema.tician.de/software/pycuda/ http://pypi.python.org/pypi/pycuda" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="examples opengl" - -RDEPEND=">=dev-libs/boost-1.48[python] - dev-python/decorator - dev-python/numpy - dev-python/pytools - dev-util/nvidia-cuda-toolkit - opengl? ( virtual/opengl )" -DEPEND="${RDEPEND}" - -DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES="1" - -src_configure() { - local myopts=() - use opengl && myopts+=(--cuda-enable-gl) - - configuration() { - "$(PYTHON)" configure.py \ - --boost-inc-dir="${EPREFIX}/usr/include" \ - --boost-lib-dir="${EPREFIX}/usr/$(get_libdir)" \ - --boost-python-libname=boost_python-${PYTHON_ABI}-mt \ - --boost-thread-libname=boost_thread-mt \ - --cuda-root="${EPREFIX}/opt/cuda" \ - --cudadrv-lib-dir="${EPREFIX}/usr/$(get_libdir)" \ - --cudart-lib-dir="${EPREFIX}/opt/cuda/$(get_libdir)" \ - --no-use-shipped-boost \ - "${myopts[@]}" - } - python_execute_function -s configuration -} - -src_install() { - distutils_src_install - - if use examples; then - insinto /usr/share/doc/${PF} - doins -r examples - fi -} diff --git a/dev-python/pygobject/pygobject-2.28.6-r53.ebuild b/dev-python/pygobject/pygobject-2.28.6-r53.ebuild index 67f62583049d..23bd4731dfe5 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.1 2013/01/14 03:17:55 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/pygobject-2.28.6-r53.ebuild,v 1.2 2013/01/20 12:04:58 eva Exp $ EAPI="5" GCONF_DEBUG="no" @@ -18,13 +18,16 @@ KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd6 IUSE="examples libffi test" COMMON_DEPEND=">=dev-libs/glib-2.24.0:2 - libffi? ( virtual/libffi:= )" + libffi? ( virtual/libffi:= ) + ${PYTHON_DEPS} +" DEPEND="${COMMON_DEPEND} dev-util/gtk-doc-am + virtual/pkgconfig test? ( media-fonts/font-cursor-misc media-fonts/font-misc-misc ) - virtual/pkgconfig" +" RDEPEND="${COMMON_DEPEND} ! python - - spock@gentoo.org - pyopencl diff --git a/dev-python/python-gnupg/Manifest b/dev-python/python-gnupg/Manifest index 9278968ba5d9..0f2666dfb4dd 100644 --- a/dev-python/python-gnupg/Manifest +++ b/dev-python/python-gnupg/Manifest @@ -1,2 +1,3 @@ DIST python-gnupg-0.3.0.tar.gz 16647 SHA256 dbe4f6ad6c33bacffab94cd34063c05ff8f08014e4e215b3934e46c5cc031deb SHA512 fc269fd48ce87a3f983fff607f0175def01fdffe4a25a5d802c26d0097c62e95b82b29f17804ac91337757f6f188e57a2012c91dffbd2738561245a80bd15321 WHIRLPOOL be33bd1e1faadca10debc2debee523df42a1a7623785749246d778e4363830d209b86d0935a834905c8b55093a42c71fdf25a93b778db630a3e9ebf49a551759 DIST python-gnupg-0.3.1.tar.gz 17226 SHA256 05a04a1c5dc562ff49e3bc7ebb32144c25e19b5a2d65c8ada064ceae08c87d86 SHA512 993989b7978ef18b6e2e5488829fc879b8dc90029f5a689c8f8f970b91257cdb579f0e46dccafc28f0e09006797bd3786ff0eda03c66f43eba63c09f56adbc85 WHIRLPOOL 4f8174087fbfaacaced781a994c12850ce295dbb649eb9af7c059ec05185bba4245f5f6400c2a62c79a6fff84d0bd25efc4c1cbb2365b82351e2f1e9b6230d6d +DIST python-gnupg-0.3.2.tar.gz 17645 SHA256 e38e724a021767673054d54338f621c53edd48f2cdbc1226f5a9bffc831c3418 SHA512 6ce427231210bb1a19ed0a9676e7c2b82985ca4407ba3c13c6fa1624c97ddf76839badc23681d877c054bea3d098abfc700938d4b1e5454e4b0c3952ba552a52 WHIRLPOOL ee6a1dba881b6a65750a1ab0d1e4e3257e7f13d457fecc4e68ed6b37c8ec3fa51499f98a797c45bebc316e42640050e67f2c031cb483676d299296a5736e000c diff --git a/dev-python/python-gnupg/files/python-gnupg-0.3.2-fast-random.patch b/dev-python/python-gnupg/files/python-gnupg-0.3.2-fast-random.patch new file mode 100644 index 000000000000..53ad5388963c --- /dev/null +++ b/dev-python/python-gnupg/files/python-gnupg-0.3.2-fast-random.patch @@ -0,0 +1,88 @@ +From 0dc9665f3aa31ff2f4dc0d7fe6838295fa27b2df Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= +Date: Sun, 20 Jan 2013 14:58:30 +0100 +Subject: [PATCH] Use quick random source for tests (now with doctests). + +Pass --debug-quick-random to gpg in order to enable the fast random +source. Good random is not really useful for tests while it makes them +awfully slow. +--- + gnupg.py | 12 ++++++------ + test_gnupg.py | 3 ++- + 2 files changed, 8 insertions(+), 7 deletions(-) + +diff --git a/gnupg.py b/gnupg.py +index e279116..9366961 100644 +--- a/gnupg.py ++++ b/gnupg.py +@@ -694,7 +694,7 @@ class GPG(object): + def verify(self, data): + """Verify the signature on the contents of the string 'data' + +- >>> gpg = GPG(gnupghome="keys") ++ >>> gpg = GPG(gnupghome="keys", options=['--debug-quick-random']) + >>> input = gpg.gen_key_input(Passphrase='foo') + >>> key = gpg.gen_key(input) + >>> assert key +@@ -745,7 +745,7 @@ class GPG(object): + + >>> import shutil + >>> shutil.rmtree("keys") +- >>> gpg = GPG(gnupghome="keys") ++ >>> gpg = GPG(gnupghome="keys", options=['--debug-quick-random']) + >>> input = gpg.gen_key_input() + >>> result = gpg.gen_key(input) + >>> print1 = result.fingerprint +@@ -798,7 +798,7 @@ class GPG(object): + + >>> import shutil + >>> shutil.rmtree("keys") +- >>> gpg = GPG(gnupghome="keys") ++ >>> gpg = GPG(gnupghome="keys", options=['--debug-quick-random']) + >>> result = gpg.recv_keys('pgp.mit.edu', '3FF0DB166A7476EA') + >>> assert result + +@@ -848,7 +848,7 @@ class GPG(object): + + >>> import shutil + >>> shutil.rmtree("keys") +- >>> gpg = GPG(gnupghome="keys") ++ >>> gpg = GPG(gnupghome="keys", options=['--debug-quick-random']) + >>> input = gpg.gen_key_input() + >>> result = gpg.gen_key(input) + >>> print1 = result.fingerprint +@@ -894,7 +894,7 @@ class GPG(object): + """Generate a key; you might use gen_key_input() to create the + control input. + +- >>> gpg = GPG(gnupghome="keys") ++ >>> gpg = GPG(gnupghome="keys", options=['--debug-quick-random']) + >>> input = gpg.gen_key_input() + >>> result = gpg.gen_key(input) + >>> assert result +@@ -994,7 +994,7 @@ class GPG(object): + >>> import shutil + >>> if os.path.exists("keys"): + ... shutil.rmtree("keys") +- >>> gpg = GPG(gnupghome="keys") ++ >>> gpg = GPG(gnupghome="keys", options=['--debug-quick-random']) + >>> input = gpg.gen_key_input(passphrase='foo') + >>> result = gpg.gen_key(input) + >>> print1 = result.fingerprint +diff --git a/test_gnupg.py b/test_gnupg.py +index d5aed97..5258d97 100644 +--- a/test_gnupg.py ++++ b/test_gnupg.py +@@ -96,7 +96,8 @@ class GPGTestCase(unittest.TestCase): + "Not a directory: %s" % hd) + shutil.rmtree(hd) + self.homedir = hd +- self.gpg = gnupg.GPG(gnupghome=hd, gpgbinary='gpg') ++ self.gpg = gnupg.GPG(gnupghome=hd, gpgbinary='gpg', ++ options=['--debug-quick-random']) + + def test_environment(self): + "Test the environment by ensuring that setup worked" +-- +1.8.1.1 + diff --git a/dev-python/python-gnupg/python-gnupg-0.3.2.ebuild b/dev-python/python-gnupg/python-gnupg-0.3.2.ebuild new file mode 100644 index 000000000000..2fdfa98f465d --- /dev/null +++ b/dev-python/python-gnupg/python-gnupg-0.3.2.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/dev-python/python-gnupg/python-gnupg-0.3.2.ebuild,v 1.1 2013/01/20 14:32:54 mgorny Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} ) + +inherit distutils-r1 + +DESCRIPTION="Python wrapper for GNU Privacy Guard" +HOMEPAGE="http://code.google.com/p/python-gnupg/" +SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="app-crypt/gnupg" + +PATCHES=( + "${FILESDIR}"/${P}-fast-random.patch +) + +python_test() { + cd "${BUILD_DIR}" || die + "${PYTHON}" "${S}"/test_gnupg.py || die "Tests fail with ${EPYTHON}" +} diff --git a/dev-python/python-mpd/Manifest b/dev-python/python-mpd/Manifest index 4c596be23235..94b18a622430 100644 --- a/dev-python/python-mpd/Manifest +++ b/dev-python/python-mpd/Manifest @@ -2,3 +2,4 @@ DIST python-mpd-0.3.0.tar.bz2 18333 SHA256 8f235b3d6ac7bf1c8922ed5ad7b39ce5f1002 DIST python-mpd-0.4.2.tar.gz 24859 SHA256 92bdf74965efbff7cd8bfef0a5b68fbf79957952eaf2ae676e79b2c6226e1c04 SHA512 407b7c6db8f122efce32b7289002ee84313898b4b1bd101bd89cc1fd18b59822d0870747814d6ac01ac8380d7b835521cf8cb9c4365e61926de1d952eccf7d34 WHIRLPOOL 0c3e90fcd4b81ed0ee4b49f5a524a79a01b70e635e587e0ffb3fbe0828f4f884b5553d50f52f3313471d83d8c3aaea8eb271629a5d693b846f7f0953cde3b09c DIST python-mpd-0.4.3.tar.gz 25080 SHA256 85d92369b45ea407fa6129b793d5a77f989d85369503380eca7e380d9a33c37b SHA512 f66ab330a574d6a2f2e5d2f3891a4c2b39196bd107cb84a4d2870d0a452bd59ce3b18dde8c8e205d07d0a96d31a34b4dc1bf90d5c28f807b180e193e13e0f945 WHIRLPOOL 4c0cee171da6c6ebf421d7b8f705e745f4f3d458774a567cd6576d12b3071b6571a8f40cf6788d708e1b54f9a369c943a269fa219bba5b9e1c6f808b03a09724 DIST python-mpd-0.4.6.tar.gz 27340 SHA256 4e0f18a467ebbb2b08e07579c4744f0a7640d15107eb9813fcea2bf12cdadbf0 SHA512 33adb7b68753e64f3c284885ce374f84e7f54677f695730203932ed1c6142187c272d461b72cea364038372575b2f09fa41fb8bcbfe1e08d012b6b655abd73ee WHIRLPOOL 3d94c1280d3031a8c8705288a9d48b4dcea7d7a1c8a2b4a86e5620742652c89d1fe32b57139a3332fec87460c0b39cd11d27a09ef1afcf5703376eba7d5ceec9 +DIST python-mpd-0.5.0.tar.gz 29006 SHA256 80176cf3883255df5192d3ea274ce1fec98b70a70b94a660226fcfe6ac213b6a SHA512 77f011d7cb84463cc4ff2f613b43b5966612e7448f7fe00abd0c481eb2c97c9bd05a578e297773e46d9c1e3e114529ff8f8091c025fe18b9c327171f9c801be5 WHIRLPOOL 8cf2481429648ee5f1c9d0d40a62e213ebb22d02af92d32c3e0456c3b15f40522503e75fb96de06fb2f73bdce36e395616885fd4c4e83cf5b9681a42e255eef4 diff --git a/dev-python/python-mpd/python-mpd-0.5.0.ebuild b/dev-python/python-mpd/python-mpd-0.5.0.ebuild new file mode 100644 index 000000000000..5ce84db80b59 --- /dev/null +++ b/dev-python/python-mpd/python-mpd-0.5.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-python/python-mpd/python-mpd-0.5.0.ebuild,v 1.1 2013/01/19 21:47:52 angelos Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} ) + +inherit distutils-r1 vcs-snapshot + +DESCRIPTION="Python MPD client library" +HOMEPAGE="https://github.com/Mic92/python-mpd2" +SRC_URI="https://github.com/Mic92/${PN}2/tarball/v${PV} -> ${P}.tar.gz" + +LICENSE="LGPL-3" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +SLOT="0" +IUSE="test" + +DEPEND="test? ( virtual/python-unittest2[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] )" + +DOCS=( CHANGES.rst PORTING.rst README.rst doc/commands.txt ) + +python_test() { + "${PYTHON}" test.py || die "Tests fail with ${EPYTHON}" +} diff --git a/dev-python/sphinx/sphinx-1.1.3-r5.ebuild b/dev-python/sphinx/sphinx-1.1.3-r5.ebuild index a593cb9aa182..d430b1f624be 100644 --- a/dev-python/sphinx/sphinx-1.1.3-r5.ebuild +++ b/dev-python/sphinx/sphinx-1.1.3-r5.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/dev-python/sphinx/sphinx-1.1.3-r5.ebuild,v 1.3 2013/01/18 11:12:00 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.1.3-r5.ebuild,v 1.4 2013/01/19 23:58:19 mgorny Exp $ EAPI=5 -PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy1_9 ) +PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} ) inherit distutils-r1 versionator diff --git a/dev-python/sqlalchemy-migrate/sqlalchemy-migrate-0.7.2.ebuild b/dev-python/sqlalchemy-migrate/sqlalchemy-migrate-0.7.2.ebuild index acd9914aba84..ad92332929ef 100644 --- a/dev-python/sqlalchemy-migrate/sqlalchemy-migrate-0.7.2.ebuild +++ b/dev-python/sqlalchemy-migrate/sqlalchemy-migrate-0.7.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-python/sqlalchemy-migrate/sqlalchemy-migrate-0.7.2.ebuild,v 1.11 2013/01/16 14:57:54 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy-migrate/sqlalchemy-migrate-0.7.2.ebuild,v 1.12 2013/01/20 10:17:54 ago Exp $ EAPI="3" PYTHON_DEPEND="2" @@ -15,7 +15,7 @@ SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz" LICENSE="MIT" 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="" DEPEND="dev-python/decorator diff --git a/dev-python/sqlalchemy/sqlalchemy-0.7.9.ebuild b/dev-python/sqlalchemy/sqlalchemy-0.7.9.ebuild index 99e9c876fd0f..e9d8c624e46b 100644 --- a/dev-python/sqlalchemy/sqlalchemy-0.7.9.ebuild +++ b/dev-python/sqlalchemy/sqlalchemy-0.7.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy/sqlalchemy-0.7.9.ebuild,v 1.8 2013/01/16 14:58:16 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy/sqlalchemy-0.7.9.ebuild,v 1.9 2013/01/20 10:18:16 ago Exp $ EAPI="4" SUPPORT_PYTHON_ABIS="1" @@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="doc examples firebird mssql mysql postgres +sqlite test" RDEPEND="dev-python/setuptools diff --git a/dev-python/tempita/tempita-0.5.1.ebuild b/dev-python/tempita/tempita-0.5.1.ebuild index 21d2d613d46d..bf7a40b279bf 100644 --- a/dev-python/tempita/tempita-0.5.1.ebuild +++ b/dev-python/tempita/tempita-0.5.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/tempita/tempita-0.5.1.ebuild,v 1.15 2013/01/16 14:58:36 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/tempita/tempita-0.5.1.ebuild,v 1.16 2013/01/20 10:18:36 ago Exp $ EAPI="3" PYTHON_DEPEND="2" @@ -19,7 +19,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="MIT" 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="" DEPEND="dev-python/setuptools" diff --git a/dev-python/tlslite/Manifest b/dev-python/tlslite/Manifest index d976706d83ba..da630003a743 100644 --- a/dev-python/tlslite/Manifest +++ b/dev-python/tlslite/Manifest @@ -1,3 +1,4 @@ DIST tlslite-0.3.8.tar.gz 637558 SHA256 3d79170d8c3a662fa717b6401e8004208df113aaf3b18689bbeb704a23bf5b9f SHA512 6c85242c2e8281db400f90ef792d204b6d297d4483d8553170c9cfe62d89c47a23c6b7f71e4a3720b5a06f1624a9ce408dbaab1478c918c74d5e5f41a2c1c0d6 WHIRLPOOL 549e6f930a98154a40c9e419b54bec942011951bef4a4daa0d99f875e9fda54ec146467fc7383f4b81017fffd41ceee9c1b92ef2f188c4f079b55c4c47d6cb10 DIST tlslite-0.4.0.tar.gz 532330 SHA256 a97019f399e74937ae528e1d6eace9e51bd4e2e5ed1ffa7a4d3b61b38aaac32f SHA512 b5f3bf5ae210a61f895668b97a572b53e5936e00deb058893ab9dc4ce8ab846a99bd4090cf4c2621adfb9bd3b1de4e3c57b55d803ac1a6811e49fe8c6235d1bf WHIRLPOOL 1f04600cbe77c2921cff2637db81751efa3b037ca697dc94237860a483c7697b0f5b28d6bc5080fcfce7461cdc67a43de34424f59cbdad0457e614496d12b365 DIST tlslite-0.4.1.tar.gz 562540 SHA256 ae01fd74140cb00ca550304e41f5fe1a935cde1f1f4f351aed8861355bcd2047 SHA512 c519ca431a10d0b6e9564544eadd33e26a979ed23a8ae706d56ded52e58c455528eff60de0843f22ce288febe890335d309eb174eba20c8c3ceb005461a3f0b3 WHIRLPOOL 171a4d4c831e7e8b1467290c12d7474c5f391802e7f1dd9814b5e60741d3e1a1a0486356c73c7eabfe6ebe809e45d47894da6095aa2e362c6f6287adf08ab899 +DIST tlslite-0.4.3.tar.gz 562090 SHA256 6a67d8a0bec66183719c19c91f383bc1555545055aae4498af2e91fe9d79f813 SHA512 d1f451ebc2f7bd4d5436f1ca8ecfdbaa403f3dbbae9f9ac3900131e5d168e3267e22fcf23d85f87457f06468997cb01a51683d028a67fde58820b15f97689a0c WHIRLPOOL 555f2659f0bb5080519edd5f4325953e13109367ef21e1595816ab4f3956233bb541940f65f2cfa95c041b7f2cc080b8c4ee10719be79edfa11076a2c834fff6 diff --git a/dev-python/tlslite/tlslite-0.4.3.ebuild b/dev-python/tlslite/tlslite-0.4.3.ebuild new file mode 100644 index 000000000000..72cbb22d7eb0 --- /dev/null +++ b/dev-python/tlslite/tlslite-0.4.3.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/tlslite/tlslite-0.4.3.ebuild,v 1.1 2013/01/20 12:19:59 idella4 Exp $ + +EAPI=4 + +PYTHON_DEPEND="2:2.6" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="2.5 3.* *-jython" + +inherit distutils + +DESCRIPTION="TLS Lite is a free python library that implements SSL 3.0 and TLS 1.0/1.1" +HOMEPAGE="http://trevp.net/tlslite/ http://pypi.python.org/pypi/tlslite" +SRC_URI="http://github.com/trevp/tlslite/downloads/${P}.tar.gz" + +LICENSE="BSD public-domain" +SLOT="0" +KEYWORDS="~amd64 ~x86" +#Refrain for now setting IUSE test and deps of test given test restricted. +IUSE="doc gmp" +RESTRICT="test" + +DEPEND=">=dev-libs/cryptlib-3.3.3[python] + || ( + dev-python/m2crypto + dev-python/pycrypto + ) + gmp? ( dev-python/gmpy )" +RDEPEND="${DEPEND}" + +# This would serve as a test phase if ever comes the time it passes all requirements; currently hangs +#src_test() { +# testing() { +# pushd $(ls -d build-"${PYTHON_ABI}"/lib/) > /dev/null +# PYTHONPATH=. "${S}"/tests/tlstest.py client localhost:4443 . +# PYTHONPATH=. "${S}"/tests/tlstest.py server localhost:4443 . +# popd > /dev/null +# } +# python_execute_function testing +#} + +src_install(){ + distutils_src_install + + use doc && dohtml -r docs/ +} diff --git a/dev-python/warlock/warlock-0.7.0.ebuild b/dev-python/warlock/warlock-0.7.0.ebuild index 975e49fcdd70..ef0e0852d0c4 100644 --- a/dev-python/warlock/warlock-0.7.0.ebuild +++ b/dev-python/warlock/warlock-0.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-python/warlock/warlock-0.7.0.ebuild,v 1.2 2013/01/17 19:20:55 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/warlock/warlock-0.7.0.ebuild,v 1.3 2013/01/20 06:34:54 prometheanfire Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) @@ -18,9 +18,9 @@ IUSE="test" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] test? ( virtual/python-unittest2[${PYTHON_USEDEP}] - dev-python/jsonpatch[${PYTHON_USEDEP}] + =dev-python/jsonpatch-0.10[${PYTHON_USEDEP}] dev-python/jsonschema[${PYTHON_USEDEP}] )" -RDEPEND="dev-python/jsonpatch[${PYTHON_USEDEP}] +RDEPEND="=dev-python/jsonpatch-0.10[${PYTHON_USEDEP}] dev-python/jsonschema[${PYTHON_USEDEP}]" python_test() { diff --git a/dev-ruby/actionmailer/Manifest b/dev-ruby/actionmailer/Manifest index 71e7efff903b..35fcd5d61116 100644 --- a/dev-ruby/actionmailer/Manifest +++ b/dev-ruby/actionmailer/Manifest @@ -1,9 +1,5 @@ -DIST actionmailer-2.3.14.gem 273920 SHA256 d947dae01726b9c1a218456f40147fd5c6ad3b73ec34656474a345f66920dbe5 SHA512 834384d8a254e5923d0bb8fe623a88fd3b6061f0d06fff0aae6a2a75fd340e0ee5222716951326d053eabada0ba75d15d1f4bd8ce6a9bd63d052786d4bcbafeb WHIRLPOOL 5df4c47f92a72cefe2cd73351869b0c70ef07b54e15220fdb16163fdc9455f816044742783d25f0662d4a07dd4254fd3802add018f7a32dc92ea56e8fb531752 DIST actionmailer-2.3.15.gem 273920 SHA256 9b635cfff21a47f69d4e2ed4080597a94a86a4d627734128e41c8ae9bcd4317a SHA512 cf25d00aafb50d485c17eff97214f71e4ff6909fbd89ffb18b3b50604a0e498fdf6a483e681f0e79dbfca33ecd8c44c1b9db6815f543dc2fc6a560d6eb618eb0 WHIRLPOOL ea01031e31305c1066906973561756f886069083649a9835ea1edc9f029f383fcb9f05011562877a12a5fb792389a5369ee936396e9d97665ade0bbf350004c4 -DIST rails-3.0.18.tgz 3509111 SHA256 a9cd1373e01fc5a4a07e30146f38b35b4726fb52ab194801deaeee9b9c016c51 SHA512 e1dcfefd22972b6e8e96fcddb8fc0e1cdef3c50795f525d3f98900239316c5b4347e9a693e4f0d0cec5fed443717458a4d2563a8ff1cdbdf14882e1cdb2b9066 WHIRLPOOL 60417d3e6297ca73d4beccf3b659928f948a827e1a2c92db72c34181f612ebe58f1633164d832dc7c5a4567c1758fd97921c82ced33d2737dd719ea322754c35 DIST rails-3.0.19.tgz 3510042 SHA256 a8a9c7ce5aba53bc13d6621ddf2b55adf1f8ad18999217580af2171db30cec43 SHA512 98ccc8724767202999007592571e9aff85fe121616d4e31409cbdd0917e8419c858b4e9cb547721da0e5bd6e5c46f3c31344c91227abef97009ad96bfe31f952 WHIRLPOOL 2d8bf0941d8a6efc78a69601ea8c44f61026974aa3ff58ab076873388866dd3d05eb9a7ad0db4e6772e17cb2b4c4c2113b5bb506066d7dd9b508b44a2a52cf76 DIST rails-3.1.10.tgz 3394031 SHA256 d0614db8c4011ed1fcb4bd0afeb8220634b1ec8b196ee40a956c77a76026ef65 SHA512 c6b3db4043345c81582ab22289c29630e3946dc1936adebff0af196f461236805ab146e74ed400fe045d980df562ae44479e36c2c8747ed8a6ba6807add23e6b WHIRLPOOL 5329cd31170ce2ee7c109c9c1152b5eed35c8ec1af48a84d03eff4bb4fe083a7a9840ceb076575961d84c6baeb725fe1c5eed1a4756d39a8bc52a26f23dc6123 DIST rails-3.1.3.tgz 3638313 SHA256 412c8a3ae4e0d5283ace45a2ee95127418d6b70fb1a954087b09755ab3a25e99 SHA512 286434f02c16f9cde51c160a5f84ac9b53d9d3aaf44c6c8018cef3250213cd39909013006223cceea8bd68ffe0bdc8ce50b0695e57756d8bb9ec44ab5986a711 WHIRLPOOL 710aa7c64c71b46741e19be41023aa6acf7dfeb25b94f8f14c10748f4a4a4cacd61ecf51a9db0b4eae1d0a1797f4287fd9b0f139a874f1659cab8fa5f252c200 -DIST rails-3.1.9.tgz 3394638 SHA256 4074445226cc00ac8f0b0c6b5578a14d7b3614af948ed1993711d75cf7efdd83 SHA512 c44fe3fba7526e2ccda6bf31b0fa94f59141484abf7deb3453287487f7a2cb226b41434d6240ad4677f51d76cc6818f76e7e3ca90e289cd52079bee988c44c1a WHIRLPOOL 2cb16ba25c77cae03cd4558b34a2ed44547c5bdcc3f59510cdb77283c6f9c2d86c0d0cbd2a497f1de4cf34ae930d1c9f59d88035acc113fb9abac42792abf710 -DIST rails-3.2.10.tgz 3546186 SHA256 068a910b8798a9b65492b6da3b9e45f28ce9d4bb5cef53c7d0f87a12d074d190 SHA512 4df0fa285d45c4a058e748d121b8ce43226c6738737e61d29b1e30141acde783535a89d4c115f8a1e37c46d06735462ecd16c8319caf43626790fce6e04aa5b5 WHIRLPOOL 8eb627d5622be368be699899f2fb6f8eed2a225a4b84823968c422d992e01ff1802504020edea3245f24a9d45f7625576278ea4fffb5dd4fc58ae877005aeb9c DIST rails-3.2.11.tgz 3547068 SHA256 3f05603f84bfb7a99f999f878af247533706255e6b3baa4111439b6f5fd8ab70 SHA512 50644772186127887bd4d7537ad41cbe549c5c8496274cad2765f21859528a0f42f5b8dbe3a1627a08b1724b2e019c0ec6526cccfdff3da4ffcec285f9259558 WHIRLPOOL 70d5620fc611872b2af62351c81abbe43b3b1d41c92a1d1935cef704a4a655c9bb043599bc758c947c14378ef52e34b44c61536d5a048401cc6bfaef613eba23 diff --git a/dev-ruby/actionmailer/actionmailer-2.3.14.ebuild b/dev-ruby/actionmailer/actionmailer-2.3.14.ebuild deleted file mode 100644 index 2d8195de18ff..000000000000 --- a/dev-ruby/actionmailer/actionmailer-2.3.14.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/dev-ruby/actionmailer/actionmailer-2.3.14.ebuild,v 1.6 2012/05/01 18:24:08 armin76 Exp $ - -EAPI=2 -USE_RUBY="ruby18 ree18 jruby" - -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG README" - -inherit ruby-fakegem - -DESCRIPTION="Framework for designing email-service layers" -HOMEPAGE="http://rubyforge.org/projects/actionmailer/" - -LICENSE="MIT" -SLOT="2.3" -KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" -IUSE="" - -RUBY_PATCHES=( "${PN}-2.3.10-rails3.patch" ) - -ruby_add_rdepend "~dev-ruby/actionpack-${PV} - >=dev-ruby/text-format-0.6.3 - >=dev-ruby/tmail-1.2.3" -ruby_add_bdepend "test? ( - >=dev-ruby/mocha-0.9.5 - virtual/ruby-test-unit -)" - -all_ruby_prepare() { - # Custom template not found in package - sed -i -e '/horo/d' Rakefile || die -} diff --git a/dev-ruby/actionmailer/actionmailer-3.0.18.ebuild b/dev-ruby/actionmailer/actionmailer-3.0.18.ebuild deleted file mode 100644 index 9ff2342d97f7..000000000000 --- a/dev-ruby/actionmailer/actionmailer-3.0.18.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionmailer/actionmailer-3.0.18.ebuild,v 1.1 2013/01/03 08:06:04 graaff Exp $ - -EAPI=4 -USE_RUBY="ruby18 ree18" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="actionmailer.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Framework for designing email-service layers" -HOMEPAGE="http://rubyforge.org/projects/actionmailer/" -SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="3.0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -RUBY_S="rails-rails-*/actionmailer" - -ruby_add_rdepend "~dev-ruby/actionpack-${PV} - >=dev-ruby/mail-2.2.19" -ruby_add_bdepend "test? ( - >=dev-ruby/mocha-0.10.5 -)" - -all_ruby_prepare() { - # Set test environment to our hand. - rm "${S}/../Gemfile" || die "Unable to remove Gemfile" - sed -i -e '/\/load_paths/d' test/abstract_unit.rb || die "Unable to remove load paths" - - sed -i -e '/dependency.*mail/s:~>:>=:' "${RUBY_FAKEGEM_GEMSPEC}" || die - - # Rename private method to avoid conflict with the simple_format - # TextHelper. Already fixed in Rails 3.1. - sed -i -e 's/simple_format/format_paragraph/' lib/action_mailer/mail_helper.rb || die -} diff --git a/dev-ruby/actionmailer/actionmailer-3.1.9.ebuild b/dev-ruby/actionmailer/actionmailer-3.1.9.ebuild deleted file mode 100644 index 96b8f3f939ad..000000000000 --- a/dev-ruby/actionmailer/actionmailer-3.1.9.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionmailer/actionmailer-3.1.9.ebuild,v 1.2 2013/01/16 00:22:38 zerochaos Exp $ - -EAPI=4 -USE_RUBY="ruby18 ruby19 ree18" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="actionmailer.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Framework for designing email-service layers" -HOMEPAGE="http://rubyforge.org/projects/actionmailer/" -SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="3.1" -KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -RUBY_S="rails-rails-*/actionmailer" - -ruby_add_rdepend "~dev-ruby/actionpack-${PV} - >=dev-ruby/mail-2.3.3:2.3" -ruby_add_bdepend "test? ( - >=dev-ruby/mocha-0.9.5 - virtual/ruby-test-unit -)" - -all_ruby_prepare() { - # Set test environment to our hand. - rm "${S}/../Gemfile" || die "Unable to remove Gemfile" - sed -i -e '/\/load_paths/d' test/abstract_unit.rb || die "Unable to remove load paths" - - sed -i -e '/dependency.*mail/s:~>:>=:' "${RUBY_FAKEGEM_GEMSPEC}" || die -} diff --git a/dev-ruby/actionmailer/actionmailer-3.2.10.ebuild b/dev-ruby/actionmailer/actionmailer-3.2.10.ebuild deleted file mode 100644 index 34acd9cd2841..000000000000 --- a/dev-ruby/actionmailer/actionmailer-3.2.10.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionmailer/actionmailer-3.2.10.ebuild,v 1.2 2013/01/16 00:29:48 zerochaos Exp $ - -EAPI=4 -USE_RUBY="ruby18 ruby19 ree18" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="actionmailer.gemspec" - -inherit ruby-fakegem versionator - -DESCRIPTION="Framework for designing email-service layers" -HOMEPAGE="http://rubyforge.org/projects/actionmailer/" -SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="$(get_version_component_range 1-2)" -KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -RUBY_S="rails-rails-*/actionmailer" - -ruby_add_rdepend "~dev-ruby/actionpack-${PV} - >=dev-ruby/mail-2.4.4" -ruby_add_bdepend "test? ( - >=dev-ruby/mocha-0.12.1 =dev-ruby/mocha-0.12* -)" - -all_ruby_prepare() { - # Set test environment to our hand. - rm "${S}/../Gemfile" || die "Unable to remove Gemfile" - sed -i -e '/\/load_paths/d' test/abstract_unit.rb || die "Unable to remove load paths" -} diff --git a/dev-ruby/actionpack/Manifest b/dev-ruby/actionpack/Manifest index 216112653bad..b3026af67e9c 100644 --- a/dev-ruby/actionpack/Manifest +++ b/dev-ruby/actionpack/Manifest @@ -1,9 +1,5 @@ -DIST actionpack-2.3.14.gem 749056 SHA256 8cf13574f8a46d9bc04627e9aeb3622fb31ace4a599b41ea9623e1ad6e1ad8a1 SHA512 45239dc309f574501fb585ada693430e6c4e0c4d5658a2d02c351c8ce3c6cc574642cc845684dd9c8be4007574787067eb5a5bc5cebd67f93ec2d053cf50ce9d WHIRLPOOL bc1306f3ef0dfe98219823d49d0b28c6e51c673daae86f841edec1e6105ad5eecdaf275af7ceb237086f18abdee4a3fa6eb44ce2a8ad6f05c862500f157e11da DIST actionpack-2.3.15.gem 749056 SHA256 7fe685d93655ded1b5f2a63617c0bc1fa9b7a0a755680771fca44bc60dca0ffd SHA512 08a8288b96a89e1587fddd5cecb665b084a5798391fc314aa9475499807d710e3912176b4087385065ae0d3a60075576d4d02019cecec3b8b8f05b735c16743c WHIRLPOOL d5a3195d2079387791cd4eef66c9225382b1791b7582aa150e42a63aa0659b493ca58bce5af4b53f30d94279d599ef38098044b019e2085b1a805e1d7a3a1d78 -DIST rails-3.0.18.tgz 3509111 SHA256 a9cd1373e01fc5a4a07e30146f38b35b4726fb52ab194801deaeee9b9c016c51 SHA512 e1dcfefd22972b6e8e96fcddb8fc0e1cdef3c50795f525d3f98900239316c5b4347e9a693e4f0d0cec5fed443717458a4d2563a8ff1cdbdf14882e1cdb2b9066 WHIRLPOOL 60417d3e6297ca73d4beccf3b659928f948a827e1a2c92db72c34181f612ebe58f1633164d832dc7c5a4567c1758fd97921c82ced33d2737dd719ea322754c35 DIST rails-3.0.19.tgz 3510042 SHA256 a8a9c7ce5aba53bc13d6621ddf2b55adf1f8ad18999217580af2171db30cec43 SHA512 98ccc8724767202999007592571e9aff85fe121616d4e31409cbdd0917e8419c858b4e9cb547721da0e5bd6e5c46f3c31344c91227abef97009ad96bfe31f952 WHIRLPOOL 2d8bf0941d8a6efc78a69601ea8c44f61026974aa3ff58ab076873388866dd3d05eb9a7ad0db4e6772e17cb2b4c4c2113b5bb506066d7dd9b508b44a2a52cf76 DIST rails-3.1.10.tgz 3394031 SHA256 d0614db8c4011ed1fcb4bd0afeb8220634b1ec8b196ee40a956c77a76026ef65 SHA512 c6b3db4043345c81582ab22289c29630e3946dc1936adebff0af196f461236805ab146e74ed400fe045d980df562ae44479e36c2c8747ed8a6ba6807add23e6b WHIRLPOOL 5329cd31170ce2ee7c109c9c1152b5eed35c8ec1af48a84d03eff4bb4fe083a7a9840ceb076575961d84c6baeb725fe1c5eed1a4756d39a8bc52a26f23dc6123 DIST rails-3.1.3.tgz 3638313 SHA256 412c8a3ae4e0d5283ace45a2ee95127418d6b70fb1a954087b09755ab3a25e99 SHA512 286434f02c16f9cde51c160a5f84ac9b53d9d3aaf44c6c8018cef3250213cd39909013006223cceea8bd68ffe0bdc8ce50b0695e57756d8bb9ec44ab5986a711 WHIRLPOOL 710aa7c64c71b46741e19be41023aa6acf7dfeb25b94f8f14c10748f4a4a4cacd61ecf51a9db0b4eae1d0a1797f4287fd9b0f139a874f1659cab8fa5f252c200 -DIST rails-3.1.9.tgz 3394638 SHA256 4074445226cc00ac8f0b0c6b5578a14d7b3614af948ed1993711d75cf7efdd83 SHA512 c44fe3fba7526e2ccda6bf31b0fa94f59141484abf7deb3453287487f7a2cb226b41434d6240ad4677f51d76cc6818f76e7e3ca90e289cd52079bee988c44c1a WHIRLPOOL 2cb16ba25c77cae03cd4558b34a2ed44547c5bdcc3f59510cdb77283c6f9c2d86c0d0cbd2a497f1de4cf34ae930d1c9f59d88035acc113fb9abac42792abf710 -DIST rails-3.2.10.tgz 3546186 SHA256 068a910b8798a9b65492b6da3b9e45f28ce9d4bb5cef53c7d0f87a12d074d190 SHA512 4df0fa285d45c4a058e748d121b8ce43226c6738737e61d29b1e30141acde783535a89d4c115f8a1e37c46d06735462ecd16c8319caf43626790fce6e04aa5b5 WHIRLPOOL 8eb627d5622be368be699899f2fb6f8eed2a225a4b84823968c422d992e01ff1802504020edea3245f24a9d45f7625576278ea4fffb5dd4fc58ae877005aeb9c DIST rails-3.2.11.tgz 3547068 SHA256 3f05603f84bfb7a99f999f878af247533706255e6b3baa4111439b6f5fd8ab70 SHA512 50644772186127887bd4d7537ad41cbe549c5c8496274cad2765f21859528a0f42f5b8dbe3a1627a08b1724b2e019c0ec6526cccfdff3da4ffcec285f9259558 WHIRLPOOL 70d5620fc611872b2af62351c81abbe43b3b1d41c92a1d1935cef704a4a655c9bb043599bc758c947c14378ef52e34b44c61536d5a048401cc6bfaef613eba23 diff --git a/dev-ruby/actionpack/actionpack-2.3.14.ebuild b/dev-ruby/actionpack/actionpack-2.3.14.ebuild deleted file mode 100644 index 157075bff16d..000000000000 --- a/dev-ruby/actionpack/actionpack-2.3.14.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/actionpack-2.3.14.ebuild,v 1.6 2012/05/01 18:24:02 armin76 Exp $ - -EAPI=2 - -USE_RUBY="ruby18 ree18 jruby" - -# The default test task tries to test activerecord with SQLite as well. -RUBY_FAKEGEM_TASK_TEST="test_action_pack" - -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG README" - -inherit ruby-fakegem - -DESCRIPTION="Eases web-request routing, handling, and response." -HOMEPAGE="http://rubyforge.org/projects/actionpack/" - -LICENSE="MIT" -SLOT="2.3" -KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" -IUSE="" - -RUBY_PATCHES=( "${PN}-2.3.11-rails3.patch" "${PN}-2.3.10-i18n-0.4.2.patch" ) - -ruby_add_rdepend "~dev-ruby/activesupport-${PV} - >=dev-ruby/rack-1.1.0:0" - -ruby_add_bdepend " - test? ( - >=dev-ruby/mocha-0.9.7 - dev-ruby/activerecord:${SLOT} - ~dev-ruby/actionmailer-${PV} - )" - -all_ruby_prepare() { - # Custom template not found in package - sed -i -e '/horo/d' Rakefile || die - - # This tries to load a “vendorized” copy of activerecord that we - # will never have. It can now also use a normally installed - # version but these tests fail. - sed -i -e '/PATH_TO_AR/s:^:#:' -e 's/self.able_to_connect = true/self.able_to_connect = false/' test/active_record_unit.rb || die - - # Fix the testsuite, the symlink is not present in the gem for - # some reason - ln -s ../../symlink_parent test/fixtures/layout_tests/layouts/symlinked - - # MemCacheStore tests no longer fail gracefully, and it's unlikely for - # someone to have them running anyway, so remove them for now. - rm test/controller/session/mem_cache_store_test.rb || die - - # Fix tests when run against i18n 0.4.2 which ignores locale - # definitions with an empty data section. - sed -i -e 's/, {}/, {:test => "test"}/' test/template/render_test.rb || die -} diff --git a/dev-ruby/actionpack/actionpack-3.0.18.ebuild b/dev-ruby/actionpack/actionpack-3.0.18.ebuild deleted file mode 100644 index a586c939c68d..000000000000 --- a/dev-ruby/actionpack/actionpack-3.0.18.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/actionpack-3.0.18.ebuild,v 1.1 2013/01/03 08:05:43 graaff Exp $ - -EAPI=4 - -USE_RUBY="ruby18 ree18" - -# The default test task tries to test activerecord with SQLite as well. -RUBY_FAKEGEM_TASK_TEST="test_action_pack" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="actionpack.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Eases web-request routing, handling, and response." -HOMEPAGE="http://rubyforge.org/projects/actionpack/" -SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="3.0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -RUBY_S="rails-rails-*/actionpack" - -ruby_add_rdepend " - ~dev-ruby/activemodel-${PV} - ~dev-ruby/activesupport-${PV} - >=dev-ruby/builder-2.1.2:0 - >=dev-ruby/erubis-2.6.6 - >=dev-ruby/i18n-0.5.0:0.5 - >=dev-ruby/rack-1.2.5:1.2 - >=dev-ruby/rack-mount-0.6.14:0.6 - >=dev-ruby/rack-test-0.5.7:0.5 - >=dev-ruby/tzinfo-0.3.23" - -ruby_add_bdepend " - test? ( - dev-ruby/bundler - >=dev-ruby/mocha-0.10.5 - ~dev-ruby/activerecord-${PV} - ~dev-ruby/actionmailer-${PV} - )" - -all_ruby_prepare() { - # Remove items from the common Gemfile that we don't need for this - # test run. This also requires handling some gemspecs. - sed -i -e '/\(system_timer\|horo\|faker\|rbench\|ruby-debug\|pg\|mysql2\)/d' ../Gemfile || die - sed -i -e '/thor/d' ../railties/railties.gemspec || die - sed -i -e '/mail/d' ../actionmailer/actionmailer.gemspec || die - - # Loosen erubis dependency since this is not slotted. - sed -i -e 's/~> 2.6.6/>= 2.6.6/' actionpack.gemspec || die - - # Loosen mocha version restriction - sed -i -e 's/0.10.5/>= 0.10.5/' ../Gemfile || die - - # Ignore failure introduced by security measures in 3.0.17. - sed -i -e '/test_select_tag_escapes_prompt/,/end/ s:^:#:' test/template/form_tag_helper_test.rb || die -} diff --git a/dev-ruby/actionpack/actionpack-3.1.9.ebuild b/dev-ruby/actionpack/actionpack-3.1.9.ebuild deleted file mode 100644 index a1da1dbcf11b..000000000000 --- a/dev-ruby/actionpack/actionpack-3.1.9.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/actionpack-3.1.9.ebuild,v 1.2 2013/01/16 00:48:46 zerochaos Exp $ - -EAPI=4 - -USE_RUBY="ruby18 ruby19 ree18" - -# The default test task tries to test activerecord with SQLite as well. -RUBY_FAKEGEM_TASK_TEST="test_action_pack" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="actionpack.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Eases web-request routing, handling, and response." -HOMEPAGE="http://rubyforge.org/projects/actionpack/" -SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="3.1" -KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -RUBY_S="rails-rails-*/actionpack" - -ruby_add_rdepend " - ~dev-ruby/activemodel-${PV} - ~dev-ruby/activesupport-${PV} - >=dev-ruby/rack-cache-1.2 - >=dev-ruby/builder-3.0.0:3 - >=dev-ruby/erubis-2.7.0 - >=dev-ruby/i18n-0.6:0.6 - >=dev-ruby/rack-1.3.6:1.3 - >=dev-ruby/rack-mount-0.8.2:0.8 - >=dev-ruby/rack-test-0.6.1:0.6 - >=dev-ruby/sprockets-2.0.4:2.0" - -ruby_add_bdepend " - test? ( - dev-ruby/mocha - dev-ruby/bundler - ~dev-ruby/activerecord-${PV} - ~dev-ruby/actionmailer-${PV} - >=dev-ruby/tzinfo-0.3.29 - )" - -all_ruby_prepare() { - # Remove items from the common Gemfile that we don't need for this - # test run. This also requires handling some gemspecs. - sed -i -e '/\(uglifier\|system_timer\|sdoc\|w3c_validators\|pg\|jquery-rails\|"mysql"\|ruby-prof\|benchmark-ips\)/d' ../Gemfile || die - - sed -i -e '/\(rack-ssl\|thor\)/d' ../railties/railties.gemspec || die - sed -i -e '/mail/d' ../actionmailer/actionmailer.gemspec || die - sed -i -e "s/, '< 1.3'//" ../activesupport/activesupport.gemspec || die - - # Loosen mocha version restriction - sed -i -e 's/0.10.5/>= 0.10.5/' ../Gemfile || die - - # Avoid fragile tests depending on hash ordering - sed -i -e '/cookie_3=chocolate/ s:^:#:' test/controller/integration_test.rb || die - sed -i -e '/test_to_s/,/end/ s:^:#:' test/template/html-scanner/tag_node_test.rb || die - sed -i -e '/"name":"david"/ s:^:#:' test/controller/mime_responds_test.rb || die - sed -i -e '/test_option_html_attributes_with_multiple_element_hash/, / end/ s:^:#:' test/template/form_options_helper_test.rb || die - sed -i -e '/test_option_html_attributes_with_multiple_hashes/, / end/ s:^:#:' test/template/form_options_helper_test.rb || die -} diff --git a/dev-ruby/actionpack/actionpack-3.2.10.ebuild b/dev-ruby/actionpack/actionpack-3.2.10.ebuild deleted file mode 100644 index 3f7f439c39cd..000000000000 --- a/dev-ruby/actionpack/actionpack-3.2.10.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/actionpack-3.2.10.ebuild,v 1.2 2013/01/16 00:48:46 zerochaos Exp $ - -EAPI=4 - -USE_RUBY="ruby18 ruby19 ree18" - -# The default test task tries to test activerecord with SQLite as well. -RUBY_FAKEGEM_TASK_TEST="test_action_pack" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="actionpack.gemspec" - -inherit ruby-fakegem versionator - -DESCRIPTION="Eases web-request routing, handling, and response." -HOMEPAGE="http://rubyforge.org/projects/actionpack/" -SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="$(get_version_component_range 1-2)" -KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -RUBY_S="rails-rails-*/actionpack" - -ruby_add_rdepend " - ~dev-ruby/activemodel-${PV} - ~dev-ruby/activesupport-${PV} - >=dev-ruby/rack-cache-1.2 - >=dev-ruby/builder-3.0.0:3 - >=dev-ruby/erubis-2.7.0 - >=dev-ruby/i18n-0.6:0.6 - >=dev-ruby/rack-1.4.0:1.4 - >=dev-ruby/rack-test-0.6.1:0.6 - >=dev-ruby/journey-1.0.4:1.0 - >=dev-ruby/sprockets-2.2.1:2.2" - -ruby_add_bdepend " - test? ( - >=dev-ruby/mocha-0.12.1 - dev-ruby/bundler - ~dev-ruby/activerecord-${PV} - ~dev-ruby/actionmailer-${PV} - >=dev-ruby/tzinfo-0.3.29 - >=dev-ruby/uglifier-1.0.3 - )" - -all_ruby_prepare() { - # Remove items from the common Gemfile that we don't need for this - # test run. This also requires handling some gemspecs. - sed -i -e "/\(system_timer\|sdoc\|w3c_validators\|pg\|jquery-rails\|'mysql'\|journey\|ruby-prof\|benchmark-ips\)/d" ../Gemfile || die - - sed -i -e '/rack-ssl/d' ../railties/railties.gemspec || die - sed -i -e '/mail/d' ../actionmailer/actionmailer.gemspec || die - - # Avoid fragile tests depending on hash ordering - sed -i -e '/cookie_3=chocolate/ s:^:#:' test/controller/integration_test.rb || die - sed -i -e '/test_to_s/,/end/ s:^:#:' test/template/html-scanner/tag_node_test.rb || die - sed -i -e '/"name":"david"/ s:^:#:' test/controller/mime_responds_test.rb || die - sed -i -e '/test_option_html_attributes_with_multiple_element_hash/, / end/ s:^:#:' test/template/form_options_helper_test.rb || die - sed -i -e '/test_option_html_attributes_with_multiple_hashes/, / end/ s:^:#:' test/template/form_options_helper_test.rb || die -} diff --git a/dev-ruby/activemodel/Manifest b/dev-ruby/activemodel/Manifest index 8d8902f68a91..0ae4d3d8975e 100644 --- a/dev-ruby/activemodel/Manifest +++ b/dev-ruby/activemodel/Manifest @@ -1,7 +1,4 @@ -DIST rails-3.0.18.tgz 3509111 SHA256 a9cd1373e01fc5a4a07e30146f38b35b4726fb52ab194801deaeee9b9c016c51 SHA512 e1dcfefd22972b6e8e96fcddb8fc0e1cdef3c50795f525d3f98900239316c5b4347e9a693e4f0d0cec5fed443717458a4d2563a8ff1cdbdf14882e1cdb2b9066 WHIRLPOOL 60417d3e6297ca73d4beccf3b659928f948a827e1a2c92db72c34181f612ebe58f1633164d832dc7c5a4567c1758fd97921c82ced33d2737dd719ea322754c35 DIST rails-3.0.19.tgz 3510042 SHA256 a8a9c7ce5aba53bc13d6621ddf2b55adf1f8ad18999217580af2171db30cec43 SHA512 98ccc8724767202999007592571e9aff85fe121616d4e31409cbdd0917e8419c858b4e9cb547721da0e5bd6e5c46f3c31344c91227abef97009ad96bfe31f952 WHIRLPOOL 2d8bf0941d8a6efc78a69601ea8c44f61026974aa3ff58ab076873388866dd3d05eb9a7ad0db4e6772e17cb2b4c4c2113b5bb506066d7dd9b508b44a2a52cf76 DIST rails-3.1.10.tgz 3394031 SHA256 d0614db8c4011ed1fcb4bd0afeb8220634b1ec8b196ee40a956c77a76026ef65 SHA512 c6b3db4043345c81582ab22289c29630e3946dc1936adebff0af196f461236805ab146e74ed400fe045d980df562ae44479e36c2c8747ed8a6ba6807add23e6b WHIRLPOOL 5329cd31170ce2ee7c109c9c1152b5eed35c8ec1af48a84d03eff4bb4fe083a7a9840ceb076575961d84c6baeb725fe1c5eed1a4756d39a8bc52a26f23dc6123 DIST rails-3.1.3.tgz 3638313 SHA256 412c8a3ae4e0d5283ace45a2ee95127418d6b70fb1a954087b09755ab3a25e99 SHA512 286434f02c16f9cde51c160a5f84ac9b53d9d3aaf44c6c8018cef3250213cd39909013006223cceea8bd68ffe0bdc8ce50b0695e57756d8bb9ec44ab5986a711 WHIRLPOOL 710aa7c64c71b46741e19be41023aa6acf7dfeb25b94f8f14c10748f4a4a4cacd61ecf51a9db0b4eae1d0a1797f4287fd9b0f139a874f1659cab8fa5f252c200 -DIST rails-3.1.9.tgz 3394638 SHA256 4074445226cc00ac8f0b0c6b5578a14d7b3614af948ed1993711d75cf7efdd83 SHA512 c44fe3fba7526e2ccda6bf31b0fa94f59141484abf7deb3453287487f7a2cb226b41434d6240ad4677f51d76cc6818f76e7e3ca90e289cd52079bee988c44c1a WHIRLPOOL 2cb16ba25c77cae03cd4558b34a2ed44547c5bdcc3f59510cdb77283c6f9c2d86c0d0cbd2a497f1de4cf34ae930d1c9f59d88035acc113fb9abac42792abf710 -DIST rails-3.2.10.tgz 3546186 SHA256 068a910b8798a9b65492b6da3b9e45f28ce9d4bb5cef53c7d0f87a12d074d190 SHA512 4df0fa285d45c4a058e748d121b8ce43226c6738737e61d29b1e30141acde783535a89d4c115f8a1e37c46d06735462ecd16c8319caf43626790fce6e04aa5b5 WHIRLPOOL 8eb627d5622be368be699899f2fb6f8eed2a225a4b84823968c422d992e01ff1802504020edea3245f24a9d45f7625576278ea4fffb5dd4fc58ae877005aeb9c DIST rails-3.2.11.tgz 3547068 SHA256 3f05603f84bfb7a99f999f878af247533706255e6b3baa4111439b6f5fd8ab70 SHA512 50644772186127887bd4d7537ad41cbe549c5c8496274cad2765f21859528a0f42f5b8dbe3a1627a08b1724b2e019c0ec6526cccfdff3da4ffcec285f9259558 WHIRLPOOL 70d5620fc611872b2af62351c81abbe43b3b1d41c92a1d1935cef704a4a655c9bb043599bc758c947c14378ef52e34b44c61536d5a048401cc6bfaef613eba23 diff --git a/dev-ruby/activemodel/activemodel-3.0.18.ebuild b/dev-ruby/activemodel/activemodel-3.0.18.ebuild deleted file mode 100644 index 448b4a81a062..000000000000 --- a/dev-ruby/activemodel/activemodel-3.0.18.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activemodel/activemodel-3.0.18.ebuild,v 1.1 2013/01/03 08:04:52 graaff Exp $ - -EAPI=4 - -USE_RUBY="ruby18 ree18" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_DOCDIR="" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="activemodel.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="A toolkit for building modeling frameworks like Active Record and Active Resource." -HOMEPAGE="http://github.com/rails/rails" -SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="3.0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -RUBY_S="rails-rails-*/activemodel" - -ruby_add_rdepend " - ~dev-ruby/activesupport-${PV} - >=dev-ruby/builder-2.1.2 - >=dev-ruby/i18n-0.5.0:0.5" - -ruby_add_bdepend " - test? ( - dev-ruby/ruby-debug - >=dev-ruby/mocha-0.9.5 - virtual/ruby-test-unit - )" - -all_ruby_prepare() { - # Set test environment to our hand. - rm "${S}/../Gemfile" || die "Unable to remove Gemfile" - sed -i -e '/load_paths/d' test/cases/helper.rb || die "Unable to remove load paths" -} diff --git a/dev-ruby/activemodel/activemodel-3.1.9.ebuild b/dev-ruby/activemodel/activemodel-3.1.9.ebuild deleted file mode 100644 index 1b1ae7ab19ba..000000000000 --- a/dev-ruby/activemodel/activemodel-3.1.9.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activemodel/activemodel-3.1.9.ebuild,v 1.2 2013/01/16 00:44:01 zerochaos Exp $ - -EAPI=4 - -USE_RUBY="ruby18 ruby19 ree18" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_DOCDIR="" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="activemodel.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="A toolkit for building modeling frameworks like Active Record and Active Resource." -HOMEPAGE="http://github.com/rails/rails" -SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="3.1" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -RUBY_S="rails-rails-*/activemodel" - -ruby_add_rdepend " - ~dev-ruby/activesupport-${PV} - >=dev-ruby/builder-3.0.0 - >=dev-ruby/i18n-0.6.0:0.6 - >=dev-ruby/bcrypt-ruby-3.0.0" - -ruby_add_bdepend " - test? ( - >=dev-ruby/mocha-0.9.5 - )" - -all_ruby_prepare() { - # Set test environment to our hand. - rm "${S}/../Gemfile" || die "Unable to remove Gemfile" - sed -i -e '/load_paths/d' test/cases/helper.rb || die "Unable to remove load paths" -} diff --git a/dev-ruby/activemodel/activemodel-3.2.10.ebuild b/dev-ruby/activemodel/activemodel-3.2.10.ebuild deleted file mode 100644 index 18b9eefcaf85..000000000000 --- a/dev-ruby/activemodel/activemodel-3.2.10.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activemodel/activemodel-3.2.10.ebuild,v 1.2 2013/01/16 00:44:01 zerochaos Exp $ - -EAPI=4 - -USE_RUBY="ruby18 ruby19 ree18" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_DOCDIR="" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="activemodel.gemspec" - -inherit ruby-fakegem versionator - -DESCRIPTION="A toolkit for building modeling frameworks like Active Record and Active Resource." -HOMEPAGE="http://github.com/rails/rails" -SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="$(get_version_component_range 1-2)" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -RUBY_S="rails-rails-*/activemodel" - -ruby_add_rdepend " - ~dev-ruby/activesupport-${PV} - >=dev-ruby/builder-3.0.0 - >=dev-ruby/bcrypt-ruby-3.0.0" - -ruby_add_bdepend " - test? ( - >=dev-ruby/mocha-0.9.5 - )" - -all_ruby_prepare() { - # Set test environment to our hand. - rm "${S}/../Gemfile" || die "Unable to remove Gemfile" - sed -i -e '/load_paths/d' test/cases/helper.rb || die "Unable to remove load paths" -} diff --git a/dev-ruby/activerecord/Manifest b/dev-ruby/activerecord/Manifest index e983cf753948..44071b10928e 100644 --- a/dev-ruby/activerecord/Manifest +++ b/dev-ruby/activerecord/Manifest @@ -1,9 +1,5 @@ -DIST activerecord-2.3.14.gem 541184 SHA256 83a3c115c30427158dc3b5eec42dd1f88482171eac12ea11668171aaa41202f2 SHA512 5a00c5c4c699099a756ef360e481e5cbef8f14383306ef890959e986f05f0fb21a1aca579fc327d08e2d1ff3772e0d78c35ebdebe62ff4b7555885dec11d6d79 WHIRLPOOL dab96fadf5ec54d941afd1ace0e911830a1ec81450a217ce53cf73b45dd67bf0f942134e45ecde2fae02d1bfccddd437cfcc336648ed0fe6443c5aaa4ff0a8d3 DIST activerecord-2.3.15.gem 541184 SHA256 2f97c0f8346466f5125f8181f00cd2162e915b5205162abb8ae2f5d72c7406e8 SHA512 6699656491355f236fc733dc924c134c0cb4ac83523c3adc5717d2af438fcbf8172668f85b8636cec745e8113877128941001417e18ca7efd92d99f57b15d449 WHIRLPOOL 54c907a48854ece97830b4903c8c1a1c4171477d76b9d650a61a07c7a9520ea940ac4ac18868038c18f443bb9bc2cc8f1bca612b4cf68321fe3db54155483a2b -DIST rails-3.0.18.tgz 3509111 SHA256 a9cd1373e01fc5a4a07e30146f38b35b4726fb52ab194801deaeee9b9c016c51 SHA512 e1dcfefd22972b6e8e96fcddb8fc0e1cdef3c50795f525d3f98900239316c5b4347e9a693e4f0d0cec5fed443717458a4d2563a8ff1cdbdf14882e1cdb2b9066 WHIRLPOOL 60417d3e6297ca73d4beccf3b659928f948a827e1a2c92db72c34181f612ebe58f1633164d832dc7c5a4567c1758fd97921c82ced33d2737dd719ea322754c35 DIST rails-3.0.19.tgz 3510042 SHA256 a8a9c7ce5aba53bc13d6621ddf2b55adf1f8ad18999217580af2171db30cec43 SHA512 98ccc8724767202999007592571e9aff85fe121616d4e31409cbdd0917e8419c858b4e9cb547721da0e5bd6e5c46f3c31344c91227abef97009ad96bfe31f952 WHIRLPOOL 2d8bf0941d8a6efc78a69601ea8c44f61026974aa3ff58ab076873388866dd3d05eb9a7ad0db4e6772e17cb2b4c4c2113b5bb506066d7dd9b508b44a2a52cf76 DIST rails-3.1.10.tgz 3394031 SHA256 d0614db8c4011ed1fcb4bd0afeb8220634b1ec8b196ee40a956c77a76026ef65 SHA512 c6b3db4043345c81582ab22289c29630e3946dc1936adebff0af196f461236805ab146e74ed400fe045d980df562ae44479e36c2c8747ed8a6ba6807add23e6b WHIRLPOOL 5329cd31170ce2ee7c109c9c1152b5eed35c8ec1af48a84d03eff4bb4fe083a7a9840ceb076575961d84c6baeb725fe1c5eed1a4756d39a8bc52a26f23dc6123 DIST rails-3.1.3.tgz 3638313 SHA256 412c8a3ae4e0d5283ace45a2ee95127418d6b70fb1a954087b09755ab3a25e99 SHA512 286434f02c16f9cde51c160a5f84ac9b53d9d3aaf44c6c8018cef3250213cd39909013006223cceea8bd68ffe0bdc8ce50b0695e57756d8bb9ec44ab5986a711 WHIRLPOOL 710aa7c64c71b46741e19be41023aa6acf7dfeb25b94f8f14c10748f4a4a4cacd61ecf51a9db0b4eae1d0a1797f4287fd9b0f139a874f1659cab8fa5f252c200 -DIST rails-3.1.9.tgz 3394638 SHA256 4074445226cc00ac8f0b0c6b5578a14d7b3614af948ed1993711d75cf7efdd83 SHA512 c44fe3fba7526e2ccda6bf31b0fa94f59141484abf7deb3453287487f7a2cb226b41434d6240ad4677f51d76cc6818f76e7e3ca90e289cd52079bee988c44c1a WHIRLPOOL 2cb16ba25c77cae03cd4558b34a2ed44547c5bdcc3f59510cdb77283c6f9c2d86c0d0cbd2a497f1de4cf34ae930d1c9f59d88035acc113fb9abac42792abf710 -DIST rails-3.2.10.tgz 3546186 SHA256 068a910b8798a9b65492b6da3b9e45f28ce9d4bb5cef53c7d0f87a12d074d190 SHA512 4df0fa285d45c4a058e748d121b8ce43226c6738737e61d29b1e30141acde783535a89d4c115f8a1e37c46d06735462ecd16c8319caf43626790fce6e04aa5b5 WHIRLPOOL 8eb627d5622be368be699899f2fb6f8eed2a225a4b84823968c422d992e01ff1802504020edea3245f24a9d45f7625576278ea4fffb5dd4fc58ae877005aeb9c DIST rails-3.2.11.tgz 3547068 SHA256 3f05603f84bfb7a99f999f878af247533706255e6b3baa4111439b6f5fd8ab70 SHA512 50644772186127887bd4d7537ad41cbe549c5c8496274cad2765f21859528a0f42f5b8dbe3a1627a08b1724b2e019c0ec6526cccfdff3da4ffcec285f9259558 WHIRLPOOL 70d5620fc611872b2af62351c81abbe43b3b1d41c92a1d1935cef704a4a655c9bb043599bc758c947c14378ef52e34b44c61536d5a048401cc6bfaef613eba23 diff --git a/dev-ruby/activerecord/activerecord-2.3.14-r1.ebuild b/dev-ruby/activerecord/activerecord-2.3.14-r1.ebuild deleted file mode 100644 index 67f5c8e6e413..000000000000 --- a/dev-ruby/activerecord/activerecord-2.3.14-r1.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/activerecord-2.3.14-r1.ebuild,v 1.5 2013/01/04 22:00:16 ago Exp $ - -EAPI=2 -USE_RUBY="ruby18 ree18 jruby" - -# this is not null so that the dependencies will actually be filled -RUBY_FAKEGEM_TASK_TEST="none" - -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG README" - -inherit ruby-fakegem - -DESCRIPTION="Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM" -HOMEPAGE="http://rubyforge.org/projects/activerecord/" - -LICENSE="MIT" -SLOT="2.3" -KEYWORDS="amd64 ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" -IUSE="mysql postgres sqlite3" #sqlite - -RUBY_PATCHES=( ${PN}-2.3.10-rails3.patch ${P}-dynamic-finder-injection.patch ) - -ruby_add_rdepend "~dev-ruby/activesupport-${PV}" - -#ruby_add_rdepend sqlite ">=dev-ruby/sqlite-ruby-2.2.2" -USE_RUBY=ruby18 \ - ruby_add_rdepend " - sqlite3? ( dev-ruby/sqlite3 ) - mysql? ( >=dev-ruby/mysql-ruby-2.7 ) - postgres? ( dev-ruby/pg )" - -ruby_add_bdepend " - test? ( - dev-ruby/rdoc - =dev-ruby/mocha-0.10* - )" - -all_ruby_prepare() { - # Custom template not found in package - sed -i -e '/horo/d' Rakefile || die - - # Remove test cases with hash ordering failures. - sed -i -e '/test_bind_enumerable/,/end/ s:^:#:' test/cases/finder_test.rb || die - sed -i -e '/test_should_automatically_build_new_associated/,/^ end/ s:^:#:' test/cases/nested_attributes_test.rb || die -} - -each_ruby_test() { - case ${RUBY} in - *jruby) - ;; - *) - if use sqlite3; then - ${RUBY} -S rake test_sqlite3 || die "sqlite3 tests failed" - fi - ;; - esac -} diff --git a/dev-ruby/activerecord/activerecord-3.0.18.ebuild b/dev-ruby/activerecord/activerecord-3.0.18.ebuild deleted file mode 100644 index 4dd084f1e6a8..000000000000 --- a/dev-ruby/activerecord/activerecord-3.0.18.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/activerecord-3.0.18.ebuild,v 1.1 2013/01/03 08:06:27 graaff Exp $ - -EAPI=4 -USE_RUBY="ruby18 ree18" - -# this is not null so that the dependencies will actually be filled -RUBY_FAKEGEM_TASK_TEST="test" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="activerecord.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM" -HOMEPAGE="http://rubyforge.org/projects/activerecord/" -SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="3.0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" -IUSE="mysql postgres sqlite3" - -RUBY_S="rails-rails-*/activerecord" - -ruby_add_rdepend "~dev-ruby/activesupport-${PV} - ~dev-ruby/activemodel-${PV} - >=dev-ruby/arel-2.0.10-r1:2.0 - >=dev-ruby/tzinfo-0.3.23 - sqlite3? ( >=dev-ruby/sqlite3-1.3.3 ) - mysql? ( dev-ruby/mysql2:0.2 ) - postgres? ( dev-ruby/pg )" - -ruby_add_bdepend " - test? ( - dev-ruby/bundler - ~dev-ruby/actionpack-${PV} - >=dev-ruby/sqlite3-1.3.3 - >=dev-ruby/mocha-0.10.5 - )" - -all_ruby_prepare() { - # Remove items from the common Gemfile that we don't need for this - # test run. This also requires handling some gemspecs. - sed -i -e '/\(uglifier\|system_timer\|sdoc\|w3c_validators\|pg\|jquery-rails\|"mysql"\|mysql2\)/d' ../Gemfile || die - sed -i -e '/thor/d' ../railties/railties.gemspec || die - sed -i -e '/mail/d' ../actionmailer/actionmailer.gemspec || die - sed -i -e '/\(system_timer\|horo\|faker\|rbench\|ruby-debug\|pg\)/d' ../Gemfile || die - - # Loosen erubis dependency since this is not slotted. - sed -i -e 's/~> 2.6.6/>= 2.6.6/' ../actionpack/actionpack.gemspec || die - - # Loosen mocha version restriction and skip incompatible tests - sed -i -e 's/0.10.5/>= 0.10.5/' ../Gemfile || die - rm test/cases/autosave_association_test.rb || die -} - -each_ruby_test() { - case ${RUBY} in - *jruby) - ;; - *) - if use sqlite3; then - ${RUBY} -S rake test_sqlite3 || die "sqlite3 tests failed" - fi - ;; - esac -} diff --git a/dev-ruby/activerecord/activerecord-3.1.9.ebuild b/dev-ruby/activerecord/activerecord-3.1.9.ebuild deleted file mode 100644 index 2627d341e0b5..000000000000 --- a/dev-ruby/activerecord/activerecord-3.1.9.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/activerecord-3.1.9.ebuild,v 1.2 2013/01/16 00:48:13 zerochaos Exp $ - -EAPI=4 -USE_RUBY="ruby18 ruby19 ree18" - -# this is not null so that the dependencies will actually be filled -RUBY_FAKEGEM_TASK_TEST="test" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="activerecord.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM" -HOMEPAGE="http://rubyforge.org/projects/activerecord/" -SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="3.1" -KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="mysql postgres sqlite3" - -RUBY_S="rails-rails-*/activerecord" - -ruby_add_rdepend "~dev-ruby/activesupport-${PV} - ~dev-ruby/activemodel-${PV} - >=dev-ruby/arel-2.2.3:2.1 - >=dev-ruby/tzinfo-0.3.29 - sqlite3? ( >=dev-ruby/sqlite3-1.3.4 ) - mysql? ( >=dev-ruby/mysql2-0.3.6:0.3 ) - postgres? ( >=dev-ruby/pg-0.11.0 )" - -ruby_add_bdepend " - test? ( - dev-ruby/bundler - ~dev-ruby/actionpack-${PV} - >=dev-ruby/sqlite3-1.3.3 - >=dev-ruby/mocha-0.9.5 - virtual/ruby-test-unit - )" - -all_ruby_prepare() { - # Remove items from the common Gemfile that we don't need for this - # test run. This also requires handling some gemspecs. - sed -i -e '/\(uglifier\|system_timer\|sdoc\|w3c_validators\|pg\|jquery-rails\|"mysql"\|ruby-prof\|benchmark-ips\)/d' ../Gemfile || die - sed -i -e '/\(rack-ssl\|thor\)/d' ../railties/railties.gemspec || die - sed -i -e '/mail/d' ../actionmailer/actionmailer.gemspec || die - sed -i -e "s/, '< 1.3'//" ../activesupport/activesupport.gemspec || die - - # Loosen mocha version restriction and skip incompatible tests - sed -i -e 's/0.10.5/>= 0.10.5/' ../Gemfile || die - sed -i -e '/test_a_child_marked_for_destruction_should_not_be_destroyed_twice/,/^ end/ s:^:#:' test/cases/autosave_association_test.rb || die - sed -i -e '/test_a_parent_marked_for_destruction_should_not_be_destroyed_twice/,/^ end/ s:^:#:' test/cases/autosave_association_test.rb || die -} - -each_ruby_test() { - case ${RUBY} in - *jruby) - ;; - *) - if use sqlite3; then - ${RUBY} -S rake test_sqlite3 || die "sqlite3 tests failed" - fi - ;; - esac -} diff --git a/dev-ruby/activerecord/activerecord-3.2.10.ebuild b/dev-ruby/activerecord/activerecord-3.2.10.ebuild deleted file mode 100644 index e685921961aa..000000000000 --- a/dev-ruby/activerecord/activerecord-3.2.10.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/activerecord-3.2.10.ebuild,v 1.2 2013/01/16 00:48:13 zerochaos Exp $ - -EAPI=4 -USE_RUBY="ruby18 ruby19 ree18" - -# this is not null so that the dependencies will actually be filled -RUBY_FAKEGEM_TASK_TEST="test" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="activerecord.gemspec" - -inherit ruby-fakegem versionator - -DESCRIPTION="Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM" -HOMEPAGE="http://rubyforge.org/projects/activerecord/" -SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="$(get_version_component_range 1-2)" -KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="mysql postgres sqlite3" - -RUBY_S="rails-rails-*/activerecord" - -ruby_add_rdepend "~dev-ruby/activesupport-${PV} - ~dev-ruby/activemodel-${PV} - >=dev-ruby/arel-3.0.2:3.0 - >=dev-ruby/tzinfo-0.3.29 - sqlite3? ( >=dev-ruby/sqlite3-1.3.5 ) - mysql? ( >=dev-ruby/mysql2-0.3.10:0.3 ) - postgres? ( >=dev-ruby/pg-0.11.0 )" - -ruby_add_bdepend " - test? ( - dev-ruby/bundler - ~dev-ruby/actionpack-${PV} - >=dev-ruby/sqlite3-1.3.5 - >=dev-ruby/mocha-0.12.1 - )" - -all_ruby_prepare() { - # Remove items from the common Gemfile that we don't need for this - # test run. This also requires handling some gemspecs. - sed -i -e "/\(uglifier\|system_timer\|sdoc\|w3c_validators\|pg\|jquery-rails\|'mysql'\|journey\|ruby-prof\|benchmark-ips\)/d" ../Gemfile || die - sed -i -e '/rack-ssl/d' ../railties/railties.gemspec || die - sed -i -e '/mail/d' ../actionmailer/actionmailer.gemspec || die - - # Avoid tests depending on hash ordering - sed -i -e '/test_should_automatically_build_new_associated/,/ end/ s:^:#:' test/cases/nested_attributes_test.rb || die - - # Avoid test depending on mysql adapter which we don't support for - # this Rails version to simplify our dependencies. - rm test/cases/connection_specification/resolver_test.rb || die -} - -each_ruby_test() { - case ${RUBY} in - *jruby) - ;; - *rubyee18) - # Turn on travis support to avoid tripping bugs in ree18. - TRAVIS=true ${RUBY} -S rake test_sqlite3 - ;; - *) - if use sqlite3; then - ${RUBY} -S rake test_sqlite3 || die "sqlite3 tests failed" - fi - ;; - esac -} diff --git a/dev-ruby/activeresource/Manifest b/dev-ruby/activeresource/Manifest index 3abf2d9562fc..8d04fa60d5f9 100644 --- a/dev-ruby/activeresource/Manifest +++ b/dev-ruby/activeresource/Manifest @@ -1,9 +1,5 @@ -DIST activeresource-2.3.14.gem 47104 SHA256 301f1c3cf812052b11dfea0be6e547e112132019d28bf7e5c8601902fcabd525 SHA512 eced1f9041a477eeedce7dc6bf2ca893a8ee2fdbbe5c81d74180862809c78f15c291647dbb109ef5525df97da09a139b2191964d7e9b0cecd9c1d8031a5ac695 WHIRLPOOL 62386a08b795bf999524812b367c1befc5f859431883884952f135781495747983924b6049303e611dbce6342b4f04b7b43496d8fb56dc0c73db9ccd9d20d85c DIST activeresource-2.3.15.gem 47104 SHA256 95999b7b46290d8c62d39d573a30bb223af851e528746fe1438bcc98704ad9fa SHA512 d7b0910d44b2ae28e98f1b0ffaa3ad575350eb1d982188dadd2c71e8f81bca0df8496c81a27d55fffcd076cc6d708566ed87a59d976b03ca10fa0d913b0bbd66 WHIRLPOOL 6b66d81c93bcb4b11882a7f45827688c2eab1b88e290418d24f969c7698e757194c9ee18bddcdc344b629f0f948473933ade9c49f0a17a8c4e627cba7605ddd5 -DIST rails-3.0.18.tgz 3509111 SHA256 a9cd1373e01fc5a4a07e30146f38b35b4726fb52ab194801deaeee9b9c016c51 SHA512 e1dcfefd22972b6e8e96fcddb8fc0e1cdef3c50795f525d3f98900239316c5b4347e9a693e4f0d0cec5fed443717458a4d2563a8ff1cdbdf14882e1cdb2b9066 WHIRLPOOL 60417d3e6297ca73d4beccf3b659928f948a827e1a2c92db72c34181f612ebe58f1633164d832dc7c5a4567c1758fd97921c82ced33d2737dd719ea322754c35 DIST rails-3.0.19.tgz 3510042 SHA256 a8a9c7ce5aba53bc13d6621ddf2b55adf1f8ad18999217580af2171db30cec43 SHA512 98ccc8724767202999007592571e9aff85fe121616d4e31409cbdd0917e8419c858b4e9cb547721da0e5bd6e5c46f3c31344c91227abef97009ad96bfe31f952 WHIRLPOOL 2d8bf0941d8a6efc78a69601ea8c44f61026974aa3ff58ab076873388866dd3d05eb9a7ad0db4e6772e17cb2b4c4c2113b5bb506066d7dd9b508b44a2a52cf76 DIST rails-3.1.10.tgz 3394031 SHA256 d0614db8c4011ed1fcb4bd0afeb8220634b1ec8b196ee40a956c77a76026ef65 SHA512 c6b3db4043345c81582ab22289c29630e3946dc1936adebff0af196f461236805ab146e74ed400fe045d980df562ae44479e36c2c8747ed8a6ba6807add23e6b WHIRLPOOL 5329cd31170ce2ee7c109c9c1152b5eed35c8ec1af48a84d03eff4bb4fe083a7a9840ceb076575961d84c6baeb725fe1c5eed1a4756d39a8bc52a26f23dc6123 DIST rails-3.1.3.tgz 3638313 SHA256 412c8a3ae4e0d5283ace45a2ee95127418d6b70fb1a954087b09755ab3a25e99 SHA512 286434f02c16f9cde51c160a5f84ac9b53d9d3aaf44c6c8018cef3250213cd39909013006223cceea8bd68ffe0bdc8ce50b0695e57756d8bb9ec44ab5986a711 WHIRLPOOL 710aa7c64c71b46741e19be41023aa6acf7dfeb25b94f8f14c10748f4a4a4cacd61ecf51a9db0b4eae1d0a1797f4287fd9b0f139a874f1659cab8fa5f252c200 -DIST rails-3.1.9.tgz 3394638 SHA256 4074445226cc00ac8f0b0c6b5578a14d7b3614af948ed1993711d75cf7efdd83 SHA512 c44fe3fba7526e2ccda6bf31b0fa94f59141484abf7deb3453287487f7a2cb226b41434d6240ad4677f51d76cc6818f76e7e3ca90e289cd52079bee988c44c1a WHIRLPOOL 2cb16ba25c77cae03cd4558b34a2ed44547c5bdcc3f59510cdb77283c6f9c2d86c0d0cbd2a497f1de4cf34ae930d1c9f59d88035acc113fb9abac42792abf710 -DIST rails-3.2.10.tgz 3546186 SHA256 068a910b8798a9b65492b6da3b9e45f28ce9d4bb5cef53c7d0f87a12d074d190 SHA512 4df0fa285d45c4a058e748d121b8ce43226c6738737e61d29b1e30141acde783535a89d4c115f8a1e37c46d06735462ecd16c8319caf43626790fce6e04aa5b5 WHIRLPOOL 8eb627d5622be368be699899f2fb6f8eed2a225a4b84823968c422d992e01ff1802504020edea3245f24a9d45f7625576278ea4fffb5dd4fc58ae877005aeb9c DIST rails-3.2.11.tgz 3547068 SHA256 3f05603f84bfb7a99f999f878af247533706255e6b3baa4111439b6f5fd8ab70 SHA512 50644772186127887bd4d7537ad41cbe549c5c8496274cad2765f21859528a0f42f5b8dbe3a1627a08b1724b2e019c0ec6526cccfdff3da4ffcec285f9259558 WHIRLPOOL 70d5620fc611872b2af62351c81abbe43b3b1d41c92a1d1935cef704a4a655c9bb043599bc758c947c14378ef52e34b44c61536d5a048401cc6bfaef613eba23 diff --git a/dev-ruby/activeresource/activeresource-2.3.14.ebuild b/dev-ruby/activeresource/activeresource-2.3.14.ebuild deleted file mode 100644 index 608df6070676..000000000000 --- a/dev-ruby/activeresource/activeresource-2.3.14.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/dev-ruby/activeresource/activeresource-2.3.14.ebuild,v 1.6 2012/05/01 18:24:20 armin76 Exp $ - -EAPI=2 - -USE_RUBY="ruby18 ree18 jruby" - -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG README" - -inherit ruby-fakegem - -DESCRIPTION="Think Active Record for web resources.." -HOMEPAGE="http://rubyforge.org/projects/activeresource/" - -LICENSE="MIT" -SLOT="2.3" -KEYWORDS="amd64 ppc ppc64 x86 -x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" -IUSE="" - -ruby_add_rdepend "~dev-ruby/activesupport-${PV}" -ruby_add_bdepend " - test? ( - >=dev-ruby/mocha-0.9.5 - virtual/ruby-test-unit - )" - -all_ruby_prepare() { - epatch "${FILESDIR}/${PN}-2.3.10-rails3.patch" - - # Custom template not found in package - sed -i -e '/horo/d' Rakefile || die -} diff --git a/dev-ruby/activeresource/activeresource-3.0.18.ebuild b/dev-ruby/activeresource/activeresource-3.0.18.ebuild deleted file mode 100644 index 1be649008aa1..000000000000 --- a/dev-ruby/activeresource/activeresource-3.0.18.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activeresource/activeresource-3.0.18.ebuild,v 1.1 2013/01/03 08:05:16 graaff Exp $ - -EAPI=4 - -USE_RUBY="ruby18 ree18" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="activeresource.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Think Active Record for web resources.." -HOMEPAGE="http://rubyforge.org/projects/activeresource/" -SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="3.0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -RUBY_S="rails-rails-*/activeresource" - -ruby_add_rdepend "~dev-ruby/activesupport-${PV} - ~dev-ruby/activemodel-${PV}" -ruby_add_bdepend " - test? ( - >=dev-ruby/mocha-0.9.5 - virtual/ruby-test-unit - )" - -all_ruby_prepare() { - # Set test environment to our hand. - rm "${S}/../Gemfile" || die "Unable to remove Gemfile" - sed -i -e '/load_paths/d' test/abstract_unit.rb || die "Unable to remove load paths" - -} diff --git a/dev-ruby/activeresource/activeresource-3.1.9.ebuild b/dev-ruby/activeresource/activeresource-3.1.9.ebuild deleted file mode 100644 index dffe686e251b..000000000000 --- a/dev-ruby/activeresource/activeresource-3.1.9.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activeresource/activeresource-3.1.9.ebuild,v 1.1 2013/01/03 07:26:31 graaff Exp $ - -EAPI=4 - -USE_RUBY="ruby18 ruby19 ree18" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="activeresource.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Think Active Record for web resources.." -HOMEPAGE="http://rubyforge.org/projects/activeresource/" -SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="3.1" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -RUBY_S="rails-rails-*/activeresource" - -ruby_add_rdepend "~dev-ruby/activesupport-${PV} - ~dev-ruby/activemodel-${PV}" -ruby_add_bdepend " - test? ( - >=dev-ruby/mocha-0.9.5 - virtual/ruby-test-unit - )" - -all_ruby_prepare() { - # Set test environment to our hand. - rm "${S}/../Gemfile" || die "Unable to remove Gemfile" - sed -i -e '/load_paths/d' test/abstract_unit.rb || die "Unable to remove load paths" - -} diff --git a/dev-ruby/activeresource/activeresource-3.2.10.ebuild b/dev-ruby/activeresource/activeresource-3.2.10.ebuild deleted file mode 100644 index fbec46b4de5b..000000000000 --- a/dev-ruby/activeresource/activeresource-3.2.10.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activeresource/activeresource-3.2.10.ebuild,v 1.2 2013/01/16 00:57:27 zerochaos Exp $ - -EAPI=4 - -USE_RUBY="ruby18 ruby19 ree18" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="activeresource.gemspec" - -inherit ruby-fakegem versionator - -DESCRIPTION="Think Active Record for web resources.." -HOMEPAGE="http://rubyforge.org/projects/activeresource/" -SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="$(get_version_component_range 1-2)" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -RUBY_S="rails-rails-*/activeresource" - -ruby_add_rdepend "~dev-ruby/activesupport-${PV} - ~dev-ruby/activemodel-${PV}" -ruby_add_bdepend " - test? ( - >=dev-ruby/mocha-0.9.5 - )" - -all_ruby_prepare() { - # Set test environment to our hand. - rm "${S}/../Gemfile" || die "Unable to remove Gemfile" - sed -i -e '/load_paths/d' test/abstract_unit.rb || die "Unable to remove load paths" - -} diff --git a/dev-ruby/activesupport/Manifest b/dev-ruby/activesupport/Manifest index 95dcb5e7f8f3..407ca2123adc 100644 --- a/dev-ruby/activesupport/Manifest +++ b/dev-ruby/activesupport/Manifest @@ -1,9 +1,5 @@ -DIST activesupport-2.3.14.gem 431104 SHA256 c5affddb549fa05415f0e467a17bd0fa02925b414d1a5e2835270d7064b455fe SHA512 156c882058ba6d6b1329696ff78743f582ed1bda9a3d9a7ac25371a50d41b757794534bdd94722ceb3ab62718bb3a079b90a21229ac73b2c8231096d9ee82178 WHIRLPOOL faaf4c9ff9474dcea834f4926cdfc39b4380596aacaf7a5365208e79b395490e7671046380b959b8aa2b9ef6def6d0bfe50eea83bc207bae6ce6c68eb8a21841 DIST activesupport-2.3.15.gem 431104 SHA256 2528988dba42992c61f0c55935a840bee782418adc18f8ce67d0a80cf1f437bc SHA512 9e27f083950d4cd26abba5e2f5351879e95e1935c2283682c1d0a7d30a16f5f8955e753bfa79e67d14e051a048c363f2916eb09848a58c89ee7a9a65c73c58e0 WHIRLPOOL 9463e148d3c9626293727142f422f5e4ab3f745da24af3fe81892dbd2a196bd057bd5bb8d56ca0ff644bca6c2fe51330ebf88a98cbd924935f3ab549b72ac90e -DIST rails-3.0.18.tgz 3509111 SHA256 a9cd1373e01fc5a4a07e30146f38b35b4726fb52ab194801deaeee9b9c016c51 SHA512 e1dcfefd22972b6e8e96fcddb8fc0e1cdef3c50795f525d3f98900239316c5b4347e9a693e4f0d0cec5fed443717458a4d2563a8ff1cdbdf14882e1cdb2b9066 WHIRLPOOL 60417d3e6297ca73d4beccf3b659928f948a827e1a2c92db72c34181f612ebe58f1633164d832dc7c5a4567c1758fd97921c82ced33d2737dd719ea322754c35 DIST rails-3.0.19.tgz 3510042 SHA256 a8a9c7ce5aba53bc13d6621ddf2b55adf1f8ad18999217580af2171db30cec43 SHA512 98ccc8724767202999007592571e9aff85fe121616d4e31409cbdd0917e8419c858b4e9cb547721da0e5bd6e5c46f3c31344c91227abef97009ad96bfe31f952 WHIRLPOOL 2d8bf0941d8a6efc78a69601ea8c44f61026974aa3ff58ab076873388866dd3d05eb9a7ad0db4e6772e17cb2b4c4c2113b5bb506066d7dd9b508b44a2a52cf76 DIST rails-3.1.10.tgz 3394031 SHA256 d0614db8c4011ed1fcb4bd0afeb8220634b1ec8b196ee40a956c77a76026ef65 SHA512 c6b3db4043345c81582ab22289c29630e3946dc1936adebff0af196f461236805ab146e74ed400fe045d980df562ae44479e36c2c8747ed8a6ba6807add23e6b WHIRLPOOL 5329cd31170ce2ee7c109c9c1152b5eed35c8ec1af48a84d03eff4bb4fe083a7a9840ceb076575961d84c6baeb725fe1c5eed1a4756d39a8bc52a26f23dc6123 DIST rails-3.1.3.tgz 3638313 SHA256 412c8a3ae4e0d5283ace45a2ee95127418d6b70fb1a954087b09755ab3a25e99 SHA512 286434f02c16f9cde51c160a5f84ac9b53d9d3aaf44c6c8018cef3250213cd39909013006223cceea8bd68ffe0bdc8ce50b0695e57756d8bb9ec44ab5986a711 WHIRLPOOL 710aa7c64c71b46741e19be41023aa6acf7dfeb25b94f8f14c10748f4a4a4cacd61ecf51a9db0b4eae1d0a1797f4287fd9b0f139a874f1659cab8fa5f252c200 -DIST rails-3.1.9.tgz 3394638 SHA256 4074445226cc00ac8f0b0c6b5578a14d7b3614af948ed1993711d75cf7efdd83 SHA512 c44fe3fba7526e2ccda6bf31b0fa94f59141484abf7deb3453287487f7a2cb226b41434d6240ad4677f51d76cc6818f76e7e3ca90e289cd52079bee988c44c1a WHIRLPOOL 2cb16ba25c77cae03cd4558b34a2ed44547c5bdcc3f59510cdb77283c6f9c2d86c0d0cbd2a497f1de4cf34ae930d1c9f59d88035acc113fb9abac42792abf710 -DIST rails-3.2.10.tgz 3546186 SHA256 068a910b8798a9b65492b6da3b9e45f28ce9d4bb5cef53c7d0f87a12d074d190 SHA512 4df0fa285d45c4a058e748d121b8ce43226c6738737e61d29b1e30141acde783535a89d4c115f8a1e37c46d06735462ecd16c8319caf43626790fce6e04aa5b5 WHIRLPOOL 8eb627d5622be368be699899f2fb6f8eed2a225a4b84823968c422d992e01ff1802504020edea3245f24a9d45f7625576278ea4fffb5dd4fc58ae877005aeb9c DIST rails-3.2.11.tgz 3547068 SHA256 3f05603f84bfb7a99f999f878af247533706255e6b3baa4111439b6f5fd8ab70 SHA512 50644772186127887bd4d7537ad41cbe549c5c8496274cad2765f21859528a0f42f5b8dbe3a1627a08b1724b2e019c0ec6526cccfdff3da4ffcec285f9259558 WHIRLPOOL 70d5620fc611872b2af62351c81abbe43b3b1d41c92a1d1935cef704a4a655c9bb043599bc758c947c14378ef52e34b44c61536d5a048401cc6bfaef613eba23 diff --git a/dev-ruby/activesupport/activesupport-2.3.14-r1.ebuild b/dev-ruby/activesupport/activesupport-2.3.14-r1.ebuild deleted file mode 100644 index 5db347e48da8..000000000000 --- a/dev-ruby/activesupport/activesupport-2.3.14-r1.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/dev-ruby/activesupport/activesupport-2.3.14-r1.ebuild,v 1.6 2012/10/05 18:10:40 ranger Exp $ - -EAPI=2 -USE_RUBY="ruby18 ree18 jruby" - -RUBY_FAKEGEM_TASK_TEST="" -RUBY_FAKEGEM_TASK_DOC="" - -RUBY_FAKEGEM_EXTRADOC="CHANGELOG README" - -inherit ruby-fakegem - -DESCRIPTION="Utility Classes and Extension to the Standard Library" -HOMEPAGE="http://rubyforge.org/projects/activesupport/" - -LICENSE="MIT" -SLOT="2.3" -KEYWORDS="amd64 ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" -IUSE="" - -ruby_add_rdepend ">=dev-ruby/builder-2.1.2:0 >=dev-ruby/tzinfo-0.3.16 >=dev-ruby/i18n-0.4.1:0.4" - -all_ruby_prepare() { - # Remove the bundled packages! - rm -r lib/active_support/vendor/{tzinfo,builder,i18n}-* \ - || die "failed to remove vendor packages" - - # This patch removes the fallback to local vendorized gems, as well - # as fixing the dependencies for i18n to use the correct slot. It - # also edits the metadata file so that the dependencies are added to - # the specification, which is required for bundler to pick them up - # (which in turn is required by radiant 1.0.0rc3 to - # work). Furthermore remove the references to the vendorized copies - # from the specification, to be safe. - epatch "${FILESDIR}"/${PN}-2.3.14-unvendorize.patch - sed -i -e '/\/vendor\//d' ../metadata - - # don't support older mocha versions as the optional codepath - # breaks JRuby - epatch "${FILESDIR}"/${PN}-2.3.5-mocha-0.9.5.patch -} diff --git a/dev-ruby/activesupport/activesupport-3.0.18.ebuild b/dev-ruby/activesupport/activesupport-3.0.18.ebuild deleted file mode 100644 index 50d46bf0a4fb..000000000000 --- a/dev-ruby/activesupport/activesupport-3.0.18.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/activesupport-3.0.18.ebuild,v 1.1 2013/01/03 08:04:30 graaff Exp $ - -EAPI=4 - -# jruby fails tests. -USE_RUBY="ruby18 ree18" - -RUBY_FAKEGEM_TASK_DOC="" - -RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="activesupport.gemspec" - -RUBY_FAKEGEM_BINWRAP="" - -inherit ruby-fakegem - -DESCRIPTION="Utility Classes and Extension to the Standard Library" -HOMEPAGE="http://rubyforge.org/projects/activesupport/" -SRC_URI="https://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="3.0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -RUBY_S="rails-rails-*/${PN}" - -ruby_add_rdepend ">=dev-ruby/memcache-client-1.5.8" - -# libxml-ruby and nokogiri are not strictly needed, but there are tests -# using this code. -ruby_add_bdepend "test? ( >=dev-ruby/libxml-2.0.0 dev-ruby/nokogiri >=dev-ruby/mocha-0.10.5 )" - -all_ruby_prepare() { - # don't support older mocha versions as the optional codepath - # breaks JRuby - epatch "${FILESDIR}"/${PN}-3.0.3-mocha-0.9.5.patch - - # Set test environment to our hand. - rm "${S}/../Gemfile" || die "Unable to remove Gemfile" - sed -i -e '/load_paths/d' test/abstract_unit.rb || die "Unable to remove load paths" - - # Avoid tests that do not work with newer versions of mocha. - rm test/whiny_nil_test.rb || die - - # Avoid tests failing due to slightly different builder semantics. - sed -i -e '/test_one_level_with_nils/,/end/ s:^:#:' \ - -e '/test_one_level_with_skipping_types/,/end/ s:^:#:' \ - test/core_ext/hash_ext_test.rb || die -} diff --git a/dev-ruby/activesupport/activesupport-3.1.9.ebuild b/dev-ruby/activesupport/activesupport-3.1.9.ebuild deleted file mode 100644 index 298f825de620..000000000000 --- a/dev-ruby/activesupport/activesupport-3.1.9.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/activesupport-3.1.9.ebuild,v 1.2 2013/01/15 07:19:48 zerochaos Exp $ - -EAPI=4 - -# jruby fails tests. -USE_RUBY="ruby18 ree18 ruby19" - -RUBY_FAKEGEM_TASK_DOC="" - -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="activesupport.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Utility Classes and Extension to the Standard Library" -HOMEPAGE="http://rubyforge.org/projects/activesupport/" -SRC_URI="https://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="3.1" -KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -RUBY_S="rails-rails-*/${PN}" - -ruby_add_rdepend ">=dev-ruby/memcache-client-1.5.8 - >=dev-ruby/multi_json-1.0 - dev-ruby/i18n:0.6 - !!=dev-ruby/libxml-2.0.0 - dev-ruby/nokogiri - dev-ruby/builder:0 - )" - -all_ruby_prepare() { - # don't support older mocha versions as the optional codepath - # breaks JRuby - epatch "${FILESDIR}"/${PN}-3.0.3-mocha-0.9.5.patch - - # Set test environment to our hand. -# rm "${S}/../Gemfile" || die "Unable to remove Gemfile" - sed -i -e '/load_paths/d' test/abstract_unit.rb || die "Unable to remove load paths" - - # Remove upper restriction from gemspec. All tests pass with - # multi_json 1.3.5. The upstream commit doesn't give details but - # most likely this was added to avoid multi_json 1.3.0 which broke - # compatibility. This was later fixed in 1.3.1. 1.3.0 is no longer - # in portage so from a Gentoo point of view it is safe to depend on - # => 1.0. - sed -i -e "s/, '< 1.3'//" activesupport.gemspec || die - - # Avoid tests that do not work with newer versions of mocha. - rm test/whiny_nil_test.rb || die -} diff --git a/dev-ruby/activesupport/activesupport-3.2.10.ebuild b/dev-ruby/activesupport/activesupport-3.2.10.ebuild deleted file mode 100644 index ed5b36cdd034..000000000000 --- a/dev-ruby/activesupport/activesupport-3.2.10.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/activesupport-3.2.10.ebuild,v 1.2 2013/01/15 07:19:48 zerochaos Exp $ - -EAPI=4 - -USE_RUBY="ruby18 ree18 ruby19 jruby" - -RUBY_FAKEGEM_TASK_DOC="" - -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="activesupport.gemspec" - -RUBY_FAKEGEM_BINWRAP="" - -inherit ruby-fakegem versionator - -DESCRIPTION="Utility Classes and Extension to the Standard Library" -HOMEPAGE="http://rubyforge.org/projects/activesupport/" -SRC_URI="https://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="$(get_version_component_range 1-2)" -KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -RUBY_S="rails-rails-*/${PN}" - -ruby_add_rdepend " - >=dev-ruby/multi_json-1.0 - dev-ruby/i18n:0.6 - !!=dev-ruby/memcache-client-1.5.8 - dev-ruby/nokogiri - >=dev-ruby/builder-3.0.3:3 - )" - -# libxml is not strictly needed, there are tests using this code. jruby -# uses a different xml implementation. -USE_RUBY=${USE_RUBY/jruby/} ruby_add_bdepend "test? ( >=dev-ruby/libxml-2.0.0 )" - -all_ruby_prepare() { - # Set test environment to our hand. -# rm "${S}/../Gemfile" || die "Unable to remove Gemfile" - sed -i -e '/load_paths/d' test/abstract_unit.rb || die "Unable to remove load paths" -} diff --git a/dev-ruby/fakefs/fakefs-0.4.2.ebuild b/dev-ruby/fakefs/fakefs-0.4.2.ebuild index 92851d26ea63..54f850e90403 100644 --- a/dev-ruby/fakefs/fakefs-0.4.2.ebuild +++ b/dev-ruby/fakefs/fakefs-0.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-ruby/fakefs/fakefs-0.4.2.ebuild,v 1.5 2013/01/15 06:16:08 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fakefs/fakefs-0.4.2.ebuild,v 1.6 2013/01/20 17:06:00 ago Exp $ EAPI=4 @@ -20,7 +20,7 @@ HOMEPAGE="http://github.com/defunkt/fakefs" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="" ruby_add_bdepend " diff --git a/dev-ruby/hiera/hiera-1.1.2.ebuild b/dev-ruby/hiera/hiera-1.1.2-r1.ebuild similarity index 64% rename from dev-ruby/hiera/hiera-1.1.2.ebuild rename to dev-ruby/hiera/hiera-1.1.2-r1.ebuild index d7a3fcf8eaf1..53177e58435a 100644 --- a/dev-ruby/hiera/hiera-1.1.2.ebuild +++ b/dev-ruby/hiera/hiera-1.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/dev-ruby/hiera/hiera-1.1.2.ebuild,v 1.1 2013/01/04 07:06:22 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hiera/hiera-1.1.2-r1.ebuild,v 1.1 2013/01/20 08:57:13 graaff Exp $ EAPI=5 @@ -24,3 +24,9 @@ KEYWORDS="~amd64 ~hppa ~ppc ~x86" ruby_add_bdepend "test? ( dev-ruby/mocha )" ruby_add_rdepend "dev-ruby/json" + +all_ruby_prepare() { + # Our json package is either the compiled version or the pure + # version. Fix gemspec accordingly. + sed -i -e 's/json_pure/json/' ../metadata || die +} diff --git a/dev-ruby/jquery-rails/Manifest b/dev-ruby/jquery-rails/Manifest index bf0fc407522c..ee2d12636a61 100644 --- a/dev-ruby/jquery-rails/Manifest +++ b/dev-ruby/jquery-rails/Manifest @@ -1,6 +1,5 @@ DIST jquery-rails-1.0.19.gem 262656 SHA256 886da031bb562fdbba88ea40c8630b8bfe995673b6f98720c6cb6d24773f67be SHA512 0d5001307027d651896694b2e25c1dccb7ce05d52086069f1072f026676672e2841c2a92545ad7aa1d1bc1d21df46bc5dba6ea83c6d218d292797ca6bbd22b3a WHIRLPOOL 232d47c91619f09276fdd2c73dffbb197636cbc0e139e24b84f68c273ba736eb93c1007d12d683b2926e4f19317de3fcf9e210e8ce87b8f453f0d6960c0bb91c DIST jquery-rails-2.0.2.gem 264192 SHA256 09545ba28d859187918f333e43878428d4216f04e50bebd9b21ccb632a2d8ab9 SHA512 9aeae92c9f74167be20d8f0b187542080470f19ef9aa85bcef2d472868bbbcc578e3dc7e4ef66d03567d1d4e6d708b2538cfb7254377cf93fdcaff14e26a9555 WHIRLPOOL ebb44ab600919ad719eefe1a196c81cdb2a6cf14b5922761e1bcb29dd55b9f0eb2848c413747ac788b9c08d823724ce9fdd4aa2ec60924115151bc3dd82bb5c1 -DIST jquery-rails-2.1.1.gem 265728 SHA256 fbb01addcf503d53657527ab5dcffa82c4940d66b0ea9033bc77a0fafa65c5fa SHA512 7cad3607da183adec85b46fa113fa82e068ef825c62a35311c57f78e695892b8ea5febf63c23692c605c3325f8fa6f106a8d9e2a67dddea5365ff1dad761805b WHIRLPOOL cbdf1a49aa5c60bf6c9a092f7ca339d4b9125a6ecf86a8c42edf658407278dca8b2d773027a837f16cccc377b1963ab8ec2d3a7e3d6dce881b6e20bd3c0429fa -DIST jquery-rails-2.1.2.gem 266752 SHA256 04e310b5bc695f1fc43f15fe9c4afc628484371c5a4508c8f8d1682e71e8e79c SHA512 baec5f994633c6109089d88c5bd9b0e6ddb2cd272c5cbd836d4b99e957d21eef17652bcb89effbe624b56124310cc4f8385818bfeb2dd657af21aab0874e9cd9 WHIRLPOOL 9ff8d5048c57ac42c3bfd96657a584204e3a67ebcc53cfded8bd2404271f93e86a5aeea9f4351955318373b675be1754a66a21472e7b29b8056e6c0a32806909 DIST jquery-rails-2.1.3.gem 268800 SHA256 71d80b10a45fa95e61f34731311878e9f690b6e7e69353b6b704d91cd58acacc SHA512 88b4d768c959df453f9280b3aaeca82a884583046431037ef86ccd062ce433abafad47141adb49de89fc22d8997b8a8e11aa1727e12580c4a75c58a8546d6214 WHIRLPOOL e193fb691f6c3f353f4f9630fc6ed8deeae4f14cd230019d0693984eb4315663bebfc3b9d0087ec0cd05e575e920c1026b787415422e8d59e75c64df2a227382 DIST jquery-rails-2.1.4.gem 301568 SHA256 03acc05e3513144c3eab7561d115507768b194ad2edd9806f9138ff0621a1f70 SHA512 864c65f4a22f7ee8db8ec5f81b75746de296329759aae8727c7b49f773f8a59afcd720b7594bb7da62db8e75f386db3c568bdfa860574c7d0f1c9adc75d1b222 WHIRLPOOL ab76aa524dd7ff01c65f4103c1caa73224961bbc19b87dcb50e8d52190dc2d6a14c73a9675d054f27f26c3e1ee6f4a4899dd44ae337c3049880a03fd030f989a +DIST jquery-rails-2.2.0.gem 356864 SHA256 f2865a362ea1e1efc279a21ab896d1958ced79fef8b572879a7a03d45f9ec47c SHA512 f2106181fc029e17bed65186f1165f286a30278a7ce1e5fc69d653324177b2e6b5ead8965de52c0bf791955a724f17bae499ec75aa51247309808631a9aa0ef4 WHIRLPOOL f14528206593bebc510295887626a157aa8a2fe9e694252917e63cc3eb5b630cfdefda99e2fdb320cfb489bf702803b0d0ad35fd6fdda3f85b3ab1062773d0a8 diff --git a/dev-ruby/jquery-rails/jquery-rails-2.1.1.ebuild b/dev-ruby/jquery-rails/jquery-rails-2.1.1.ebuild deleted file mode 100644 index 7ff8bc6d81e8..000000000000 --- a/dev-ruby/jquery-rails/jquery-rails-2.1.1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/jquery-rails/jquery-rails-2.1.1.ebuild,v 1.2 2013/01/16 00:52:18 zerochaos Exp $ - -EAPI=4 -USE_RUBY="ruby18 ruby19 ree18" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_TASK_TEST="" - -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" - -RUBY_FAKEGEM_EXTRAINSTALL="vendor" - -RUBY_FAKEGEM_GEMSPEC="jquery-rails.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="jQuery! For Rails! So great." -HOMEPAGE="http://www.rubyonrails.org" - -LICENSE="MIT" -SLOT="2" -KEYWORDS="~amd64 ~arm ~x86 ~x64-macos" - -IUSE="" - -ruby_add_rdepend ">=dev-ruby/railties-3.2.0 >=dev-ruby/thor-0.14" - -all_ruby_prepare() { - sed -i -e '/git ls-files/d' jquery-rails.gemspec || die -} diff --git a/dev-ruby/jquery-rails/jquery-rails-2.1.2.ebuild b/dev-ruby/jquery-rails/jquery-rails-2.2.0.ebuild similarity index 82% rename from dev-ruby/jquery-rails/jquery-rails-2.1.2.ebuild rename to dev-ruby/jquery-rails/jquery-rails-2.2.0.ebuild index d5d241346d66..b1cfa64b6c97 100644 --- a/dev-ruby/jquery-rails/jquery-rails-2.1.2.ebuild +++ b/dev-ruby/jquery-rails/jquery-rails-2.2.0.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/dev-ruby/jquery-rails/jquery-rails-2.1.2.ebuild,v 1.2 2013/01/16 00:52:18 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/jquery-rails/jquery-rails-2.2.0.ebuild,v 1.1 2013/01/20 08:26:33 graaff Exp $ -EAPI=4 +EAPI=5 USE_RUBY="ruby18 ruby19 ree18" RUBY_FAKEGEM_TASK_DOC="" @@ -25,7 +25,7 @@ KEYWORDS="~amd64 ~arm ~x86 ~x64-macos" IUSE="" -ruby_add_rdepend ">=dev-ruby/railties-3.2.0 >=dev-ruby/thor-0.14" +ruby_add_rdepend ">=dev-ruby/railties-3.0 >=dev-ruby/thor-0.14" all_ruby_prepare() { sed -i -e '/git ls-files/d' jquery-rails.gemspec || die diff --git a/dev-ruby/pry/Manifest b/dev-ruby/pry/Manifest index 95aa0f3ceb25..eef81e84564c 100644 --- a/dev-ruby/pry/Manifest +++ b/dev-ruby/pry/Manifest @@ -1 +1,2 @@ +DIST pry-0.9.11.4.gem 192512 SHA256 fb4ac57bd13e72469ed11414e4cea389e4a70040d9d0c84b158470b4c3353a91 SHA512 7af52b79992f9472aafd2dcb3a32aea4fc3b89c6cafba2a59dbbe56c19e9afe6324c9c94af5c698bf4f8b0b34b0435effde24580769c09063537acd9af75ef9b WHIRLPOOL e1df46561d742a6dfa1523be7cb91091b906c6180086079d0732bdde49264f336721392ed2514758b8fa4950033c8785840ddf6e3aef2fa546fde1d58cb0e02f DIST pry-0.9.7.4.gem 99328 SHA256 dd19dc0153d6569745227987deb8a504e3cd39e80779162d91b7c7805cfdb312 SHA512 48eabfa9ac3cfc1c7afe85c81a6dae0853fef344f16d9dc1838240fc0819ee76b37f21936c0c2e4b313c4fcfd4b726c52251764442827f6a319f7ad6de6a5165 WHIRLPOOL 6144aa50a6543de30a0d3535488bc2c1b91296cb7bf9c959dcb62ca5d79642f229a5c2798cab0d2789a7e0ef860dd484f405a479036991a2399e5f14726082f5 diff --git a/dev-ruby/pry/pry-0.9.11.4.ebuild b/dev-ruby/pry/pry-0.9.11.4.ebuild new file mode 100644 index 000000000000..98bc5ff928c4 --- /dev/null +++ b/dev-ruby/pry/pry-0.9.11.4.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/pry/pry-0.9.11.4.ebuild,v 1.1 2013/01/20 13:41:55 graaff Exp $ + +EAPI=5 + +USE_RUBY="ruby19" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="README.markdown" +RUBY_FAKEGEM_GEMSPEC=${PN}.gemspec + +inherit ruby-fakegem + +DESCRIPTION="Pry is a powerful alternative to the standard IRB shell for Ruby." +HOMEPAGE="https://github.com/pry/pry/wiki" +IUSE="" +SLOT="ruby19" + +LICENSE="MIT" +KEYWORDS="~amd64 ~ppc64 ~x86" + +ruby_add_rdepend " + >=dev-ruby/coderay-1.0.5 + >=dev-ruby/slop-3.4.1:3 + >=dev-ruby/method_source-0.8" + +ruby_add_bdepend "test? ( >=dev-ruby/bacon-1.1 >=dev-ruby/open4-1.3 )" + +all_ruby_prepare() { + # Avoid unneeded dependency on git. + sed -i -e '/git ls-files/d' ${RUBY_FAKEGEM_GEMSPEC} || die +} + +each_ruby_test() { + ${RUBY} -S bacon -Ispec -q spec/*_spec.rb spec/*/*_spec.rb || die +} diff --git a/dev-ruby/rails/Manifest b/dev-ruby/rails/Manifest index 9c396bdaaed6..2f28401f4578 100644 --- a/dev-ruby/rails/Manifest +++ b/dev-ruby/rails/Manifest @@ -1,9 +1,5 @@ -DIST rails-2.3.14.gem 243200 SHA256 d73302e2ba500ac8efef9d0397c341c0c40b055a67a5fc43503df67d1df29852 SHA512 0a999afd758da89051271575c6f06112402fb80dfc9cb66c8f0bd0ca40275d3e682439a4ef5efe7a28d8b74f56dc6c4fc7172358275b7aa9f9cf3aebe8694a5e WHIRLPOOL 13a7ac4c8d01324d3073cda3ee2a4d658d7f61c6adb2ade999e3af405edc1b5fb941f70489c25b99e272293761f11c543e6474fffde0db38be0c46a0181484c7 DIST rails-2.3.15.gem 211968 SHA256 21c177e2577faa9d09319a965870ee5f03d944d2e558573df852659cd729a79e SHA512 eef8b60224b82393e2a3387e45bae37d7d500e831baf20c54923a98fd106c981bded8da8f9907b935222951fc446d5bfab5b77ec55e5d40e182c7955cbee5c98 WHIRLPOOL b72eebe369f55a0081adab489d0f0612f00ae7174d2514d793c3fa4235b5636334b03e5317b497ba4c7a53170fecb0c9e6c369234619ad1781d131db972c6304 -DIST rails-3.0.18.gem 3584 SHA256 c96ba8e2455bc77afa663361e741897c8b495c6f626345c1db8b609348cdb122 SHA512 b7249995fdc8fb9774a32d876bc604720d4dac401e8a11e2e7b26f172ce626185a99816dd44b9f91bb3498c6b5ab806a21a58dcab806d587e75c6fe3f4d6b117 WHIRLPOOL f9dfb61c167e8996a9aa0c8edee570ea42368b1727db9115dc06a21405f0ef25d98dddba538f7fc86ec9a5b44e63c9ec786637420349827304123d75e1d240ff DIST rails-3.0.19.gem 4608 SHA256 da9e6e21a032770f56c0e92f7099897a3638392f8d4a37cd572641915056c7ca SHA512 173c6484f12032504dad828d996e76315eb95d8d5455ed74d73588a7fadcb7af26f24d820e16807f6f10d349e06f8a7fbb364828890a3e5f3fd83d1090c4fb50 WHIRLPOOL c7ac3beabd88969e68fa7ffe1dde38cad0cabedcf3581ac903f2c35b83fa3759af521f2335c968e16ba9fc1ff119bb4ab074171aa99865a931d518fcc3d2c898 DIST rails-3.1.10.gem 4608 SHA256 1bdd1d8597d50e2b3bcea99491541855774182dbe0b39d07ed75c321c1e6b621 SHA512 ef2082e4951a99a8fac9f5a2690b6885fe4ee5931839f194eb4dcc005d891bf8b9840d828844cadf7b1aa08aa60b0715ae13701ff61d83af981642dc53cb8fd1 WHIRLPOOL 1d71183802182ebf91f3c21dc51f83bff7d2202e2265bea3034f10735499ba23de89e3eb0dcd7a536084511900ec8585fd8a99b61a82a5bde7ccc65cfe2cd343 DIST rails-3.1.3.gem 3584 SHA256 e817252efd196b32a16b0af6a92eecd8b2e0b1cbe1511b36fab6c8acdc53e81e SHA512 f3217a24d0f91a298a0aa43f08a3c346e3c71622fcd6dfa66191b483cb848517efd61bdcd1f6ca94cda421c5cc0434df2516929a922dacb7ae2efe7280b53942 WHIRLPOOL 2283a34cfecff079a761366fbf7f06b48a0c4343cd8c8fff6c792c167f0deaeb4b6d6612f4f051be2a242a5e21deb9b4019a11d5c9f83e9dfece004dccf64ab7 -DIST rails-3.1.9.gem 4608 SHA256 3f8187f4651afa2cc25c9adcf98cd1292ca3d868484c1cb230ef0534b5be923b SHA512 3e38240cce42128c738975e6e54d816624756dbef0e096c73751b4f805b55f926adc9545f14358610405a1d2706de5847c50ef3adb5dd82f539bcdfe4b8d4f6b WHIRLPOOL 0d010266b6ed79501425b5ee613e635800558ceedd4f0a02ba6769c49c2f1ed9b23e31e7f06a1dd748af8cd0de26b75879e81fe61379c9c7a88c8c4ea0e532a2 -DIST rails-3.2.10.gem 4608 SHA256 a90e9d6d953b63b4ff19c99fc0a5c823537ede5ef0528cf6dce6debde4f0e1ef SHA512 448678ba66db2091b6df01ec0c06a25ea7eed0612b2cb0699b2137ad2839c5f64a531c6fd5f635080fd1a4dbd6a2b3997bfb4df23ec74afced994c4d18fa4176 WHIRLPOOL bab993cf1f036f1fb5c54330a071127e28acea64d3e5e1e4f3e34e36516f5ae6d99c04367ba0bbce9450d9d8c5adacc8b95957d2a87a7d9683b274b327745e09 DIST rails-3.2.11.gem 4608 SHA256 f5e02999889aa39af2c7d2c882d9e3b5c71e8adfc98236a69dadacdfbce5603e SHA512 3c0d8d88611ded1e48d76470eea91ab7f36541ed774595e102af7bac2dd2e97bba26f39838a7a8bc1e91ea5f272116073bb961a0fb9d1a310ee3c42e933871e2 WHIRLPOOL 13b4d80adc84616e39120b58ab2b612d67bff8ff63d473406aae8888166eedaa703bde48462c77c9598506dea5dd009ebe488586689fd4a2e313ba0fa1d85d81 diff --git a/dev-ruby/rails/rails-2.3.14.ebuild b/dev-ruby/rails/rails-2.3.14.ebuild deleted file mode 100644 index 33a48931558c..000000000000 --- a/dev-ruby/rails/rails-2.3.14.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.3.14.ebuild,v 1.6 2012/05/01 18:24:10 armin76 Exp $ - -EAPI=2 -USE_RUBY="ruby18 ree18" - -RUBY_FAKEGEM_EXTRAINSTALL="builtin configs doc dispatches environments fresh_rakefile helpers html README" -RUBY_FAKEGEM_EXTRADOC="README CHANGELOG" - -RUBY_FAKEGEM_BINWRAP="" - -# gem lacks tests -RUBY_FAKEGEM_TASK_TEST="" - -inherit ruby-fakegem - -DESCRIPTION="ruby on rails is a web-application and persistance framework" -HOMEPAGE="http://www.rubyonrails.org" - -LICENSE="MIT" -SLOT="2.3" -KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" - -IUSE="" - -RDEPEND=">=app-admin/eselect-rails-0.15" - -ruby_add_rdepend ">=dev-ruby/rake-0.8.3 - dev-ruby/rdoc - ~dev-ruby/activerecord-${PV} - ~dev-ruby/activeresource-${PV} - ~dev-ruby/activesupport-${PV} - ~dev-ruby/actionmailer-${PV} - ~dev-ruby/actionpack-${PV}" -ruby_add_bdepend "doc? ( dev-ruby/redcloth )" - -all_ruby_prepare() { - sed -i -e '/horo/d' Rakefile || die "Could not remove reference to unavailable documentation template." - - # Create the documentation that we create on the fly in a separate - # directory, since we need to install the doc directory for the - # rails script. - sed -i -e "s/rdoc_dir = 'doc'/rdoc_dir = 'rdoc'/" Rakefile || die - -} - -all_ruby_install() { - all_fakegem_install - - ruby_fakegem_binwrapper rails rails-${PV} - - if use doc; then - pushd rdoc - docinto api - dohtml -r * - popd - fi -} - -pkg_postinst() { - elog "To select between slots of rails, use:" - elog "\teselect rails" - - eselect rails update -} - -pkg_postrm() { - eselect rails update -} diff --git a/dev-ruby/rails/rails-3.0.18.ebuild b/dev-ruby/rails/rails-3.0.18.ebuild deleted file mode 100644 index 0df2fc85699c..000000000000 --- a/dev-ruby/rails/rails-3.0.18.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/dev-ruby/rails/rails-3.0.18.ebuild,v 1.1 2013/01/03 08:07:12 graaff Exp $ - -EAPI=2 -USE_RUBY="ruby18 ree18" - -RUBY_FAKEGEM_BINWRAP="" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_TASK_TEST="" - -inherit ruby-fakegem - -DESCRIPTION="ruby on rails is a web-application and persistance framework" -HOMEPAGE="http://www.rubyonrails.org" - -LICENSE="MIT" -SLOT="3.0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" - -IUSE="" - -RDEPEND=">=app-admin/eselect-rails-0.16" - -ruby_add_rdepend " - ~dev-ruby/actionmailer-${PV} - ~dev-ruby/actionpack-${PV} - ~dev-ruby/activerecord-${PV} - ~dev-ruby/activeresource-${PV} - ~dev-ruby/activesupport-${PV} - =dev-ruby/bundler-1.0* - ~dev-ruby/railties-${PV}" - -all_ruby_install() { - all_fakegem_install - - ruby_fakegem_binwrapper rails rails-${PV} -} - -pkg_postinst() { - elog "To select between slots of rails, use:" - elog "\teselect rails" - - eselect rails update -} - -pkg_postrm() { - eselect rails update -} diff --git a/dev-ruby/rails/rails-3.1.9.ebuild b/dev-ruby/rails/rails-3.1.9.ebuild deleted file mode 100644 index 4f8a223b1de7..000000000000 --- a/dev-ruby/rails/rails-3.1.9.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-3.1.9.ebuild,v 1.1 2013/01/03 07:29:50 graaff Exp $ - -EAPI=4 -USE_RUBY="ruby18 ruby19 ree18" - -RUBY_FAKEGEM_BINWRAP="" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_TASK_TEST="" - -inherit ruby-fakegem - -DESCRIPTION="ruby on rails is a web-application and persistance framework" -HOMEPAGE="http://www.rubyonrails.org" - -LICENSE="MIT" -SLOT="3.1" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" - -IUSE="+asset-pipeline" - -RDEPEND=">=app-admin/eselect-rails-0.18" - -ruby_add_rdepend " - ~dev-ruby/actionmailer-${PV} - ~dev-ruby/actionpack-${PV} - ~dev-ruby/activerecord-${PV} - ~dev-ruby/activeresource-${PV} - ~dev-ruby/activesupport-${PV} - =dev-ruby/bundler-1* - ~dev-ruby/railties-${PV} - asset-pipeline? ( - dev-ruby/jquery-rails:0 - dev-ruby/sass-rails - dev-ruby/uglifier - dev-ruby/coffee-rails - )" - -all_ruby_install() { - all_fakegem_install - - ruby_fakegem_binwrapper rails rails-${PV} -} - -pkg_postinst() { - elog "To select between slots of rails, use:" - elog "\teselect rails" - - eselect rails update -} - -pkg_postrm() { - eselect rails update -} diff --git a/dev-ruby/rails/rails-3.2.10.ebuild b/dev-ruby/rails/rails-3.2.10.ebuild deleted file mode 100644 index de41602d5ba1..000000000000 --- a/dev-ruby/rails/rails-3.2.10.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-3.2.10.ebuild,v 1.2 2013/01/16 00:58:11 zerochaos Exp $ - -EAPI=4 -USE_RUBY="ruby18 ruby19 ree18" - -RUBY_FAKEGEM_BINWRAP="" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_TASK_TEST="" - -inherit ruby-fakegem versionator - -DESCRIPTION="ruby on rails is a web-application and persistance framework" -HOMEPAGE="http://www.rubyonrails.org" - -LICENSE="MIT" -SLOT="$(get_version_component_range 1-2)" -KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" - -IUSE="+asset-pipeline" - -ruby_add_rdepend " - ~dev-ruby/actionmailer-${PV} - ~dev-ruby/actionpack-${PV} - ~dev-ruby/activerecord-${PV} - ~dev-ruby/activeresource-${PV} - ~dev-ruby/activesupport-${PV} - =dev-ruby/bundler-1* - ~dev-ruby/railties-${PV} - asset-pipeline? ( - dev-ruby/jquery-rails - >=dev-ruby/sass-rails-3.2.3:3.2 - >=dev-ruby/uglifier-1.0.3 - >=dev-ruby/coffee-rails-3.2.1:3.2 - )" diff --git a/dev-ruby/railties/Manifest b/dev-ruby/railties/Manifest index 8d8902f68a91..0ae4d3d8975e 100644 --- a/dev-ruby/railties/Manifest +++ b/dev-ruby/railties/Manifest @@ -1,7 +1,4 @@ -DIST rails-3.0.18.tgz 3509111 SHA256 a9cd1373e01fc5a4a07e30146f38b35b4726fb52ab194801deaeee9b9c016c51 SHA512 e1dcfefd22972b6e8e96fcddb8fc0e1cdef3c50795f525d3f98900239316c5b4347e9a693e4f0d0cec5fed443717458a4d2563a8ff1cdbdf14882e1cdb2b9066 WHIRLPOOL 60417d3e6297ca73d4beccf3b659928f948a827e1a2c92db72c34181f612ebe58f1633164d832dc7c5a4567c1758fd97921c82ced33d2737dd719ea322754c35 DIST rails-3.0.19.tgz 3510042 SHA256 a8a9c7ce5aba53bc13d6621ddf2b55adf1f8ad18999217580af2171db30cec43 SHA512 98ccc8724767202999007592571e9aff85fe121616d4e31409cbdd0917e8419c858b4e9cb547721da0e5bd6e5c46f3c31344c91227abef97009ad96bfe31f952 WHIRLPOOL 2d8bf0941d8a6efc78a69601ea8c44f61026974aa3ff58ab076873388866dd3d05eb9a7ad0db4e6772e17cb2b4c4c2113b5bb506066d7dd9b508b44a2a52cf76 DIST rails-3.1.10.tgz 3394031 SHA256 d0614db8c4011ed1fcb4bd0afeb8220634b1ec8b196ee40a956c77a76026ef65 SHA512 c6b3db4043345c81582ab22289c29630e3946dc1936adebff0af196f461236805ab146e74ed400fe045d980df562ae44479e36c2c8747ed8a6ba6807add23e6b WHIRLPOOL 5329cd31170ce2ee7c109c9c1152b5eed35c8ec1af48a84d03eff4bb4fe083a7a9840ceb076575961d84c6baeb725fe1c5eed1a4756d39a8bc52a26f23dc6123 DIST rails-3.1.3.tgz 3638313 SHA256 412c8a3ae4e0d5283ace45a2ee95127418d6b70fb1a954087b09755ab3a25e99 SHA512 286434f02c16f9cde51c160a5f84ac9b53d9d3aaf44c6c8018cef3250213cd39909013006223cceea8bd68ffe0bdc8ce50b0695e57756d8bb9ec44ab5986a711 WHIRLPOOL 710aa7c64c71b46741e19be41023aa6acf7dfeb25b94f8f14c10748f4a4a4cacd61ecf51a9db0b4eae1d0a1797f4287fd9b0f139a874f1659cab8fa5f252c200 -DIST rails-3.1.9.tgz 3394638 SHA256 4074445226cc00ac8f0b0c6b5578a14d7b3614af948ed1993711d75cf7efdd83 SHA512 c44fe3fba7526e2ccda6bf31b0fa94f59141484abf7deb3453287487f7a2cb226b41434d6240ad4677f51d76cc6818f76e7e3ca90e289cd52079bee988c44c1a WHIRLPOOL 2cb16ba25c77cae03cd4558b34a2ed44547c5bdcc3f59510cdb77283c6f9c2d86c0d0cbd2a497f1de4cf34ae930d1c9f59d88035acc113fb9abac42792abf710 -DIST rails-3.2.10.tgz 3546186 SHA256 068a910b8798a9b65492b6da3b9e45f28ce9d4bb5cef53c7d0f87a12d074d190 SHA512 4df0fa285d45c4a058e748d121b8ce43226c6738737e61d29b1e30141acde783535a89d4c115f8a1e37c46d06735462ecd16c8319caf43626790fce6e04aa5b5 WHIRLPOOL 8eb627d5622be368be699899f2fb6f8eed2a225a4b84823968c422d992e01ff1802504020edea3245f24a9d45f7625576278ea4fffb5dd4fc58ae877005aeb9c DIST rails-3.2.11.tgz 3547068 SHA256 3f05603f84bfb7a99f999f878af247533706255e6b3baa4111439b6f5fd8ab70 SHA512 50644772186127887bd4d7537ad41cbe549c5c8496274cad2765f21859528a0f42f5b8dbe3a1627a08b1724b2e019c0ec6526cccfdff3da4ffcec285f9259558 WHIRLPOOL 70d5620fc611872b2af62351c81abbe43b3b1d41c92a1d1935cef704a4a655c9bb043599bc758c947c14378ef52e34b44c61536d5a048401cc6bfaef613eba23 diff --git a/dev-ruby/railties/railties-3.0.18.ebuild b/dev-ruby/railties/railties-3.0.18.ebuild deleted file mode 100644 index 94261ad76a29..000000000000 --- a/dev-ruby/railties/railties-3.0.18.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/railties/railties-3.0.18.ebuild,v 1.1 2013/01/03 08:06:47 graaff Exp $ - -EAPI=4 -USE_RUBY="ruby18 ree18" - -RUBY_FAKEGEM_TASK_TEST="test:regular" -RUBY_FAKEGEM_TASK_DOC="generate_guides" -RUBY_FAKEGEM_DOCDIR="guides/output" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="railties.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Tools for creating, working with, and running Rails applications." -HOMEPAGE="http://github.com/rails/rails" -SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="3.0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -RUBY_S="rails-rails-*/railties" - -# The test suite has many failures, most likely due to a mismatch in -# exact dependencies or environment specifics. Needs further -# investigation. -RESTRICT="test" - -ruby_add_rdepend " - ~dev-ruby/activesupport-${PV} - ~dev-ruby/actionpack-${PV} - >=dev-ruby/rdoc-3.4 - >=dev-ruby/thor-0.14.4 - >=dev-ruby/rake-0.8.7" - -ruby_add_bdepend " - test? ( - >=dev-ruby/mocha-0.9.5 - virtual/ruby-test-unit - ) - doc? ( - >=dev-ruby/redcloth-4.1.1 - )" - -all_ruby_prepare() { - # allow newer thor - sed -i -e '/dependency.*thor/s:~>:>=:' ${RUBY_FAKEGEM_GEMSPEC} || die -} diff --git a/dev-ruby/railties/railties-3.1.9.ebuild b/dev-ruby/railties/railties-3.1.9.ebuild deleted file mode 100644 index 1bb687c17d56..000000000000 --- a/dev-ruby/railties/railties-3.1.9.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/dev-ruby/railties/railties-3.1.9.ebuild,v 1.2 2013/01/16 00:49:20 zerochaos Exp $ - -EAPI=4 -USE_RUBY="ruby18 ruby19 ree18" - -RUBY_FAKEGEM_TASK_TEST="test:regular" -RUBY_FAKEGEM_TASK_DOC="generate_guides" -RUBY_FAKEGEM_DOCDIR="guides/output" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="railties.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Tools for creating, working with, and running Rails applications." -HOMEPAGE="http://github.com/rails/rails" -SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="3.1" -KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -RUBY_S="rails-rails-*/railties" - -# The test suite has many failures, most likely due to a mismatch in -# exact dependencies or environment specifics. Needs further -# investigation. -RESTRICT="test" - -ruby_add_rdepend " - ~dev-ruby/activesupport-${PV} - ~dev-ruby/actionpack-${PV} - >=dev-ruby/rdoc-3.4 - >=dev-ruby/thor-0.14.6 - >=dev-ruby/rack-ssl-1.3.2:1.3 - >=dev-ruby/rake-0.8.7" - -ruby_add_bdepend " - test? ( - >=dev-ruby/mocha-0.9.5 - virtual/ruby-test-unit - ) - doc? ( - >=dev-ruby/redcloth-4.1.1 - )" - -all_ruby_prepare() { - # Remove items from the common Gemfile that we don't need for this - # test run. This also requires handling some gemspecs. - sed -i -e '/\(uglifier\|system_timer\|sdoc\|w3c_validators\|pg\)/d' ../Gemfile || die - - # allow newer thor - sed -i -e '/dependency.*thor/s:~>:>=:' ${RUBY_FAKEGEM_GEMSPEC} || die -} diff --git a/dev-ruby/railties/railties-3.2.10.ebuild b/dev-ruby/railties/railties-3.2.10.ebuild deleted file mode 100644 index c735bc51786c..000000000000 --- a/dev-ruby/railties/railties-3.2.10.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/railties/railties-3.2.10.ebuild,v 1.2 2013/01/16 00:49:20 zerochaos Exp $ - -EAPI=4 -USE_RUBY="ruby18 ruby19 ree18" - -RUBY_FAKEGEM_TASK_TEST="test:regular" -RUBY_FAKEGEM_TASK_DOC="generate_guides" -RUBY_FAKEGEM_DOCDIR="guides/output" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="railties.gemspec" - -RUBY_FAKEGEM_BINWRAP="" - -inherit ruby-fakegem versionator - -DESCRIPTION="Tools for creating, working with, and running Rails applications." -HOMEPAGE="http://github.com/rails/rails" -SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz" - -LICENSE="MIT" -SLOT="$(get_version_component_range 1-2)" -KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -RUBY_S="rails-rails-*/railties" - -# The test suite has many failures, most likely due to a mismatch in -# exact dependencies or environment specifics. Needs further -# investigation. -RESTRICT="test" - -RDEPEND+=">=app-admin/eselect-rails-0.18" - -ruby_add_rdepend " - ~dev-ruby/activesupport-${PV} - ~dev-ruby/actionpack-${PV} - >=dev-ruby/rdoc-3.4 - >=dev-ruby/thor-0.14.6 - >=dev-ruby/rack-ssl-1.3.2:1.3 - >=dev-ruby/rake-0.8.7" - -ruby_add_bdepend " - test? ( - >=dev-ruby/mocha-0.9.5 - virtual/ruby-test-unit - ) - doc? ( - >=dev-ruby/redcloth-4.1.1 - )" - -all_ruby_prepare() { - # Remove items from the common Gemfile that we don't need for this - # test run. This also requires handling some gemspecs. - sed -i -e '/\(uglifier\|system_timer\|sdoc\|w3c_validators\|pg\)/d' ../Gemfile || die -} - -all_ruby_install() { - all_fakegem_install - - ruby_fakegem_binwrapper rails rails-${PV} -} - -pkg_postinst() { - elog "To select between slots of rails, use:" - elog "\teselect rails" - - eselect rails update -} - -pkg_postrm() { - eselect rails update -} diff --git a/dev-ruby/rspec-core/rspec-core-2.12.2.ebuild b/dev-ruby/rspec-core/rspec-core-2.12.2.ebuild index 0079f22e7e50..9c81f5ad4532 100644 --- a/dev-ruby/rspec-core/rspec-core-2.12.2.ebuild +++ b/dev-ruby/rspec-core/rspec-core-2.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-ruby/rspec-core/rspec-core-2.12.2.ebuild,v 1.5 2013/01/15 05:52:14 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.12.2.ebuild,v 1.6 2013/01/20 17:07:14 ago Exp $ EAPI=4 USE_RUBY="ruby18 ree18 ruby19 jruby" @@ -23,7 +23,7 @@ SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz -> ${P}-git.tgz" LICENSE="MIT" SLOT="2" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" RDEPEND="${RDEPEND} !=dev-ruby/diff-lcs-1.1.3" diff --git a/dev-ruby/rspec-mocks/rspec-mocks-2.12.1.ebuild b/dev-ruby/rspec-mocks/rspec-mocks-2.12.1.ebuild index 6fcff6019310..667dea4b508f 100644 --- a/dev-ruby/rspec-mocks/rspec-mocks-2.12.1.ebuild +++ b/dev-ruby/rspec-mocks/rspec-mocks-2.12.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-mocks/rspec-mocks-2.12.1.ebuild,v 1.5 2013/01/15 03:22:35 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-mocks/rspec-mocks-2.12.1.ebuild,v 1.6 2013/01/20 17:06:24 ago Exp $ EAPI=4 USE_RUBY="ruby18 ree18 ruby19 jruby" @@ -19,7 +19,7 @@ RUBY_S="rspec-${PN}-*" LICENSE="MIT" SLOT="2" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" ruby_add_bdepend " diff --git a/dev-ruby/rspec/rspec-2.12.0.ebuild b/dev-ruby/rspec/rspec-2.12.0.ebuild index 181685a9f28c..ac6fe449f889 100644 --- a/dev-ruby/rspec/rspec-2.12.0.ebuild +++ b/dev-ruby/rspec/rspec-2.12.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/rspec/rspec-2.12.0.ebuild,v 1.5 2013/01/15 05:53:32 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec/rspec-2.12.0.ebuild,v 1.6 2013/01/20 17:05:38 ago Exp $ EAPI=2 USE_RUBY="ruby18 ruby19 ree18 jruby" @@ -17,7 +17,7 @@ HOMEPAGE="http://rspec.rubyforge.org/" LICENSE="MIT" SLOT="2" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" SUBVERSION="$(get_version_component_range 1-2)" diff --git a/dev-ruby/sexp_processor/sexp_processor-3.2.0.ebuild b/dev-ruby/sexp_processor/sexp_processor-3.2.0.ebuild index 20882b51e88b..028a45311256 100644 --- a/dev-ruby/sexp_processor/sexp_processor-3.2.0.ebuild +++ b/dev-ruby/sexp_processor/sexp_processor-3.2.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/sexp_processor/sexp_processor-3.2.0.ebuild,v 1.3 2013/01/15 06:00:01 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sexp_processor/sexp_processor-3.2.0.ebuild,v 1.6 2013/01/20 17:04:23 ago Exp $ EAPI=4 @@ -17,7 +17,7 @@ HOMEPAGE="http://www.zenspider.com/ZSS/Products/ParseTree/" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" ruby_add_bdepend " diff --git a/dev-ruby/test-unit/test-unit-2.5.3.ebuild b/dev-ruby/test-unit/test-unit-2.5.3.ebuild index 73ac4af60147..1a9b0b13b193 100644 --- a/dev-ruby/test-unit/test-unit-2.5.3.ebuild +++ b/dev-ruby/test-unit/test-unit-2.5.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/test-unit/test-unit-2.5.3.ebuild,v 1.7 2013/01/16 18:51:05 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/test-unit/test-unit-2.5.3.ebuild,v 1.8 2013/01/20 10:19:58 ago Exp $ EAPI=4 USE_RUBY="ruby18 ruby19 ree18 jruby" @@ -23,7 +23,7 @@ HOMEPAGE="http://test-unit.rubyforge.org/" LICENSE="Ruby" SLOT="2" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="doc test" all_ruby_compile() { diff --git a/dev-tex/glossaries/glossaries-3.04.ebuild b/dev-tex/glossaries/glossaries-3.04.ebuild index 08aa1e8f4ce7..c548113d5b45 100644 --- a/dev-tex/glossaries/glossaries-3.04.ebuild +++ b/dev-tex/glossaries/glossaries-3.04.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-tex/glossaries/glossaries-3.04.ebuild,v 1.10 2013/01/13 11:21:58 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/glossaries/glossaries-3.04.ebuild,v 1.11 2013/01/20 10:14:40 ago Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="mirror://gentoo/${P}.zip" LICENSE="LPPL-1.2" SLOT="0" -KEYWORDS="~alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="doc examples" RDEPEND="dev-lang/perl diff --git a/dev-tex/luatex/luatex-0.70.1-r1.ebuild b/dev-tex/luatex/luatex-0.70.1-r1.ebuild index 217924165671..8fc1ec6a2908 100644 --- a/dev-tex/luatex/luatex-0.70.1-r1.ebuild +++ b/dev-tex/luatex/luatex-0.70.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-tex/luatex/luatex-0.70.1-r1.ebuild,v 1.7 2013/01/16 18:52:48 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/luatex/luatex-0.70.1-r1.ebuild,v 1.9 2013/01/20 13:16:49 ago Exp $ EAPI=4 @@ -13,7 +13,7 @@ SRC_URI="http://foundry.supelec.fr/gf/download/frsrelease/392/1730/${PN}-beta-${ LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~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 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="doc" RDEPEND="dev-libs/zziplib diff --git a/dev-util/android-sdk-update-manager/Manifest b/dev-util/android-sdk-update-manager/Manifest index 2cd890cb339e..f73f6a10d545 100644 --- a/dev-util/android-sdk-update-manager/Manifest +++ b/dev-util/android-sdk-update-manager/Manifest @@ -1,4 +1 @@ -DIST android-sdk_r17-linux.tgz 29706368 SHA256 4b133a926c95b7fb08b171d8055c0bf632971343f578234c19dfcb5adcb0d6fd SHA512 3866e51f67ba34c254cf972173620907cf4baab2e46447e20092d9000a526f70aa58c9fce39d93c60eabb6baf5dd670cdfdac248ff6234da5ce4e08c2a2dcca4 WHIRLPOOL 94a586272a02d90aaddf206f9247716998cca369e71a1b98894b55ad87b5901419ec8c2cff3eb5ecd98d66af5fb9b363610d6383ee4edbe489be0514cba43fe9 -DIST android-sdk_r20-linux.tgz 82589455 SHA256 58c0728fe75fd0ef6800bf70d3d030c16364272d5c018ccef38118e6a84cffdb SHA512 8186e5a90b67d6230ab976e1f429228fe7545b4d4624be239586f9aebf58d145fafcd5436675a071b4883d6fdb794b2ac0fa94d86cbbf06d7e219d47fc9e5945 WHIRLPOOL d1de01561884f8516bb8cea8bff67a286451277c2be89e796f075f0e9cf888c9340f95726118e5db43fa59be157f1f09c25bebeb3f6f428b3fb0acdf9e0e9fa6 -DIST android-sdk_r20.0.3-linux.tgz 82616305 SHA256 81c1be035fa5544c73327e1cfb61884e3c2e89a83deb9796b1c729a97b20cb75 SHA512 187ee7bda5017d6ab15a8d660272bdea59f8ae490362227231db424c0e439dafc74c8cbed675e988508e617f3e02bd25d710a378372d79681ac8728b9a60b085 WHIRLPOOL 05f3deecf6571ad37d1f0a255c6c4965a86c396833a741316463de3e24f1abd9b7a3e31bd400e8a0acd3e8e39bee5c65417cc32f9b943412e4527579dedbca2a DIST android-sdk_r21-linux.tgz 91378351 SHA256 ad3e642626407b78d0fafe7ff89d1ee388b1f5c6f2eba83ce9364957a038ab9d SHA512 3a3338265a2d00f8b7fbb35783d7449498afd8107ddd4ed4c2c34e47582d83eb23f78d02fe01db54c12c48dba0167f60118c1061f1bfeb0048147674fee8d87c WHIRLPOOL feeb9d060a460ec2738a612ae90689791edf54deabcb1b1c37ddec22fb8bfaa13fc4dd53aecfbd5ac70309ce299a88ed84080ef7a2e1a14a6959d4ecf21fbfc9 diff --git a/dev-util/android-sdk-update-manager/android-sdk-update-manager-17.ebuild b/dev-util/android-sdk-update-manager/android-sdk-update-manager-17.ebuild deleted file mode 100644 index eb452ff44594..000000000000 --- a/dev-util/android-sdk-update-manager/android-sdk-update-manager-17.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/dev-util/android-sdk-update-manager/android-sdk-update-manager-17.ebuild,v 1.3 2012/09/24 00:43:59 vapier Exp $ - -EAPI="3" - -inherit eutils user - -MY_P="android-sdk_r${PV}-linux" - -DESCRIPTION="Open Handset Alliance's Android SDK" -HOMEPAGE="http://developer.android.com" -SRC_URI="http://dl.google.com/android/${MY_P}.tgz" -IUSE="" -RESTRICT="mirror" - -LICENSE="android" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DEPEND="app-arch/tar - app-arch/gzip" -RDEPEND=">=virtual/jdk-1.5 - >=dev-java/ant-core-1.6.5 - >=dev-java/swt-3.5 - amd64? ( app-emulation/emul-linux-x86-gtklibs ) - x86? ( x11-libs/gtk+:2 )" - -ANDROID_SDK_DIR="/opt/${PN}" -QA_FLAGS_IGNORED_x86=" - ${ANDROID_SDK_DIR/\/}/tools/emulator - ${ANDROID_SDK_DIR/\/}/tools/adb - ${ANDROID_SDK_DIR/\/}/tools/mksdcard - ${ANDROID_SDK_DIR/\/}/tools/sqlite3 - ${ANDROID_SDK_DIR/\/}/tools/hprof-conv - ${ANDROID_SDK_DIR/\/}/tools/zipalign - ${ANDROID_SDK_DIR/\/}/tools/dmtracedump -" -QA_FLAGS_IGNORED_amd64="${QA_FLAGS_IGNORED_x86}" - -S="${WORKDIR}/android-sdk-linux" - -pkg_setup() { - enewgroup android -} - -src_prepare(){ -# epatch "${FILESDIR}/${PN}-8-swt.patch" - - rm -rf tools/lib/x86* -} - -src_install(){ - dodoc tools/NOTICE.txt "SDK Readme.txt" || die - rm -f tools/NOTICE.txt "SDK Readme.txt" - - dodir "${ANDROID_SDK_DIR}/tools" - cp -pPR tools/* "${ED}${ANDROID_SDK_DIR}/tools" || die "failed to install tools" - - # Maybe this is needed for the tools directory too. - #keepdir "${ANDROID_SDK_DIR}"/{add-ons,docs,platforms,temp} || die "failed to keepdir" - dodir "${ANDROID_SDK_DIR}"/{add-ons,docs,platforms,temp} || die "failed to dodir" - - fowners root:android "${ANDROID_SDK_DIR}"/{,add-ons,docs,platforms,temp,tools} || die - fperms 0775 "${ANDROID_SDK_DIR}"/{,add-ons,docs,platforms,temp,tools} || die - - echo "PATH=\"${EPREFIX}${ANDROID_SDK_DIR}/tools:${EPREFIX}${ANDROID_SDK_DIR}/platform-tools\"" > "${T}/80${PN}" || die - - SWT_PATH= - SWT_VERSIONS="3.7 3.6 3.5" - for version in $SWT_VERSIONS; do - # redirecting stderr to /dev/null - # not sure if this is best, but avoids misleading error messages - SWT_PATH="`dirname \`java-config -p swt-\$version 2>/dev/null\` 2>/dev/null`" - if [ $SWT_PATH ]; then - einfo "SWT_PATH=$SWT_PATH selecting version $version of SWT." - break - fi - done - - echo "ANDROID_SWT=\"${SWT_PATH}\"" >> "${T}/80${PN}" || die - - doenvd "${T}/80${PN}" || die - - echo "SEARCH_DIRS_MASK=\"${EPREFIX}${ANDROID_SDK_DIR}\"" > "${T}/80${PN}" || die - - insinto "/etc/revdep-rebuild" && doins "${T}/80${PN}" || die - -} - -pkg_postinst() { - elog "The Android SDK now uses its own manager for the development environment." - elog "Run 'android' to download the full SDK, including some of the platform tools." - elog "You must be in the android group to manage the development environment." - elog "Just run 'gpasswd -a android', then have re-login." - elog "See http://developer.android.com/sdk/adding-components.html for more" - elog "information." - elog "If you have problems downloading the SDK, see http://code.google.com/p/android/issues/detail?id=4406" - elog "You need to run env-update and source /etc/profile in any open shells" - elog "if you get an SWT error." -} diff --git a/dev-util/android-sdk-update-manager/android-sdk-update-manager-20.0.3.ebuild b/dev-util/android-sdk-update-manager/android-sdk-update-manager-20.0.3.ebuild deleted file mode 100644 index ff8366268d1f..000000000000 --- a/dev-util/android-sdk-update-manager/android-sdk-update-manager-20.0.3.ebuild +++ /dev/null @@ -1,98 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/android-sdk-update-manager/android-sdk-update-manager-20.0.3.ebuild,v 1.3 2012/09/24 00:43:59 vapier Exp $ - -EAPI="3" - -inherit eutils user - -MY_P="android-sdk_r${PV}-linux" - -DESCRIPTION="Open Handset Alliance's Android SDK" -HOMEPAGE="http://developer.android.com" -SRC_URI="http://dl.google.com/android/${MY_P}.tgz" -IUSE="" -RESTRICT="mirror" - -LICENSE="android" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DEPEND="app-arch/tar - app-arch/gzip" -RDEPEND=">=virtual/jdk-1.5 - >=dev-java/ant-core-1.6.5 - >=dev-java/swt-3.5 - amd64? ( app-emulation/emul-linux-x86-gtklibs ) - x86? ( x11-libs/gtk+:2 )" - -ANDROID_SDK_DIR="/opt/${PN}" -QA_FLAGS_IGNORED_x86=" - ${ANDROID_SDK_DIR/\/}/tools/emulator - ${ANDROID_SDK_DIR/\/}/tools/adb - ${ANDROID_SDK_DIR/\/}/tools/mksdcard - ${ANDROID_SDK_DIR/\/}/tools/sqlite3 - ${ANDROID_SDK_DIR/\/}/tools/hprof-conv - ${ANDROID_SDK_DIR/\/}/tools/zipalign - ${ANDROID_SDK_DIR/\/}/tools/dmtracedump -" -QA_FLAGS_IGNORED_amd64="${QA_FLAGS_IGNORED_x86}" - -S="${WORKDIR}/android-sdk-linux" - -pkg_setup() { - enewgroup android -} - -src_prepare(){ - rm -rf tools/lib/x86* -} - -src_install(){ - dodoc tools/NOTICE.txt "SDK Readme.txt" || die - rm -f tools/NOTICE.txt "SDK Readme.txt" - - dodir "${ANDROID_SDK_DIR}/tools" - cp -pPR tools/* "${ED}${ANDROID_SDK_DIR}/tools" || die "failed to install tools" - - # Maybe this is needed for the tools directory too. - dodir "${ANDROID_SDK_DIR}"/{add-ons,docs,platforms,temp} || die "failed to dodir" - - fowners root:android "${ANDROID_SDK_DIR}"/{,add-ons,docs,platforms,temp,tools} || die - fperms 0775 "${ANDROID_SDK_DIR}"/{,add-ons,docs,platforms,temp,tools} || die - - echo "PATH=\"${EPREFIX}${ANDROID_SDK_DIR}/tools:${EPREFIX}${ANDROID_SDK_DIR}/platform-tools\"" > "${T}/80${PN}" || die - - SWT_PATH= - SWT_VERSIONS="4.2 3.7 3.6 3.5" - for version in $SWT_VERSIONS; do - # redirecting stderr to /dev/null - # not sure if this is best, but avoids misleading error messages - SWT_PATH="`dirname \`java-config -p swt-\$version 2>/dev/null\` 2>/dev/null`" - if [ $SWT_PATH ]; then - einfo "SWT_PATH=$SWT_PATH selecting version $version of SWT." - break - fi - done - - echo "ANDROID_SWT=\"${SWT_PATH}\"" >> "${T}/80${PN}" || die - - doenvd "${T}/80${PN}" || die - - echo "SEARCH_DIRS_MASK=\"${EPREFIX}${ANDROID_SDK_DIR}\"" > "${T}/80${PN}" || die - - insinto "/etc/revdep-rebuild" && doins "${T}/80${PN}" || die - -} - -pkg_postinst() { - elog "The Android SDK now uses its own manager for the development environment." - elog "Run 'android' to download the full SDK, including some of the platform tools." - elog "You must be in the android group to manage the development environment." - elog "Just run 'gpasswd -a android', then have re-login." - elog "See http://developer.android.com/sdk/adding-components.html for more" - elog "information." - elog "If you have problems downloading the SDK, see http://code.google.com/p/android/issues/detail?id=4406" - elog "You need to run env-update and source /etc/profile in any open shells" - elog "if you get an SWT error." -} diff --git a/dev-util/android-sdk-update-manager/android-sdk-update-manager-20.ebuild b/dev-util/android-sdk-update-manager/android-sdk-update-manager-20.ebuild deleted file mode 100644 index 27ee9c114166..000000000000 --- a/dev-util/android-sdk-update-manager/android-sdk-update-manager-20.ebuild +++ /dev/null @@ -1,98 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/android-sdk-update-manager/android-sdk-update-manager-20.ebuild,v 1.2 2012/09/24 00:43:59 vapier Exp $ - -EAPI="3" - -inherit eutils user - -MY_P="android-sdk_r${PV}-linux" - -DESCRIPTION="Open Handset Alliance's Android SDK" -HOMEPAGE="http://developer.android.com" -SRC_URI="http://dl.google.com/android/${MY_P}.tgz" -IUSE="" -RESTRICT="mirror" - -LICENSE="android" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DEPEND="app-arch/tar - app-arch/gzip" -RDEPEND=">=virtual/jdk-1.5 - >=dev-java/ant-core-1.6.5 - >=dev-java/swt-3.5 - amd64? ( app-emulation/emul-linux-x86-gtklibs ) - x86? ( x11-libs/gtk+:2 )" - -ANDROID_SDK_DIR="/opt/${PN}" -QA_FLAGS_IGNORED_x86=" - ${ANDROID_SDK_DIR/\/}/tools/emulator - ${ANDROID_SDK_DIR/\/}/tools/adb - ${ANDROID_SDK_DIR/\/}/tools/mksdcard - ${ANDROID_SDK_DIR/\/}/tools/sqlite3 - ${ANDROID_SDK_DIR/\/}/tools/hprof-conv - ${ANDROID_SDK_DIR/\/}/tools/zipalign - ${ANDROID_SDK_DIR/\/}/tools/dmtracedump -" -QA_FLAGS_IGNORED_amd64="${QA_FLAGS_IGNORED_x86}" - -S="${WORKDIR}/android-sdk-linux" - -pkg_setup() { - enewgroup android -} - -src_prepare(){ - rm -rf tools/lib/x86* -} - -src_install(){ - dodoc tools/NOTICE.txt "SDK Readme.txt" || die - rm -f tools/NOTICE.txt "SDK Readme.txt" - - dodir "${ANDROID_SDK_DIR}/tools" - cp -pPR tools/* "${ED}${ANDROID_SDK_DIR}/tools" || die "failed to install tools" - - # Maybe this is needed for the tools directory too. - dodir "${ANDROID_SDK_DIR}"/{add-ons,docs,platforms,temp} || die "failed to dodir" - - fowners root:android "${ANDROID_SDK_DIR}"/{,add-ons,docs,platforms,temp,tools} || die - fperms 0775 "${ANDROID_SDK_DIR}"/{,add-ons,docs,platforms,temp,tools} || die - - echo "PATH=\"${EPREFIX}${ANDROID_SDK_DIR}/tools:${EPREFIX}${ANDROID_SDK_DIR}/platform-tools\"" > "${T}/80${PN}" || die - - SWT_PATH= - SWT_VERSIONS="3.7 3.6 3.5" - for version in $SWT_VERSIONS; do - # redirecting stderr to /dev/null - # not sure if this is best, but avoids misleading error messages - SWT_PATH="`dirname \`java-config -p swt-\$version 2>/dev/null\` 2>/dev/null`" - if [ $SWT_PATH ]; then - einfo "SWT_PATH=$SWT_PATH selecting version $version of SWT." - break - fi - done - - echo "ANDROID_SWT=\"${SWT_PATH}\"" >> "${T}/80${PN}" || die - - doenvd "${T}/80${PN}" || die - - echo "SEARCH_DIRS_MASK=\"${EPREFIX}${ANDROID_SDK_DIR}\"" > "${T}/80${PN}" || die - - insinto "/etc/revdep-rebuild" && doins "${T}/80${PN}" || die - -} - -pkg_postinst() { - elog "The Android SDK now uses its own manager for the development environment." - elog "Run 'android' to download the full SDK, including some of the platform tools." - elog "You must be in the android group to manage the development environment." - elog "Just run 'gpasswd -a android', then have re-login." - elog "See http://developer.android.com/sdk/adding-components.html for more" - elog "information." - elog "If you have problems downloading the SDK, see http://code.google.com/p/android/issues/detail?id=4406" - elog "You need to run env-update and source /etc/profile in any open shells" - elog "if you get an SWT error." -} diff --git a/dev-util/android-sdk-update-manager/android-sdk-update-manager-21.ebuild b/dev-util/android-sdk-update-manager/android-sdk-update-manager-21.ebuild index 2f53b317f0a2..a2b3d7a25375 100644 --- a/dev-util/android-sdk-update-manager/android-sdk-update-manager-21.ebuild +++ b/dev-util/android-sdk-update-manager/android-sdk-update-manager-21.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-util/android-sdk-update-manager/android-sdk-update-manager-21.ebuild,v 1.1 2012/11/14 01:37:47 rich0 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/android-sdk-update-manager/android-sdk-update-manager-21.ebuild,v 1.2 2013/01/20 00:14:14 rich0 Exp $ EAPI="3" @@ -38,6 +38,8 @@ QA_FLAGS_IGNORED_x86=" " QA_FLAGS_IGNORED_amd64="${QA_FLAGS_IGNORED_x86}" +QA_PREBUILT="${ANDROID_SDK_DIR/\/}/tools/*" + S="${WORKDIR}/android-sdk-linux" pkg_setup() { diff --git a/dev-util/buildbot/buildbot-0.8.6_p1.ebuild b/dev-util/buildbot/buildbot-0.8.6_p1.ebuild index 05f773e4b8f1..02e04c8c3415 100644 --- a/dev-util/buildbot/buildbot-0.8.6_p1.ebuild +++ b/dev-util/buildbot/buildbot-0.8.6_p1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.6_p1.ebuild,v 1.15 2013/01/16 14:57:33 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.6_p1.ebuild,v 1.16 2013/01/20 10:17:33 ago Exp $ EAPI="3" PYTHON_DEPEND="2" @@ -20,7 +20,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris" IUSE="doc examples irc mail manhole test" # sqlite3 module of Python 2.5 is not supported. diff --git a/dev-util/byacc/byacc-20121003.ebuild b/dev-util/byacc/byacc-20121003.ebuild index f6f2b9a9ff5a..8beb0906060d 100644 --- a/dev-util/byacc/byacc-20121003.ebuild +++ b/dev-util/byacc/byacc-20121003.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/byacc/byacc-20121003.ebuild,v 1.4 2013/01/16 18:53:12 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-20121003.ebuild,v 1.6 2013/01/20 13:17:34 ago Exp $ EAPI=5 @@ -10,7 +10,7 @@ SRC_URI="ftp://invisible-island.net/byacc/${P}.tgz" LICENSE="public-domain" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~ia64-hpux ~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 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="" DOCS=( ACKNOWLEDGEMENTS AUTHORS CHANGES NEW_FEATURES NOTES README ) diff --git a/dev-util/plan9port/Manifest b/dev-util/plan9port/Manifest index 88cbe2287e15..9ad36ed51dcf 100644 --- a/dev-util/plan9port/Manifest +++ b/dev-util/plan9port/Manifest @@ -1,3 +1,4 @@ DIST plan9port-20121219.tgz 54175831 SHA256 289a355f0dee5900ece427a5360a510879e305e31c02f76dfe0495629ff38824 SHA512 6086fc3330327a36059fc2ce4170a3b7abac7562d141206e305dff20ec970d11d7fffe3d72848bd6def66179b70908444b638f10064e10f7f97a8e4630438892 WHIRLPOOL eb859377af45b053d1ebcf8132ecc043f1d60c0f30f6a6b59db1cc1f9a899b61432179d6d67129c4400a0bb7c935f9a341bb4111de4d5daf15888c949b343f41 DIST plan9port-20130103.tgz 54176071 SHA256 62c43c14d2d299c427c1d89cf6755c845c0992f0a0f65d6aca202fd24c1d5333 SHA512 b910b94040a8b745dca8750d2e4c8553dcf49885eaa659092ce261f7b761ea13860278f1ec59d4036be2fbd883b099af32dfc0c40e7f3d0cd329c9278527663f WHIRLPOOL ac2a742585072d54e7ddf0b7c264f958d6f999c6263aef483a1763d14446c65c40f94a6d60d49aecc7899fa123da59c7a62628fc47f9fdf09b76e5f195d8668f DIST plan9port-20130105.tgz 54176333 SHA256 e804b0b205070277b7d84333f6aab9cb113bac5ac144348ce9f9da739a6e4876 SHA512 b8dfa8a497294fcf55733adea8d49521a8e6d6e13bc2b3253ec833950c8d5e57b3e00e1c5aaf9d3c1bc26b0f13a1b6c89629540b9c562304db1f2d04cd0348a1 WHIRLPOOL 879f5428700688bf03ad6ec12e732435085f40ec2811fdb7a0a4a6f751c2047a536570146dfe8a702a6b644499e3b053af97850a74d2e5a3341bd0124deb8cc9 +DIST plan9port-20130119.tgz 54176486 SHA256 d63733c4396e2569a04131517e86f253e270f1370449f63c422316488f8d63e1 SHA512 f81795937a6e8ca99cd5a7d59f601298bd14db2cff4141054731985ac806b74927988562530701adb2d0657c508576273a5b13e748f7818d8e49a3abba5521ea WHIRLPOOL 4d83740b046b99d3687069dd95f8265ff7816bc674f4edce2870d1f439fd9820c2efef73e104aab9c22eb073f76198b6a35223ff82a567272f9d8fa0ff68b945 diff --git a/dev-util/plan9port/plan9port-20130119.ebuild b/dev-util/plan9port/plan9port-20130119.ebuild new file mode 100644 index 000000000000..bfa197ba518a --- /dev/null +++ b/dev-util/plan9port/plan9port-20130119.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/dev-util/plan9port/plan9port-20130119.ebuild,v 1.1 2013/01/20 10:58:07 blueness Exp $ + +EAPI="4" + +inherit eutils + +DESCRIPTION="Port of many Plan 9 programs and libraries" +HOMEPAGE="http://swtch.com/plan9port/" +SRC_URI="http://${PN}.googlecode.com/files/${P}.tgz" + +LICENSE="9base BSD-4 MIT LGPL-2.1 BigelowHolmes" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="x11-apps/xauth" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN}" + +PLAN9=/usr/lib/plan9 + +src_prepare() +{ + epatch "${FILESDIR}/${PN}-"{9660srv-errno,noexecstack}".patch" + + # Fix paths, done in place of ./INSTALL -c + einfo "Fixing hard-coded /usr/local/plan9 paths" + grep --null -l -r '/usr/local/plan9' | + xargs --null sed -i "s!/usr/local/plan9!${PLAN9}!g" +} + +src_compile() { + # Convert -j5 to NPROC=5 for mk + export NPROC="$(echo "$MAKEOPTS" | sed -r -n 's/.*(^| )-j([0-9]*).*/\2/p')" + + # The INSTALL script builds mk then [re]builds everything using that + einfo "Compiling Plan 9 from User Space can take a very long time" + einfo "depending on the speed of your computer. Please be patient!" + ./INSTALL -b +} + +src_install() { + dodir "${PLAN9}" + + # P9P's man does not handle compression + docompress -x $PLAN9/man + + # do* plays with the executable bit, and we should not modify them + cp -a * "${D}/${PLAN9}" + + # build the environment variables and install them in env.d + cat > "${T}/30plan9" <<-EOF + PLAN9="${PLAN9}" + PATH="${PLAN9}/bin" + ROOTPATH="${PLAN9}/bin" + MANPATH="${PLAN9}/man" + EOF + doenvd "${T}/30plan9" +} + +pkg_postinst() { + elog "Plan 9 from User Space has been successfully installed into" + elog "${PLAN9}. Your PLAN9 and PATH environment variables have" + elog "also been appropriately set, please use env-update and" + elog "source /etc/profile to bring that into immediate effect." + elog + elog "Please note that ${PLAN9}/bin has been appended to the" + elog "*end* or your PATH to prevent conflicts. To use the Plan9" + elog "versions of common UNIX tools, use the absolute path:" + elog "${PLAN9}/bin or the 9 command (eg: 9 troff)" + elog + elog "Please report any bugs to bugs.gentoo.org, NOT Plan9Port." +} diff --git a/dev-vcs/git/git-1.7.12.4.ebuild b/dev-vcs/git/git-1.7.12.4.ebuild index 3f45bdfbbe80..5f28f5f553d0 100644 --- a/dev-vcs/git/git-1.7.12.4.ebuild +++ b/dev-vcs/git/git-1.7.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-vcs/git/git-1.7.12.4.ebuild,v 1.7 2013/01/16 20:04:05 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/git-1.7.12.4.ebuild,v 1.8 2013/01/20 17:03:31 ago Exp $ EAPI=4 @@ -32,7 +32,7 @@ if [[ ${PV} != *9999 ]]; then ${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} ${SRC_URI_GOOG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} )" - KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" else SRC_URI="" KEYWORDS="" diff --git a/eclass/mysql-autotools.eclass b/eclass/mysql-autotools.eclass index f3aa85e298b3..71dba317f4b4 100644 --- a/eclass/mysql-autotools.eclass +++ b/eclass/mysql-autotools.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql-autotools.eclass,v 1.10 2012/11/01 23:57:50 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql-autotools.eclass,v 1.12 2013/01/20 02:41:59 robbat2 Exp $ # @ECLASS: mysql-autotools.eclass # @MAINTAINER: @@ -301,6 +301,18 @@ mysql-autotools_configure_51() { plugins_sta="${plugins_sta} ${plugins_dyn}" && \ plugins_dyn="" + # Google MySQL, bundle what upstream supports + if [[ "${PN}" == "google-mysql" ]]; then + for x in innobase innodb_plugin innodb ; do + plugins_sta="${plugins_sta//$x}" + plugins_dyn="${plugins_dyn//$x}" + done + plugins_sta="${plugins_sta} innodb_plugin googlestats" + myconf="${myconf} --with-perftools-dir=/usr --enable-perftools-tcmalloc" + # use system lzo for google-mysql + myconf="${myconf} --with-lzo2-dir=/usr" + fi + einfo "Available plugins: ${plugins_avail}" einfo "Dynamic plugins: ${plugins_dyn}" einfo "Static plugins: ${plugins_sta}" @@ -461,7 +473,11 @@ mysql-autotools_src_configure() { CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" + # storage/googlestats, sql/ in google-mysql are using C++ templates + # implicitly. Upstream might be interested in this, exclude + # -fno-implicit-templates for google-mysql for now. mysql_version_is_at_least "5.0" \ + && [[ "${PN}" != "google-mysql" ]] \ && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" export CXXFLAGS @@ -589,9 +605,8 @@ mysql-autotools_src_install() { einfo "Creating initial directories" # Empty directories ... diropts "-m0750" + keepdir "${MY_DATADIR#${EPREFIX}}" if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then - dodir "${MY_DATADIR#${EPREFIX}}" - keepdir "${MY_DATADIR#${EPREFIX}}" chown -R mysql:mysql "${D}/${MY_DATADIR}" fi diff --git a/eclass/mysql-cmake.eclass b/eclass/mysql-cmake.eclass index f634c7fd9585..06124b3ec7b0 100644 --- a/eclass/mysql-cmake.eclass +++ b/eclass/mysql-cmake.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql-cmake.eclass,v 1.10 2012/11/01 23:57:50 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql-cmake.eclass,v 1.13 2013/01/20 02:37:51 robbat2 Exp $ # @ECLASS: mysql-cmake.eclass # @MAINTAINER: @@ -15,7 +15,7 @@ # the src_unpack, src_prepare, src_configure, src_compile, scr_install, # pkg_preinst, pkg_postinst, pkg_config and pkg_postrm phase hooks. -inherit cmake-utils flag-o-matic multilib +inherit cmake-utils flag-o-matic multilib prefix # # HELPER FUNCTIONS: @@ -109,7 +109,8 @@ configure_cmake_minimal() { -DWITH_SSL=system -DWITH_ZLIB=system -DWITHOUT_LIBWRAP=1 - -DWITHOUT_READLINE=1 + -DWITH_READLINE=0 + -DWITH_LIBEDIT=0 -DWITHOUT_ARCHIVE_STORAGE_ENGINE=1 -DWITHOUT_BLACKHOLE_STORAGE_ENGINE=1 -DWITHOUT_CSV_STORAGE_ENGINE=1 @@ -133,7 +134,8 @@ configure_cmake_standard() { -DEXTRA_CHARSETS=all -DMYSQL_USER=mysql -DMYSQL_UNIX_ADDR=${EPREFIX}/var/run/mysqld/mysqld.sock - -DWITHOUT_READLINE=1 + -DWITH_READLINE=0 + -DWITH_LIBEDIT=0 -DWITH_ZLIB=system -DWITHOUT_LIBWRAP=1 ) @@ -329,10 +331,11 @@ mysql-cmake_src_install() { # Configuration stuff case ${MYSQL_PV_MAJOR} in - 5.[1-9]|6*|7*) mysql_mycnf_version="5.1" ;; + 5.[1-4]*) mysql_mycnf_version="5.1" ;; + 5.[5-9]|6*|7*) mysql_mycnf_version="5.5" ;; esac einfo "Building default my.cnf (${mysql_mycnf_version})" - insinto "${MY_SYSCONFDIR}" + insinto "${MY_SYSCONFDIR#${EPREFIX}}" doins scripts/mysqlaccess.conf mycnf_src="my.cnf-${mysql_mycnf_version}" sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ @@ -343,6 +346,7 @@ mysql-cmake_src_install() { -e "/character-set/s|utf8|latin1|g" \ "${TMPDIR}/my.cnf.ok" fi + eprefixify "${TMPDIR}/my.cnf.ok" newins "${TMPDIR}/my.cnf.ok" my.cnf # Minimal builds don't have the MySQL server diff --git a/eclass/mysql-v2.eclass b/eclass/mysql-v2.eclass index ac20d17f9633..221ed61c02a8 100644 --- a/eclass/mysql-v2.eclass +++ b/eclass/mysql-v2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql-v2.eclass,v 1.21 2012/11/01 23:57:50 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql-v2.eclass,v 1.22 2013/01/20 02:23:10 robbat2 Exp $ # @ECLASS: mysql-v2.eclass # @MAINTAINER: @@ -220,6 +220,24 @@ for i in "mysql" "mariadb" ; do DEPEND="${DEPEND} !dev-db/${i}" done +[[ "${PN}" == "mariadb" ]] \ +&& mysql_version_is_at_least "5.2" \ +&& DEPEND="${DEPEND} oqgraph? ( >=dev-libs/boost-1.40.0 )" + +[[ "${PN}" == "mariadb" ]] \ +&& mysql_version_is_at_least "5.2.5" \ +&& DEPEND="${DEPEND} sphinx? ( app-misc/sphinx )" + +mysql_version_is_at_least "5.5.7" \ +&& DEPEND="${DEPEND} systemtap? ( >=dev-util/systemtap-1.3 )" \ +&& DEPEND="${DEPEND} kernel_linux? ( dev-libs/libaio )" + +mysql_version_is_at_least "5.5" \ +&& DEPEND="${DEPEND} jemalloc? ( dev-libs/jemalloc )" + +mysql_version_is_at_least "5.5" \ +&& DEPEND="${DEPEND} tcmalloc? ( dev-util/google-perftools )" + # prefix: first need to implement something for #196294 RDEPEND="${DEPEND} !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) @@ -239,24 +257,6 @@ DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" mysql_version_is_at_least "5.5.8" \ && DEPEND="${DEPEND} >=dev-util/cmake-2.6.3" -[[ "${PN}" == "mariadb" ]] \ -&& mysql_version_is_at_least "5.2" \ -&& DEPEND="${DEPEND} oqgraph? ( >=dev-libs/boost-1.40.0 )" - -[[ "${PN}" == "mariadb" ]] \ -&& mysql_version_is_at_least "5.2.5" \ -&& DEPEND="${DEPEND} sphinx? ( app-misc/sphinx )" - -mysql_version_is_at_least "5.5.7" \ -&& DEPEND="${DEPEND} systemtap? ( >=dev-util/systemtap-1.3 )" \ -&& DEPEND="${DEPEND} kernel_linux? ( dev-libs/libaio )" - -mysql_version_is_at_least "5.5" \ -&& DEPEND="${DEPEND} jemalloc? ( dev-libs/jemalloc )" - -mysql_version_is_at_least "5.5" \ -&& DEPEND="${DEPEND} tcmalloc? ( dev-util/google-perftools )" - # dev-perl/DBD-mysql is needed by some scripts installed by MySQL PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" diff --git a/eclass/readme.gentoo.eclass b/eclass/readme.gentoo.eclass new file mode 100644 index 000000000000..f66d38a8a310 --- /dev/null +++ b/eclass/readme.gentoo.eclass @@ -0,0 +1,106 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/eclass/readme.gentoo.eclass,v 1.1 2013/01/20 11:42:30 pacho Exp $ + +# @ECLASS: readme.gentoo +# @MAINTAINER: +# Pacho Ramos +# @AUTHOR: +# Author: Pacho Ramos +# @BLURB: An eclass for installing a README.gentoo doc file recording tips +# shown via elog messages. +# @DESCRIPTION: +# An eclass for installing a README.gentoo doc file recording tips +# shown via elog messages. With this eclass, those elog messages will only be +# shown at first package installation and a file for later reviewing will be +# installed under /usr/share/doc/${PF} + +if [[ ${___ECLASS_ONCE_README_GENTOO} != "recur -_+^+_- spank" ]] ; then +___ECLASS_ONCE_README_GENTOO="recur -_+^+_- spank" + +inherit eutils + +case "${EAPI:-0}" in + 0|1|2|3) + die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}" + ;; + 4|5) + # EAPI>=4 is required for REPLACING_VERSIONS preventing us + # from needing to export another pkg_preinst phase to save has_version + # result. Also relies on EAPI >=4 default src_install phase. + ;; + *) + die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}" + ;; +esac + +EXPORT_FUNCTIONS src_install pkg_postinst + +# @FUNCTION: readme.gentoo_create_doc +# @DESCRIPTION: +# Create doc file with ${DOC_CONTENTS} variable (preferred) and, if not set, +# look for "${FILESDIR}/README.gentoo" contents. You can use +# ${FILESDIR}/README.gentoo-${SLOT} also. +# Usually called at src_install phase. +readme.gentoo_create_doc() { + debug-print-function ${FUNCNAME} "${@}" + + if [[ -n "${DOC_CONTENTS}" ]]; then + eshopts_push + set -f + echo ${DOC_CONTENTS} | fmt > "${T}"/README.gentoo + eshopts_pop + dodoc "${T}"/README.gentoo + else + if [[ -f "${FILESDIR}/README.gentoo-${SLOT%/*}" ]]; then + cp "${FILESDIR}/README.gentoo-${SLOT%/*}" "${T}"/README.gentoo + dodoc "${T}"/README.gentoo + else + if [[ -f "${FILESDIR}/README.gentoo" ]]; then + cp "${FILESDIR}/README.gentoo" "${T}"/README.gentoo + dodoc "${T}"/README.gentoo + else + die "You are not specifying README.gentoo contents!" + fi + fi + fi +} + +# @FUNCTION: readme.gentoo_print_elog +# @DESCRIPTION: +# Print elog messages with "${T}"/README.gentoo contents. +# Usually called at pkg_postinst phase. +readme.gentoo_print_elog() { + debug-print-function ${FUNCNAME} "${@}" + + if [[ -f "${T}"/README.gentoo ]]; then + if ! [[ "${REPLACING_VERSIONS}" ]]; then + eshopts_push + set -f + cat "${T}"/README.gentoo | while read -r ELINE; do elog "${ELINE}"; done + eshopts_pop + fi + else + die "README.gentoo wasn't created at src_install!" + fi +} + + +# @FUNCTION: readme.gentoo_src_install +# @DESCRIPTION: +# Install generated doc file automatically. +readme.gentoo_src_install() { + debug-print-function ${FUNCNAME} "${@}" + default + readme.gentoo_create_doc +} + +# @FUNCTION: readme.gentoo_pkg_postinst +# @DESCRIPTION: +# Show elog messages from from just generated doc file. +readme.gentoo_pkg_postinst() { + debug-print-function ${FUNCNAME} "${@}" + readme.gentoo_print_elog +} + +fi diff --git a/games-action/abuse/Manifest b/games-action/abuse/Manifest index 382018750705..a2bba466da8f 100644 --- a/games-action/abuse/Manifest +++ b/games-action/abuse/Manifest @@ -1,6 +1 @@ -DIST abuse-0.7.1.tar.gz 719285 RMD160 6602d77157064e0a728e55caa63b045f713be790 SHA1 07c22b306954eab1e0bf4a8a7441ae00fc107729 SHA256 1516a19efc1b89715a8549109a0d87b71502d94fd8b782942e335b6782a1dd57 -DIST abuse-0.8.tar.gz 6053500 RMD160 98c3bc17c558e46a58b559d62b53c8aacaab9eb1 SHA1 12fea968a1494338ad71c6ec24954f3eef56826a SHA256 0104db5fd2695c9518583783f7aaa7e5c0355e27c5a803840a05aef97f9d3488 -DIST abuse-data-2.00.tar.gz 1997832 RMD160 3fe70dd5134f8ae77c630a44d38a1d37e7b5314d SHA1 c5e7582d577668b56d62792f0cec8201f2ff1f24 SHA256 89687ace7805a8d1b5a0179953ffb86d09fe57c26df4b55ec050c0414e535196 -DIST abuse-frabs-2.11.tar.gz 4819133 RMD160 96ea6ef031d10ba02e070eb7d2acdbc85025024f SHA1 2699f2f4cefc5e529eec808e8208aad796de36de SHA256 6ccbdf4a754bbacd7c07b09f4f0c805bef39d3a537aadbb0cd4d06ad50acfdb8 -DIST abuse-lib-2.00.tar.gz 2144433 RMD160 813a33cf1a6e25cffabc77907aee00307c2ca56b SHA1 9eb34ab24f01008da31f034dc46ade7de2f8ff82 SHA256 263997a5e4ea70ac3d187de824c09b9a6b4ce778bbec5d8cf8372c54b34b81df -DIST abuse-sfx-2.00.tar.gz 690291 RMD160 4eab7e003307205c2477a547c3824bf80ce73dda SHA1 2b396164ce3f70605d669511385a667bf2730c8b SHA256 042af3e5ae2b0d402593d375c31d643d91da9e83180e8971d563c0878f570c60 +DIST abuse-0.8.tar.gz 6053500 SHA256 0104db5fd2695c9518583783f7aaa7e5c0355e27c5a803840a05aef97f9d3488 diff --git a/games-action/abuse/abuse-0.7.1.ebuild b/games-action/abuse/abuse-0.7.1.ebuild deleted file mode 100644 index d11d64610c5f..000000000000 --- a/games-action/abuse/abuse-0.7.1.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/abuse/abuse-0.7.1.ebuild,v 1.14 2011/08/07 14:27:37 armin76 Exp $ - -EAPI=2 -inherit eutils games - -ZOY="http://abuse.zoy.org/raw/Downloads" - -DESCRIPTION="port of Abuse by Crack Dot Com" -HOMEPAGE="http://abuse.zoy.org/" -SRC_URI="${ZOY}/${P}.tar.gz - !demo? ( ${ZOY}/abuse-data-2.00.tar.gz ) - demo? ( ${ZOY}/abuse-lib-2.00.tar.gz ) - sound? ( ${ZOY}/abuse-sfx-2.00.tar.gz ) - levels? ( ${ZOY}/abuse-frabs-2.11.tar.gz )" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="demo levels sound" - -RDEPEND=">=media-libs/libsdl-1.1.6[audio,opengl,video] - virtual/opengl" -DEPEND="${RDEPEND} - x11-libs/libXt" - -src_prepare() { - # fix placing additional patches - use levels && cp -rf "${WORKDIR}"/abuse-frabs-2.11/{addon,art,levels,lisp,music,netlevel,register} "${WORKDIR}" && rm -rf "${WORKDIR}"/abuse-frabs-2.11/ - use demo && cp -rf "${WORKDIR}"/abuse-lib-2.00.orig/unpacked/{addon,art,levels,lisp,abuse.lsp} "${WORKDIR}" && rm -rf "${WORKDIR}"/abuse-lib-2.00.orig/ - use sound && cp -rf "${WORKDIR}"/abuse-sfx-2.00.orig/sfx "${WORKDIR}" && rm -rf "${WORKDIR}"/abuse-sfx-2.00.orig/ - # fix bug #231822 - sed -i \ - -e "s:/var/games/abuse:${GAMES_DATADIR}/${PN}:" \ - src/sdlport/setup.cpp || or die - epatch "${FILESDIR}"/${P}-ovflfix.patch -} - -src_configure() { - # Abuse auto-appends games, so point to the base - egamesconf --datadir="${GAMES_DATADIR_BASE}" -} - -src_install() { - # Source-based install - emake DESTDIR="${D}" install || die - dodoc AUTHORS ChangeLog README TODO - - # Data install - insinto "${GAMES_DATADIR}"/${PN} - doins -r "${WORKDIR}"/{addon,art,levels,lisp,music,netlevel,register,sfx} \ - "${WORKDIR}"/abuse.lsp \ - || die - - doicon ${PN}.png - make_desktop_entry abuse "Abuse" - - prepgamesdirs -} - -pkg_postinst() { - games_pkg_postinst - elog "NOTE: If you had previous version of abuse installed" - elog "you may need to remove ~/.abuse for the game to work correctly." -} diff --git a/games-action/abuse/files/abuse-0.7.1-ovflfix.patch b/games-action/abuse/files/abuse-0.7.1-ovflfix.patch deleted file mode 100644 index a9ce1bc87e09..000000000000 --- a/games-action/abuse/files/abuse-0.7.1-ovflfix.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- src/imlib/loader.cpp.old 2010-11-05 17:30:54.000000000 +0100 -+++ src/imlib/loader.cpp 2010-11-05 17:31:19.000000000 +0100 -@@ -114,7 +114,7 @@ - graphics_type tell_file_type(char *filename) - { - FILE *fp; -- unsigned char header[10]; -+ unsigned char header[12]; - fp=fopen(filename,"rb"); - if (!fp) - return LOADER_not_supported; diff --git a/games-action/openastromenace/Manifest b/games-action/openastromenace/Manifest index b1e477c257fb..93e800a929a2 100644 --- a/games-action/openastromenace/Manifest +++ b/games-action/openastromenace/Manifest @@ -4,5 +4,4 @@ DIST oamenace-lang-de-1.2.0.tar.bz2 1656853 SHA256 3c7f4b580c1491c1fe6db521477e6 DIST oamenace-lang-en-1.2.0.tar.bz2 1382975 SHA256 7890431ca80a7456dc77b102c58f9dd9a3f6fc41574ffc4234f805e7dae79d88 DIST oamenace-lang-ru-1.2.0.tar.bz2 2344872 SHA256 bf4231baae0b3e1f3327da249ab9bb50c226c71bf0fd12b98a05820b5646cb5d DIST openamenace-src-1.2.0.tar.bz2 1021718 SHA256 d81526228b634e7447aaa6cc20023220a542c68837afbf34f4a5a0618e3eecae -DIST openastromenace-src-1.3.0.tar.bz2 37482245 SHA256 9a7257ea0ee0da0d802e2f54660a663a618ed9f7c95557c3fa71b369b25e1584 SHA512 8affb06c3317c4a17432bbbb6266400c0971958849676e2f48b76b7c3deae30d8acd6924a261cd9d693d5abe9ea1eb041084e84fb96c765706d3c2e8a6c0e967 WHIRLPOOL 523bac18ab3e4a944ad37db539331b09579d6f84a29869cebfb04d9917f3169b3246a3fabf6f7105529130f97b47bcf706b162a2298e8562a94c5c604fe458ac DIST openastromenace.png 20227 SHA256 d70e1e08558b6f8480fd45a71be13b854f37deeacd4d78841cf02e9d21662cd1 SHA512 f7bfe038d305a1b5f118f5d52ad0cd6170dc28895708066befc549f1b910395ccc62b10945ca5f7e12ac2518208d75ff2b1a5ed5bf2f40279b84ee6ed4b245cb WHIRLPOOL a206b6bdc7ec213476671542d268fc11ba8c2aae97a71ea2a34d233db524f8157ac7da4540d9a790c9659a69bbcbbc141edcb4d574388198e75fab8cafe7b556 diff --git a/games-action/openastromenace/openastromenace-1.3.0.ebuild b/games-action/openastromenace/openastromenace-1.3.0.ebuild deleted file mode 100644 index d224f8730487..000000000000 --- a/games-action/openastromenace/openastromenace-1.3.0.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/openastromenace/openastromenace-1.3.0.ebuild,v 1.1 2012/11/07 16:37:12 mr_bones_ Exp $ - -EAPI=4 -inherit gnome2-utils cmake-utils eutils games - -DESCRIPTION="Modern 3D space shooter with spaceship upgrade possibilities" -HOMEPAGE="http://sourceforge.net/projects/openastromenace/" -SRC_URI="mirror://sourceforge/openastromenace/${PN}-src-${PV}.tar.bz2" - -LICENSE="GPL-3 UbuntuFontLicense-1.0 OFL-1.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="virtual/opengl - virtual/glu - media-libs/libsdl[joystick,video,X] - media-libs/openal - media-libs/freealut - media-libs/freetype:2 - media-libs/libogg - media-libs/libvorbis - x11-libs/libXinerama - virtual/jpeg" - -S=${WORKDIR}/AstroMenace - -src_prepare() { - # no messing with CXXFLAGS please. - sed -i -e '/ADD_DEFINITIONS.*O3/d' CMakeLists.txt || die -} - -src_configure() { - local mycmakeargs="-DDATADIR=${GAMES_DATADIR}/${PN}" - - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile - - "${CMAKE_BUILD_DIR}"/AstroMenace --pack \ - --rawdata="${S}"/RAW_VFS_DATA \ - --dir=$(dirname "${CMAKE_BUILD_DIR}") || die -} - -src_install() { - newgamesbin "${CMAKE_BUILD_DIR}"/AstroMenace "${PN}" - - insinto "${GAMES_DATADIR}/${PN}" - doins ../*.vfs - - newicon -s 128 astromenace_128.png ${PN}.png - newicon -s 64 astromenace_64.png ${PN}.png - - dodoc ChangeLog.txt ReadMe.txt - - make_desktop_entry "${PN}" OpenAstroMenace - prepgamesdirs -} - -pkg_preinst() { - games_pkg_preinst - gnome2_icon_savelist -} - -pkg_postinst() { - games_pkg_postinst - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -} diff --git a/games-action/openastromenace/openastromenace-1.3.1.ebuild b/games-action/openastromenace/openastromenace-1.3.1.ebuild deleted file mode 100644 index a8d72e1d18be..000000000000 --- a/games-action/openastromenace/openastromenace-1.3.1.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/openastromenace/openastromenace-1.3.1.ebuild,v 1.1 2013/01/03 21:04:56 mr_bones_ Exp $ - -EAPI=4 -inherit gnome2-utils cmake-utils eutils games - -DESCRIPTION="Modern 3D space shooter with spaceship upgrade possibilities" -HOMEPAGE="http://sourceforge.net/projects/openastromenace/" -SRC_URI="mirror://sourceforge/openastromenace/${PV}/astromenace-src-${PV}.tar.bz2" - -LICENSE="GPL-3 GPL-3+ CCPL-Attribution-ShareAlike-3.0 UbuntuFontLicense-1.0 OFL-1.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="virtual/opengl - virtual/glu - media-libs/libsdl[joystick,video,X] - media-libs/openal - media-libs/freealut - media-libs/freetype:2 - media-libs/libogg - media-libs/libvorbis - x11-libs/libXinerama" - -S=${WORKDIR}/AstroMenace - -src_prepare() { - # no messing with CXXFLAGS please. - sed -i -e '/ADD_DEFINITIONS.*O3/d' CMakeLists.txt || die - epatch "${FILESDIR}"/${P}-overflow.patch -} - -src_configure() { - local mycmakeargs="-DDATADIR=${GAMES_DATADIR}/${PN}" - - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile - - "${CMAKE_BUILD_DIR}"/AstroMenace --pack \ - --rawdata="${S}"/RAW_VFS_DATA \ - --dir=$(dirname "${CMAKE_BUILD_DIR}") || die -} - -src_install() { - newgamesbin "${CMAKE_BUILD_DIR}"/AstroMenace "${PN}" - - insinto "${GAMES_DATADIR}/${PN}" - doins ../*.vfs - - newicon -s 128 astromenace_128.png ${PN}.png - newicon -s 64 astromenace_64.png ${PN}.png - - dodoc ChangeLog.txt ReadMe.txt - - make_desktop_entry "${PN}" OpenAstroMenace - prepgamesdirs -} - -pkg_preinst() { - games_pkg_preinst - gnome2_icon_savelist -} - -pkg_postinst() { - games_pkg_postinst - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -} diff --git a/games-action/violetland/Manifest b/games-action/violetland/Manifest index 881de9687e96..55bc59e11884 100644 --- a/games-action/violetland/Manifest +++ b/games-action/violetland/Manifest @@ -1,2 +1 @@ -DIST violetland-v0.4.2-src.zip 9423290 SHA256 3470f7648b6ec4f7f12c562f65ba301cccd1f2f9a1d15aeeaa8fc0335f9288cb DIST violetland-v0.4.3-src.zip 9418609 SHA256 790565a752fa10152f2c6f55676c3fa5ffbc45678822ac7d082d815b1798767e SHA512 9de9a8d67de7021a27903f53b155338e955a996252b17c429d3b8382ff02e0772ef85a221114a3225f828f4238997889d823b03b55f82890af792fcfe45b5726 WHIRLPOOL 4199963a21712ebb8ac78b37c79e45c7503df784d4c59737eee573a3151545bf795666f267afce28f4fc02991059beb8556965d9a68cfdaab1ef2d2785800988 diff --git a/games-action/violetland/violetland-0.4.2.ebuild b/games-action/violetland/violetland-0.4.2.ebuild deleted file mode 100644 index 3c583835c3e6..000000000000 --- a/games-action/violetland/violetland-0.4.2.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/violetland/violetland-0.4.2.ebuild,v 1.3 2011/08/21 03:29:30 phajdan.jr Exp $ - -EAPI=2 -inherit eutils cmake-utils games - -DESCRIPTION="Help a girl by name of Violet to struggle with hordes of monsters." -HOMEPAGE="http://code.google.com/p/violetland/" -SRC_URI="http://violetland.googlecode.com/files/${PN}-v${PV}-src.zip" - -LICENSE="GPL-3 CCPL-Attribution-ShareAlike-3.0" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="media-libs/libsdl[audio,video] - media-libs/sdl-image[png] - media-libs/sdl-mixer[vorbis] - media-libs/sdl-ttf - dev-libs/boost - virtual/opengl - virtual/glu" -DEPEND="${RDEPEND} - app-arch/unzip" - -S=${WORKDIR}/${PN}-v${PV} - -src_prepare() { - sed -i \ - -e "/README_EN.TXT/d" \ - -e "/README_RU.TXT/d" \ - CMakeLists.txt || die "sed failed" -} - -src_configure() { - mycmakeargs=( - "-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}" - "-DDATA_INSTALL_DIR=${GAMES_DATADIR}" - ) - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile -} - -src_install() { - DOCS="README_EN.TXT CHANGELOG" cmake-utils_src_install - newicon icon-light.png ${PN}.png - make_desktop_entry ${PN} VioletLand - prepgamesdirs -} diff --git a/games-board/peg-e/Manifest b/games-board/peg-e/Manifest index 92eb37b97154..6f8228bf787f 100644 --- a/games-board/peg-e/Manifest +++ b/games-board/peg-e/Manifest @@ -1 +1,2 @@ -DIST peg-e-1.1.0-src.tar.bz2 57510 RMD160 9742406cd52dabba6c48daa2a27886fe6c8ca041 SHA1 75227efcbe0422858dfbaa78190e863fe2d21b98 SHA256 ecd82c94a628161d014700d19c36f9299995c0963b053fb096e3f3b173d2655b +DIST peg-e-1.1.0-src.tar.bz2 57510 SHA256 ecd82c94a628161d014700d19c36f9299995c0963b053fb096e3f3b173d2655b +DIST peg-e-1.1.1-src.tar.bz2 89146 SHA256 a1ec62976426acf0b35843d8978c25459b4826c91b077a2c366b89bd6d121553 SHA512 67aba2d3e545a10d6b202b77122376939a7704c36cd8e2387ca12e2e18cce69f0a0c06e29286d5ffc16f83e8aed4af9efb39a825b44a338b2ad54d7f98c28f5b WHIRLPOOL f2c8008f6d8f554a5573c69a939fa84c18aa6737eaa2c1ac11a9f3139d74385199e0e4d340b4d9d8ff20e1053b71dcd4d7b14fdb399dda7255fd298334ddd171 diff --git a/games-board/peg-e/peg-e-1.1.1.ebuild b/games-board/peg-e/peg-e-1.1.1.ebuild new file mode 100644 index 000000000000..5907a3cbc6cb --- /dev/null +++ b/games-board/peg-e/peg-e-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/games-board/peg-e/peg-e-1.1.1.ebuild,v 1.1 2013/01/20 02:26:10 mr_bones_ Exp $ + +EAPI=2 +inherit eutils qt4-r2 games + +DESCRIPTION="A peg solitaire game" +HOMEPAGE="http://gottcode.org/peg-e/" +SRC_URI="http://gottcode.org/peg-e/${P}-src.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="x11-libs/qt-gui:4" + +src_configure() { + eqmake4 +} + +src_install() { + dogamesbin ${PN} || die + doicon icons/${PN}.png + domenu icons/${PN}.desktop + dodoc CREDITS ChangeLog + prepgamesdirs +} diff --git a/games-engines/zoom/Manifest b/games-engines/zoom/Manifest index 788a25dc1b06..4f9ed33b153e 100644 --- a/games-engines/zoom/Manifest +++ b/games-engines/zoom/Manifest @@ -1 +1,2 @@ -DIST zoom-1.1.4.tar.gz 2177409 RMD160 231cab96c2f97d8949b70e27019fc8d5540209dc SHA1 0a2568b751005694be7085e408607adc5df7502b SHA256 886b5db011314d2e4b4bd3e3ebd2aa3884f4e31f7cf68d6eea45407b8296cc6c +DIST zoom-1.1.4.tar.gz 2177409 SHA256 886b5db011314d2e4b4bd3e3ebd2aa3884f4e31f7cf68d6eea45407b8296cc6c +DIST zoom-1.1.5.tar.gz 2185098 SHA256 f2967f1c0555df8d4ae90443502d14cf33b6ac65b602f499fbe3e9e38e55dbbc SHA512 800b29e3517ce39000d8c05148d6af0d7c8666db20a06867e35076ffa1914b845e8fa0153571975e59842672572b80826ee8dbe3b2d4bc98c07394054e9bd7ca WHIRLPOOL efe20c16d98874241c421197093819e8929b1a11c11ca6eb6c0ba14966ad062b9489d2e5b793f8ceeef687e9a4cca0af83c4bbeb46ca32aea6f8e1b7c9bb82bd diff --git a/games-engines/zoom/zoom-1.1.5.ebuild b/games-engines/zoom/zoom-1.1.5.ebuild new file mode 100644 index 000000000000..9d10dfed2260 --- /dev/null +++ b/games-engines/zoom/zoom-1.1.5.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/games-engines/zoom/zoom-1.1.5.ebuild,v 1.1 2013/01/20 02:19:30 mr_bones_ Exp $ + +EAPI=5 +inherit games + +DESCRIPTION="A fast, clean, modern Z-code interpreter for X" +HOMEPAGE="http://www.logicalshift.co.uk/unix/zoom/" +SRC_URI="http://www.logicalshift.co.uk/unix/zoom/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="x11-libs/libSM + x11-libs/libXft + media-libs/fontconfig + >=media-libs/t1lib-5 + media-libs/libpng:0" +DEPEND="${RDEPEND} + dev-lang/perl + x11-proto/xextproto" + +src_install() { + default + dohtml -r manual/* + prepgamesdirs +} diff --git a/games-fps/rtcw/Manifest b/games-fps/rtcw/Manifest index 67dfa40e604c..99ad55385120 100644 --- a/games-fps/rtcw/Manifest +++ b/games-fps/rtcw/Manifest @@ -1,2 +1,2 @@ -DIST wolf-linux-1.41b.x86.run 73940068 RMD160 d26daffd2d53b40aa8e3ae579be3454e179b058b SHA1 176da1567107eeec3ec3dc14a6b389c47e1303b5 SHA256 2921425c1b429147c1bc6f0c6a8664bec502ae86a2d6bccfaa1162f75dce89f3 -DIST wolf-linux-GOTY-maps.x86.run 51930759 RMD160 354d6b6d03e4962440a5bd76ffda224ad597b73e SHA1 21d98e1511150bdd298fd10f7612d87fa31dfabf SHA256 d80994fc3c89348ac08b616f0e03d6cfca3d2faae89491dd294501cac1cad952 +DIST wolf-linux-1.41b.x86.run 73940068 SHA256 2921425c1b429147c1bc6f0c6a8664bec502ae86a2d6bccfaa1162f75dce89f3 SHA512 8c018bcdeca5b14fe1b8c35f46031416978b27b57a38897fa5b1b0c26fbf3ab6f44c22582223ad98a695a793ba1444a2e092beee687e835a279a12121422e93f WHIRLPOOL 647a76f07d01be737340bf36e552e25b5595b3defc09cee9deac3b8dda27db9579158ca91010bbf73e1af7586c8ad73003565c4a57e6ae79850377ecf512103e +DIST wolf-linux-GOTY-maps.x86.run 51930759 SHA256 d80994fc3c89348ac08b616f0e03d6cfca3d2faae89491dd294501cac1cad952 SHA512 85f334f75d538bb68c7507d36600b433b0ab0c92572c8e8c022eaeb8783fc72d56ff39ee0ee9eb3272ab09025bca56cca70b077b7e7b02a38cd556fb9f425dcc WHIRLPOOL 731ee47d3631c705057b45f870d29d87988b54a882ffd22c75c5bb5e7e2ec6a7e27baf89fb7a4715f133b649c5b99bed6bc47cb87ba0cd8c9583044361b7c9c8 diff --git a/games-fps/rtcw/rtcw-1.41b.ebuild b/games-fps/rtcw/rtcw-1.41b.ebuild index 48232a57912f..882806b6b018 100644 --- a/games-fps/rtcw/rtcw-1.41b.ebuild +++ b/games-fps/rtcw/rtcw-1.41b.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-fps/rtcw/rtcw-1.41b.ebuild,v 1.16 2012/07/11 17:27:03 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/rtcw/rtcw-1.41b.ebuild,v 1.17 2013/01/20 14:55:58 tupone Exp $ EAPI=2 inherit eutils unpacker games @@ -16,9 +16,6 @@ SLOT="0" KEYWORDS="amd64 x86" IUSE="opengl dedicated" RESTRICT="strip mirror" -QA_TEXTRELS="${GAMES_PREFIX_OPT:1}/rtcw/pb/pbag.so - ${GAMES_PREFIX_OPT:1}/rtcw/pb/pbsv.so - ${GAMES_PREFIX_OPT:1}/rtcw/pb/pbcl.so" UIDEPEND="virtual/opengl x86? ( @@ -39,6 +36,7 @@ S=${WORKDIR} dir=${GAMES_PREFIX_OPT}/${PN} Ddir=${D}/${dir} +QA_PREBUILT="${dir:1}/* ${dir:1}/pb/* ${dir:1}/main/*" src_install() { insinto "${dir}" diff --git a/games-puzzle/wmpuzzle/Manifest b/games-puzzle/wmpuzzle/Manifest index 2ac3a46f07ff..cdff09b3d4d7 100644 --- a/games-puzzle/wmpuzzle/Manifest +++ b/games-puzzle/wmpuzzle/Manifest @@ -1 +1,2 @@ -DIST wmpuzzle-0.5.0.tar.gz 81900 RMD160 141c9d523ad0bcabde1c6d9c5b07156b6f1db4da SHA1 646955ea6d570bba8b18c49957e3612df3dc3140 SHA256 1986777eefdf51a7dc17929b447d39ea455042ad319d734cfbba572a00476608 +DIST wmpuzzle-0.5.0.tar.gz 81900 SHA256 1986777eefdf51a7dc17929b447d39ea455042ad319d734cfbba572a00476608 SHA512 22643a805f318e0818c1788e3f0c1efdbc221ba3b3656636748ac22e3bda03a8a892cf1a9e6d5a1686ca8c859bc6343b1d7698c17f61d0933fe3ad24be3611eb WHIRLPOOL 9ce84f9f5726028120ef81b608dab930bd696f74751bce17714483ce42de31232c6bb13c33cefd06825a41671dec81e1b9a22023fd05d739fae41c47c3d0c0dc +DIST wmpuzzle-0.5.1.tar.gz 87611 SHA256 796abeac42debf31f7270c22ed82de0eda154a534127fd80f5265558aa1806e5 SHA512 4b2b06f038b483080630ea1fa1a6b12ab2fc312efbbfd48191c5dba8efff78b67f38078c28035532c03eee2ba8cbeef07ba2a46f0099226a5f4f31d324a3ee94 WHIRLPOOL 6ad04efdfcdc5007f81dcadcd0d28d0fb99375d505c98ebcf4d53abe5c5074d58fee0a5a53d7c9d651d48d7bba8fcf009cf9266f2bf084c93c4eeea59e4a3538 diff --git a/games-puzzle/wmpuzzle/metadata.xml b/games-puzzle/wmpuzzle/metadata.xml index cad5a2aa1773..abb7c07093ca 100644 --- a/games-puzzle/wmpuzzle/metadata.xml +++ b/games-puzzle/wmpuzzle/metadata.xml @@ -1,5 +1,6 @@ - games +games +desktop-dock diff --git a/games-puzzle/wmpuzzle/wmpuzzle-0.5.1.ebuild b/games-puzzle/wmpuzzle/wmpuzzle-0.5.1.ebuild new file mode 100644 index 000000000000..0b3643e5d921 --- /dev/null +++ b/games-puzzle/wmpuzzle/wmpuzzle-0.5.1.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/games-puzzle/wmpuzzle/wmpuzzle-0.5.1.ebuild,v 1.1 2013/01/20 12:24:26 ssuominen Exp $ + +EAPI=5 +inherit eutils games + +DESCRIPTION="wmpuzzle provides a 4x4 puzzle on a 64x64 mini window" +HOMEPAGE="http://freshmeat.net/projects/wmpuzzle" +SRC_URI="http://people.debian.org/~godisch/wmpuzzle/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm" +DEPEND="${RDEPEND} + x11-proto/xextproto" + +S=${WORKDIR}/${P}/src + +src_install() { + dogamesbin ${PN} + + dodoc ../{CHANGES,README} + newicon numbers.xpm ${PN}.xpm + doman ${PN}.6 + make_desktop_entry ${PN} + + prepgamesdirs +} diff --git a/games-rpg/freedroidrpg/Manifest b/games-rpg/freedroidrpg/Manifest index 642116058d74..8f979859014a 100644 --- a/games-rpg/freedroidrpg/Manifest +++ b/games-rpg/freedroidrpg/Manifest @@ -1 +1,2 @@ -DIST freedroidrpg-0.15.tar.gz 209412185 RMD160 f21ff6b86360613e6ee0f5ffd8076c6a7a4eae09 SHA1 97f74a6b1f3c7cf447e8cc7fc850aee18c2860ed SHA256 4481a96c9cd6bfbb91ec65dbd260a4c729b82569c977b364a7f5580760af4c2f +DIST freedroidRPG-0.15.1.tar.gz 209427247 SHA256 3e0e0e901f05386f49b8dfa1a8b3582ea82347deb7fb8e94fc15bf8ad058ba08 SHA512 3e38753a040e507229b87235e449fc77db2457a4eb0129f8866a58e3863baa08304feb846828be95183a0b9e46f11761c706571ea68500203c953e1467e108a4 WHIRLPOOL 42f0d6e5ae48437ad0fb00d38966904601de80f2d7dbf6d93d40da5cf4897cc12fc82ec1b9ce500947ed4f1f583eb736fbfc2cdf7619f22999c0e28a007b0aac +DIST freedroidrpg-0.15.tar.gz 209412185 SHA256 4481a96c9cd6bfbb91ec65dbd260a4c729b82569c977b364a7f5580760af4c2f SHA512 0205d3cce4642ffe3600ba9629b8f980621628e9ac02ae969f624b5902a13d713abcfce7120e0568ab0ff1b97667d75b5ec02fa90295aecd40eb7b6d360d9f7b WHIRLPOOL 53d92292d6eabd035ab099357ff92feee77da1833a6564fbe8e6048b886b6e31ca19027a47c8bb019c45dec540a568b7e39fdb2af16f64cee5e7bbbdf7d9c21a diff --git a/games-rpg/freedroidrpg/freedroidrpg-0.15.1.ebuild b/games-rpg/freedroidrpg/freedroidrpg-0.15.1.ebuild new file mode 100644 index 000000000000..61aa512908ba --- /dev/null +++ b/games-rpg/freedroidrpg/freedroidrpg-0.15.1.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-rpg/freedroidrpg/freedroidrpg-0.15.1.ebuild,v 1.1 2013/01/20 01:13:43 hasufell Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_5 python2_6 python2_7 ) +inherit autotools eutils python-any-r1 games + +DESCRIPTION="A modification of the classical Freedroid engine into an RPG" +HOMEPAGE="http://freedroid.sourceforge.net/" +SRC_URI="mirror://sourceforge/freedroid/freedroidRPG-${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="opengl vorbis" + +RDEPEND="media-libs/libsdl[opengl?,video] + dev-lang/lua + virtual/jpeg + media-libs/libpng:0 + media-libs/sdl-image[jpeg,png] + media-libs/sdl-mixer[vorbis?] + >=media-libs/sdl-gfx-2.0.21 + vorbis? ( media-libs/libogg media-libs/libvorbis ) + x11-libs/libX11 + opengl? ( virtual/opengl )" +DEPEND="${RDEPEND} + ${PYTHON_DEPS}" + +pkg_setup() { + python-any-r1_pkg_setup + games_pkg_setup +} + +src_prepare() { + # No need for executable game resources + find sound graphics -type f -execdir chmod -c a-x '{}' + +} + +src_configure() { + egamesconf \ + --disable-dependency-tracking \ + --disable-fastmath \ + $(use_enable opengl) \ + $(use_enable vorbis) +} + +src_install() { + emake DESTDIR="${D}" install || die + rm -f "${D}/${GAMES_BINDIR}/"{croppy,pngtoico,*glue*,explode*,make_atlas} + newicon -s 64 win32/w32icon2_64x64.png ${PN}.png + make_desktop_entry freedroidRPG "Freedroid RPG" + prepgamesdirs +} + +pkg_preinst() { + games_pkg_preinst + gnome2_icon_savelist +} + +pkg_postinst() { + games_pkg_postinst + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} diff --git a/games-sports/trigger/Manifest b/games-sports/trigger/Manifest index 8a8fda320825..18c4de2f1639 100644 --- a/games-sports/trigger/Manifest +++ b/games-sports/trigger/Manifest @@ -1,3 +1 @@ -DIST trigger-0.5.2-data.tar.bz2 6188960 SHA256 c97f339fb5760054eb573eac1576e6b6cec05c5de548636a0bfb7dbc85bdae6b -DIST trigger-0.5.2.1-src.tar.bz2 333592 SHA256 0f727f6b02f852018869f21235b208451f0c979a74a3e50e015c982fa4e14b9f DIST trigger-rally-0.6.0.tar.bz2 21559442 SHA256 b67d3a94079ac8b995ce332f630756b3a8efbc15a65f1854a23a56a97e3a7cf7 SHA512 001258927317a9978b8c990ceab11e9ebc4cdba841686ffec399d5d0fb051b11718418158a17d971d8241860f76bb60bbe9057ec4ef2311cbaac28bd05eccf78 WHIRLPOOL 9c07bb34b04f916c4ef13ac705730006d703126adf0277d82dbcbdbbd6025398beae1dd4978f671e67b92b63515ea40ea069299793b6bf4b0aa2ffb1d325a1e8 diff --git a/games-sports/trigger/files/trigger-0.5.2.1-ldflags.patch b/games-sports/trigger/files/trigger-0.5.2.1-ldflags.patch deleted file mode 100644 index c3b602b5020b..000000000000 --- a/games-sports/trigger/files/trigger-0.5.2.1-ldflags.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- mk/jam/unix.jam.old 2010-09-30 17:33:30.000000000 +0200 -+++ mk/jam/unix.jam 2010-09-30 17:33:48.000000000 +0200 -@@ -41,7 +41,7 @@ - - actions LinkApplication bind NEEDLIBS bind EXTRAOBJECTS - { -- $(LINK) -o $(<) $(>) $(EXTRAOBJECTS) $(NEEDLIBS) $(LFLAGS) -+ $(LINK) $(LDFLAGS) -o $(<) $(>) $(EXTRAOBJECTS) $(NEEDLIBS) $(LFLAGS) - } - - diff --git a/games-sports/trigger/trigger-0.5.2.1.ebuild b/games-sports/trigger/trigger-0.5.2.1.ebuild deleted file mode 100644 index 508647f94544..000000000000 --- a/games-sports/trigger/trigger-0.5.2.1.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-sports/trigger/trigger-0.5.2.1.ebuild,v 1.8 2010/09/30 15:41:38 tupone Exp $ - -EAPI=2 -inherit eutils games - -DATA_V=0.5.2 -DESCRIPTION="Free OpenGL rally car racing game" -HOMEPAGE="http://www.positro.net/trigger/" -SRC_URI="mirror://sourceforge/${PN}-rally/${P}-src.tar.bz2 - mirror://sourceforge/${PN}-rally/${PN}-${DATA_V}-data.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -IUSE="" - -RDEPEND="virtual/opengl - virtual/glu - media-libs/libsdl - media-libs/sdl-image[jpeg,png] - media-libs/sdl-mixer - media-libs/openal - media-libs/freealut - dev-games/physfs" -DEPEND="${RDEPEND} - dev-util/ftjam" - -S=${WORKDIR}/${P}-src - -PATCHES=( "${FILESDIR}"/${P}-ldflags.patch ) - -src_configure() { - egamesconf --datadir="${GAMES_DATADIR}"/${PN} || die -} - -src_compile() { - jam -qa || die "jam failed" -} - -src_install() { - dogamesbin trigger || die "dogamesbin failed" - cd ../${PN}-${DATA_V}-data - insinto "${GAMES_DATADIR}"/${PN} - doins -r events maps plugins sounds textures vehicles trigger.config.defs \ - || die "doins failed" - newicon textures/life_helmet.png ${PN}.png - make_desktop_entry ${PN} Trigger - dodoc README.txt README-stereo.txt - prepgamesdirs -} - -pkg_postinst() { - games_pkg_postinst - elog "After running ${PN} for the first time, a config file is" - elog "available in ~/.trigger/trigger.config" -} diff --git a/games-sports/trophy/Manifest b/games-sports/trophy/Manifest index 63e8b0d46d17..45cfc0513aab 100644 --- a/games-sports/trophy/Manifest +++ b/games-sports/trophy/Manifest @@ -1 +1,2 @@ -DIST trophy-1.1.5.tar.gz 14402714 RMD160 9e47bc69a316a982e50858f1c7fb3fce413ba7f9 SHA1 11fbf36691e4db909d7a641daa8e5983431ce6f0 SHA256 bf654a28027c62b36b39c3a23d2d7396b4afa7edbc1377595a99a18a30c26bfe +DIST trophy-1.1.5.tar.gz 14402714 SHA256 bf654a28027c62b36b39c3a23d2d7396b4afa7edbc1377595a99a18a30c26bfe SHA512 76ff5058e583d0313a0398535e0e1ab1e2e1d2abf3ccbed4b9ffd04e07f991791bfa0e2756c94cb31adc2c9c72d4de0c20bd218846a8d5bd6b6ddefbe71f3482 WHIRLPOOL 9c2705e8970f79641f3750faea71101005f749b4000016966398143c224b13f469509f1dd5ebb35b4f1c4541413a32546e7dc69a54d8be5e6a764bd86676de1f +DIST trophy-2.0.3.tar.gz 14780127 SHA256 1fc8311458f86abeae51d7b47db8f95221bea737ea782786892cc36677a97030 SHA512 40376c2a27f205421189d5fea3dc154492fae8977b62d1150c986be6fe823d0f718b61a51a2febad851fc96cf4e1b408ab9318ab32e32d685966228f51327b06 WHIRLPOOL 7ae116c433808570cec5b122cd31aebb86d26c2b8cc7654f19201160e806ce66f56b12c9587ef1dbb5d693a3f5faec0ddd0a12e93e9625c6ddc294b0390b41e1 diff --git a/games-sports/trophy/trophy-2.0.3.ebuild b/games-sports/trophy/trophy-2.0.3.ebuild new file mode 100644 index 000000000000..8f1e3538ec39 --- /dev/null +++ b/games-sports/trophy/trophy-2.0.3.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/games-sports/trophy/trophy-2.0.3.ebuild,v 1.1 2013/01/19 23:46:40 hasufell Exp $ + +EAPI=5 +inherit eutils gnome2-utils games + +DESCRIPTION="2D Racing Game" +HOMEPAGE="http://trophy.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-games/clanlib:0.8[opengl]" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_install() { + default + doicon -s 72 "${D}${GAMES_DATADIR}"/icons/${PN}.png + rm -rf "${D}${GAMES_DATADIR}"/icons + domenu "${D}${GAMES_DATADIR}"/applications/${PN}.desktop + rm -rf "${D}${GAMES_DATADIR}"/applications + prepgamesdirs +} + +pkg_preinst() { + games_pkg_preinst + gnome2_icon_savelist +} + +pkg_postinst() { + games_pkg_postinst + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} diff --git a/games-strategy/scorched3d/Manifest b/games-strategy/scorched3d/Manifest index 362e52bb0e3d..6612099d5d0f 100644 --- a/games-strategy/scorched3d/Manifest +++ b/games-strategy/scorched3d/Manifest @@ -1,2 +1 @@ -DIST Scorched3D-43.2a-src.tar.gz 66822169 SHA256 b13fa8b6862271efde2fb1f7d6c470ce180940cf8896f42a86a1f8b39cad61c3 SHA512 bafe39638ce44b21f0314d7896e138d6e0c3e5bf24b383ea31c487a8840a276aa1dbf9c94dfc8c493f14e5dd7f25ae86d1c89c2e115de7d1434f43be4222fd44 WHIRLPOOL 00111901d64434284639d6779ceb3bd514b7cdb2ac3517976e5eb63f9e368f607a1acf846b52e3fdebc1c9de21a78efb31b72a8eab550e8a9121eaf05cbb1706 -DIST Scorched3D-43.3d-src.tar.gz 93245939 RMD160 f09442b73e80e3bcd0e462527b6530ffdec6473f SHA1 a47e5095b779290f5798ad2e6eb158f930af1230 SHA256 a5e7bdc3810517ab142cfcb43951ca55d03c81252d00bc323f0f204deb62ef1c +DIST Scorched3D-43.3d-src.tar.gz 93245939 SHA256 a5e7bdc3810517ab142cfcb43951ca55d03c81252d00bc323f0f204deb62ef1c SHA512 292cc1c8cabc981c5de9b0df5058be59f4264b803df7b1c34d79e5eee195dc6c3ba34a542bd909410fef64d9fa8f49b340f1e660669526753c19c3e3c71900a9 WHIRLPOOL 5ea176b756b4833e62d1e8a5835a53bcd1fec750e445589f64ee9c73cc48fb8e41a0666f3b85b8d4fb0e8226c95b966194a5512e07dd56c3f203e45b45ba79b8 diff --git a/games-strategy/scorched3d/files/scorched3d-43.2a-fixups.patch b/games-strategy/scorched3d/files/scorched3d-43.2a-fixups.patch deleted file mode 100644 index d53c3446f604..000000000000 --- a/games-strategy/scorched3d/files/scorched3d-43.2a-fixups.patch +++ /dev/null @@ -1,56 +0,0 @@ ---- scorched.orig/configure-al.m4 -+++ scorched/configure-al.m4 -@@ -7,25 +7,9 @@ - [ --disable-openaltest Do not try to compile and run a test OpenAL program], - , enable_openaltest=yes) - AC_MSG_CHECKING(for OpenAL support) --AC_PATH_PROG(OPENAL_CONFIG, openal-config, no) --if test x$OPENAL_CONFIG = xno; then -- echo "*** The openal-config script installed by OpenAL could not be found" -- echo "*** Make sure openal-config is in your path, or set the OPENAL_CONFIG" -- echo "*** environment variable to the full path to openal-config." -- -- AC_MSG_ERROR([*** Can't find the openal library. Try: http://www.openal.org/]) --else -- -- if test x"$use_static_openal" = x"yes"; then -- AL_LIBS="/usr/local/lib/libopenal.a" -- else -- AL_LIBS="`$OPENAL_CONFIG --libs`" -- fi -- -- AL_CFLAGS="`$OPENAL_CONFIG --cflags`" -- -- AC_MSG_RESULT(yes) --fi -+AL_LIBS="-lopenal" -+AL_CFLAGS="-I/usr/include/AL" -+AC_MSG_RESULT(yes) - - AC_MSG_CHECKING(for Freealut support) - AC_PATH_PROG(FREEALUT_CONFIG, freealut-config, no) ---- scorched.orig/configure.ac -+++ scorched/configure.ac -@@ -13,22 +13,6 @@ - AC_PROG_INSTALL - AC_PROG_RANLIB - --LDFLAGS="-L/usr/X11R6/lib -L/usr/X11R6" --CPPFLAGS="-I/usr/X11R6/include -I/usr/X11R6" -- --if test `uname` == Darwin; then --LDFLAGS="$LDFLAGS -lmx" --CPPFLAGS="$CPPFLAGS -DFFTW_USE_DOUBLE -D__DARWIN__ -D__MACOSX__" --else --LDFLAGS="$LDFLAGS -L/usr/local/lib" --CPPFLAGS="$CPPFLAGS -I/usr/local/include" --fi -- --AC_CHECK_LIB(fridge, beer, echo "Hmm?!",[ -- echo "Warning: No beer found in fridge!"; -- echo "We highly suggest that you rectify this situation immediately." --]) -- - AC_ARG_ENABLE(serveronly, - [ --enable-serveronly Enable server only compilation], - , enable_serveronly=no, diff --git a/games-strategy/scorched3d/files/scorched3d-43.2a-gcc43.patch b/games-strategy/scorched3d/files/scorched3d-43.2a-gcc43.patch deleted file mode 100644 index 79f40b70e652..000000000000 --- a/games-strategy/scorched3d/files/scorched3d-43.2a-gcc43.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- scorched.old/src/common/common/main.h -+++ scorched/src/common/common/main.h -@@ -40,7 +40,7 @@ - void _no_storage() - { - printf("Failed to allocate memory!!"); -- std::exit(1); -+ exit(1); - } - - void run_main(int argc, char *argv[], OptionsParameters ¶ms) ---- scorched.old/src/common/porting/windows.h -+++ scorched/src/common/porting/windows.h -@@ -20,7 +20,7 @@ - typedef unsigned short WORD; - typedef unsigned char BYTE; - --typedef int HWND; -+// typedef int HWND; - typedef void * HINSTANCE; - typedef int WPARAM; - typedef int LPARAM; diff --git a/games-strategy/scorched3d/files/scorched3d-43.2a-odbc.patch b/games-strategy/scorched3d/files/scorched3d-43.2a-odbc.patch deleted file mode 100644 index e7f3833bf897..000000000000 --- a/games-strategy/scorched3d/files/scorched3d-43.2a-odbc.patch +++ /dev/null @@ -1,16 +0,0 @@ -When x11-libs/wxGTK is built with the odbc use flag, scorched3d fails to build. -bug #285384 - patch from Bob Johnson - ---- scorched/src/common/porting/windows.h -+++ fix_scorched/src/common/porting/windows.h -@@ -11,8 +11,8 @@ - - typedef char * LPSTR; - typedef const char * LPCTSTR; --typedef unsigned int DWORD; --typedef unsigned int * LPDWORD; -+typedef unsigned long DWORD; -+typedef DWORD * LPDWORD; - typedef unsigned char * LPBYTE; - typedef int INT; - typedef long LONG; diff --git a/games-strategy/scorched3d/files/scorched3d-43.2a-png15.patch b/games-strategy/scorched3d/files/scorched3d-43.2a-png15.patch deleted file mode 100644 index d349532a35d8..000000000000 --- a/games-strategy/scorched3d/files/scorched3d-43.2a-png15.patch +++ /dev/null @@ -1,74 +0,0 @@ ---- ./src/common/image/ImagePngFactory.cpp.old -+++ ./src/common/image/ImagePngFactory.cpp -@@ -104,7 +104,7 @@ - - static void user_png_error(png_structp png_ptr, png_const_charp msg) - { -- longjmp(png_ptr->jmpbuf,1); -+ longjmp(png_jmpbuf(png_ptr),1); - } - - static void user_png_warning(png_structp png_ptr, png_const_charp msg) ---- ./src/client/client/LoadPNG.cpp.old -+++ ./src/client/client/LoadPNG.cpp -@@ -28,6 +28,8 @@ - int row, i; - volatile int ckey = -1; - png_color_16 *transv; -+ png_colorp png_palette; -+ int num_palette; - - if ( !src ) { - /* The error message has been set in SDL_RWFromFile */ -@@ -58,7 +60,7 @@ - * the normal method of doing things with libpng). REQUIRED unless you - * set up your own error handlers in png_create_read_struct() earlier. - */ -- if ( setjmp(png_ptr->jmpbuf) ) { -+ if ( setjmp(png_jmpbuf(png_ptr)) ) { - error = "Error reading the PNG file."; - goto done; - } -@@ -127,9 +129,9 @@ - Rmask = 0x000000FF; - Gmask = 0x0000FF00; - Bmask = 0x00FF0000; -- Amask = (info_ptr->channels == 4) ? 0xFF000000 : 0; -+ Amask = (png_get_channels(png_ptr, info_ptr) == 4) ? 0xFF000000 : 0; - } else { -- int s = (info_ptr->channels == 4) ? 0 : 8; -+ int s = (png_get_channels(png_ptr, info_ptr) == 4) ? 0 : 8; - Rmask = 0xFF000000 >> s; - Gmask = 0x00FF0000 >> s; - Bmask = 0x0000FF00 >> s; -@@ -137,7 +139,7 @@ - } - } - surface = SDL_AllocSurface(SDL_SWSURFACE, width, height, -- bit_depth*info_ptr->channels, Rmask,Gmask,Bmask,Amask); -+ bit_depth*png_get_channels(png_ptr, info_ptr), Rmask,Gmask,Bmask,Amask); - if ( surface == NULL ) { - error = "Out of memory"; - goto done; -@@ -185,12 +187,15 @@ - palette->colors[i].g = i; - palette->colors[i].b = i; - } -- } else if (info_ptr->num_palette > 0 ) { -- palette->ncolors = info_ptr->num_palette; -- for( i=0; inum_palette; ++i ) { -- palette->colors[i].b = info_ptr->palette[i].blue; -- palette->colors[i].g = info_ptr->palette[i].green; -- palette->colors[i].r = info_ptr->palette[i].red; -+ } else { -+ png_get_PLTE(png_ptr, info_ptr, &png_palette, &num_palette); -+ if (num_palette > 0 ) { -+ palette->ncolors = num_palette; -+ for( i=0; icolors[i].b = png_palette[i].blue; -+ palette->colors[i].g = png_palette[i].green; -+ palette->colors[i].r = png_palette[i].red; -+ } - } - } - } diff --git a/games-strategy/scorched3d/files/scorched3d-43.2a-win32.patch b/games-strategy/scorched3d/files/scorched3d-43.2a-win32.patch deleted file mode 100644 index 05f9c806b1c7..000000000000 --- a/games-strategy/scorched3d/files/scorched3d-43.2a-win32.patch +++ /dev/null @@ -1,18 +0,0 @@ ---- scorched.old/src/common/porting/windows.h -+++ scorched/src/common/porting/windows.h -@@ -9,6 +9,7 @@ - #include - #include - -+#ifdef _WIN32 - typedef char * LPSTR; - typedef const char * LPCTSTR; - typedef unsigned int DWORD; -@@ -27,6 +28,7 @@ - typedef int LRESULT; - typedef void * HDC; - typedef void * HGLRC; -+#endif /* _WIN32 */ - - #define _strnicmp(a,b,c) strncasecmp(a,b,c) - #define stricmp(a,b) strcasecmp(a,b) diff --git a/games-strategy/scorched3d/scorched3d-43.2a.ebuild b/games-strategy/scorched3d/scorched3d-43.2a.ebuild deleted file mode 100644 index 85762b449c9b..000000000000 --- a/games-strategy/scorched3d/scorched3d-43.2a.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/scorched3d/scorched3d-43.2a.ebuild,v 1.8 2012/05/13 19:32:09 mr_bones_ Exp $ - -EAPI=2 -WX_GTK_VER=2.8 -inherit autotools eutils wxwidgets games - -DESCRIPTION="Multi-player tank battle in 3D (OpenGL)" -HOMEPAGE="http://www.scorched3d.co.uk/" -SRC_URI="mirror://sourceforge/${PN}/Scorched3D-${PV}-src.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86" -IUSE="dedicated mysql" - -DEPEND="media-libs/libsdl[video] - media-libs/sdl-net - media-libs/libpng - virtual/jpeg:0 - dev-libs/expat - !dedicated? ( - virtual/opengl - virtual/glu - media-libs/libogg - media-libs/libvorbis - media-libs/openal - media-libs/freealut - x11-libs/wxGTK:2.8[X] - media-libs/freetype:2 - sci-libs/fftw:3.0 - ) - mysql? ( virtual/mysql )" - -S=${WORKDIR}/scorched - -src_prepare() { - epatch "${FILESDIR}"/${P}-*.patch - eautoreconf -} - -src_configure() { - egamesconf \ - --disable-dependency-tracking \ - --with-fftw=/usr \ - --with-ogg=/usr \ - --with-vorbis=/usr \ - --datadir="${GAMES_DATADIR}/${PN}" \ - --with-docdir="/usr/share/doc/${PF}" \ - --with-wx-config="${WX_CONFIG}" \ - --without-pgsql \ - $(use_with mysql) \ - $(use_enable dedicated serveronly) -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - if ! use dedicated ; then - newicon data/images/tank-old.bmp ${PN}.bmp || die - make_desktop_entry ${PN} "Scorched 3D" /usr/share/pixmaps/${PN}.bmp - fi - prepgamesdirs -} diff --git a/games-strategy/warzone2100/Manifest b/games-strategy/warzone2100/Manifest index 32b003bd5274..685716a72a22 100644 --- a/games-strategy/warzone2100/Manifest +++ b/games-strategy/warzone2100/Manifest @@ -1,3 +1,2 @@ -DIST warzone2100-2.3.8.tar.gz 56883675 SHA256 d09af492f3dd44be5802a0454a7067448d003128c73a2b6e52e4ff2949109d13 DIST warzone2100-2.3.9.tar.gz 62509972 SHA256 9e843bb752c9c4798b8e6ea0edfb625f9aa2f2ba8cbfe42e31ab1c6aa9267adb SHA512 3af34969e701e089886a228f7e2c33b61d763adcfebe6f8f0ac3cdb24ed133173dbf051c544e12e74f278b7193f4cbc79bb1df2d1a974f8d03575557695a8662 WHIRLPOOL 0953c323c86f0771a69c652326cb72356eb9efe45ad787eee0341d8d10a0c92bd6721691d73bdcd07f24e708b6b14ffb046f643393399ac425fe6a040ad4ee4b DIST warzone2100-videos-2.2.wz 571937134 SHA256 142ae905be288cca33357a49f42b884c190e828fc0b1b1773ded5dff774f41a3 diff --git a/games-strategy/warzone2100/warzone2100-2.3.8.ebuild b/games-strategy/warzone2100/warzone2100-2.3.8.ebuild deleted file mode 100644 index 970796e85834..000000000000 --- a/games-strategy/warzone2100/warzone2100-2.3.8.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/games-strategy/warzone2100/warzone2100-2.3.8.ebuild,v 1.5 2012/05/04 04:51:09 jdhore Exp $ - -EAPI=2 -inherit autotools versionator games - -MY_PV=$(get_version_component_range -2) -VIDEOS_PV=2.2 -VIDEOS_P=${PN}-videos-${VIDEOS_PV}.wz -DESCRIPTION="3D real-time strategy game" -HOMEPAGE="http://wz2100.net/" -SRC_URI="mirror://sourceforge/warzone2100/${P}.tar.gz - videos? ( mirror://sourceforge/warzone2100/warzone2100/Videos/${VIDEOS_PV}/high-quality-en/sequences.wz -> ${VIDEOS_P} )" - -LICENSE="GPL-2 CCPL-Attribution-ShareAlike-3.0 public-domain" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -# upstream requested debug support -IUSE="debug nls videos" - -RDEPEND="dev-db/sqlite:3 - >=dev-games/physfs-2[zip] - dev-libs/popt - media-libs/libogg - media-libs/libpng - media-libs/libsdl[opengl,video] - media-libs/libtheora - media-libs/libvorbis - media-libs/openal - media-libs/sdl-net - media-libs/quesoglc - virtual/glu - virtual/opengl - nls? ( virtual/libintl )" -DEPEND="${RDEPEND} - app-arch/zip - virtual/pkgconfig - nls? ( sys-devel/gettext )" -RDEPEND="${RDEPEND} - media-fonts/dejavu" - -src_prepare() { - eautoreconf -} - -src_configure() { - egamesconf \ - --disable-motif \ - --disable-dependency-tracking \ - --docdir=/usr/share/doc/${PF} \ - --localedir=/usr/share/locale \ - --with-distributor="Gentoo ${PF}" \ - --with-icondir=/usr/share/pixmaps \ - --with-applicationdir=/usr/share/applications \ - $(use_enable debug debug relaxed) \ - $(use_enable nls) -} - -src_install() { - emake DESTDIR="${D}" install || die - rm -f "${D}"/usr/share/doc/${PF}/COPYING* - if use videos ; then - insinto "${GAMES_DATADIR}"/${PN} - newins "${DISTDIR}"/${VIDEOS_P} sequences.wz || die - fi - doman doc/warzone2100.6 - prepgamesdirs -} diff --git a/kde-misc/kover/Manifest b/kde-misc/kover/Manifest index ff5bfbc7bbc1..03e965799452 100644 --- a/kde-misc/kover/Manifest +++ b/kde-misc/kover/Manifest @@ -1,2 +1 @@ -DIST kover-5.tar.bz2 87537 SHA256 c987c50a8ff83345687faf8b8005f241257882c8b6900287cc1325e78601389e SHA512 0cc6447f1b7c1329272836f10af1ecdcbe722b54c098eb17002a5147167997f209ca9fc69db33b484e9f84e143e8608e2555eb6c7af305174a4bf02c508382c8 WHIRLPOOL 38caee58fea5e129284f51165a07721a008c4dab66792bcfcf3231318e88185a04edec0ed2278729cc0119b21d4ef2c46bf4b78aa8e5357e710616ddc61c755f DIST kover-6.tar.bz2 87898 SHA256 87494299d5dd7a51bbf3a1739f372da680744f14271c43d8495eca15f1f2480a SHA512 bb88464e83f6be5ed0f6cbe6bc8debfbc95f49cdecf3199251c2a074d44a7da2b8d4bbcac222550c60a834bbb66da61e41ec614dded9dff0e4993194bec1a526 WHIRLPOOL c37aa98eaeea1df57bd9647e978863ca529bbc9ff59ff8bb0f6e034367cb52f5d4f29685a9432966ae529a710a10c3eb8d2d43c9b939f7c1575bb3d795efcb23 diff --git a/kde-misc/kover/kover-5.ebuild b/kde-misc/kover/kover-5.ebuild deleted file mode 100644 index 2601f4ed5fa2..000000000000 --- a/kde-misc/kover/kover-5.ebuild +++ /dev/null @@ -1,28 +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/kover/kover-5.ebuild,v 1.2 2013/01/19 02:24:14 creffett Exp $ - -EAPI=5 -KDE_LINGUAS="de es fr it nb no pl" - -inherit kde4-base - -DESCRIPTION="An easy to use WYSIWYG CD cover printer with CDDB support" -HOMEPAGE="http://lisas.de/kover/" -SRC_URI="http://lisas.de/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="4" -KEYWORDS="~amd64 ~x86" -IUSE="nls" - -RDEPEND=" - /config/.cfg" - elog "to test the themes. Note, that some of them don't support verbose mode." - fi -} diff --git a/media-gfx/bootsplash-themes/metadata.xml b/media-gfx/bootsplash-themes/metadata.xml index ed740c3addce..d9cd2cad66c2 100644 --- a/media-gfx/bootsplash-themes/metadata.xml +++ b/media-gfx/bootsplash-themes/metadata.xml @@ -2,6 +2,6 @@ - spock@gentoo.org +maintainer-needed@gentoo.org diff --git a/media-gfx/engauge/Manifest b/media-gfx/engauge/Manifest index 07fae463b4dc..08ea0a19710d 100644 --- a/media-gfx/engauge/Manifest +++ b/media-gfx/engauge/Manifest @@ -1,2 +1 @@ -DIST engauge-4.1.tar.gz 5831396 SHA256 a9dc871d57b51cf874633d6565a2ac5bf38681050a152a94122d497bd19e9d24 SHA512 50af47d6f111786185056cba2b30b0abfa6044d49c8274619cd2f4c3db753d5774bab8f4fd2204c3fbbc54ba8cc16ff2556a812c605f2afe4ac94e66218048e4 WHIRLPOOL 5e08cc6b48ae03a7d091188ca0a8cbd3b37f3c71789209b2476b8ed6d9a11d3917ec3e29f99c2a74ca245ba2d9245db1fbe5de3df8dd4230fa0e07a56d9a84da -DIST engauge-4.1_qt4.patch.xz 43820 SHA256 7bc65c9660faa88ed52246031f92debdb0802e14aa7fe660353bedbc8858c599 SHA512 159542c8616a0f25af63784382db4381995a9e1b8aebed33640d8e842d0ce3db1044402380498ef72d466748147affe830833ab0a4263390ee67ee543cf35d62 WHIRLPOOL 3303b26f630299f43051fd76839b38516951bf1e22e794b2b16407b66dd624383e80df96ae59d9ccad0a48b75f07354022fdbf921e49699924601fe3c683f040 +DIST engauge-5.1.tar.gz 10612879 SHA256 64ec75af53a757622da786835f4cc70c09fc491e69aafc6e69dbfd54bfdc3a59 SHA512 595ac3c96c88d20e2405019efadaff802c0c85079314ec955475b16aec3763f3cb954f5e072678fc1b155bd339b2b758c8963087e4e09e390e29ffea0f7b9a5a WHIRLPOOL fa4dbea7617bae87d7b32b025a2182bfa9ce194850748b98464fe15a3fe3375d259a3af72df71ab859ce9294a25739d96a117254991d0b14ac5a2b4609eaa39c diff --git a/media-gfx/engauge/engauge-4.1-r1.ebuild b/media-gfx/engauge/engauge-5.1.ebuild similarity index 62% rename from media-gfx/engauge/engauge-4.1-r1.ebuild rename to media-gfx/engauge/engauge-5.1.ebuild index 0a47812814e7..e8e10d357968 100644 --- a/media-gfx/engauge/engauge-4.1-r1.ebuild +++ b/media-gfx/engauge/engauge-5.1.ebuild @@ -1,37 +1,32 @@ -# 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/engauge/engauge-4.1-r1.ebuild,v 1.5 2012/10/07 11:54:41 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/engauge/engauge-5.1.ebuild,v 1.1 2013/01/20 16:48:16 calchan Exp $ EAPI=4 + inherit versionator qt4-r2 eutils DESCRIPTION="Convert an image file showing a graph or map into numbers" HOMEPAGE="http://digitizer.sourceforge.net/" -SRC_URI="mirror://sourceforge/digitizer/digit-src-$(replace_version_separator . _).tar.gz -> ${P}.tar.gz - http://dev.gentoo.org/~calchan/distfiles/${P}_qt4.patch.xz" +SRC_URI="mirror://sourceforge/digitizer/digit-src-$(replace_version_separator . _).tar.gz -> ${P}.tar.gz" + LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc examples" RDEPEND="x11-libs/qt-qt3support:4 + x11-libs/qt-gui:4[gif] sci-libs/fftw:3.0 x11-libs/libXft" -DEPEND="${RDEPEND} - app-arch/xz-utils" +DEPEND="${RDEPEND}" S="${WORKDIR}/${PN}" src_prepare() { - epatch "${DISTDIR}"/${P}_qt4.patch.xz - - # Some Debian patches to fix compilation problems - epatch "${FILESDIR}/${PN}-5.1-gcc47.patch" - epatch "${FILESDIR}/${PN}-5.1-qreal-double.patch" - # Some patching and using the DEBIAN_PACKAGE ifdef is necessary to make sure the # documentation is looked for in the proper directory - sed -i -e "s:/usr/share/doc/engauge-digitizer-doc:${ROOT}/usr/share/doc/${PF}:" \ + sed -i -e "s:/usr/share/doc/engauge-digitizer-doc/html:${ROOT}/usr/share/doc/${PF}/usermanual:" \ src/digitmain.cpp || die "sed failed" sed -i -e '/unix {/a DEFINES += DEBIAN_PACKAGE' \ digitizer.pro || die "sed failed" @@ -47,9 +42,9 @@ src_install() { make_desktop_entry engauge "Engauge Digitizer" ${PN} Graphics insinto /usr/share/doc/${PF} if use doc; then - doins -r usermanual + doins -r usermanual || die "install documentation failed" fi if use examples; then - doins -r samples + doins -r samples || die "install examples failed" fi } diff --git a/media-gfx/engauge/files/engauge-5.1-gcc47.patch b/media-gfx/engauge/files/engauge-5.1-gcc47.patch deleted file mode 100644 index 411cea829ae9..000000000000 --- a/media-gfx/engauge/files/engauge-5.1-gcc47.patch +++ /dev/null @@ -1,19 +0,0 @@ -Description: Add missing header include - In gcc 4.7, many of the standard C++ library include files have been - edited to no longer include to remove namespace pollution. - The missing include is added to fix FTBFS with gcc 4.7. -Author: Tobias Winchen -Last-Update: 2012-05-17 - - ---- a/src/pointmatch.cpp -+++ b/src/pointmatch.cpp -@@ -25,6 +25,7 @@ - - #include - #include -+#include - - #include "main.h" - #include "mmsubs.h" - diff --git a/media-gfx/engauge/files/engauge-5.1-qreal-double.patch b/media-gfx/engauge/files/engauge-5.1-qreal-double.patch deleted file mode 100644 index 73504559fe18..000000000000 --- a/media-gfx/engauge/files/engauge-5.1-qreal-double.patch +++ /dev/null @@ -1,31 +0,0 @@ -Description: Fix issues with double VS qreal - The code was attempting to pass double* to a function expecting qreal* - resulting in compile errors on arm (where qreal is defined as float) - this patch changes a couple of variable definitions so the types match - up. -Origin: http://bugs.debian.org/656943 -Author: Peter Green -Reviewed-By: Tobias Winchen -Last-Update: 2012-03-21 - - ---- engauge-digitizer-5.0.orig/src/digitview.cpp -+++ engauge-digitizer-5.0/src/digitview.cpp -@@ -288,7 +288,7 @@ void DigitView::keyReleaseEvent(QKeyEven - - QPoint DigitView::convertZoom(QPoint p, bool to) - { -- double x, y; -+ qreal x, y; - if (to) - worldMatrix().map((double) p.x(), (double) p.y(), &x, &y); - else -@@ -299,7 +299,7 @@ QPoint DigitView::convertZoom(QPoint p, - - QRect DigitView::convertZoom(QRect r, bool to) - { -- double xTL, yTL, xBR, yBR; -+ qreal xTL, yTL, xBR, yBR; - if (to) - { - worldMatrix().map((double) r.left(), (double) r.top(), &xTL, &yTL); diff --git a/media-gfx/entangle/Manifest b/media-gfx/entangle/Manifest index df986833559c..809e8d975bb5 100644 --- a/media-gfx/entangle/Manifest +++ b/media-gfx/entangle/Manifest @@ -1,2 +1,3 @@ DIST entangle-0.4.0.tar.gz 778923 SHA256 9a2f8017caff738cca901f9a784d83160cd706461c51268cdc03329eb00159f2 SHA512 8f5470945a14fc5b1a9c8f5b61717f6e1763243478c97bbcfec2119fe3cea1c6dbc49d403269c02ae25ef19f67d5784fa283fddf6680a3fc0b1556b0f1b4f788 WHIRLPOOL 3c9254952a26a71beac088e0351a0eb36d71079385bfea3ea000aff05c37df1302cfbf8f75df5011593102230cb0a5333de44099a17b890bbd2ae8d3fa30b795 DIST entangle-0.4.1.tar.gz 794960 SHA256 045f2fb2c5cc69508e935a3039b7383eb3665042a941a2894ae85ef38477f0fa SHA512 ff02dda2de603589bafd642171f6963d942b0ce0e951c660f99c55333bb35d48d192302366c7388a4de4eec656cf91dbffe87ca38e49aac7ee8a90e3e9a4095b WHIRLPOOL 8322511c88f84c140fa2f71e1adbca5afd6d532973dc99023973f6dfbea2c188f274be45abe122f2e7ce12325522c9ea4e266ab5b4ac9826f2483312eb04acc9 +DIST entangle-0.5.0.tar.gz 878144 SHA256 f6e80602c569e197482ee3099a0e4e2eb35f26d913dd11b3fc3b4eb37526d4c3 SHA512 9481fb49f4dac482103a4a1f89ee642ebac3a41f57d031f393244c6a38bafcacdc79203bde9c443b1a653cda5d77efee35428c5fcc8dc00e8e10b68fe940618b WHIRLPOOL e10f3ef242be7143173f20a9dc977534ffbd7935e3dfbda2c06c39b29b89bb1d752897dd0ad41d913c5e93771ad4b9d1ef44a1388ce151a506e187f19832eb23 diff --git a/media-gfx/entangle/entangle-0.5.0.ebuild b/media-gfx/entangle/entangle-0.5.0.ebuild new file mode 100644 index 000000000000..9c4bf3cfa697 --- /dev/null +++ b/media-gfx/entangle/entangle-0.5.0.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-gfx/entangle/entangle-0.5.0.ebuild,v 1.1 2013/01/20 13:15:22 flameeyes Exp $ + +EAPI=4 + +inherit gnome2 eutils + +DESCRIPTION="Tethered Camera Control & Capture" +HOMEPAGE="http://entangle-photo.org/" +SRC_URI="http://entangle-photo.org/download/sources/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND=">=dev-libs/glib-2.26:2 + >=x11-libs/gdk-pixbuf-2.12.0:2 + x11-libs/gtk+:3 + >=sys-fs/udev-145[gudev] + >=dev-libs/dbus-glib-0.60 + >=dev-libs/gobject-introspection-0.9.3 + >=media-libs/libgphoto2-2.4.11 + >=media-libs/lcms-1.18 + >=dev-libs/libpeas-0.5.5[gtk] + >=media-libs/gexiv2-0.2.2 + >=x11-libs/libXext-1.3.0 + >=media-libs/libraw-0.9.0" +RDEPEND="${DEPEND}" +DEPEND+=" + virtual/pkgconfig" + +G2CONF+=" + --disable-maintainer-mode + --disable-dependency-tracking + --docdir=/usr/share/doc/${PF} + --htmldir=/usr/share/doc/${PF}/html + --disable-werror + --disable-static + --disable-silent-rules" + +DOCS=( AUTHORS ChangeLog NEWS README ) + +src_prepare() { + gnome2_src_prepare + + has_version '>=media-libs/libgphoto2-2.5.0' && \ + epatch "${FILESDIR}"/${P}+libgphoto2-2.5.0.patch +} diff --git a/media-gfx/entangle/files/entangle-0.5.0+libgphoto2-2.5.0.patch b/media-gfx/entangle/files/entangle-0.5.0+libgphoto2-2.5.0.patch new file mode 100644 index 000000000000..83013be446c4 --- /dev/null +++ b/media-gfx/entangle/files/entangle-0.5.0+libgphoto2-2.5.0.patch @@ -0,0 +1,129 @@ +Index: entangle-0.5.0/configure.ac +=================================================================== +--- entangle-0.5.0.orig/configure.ac ++++ entangle-0.5.0/configure.ac +@@ -28,7 +28,7 @@ GDK_PIXBUF_REQUIRED=2.12.0 + AC_SUBST(GDK_PIXBUF_REQUIRED) + GTK_REQUIRED=3.0.0 + AC_SUBST(GTK_REQUIRED) +-GPHOTO2_REQUIRED=2.4.11 ++GPHOTO2_REQUIRED=2.5.0 + AC_SUBST(GPHOTO2_REQUIRED) + GUDEV_REQUIRED=145 + AC_SUBST(GUDEV_REQUIRED) +Index: entangle-0.5.0/src/backend/entangle-camera.c +=================================================================== +--- entangle-0.5.0.orig/src/backend/entangle-camera.c ++++ entangle-0.5.0/src/backend/entangle-camera.c +@@ -543,15 +543,14 @@ const char *entangle_camera_get_port(Ent + + static unsigned int do_entangle_camera_progress_start(GPContext *ctx G_GNUC_UNUSED, + float target, +- const char *format, +- va_list args, ++ const char *txt, + void *data) + { + EntangleCamera *cam = data; + EntangleCameraPrivate *priv = cam->priv; + + if (priv->progress) +- entangle_progress_start(priv->progress, target, format, args); ++ entangle_progress_start(priv->progress, target, txt); + + return 0; /* XXX what is this actually useful for ? */ + } +@@ -588,15 +587,14 @@ static void entangle_camera_reset_last_e + } + + static void do_entangle_camera_error(GPContext *ctx G_GNUC_UNUSED, +- const char *fmt, +- va_list args, ++ const char *txt, + void *data) + { + EntangleCamera *cam = data; + EntangleCameraPrivate *priv = cam->priv; + + entangle_camera_reset_last_error(cam); +- priv->lastError = g_strdup_vprintf(fmt, args); ++ priv->lastError = g_strdup(txt); + ENTANGLE_DEBUG("Got error %s", priv->lastError); + } + +Index: entangle-0.5.0/src/backend/entangle-progress.c +=================================================================== +--- entangle-0.5.0.orig/src/backend/entangle-progress.c ++++ entangle-0.5.0/src/backend/entangle-progress.c +@@ -23,11 +23,11 @@ + #include "entangle-debug.h" + #include "entangle-progress.h" + +-void entangle_progress_start(EntangleProgress *prog, float target, const char *format, va_list args) ++void entangle_progress_start(EntangleProgress *prog, float target, const char *txt) + { + g_return_if_fail(ENTANGLE_IS_PROGRESS(prog)); + +- ENTANGLE_PROGRESS_GET_INTERFACE(prog)->start(prog, target, format, args); ++ ENTANGLE_PROGRESS_GET_INTERFACE(prog)->start(prog, target, txt); + } + + void entangle_progress_update(EntangleProgress *prog, float current) +Index: entangle-0.5.0/src/backend/entangle-progress.h +=================================================================== +--- entangle-0.5.0.orig/src/backend/entangle-progress.h ++++ entangle-0.5.0/src/backend/entangle-progress.h +@@ -38,14 +38,14 @@ typedef struct _EntangleProgressInterfac + struct _EntangleProgressInterface { + GTypeInterface parent; + +- void (*start) (EntangleProgress *prog, float target, const char *format, va_list args); ++ void (*start) (EntangleProgress *prog, float target, const char *txt); + void (*update) (EntangleProgress *prog, float current); + void (*stop) (EntangleProgress *prog); + }; + + GType entangle_progress_get_type(void); + +-void entangle_progress_start(EntangleProgress *prog, float target, const char *format, va_list args); ++void entangle_progress_start(EntangleProgress *prog, float target, const char *txt); + void entangle_progress_update(EntangleProgress *prog, float current); + void entangle_progress_stop(EntangleProgress *prog); + +Index: entangle-0.5.0/src/frontend/entangle-camera-manager.c +=================================================================== +--- entangle-0.5.0.orig/src/frontend/entangle-camera-manager.c ++++ entangle-0.5.0/src/frontend/entangle-camera-manager.c +@@ -1091,14 +1091,13 @@ static void do_camera_file_preview(Entan + } + + +-static void do_entangle_camera_progress_start(EntangleProgress *iface, float target, const char *format, va_list args) ++static void do_entangle_camera_progress_start(EntangleProgress *iface, float target, const char *txt) + { + g_return_if_fail(ENTANGLE_IS_CAMERA_MANAGER(iface)); + + EntangleCameraManager *manager = ENTANGLE_CAMERA_MANAGER(iface); + EntangleCameraManagerPrivate *priv = manager->priv; + GtkWidget *mtr; +- char *txt; + GtkWidget *operation; + + gdk_threads_enter(); +@@ -1107,16 +1106,12 @@ static void do_entangle_camera_progress_ + mtr = GTK_WIDGET(gtk_builder_get_object(priv->builder, "toolbar-progress")); + operation = GTK_WIDGET(gtk_builder_get_object(priv->builder, "toolbar-operation")); + +- txt = g_strdup_vprintf(format, args); +- + gtk_widget_set_tooltip_text(mtr, txt); + gtk_progress_bar_set_text(GTK_PROGRESS_BAR(mtr), txt); + gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(mtr), 0); + + gtk_widget_show(operation); + +- g_free(txt); +- + gdk_threads_leave(); + } + diff --git a/media-gfx/fbgrab/metadata.xml b/media-gfx/fbgrab/metadata.xml index ed740c3addce..d9cd2cad66c2 100644 --- a/media-gfx/fbgrab/metadata.xml +++ b/media-gfx/fbgrab/metadata.xml @@ -2,6 +2,6 @@ - spock@gentoo.org +maintainer-needed@gentoo.org diff --git a/media-gfx/fbida/metadata.xml b/media-gfx/fbida/metadata.xml index ed740c3addce..d9cd2cad66c2 100644 --- a/media-gfx/fbida/metadata.xml +++ b/media-gfx/fbida/metadata.xml @@ -2,6 +2,6 @@ - spock@gentoo.org +maintainer-needed@gentoo.org diff --git a/media-gfx/fblogo/Manifest b/media-gfx/fblogo/Manifest index 6c1682e237a4..58348ebc7762 100644 --- a/media-gfx/fblogo/Manifest +++ b/media-gfx/fblogo/Manifest @@ -1 +1 @@ -DIST fblogo-0.5.2.tar.gz 21874 RMD160 bddd94f48f2ec543e6a18931024c9f23a3a32ef0 SHA1 634333694777cacfa5ce4d06a629701d496fff4a SHA256 409d3aaaaddd6a8d22a661c68cad3283c969ed33fabe357df60fb37ab8bfae1e +DIST fblogo-0.5.2.tar.gz 21874 SHA256 409d3aaaaddd6a8d22a661c68cad3283c969ed33fabe357df60fb37ab8bfae1e diff --git a/media-gfx/fblogo/metadata.xml b/media-gfx/fblogo/metadata.xml index 268dee2f066c..d9cd2cad66c2 100644 --- a/media-gfx/fblogo/metadata.xml +++ b/media-gfx/fblogo/metadata.xml @@ -2,8 +2,6 @@ - spock@gentoo.org - Michal Januszewski - It seems fblogo was maintained by Troy Dack. Since he is now on hiatus I decided to take care about this package. +maintainer-needed@gentoo.org diff --git a/media-gfx/quat/Manifest b/media-gfx/quat/Manifest index ee07cee74a86..d9504ffbf315 100644 --- a/media-gfx/quat/Manifest +++ b/media-gfx/quat/Manifest @@ -1 +1 @@ -DIST quat-1.20.tar.gz 474448 RMD160 e8b56f222e6cc218eacfc25e502c2a48264a2e81 SHA1 917363c496a5d7f8864aab0ca4f62d2e6c3dabf1 SHA256 0c18262944507559a91615c0e02e3560279817544fd596051d3f1ab452566331 +DIST quat-1.20.tar.gz 474448 SHA256 0c18262944507559a91615c0e02e3560279817544fd596051d3f1ab452566331 diff --git a/media-gfx/quat/metadata.xml b/media-gfx/quat/metadata.xml index 70d60f502e72..d9cd2cad66c2 100644 --- a/media-gfx/quat/metadata.xml +++ b/media-gfx/quat/metadata.xml @@ -2,7 +2,6 @@ - spock@gentoo.org - Michał Januszewski +maintainer-needed@gentoo.org diff --git a/media-gfx/sane-backends/sane-backends-1.0.23.ebuild b/media-gfx/sane-backends/sane-backends-1.0.23.ebuild index efe55edf95f3..4aae08330932 100644 --- a/media-gfx/sane-backends/sane-backends-1.0.23.ebuild +++ b/media-gfx/sane-backends/sane-backends-1.0.23.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/sane-backends/sane-backends-1.0.23.ebuild,v 1.8 2013/01/16 18:49:16 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/sane-backends/sane-backends-1.0.23.ebuild,v 1.10 2013/01/20 13:10:59 ago Exp $ EAPI="4" @@ -148,7 +148,7 @@ SRC_URI="https://alioth.debian.org/frs/download.php/3752/sane-backends-1.0.23.ta https://alioth.debian.org/frs/download.php/3754/sane-backends-1.0.23.tar.gz.3" SLOT="0" LICENSE="GPL-2 public-domain" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux" pkg_setup() { enewgroup scanner diff --git a/media-gfx/shared-color-profiles/shared-color-profiles-0.1.5.ebuild b/media-gfx/shared-color-profiles/shared-color-profiles-0.1.5.ebuild index 1c4392ef271d..1d862db10fd1 100644 --- a/media-gfx/shared-color-profiles/shared-color-profiles-0.1.5.ebuild +++ b/media-gfx/shared-color-profiles/shared-color-profiles-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-gfx/shared-color-profiles/shared-color-profiles-0.1.5.ebuild,v 1.11 2013/01/04 20:00:12 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/shared-color-profiles/shared-color-profiles-0.1.5.ebuild,v 1.12 2013/01/20 17:09:23 ago Exp $ EAPI="4" @@ -10,7 +10,7 @@ SRC_URI="http://people.freedesktop.org/~hughsient/releases/${P}.tar.gz" LICENSE="GPL-2 MIT ZLIB public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~x86-fbsd" IUSE="" RDEPEND="" diff --git a/media-gfx/splash-themes-gentoo/Manifest b/media-gfx/splash-themes-gentoo/Manifest index 37183c24376a..35553c0b233d 100644 --- a/media-gfx/splash-themes-gentoo/Manifest +++ b/media-gfx/splash-themes-gentoo/Manifest @@ -1,8 +1,4 @@ -DIST fbsplash-theme-emerge-world-1.0.tar.bz2 3963650 SHA256 a00ee0364842b276389eb09c95fa3ee16ad3fa15017998fe6765d45167015d7d -DIST fbsplash-theme-emergence-r2.tar.bz2 4794297 SHA256 77eda040aa858b19c822549bb1478dbb66a5e68f5ce3dade727ef36ae9121d92 -DIST fbsplash-theme-gentoo-r2.tar.bz2 5605891 SHA256 30bc1e5a13d978c0c3ad4b9c25576897018053d3e9d573e7af0a8865bc2f3f82 -DIST fbsplash-theme-natural_gentoo-7.1.tar.bz2 237317 SHA256 9f066a18db8504cd9266d03a714f6616459d7a27da45b2b1a7939f7261fc1702 -DIST natural_gentoo-8.0-r1.tar.bz2 287280 SHA256 b7a09f00d6abcc39be99496da83d65cdfb0bfdde674dec021b9b6829402bfec3 -DIST natural_gentoo-9.0-r1.tar.bz2 394701 SHA256 08f362d64e36a0475375b1fdb065d58ee8bd2a0985524958b4060065bccf6f53 -DIST natural_gentoo-9.0-r2.tar.bz2 433306 SHA256 9f31569123854dbeff596e40edcdb88dcb953a90d936ff6c9e177cf52d3825a2 -DIST natural_gentoo-9.0.tar.bz2 382387 SHA256 aaa673a0102c9053c5e2545ef3857de5d11c6d9fbd1609d2849203c06797775b +DIST fbsplash-theme-emerge-world-1.0.tar.bz2 3963650 SHA256 a00ee0364842b276389eb09c95fa3ee16ad3fa15017998fe6765d45167015d7d SHA512 a77f0a97cc97c60159dfa3f445de827c26c261d7194a7716277a8ae5c197ffd31cc7c703aec053fc59fad5e855e049d65ad3eb313789d7e1524c574fedc2ec7b WHIRLPOOL 5f3f0ce84cc959632110507ce90b329a9c0ac23ec8b93d63b4d8155b7aa3e166020e526609072844b1a8b9005f7bf6fa22cfde08fb492e7b4c6222060280ad01 +DIST fbsplash-theme-emergence-r2.tar.bz2 4794297 SHA256 77eda040aa858b19c822549bb1478dbb66a5e68f5ce3dade727ef36ae9121d92 SHA512 eefb2c1e09e9efbe6f574d007633a85d83227a526711845f5ede36b4664d781c2de05f3a79ba8d710114dd98559328aaee816983a5dc486cce089e4afb0dd260 WHIRLPOOL 341d35ab37e2489620419c5c644891518c2a2b83422d40f0636190608fa25b3cb1ed2d2afc0ead333950c2bcf4eec3f237d6f9bb27ce00a4290abf2a83a15ac2 +DIST fbsplash-theme-gentoo-r2.tar.bz2 5605891 SHA256 30bc1e5a13d978c0c3ad4b9c25576897018053d3e9d573e7af0a8865bc2f3f82 SHA512 eb7b90f8e3821e76ca75706841cd6a170a3bcdc0bfff6e876eb5425f211e3501ad78479e7b8f232eb1e221dfacf450620ffd10191790173359ee053ab9843eea WHIRLPOOL eceaef29d6029199b987125237b4f93e335119228f92b1cd85955ca2b49e3fa2a5992c7f161be3428137f09d352354f25b2b92a5f3cf199985781590f0c30bc8 +DIST natural_gentoo-9.0-r2.tar.bz2 433306 SHA256 9f31569123854dbeff596e40edcdb88dcb953a90d936ff6c9e177cf52d3825a2 SHA512 ba24da013d2f9c63d7974d443c8529bdd10b552b02006ee107b0b4b1f1034c27448754f220ae153557058f1b359061036c83e687ead2a179392f9239f9fcf686 WHIRLPOOL 5b99a7a5ae4f54907bb2c21f47c0ac3986c38774a8ce11d0a632d6ce239aa1a7c4504a2fb1629cc844e16b8b147a133cc9e7cdbed9e311ab39f1a58cb2067990 diff --git a/media-gfx/splash-themes-gentoo/metadata.xml b/media-gfx/splash-themes-gentoo/metadata.xml index ed740c3addce..d9cd2cad66c2 100644 --- a/media-gfx/splash-themes-gentoo/metadata.xml +++ b/media-gfx/splash-themes-gentoo/metadata.xml @@ -2,6 +2,6 @@ - spock@gentoo.org +maintainer-needed@gentoo.org diff --git a/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20050429.ebuild b/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20050429.ebuild deleted file mode 100644 index 1d758c48e5dc..000000000000 --- a/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20050429.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20050429.ebuild,v 1.6 2007/02/17 11:39:43 spock Exp $ - -DESCRIPTION="A collection of Gentoo themes for splashutils." -HOMEPAGE="http://dev.gentoo.org/~spock/" -SRC_URI="mirror://gentoo/fbsplash-theme-emergence-r2.tar.bz2 - mirror://gentoo/fbsplash-theme-gentoo-r2.tar.bz2" -IUSE="" -LICENSE="freedist" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -DEPEND=">=media-gfx/splashutils-1.1.9.5" -RESTRICT="binchecks strip" - -src_install() { - dodir /etc/splash/{emergence,gentoo} - cp -pR ${WORKDIR}/{emergence,gentoo} ${D}/etc/splash -} diff --git a/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20080914.ebuild b/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20080914.ebuild deleted file mode 100644 index a9838d8148eb..000000000000 --- a/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20080914.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20080914.ebuild,v 1.4 2009/03/08 18:06:04 maekke Exp $ - -DESCRIPTION="A collection of Gentoo themes for splashutils." -HOMEPAGE="http://dev.gentoo.org/~spock/" -SRC_URI="mirror://gentoo/fbsplash-theme-emergence-r2.tar.bz2 - mirror://gentoo/fbsplash-theme-gentoo-r2.tar.bz2 - mirror://gentoo/fbsplash-theme-natural_gentoo-7.1.tar.bz2" -IUSE="" -LICENSE="freedist" -SLOT="0" -KEYWORDS="amd64 ppc x86" -DEPEND=">=media-gfx/splashutils-1.1.9.5" -RESTRICT="binchecks strip" - -src_install() { - dodir /etc/splash/{emergence,gentoo,natural_gentoo} - cp -pR "${WORKDIR}"/{emergence,gentoo,natural_gentoo} "${D}/etc/splash" -} - -pkg_postinst() { - elog "The upstream tarball for the 'Natural Gentoo' theme also contains a GRUB" - elog "splash image which is not installed by this ebuild. See:" - elog " http://www.kde-look.org/content/show.php?content=49074" - elog "if you are interested in this." -} diff --git a/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20090324.ebuild b/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20090324.ebuild deleted file mode 100644 index a9480f70fdb9..000000000000 --- a/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20090324.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20090324.ebuild,v 1.3 2009/05/29 10:58:36 fauli Exp $ - -EAPI="2" - -DESCRIPTION="A collection of Gentoo themes for splashutils." -HOMEPAGE="http://dev.gentoo.org/~spock/" -SRC_URI="mirror://gentoo/fbsplash-theme-emergence-r2.tar.bz2 - mirror://gentoo/fbsplash-theme-gentoo-r2.tar.bz2 - mirror://gentoo/fbsplash-theme-natural_gentoo-7.1.tar.bz2 - mirror://gentoo/fbsplash-theme-emerge-world-1.0.tar.bz2" -IUSE="" -LICENSE="freedist" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -RDEPEND=">=media-gfx/splashutils-1.1.9.5[png]" -DEPEND="${RDEPEND}" -RESTRICT="binchecks strip" - -src_install() { - dodir /etc/splash/{emergence,gentoo,natural_gentoo,emerge-world} - cp -pR "${WORKDIR}"/{emergence,gentoo,natural_gentoo,emerge-world} "${D}/etc/splash" -} - -pkg_postinst() { - elog "The upstream tarball for the 'Natural Gentoo' theme also contains a GRUB" - elog "splash image which is not installed by this ebuild. See:" - elog " http://www.kde-look.org/content/show.php?content=49074" - elog "if you are interested in this." -} diff --git a/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20090926.ebuild b/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20090926.ebuild deleted file mode 100644 index 4e0687b64364..000000000000 --- a/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20090926.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20090926.ebuild,v 1.1 2009/09/26 15:21:18 spock Exp $ - -EAPI="2" - -DESCRIPTION="A collection of Gentoo themes for splashutils." -HOMEPAGE="http://dev.gentoo.org/~spock/" -SRC_URI="mirror://gentoo/fbsplash-theme-emergence-r2.tar.bz2 - mirror://gentoo/fbsplash-theme-gentoo-r2.tar.bz2 - mirror://gentoo/fbsplash-theme-emerge-world-1.0.tar.bz2 - http://fbsplash.berlios.de/themes/repo/natural_gentoo-8.0-r1.tar.bz2" -IUSE="" -LICENSE="freedist" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -RDEPEND=">=media-gfx/splashutils-1.1.9.5[png]" -DEPEND="${RDEPEND}" -RESTRICT="binchecks strip" - -src_install() { - dodir /etc/splash/{emergence,gentoo,natural_gentoo,emerge-world} - cp -pR "${WORKDIR}"/{emergence,gentoo,natural_gentoo,emerge-world} "${D}/etc/splash" -} - -pkg_postinst() { - elog "The upstream tarball for the 'Natural Gentoo' theme also contains a GRUB" - elog "splash image which is not installed by this ebuild. See:" - elog " http://www.kde-look.org/content/show.php?content=49074" - elog "if you are interested in this." -} diff --git a/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20100302.ebuild b/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20100302.ebuild deleted file mode 100644 index 9588f799593f..000000000000 --- a/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20100302.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20100302.ebuild,v 1.5 2011/08/07 12:14:29 xarthisius Exp $ - -EAPI="2" - -DESCRIPTION="A collection of Gentoo themes for splashutils." -HOMEPAGE="http://dev.gentoo.org/~spock/" -SRC_URI="mirror://gentoo/fbsplash-theme-emergence-r2.tar.bz2 - mirror://gentoo/fbsplash-theme-gentoo-r2.tar.bz2 - mirror://gentoo/fbsplash-theme-emerge-world-1.0.tar.bz2 - http://fbsplash.berlios.de/themes/repo/natural_gentoo-9.0.tar.bz2" -IUSE="" -LICENSE="freedist" -SLOT="0" -KEYWORDS="amd64 ppc x86" -RDEPEND=">=media-gfx/splashutils-1.1.9.5[png]" -DEPEND="${RDEPEND}" -RESTRICT="binchecks strip" - -src_prepare() { - sed -i -e 's/natural-gentoo/natural_gentoo/g' "${WORKDIR}"/natural_gentoo/*.cfg -} - -src_install() { - dodir /etc/splash/{emergence,gentoo,natural_gentoo,emerge-world} - cp -pR "${WORKDIR}"/{emergence,gentoo,natural_gentoo,emerge-world} "${D}/etc/splash" -} - -pkg_postinst() { - elog "The upstream tarball for the 'Natural Gentoo' theme also contains a GRUB" - elog "splash image which is not installed by this ebuild. See:" - elog " http://www.kde-look.org/content/show.php?content=49074" - elog "if you are interested in this." -} diff --git a/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20100820.ebuild b/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20100820.ebuild deleted file mode 100644 index 901f138fe8b7..000000000000 --- a/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20100820.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20100820.ebuild,v 1.1 2010/08/20 13:41:25 spock Exp $ - -EAPI="2" - -DESCRIPTION="A collection of Gentoo themes for splashutils." -HOMEPAGE="http://dev.gentoo.org/~spock/" -SRC_URI="mirror://gentoo/fbsplash-theme-emergence-r2.tar.bz2 - mirror://gentoo/fbsplash-theme-gentoo-r2.tar.bz2 - mirror://gentoo/fbsplash-theme-emerge-world-1.0.tar.bz2 - http://fbsplash.berlios.de/themes/repo/natural_gentoo-9.0-r1.tar.bz2" -IUSE="" -LICENSE="freedist" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -RDEPEND=">=media-gfx/splashutils-1.1.9.5[png]" -DEPEND="${RDEPEND}" -RESTRICT="binchecks strip" - -src_prepare() { - sed -i -e 's/natural-gentoo/natural_gentoo/g' "${WORKDIR}"/natural_gentoo/*.cfg -} - -src_install() { - dodir /etc/splash/{emergence,gentoo,natural_gentoo,emerge-world} - cp -pR "${WORKDIR}"/{emergence,gentoo,natural_gentoo,emerge-world} "${D}/etc/splash" -} - -pkg_postinst() { - elog "The upstream tarball for the 'Natural Gentoo' theme also contains a GRUB" - elog "splash image which is not installed by this ebuild. See:" - elog " http://www.kde-look.org/content/show.php?content=49074" - elog "if you are interested in this." -} diff --git a/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20101212-r1.ebuild b/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20101212-r1.ebuild new file mode 100644 index 000000000000..342b3ca5689d --- /dev/null +++ b/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20101212-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20101212-r1.ebuild,v 1.1 2013/01/20 10:39:59 pinkbyte Exp $ + +EAPI="5" + +DESCRIPTION="A collection of Gentoo themes for splashutils" +HOMEPAGE="http://dev.gentoo.org/~spock/" +SRC_URI="mirror://gentoo/fbsplash-theme-emergence-r2.tar.bz2 + mirror://gentoo/fbsplash-theme-gentoo-r2.tar.bz2 + mirror://gentoo/fbsplash-theme-emerge-world-1.0.tar.bz2 + http://fbsplash.berlios.de/themes/repo/natural_gentoo-9.0-r2.tar.bz2" + +LICENSE="freedist" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND=">=media-gfx/splashutils-1.1.9.5[png]" +DEPEND="${RDEPEND}" + +S="${WORKDIR}" +RESTRICT="binchecks strip" + +src_prepare() { + sed -i -e 's/natural-gentoo/natural_gentoo/g' natural_gentoo/*.cfg || die 'sed failed' +} + +src_install() { + insinto /etc/splash + doins -r * +} + +pkg_postinst() { + if [[ -z ${REPLACING_VERSIONS} ]]; then + elog "The upstream tarball for the 'Natural Gentoo' theme also contains a GRUB" + elog "splash image which is not installed by this ebuild. See:" + elog " http://www.kde-look.org/content/show.php?content=49074" + elog "if you are interested in this." + fi +} diff --git a/media-gfx/splash-themes-livecd/metadata.xml b/media-gfx/splash-themes-livecd/metadata.xml index 4d8120338e72..88653ddd7172 100644 --- a/media-gfx/splash-themes-livecd/metadata.xml +++ b/media-gfx/splash-themes-livecd/metadata.xml @@ -2,7 +2,4 @@ livecd - - spock@gentoo.org - diff --git a/media-gfx/splashutils/Manifest b/media-gfx/splashutils/Manifest index e25ac227957e..ac1a36e7a119 100644 --- a/media-gfx/splashutils/Manifest +++ b/media-gfx/splashutils/Manifest @@ -2,8 +2,6 @@ DIST freetype-2.3.12.tar.bz2 1453034 SHA256 3b96438f016a62b676c1d2089c00ca777f71 DIST jpegsrc.v8a.tar.gz 962018 SHA256 bf86a5eaafa79b5d60feb27bee08df2db4c9ca2fb40d453e7a2080f7663a713b SHA512 4020e82e16b99189b1a50bad18b09616775559740b94a988692aa33f9302d4b5abe3ccaa30895b49e6950fb3d9a830deeb7df750d128ec5c7e1844583db4524d WHIRLPOOL 46e0c98f30c8d975b85b8e86b69e9c5c64632f579502b1b3c54902706d7e08b86582a85b49a0d3bfffd03cd90946fbd20171324504a5ff521eb89e6ce11d568b DIST libpng-1.4.3.tar.bz2 658335 SHA256 2b022f39f4788505ad62a4b1f4a33286228d544719680da40f3626393ecde4a2 SHA512 aaa137ebc2312805d58caf19702d24a34ee81593d4250c4e807ce66ba7edb829926919cd0a2b0e5975421451c8eb6674798c06dbaf745175b16c9d3c92b63f61 WHIRLPOOL d383e01e6080166816991650183b47d15938aa269c0a85e234846b9c5a7ec04a1ba7620779b4ddae639ca64440772ce8dd1b3a596f6eb32124c4d6c55592fb0a DIST miscsplashutils-0.1.8.tar.bz2 91997 SHA256 38e8434c7266126477237c4d9e6cbeca152089ab33c14a7761089b7970f8d336 SHA512 fa017e264249feda45839030728e90c82f775354c3f2c29a88362938c4a31b19e6d61f967512305642f8b96575f4d756ba197e672a361760e40080c23ec0442a WHIRLPOOL c418ee425bf323fc0e00388be4547232207fd6cac10a2e8cafeef8c8aabcd014052307533bd015e61dc483ab45edd9fbd59a3005549b7bee4a4b90bf3297394a -DIST splashutils-gentoo-1.0.16.tar.bz2 15568 SHA256 f9c51f442b5a638ac68a731925da57c3402d9506f160681fc01bf80e396d409d SHA512 7b3b5d590ba1a8f94dad6ee8e580cf1c601fa31ae4cde44288a3ef822dc93b8c28c7102ea117fc238197d96384f25b3e44076e0c44d6c8e043804f195b854be2 WHIRLPOOL 7082c6d42dedb45fbeacca96c4c6ce4cbb00896e5fe0432b9e74a2c3246d4a8a2dd92a52b54c75754f1c823a8fdb2e9131b18db7849aa385348ba812e26745a3 DIST splashutils-gentoo-1.0.17.tar.bz2 15814 SHA256 6877263d0b6f5a3532db0d6a531cd4d41fbc6c45a16c5d10050e9048ecc1af81 SHA512 75f1fbfdf165f571b0bf09235235827f370e1b940f1717c4faf5b223caba0b80f853a910ba492c776512aecfafa6e74fd964239bbc6cf412620143d5ffc74167 WHIRLPOOL de9e1ca86a87c169f0a2f7844ab9a68b29cc46c208daca4d13cf7d552b35c05b6e266d66724078cf1f6eea3d41496fdf4fd7b3219697b2032520ad2b9a5ec5c9 -DIST splashutils-lite-1.5.4.3.tar.bz2 426935 SHA256 3f21bd57ac67bd7426caa3ff5791d3609567db3bcd4319da29867ec42cadb362 SHA512 7f7d55507af7facf7418a5077b39931b7a026667ab519531850be931a8a5cc905d95f66f6bd1731e3b06c4c30eb3edc926df378003613da5e8d395016ebd41a6 WHIRLPOOL d13510a0f3bd30df04557861346a284af2c5ad85a8a4304a0b9e501489aca95b4216e4376b42ce0d2677434a0186edb79eabd0d6f7d5f8a634b1336d41369607 DIST splashutils-lite-1.5.4.4.tar.bz2 441340 SHA256 bc0e22293d4550281d2289672da3acb42594c18a75b9d00ba75526e05162ec6b SHA512 1a78216a1de1fdccff514494d7301640e447c65466e1fe02428e5114485507f67fe4394094880d927d074a8ab2d9c786ba03f9fb0371eb7ab6ef4e3b01aa4613 WHIRLPOOL f861a1673fd9e1fe32e417da48be8c472c5c3cc06844eb0886a66b498ca38cb04a6e51708821eefe3e15f66004bb6a4ef76df7242643b34090035bffdf1f87d7 DIST zlib-1.2.3.tar.bz2 425209 SHA256 e3b9950851a19904d642c4dec518623382cf4d2ac24f70a76510c944330d28ca SHA512 edae735960279d92acf58e1f4095c6392a7c2059b8f1d2c46648fc608a0fb06b392db2d073f4973f5762c034ea66596e769b95b3d26ad963a086b9b2d09825f2 WHIRLPOOL e874b123296f5d77daf60617501b30f4beebccb64b3910c2539f75f6c194a2cf4885dc7a3904bf790e1651120ec33b55c48e95970dd6bfd6c4d0a2ea48d7d0f4 diff --git a/media-gfx/splashutils/metadata.xml b/media-gfx/splashutils/metadata.xml index d2d646ac71ca..48236cdb27c7 100644 --- a/media-gfx/splashutils/metadata.xml +++ b/media-gfx/splashutils/metadata.xml @@ -2,7 +2,7 @@ - spock@gentoo.org + maintainer-needed@gentoo.org diff --git a/media-gfx/splashutils/splashutils-1.5.4.3-r3.ebuild b/media-gfx/splashutils/splashutils-1.5.4.3-r3.ebuild deleted file mode 100644 index 6e90b47ec01a..000000000000 --- a/media-gfx/splashutils/splashutils-1.5.4.3-r3.ebuild +++ /dev/null @@ -1,252 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r3.ebuild,v 1.20 2012/12/11 14:50:49 axs Exp $ - -EAPI="2" - -inherit autotools eutils multilib toolchain-funcs - -MISCSPLASH="miscsplashutils-0.1.8" -GENTOOSPLASH="splashutils-gentoo-1.0.16" -V_JPEG="8a" -V_PNG="1.4.3" -V_ZLIB="1.2.3" -V_FT="2.3.12" - -ZLIBSRC="libs/zlib-${V_ZLIB}" -LPNGSRC="libs/libpng-${V_PNG}" -JPEGSRC="libs/jpeg-${V_JPEG}" -FT2SRC="libs/freetype-${V_FT}" - -RESTRICT="test" -IUSE="hardened +png +truetype +mng gpm fbcondecor" - -DESCRIPTION="Framebuffer splash utilities." -HOMEPAGE="http://fbsplash.berlios.de" -SRC_URI="mirror://berlios/fbsplash/${PN}-lite-${PV}.tar.bz2 - mirror://berlios/fbsplash/${GENTOOSPLASH}.tar.bz2 - mirror://gentoo/${MISCSPLASH}.tar.bz2 - mirror://sourceforge/libpng/libpng-${V_PNG}.tar.bz2 - ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v${V_JPEG}.tar.gz - mirror://sourceforge/freetype/freetype-${V_FT}.tar.bz2 - http://www.gzip.org/zlib/zlib-${V_ZLIB}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -RDEPEND="gpm? ( sys-libs/gpm ) - truetype? ( >=media-libs/freetype-2[static-libs] - || ( =media-libs/libpng-1.4.3[static-libs] ) - mng? ( - media-libs/lcms:0[static-libs] - || ( media-libs/libmng[static-libs] =sys-apps/baselayout-1.9.4-r5 - app-arch/cpio - media-gfx/fbgrab - !sys-apps/lcdsplash" -DEPEND="${RDEPEND} - >=dev-libs/klibc-1.5 - virtual/pkgconfig" - -S="${WORKDIR}/${P/_/-}" -SG="${WORKDIR}/${GENTOOSPLASH}" -SM="${WORKDIR}/${MISCSPLASH}" - -pkg_setup() { - if use hardened; then - ewarn "Due to problems with klibc, it is currently impossible to compile splashutils" - ewarn "with 'hardened' GCC flags. As a workaround, the package will be compiled with" - ewarn "-fno-stack-protector. Hardened GCC features will not be used while building" - ewarn "the splash kernel helper." - fi -} - -src_prepare() { - mv "${WORKDIR}"/{libpng-${V_PNG},jpeg-${V_JPEG},zlib-${V_ZLIB},freetype-${V_FT}} "${S}/libs" - # We need to delete the Makefile and let it be rebuilt when splashutils - # is being configured. Either that, or we end up with a segfaulting kernel - # helper. - rm "${S}/libs/zlib-${V_ZLIB}/Makefile" - - cd "${S}" - ln -sf "${S}/src" "${WORKDIR}/core" - - if ! tc-is-cross-compiler && \ - has_version "sys-devel/gcc:$(gcc-version)[vanilla]" ; then - ewarn "Your GCC was built with the 'vanilla' flag set. If you can't compile" - ewarn "splashutils, you're on your own, as this configuration is not supported." - else - # This should make splashutils compile on systems with hardened GCC. - sed -e 's@K_CFLAGS =@K_CFLAGS = -fno-stack-protector@' -i "${S}/Makefile.in" - fi - - if ! use truetype ; then - sed -i -e 's/fbtruetype kbd/kbd/' "${SM}/Makefile" - fi - - epatch "${FILESDIR}"/splashutils-1.5.4.3-makefile.patch - epatch "${FILESDIR}"/splashutils-1.5.4.3-splash_geninitramfs.patch - epatch "${FILESDIR}"/splashutils-1.5.4.3-libjpeg.patch - epatch "${FILESDIR}"/splashutils-1.5.4.3-libpng15_compat.patch - epatch "${FILESDIR}"/splashutils-1.5.4.3-daemon-exit-signal.patch - epatch "${FILESDIR}"/splashutils-1.5.4.3-splash-functions.patch - epatch "${FILESDIR}"/splashutils-1.5.4.3-splash_util.patch - - cd "${SG}" - if has_version ">=sys-apps/openrc-0.4.0"; then - epatch "${FILESDIR}"/splashutils-openrc-0.4-fix.patch - if has_version ">=sys-apps/openrc-0.4.3"; then - epatch "${FILESDIR}"/splashutils-openrc-0.4.3-runlevel-fix.patch - fi - fi - epatch "${FILESDIR}"/splashutils-1.5.4.3-fix_rc_var.patch - epatch "${FILESDIR}"/splashutils-1.5.4.3-openrc-umount-fix.patch - epatch "${FILESDIR}"/splashutils-1.5.4.3-nondefault-runlevel.patch - epatch "${FILESDIR}"/splashutils-1.5.4.3-openrc-effects.patch - epatch "${FILESDIR}"/initrd.splash-cmp-str-instead-of-int.patch - cd ${SM} - epatch "${FILESDIR}"/splashutils-1.5.4.4-freetype-bz2.patch - cd "${S}" - - # Latest version of klibc defined its own version of ferror, so there is - # not need for the hack in klibc_compat.h - if has_version ">=dev-libs/klibc-1.5.20"; then - echo > "libs/klibc_compat.h" - fi - - rm -f m4/* - eautoreconf -} - -src_configure() { - tc-export CC - cd "${SM}" - emake CC="${CC}" LIB=$(get_libdir) STRIP=true || die "failed to build miscsplashutils" - - cd "${S}" - econf \ - $(use_with png) \ - $(use_with mng) \ - $(use_with gpm) \ - $(use_with truetype ttf) \ - $(use_with truetype ttf-kernel) \ - $(use_enable fbcondecor) \ - --docdir=/usr/share/doc/${PF} \ - --with-freetype2-src=${FT2SRC} \ - --with-jpeg-src=${JPEGSRC} \ - --with-lpng-src=${LPNGSRC} \ - --with-zlib-src=${ZLIBSRC} \ - --with-essential-libdir=/$(get_libdir) || die "failed to configure splashutils" -} - -src_compile() { - emake CC="${CC}" STRIP="true" || die "failed to build splashutils" - - if has_version ">=sys-apps/baselayout-1.13.99"; then - cd "${SG}" - emake LIB=$(get_libdir) || die "failed to build the splash plugin" - fi -} - -src_install() { - local LIB=$(get_libdir) - - cd "${SM}" - make DESTDIR="${D}" LIB=${LIB} install || die - - cd "${S}" - make DESTDIR="${D}" STRIP="true" install || die - - mv "${D}"/usr/${LIB}/libfbsplash.so* "${D}"/${LIB}/ - gen_usr_ldscript libfbsplash.so - - echo 'CONFIG_PROTECT_MASK="/etc/splash"' > 99splash - doenvd 99splash - - if use fbcondecor ; then - newinitd "${SG}"/init-fbcondecor fbcondecor - newconfd "${SG}"/fbcondecor.conf fbcondecor - fi - newconfd "${SG}"/splash.conf splash - - insinto /usr/share/${PN} - doins "${SG}"/initrd.splash - - insinto /etc/splash - doins "${SM}"/fbtruetype/luxisri.ttf - - if has_version ">=sys-apps/baselayout-1.13.99"; then - cd "${SG}" - make DESTDIR="${D}" LIB=${LIB} install || die "failed to install the splash plugin" - else - cp "${SG}"/splash-functions-bl1.sh "${D}"/sbin/ - fi - - sed -i -e "s#/lib/splash#/${LIB}/splash#" "${D}"/sbin/splash-functions.sh - keepdir /${LIB}/splash/{tmp,cache,bin} - dosym /${LIB}/splash/bin/fbres /sbin/fbres -} - -pkg_preinst() { - has_version "<${CATEGORY}/${PN}-1.0" - previous_less_than_1_0=$? - - has_version "<${CATEGORY}/${PN}-1.5.3" - previous_less_than_1_5_3=$? -} - -pkg_postinst() { - if has_version sys-fs/devfsd || ! has_version virtual/udev ; then - elog "This package has been designed with udev in mind. Other solutions, such as" - elog "devfs or a static /dev tree might work, but are generally discouraged and" - elog "not supported. If you decide to switch to udev, you might want to have a" - elog "look at 'The Gentoo udev Guide', which can be found at" - elog " http://www.gentoo.org/doc/en/udev-guide.xml" - elog "" - fi - - if [[ $previous_less_than_1_0 = 0 ]] ; then - elog "Since you are upgrading from a pre-1.0 version, please make sure that you" - elog "rebuild your initrds. You can use the splash_geninitramfs script to do that." - elog "" - fi - - if [[ $previous_less_than_1_5_3 = 0 ]] && ! use fbcondecor ; then - elog "Starting with splashutils-1.5.3, support for the fbcondecor kernel patch" - elog "is optional and dependent on the the 'fbcondecor' USE flag. If you wish" - elog "to use fbcondecor, run:" - elog " echo \"media-gfx/splashutils fbcondecor\" >> /etc/portage/package.use" - elog "and re-emerge splashutils." - fi - - if ! test -f /proc/cmdline || - ! egrep -q '(console=tty1|CONSOLE=/dev/tty1)' /proc/cmdline ; then - elog "It is required that you add 'console=tty1' to your kernel" - elog "command line parameters." - elog "" - elog "After these modifications, the relevant part of the kernel command" - elog "line might look like:" - elog " splash=silent,fadein,theme:emergence console=tty1" - elog "" - fi - - if ! has_version 'media-gfx/splash-themes-livecd' && - ! has_version 'media-gfx/splash-themes-gentoo'; then - elog "The sample Gentoo themes (emergence, gentoo) have been removed from the" - elog "core splashutils package. To get some themes you might want to emerge:" - elog " media-gfx/splash-themes-livecd" - elog " media-gfx/splash-themes-gentoo" - fi - - elog "Please note that the 'fbsplash' kernel patch has now been renamed to" - elog "'fbcondecor'. Accordingly, the old 'splash' initscript is now called" - elog "'fbcondecor'. Make sure you update your system. See:" - elog " http://dev.gentoo.org/~spock/projects/fbcondecor/#history" - elog "for further info about the name changes." - elog "" - elog "Also note that splash_util has now been split into splash_util, fbsplashd" - elog "and fbcondecor_ctl." -} diff --git a/media-gfx/splashutils/splashutils-1.5.4.4.ebuild b/media-gfx/splashutils/splashutils-1.5.4.4.ebuild deleted file mode 100644 index 1cfb27a2080a..000000000000 --- a/media-gfx/splashutils/splashutils-1.5.4.4.ebuild +++ /dev/null @@ -1,237 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.4.ebuild,v 1.10 2012/12/11 14:50:49 axs Exp $ - -EAPI="2" - -inherit autotools eutils multilib toolchain-funcs - -MISCSPLASH="miscsplashutils-0.1.8" -GENTOOSPLASH="splashutils-gentoo-1.0.17" -V_JPEG="8a" -V_PNG="1.4.3" -V_ZLIB="1.2.3" -V_FT="2.3.12" - -ZLIBSRC="libs/zlib-${V_ZLIB}" -LPNGSRC="libs/libpng-${V_PNG}" -JPEGSRC="libs/jpeg-${V_JPEG}" -FT2SRC="libs/freetype-${V_FT}" - -RESTRICT="test" -IUSE="hardened +png +truetype +mng gpm fbcondecor" - -DESCRIPTION="Framebuffer splash utilities." -HOMEPAGE="http://fbsplash.berlios.de" -SRC_URI="mirror://berlios/fbsplash/${PN}-lite-${PV}.tar.bz2 - mirror://berlios/fbsplash/${GENTOOSPLASH}.tar.bz2 - mirror://gentoo/${MISCSPLASH}.tar.bz2 - mirror://sourceforge/libpng/libpng-${V_PNG}.tar.bz2 - ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v${V_JPEG}.tar.gz - mirror://sourceforge/freetype/freetype-${V_FT}.tar.bz2 - http://www.gzip.org/zlib/zlib-${V_ZLIB}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -RDEPEND="gpm? ( sys-libs/gpm ) - truetype? ( >=media-libs/freetype-2[static-libs] - || ( =media-libs/libpng-1.4.3[static-libs] ) - mng? ( - media-libs/lcms:0[static-libs] - || ( media-libs/libmng[static-libs] =sys-apps/baselayout-1.9.4-r5 - app-arch/cpio - media-gfx/fbgrab - !sys-apps/lcdsplash" -DEPEND="${RDEPEND} - >=dev-libs/klibc-1.5 - virtual/pkgconfig" - -S="${WORKDIR}/${P/_/-}" -SG="${WORKDIR}/${GENTOOSPLASH}" -SM="${WORKDIR}/${MISCSPLASH}" - -pkg_setup() { - if use hardened; then - ewarn "Due to problems with klibc, it is currently impossible to compile splashutils" - ewarn "with 'hardened' GCC flags. As a workaround, the package will be compiled with" - ewarn "-fno-stack-protector. Hardened GCC features will not be used while building" - ewarn "the splash kernel helper." - fi -} - -src_prepare() { - mv "${WORKDIR}"/{libpng-${V_PNG},jpeg-${V_JPEG},zlib-${V_ZLIB},freetype-${V_FT}} "${S}/libs" - # We need to delete the Makefile and let it be rebuilt when splashutils - # is being configured. Either that, or we end up with a segfaulting kernel - # helper. - rm "${S}/libs/zlib-${V_ZLIB}/Makefile" - - cd "${SG}" - epatch "${FILESDIR}/splashutils-1.5.4.4-gentoo-typo-fix.patch" - - if use truetype ; then - cd "${SM}" - epatch "${FILESDIR}/splashutils-1.5.4.4-freetype-bz2.patch" - fi - - cd "${S}" - ln -sf "${S}/src" "${WORKDIR}/core" - - if ! tc-is-cross-compiler && \ - has_version "sys-devel/gcc:$(gcc-version)[vanilla]" ; then - ewarn "Your GCC was built with the 'vanilla' flag set. If you can't compile" - ewarn "splashutils, you're on your own, as this configuration is not supported." - else - # This should make splashutils compile on systems with hardened GCC. - sed -e 's@K_CFLAGS =@K_CFLAGS = -fno-stack-protector@' -i "${S}/Makefile.in" - fi - - if ! use truetype ; then - sed -i -e 's/fbtruetype kbd/kbd/' "${SM}/Makefile" - fi - - # Latest version of klibc defined its own version of ferror, so there is - # not need for the hack in klibc_compat.h - if has_version ">=dev-libs/klibc-1.5.20"; then - echo > "libs/klibc_compat.h" - fi - - rm -f m4/* - eautoreconf -} - -src_configure() { - tc-export CC - cd "${SM}" - emake CC="${CC}" LIB=$(get_libdir) STRIP=true || die "failed to build miscsplashutils" - - cd "${S}" - econf \ - $(use_with png) \ - $(use_with mng) \ - $(use_with gpm) \ - $(use_with truetype ttf) \ - $(use_with truetype ttf-kernel) \ - $(use_enable fbcondecor) \ - --docdir=/usr/share/doc/${PF} \ - --with-freetype2-src=${FT2SRC} \ - --with-jpeg-src=${JPEGSRC} \ - --with-lpng-src=${LPNGSRC} \ - --with-zlib-src=${ZLIBSRC} \ - --with-essential-libdir=/$(get_libdir) || die "failed to configure splashutils" -} - -src_compile() { - emake CC="${CC}" STRIP="true" || die "failed to build splashutils" - - if has_version ">=sys-apps/baselayout-1.13.99"; then - cd "${SG}" - emake LIB=$(get_libdir) || die "failed to build the splash plugin" - fi -} - -src_install() { - local LIB=$(get_libdir) - - cd "${SM}" - make DESTDIR="${D}" LIB=${LIB} install || die - - cd "${S}" - make DESTDIR="${D}" STRIP="true" install || die - - mv "${D}"/usr/${LIB}/libfbsplash.so* "${D}"/${LIB}/ - gen_usr_ldscript libfbsplash.so - - echo 'CONFIG_PROTECT_MASK="/etc/splash"' > 99splash - doenvd 99splash - - if use fbcondecor ; then - newinitd "${SG}"/init-fbcondecor fbcondecor - newconfd "${SG}"/fbcondecor.conf fbcondecor - fi - newconfd "${SG}"/splash.conf splash - - insinto /usr/share/${PN} - doins "${SG}"/initrd.splash - - insinto /etc/splash - doins "${SM}"/fbtruetype/luxisri.ttf - - if has_version ">=sys-apps/baselayout-1.13.99"; then - cd "${SG}" - make DESTDIR="${D}" LIB=${LIB} install || die "failed to install the splash plugin" - else - cp "${SG}"/splash-functions-bl1.sh "${D}"/sbin/ - fi - - sed -i -e "s#/lib/splash#/${LIB}/splash#" "${D}"/sbin/splash-functions.sh - keepdir /${LIB}/splash/{tmp,cache,bin,sys} - dosym /${LIB}/splash/bin/fbres /sbin/fbres -} - -pkg_preinst() { - has_version "<${CATEGORY}/${PN}-1.0" - previous_less_than_1_0=$? - - has_version "<${CATEGORY}/${PN}-1.5.3" - previous_less_than_1_5_3=$? -} - -pkg_postinst() { - if has_version sys-fs/devfsd || ! has_version virtual/udev ; then - elog "This package has been designed with udev in mind. Other solutions, such as" - elog "devfs or a static /dev tree might work, but are generally discouraged and" - elog "not supported. If you decide to switch to udev, you might want to have a" - elog "look at 'The Gentoo udev Guide', which can be found at" - elog " http://www.gentoo.org/doc/en/udev-guide.xml" - elog "" - fi - - if [[ $previous_less_than_1_0 = 0 ]] ; then - elog "Since you are upgrading from a pre-1.0 version, please make sure that you" - elog "rebuild your initrds. You can use the splash_geninitramfs script to do that." - elog "" - fi - - if [[ $previous_less_than_1_5_3 = 0 ]] && ! use fbcondecor ; then - elog "Starting with splashutils-1.5.3, support for the fbcondecor kernel patch" - elog "is optional and dependent on the the 'fbcondecor' USE flag. If you wish" - elog "to use fbcondecor, run:" - elog " echo \"media-gfx/splashutils fbcondecor\" >> /etc/portage/package.use" - elog "and re-emerge splashutils." - fi - - if ! test -f /proc/cmdline || - ! egrep -q '(console=tty1|CONSOLE=/dev/tty1)' /proc/cmdline ; then - elog "It is required that you add 'console=tty1' to your kernel" - elog "command line parameters." - elog "" - elog "After these modifications, the relevant part of the kernel command" - elog "line might look like:" - elog " splash=silent,fadein,theme:emergence console=tty1" - elog "" - fi - - if ! has_version 'media-gfx/splash-themes-livecd' && - ! has_version 'media-gfx/splash-themes-gentoo'; then - elog "The sample Gentoo themes (emergence, gentoo) have been removed from the" - elog "core splashutils package. To get some themes you might want to emerge:" - elog " media-gfx/splash-themes-livecd" - elog " media-gfx/splash-themes-gentoo" - fi - - elog "Please note that the 'fbsplash' kernel patch has now been renamed to" - elog "'fbcondecor'. Accordingly, the old 'splash' initscript is now called" - elog "'fbcondecor'. Make sure you update your system. See:" - elog " http://dev.gentoo.org/~spock/projects/fbcondecor/#history" - elog "for further info about the name changes." - elog "" - elog "Also note that splash_util has now been split into splash_util, fbsplashd" - elog "and fbcondecor_ctl." -} diff --git a/media-libs/adplug/Manifest b/media-libs/adplug/Manifest index 739425bc8411..12ee3929ad16 100644 --- a/media-libs/adplug/Manifest +++ b/media-libs/adplug/Manifest @@ -1,3 +1,3 @@ -DIST adplug-2.1.tar.bz2 730686 RMD160 8788c174507fe39d3415f36e1ac60df6b84c889f SHA1 49dd798467f194ece1863f18019912f8089cb9df SHA256 61666725189bc39898c74e81e5da6d88d83f5019979babf5d91798d82bfc93de -DIST adplug-2.2.1.tar.bz2 810257 RMD160 20a08162069e7cc232df780585fc1f7d65aecfbb SHA1 5023282ff44f183c9b6d7da9f57f51595742a5f7 SHA256 f95a015268a0dfe9ff5782f3ea7b2a69e09b8d36ccd19ebf4d979d767b6e53ef -DIST adplug-2.2.tar.bz2 801250 RMD160 6c2d09c8b826e4d991e3d31e25d0cac6f61ba164 SHA1 6a5752da7515a72cdebbedea273e837f1a48c55b SHA256 9a4864df84c25b2ea86e6c1535792a8dced05218e1308763a6ef35b979bd292f +DIST adplug-2.1.tar.bz2 730686 SHA256 61666725189bc39898c74e81e5da6d88d83f5019979babf5d91798d82bfc93de +DIST adplug-2.2.1.tar.bz2 810257 SHA256 f95a015268a0dfe9ff5782f3ea7b2a69e09b8d36ccd19ebf4d979d767b6e53ef +DIST adplug-2.2.tar.bz2 801250 SHA256 9a4864df84c25b2ea86e6c1535792a8dced05218e1308763a6ef35b979bd292f diff --git a/media-libs/adplug/metadata.xml b/media-libs/adplug/metadata.xml index 886c68866479..e1774e3d9ad7 100644 --- a/media-libs/adplug/metadata.xml +++ b/media-libs/adplug/metadata.xml @@ -2,7 +2,4 @@ sound - - spock@gentoo.org - diff --git a/media-libs/cogl/Manifest b/media-libs/cogl/Manifest index a67a02ed7efe..a710067177d3 100644 --- a/media-libs/cogl/Manifest +++ b/media-libs/cogl/Manifest @@ -1,4 +1,3 @@ DIST cogl-1.10.4.tar.xz 1253708 SHA256 0b5c9989f1d07dbda000a68640eb7ebf734513d52e3707668c41eed19991adf9 SHA512 bbff0ae9731a12b5f9e493c7dacb8d02fe3289c30c4895fe277959b3e3155095b003b03e7c46a74ed0152916758484e3c305c599e73ceb81fd912ba491dda0ae WHIRLPOOL 65c11ee6eda657add0e0d5068cf8c055202901cb8bb19055d1f7bbe72c54373c3bed83ee3fb84edf6e0a37618d7517f3a38c3e521003c638e9850b09bdc39e82 -DIST cogl-1.12.0.tar.xz 1295520 SHA256 4e7b5abbf0a1e51d74618db1b513551e7c71b486e17e98373f4db93e7710e2f2 SHA512 fa776f1cd15a5d9803d29ced8f9ed3103f0838db7351a37832eb0697d728806f2a40187d7b850674e586adf8dd5da783c985968503c200bec34cff43897544bc WHIRLPOOL 5b466cd649cdd75b7246e94c8664e732f65b4260332ac3a5aae608c8965354bf15369e5727505200a1fc46a3e1266b56449fb8b0045cee8e72153eee508cfee3 DIST cogl-1.12.2.tar.xz 1301108 SHA256 31971d4c6543c589f6fc49ab1724dfbdc7062c58a7da842cb1935e32ca6e1d7e SHA512 5bf43434814be4d7beae9dedc0d2d8bc31c174a82386f581d705e2586da93cea930b5b66bb707036a8ed7b49147af003ab7dda125e86098fe3433e9418001b2d WHIRLPOOL f2c6e768f874c06e95c352fa23a3b7d8bacf3a0e05466cc508e690adfc97b9dc1c627f494078a76b883428d1b8b58cd5930be49385ad4c3867843bfe6a0e4b46 DIST cogl-1.8.2.tar.xz 1029304 SHA256 ec26fd90c4ba5643875b5f3a04b4ab14b24f0d618ba3d239d61e773c3e3ca8c7 SHA512 a09ee70d4baeac09382ef275394c475ff49d1a690bad6697e55a1de1de1777195becd479acac9ce347fd870c367c55e4376c90248e00e55396dafe258e60b402 WHIRLPOOL a8b90ea38526e5d1efb49d07c578c28789f304c85b73d4495d964301cf497fed143561852df602c422d1752dc6ef7220f924dc62554e1d69edb2e465a1286e65 diff --git a/media-libs/cogl/cogl-1.12.0-r1.ebuild b/media-libs/cogl/cogl-1.12.0-r1.ebuild deleted file mode 100644 index 779d775e8b41..000000000000 --- a/media-libs/cogl/cogl-1.12.0-r1.ebuild +++ /dev/null @@ -1,103 +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/cogl/cogl-1.12.0-r1.ebuild,v 1.4 2013/01/13 16:16:47 eva Exp $ - -EAPI="5" -CLUTTER_LA_PUNT="yes" - -# Inherit gnome2 after clutter to download sources from gnome.org -inherit eutils clutter gnome2 multilib virtualx - -DESCRIPTION="A library for using 3D graphics hardware to draw pretty pictures" -HOMEPAGE="http://www.clutter-project.org/" - -LICENSE="LGPL-2.1+ FDL-1.1+" -SLOT="1.0/11" -IUSE="doc examples +introspection +opengl gles2 +pango" -KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" - -# XXX: need uprof for optional profiling support -COMMON_DEPEND=">=dev-libs/glib-2.28.0:2 - x11-libs/cairo:= - >=x11-libs/gdk-pixbuf-2:2 - x11-libs/libdrm:= - x11-libs/libX11 - >=x11-libs/libXcomposite-0.4 - x11-libs/libXdamage - x11-libs/libXext - >=x11-libs/libXfixes-3 - virtual/glu - virtual/opengl - gles2? ( media-libs/mesa[gles2] ) - - introspection? ( >=dev-libs/gobject-introspection-1.34.2 ) - pango? ( >=x11-libs/pango-1.20.0[introspection?] )" -# before clutter-1.7, cogl was part of clutter -RDEPEND="${COMMON_DEPEND} - !gstreamer Enable pango GStreamer plugin + Enable integer based vorbis decoder. diff --git a/media-libs/openal/Manifest b/media-libs/openal/Manifest index 79bed41fa751..59c9abaccb31 100644 --- a/media-libs/openal/Manifest +++ b/media-libs/openal/Manifest @@ -1,4 +1 @@ -DIST openal-soft-1.13.tar.bz2 113770 SHA256 dc735b8b2ab21f6ec54b4262f150a7e0527ae42aa975a1965b9342df1520443c SHA512 8820f03888e36614345806440ae74ba4d40faa6e93545cd9e67440334a89f3b5d1c280695f4eac14fcc0257affe3d6fed53f186d1a02ac20f56a7e0bfa8bb723 WHIRLPOOL 99f0821542d640a173f23e06500af037dd696a5a1f0732dea2d4f125fac06aaf6bcec30ba3fa5371a8b716b1db30e830b601b2e6b80e7500bd2ce7b1b94ce109 -DIST openal-soft-1.14.tar.bz2 221579 SHA256 87bd8d61d5943387898c92b6a2bbbb26118e745dec57550c817526a70fad0914 SHA512 58ce4d1281aba790790e5cb88d4ff016ca5d053f8f78f68ca8ab3af59b69c74d473bd65f9ed1053351df40c6d2d909076a41a8be88c23927f37f9617d3c30f94 WHIRLPOOL 7fd8e6956d0f825cbf650329b5a5a0244d98052e55917d6f3377848f1b0b7e13457ee4f37139a5e684fbf05ab3246f273992ed833f52769c1ca768d54a0571e1 DIST openal-soft-1.15.1.tar.bz2 253006 SHA256 0e29a162f0841ccb4135ce76e92e8a704589b680a85eddf76f898de5236eb056 SHA512 ca6dafdd503d06892dff08763bc00b974ec6e7c4bf3dcebb4cb41a486b4ea777c278299a198db182fee888a19a5716bd57d91a2859b764a532138a79f2bd672f WHIRLPOOL a47fcf4cc5da9576cb4683371979175111a1ec746c87ea1140bfb1b71433a3fe5d3df338e8844ab62adc0e6decb4b481d6d8fedb6f635b5bac715d5789077902 -DIST openal-soft-1.15.tar.bz2 251957 SHA256 bf58ecaf178339e86db00403b6d5c6408c9a3dfd3a077b43ac5432c52b63702d SHA512 6d8303096087252e55cce1ff43b0ad4b06da1a1ce2a71e6717a1ea26579c3682a14a1af8f50c7fd8b49a65b7a479e7c2359b9c0981b6ee2283cd5ee22fa2ffe8 WHIRLPOOL 49ea1281343ad33e0c2be67ce8c3db35c6f9feffba4b03dc679211847524082b432a6578fc1f0205022c6154b7a3c7648ac6533150e2adaf96b0c66bad77d007 diff --git a/media-libs/openal/openal-1.13.ebuild b/media-libs/openal/openal-1.13.ebuild deleted file mode 100644 index e5cf6d9d7a6b..000000000000 --- a/media-libs/openal/openal-1.13.ebuild +++ /dev/null @@ -1,37 +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/openal/openal-1.13.ebuild,v 1.8 2012/05/15 13:52:18 aballier Exp $ - -EAPI=3 -inherit cmake-utils - -MY_P=${PN}-soft-${PV} - -DESCRIPTION="A software implementation of the OpenAL 3D audio API" -HOMEPAGE="http://kcat.strangesoft.net/openal.html" -SRC_URI="http://kcat.strangesoft.net/openal-releases/${MY_P}.tar.bz2" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux" -IUSE="alsa debug oss portaudio pulseaudio" - -RDEPEND="alsa? ( media-libs/alsa-lib ) - portaudio? ( >=media-libs/portaudio-19_pre ) - pulseaudio? ( media-sound/pulseaudio )" -DEPEND="${RDEPEND}" - -S=${WORKDIR}/${MY_P} - -DOCS="alsoftrc.sample" - -src_configure() { - mycmakeargs=( - $(cmake-utils_use alsa ALSA) - $(cmake-utils_use oss OSS) - $(cmake-utils_use portaudio PORTAUDIO) - $(cmake-utils_use pulseaudio PULSEAUDIO) - ) - - cmake-utils_src_configure -} diff --git a/media-libs/openal/openal-1.14.ebuild b/media-libs/openal/openal-1.14.ebuild deleted file mode 100644 index 6d22de73f546..000000000000 --- a/media-libs/openal/openal-1.14.ebuild +++ /dev/null @@ -1,41 +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/openal/openal-1.14.ebuild,v 1.4 2013/01/02 11:26:46 jer Exp $ - -EAPI=3 -inherit cmake-utils - -MY_P=${PN}-soft-${PV} - -DESCRIPTION="A software implementation of the OpenAL 3D audio API" -HOMEPAGE="http://kcat.strangesoft.net/openal.html" -SRC_URI="http://kcat.strangesoft.net/openal-releases/${MY_P}.tar.bz2" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm -hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux" -IUSE="alsa alstream coreaudio debug oss portaudio pulseaudio" - -RDEPEND="alsa? ( media-libs/alsa-lib ) - alstream? ( virtual/ffmpeg ) - portaudio? ( >=media-libs/portaudio-19_pre ) - pulseaudio? ( media-sound/pulseaudio )" -DEPEND="${RDEPEND} - oss? ( virtual/os-headers )" - -S=${WORKDIR}/${MY_P} - -DOCS="alsoftrc.sample env-vars.txt hrtf.txt README" - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use alstream EXAMPLES) - $(cmake-utils_use alsa) - $(cmake-utils_use coreaudio) - $(cmake-utils_use oss) - $(cmake-utils_use portaudio) - $(cmake-utils_use pulseaudio) - ) - - cmake-utils_src_configure -} diff --git a/media-libs/openal/openal-1.15.1.ebuild b/media-libs/openal/openal-1.15.1.ebuild index 814c9c9076f2..10ecfe8d7b1c 100644 --- a/media-libs/openal/openal-1.15.1.ebuild +++ b/media-libs/openal/openal-1.15.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/openal/openal-1.15.1.ebuild,v 1.9 2013/01/06 10:17:05 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/openal/openal-1.15.1.ebuild,v 1.10 2013/01/20 10:23:43 ago Exp $ EAPI=5 inherit cmake-utils @@ -13,7 +13,7 @@ SRC_URI="http://kcat.strangesoft.net/openal-releases/${MY_P}.tar.bz2" LICENSE="LGPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux" IUSE="alsa alstream coreaudio debug neon oss portaudio pulseaudio sse" RDEPEND="alsa? ( media-libs/alsa-lib ) diff --git a/media-libs/openal/openal-1.15.ebuild b/media-libs/openal/openal-1.15.ebuild deleted file mode 100644 index edfd2b82f3db..000000000000 --- a/media-libs/openal/openal-1.15.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/media-libs/openal/openal-1.15.ebuild,v 1.1 2012/12/10 09:27:25 ssuominen Exp $ - -EAPI=5 -inherit cmake-utils - -MY_P=${PN}-soft-${PV} - -DESCRIPTION="A software implementation of the OpenAL 3D audio API" -HOMEPAGE="http://kcat.strangesoft.net/openal.html" -SRC_URI="http://kcat.strangesoft.net/openal-releases/${MY_P}.tar.bz2" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux" -IUSE="alsa alstream coreaudio debug neon oss portaudio pulseaudio sse" - -RDEPEND="alsa? ( media-libs/alsa-lib ) - alstream? ( virtual/ffmpeg ) - portaudio? ( >=media-libs/portaudio-19_pre ) - pulseaudio? ( media-sound/pulseaudio )" -DEPEND="${RDEPEND} - oss? ( virtual/os-headers )" - -S=${WORKDIR}/${MY_P} - -DOCS="alsoftrc.sample env-vars.txt hrtf.txt README" - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use alsa) - $(cmake-utils_use coreaudio) - $(cmake-utils_use alstream EXAMPLES) - $(cmake-utils_use neon) - $(cmake-utils_use oss) - $(cmake-utils_use portaudio) - $(cmake-utils_use pulseaudio) - $(cmake-utils_use sse) - ) - - cmake-utils_src_configure -} diff --git a/media-libs/sdl-gfx/sdl-gfx-2.0.24.ebuild b/media-libs/sdl-gfx/sdl-gfx-2.0.24.ebuild index 697b7a5303da..47439eb1a62b 100644 --- a/media-libs/sdl-gfx/sdl-gfx-2.0.24.ebuild +++ b/media-libs/sdl-gfx/sdl-gfx-2.0.24.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/sdl-gfx/sdl-gfx-2.0.24.ebuild,v 1.6 2013/01/15 15:59:12 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-gfx/sdl-gfx-2.0.24.ebuild,v 1.7 2013/01/20 10:24:30 ago Exp $ EAPI=2 inherit autotools eutils @@ -12,7 +12,7 @@ SRC_URI="http://www.ferzkopp.net/Software/SDL_gfx-2.0/${MY_P}.tar.gz" LICENSE="ZLIB" SLOT="0" -KEYWORDS="~alpha amd64 hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" +KEYWORDS="alpha amd64 hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" IUSE="doc mmx static-libs" DEPEND="media-libs/libsdl[video]" diff --git a/media-sound/adplay/Manifest b/media-sound/adplay/Manifest index 16857f6c42e3..a3548c3769d6 100644 --- a/media-sound/adplay/Manifest +++ b/media-sound/adplay/Manifest @@ -1 +1 @@ -DIST adplay-1.7.tar.bz2 264340 RMD160 9e4f954e9d2783e5bde8d28380b7637fd0dd35af SHA1 0076527c7714198de18d209255b2b64450017980 SHA256 2c62cf763de301a05d446655380465743c5b81fb027d9791996e5eac5bf6fdc6 +DIST adplay-1.7.tar.bz2 264340 SHA256 2c62cf763de301a05d446655380465743c5b81fb027d9791996e5eac5bf6fdc6 diff --git a/media-sound/adplay/metadata.xml b/media-sound/adplay/metadata.xml index 886c68866479..e1774e3d9ad7 100644 --- a/media-sound/adplay/metadata.xml +++ b/media-sound/adplay/metadata.xml @@ -2,7 +2,4 @@ sound - - spock@gentoo.org - diff --git a/media-sound/aqualung/aqualung-0.9_beta11-r1.ebuild b/media-sound/aqualung/aqualung-0.9_beta11-r1.ebuild index ad991b0012f3..8b994bf42a07 100644 --- a/media-sound/aqualung/aqualung-0.9_beta11-r1.ebuild +++ b/media-sound/aqualung/aqualung-0.9_beta11-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-sound/aqualung/aqualung-0.9_beta11-r1.ebuild,v 1.12 2013/01/17 21:16:54 billie Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/aqualung/aqualung-0.9_beta11-r1.ebuild,v 1.13 2013/01/20 10:05:03 billie Exp $ EAPI=4 @@ -20,7 +20,7 @@ IUSE="alsa cdda cddb debug flac ffmpeg ifp jack ladspa lame libsamplerate lua KEYWORDS="amd64 x86" RDEPEND="alsa? ( media-libs/alsa-lib ) - cdda? ( || ( dev-libs/libcdio-paranoia =virtual/ffmpeg-0.6.90 ) @@ -57,12 +57,6 @@ src_prepare() { -e '/BUILD_CFLAGS/s:-O2::' \ -e '/BUILD_CFLAGS/s: -ggdb -g -O0::' \ configure.ac || die - if has_version dev-libs/libcdio-paranoia; then - sed -i \ - -e 's:cdio/cdda.h:cdio/paranoia/cdda.h:' \ - -e 's:cdio/paranoia.h:cdio/paranoia/paranoia.h:' \ - src/*.{c,h} src/decoder/dec_cdda.h || die - fi eautoreconf } diff --git a/media-sound/aqualung/aqualung-0.9_beta11-r2.ebuild b/media-sound/aqualung/aqualung-0.9_beta11-r2.ebuild index 660465914ee0..a4fe99b2d944 100644 --- a/media-sound/aqualung/aqualung-0.9_beta11-r2.ebuild +++ b/media-sound/aqualung/aqualung-0.9_beta11-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/media-sound/aqualung/aqualung-0.9_beta11-r2.ebuild,v 1.1 2013/01/17 21:16:54 billie Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/aqualung/aqualung-0.9_beta11-r2.ebuild,v 1.2 2013/01/20 10:05:03 billie Exp $ EAPI=5 @@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/aqualung/${PN}-${MY_PV}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="alsa cdda cddb debug flac ffmpeg ifp jack ladspa lame libsamplerate lua +IUSE="alsa cddb debug flac ffmpeg ifp jack ladspa lame libsamplerate lua mac modplug mp3 musepack oss podcast pulseaudio sndfile speex systray vorbis wavpack" RDEPEND="sys-libs/zlib @@ -38,7 +38,6 @@ RDEPEND="sys-libs/zlib wavpack? ( media-sound/wavpack ) ladspa? ( media-libs/liblrdf ) libsamplerate? ( media-libs/libsamplerate ) - cdda? ( || ( dev-libs/libcdio-paranoia Enable support for lyrics fetching - xnoise + shuerhaaken/xnoise diff --git a/media-sound/xnoise/xnoise-0.2.14.ebuild b/media-sound/xnoise/xnoise-0.2.14.ebuild new file mode 100644 index 000000000000..fc7f40fa83b7 --- /dev/null +++ b/media-sound/xnoise/xnoise-0.2.14.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/xnoise/xnoise-0.2.14.ebuild,v 1.1 2013/01/20 10:00:24 angelos Exp $ + +EAPI=4 +inherit fdo-mime gnome2-utils + +DESCRIPTION="A media player for Gtk+ with a slick GUI, great speed and lots of +features" +HOMEPAGE="http://www.xnoise-media-player.com/" +SRC_URI="mirror://bitbucket/shuerhaaken/${PN}/downloads/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+lastfm +lyrics" + +RDEPEND="x11-libs/gtk+:3 + >=dev-libs/glib-2.30:2 + media-libs/gstreamer:0.10 + media-libs/gst-plugins-base:0.10 + dev-db/sqlite:3 + media-libs/taglib + x11-libs/cairo + x11-libs/libX11 + lastfm? ( net-libs/libsoup:2.4 ) + lyrics? ( net-libs/libsoup:2.4 + dev-libs/libxml2:2 )" +DEPEND="${RDEPEND} + dev-util/intltool + virtual/pkgconfig + sys-devel/gettext" + +DOCS=( AUTHORS README ) + +src_configure() { + econf \ + $(use_enable lyrics lyricwiki) \ + $(use_enable lastfm) \ + --enable-mpris \ + --enable-soundmenu2 \ + --enable-mediakeys \ + $(use_enable lyrics chartlyrics) \ + $(use_enable lyrics azlyrics) \ + --disable-ubuntuone \ + --enable-magnatune +} + +src_install() { + default + find "${ED}" -type f -name "*.la" -delete || die + rm -rf "${ED}"/usr/share/${PN}/license || die +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + fdo-mime_desktop_database_update + gnome2_icon_cache_update +} + +pkg_postrm() { + fdo-mime_desktop_database_update + gnome2_icon_cache_update +} diff --git a/media-sound/xnoise/xnoise-9999.ebuild b/media-sound/xnoise/xnoise-9999.ebuild index 235320dced07..7f022cafd87b 100644 --- a/media-sound/xnoise/xnoise-9999.ebuild +++ b/media-sound/xnoise/xnoise-9999.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/xnoise/xnoise-9999.ebuild,v 1.11 2012/08/16 19:08:27 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/xnoise/xnoise-9999.ebuild,v 1.12 2013/01/20 10:00:24 angelos Exp $ EAPI=4 inherit fdo-mime gnome2-utils git-2 @@ -8,12 +8,12 @@ inherit fdo-mime gnome2-utils git-2 DESCRIPTION="A media player for Gtk+ with a slick GUI, great speed and lots of features" HOMEPAGE="http://www.xnoise-media-player.com/" -EGIT_REPO_URI="git://github.com/shuerhaaken/${PN}.git" +EGIT_REPO_URI="https://bitbucket.org/shuerhaaken/${PN}.git" LICENSE="GPL-2" SLOT="0" KEYWORDS="" -IUSE="+lastfm libnotify +lyrics" +IUSE="+lastfm +lyrics" RDEPEND="x11-libs/gtk+:3 >=dev-libs/glib-2.30:2 @@ -24,11 +24,10 @@ RDEPEND="x11-libs/gtk+:3 x11-libs/cairo x11-libs/libX11 lastfm? ( net-libs/libsoup:2.4 ) - libnotify? ( x11-libs/libnotify ) lyrics? ( net-libs/libsoup:2.4 dev-libs/libxml2:2 )" DEPEND="${RDEPEND} - dev-lang/vala:0.16 + dev-lang/vala:0.18 dev-util/intltool virtual/pkgconfig gnome-base/gnome-common:3 @@ -42,17 +41,17 @@ src_prepare() { } src_configure() { - VALAC=$(type -p valac-0.16) \ + VALAC=$(type -p valac-0.18) \ econf \ $(use_enable lyrics lyricwiki) \ $(use_enable lastfm) \ - $(use_enable libnotify notifications) \ --enable-mpris \ --enable-soundmenu2 \ --enable-mediakeys \ $(use_enable lyrics chartlyrics) \ $(use_enable lyrics azlyrics) \ - --disable-ubuntuone + --disable-ubuntuone \ + --enable-magnatune } src_install() { diff --git a/media-video/libav/libav-0.8.5.ebuild b/media-video/libav/libav-0.8.5.ebuild index a03689aa5f89..2c1d02e7e463 100644 --- a/media-video/libav/libav-0.8.5.ebuild +++ b/media-video/libav/libav-0.8.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-video/libav/libav-0.8.5.ebuild,v 1.8 2013/01/17 11:29:34 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/libav/libav-0.8.5.ebuild,v 1.10 2013/01/20 17:18:18 ago Exp $ EAPI=5 @@ -27,7 +27,7 @@ SRC_URI+=" test? ( http://dev.gentoo.org/~lu_zero/libav/fate-0.8.2.tar.xz )" LICENSE="LGPL-2.1 gpl? ( GPL-3 )" SLOT="0/0.8" [[ ${PV} == *9999 ]] || \ -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="+3dnow +3dnowext aac alsa altivec amr bindist +bzip2 cdio cpudetection custom-cflags debug dirac doc +encode faac truetype frei0r +gpl gsm +hardcoded-tables ieee1394 jack jpeg2k +mmx +mmxext mp3 network openssl diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index 64b53acdf22b..0a810f9aad9f 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Sat, 19 Jan 2013 17:36:52 +0000 +Sun, 20 Jan 2013 17:36:54 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index 64b53acdf22b..0a810f9aad9f 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Sat, 19 Jan 2013 17:36:52 +0000 +Sun, 20 Jan 2013 17:36:54 +0000 diff --git a/metadata/herds.xml b/metadata/herds.xml index e6dc441aa5f6..6fdbe7db1851 100644 --- a/metadata/herds.xml +++ b/metadata/herds.xml @@ -20,7 +20,7 @@ always a description without a lang attribute. Also there are no overlapping descriptions allowed (multiple description tags with the same language) - $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.984 2013/01/06 17:32:07 antarus Exp $ + $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.987 2013/01/20 12:57:32 kensington Exp $ --> @@ -760,10 +760,6 @@ jsbronder@gentoo.org Justin Bronder - - spock@gentoo.org - Michał Januszewski - grozin@gentoo.org Andrey Grozin @@ -898,10 +894,6 @@ bicatali@gentoo.org Sébastien Fabbro - - spock@gentoo.org - Michał Januszewski - xarthisius@gentoo.org Kacper Kowalik @@ -1365,10 +1357,6 @@ gregkh@gentoo.org Greg Kroah-Hartman - - spock@gentoo.org - Michal Januszewski - chainsaw@gentoo.org Tony Vroon @@ -1857,10 +1845,6 @@ net-irc net-irc@gentoo.org IRC and related ebuilds - - swegener@gentoo.org - Sven Wegener - gurligebis@gentoo.org Bjarke Istrup Pedersen @@ -1901,10 +1885,6 @@ shell-tools shell-tools@gentoo.org Tools used from within a shell environment - - swegener@gentoo.org - Sven Wegener - darkside@gentoo.org @@ -2029,8 +2009,8 @@ net-news@gentoo.org Herd for NNTP related packages in net-news - swegener@gentoo.org - Sven Wegener + kensington@gentoo.org + Michael Palimaka diff --git a/metadata/md5-cache/app-admin/glance-2012.2.1 b/metadata/md5-cache/app-admin/glance-2012.2.1 new file mode 100644 index 000000000000..6d2bc0960b92 --- /dev/null +++ b/metadata/md5-cache/app-admin/glance-2012.2.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_7?,-python_single_target_python2_7(-)] dev-python/python-exec[python_targets_python2_7?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) +DESCRIPTION=Provides services for discovering, registering, and retrieving virtual machine images with Openstack +EAPI=5 +HOMEPAGE=https://launchpad.net/glance +IUSE=ldap mysql postgres +sqlite +swift 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/boto-2.1.1 dev-python/anyjson[python_targets_python2_7?,-python_single_target_python2_7(-)] dev-python/eventlet dev-python/greenlet 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 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 dev-python/pastedeploy dev-python/pycrypto dev-python/python-glanceclient[python_targets_python2_7?,-python_single_target_python2_7(-)] dev-python/routes >=dev-python/sqlalchemy-migrate-0.7 >=dev-python/webob-1.0.8 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/boto-2.1.1 dev-python/anyjson[python_targets_python2_7?,-python_single_target_python2_7(-)] dev-python/eventlet dev-python/greenlet 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 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 dev-python/pastedeploy dev-python/pycrypto dev-python/python-glanceclient[python_targets_python2_7?,-python_single_target_python2_7(-)] dev-python/routes >=dev-python/sqlalchemy-migrate-0.7 >=dev-python/webob-1.0.8 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(-)] =sys-libs/db-4.5 >=sys-libs/zlib-1.2.3-r1 >=app-arch/bzip2-1.0.1 >=dev-libs/popt-1.7 >=app-crypt/gnupg-1.2 dev-libs/elfutils virtual/libintl >=dev-lang/perl-5.8.8 dev-libs/nss python? ( >=dev-lang/python-2.3 ) nls? ( virtual/libintl ) lua? ( >=dev-lang/lua-5.1.0[deprecated] ) acl? ( virtual/acl ) caps? ( >=sys-libs/libcap-2.0 ) selinux? ( sec-policy/selinux-rpm ) dev-lang/perl[-build] =dev-lang/python-2* SLOT=0 SRC_URI=http://rpm.org/releases/rpm-4.10.x/rpm-4.10.2.tar.bz2 _eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 python e5b3412fa9f03670a666c8a137bd1060 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=425b5b33a438308a026d126a11905928 +_md5_=e8d7277f1b8cc8ed7b1d98ddc539c37b diff --git a/metadata/md5-cache/app-backup/snapback2-1.1.0 b/metadata/md5-cache/app-backup/snapback2-1.1.0 new file mode 100644 index 000000000000..80fe63de54eb --- /dev/null +++ b/metadata/md5-cache/app-backup/snapback2-1.1.0 @@ -0,0 +1,10 @@ +DEFINED_PHASES=compile install postinst postrm preinst prerm setup test unpack +DESCRIPTION=Routines for support of rsync-based snapshot backup +HOMEPAGE=http://search.cpan.org/dist/Snapback2/ +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) +RDEPEND=dev-perl/Config-ApacheFormat +SLOT=0 +SRC_URI=mirror://cpan/authors/id/M/MI/MIKEH/Snapback2-1.001.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=5113cd8ebddb2351543bc7560317c74f diff --git a/metadata/md5-cache/app-crypt/gnupg-1.4.13-r1 b/metadata/md5-cache/app-crypt/gnupg-1.4.13-r1 new file mode 100644 index 000000000000..c2b518e63830 --- /dev/null +++ b/metadata/md5-cache/app-crypt/gnupg-1.4.13-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install postinst prepare +DEPEND=ldap? ( net-nds/openldap ) bzip2? ( app-arch/bzip2 ) zlib? ( sys-libs/zlib ) curl? ( net-misc/curl ) mta? ( virtual/mta ) readline? ( sys-libs/readline ) smartcard? ( =virtual/libusb-0* ) usb? ( =virtual/libusb-0* ) dev-lang/perl nls? ( sys-devel/gettext ) +DESCRIPTION=The GNU Privacy Guard, a GPL pgp replacement +EAPI=4 +HOMEPAGE=http://www.gnupg.org/ +IUSE=bzip2 curl ldap mta nls readline selinux smartcard static usb zlib linguas_ru +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos +LICENSE=GPL-2 +RDEPEND=!static? ( ldap? ( net-nds/openldap ) bzip2? ( app-arch/bzip2 ) zlib? ( sys-libs/zlib ) curl? ( net-misc/curl ) mta? ( virtual/mta ) readline? ( sys-libs/readline ) smartcard? ( =virtual/libusb-0* ) usb? ( =virtual/libusb-0* ) ) selinux? ( sec-policy/selinux-gpg ) nls? ( virtual/libintl ) +SLOT=0 +SRC_URI=mirror://gnupg/gnupg/gnupg-1.4.13.tar.bz2 +_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=1489bcf6b8635f709c8ce19fa6815cae diff --git a/metadata/md5-cache/app-crypt/gnupg-2.0.19-r1 b/metadata/md5-cache/app-crypt/gnupg-2.0.19-r1 index 76f850a4789e..fe01de71b4dd 100644 --- a/metadata/md5-cache/app-crypt/gnupg-2.0.19-r1 +++ b/metadata/md5-cache/app-crypt/gnupg-2.0.19-r1 @@ -3,12 +3,12 @@ DEPEND=>=dev-libs/libassuan-2 >=dev-libs/libgcrypt-1.4 >=dev-libs/libgpg-error-1 DESCRIPTION=The GNU Privacy Guard, a GPL pgp replacement EAPI=4 HOMEPAGE=http://www.gnupg.org/ -IUSE=adns bzip2 doc ldap nls readline static selinux smartcard usb +IUSE=adns bzip2 doc ldap nls mta readline static selinux smartcard usb KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-3 -RDEPEND=!static? ( >=dev-libs/libassuan-2 >=dev-libs/libgcrypt-1.4 >=dev-libs/libgpg-error-1.7 >=dev-libs/libksba-1.0.7 >=dev-libs/pth-1.3.7 >=net-misc/curl-7.10 sys-libs/zlib adns? ( >=net-libs/adns-1.4 ) bzip2? ( app-arch/bzip2 ) readline? ( sys-libs/readline ) smartcard? ( usb? ( virtual/libusb:0 ) ) ldap? ( net-nds/openldap ) ) || ( app-crypt/pinentry app-crypt/pinentry-qt ) virtual/mta !<=app-crypt/gnupg-2.0.1 selinux? ( sec-policy/selinux-gpg ) nls? ( virtual/libintl ) +RDEPEND=!static? ( >=dev-libs/libassuan-2 >=dev-libs/libgcrypt-1.4 >=dev-libs/libgpg-error-1.7 >=dev-libs/libksba-1.0.7 >=dev-libs/pth-1.3.7 >=net-misc/curl-7.10 sys-libs/zlib adns? ( >=net-libs/adns-1.4 ) bzip2? ( app-arch/bzip2 ) readline? ( sys-libs/readline ) smartcard? ( usb? ( virtual/libusb:0 ) ) ldap? ( net-nds/openldap ) ) || ( app-crypt/pinentry app-crypt/pinentry-qt ) mta? ( virtual/mta ) !<=app-crypt/gnupg-2.0.1 selinux? ( sec-policy/selinux-gpg ) nls? ( virtual/libintl ) REQUIRED_USE=smartcard? ( !static ) SLOT=0 SRC_URI=mirror://gnupg/gnupg/gnupg-2.0.19.tar.bz2 _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=f6e1d2b6285173a8da4f356fee05d6a5 +_md5_=46fa75162011431c9dc0455b396e264b 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 09c403c1b483..1868c139882c 100644 --- a/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r6 +++ b/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r6 @@ -4,11 +4,11 @@ DESCRIPTION=fast password cracker EAPI=4 HOMEPAGE=http://www.openwall.com/john/ IUSE=cuda custom-cflags -minimal mmx mpi opencl openmp sse2 -KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos +KEYWORDS=alpha amd64 arm ~hppa ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos LICENSE=GPL-2 RDEPEND=!minimal? ( >=dev-libs/openssl-0.9.7:0 ) mpi? ( virtual/mpi ) cuda? ( x11-drivers/nvidia-drivers dev-util/nvidia-cuda-toolkit ) opencl? ( virtual/opencl ) 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 d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 pax-utils 0ace932c4045349c7fc1af0fe7091acf toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=12af78ab477cbdf1867e787ed0621889 +_md5_=c1cb947bda2d68a37b98c976b8631493 diff --git a/metadata/md5-cache/app-doc/abs-guide-6.4 b/metadata/md5-cache/app-doc/abs-guide-6.4 deleted file mode 100644 index e6b3c650f919..000000000000 --- a/metadata/md5-cache/app-doc/abs-guide-6.4 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=install unpack -DESCRIPTION=An advanced reference and a tutorial on bash shell scripting -EAPI=4 -HOMEPAGE=http://www.tldp.org/LDP/abs/html -IUSE=pdf -KEYWORDS=alpha amd64 hppa ~mips ppc sparc x86 -LICENSE=OPL -SLOT=0 -SRC_URI=http://dev.gentoo.org/~dirtyepic/dist/abs-guide-6.4.tar.bz2 pdf? ( http://dev.gentoo.org/~dirtyepic/dist/abs-guide-6.4.pdf ) -_md5_=705d08003ed6cd93c47927d8dc391542 diff --git a/metadata/md5-cache/app-doc/abs-guide-6.6 b/metadata/md5-cache/app-doc/abs-guide-6.6 new file mode 100644 index 000000000000..137299d29908 --- /dev/null +++ b/metadata/md5-cache/app-doc/abs-guide-6.6 @@ -0,0 +1,10 @@ +DEFINED_PHASES=install unpack +DESCRIPTION=An advanced reference and a tutorial on bash shell scripting +EAPI=4 +HOMEPAGE=http://www.tldp.org/LDP/abs/html +IUSE=pdf +KEYWORDS=~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86 +LICENSE=OPL +SLOT=0 +SRC_URI=http://dev.gentoo.org/~dirtyepic/dist/abs-guide-6.6.tar.bz2 pdf? ( http://dev.gentoo.org/~dirtyepic/dist/abs-guide-6.6.pdf ) +_md5_=af255b8f97f0a35e6b9770376efa6c20 diff --git a/metadata/md5-cache/app-emacs/gentoo-syntax-1.20 b/metadata/md5-cache/app-emacs/gentoo-syntax-1.20 index 45a1b517558b..00c74099db84 100644 --- a/metadata/md5-cache/app-emacs/gentoo-syntax-1.20 +++ b/metadata/md5-cache/app-emacs/gentoo-syntax-1.20 @@ -3,10 +3,10 @@ DEPEND=>=virtual/emacs-21 DESCRIPTION=Emacs modes for editing ebuilds and other Gentoo specific files EAPI=4 HOMEPAGE=http://www.gentoo.org/proj/en/lisp/emacs/ -KEYWORDS=~alpha amd64 hppa ~ia64 ppc ppc64 ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +KEYWORDS=alpha amd64 hppa ~ia64 ppc ppc64 ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos LICENSE=GPL-2+ RDEPEND=>=virtual/emacs-21 SLOT=0 SRC_URI=mirror://gentoo/gentoo-syntax-1.20.tar.bz2 _eclasses_=elisp a2514d37ed52ce36a38a93fca064db1a elisp-common 21605c8f0b2a5ffa3233faeb3f9df309 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=4eac4e9ab106278d2a4b4ead4dd9a472 +_md5_=a4b1b75c653354fee1c8e8441e2f9202 diff --git a/metadata/md5-cache/app-emacs/sml-mode-6.1-r1 b/metadata/md5-cache/app-emacs/sml-mode-6.1-r1 index 8ca510de58cb..a1c680e892f4 100644 --- a/metadata/md5-cache/app-emacs/sml-mode-6.1-r1 +++ b/metadata/md5-cache/app-emacs/sml-mode-6.1-r1 @@ -3,10 +3,10 @@ DEPEND=app-arch/xz-utils >=virtual/emacs-21 DESCRIPTION=Emacs major mode for editing Standard ML EAPI=4 HOMEPAGE=http://www.iro.umontreal.ca/~monnier/elisp/ -KEYWORDS=~alpha amd64 ppc x86 +KEYWORDS=alpha amd64 ppc x86 LICENSE=GPL-3+ RDEPEND=>=virtual/emacs-21 SLOT=0 SRC_URI=mirror://gentoo/sml-mode-6.1.el.xz _eclasses_=elisp a2514d37ed52ce36a38a93fca064db1a elisp-common 21605c8f0b2a5ffa3233faeb3f9df309 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=426a95ab1104ea917234e02cae70f8d4 +_md5_=d1bfc53687057ce619efcd82ce22e2b1 diff --git a/metadata/md5-cache/app-emulation/open-vm-tools-2012.05.21.724730 b/metadata/md5-cache/app-emulation/open-vm-tools-2012.12.26.958366 similarity index 91% rename from metadata/md5-cache/app-emulation/open-vm-tools-2012.05.21.724730 rename to metadata/md5-cache/app-emulation/open-vm-tools-2012.12.26.958366 index 72fda7ecc015..6c1ccf46caff 100644 --- a/metadata/md5-cache/app-emulation/open-vm-tools-2012.05.21.724730 +++ b/metadata/md5-cache/app-emulation/open-vm-tools-2012.12.26.958366 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~x86 LICENSE=LGPL-2 RDEPEND=app-emulation/open-vm-tools-kmod dev-libs/glib:2 dev-libs/libdnet sys-apps/ethtool sys-process/procps virtual/pam X? ( dev-cpp/gtkmm:2.4 x11-base/xorg-server x11-drivers/xf86-input-vmmouse x11-drivers/xf86-video-vmware x11-libs/gtk+:2 x11-libs/libnotify x11-libs/libX11 x11-libs/libXtst ) fuse? ( sys-fs/fuse ) icu? ( dev-libs/icu ) xinerama? ( x11-libs/libXinerama ) SLOT=0 -SRC_URI=mirror://sourceforge/open-vm-tools/open-vm-tools-2012.05.21-724730.tar.gz +SRC_URI=mirror://sourceforge/open-vm-tools/open-vm-tools-2012.12.26-958366.tar.gz _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=182cc653c35daaed33574c945a6a91b2 +_md5_=9957052826e21a8a18dd19a213a2cd14 diff --git a/metadata/md5-cache/app-emulation/open-vm-tools-kmod-2012.05.21.724730 b/metadata/md5-cache/app-emulation/open-vm-tools-kmod-2012.12.26.958366 similarity index 85% rename from metadata/md5-cache/app-emulation/open-vm-tools-kmod-2012.05.21.724730 rename to metadata/md5-cache/app-emulation/open-vm-tools-kmod-2012.12.26.958366 index 18c9aef44711..f3e00c755ef4 100644 --- a/metadata/md5-cache/app-emulation/open-vm-tools-kmod-2012.05.21.724730 +++ b/metadata/md5-cache/app-emulation/open-vm-tools-kmod-2012.12.26.958366 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~x86 LICENSE=LGPL-2 RDEPEND=kernel_linux? ( virtual/modutils ) SLOT=0 -SRC_URI=mirror://sourceforge/open-vm-tools/open-vm-tools-2012.05.21-724730.tar.gz +SRC_URI=mirror://sourceforge/open-vm-tools/open-vm-tools-2012.12.26-958366.tar.gz _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 linux-info 6923bbfed4371639315c56d17e2da90c linux-mod dbc722ed035721476f23ab7b0572985e multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=2731d118b9198bf5541a59c561857628 +_md5_=086e05bb4371b7e4a5641f49e0f1be98 diff --git a/metadata/md5-cache/app-emulation/qemu-1.2.2-r1 b/metadata/md5-cache/app-emulation/qemu-1.2.2-r2 similarity index 98% rename from metadata/md5-cache/app-emulation/qemu-1.2.2-r1 rename to metadata/md5-cache/app-emulation/qemu-1.2.2-r2 index 6dcaf05155fb..4f3968581f9e 100644 --- a/metadata/md5-cache/app-emulation/qemu-1.2.2-r1 +++ b/metadata/md5-cache/app-emulation/qemu-1.2.2-r2 @@ -9,6 +9,6 @@ LICENSE=GPL-2 LGPL-2 BSD-2 RDEPEND=!static? ( >=dev-libs/glib-2.0 sys-apps/pciutils sys-libs/zlib aio? ( dev-libs/libaio ) caps? ( sys-libs/libcap-ng ) curl? ( >=net-misc/curl-7.15.4 ) fdt? ( >=sys-apps/dtc-1.2.0 ) jpeg? ( virtual/jpeg ) ncurses? ( sys-libs/ncurses ) png? ( media-libs/libpng ) rbd? ( sys-cluster/ceph ) sasl? ( dev-libs/cyrus-sasl ) sdl? ( >=media-libs/libsdl-1.2.11 ) seccomp? ( >=sys-libs/libseccomp-1.0.1 ) spice? ( >=app-emulation/spice-0.9.0 ) tls? ( net-libs/gnutls ) uuid? ( >=sys-apps/util-linux-2.16.0 ) vde? ( net-misc/vde ) xattr? ( sys-apps/attr ) xfs? ( sys-fs/xfsprogs ) ) !app-emulation/kqemu qemu_softmmu_targets_i386? ( sys-firmware/ipxe ~sys-firmware/seabios-1.7.1 ~sys-firmware/sgabios-0.1_pre8 ~sys-firmware/vgabios-0.7a ) qemu_softmmu_targets_x86_64? ( sys-firmware/ipxe ~sys-firmware/seabios-1.7.1 ~sys-firmware/sgabios-0.1_pre8 ~sys-firmware/vgabios-0.7a ) alsa? ( >=media-libs/alsa-lib-1.0.13 ) bluetooth? ( net-wireless/bluez ) brltty? ( app-accessibility/brltty ) opengl? ( virtual/opengl ) pulseaudio? ( media-sound/pulseaudio ) python? ( =dev-lang/python-2*[ncurses] ) sdl? ( media-libs/libsdl[X] ) selinux? ( sec-policy/selinux-qemu ) smartcard? ( dev-libs/nss ) spice? ( >=app-emulation/spice-protocol-0.12.2 ) systemtap? ( dev-util/systemtap ) usbredir? ( ~sys-apps/usbredir-0.4.4 ) virtfs? ( sys-libs/libcap ) xen? ( app-emulation/xen-tools ) =dev-lang/python-2* REQUIRED_USE=|| ( qemu_softmmu_targets_i386 qemu_softmmu_targets_x86_64 qemu_softmmu_targets_alpha qemu_softmmu_targets_arm qemu_softmmu_targets_cris qemu_softmmu_targets_m68k qemu_softmmu_targets_microblaze qemu_softmmu_targets_microblazeel qemu_softmmu_targets_mips qemu_softmmu_targets_mipsel qemu_softmmu_targets_or32 qemu_softmmu_targets_ppc qemu_softmmu_targets_ppc64 qemu_softmmu_targets_sh4 qemu_softmmu_targets_sh4eb qemu_softmmu_targets_sparc qemu_softmmu_targets_sparc64 qemu_softmmu_targets_s390x qemu_softmmu_targets_unicore32 qemu_softmmu_targets_lm32 qemu_softmmu_targets_mips64 qemu_softmmu_targets_mips64el qemu_softmmu_targets_ppcemb qemu_softmmu_targets_xtensa qemu_softmmu_targets_xtensaeb ) static? ( !alsa !pulseaudio !bluetooth !opengl ) virtfs? ( xattr ) SLOT=0 -SRC_URI=mirror://sourceforge/kvm/qemu-kvm/qemu-kvm-1.2.0.tar.gz http://dev.gentoo.org/~cardoe/distfiles/qemu-kvm-1.2.0-9489a8c0.tar.xz +SRC_URI=mirror://sourceforge/kvm/qemu-kvm/qemu-kvm-1.2.0.tar.gz http://dev.gentoo.org/~cardoe/distfiles/qemu-kvm-1.2.0-9489a8c0-1.tar.xz _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info 6923bbfed4371639315c56d17e2da90c multilib 9aa8a023e062fca0ba79362d9d0cc488 python e5b3412fa9f03670a666c8a137bd1060 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev 4f764d2b1e34e4ef12b9b0d6e680c0ee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=372eb0195074caa828eba191b4528fe3 +_md5_=8df312e3c094a80ea01e48e3ad998408 diff --git a/metadata/md5-cache/app-emulation/qemu-user-1.2.2 b/metadata/md5-cache/app-emulation/qemu-user-1.2.2 new file mode 100644 index 000000000000..c8963a089129 --- /dev/null +++ b/metadata/md5-cache/app-emulation/qemu-user-1.2.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup unpack +DEPEND=app-text/texi2html virtual/pkgconfig sys-libs/zlib[static-libs] dev-libs/glib[static-libs] =dev-lang/python-2* +DESCRIPTION=Open source dynamic CPU translator - static user mode emulation +EAPI=4 +HOMEPAGE=http://www.qemu.org +IUSE=+qemu_user_targets_i386 +qemu_user_targets_x86_64 +qemu_user_targets_alpha +qemu_user_targets_arm +qemu_user_targets_cris +qemu_user_targets_m68k +qemu_user_targets_microblaze +qemu_user_targets_microblazeel +qemu_user_targets_mips +qemu_user_targets_mipsel +qemu_user_targets_ppc +qemu_user_targets_ppc64 +qemu_user_targets_sh4 +qemu_user_targets_sh4eb +qemu_user_targets_sparc +qemu_user_targets_sparc64 +qemu_user_targets_s390x +qemu_user_targets_armeb +qemu_user_targets_ppc64abi32 +qemu_user_targets_sparc32plus +qemu_user_targets_unicore32 +KEYWORDS=~amd64 ~ppc ~x86 ~ppc64 +LICENSE=GPL-2 LGPL-2.1 +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 d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 pax-utils 0ace932c4045349c7fc1af0fe7091acf python e5b3412fa9f03670a666c8a137bd1060 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=75c5e11a6fe2d4ce52299a919485b3fe diff --git a/metadata/md5-cache/app-emulation/wine-1.5.18 b/metadata/md5-cache/app-emulation/wine-1.5.18 index 0a293f47fbb9..9ad8f235bf0e 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.18 +++ b/metadata/md5-cache/app-emulation/wine-1.5.18 @@ -12,4 +12,4 @@ 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 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils 0ace932c4045349c7fc1af0fe7091acf toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=596d7dddcaba0bb46267fd64e3a648a1 +_md5_=33be30a5635e8ff86ff19f6520356950 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.19 b/metadata/md5-cache/app-emulation/wine-1.5.19 index bb857215fa5d..3eaf36662e12 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.19 +++ b/metadata/md5-cache/app-emulation/wine-1.5.19 @@ -12,4 +12,4 @@ 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 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils 0ace932c4045349c7fc1af0fe7091acf toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=c18a6ab15619645eac7a4e6fc78c0c5b +_md5_=d467e6b217a10c2dae40bd1cdb920bf9 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.20 b/metadata/md5-cache/app-emulation/wine-1.5.20 index 5618134ada76..6d94f4a77d24 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.20 +++ b/metadata/md5-cache/app-emulation/wine-1.5.20 @@ -12,4 +12,4 @@ 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 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils 0ace932c4045349c7fc1af0fe7091acf toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=af60609ad6d251cc63613b49b8463a8d +_md5_=4280cb84e846393f879521ed677fa7f1 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.21 b/metadata/md5-cache/app-emulation/wine-1.5.21 index 7c84d562091b..faee2d8383d9 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.21 +++ b/metadata/md5-cache/app-emulation/wine-1.5.21 @@ -12,4 +12,4 @@ 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 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils 0ace932c4045349c7fc1af0fe7091acf toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=0fe41a9c74e07ca3f8ea5688341c8b71 +_md5_=68030fc6927da1b584f0d8b120a5c19b diff --git a/metadata/md5-cache/app-emulation/wine-1.5.22 b/metadata/md5-cache/app-emulation/wine-1.5.22 new file mode 100644 index 000000000000..d30ee8a1b143 --- /dev/null +++ b/metadata/md5-cache/app-emulation/wine-1.5.22 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack +DEPEND=truetype? ( >=media-libs/freetype-2.0.0 media-fonts/corefonts ) perl? ( dev-lang/perl dev-perl/XML-Simple ) capi? ( net-dialup/capi4k-utils ) ncurses? ( >=sys-libs/ncurses-5.2 ) fontconfig? ( media-libs/fontconfig:= ) gphoto2? ( media-libs/libgphoto2:= ) openal? ( media-libs/openal:= ) udisks? ( sys-apps/dbus sys-fs/udisks:2 ) gnutls? ( net-libs/gnutls:= ) gstreamer? ( media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 ) X? ( x11-libs/libXcursor x11-libs/libXext x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-libs/libXxf86vm ) xinerama? ( x11-libs/libXinerama ) alsa? ( media-libs/alsa-lib ) cups? ( net-print/cups:= ) opencl? ( virtual/opencl ) opengl? ( virtual/glu virtual/opengl ) gsm? ( media-sound/gsm:= ) jpeg? ( virtual/jpeg:= ) ldap? ( net-nds/openldap:= ) lcms? ( media-libs/lcms:0= ) mp3? ( >=media-sound/mpg123-1.5.0 ) nls? ( sys-devel/gettext ) odbc? ( dev-db/unixODBC:= ) osmesa? ( media-libs/mesa[osmesa] ) samba? ( >=net-fs/samba-3.0.25 ) selinux? ( sec-policy/selinux-wine ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) scanner? ( media-gfx/sane-backends:= ) ssl? ( dev-libs/openssl:= ) png? ( media-libs/libpng:= ) v4l? ( media-libs/libv4l ) !win64? ( amd64? ( truetype? ( >=app-emulation/emul-linux-x86-xlibs-2.1 ) X? ( >=app-emulation/emul-linux-x86-xlibs-2.1 >=app-emulation/emul-linux-x86-soundlibs-2.1 ) mp3? ( app-emulation/emul-linux-x86-soundlibs ) odbc? ( app-emulation/emul-linux-x86-db ) openal? ( app-emulation/emul-linux-x86-sdl ) opengl? ( app-emulation/emul-linux-x86-opengl ) osmesa? ( >=app-emulation/emul-linux-x86-opengl-20121028 ) scanner? ( app-emulation/emul-linux-x86-medialibs ) v4l? ( app-emulation/emul-linux-x86-medialibs ) app-emulation/emul-linux-x86-baselibs >=sys-kernel/linux-headers-2.6 ) ) win32? ( amd64? ( truetype? ( >=app-emulation/emul-linux-x86-xlibs-2.1 ) X? ( >=app-emulation/emul-linux-x86-xlibs-2.1 >=app-emulation/emul-linux-x86-soundlibs-2.1 ) mp3? ( app-emulation/emul-linux-x86-soundlibs ) odbc? ( app-emulation/emul-linux-x86-db ) openal? ( app-emulation/emul-linux-x86-sdl ) opengl? ( app-emulation/emul-linux-x86-opengl ) osmesa? ( >=app-emulation/emul-linux-x86-opengl-20121028 ) scanner? ( app-emulation/emul-linux-x86-medialibs ) v4l? ( app-emulation/emul-linux-x86-medialibs ) app-emulation/emul-linux-x86-baselibs >=sys-kernel/linux-headers-2.6 ) ) xcomposite? ( x11-libs/libXcomposite ) pulseaudio? ( media-sound/pulseaudio sys-auth/rtkit ) X? ( x11-proto/inputproto x11-proto/xextproto x11-proto/xf86vidmodeproto ) xinerama? ( x11-proto/xineramaproto ) prelink? ( sys-devel/prelink ) virtual/pkgconfig virtual/yacc sys-devel/flex || ( >=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=Free implementation of Windows(tm) on Unix +EAPI=5 +HOMEPAGE=http://www.winehq.org/ +IUSE=alsa capi cups custom-cflags elibc_glibc fontconfig +gecko gnutls gphoto2 gsm gstreamer jpeg lcms ldap +mono mp3 ncurses nls odbc openal opencl +opengl osmesa +oss +perl png +prelink samba scanner selinux ssl test +threads +truetype udisks v4l +win32 +win64 +X xcomposite xinerama xml pulseaudio +KEYWORDS=-* ~amd64 ~x86 ~x86-fbsd +LICENSE=LGPL-2.1 +RDEPEND=truetype? ( >=media-libs/freetype-2.0.0 media-fonts/corefonts ) perl? ( dev-lang/perl dev-perl/XML-Simple ) capi? ( net-dialup/capi4k-utils ) ncurses? ( >=sys-libs/ncurses-5.2 ) fontconfig? ( media-libs/fontconfig:= ) gphoto2? ( media-libs/libgphoto2:= ) openal? ( media-libs/openal:= ) udisks? ( sys-apps/dbus sys-fs/udisks:2 ) gnutls? ( net-libs/gnutls:= ) gstreamer? ( media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 ) X? ( x11-libs/libXcursor x11-libs/libXext x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-libs/libXxf86vm ) xinerama? ( x11-libs/libXinerama ) alsa? ( media-libs/alsa-lib ) cups? ( net-print/cups:= ) opencl? ( virtual/opencl ) opengl? ( virtual/glu virtual/opengl ) gsm? ( media-sound/gsm:= ) jpeg? ( virtual/jpeg:= ) ldap? ( net-nds/openldap:= ) lcms? ( media-libs/lcms:0= ) mp3? ( >=media-sound/mpg123-1.5.0 ) nls? ( sys-devel/gettext ) odbc? ( dev-db/unixODBC:= ) osmesa? ( media-libs/mesa[osmesa] ) samba? ( >=net-fs/samba-3.0.25 ) selinux? ( sec-policy/selinux-wine ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) scanner? ( media-gfx/sane-backends:= ) ssl? ( dev-libs/openssl:= ) png? ( media-libs/libpng:= ) v4l? ( media-libs/libv4l ) !win64? ( amd64? ( truetype? ( >=app-emulation/emul-linux-x86-xlibs-2.1 ) X? ( >=app-emulation/emul-linux-x86-xlibs-2.1 >=app-emulation/emul-linux-x86-soundlibs-2.1 ) mp3? ( app-emulation/emul-linux-x86-soundlibs ) odbc? ( app-emulation/emul-linux-x86-db ) openal? ( app-emulation/emul-linux-x86-sdl ) opengl? ( app-emulation/emul-linux-x86-opengl ) osmesa? ( >=app-emulation/emul-linux-x86-opengl-20121028 ) scanner? ( app-emulation/emul-linux-x86-medialibs ) v4l? ( app-emulation/emul-linux-x86-medialibs ) app-emulation/emul-linux-x86-baselibs >=sys-kernel/linux-headers-2.6 ) ) win32? ( amd64? ( truetype? ( >=app-emulation/emul-linux-x86-xlibs-2.1 ) X? ( >=app-emulation/emul-linux-x86-xlibs-2.1 >=app-emulation/emul-linux-x86-soundlibs-2.1 ) mp3? ( app-emulation/emul-linux-x86-soundlibs ) odbc? ( app-emulation/emul-linux-x86-db ) openal? ( app-emulation/emul-linux-x86-sdl ) opengl? ( app-emulation/emul-linux-x86-opengl ) osmesa? ( >=app-emulation/emul-linux-x86-opengl-20121028 ) scanner? ( app-emulation/emul-linux-x86-medialibs ) v4l? ( app-emulation/emul-linux-x86-medialibs ) app-emulation/emul-linux-x86-baselibs >=sys-kernel/linux-headers-2.6 ) ) xcomposite? ( x11-libs/libXcomposite ) pulseaudio? ( media-sound/pulseaudio sys-auth/rtkit ) +REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) osmesa? ( opengl ) +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 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils 0ace932c4045349c7fc1af0fe7091acf toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=42ba631aab03aa105f0cf049b7eed9e7 diff --git a/metadata/md5-cache/app-emulation/wine-9999 b/metadata/md5-cache/app-emulation/wine-9999 index 7e8865fce95c..e93455bcb661 100644 --- a/metadata/md5-cache/app-emulation/wine-9999 +++ b/metadata/md5-cache/app-emulation/wine-9999 @@ -9,6 +9,6 @@ RDEPEND=truetype? ( >=media-libs/freetype-2.0.0 media-fonts/corefonts ) perl? ( REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) osmesa? ( opengl ) RESTRICT=test SLOT=0 -SRC_URI=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 +SRC_URI=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 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils 0ace932c4045349c7fc1af0fe7091acf toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=b5bdc3eea858b44377decdecfc99eb28 +_md5_=52d60080d34e81195003c2d76ec13938 diff --git a/metadata/md5-cache/app-emulation/winetricks-931 b/metadata/md5-cache/app-emulation/winetricks-931 index c3b446c73385..d2a936471acd 100644 --- a/metadata/md5-cache/app-emulation/winetricks-931 +++ b/metadata/md5-cache/app-emulation/winetricks-931 @@ -10,4 +10,4 @@ RDEPEND=app-arch/cabextract app-arch/unzip app-emulation/wine gtk? ( gnome-extra SLOT=0 SRC_URI=http://winetricks.googlecode.com/svn-history/r931/trunk/src/winetricks -> winetricks-931 http://winetricks.googlecode.com/svn-history/r931/trunk/src/winetricks.1 -> winetricks-931.1 gtk? ( http://dev.gentoo.org/~tetromino/distfiles/wine/winetricks-gentoo-2012.11.24.tar.bz2 ) kde? ( http://dev.gentoo.org/~tetromino/distfiles/wine/winetricks-gentoo-2012.11.24.tar.bz2 ) _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 gnome2-utils 794d2847b4af390a1e020924876c8297 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=0126511e229bda879931b4fb5345959a +_md5_=4afa8df86d08a628eb529b3d98a3910e diff --git a/metadata/md5-cache/app-emulation/winetricks-927 b/metadata/md5-cache/app-emulation/winetricks-935 similarity index 78% rename from metadata/md5-cache/app-emulation/winetricks-927 rename to metadata/md5-cache/app-emulation/winetricks-935 index 86653cde3109..8874d4b45029 100644 --- a/metadata/md5-cache/app-emulation/winetricks-927 +++ b/metadata/md5-cache/app-emulation/winetricks-935 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~x86 LICENSE=LGPL-2.1+ RDEPEND=app-arch/cabextract app-arch/unzip app-emulation/wine gtk? ( gnome-extra/zenity ) kde? ( kde-base/kdialog ) SLOT=0 -SRC_URI=http://winetricks.googlecode.com/svn-history/r927/trunk/src/winetricks -> winetricks-927 http://winetricks.googlecode.com/svn-history/r927/trunk/src/winetricks.1 -> winetricks-927.1 gtk? ( http://dev.gentoo.org/~tetromino/distfiles/wine/winetricks-gentoo-2012.11.24.tar.bz2 ) kde? ( http://dev.gentoo.org/~tetromino/distfiles/wine/winetricks-gentoo-2012.11.24.tar.bz2 ) +SRC_URI=http://winetricks.googlecode.com/svn-history/r935/trunk/src/winetricks -> winetricks-935 http://winetricks.googlecode.com/svn-history/r935/trunk/src/winetricks.1 -> winetricks-935.1 gtk? ( http://dev.gentoo.org/~tetromino/distfiles/wine/winetricks-gentoo-2012.11.24.tar.bz2 ) kde? ( http://dev.gentoo.org/~tetromino/distfiles/wine/winetricks-gentoo-2012.11.24.tar.bz2 ) _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 gnome2-utils 794d2847b4af390a1e020924876c8297 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=72deee4fc592bef4564dced1421d6772 +_md5_=253caaec3e86d9caa60929e63a64f949 diff --git a/metadata/md5-cache/app-emulation/winetricks-99999999 b/metadata/md5-cache/app-emulation/winetricks-99999999 index 3fe6a680e9dc..2719ffc7dd2e 100644 --- a/metadata/md5-cache/app-emulation/winetricks-99999999 +++ b/metadata/md5-cache/app-emulation/winetricks-99999999 @@ -9,4 +9,4 @@ RDEPEND=app-arch/cabextract app-arch/unzip app-emulation/wine gtk? ( gnome-extra SLOT=0 SRC_URI=gtk? ( http://dev.gentoo.org/~tetromino/distfiles/wine/winetricks-gentoo-2012.11.24.tar.bz2 ) kde? ( http://dev.gentoo.org/~tetromino/distfiles/wine/winetricks-gentoo-2012.11.24.tar.bz2 ) _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 gnome2-utils 794d2847b4af390a1e020924876c8297 multilib 9aa8a023e062fca0ba79362d9d0cc488 subversion 877d251a42b69543c01f6a36b4707b3b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=e5f46876393ec1705ede4de23fb091f0 +_md5_=a44f1d577ab5947c27579df1b1799812 diff --git a/metadata/md5-cache/app-i18n/cstools-3.42 b/metadata/md5-cache/app-i18n/cstools-3.42 index 2be676850f04..2e768a6c96e6 100644 --- a/metadata/md5-cache/app-i18n/cstools-3.42 +++ b/metadata/md5-cache/app-i18n/cstools-3.42 @@ -1,11 +1,12 @@ -DEFINED_PHASES=compile install postinst postrm preinst prerm setup test unpack -DEPEND=dev-perl/MIME-tools -DESCRIPTION=A charset conversion tool cstocs and two convenience Perl modules for Czech language. -HOMEPAGE=http://www.fi.muni.cz/~adelton/perl/#cstools +DEFINED_PHASES=compile configure install prepare test unpack +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 LICENSE=Artistic -RDEPEND=dev-perl/MIME-tools +RDEPEND=dev-perl/MIME-tools dev-lang/perl[-build] SLOT=0 -SRC_URI=http://www.fi.muni.cz/~adelton/perl/Cstools-3.42.tar.gz +SRC_URI=http://www.adelton.com/perl/Cstools/Cstools-3.42.tar.gz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-app 20b0a51a72b6d2c8ac53ccab1605737f perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=a9f1c340622472e6cf4d9b490b28f7cb +_md5_=942b9dffad6baca245dad84321748841 diff --git a/metadata/md5-cache/app-i18n/enca-1.13-r3 b/metadata/md5-cache/app-i18n/enca-1.13-r3 index 1ed756e69959..e75c85273b7b 100644 --- a/metadata/md5-cache/app-i18n/enca-1.13-r3 +++ b/metadata/md5-cache/app-i18n/enca-1.13-r3 @@ -4,10 +4,10 @@ DESCRIPTION=ENCA detects the character coding of a file and converts it if desir EAPI=4 HOMEPAGE=http://gitorious.org/enca IUSE=doc +recode -KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=recode? ( >=app-text/recode-3.6_p15 ) SLOT=0 SRC_URI=http://dl.cihar.com/enca/enca-1.13.tar.bz2 _eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 autotools-utils f4dc5b0e643575b9bd31a2bd7deeee31 eutils d40dc948067bd3db1c8ebf7d51897313 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=b25419f317a4ff82754a873e6b8efd5f +_md5_=c6f6c3ad2fca97dd97a7042b4c039f73 diff --git a/metadata/md5-cache/app-laptop/nvidiabl-0.77 b/metadata/md5-cache/app-laptop/nvidiabl-0.80 similarity index 87% rename from metadata/md5-cache/app-laptop/nvidiabl-0.77 rename to metadata/md5-cache/app-laptop/nvidiabl-0.80 index cf6365770f76..7d5af14abf4d 100644 --- a/metadata/md5-cache/app-laptop/nvidiabl-0.77 +++ b/metadata/md5-cache/app-laptop/nvidiabl-0.80 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 RDEPEND=kernel_linux? ( virtual/modutils ) SLOT=0 -SRC_URI=mirror://github/guillaumezin/nvidiabl/nvidiabl-0.77-source-only.dkms.tar.gz +SRC_URI=mirror://github/guillaumezin/nvidiabl/nvidiabl-0.80-source-only.dkms.tar.gz _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 linux-info 6923bbfed4371639315c56d17e2da90c linux-mod dbc722ed035721476f23ab7b0572985e multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=b179d80cf74b5d371ab809414b1f7036 +_md5_=834dd9b065e6fd07db4db1f1ea2b9dc7 diff --git a/metadata/md5-cache/app-misc/colordiff-1.0.13 b/metadata/md5-cache/app-misc/colordiff-1.0.13 index f4dc92e8f856..854463fc0382 100644 --- a/metadata/md5-cache/app-misc/colordiff-1.0.13 +++ b/metadata/md5-cache/app-misc/colordiff-1.0.13 @@ -2,10 +2,10 @@ DEFINED_PHASES=compile install prepare DESCRIPTION=Colorizes output of diff EAPI=5 HOMEPAGE=http://www.colordiff.org/ -KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 ~ppc-aix ~x86-fbsd ~hppa-hpux ~ia64-hpux ~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 ~sparc ~x86 ~ppc-aix ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=sys-apps/diffutils SLOT=0 SRC_URI=http://www.colordiff.org/colordiff-1.0.13.tar.gz _eclasses_=prefix 21058c21ca48453d771df15500873ede -_md5_=35d4a210558fe48ea7bae9170fb50f2c +_md5_=8d155ee3dd3d95394f18540b69bc40ce diff --git a/metadata/md5-cache/app-portage/layman-2.0.0 b/metadata/md5-cache/app-portage/layman-2.0.0 index 47b38f7fea75..4c4dd2884f97 100644 --- a/metadata/md5-cache/app-portage/layman-2.0.0 +++ b/metadata/md5-cache/app-portage/layman-2.0.0 @@ -4,10 +4,10 @@ DESCRIPTION=Tool to manage Gentoo overlays EAPI=4 HOMEPAGE=http://layman.sourceforge.net/ IUSE=bazaar cvs darcs +git mercurial subversion test -KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~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 ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=dev-lang/python bazaar? ( dev-vcs/bzr ) cvs? ( dev-vcs/cvs ) darcs? ( dev-vcs/darcs ) git? ( dev-vcs/git ) mercurial? ( dev-vcs/mercurial ) subversion? ( || ( >=dev-vcs/subversion-1.5.4[webdav-neon] >=dev-vcs/subversion-1.5.4[webdav-serf] ) ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) || ( =dev-lang/python-2.7*[xml(+)] =dev-lang/python-2.6*[xml(+)] ) SLOT=0 SRC_URI=mirror://sourceforge/layman/layman-2.0.0.tar.gz _eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 prefix 21058c21ca48453d771df15500873ede python e5b3412fa9f03670a666c8a137bd1060 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=c8005d00203552775c24c1cd2179cac8 +_md5_=f772ab140cd7bf1f1cd26474df2b48b0 diff --git a/metadata/md5-cache/app-shells/ccsh-0.0.4-r3 b/metadata/md5-cache/app-shells/ccsh-0.0.4-r3 index de1fada9c8c4..4158b932ad56 100644 --- a/metadata/md5-cache/app-shells/ccsh-0.0.4-r3 +++ b/metadata/md5-cache/app-shells/ccsh-0.0.4-r3 @@ -7,4 +7,4 @@ LICENSE=GPL-2 SLOT=0 SRC_URI=http://download.sourceforge.net/ccsh/ccsh-0.0.4.tar.gz _eclasses_=multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=d8ef9abe7c8e9569cb4cfdc71f766d25 +_md5_=f61b665fde95a9ab68fd4ca8ef82d9ea diff --git a/metadata/md5-cache/app-text/highlight-3.9 b/metadata/md5-cache/app-text/highlight-3.9 index 999ffb68e89e..04c6996e40a7 100644 --- a/metadata/md5-cache/app-text/highlight-3.9 +++ b/metadata/md5-cache/app-text/highlight-3.9 @@ -4,10 +4,10 @@ DESCRIPTION=converts source code to formatted text ((X)HTML, RTF, (La)TeX, XSL-F EAPI=4 HOMEPAGE=http://www.andre-simon.de/ IUSE=examples qt4 -KEYWORDS=~alpha ~amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos +KEYWORDS=alpha ~amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos LICENSE=GPL-3 RDEPEND=dev-lang/lua qt4? ( x11-libs/qt-gui:4 x11-libs/qt-core:4 ) SLOT=0 SRC_URI=http://www.andre-simon.de/zip/highlight-3.9.tar.bz2 _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 qt4-r2 19af9102ca9b827213997cc636e7e33c toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=32e15cf8d0a3057c9ee5e7e92ceaf2e4 +_md5_=1e03cc26a3aae76bb7af6204265a46ff diff --git a/metadata/md5-cache/app-text/poppler-0.20.5 b/metadata/md5-cache/app-text/poppler-0.20.5 index 67a2df8ce19a..544b08fbca97 100644 --- a/metadata/md5-cache/app-text/poppler-0.20.5 +++ b/metadata/md5-cache/app-text/poppler-0.20.5 @@ -4,11 +4,11 @@ DESCRIPTION=PDF rendering library based on the xpdf-3.0 code base EAPI=4 HOMEPAGE=http://poppler.freedesktop.org/ IUSE=cairo cjk curl cxx debug doc +introspection jpeg jpeg2k +lcms png qt4 tiff +utils -KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~ia64-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 ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=>=media-libs/fontconfig-2.6.0 >=media-libs/freetype-2.3.9 sys-libs/zlib cairo? ( dev-libs/glib:2 >=x11-libs/cairo-1.10.0 introspection? ( >=dev-libs/gobject-introspection-1.32.1 ) ) curl? ( net-misc/curl ) jpeg? ( virtual/jpeg ) jpeg2k? ( media-libs/openjpeg ) lcms? ( media-libs/lcms:2 ) png? ( >=media-libs/libpng-1.4:0 ) qt4? ( x11-libs/qt-core:4 x11-libs/qt-gui:4 ) tiff? ( media-libs/tiff:0 ) !dev-libs/poppler !dev-libs/poppler-glib !dev-libs/poppler-qt3 !dev-libs/poppler-qt4 !app-text/poppler-utils cjk? ( >=app-text/poppler-data-0.4.4 ) RESTRICT=test SLOT=0 SRC_URI=http://poppler.freedesktop.org/poppler-0.20.5.tar.gz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=9a4fe56889221622ebe148f7f254110f +_md5_=07b2fc5614035a1f03963b069a8e4964 diff --git a/metadata/md5-cache/app-text/txt2pdbdoc-1.4.4 b/metadata/md5-cache/app-text/txt2pdbdoc-1.4.4 index 422d81a63a10..75c3a5c21b62 100644 --- a/metadata/md5-cache/app-text/txt2pdbdoc-1.4.4 +++ b/metadata/md5-cache/app-text/txt2pdbdoc-1.4.4 @@ -1,6 +1,7 @@ -DEFINED_PHASES=install unpack -DEPEND=dev-lang/perl || ( >=sys-devel/automake-1.11.1 >=sys-devel/automake-1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEFINED_PHASES=prepare +DEPEND=dev-lang/perl || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=Text/HTML to Doc file converter for the Palm Pilot +EAPI=5 HOMEPAGE=http://homepage.mac.com/pauljlucas/software/txt2pdbdoc/ KEYWORDS=amd64 ppc sparc x86 LICENSE=GPL-2 @@ -8,4 +9,4 @@ RDEPEND=dev-lang/perl SLOT=0 SRC_URI=http://homepage.mac.com/pauljlucas/software/txt2pdbdoc-1.4.4.tar.gz _eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=9f5e79eeaa99a0dec67d7464b4cb20dd +_md5_=2d293dcd3ef29db3aafbcfc76f65dba6 diff --git a/metadata/md5-cache/dev-db/mariadb-5.1.42 b/metadata/md5-cache/dev-db/mariadb-5.1.42 deleted file mode 100644 index 5b5b2782e1eb..000000000000 --- a/metadata/md5-cache/dev-db/mariadb-5.1.42 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql !dev-db/mysql-community !dev-db/mysql-cluster virtual/yacc >=dev-util/cmake-2.4.3 -DESCRIPTION=MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged. -EAPI=4 -HOMEPAGE=http://askmonty.org/ -IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 +community profiling libevent pbxt -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd -LICENSE=GPL-2 -PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.1 -RDEPEND=!media-sound/amarok[embedded] ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql !dev-db/mysql-community !dev-db/mysql-cluster !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) -SLOT=0 -SRC_URI=http://ftp.osuosl.org/pub/mariadb/mariadb-5.1.42/kvm-tarbake-jaunty-x86/mariadb-5.1.42.tar.gz http://ftp.rediris.es/mirror/MariaDB/mariadb-5.1.42/kvm-tarbake-jaunty-x86/mariadb-5.1.42.tar.gz http://maria.llarian.net/download/mariadb-5.1.42/kvm-tarbake-jaunty-x86/mariadb-5.1.42.tar.gz http://launchpad.net/maria/5.1/ongoing/+download/mariadb-5.1.42.tar.gz http://mirrors.fe.up.pt/pub/mariadb/mariadb-5.1.42/kvm-tarbake-jaunty-x86/mariadb-5.1.42.tar.gz http://ftp-stud.hs-esslingen.de/pub/Mirrors/mariadb/mariadb-5.1.42/kvm-tarbake-jaunty-x86/mariadb-5.1.42.tar.gz mirror://gentoo/mysql-extras-20100324-0235Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20100324-0235Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20100324-0235Z.tar.bz2 -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql 25ebb848dfea5d025a02d0d014fa101a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=57b94e8b501ada628f03a99de7129077 diff --git a/metadata/md5-cache/dev-db/mariadb-5.1.42-r1 b/metadata/md5-cache/dev-db/mariadb-5.1.42-r1 deleted file mode 100644 index 4fc9e2d62930..000000000000 --- a/metadata/md5-cache/dev-db/mariadb-5.1.42-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql !dev-db/mysql-community !dev-db/mysql-cluster virtual/yacc >=dev-util/cmake-2.4.3 -DESCRIPTION=MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged. -EAPI=4 -HOMEPAGE=http://askmonty.org/ -IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 +community profiling libevent pbxt -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd -LICENSE=GPL-2 -PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.1 -RDEPEND=!media-sound/amarok[embedded] ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql !dev-db/mysql-community !dev-db/mysql-cluster !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) -SLOT=0 -SRC_URI=http://ftp.osuosl.org/pub/mariadb/mariadb-5.1.42/kvm-tarbake-jaunty-x86/mariadb-5.1.42.tar.gz http://ftp.rediris.es/mirror/MariaDB/mariadb-5.1.42/kvm-tarbake-jaunty-x86/mariadb-5.1.42.tar.gz http://maria.llarian.net/download/mariadb-5.1.42/kvm-tarbake-jaunty-x86/mariadb-5.1.42.tar.gz http://launchpad.net/maria/5.1/ongoing/+download/mariadb-5.1.42.tar.gz http://mirrors.fe.up.pt/pub/mariadb/mariadb-5.1.42/kvm-tarbake-jaunty-x86/mariadb-5.1.42.tar.gz http://ftp-stud.hs-esslingen.de/pub/Mirrors/mariadb/mariadb-5.1.42/kvm-tarbake-jaunty-x86/mariadb-5.1.42.tar.gz mirror://gentoo/mysql-extras-20100324-0235Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20100324-0235Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20100324-0235Z.tar.bz2 -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql 25ebb848dfea5d025a02d0d014fa101a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=b2dd42aa7caaac9754cd43b5d49d93c9 diff --git a/metadata/md5-cache/dev-db/mariadb-5.1.50 b/metadata/md5-cache/dev-db/mariadb-5.1.50 deleted file mode 100644 index a7340ee59142..000000000000 --- a/metadata/md5-cache/dev-db/mariadb-5.1.50 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) >=sys-devel/libtool-2.2.10 sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql !dev-db/mysql-community !dev-db/mysql-cluster virtual/yacc >=dev-util/cmake-2.4.3 -DESCRIPTION=MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged. -EAPI=4 -HOMEPAGE=http://askmonty.org/ -IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 +community profiling libevent pbxt -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd -LICENSE=GPL-2 -PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.1 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql !dev-db/mysql-community !dev-db/mysql-cluster !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) -SLOT=0 -SRC_URI=http://ftp.osuosl.org/pub/mariadb/mariadb-5.1.50/kvm-tarbake-jaunty-x86/mariadb-5.1.50.tar.gz http://ftp.rediris.es/mirror/MariaDB/mariadb-5.1.50/kvm-tarbake-jaunty-x86/mariadb-5.1.50.tar.gz http://maria.llarian.net/download/mariadb-5.1.50/kvm-tarbake-jaunty-x86/mariadb-5.1.50.tar.gz http://launchpad.net/maria/5.1/ongoing/+download/mariadb-5.1.50.tar.gz http://mirrors.fe.up.pt/pub/mariadb/mariadb-5.1.50/kvm-tarbake-jaunty-x86/mariadb-5.1.50.tar.gz http://ftp-stud.hs-esslingen.de/pub/Mirrors/mariadb/mariadb-5.1.50/kvm-tarbake-jaunty-x86/mariadb-5.1.50.tar.gz mirror://gentoo/mysql-extras-20101006-0004Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20101006-0004Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20101006-0004Z.tar.bz2 -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql 25ebb848dfea5d025a02d0d014fa101a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=6cf79a2081c17424ea358bc4e95bedd6 diff --git a/metadata/md5-cache/dev-db/mariadb-5.1.62 b/metadata/md5-cache/dev-db/mariadb-5.1.62 index 76fe7db16f30..7b61a1108226 100644 --- a/metadata/md5-cache/dev-db/mariadb-5.1.62 +++ b/metadata/md5-cache/dev-db/mariadb-5.1.62 @@ -10,5 +10,5 @@ PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.1 RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) SLOT=0 SRC_URI=http://ftp.osuosl.org/pub/mariadb/mariadb-5.1.62/kvm-tarbake-jaunty-x86/mariadb-5.1.62.tar.gz http://ftp.rediris.es/mirror/MariaDB/mariadb-5.1.62/kvm-tarbake-jaunty-x86/mariadb-5.1.62.tar.gz http://maria.llarian.net/download/mariadb-5.1.62/kvm-tarbake-jaunty-x86/mariadb-5.1.62.tar.gz http://launchpad.net/maria/5.1/ongoing/+download/mariadb-5.1.62.tar.gz http://mirrors.fe.up.pt/pub/mariadb/mariadb-5.1.62/kvm-tarbake-jaunty-x86/mariadb-5.1.62.tar.gz http://ftp-stud.hs-esslingen.de/pub/Mirrors/mariadb/mariadb-5.1.62/kvm-tarbake-jaunty-x86/mariadb-5.1.62.tar.gz mirror://gentoo/mysql-extras-20120416-2021Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20120416-2021Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20120416-2021Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20120416-2021Z.tar.bz2 -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools ab454a153e06a18669eec3d2c44cc018 mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=2544bc2c28d032e28fb76517910d059b +_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools 8d352060f916d8b61f690c493a98fce8 mysql-v2 e48569e19260bec2a6f46cbe5d257b7d mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=d7e4a2058d53226575b0601bd4273f17 diff --git a/metadata/md5-cache/dev-db/mariadb-5.1.55 b/metadata/md5-cache/dev-db/mariadb-5.1.66 similarity index 58% rename from metadata/md5-cache/dev-db/mariadb-5.1.55 rename to metadata/md5-cache/dev-db/mariadb-5.1.66 index c69f6a709e2b..b97d66a24d0d 100644 --- a/metadata/md5-cache/dev-db/mariadb-5.1.55 +++ b/metadata/md5-cache/dev-db/mariadb-5.1.66 @@ -4,11 +4,11 @@ DESCRIPTION=MariaDB is a MySQL fork with 3rd-party patches and additional storag EAPI=4 HOMEPAGE=http://mariadb.org/ IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 berkdb +community profiling libevent pbxt -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd +KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=GPL-2 PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.1 RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) SLOT=0 -SRC_URI=http://ftp.osuosl.org/pub/mariadb/mariadb-5.1.55/kvm-tarbake-jaunty-x86/mariadb-5.1.55.tar.gz http://ftp.rediris.es/mirror/MariaDB/mariadb-5.1.55/kvm-tarbake-jaunty-x86/mariadb-5.1.55.tar.gz http://maria.llarian.net/download/mariadb-5.1.55/kvm-tarbake-jaunty-x86/mariadb-5.1.55.tar.gz http://launchpad.net/maria/5.1/ongoing/+download/mariadb-5.1.55.tar.gz http://mirrors.fe.up.pt/pub/mariadb/mariadb-5.1.55/kvm-tarbake-jaunty-x86/mariadb-5.1.55.tar.gz http://ftp-stud.hs-esslingen.de/pub/Mirrors/mariadb/mariadb-5.1.55/kvm-tarbake-jaunty-x86/mariadb-5.1.55.tar.gz mirror://gentoo/mysql-extras-20110426-1046Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20110426-1046Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20110426-1046Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20110426-1046Z.tar.bz2 -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools ab454a153e06a18669eec3d2c44cc018 mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=08a5b67a012d835a6b12cd3396a22056 +SRC_URI=http://ftp.osuosl.org/pub/mariadb/mariadb-5.1.66/kvm-tarbake-jaunty-x86/mariadb-5.1.66.tar.gz http://ftp.rediris.es/mirror/MariaDB/mariadb-5.1.66/kvm-tarbake-jaunty-x86/mariadb-5.1.66.tar.gz http://maria.llarian.net/download/mariadb-5.1.66/kvm-tarbake-jaunty-x86/mariadb-5.1.66.tar.gz http://launchpad.net/maria/5.1/ongoing/+download/mariadb-5.1.66.tar.gz http://mirrors.fe.up.pt/pub/mariadb/mariadb-5.1.66/kvm-tarbake-jaunty-x86/mariadb-5.1.66.tar.gz http://ftp-stud.hs-esslingen.de/pub/Mirrors/mariadb/mariadb-5.1.66/kvm-tarbake-jaunty-x86/mariadb-5.1.66.tar.gz mirror://gentoo/mysql-extras-20121101-2319Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20121101-2319Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20121101-2319Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20121101-2319Z.tar.bz2 +_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools 8d352060f916d8b61f690c493a98fce8 mysql-v2 e48569e19260bec2a6f46cbe5d257b7d mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=10b53dd13d8e2096860bd19439bb33a6 diff --git a/metadata/md5-cache/dev-db/mariadb-5.2.12 b/metadata/md5-cache/dev-db/mariadb-5.2.12 index 489d821db2a0..fe664cd2e49c 100644 --- a/metadata/md5-cache/dev-db/mariadb-5.2.12 +++ b/metadata/md5-cache/dev-db/mariadb-5.2.12 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 oqgraph? ( >=dev-libs/boost-1.40.0 ) sphinx? ( app-misc/sphinx ) +DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql oqgraph? ( >=dev-libs/boost-1.40.0 ) sphinx? ( app-misc/sphinx ) virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 DESCRIPTION=MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged. EAPI=4 HOMEPAGE=http://mariadb.org/ @@ -7,8 +7,8 @@ IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extr KEYWORDS=~amd64 ~s390 ~sh ~x86 ~sparc-fbsd ~x86-fbsd LICENSE=GPL-2 PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.2 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) +RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql oqgraph? ( >=dev-libs/boost-1.40.0 ) sphinx? ( app-misc/sphinx ) !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) SLOT=0 SRC_URI=http://ftp.osuosl.org/pub/mariadb/mariadb-5.2.12/kvm-tarbake-jaunty-x86/mariadb-5.2.12.tar.gz http://ftp.rediris.es/mirror/MariaDB/mariadb-5.2.12/kvm-tarbake-jaunty-x86/mariadb-5.2.12.tar.gz http://maria.llarian.net/download/mariadb-5.2.12/kvm-tarbake-jaunty-x86/mariadb-5.2.12.tar.gz http://launchpad.net/maria/5.2/ongoing/+download/mariadb-5.2.12.tar.gz http://mirrors.fe.up.pt/pub/mariadb/mariadb-5.2.12/kvm-tarbake-jaunty-x86/mariadb-5.2.12.tar.gz http://ftp-stud.hs-esslingen.de/pub/Mirrors/mariadb/mariadb-5.2.12/kvm-tarbake-jaunty-x86/mariadb-5.2.12.tar.gz mirror://gentoo/mysql-extras-20120416-2021Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20120416-2021Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20120416-2021Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20120416-2021Z.tar.bz2 -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools ab454a153e06a18669eec3d2c44cc018 mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=4e55da59533739d9be2a929743e6701f +_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools 8d352060f916d8b61f690c493a98fce8 mysql-v2 e48569e19260bec2a6f46cbe5d257b7d mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=50d5d31e4c1964b6cea06c61d7db1313 diff --git a/metadata/md5-cache/dev-db/mariadb-5.2.13 b/metadata/md5-cache/dev-db/mariadb-5.2.13 new file mode 100644 index 000000000000..1a8ab6669c15 --- /dev/null +++ b/metadata/md5-cache/dev-db/mariadb-5.2.13 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack +DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql oqgraph? ( >=dev-libs/boost-1.40.0 ) sphinx? ( app-misc/sphinx ) virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 +DESCRIPTION=MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged. +EAPI=4 +HOMEPAGE=http://mariadb.org/ +IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 berkdb +community profiling libevent oqgraph sphinx pbxt +KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +LICENSE=GPL-2 +PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.2 +RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql oqgraph? ( >=dev-libs/boost-1.40.0 ) sphinx? ( app-misc/sphinx ) !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) +SLOT=0 +SRC_URI=http://ftp.osuosl.org/pub/mariadb/mariadb-5.2.13/kvm-tarbake-jaunty-x86/mariadb-5.2.13.tar.gz http://ftp.rediris.es/mirror/MariaDB/mariadb-5.2.13/kvm-tarbake-jaunty-x86/mariadb-5.2.13.tar.gz http://maria.llarian.net/download/mariadb-5.2.13/kvm-tarbake-jaunty-x86/mariadb-5.2.13.tar.gz http://launchpad.net/maria/5.2/ongoing/+download/mariadb-5.2.13.tar.gz http://mirrors.fe.up.pt/pub/mariadb/mariadb-5.2.13/kvm-tarbake-jaunty-x86/mariadb-5.2.13.tar.gz http://ftp-stud.hs-esslingen.de/pub/Mirrors/mariadb/mariadb-5.2.13/kvm-tarbake-jaunty-x86/mariadb-5.2.13.tar.gz mirror://gentoo/mysql-extras-20121101-2319Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20121101-2319Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20121101-2319Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20121101-2319Z.tar.bz2 +_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools 8d352060f916d8b61f690c493a98fce8 mysql-v2 e48569e19260bec2a6f46cbe5d257b7d mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=2ae196fa561430bec618403ec088c43b diff --git a/metadata/md5-cache/dev-db/mariadb-5.2.9 b/metadata/md5-cache/dev-db/mariadb-5.2.9 deleted file mode 100644 index a43a8c7ed743..000000000000 --- a/metadata/md5-cache/dev-db/mariadb-5.2.9 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 oqgraph? ( >=dev-libs/boost-1.40.0 ) sphinx? ( app-misc/sphinx ) -DESCRIPTION=MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged. -EAPI=4 -HOMEPAGE=http://mariadb.org/ -IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 berkdb +community profiling libevent oqgraph sphinx pbxt -KEYWORDS=~amd64 ~s390 ~sh ~x86 ~sparc-fbsd ~x86-fbsd -LICENSE=GPL-2 -PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.2 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) -SLOT=0 -SRC_URI=http://ftp.osuosl.org/pub/mariadb/mariadb-5.2.9/kvm-tarbake-jaunty-x86/mariadb-5.2.9.tar.gz http://ftp.rediris.es/mirror/MariaDB/mariadb-5.2.9/kvm-tarbake-jaunty-x86/mariadb-5.2.9.tar.gz http://maria.llarian.net/download/mariadb-5.2.9/kvm-tarbake-jaunty-x86/mariadb-5.2.9.tar.gz http://launchpad.net/maria/5.2/ongoing/+download/mariadb-5.2.9.tar.gz http://mirrors.fe.up.pt/pub/mariadb/mariadb-5.2.9/kvm-tarbake-jaunty-x86/mariadb-5.2.9.tar.gz http://ftp-stud.hs-esslingen.de/pub/Mirrors/mariadb/mariadb-5.2.9/kvm-tarbake-jaunty-x86/mariadb-5.2.9.tar.gz mirror://gentoo/mysql-extras-20110819-0415Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20110819-0415Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20110819-0415Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20110819-0415Z.tar.bz2 -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools ab454a153e06a18669eec3d2c44cc018 mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=e73b8c9597edada6a4a1a8d37685b6a8 diff --git a/metadata/md5-cache/dev-db/mariadb-5.3.11 b/metadata/md5-cache/dev-db/mariadb-5.3.11 new file mode 100644 index 000000000000..d5ba2afd5052 --- /dev/null +++ b/metadata/md5-cache/dev-db/mariadb-5.3.11 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack +DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql oqgraph? ( >=dev-libs/boost-1.40.0 ) sphinx? ( app-misc/sphinx ) virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 +DESCRIPTION=MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged. +EAPI=4 +HOMEPAGE=http://mariadb.org/ +IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 berkdb +community profiling libevent oqgraph sphinx pbxt +KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +LICENSE=GPL-2 +PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.3 +RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql oqgraph? ( >=dev-libs/boost-1.40.0 ) sphinx? ( app-misc/sphinx ) !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) +SLOT=0 +SRC_URI=http://ftp.osuosl.org/pub/mariadb/mariadb-5.3.11/kvm-tarbake-jaunty-x86/mariadb-5.3.11.tar.gz http://ftp.rediris.es/mirror/MariaDB/mariadb-5.3.11/kvm-tarbake-jaunty-x86/mariadb-5.3.11.tar.gz http://maria.llarian.net/download/mariadb-5.3.11/kvm-tarbake-jaunty-x86/mariadb-5.3.11.tar.gz http://launchpad.net/maria/5.3/ongoing/+download/mariadb-5.3.11.tar.gz http://mirrors.fe.up.pt/pub/mariadb/mariadb-5.3.11/kvm-tarbake-jaunty-x86/mariadb-5.3.11.tar.gz http://ftp-stud.hs-esslingen.de/pub/Mirrors/mariadb/mariadb-5.3.11/kvm-tarbake-jaunty-x86/mariadb-5.3.11.tar.gz mirror://gentoo/mysql-extras-20121101-2319Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20121101-2319Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20121101-2319Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20121101-2319Z.tar.bz2 +_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools 8d352060f916d8b61f690c493a98fce8 mysql-v2 e48569e19260bec2a6f46cbe5d257b7d mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=4df1e6cb265d598640e91ce4426560f8 diff --git a/metadata/md5-cache/dev-db/mariadb-5.3.6 b/metadata/md5-cache/dev-db/mariadb-5.3.6 index e73b56a2ffc0..199d1f9faf97 100644 --- a/metadata/md5-cache/dev-db/mariadb-5.3.6 +++ b/metadata/md5-cache/dev-db/mariadb-5.3.6 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 oqgraph? ( >=dev-libs/boost-1.40.0 ) sphinx? ( app-misc/sphinx ) +DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql oqgraph? ( >=dev-libs/boost-1.40.0 ) sphinx? ( app-misc/sphinx ) virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 DESCRIPTION=MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged. EAPI=4 HOMEPAGE=http://mariadb.org/ @@ -7,8 +7,8 @@ IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extr KEYWORDS=~amd64 ~s390 ~sh ~x86 ~sparc-fbsd ~x86-fbsd LICENSE=GPL-2 PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.3 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) +RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 libevent? ( >=dev-libs/libevent-1.4 ) !dev-db/mysql oqgraph? ( >=dev-libs/boost-1.40.0 ) sphinx? ( app-misc/sphinx ) !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) SLOT=0 SRC_URI=http://ftp.osuosl.org/pub/mariadb/mariadb-5.3.6/kvm-tarbake-jaunty-x86/mariadb-5.3.6.tar.gz http://ftp.rediris.es/mirror/MariaDB/mariadb-5.3.6/kvm-tarbake-jaunty-x86/mariadb-5.3.6.tar.gz http://maria.llarian.net/download/mariadb-5.3.6/kvm-tarbake-jaunty-x86/mariadb-5.3.6.tar.gz http://launchpad.net/maria/5.3/ongoing/+download/mariadb-5.3.6.tar.gz http://mirrors.fe.up.pt/pub/mariadb/mariadb-5.3.6/kvm-tarbake-jaunty-x86/mariadb-5.3.6.tar.gz http://ftp-stud.hs-esslingen.de/pub/Mirrors/mariadb/mariadb-5.3.6/kvm-tarbake-jaunty-x86/mariadb-5.3.6.tar.gz mirror://gentoo/mysql-extras-20120416-2021Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20120416-2021Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20120416-2021Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20120416-2021Z.tar.bz2 -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools ab454a153e06a18669eec3d2c44cc018 mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=43787170fbc9df8f7e49de6d00a6039a +_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools 8d352060f916d8b61f690c493a98fce8 mysql-v2 e48569e19260bec2a6f46cbe5d257b7d mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=bf975e8cf400614ea94d7abc59ec58ce diff --git a/metadata/md5-cache/dev-db/mariadb-5.5.23 b/metadata/md5-cache/dev-db/mariadb-5.5.23 index 7d8b8bf40069..52451fa8e940 100644 --- a/metadata/md5-cache/dev-db/mariadb-5.5.23 +++ b/metadata/md5-cache/dev-db/mariadb-5.5.23 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 >=dev-util/cmake-2.6.3 oqgraph? ( >=dev-libs/boost-1.40.0 ) sphinx? ( app-misc/sphinx ) systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) +DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql oqgraph? ( >=dev-libs/boost-1.40.0 ) sphinx? ( app-misc/sphinx ) systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 >=dev-util/cmake-2.6.3 DESCRIPTION=MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged. EAPI=4 HOMEPAGE=http://mariadb.org/ @@ -7,9 +7,9 @@ IUSE=debug embedded minimal +perl selinux ssl static test latin1 extraengine clu KEYWORDS=~amd64 ~s390 ~sh ~x86 ~sparc-fbsd ~x86-fbsd LICENSE=GPL-2 PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.5 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) +RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql oqgraph? ( >=dev-libs/boost-1.40.0 ) sphinx? ( app-misc/sphinx ) systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) REQUIRED_USE=tcmalloc? ( !jemalloc ) jemalloc? ( !tcmalloc ) SLOT=0 SRC_URI=http://ftp.osuosl.org/pub/mariadb/mariadb-5.5.23/kvm-tarbake-jaunty-x86/mariadb-5.5.23.tar.gz http://ftp.rediris.es/mirror/MariaDB/mariadb-5.5.23/kvm-tarbake-jaunty-x86/mariadb-5.5.23.tar.gz http://maria.llarian.net/download/mariadb-5.5.23/kvm-tarbake-jaunty-x86/mariadb-5.5.23.tar.gz http://launchpad.net/maria/5.5/ongoing/+download/mariadb-5.5.23.tar.gz http://mirrors.fe.up.pt/pub/mariadb/mariadb-5.5.23/kvm-tarbake-jaunty-x86/mariadb-5.5.23.tar.gz http://ftp-stud.hs-esslingen.de/pub/Mirrors/mariadb/mariadb-5.5.23/kvm-tarbake-jaunty-x86/mariadb-5.5.23.tar.gz mirror://gentoo/mysql-extras-20120416-2021Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20120416-2021Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20120416-2021Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20120416-2021Z.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib 9aa8a023e062fca0ba79362d9d0cc488 mysql-cmake ceb13d06802b7718713d30838257cadc mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=e1d0395ad9e5a7d2c8dd4fc36228d5fe +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib 9aa8a023e062fca0ba79362d9d0cc488 mysql-cmake 443f8896dfee2700765061f4f2539880 mysql-v2 e48569e19260bec2a6f46cbe5d257b7d mysql_fx f783e104c8bbd017eefc5359f327975b prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=ac5462c18c34dbcd5d927692c98d3b9c diff --git a/metadata/md5-cache/dev-db/mariadb-5.5.28 b/metadata/md5-cache/dev-db/mariadb-5.5.28 index ee2638f50ed0..e56021292753 100644 --- a/metadata/md5-cache/dev-db/mariadb-5.5.28 +++ b/metadata/md5-cache/dev-db/mariadb-5.5.28 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 >=dev-util/cmake-2.6.3 oqgraph? ( >=dev-libs/boost-1.40.0 ) sphinx? ( app-misc/sphinx ) systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) +DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql oqgraph? ( >=dev-libs/boost-1.40.0 ) sphinx? ( app-misc/sphinx ) systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 >=dev-util/cmake-2.6.3 DESCRIPTION=MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged. EAPI=4 HOMEPAGE=http://mariadb.org/ @@ -7,9 +7,9 @@ IUSE=debug embedded minimal +perl selinux ssl static test latin1 extraengine clu KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=GPL-2 PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.5 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) +RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql oqgraph? ( >=dev-libs/boost-1.40.0 ) sphinx? ( app-misc/sphinx ) systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) REQUIRED_USE=tcmalloc? ( !jemalloc ) jemalloc? ( !tcmalloc ) SLOT=0 SRC_URI=http://ftp.osuosl.org/pub/mariadb/mariadb-5.5.28/kvm-tarbake-jaunty-x86/mariadb-5.5.28.tar.gz http://ftp.rediris.es/mirror/MariaDB/mariadb-5.5.28/kvm-tarbake-jaunty-x86/mariadb-5.5.28.tar.gz http://maria.llarian.net/download/mariadb-5.5.28/kvm-tarbake-jaunty-x86/mariadb-5.5.28.tar.gz http://launchpad.net/maria/5.5/ongoing/+download/mariadb-5.5.28.tar.gz http://mirrors.fe.up.pt/pub/mariadb/mariadb-5.5.28/kvm-tarbake-jaunty-x86/mariadb-5.5.28.tar.gz http://ftp-stud.hs-esslingen.de/pub/Mirrors/mariadb/mariadb-5.5.28/kvm-tarbake-jaunty-x86/mariadb-5.5.28.tar.gz mirror://gentoo/mysql-extras-20120906-1344Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20120906-1344Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20120906-1344Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20120906-1344Z.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib 9aa8a023e062fca0ba79362d9d0cc488 mysql-cmake ceb13d06802b7718713d30838257cadc mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=1f74d66519b1799f22b8a47bf0fd94cd +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib 9aa8a023e062fca0ba79362d9d0cc488 mysql-cmake 443f8896dfee2700765061f4f2539880 mysql-v2 e48569e19260bec2a6f46cbe5d257b7d mysql_fx f783e104c8bbd017eefc5359f327975b prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=ba186c85a9bf2bf959f2f775b1913b4a diff --git a/metadata/md5-cache/dev-db/mariadb-5.5.28a b/metadata/md5-cache/dev-db/mariadb-5.5.28a new file mode 100644 index 000000000000..a65c215d86af --- /dev/null +++ b/metadata/md5-cache/dev-db/mariadb-5.5.28a @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack +DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql oqgraph? ( >=dev-libs/boost-1.40.0 ) sphinx? ( app-misc/sphinx ) systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 >=dev-util/cmake-2.6.3 +DESCRIPTION=MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged. +EAPI=4 +HOMEPAGE=http://mariadb.org/ +IUSE=debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 berkdb +community profiling oqgraph sphinx jemalloc tcmalloc systemtap pbxt +KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +LICENSE=GPL-2 +PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.5 +RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql oqgraph? ( >=dev-libs/boost-1.40.0 ) sphinx? ( app-misc/sphinx ) systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) +REQUIRED_USE=tcmalloc? ( !jemalloc ) jemalloc? ( !tcmalloc ) +SLOT=0 +SRC_URI=http://ftp.osuosl.org/pub/mariadb/mariadb-5.5.28a/kvm-tarbake-jaunty-x86/mariadb-5.5.28a.tar.gz http://ftp.rediris.es/mirror/MariaDB/mariadb-5.5.28a/kvm-tarbake-jaunty-x86/mariadb-5.5.28a.tar.gz http://maria.llarian.net/download/mariadb-5.5.28a/kvm-tarbake-jaunty-x86/mariadb-5.5.28a.tar.gz http://launchpad.net/maria/5.5/ongoing/+download/mariadb-5.5.28a.tar.gz http://mirrors.fe.up.pt/pub/mariadb/mariadb-5.5.28a/kvm-tarbake-jaunty-x86/mariadb-5.5.28a.tar.gz http://ftp-stud.hs-esslingen.de/pub/Mirrors/mariadb/mariadb-5.5.28a/kvm-tarbake-jaunty-x86/mariadb-5.5.28a.tar.gz mirror://gentoo/mysql-extras-20130120-0100Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20130120-0100Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20130120-0100Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20130120-0100Z.tar.bz2 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib 9aa8a023e062fca0ba79362d9d0cc488 mysql-cmake 443f8896dfee2700765061f4f2539880 mysql-v2 e48569e19260bec2a6f46cbe5d257b7d mysql_fx f783e104c8bbd017eefc5359f327975b prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=fc6304e5efba70a086ff92907028e0ca diff --git a/metadata/md5-cache/dev-db/mysql-5.0.91 b/metadata/md5-cache/dev-db/mysql-5.0.91 deleted file mode 100644 index 1b2b77aaae7d..000000000000 --- a/metadata/md5-cache/dev-db/mysql-5.0.91 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql-community !dev-db/mysql-cluster !dev-db/mariadb virtual/yacc static? ( sys-libs/ncurses[static-libs] ) berkdb? ( sys-apps/ed ) -DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. -EAPI=2 -HOMEPAGE=http://www.mysql.com/ -IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 berkdb +community profiling -KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris -LICENSE=GPL-2 -PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.0 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql-community !dev-db/mysql-cluster !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) -SLOT=0 -SRC_URI=http://downloads.mysql.com/archives/mysql-5.0/mysql-5.0.91.tar.gz mirror://mysql/Downloads/MySQL-5.0/mysql-5.0.91.tar.gz mirror://gentoo/mysql-extras-20100809-0452Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20100809-0452Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20100809-0452Z.tar.bz2 -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql 25ebb848dfea5d025a02d0d014fa101a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=5a9632880ae3a5aece20904a22263d2a diff --git a/metadata/md5-cache/dev-db/mysql-5.0.92 b/metadata/md5-cache/dev-db/mysql-5.0.92 deleted file mode 100644 index 9938781aaf8c..000000000000 --- a/metadata/md5-cache/dev-db/mysql-5.0.92 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql-community !dev-db/mysql-cluster !dev-db/mariadb virtual/yacc berkdb? ( sys-apps/ed ) -DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. -EAPI=4 -HOMEPAGE=http://www.mysql.com/ -IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 berkdb +community profiling -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris -LICENSE=GPL-2 -PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.0 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql-community !dev-db/mysql-cluster !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) -SLOT=0 -SRC_URI=http://downloads.mysql.com/archives/mysql-5.0/mysql-5.0.92.tar.gz mirror://mysql/Downloads/MySQL-5.0/mysql-5.0.92.tar.gz mirror://gentoo/mysql-extras-20110713-0702Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20110713-0702Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20110713-0702Z.tar.bz2 -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql 25ebb848dfea5d025a02d0d014fa101a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=14358c5e085c9db5665ab5511a798f4f diff --git a/metadata/md5-cache/dev-db/mysql-5.0.96 b/metadata/md5-cache/dev-db/mysql-5.0.96 index 4a3f202b1f72..f8967a342fae 100644 --- a/metadata/md5-cache/dev-db/mysql-5.0.96 +++ b/metadata/md5-cache/dev-db/mysql-5.0.96 @@ -4,11 +4,11 @@ DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. EAPI=4 HOMEPAGE=http://www.mysql.com/ IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 berkdb +community profiling -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris +KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris LICENSE=GPL-2 PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.0 RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql-community !dev-db/mysql-cluster !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) SLOT=0 SRC_URI=http://downloads.mysql.com/archives/mysql-5.0/mysql-5.0.96.tar.gz mirror://mysql/Downloads/MySQL-5.0/mysql-5.0.96.tar.gz mirror://gentoo/mysql-extras-20120401-2131Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20120401-2131Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20120401-2131Z.tar.bz2 _eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql 25ebb848dfea5d025a02d0d014fa101a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=92f6cde57b86fb2b0c023957d54bba9c +_md5_=6ded32b90ac13c5ff676c484cc7a2778 diff --git a/metadata/md5-cache/dev-db/mysql-5.1.51 b/metadata/md5-cache/dev-db/mysql-5.1.51 deleted file mode 100644 index bac2ef0299b6..000000000000 --- a/metadata/md5-cache/dev-db/mysql-5.1.51 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) >=sys-devel/libtool-2.2.10 sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql-community !dev-db/mysql-cluster !dev-db/mariadb virtual/yacc >=dev-util/cmake-2.4.3 -DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. -EAPI=4 -HOMEPAGE=http://www.mysql.com/ -IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 +community profiling pbxt xtradb -KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x64-macos ~x86-solaris -LICENSE=GPL-2 -PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.1 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql-community !dev-db/mysql-cluster !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) -SLOT=0 -SRC_URI=http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.51.tar.gz mirror://mysql/Downloads/MySQL-5.1/mysql-5.1.51.tar.gz mirror://gentoo/mysql-extras-20101006-0004Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20101006-0004Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20101006-0004Z.tar.bz2 pbxt? ( http://www.primebase.org/download/pbxt-1.0.11-6-pre-ga.tar.gz mirror://sourceforge/pbxt/pbxt-1.0.11-6-pre-ga.tar.gz ) xtradb? ( http://www.percona.com//percona-builds//Percona-Server/Percona-Server-5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//percona-builds//xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//mysql/xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz ) -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql 25ebb848dfea5d025a02d0d014fa101a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=1798d5eec56fe60eb96f9d5187f90101 diff --git a/metadata/md5-cache/dev-db/mysql-5.1.52 b/metadata/md5-cache/dev-db/mysql-5.1.52 deleted file mode 100644 index 8d5fd3437fb2..000000000000 --- a/metadata/md5-cache/dev-db/mysql-5.1.52 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) >=sys-devel/libtool-2.2.10 sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql-community !dev-db/mysql-cluster !dev-db/mariadb virtual/yacc >=dev-util/cmake-2.4.3 -DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. -EAPI=4 -HOMEPAGE=http://www.mysql.com/ -IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 +community profiling pbxt xtradb -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x64-macos ~x86-solaris -LICENSE=GPL-2 -PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.1 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql-community !dev-db/mysql-cluster !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) -SLOT=0 -SRC_URI=http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.52.tar.gz mirror://mysql/Downloads/MySQL-5.1/mysql-5.1.52.tar.gz mirror://gentoo/mysql-extras-20101104-1842Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20101104-1842Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20101104-1842Z.tar.bz2 pbxt? ( http://www.primebase.org/download/pbxt-1.0.11-6-pre-ga.tar.gz mirror://sourceforge/pbxt/pbxt-1.0.11-6-pre-ga.tar.gz ) xtradb? ( http://www.percona.com//percona-builds//Percona-Server/Percona-Server-5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//percona-builds//xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//mysql/xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz ) -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql 25ebb848dfea5d025a02d0d014fa101a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=612d470cbf4caaca80ddcdae3ca86a2a diff --git a/metadata/md5-cache/dev-db/mysql-5.1.52-r1 b/metadata/md5-cache/dev-db/mysql-5.1.52-r1 deleted file mode 100644 index 2de7fc9889f1..000000000000 --- a/metadata/md5-cache/dev-db/mysql-5.1.52-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) >=sys-devel/libtool-2.2.10 sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql-community !dev-db/mysql-cluster !dev-db/mariadb virtual/yacc >=dev-util/cmake-2.4.3 -DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. -EAPI=4 -HOMEPAGE=http://www.mysql.com/ -IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 +community profiling pbxt xtradb -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x64-macos ~x86-solaris -LICENSE=GPL-2 -PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.1 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql-community !dev-db/mysql-cluster !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) -SLOT=0 -SRC_URI=http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.52.tar.gz mirror://mysql/Downloads/MySQL-5.1/mysql-5.1.52.tar.gz mirror://gentoo/mysql-extras-20101128-2122Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20101128-2122Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20101128-2122Z.tar.bz2 pbxt? ( http://www.primebase.org/download/pbxt-1.0.11-6-pre-ga.tar.gz mirror://sourceforge/pbxt/pbxt-1.0.11-6-pre-ga.tar.gz ) xtradb? ( http://www.percona.com//percona-builds//Percona-Server/Percona-Server-5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//percona-builds//xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//mysql/xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz ) -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql 25ebb848dfea5d025a02d0d014fa101a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=0b541577bb0045454d653e20fff7dce5 diff --git a/metadata/md5-cache/dev-db/mysql-5.1.53 b/metadata/md5-cache/dev-db/mysql-5.1.53 deleted file mode 100644 index b2a6bf817a4c..000000000000 --- a/metadata/md5-cache/dev-db/mysql-5.1.53 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) >=sys-devel/libtool-2.2.10 sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql-community !dev-db/mysql-cluster !dev-db/mariadb virtual/yacc >=dev-util/cmake-2.4.3 -DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. -EAPI=4 -HOMEPAGE=http://www.mysql.com/ -IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 +community profiling pbxt xtradb -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x64-macos ~x86-solaris -LICENSE=GPL-2 -PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.1 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql-community !dev-db/mysql-cluster !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) -SLOT=0 -SRC_URI=http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.53.tar.gz mirror://mysql/Downloads/MySQL-5.1/mysql-5.1.53.tar.gz mirror://gentoo/mysql-extras-20101128-2122Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20101128-2122Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20101128-2122Z.tar.bz2 pbxt? ( http://www.primebase.org/download/pbxt-1.0.11-6-pre-ga.tar.gz mirror://sourceforge/pbxt/pbxt-1.0.11-6-pre-ga.tar.gz ) xtradb? ( http://www.percona.com//percona-builds//Percona-Server/Percona-Server-5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//percona-builds//xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//mysql/xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz ) -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql 25ebb848dfea5d025a02d0d014fa101a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=21c66e5b7d0ba791a20969a867beb724 diff --git a/metadata/md5-cache/dev-db/mysql-5.1.56 b/metadata/md5-cache/dev-db/mysql-5.1.56 deleted file mode 100644 index 7544839a9227..000000000000 --- a/metadata/md5-cache/dev-db/mysql-5.1.56 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) >=sys-devel/libtool-2.2.10 sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql-community !dev-db/mysql-cluster !dev-db/mariadb virtual/yacc >=dev-util/cmake-2.4.3 -DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. -EAPI=4 -HOMEPAGE=http://www.mysql.com/ -IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 +community profiling pbxt xtradb -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x64-macos ~x86-solaris -LICENSE=GPL-2 -PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.1 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mysql-community !dev-db/mysql-cluster !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) -SLOT=0 -SRC_URI=http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.56.tar.gz mirror://mysql/Downloads/MySQL-5.1/mysql-5.1.56.tar.gz mirror://gentoo/mysql-extras-20110426-1046Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20110426-1046Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20110426-1046Z.tar.bz2 pbxt? ( http://www.primebase.org/download/pbxt-1.0.11-6-pre-ga.tar.gz mirror://sourceforge/pbxt/pbxt-1.0.11-6-pre-ga.tar.gz ) xtradb? ( http://www.percona.com//percona-builds//Percona-Server/Percona-Server-5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//percona-builds//xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//mysql/xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz ) -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql 25ebb848dfea5d025a02d0d014fa101a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=2c2bbbebdd4c3d3b67df721599f2da85 diff --git a/metadata/md5-cache/dev-db/mysql-5.1.56-r1 b/metadata/md5-cache/dev-db/mysql-5.1.56-r1 deleted file mode 100644 index 9f0ded7bdc9e..000000000000 --- a/metadata/md5-cache/dev-db/mysql-5.1.56-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) >=sys-devel/libtool-2.2.10 sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 -DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. -EAPI=4 -HOMEPAGE=http://www.mysql.com/ -IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 berkdb +community profiling pbxt xtradb -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x64-macos ~x86-solaris -LICENSE=GPL-2 -PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.1 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) -SLOT=0 -SRC_URI=http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.56.tar.gz mirror://mysql/Downloads/MySQL-5.1/mysql-5.1.56.tar.gz mirror://gentoo/mysql-extras-20110713-0702Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20110713-0702Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20110713-0702Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20110713-0702Z.tar.bz2 pbxt? ( http://www.primebase.org/download/pbxt-1.0.11-6-pre-ga.tar.gz mirror://sourceforge/pbxt/pbxt-1.0.11-6-pre-ga.tar.gz ) xtradb? ( http://www.percona.com//percona-builds//Percona-Server/Percona-Server-5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//percona-builds//xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//mysql/xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz ) -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools ab454a153e06a18669eec3d2c44cc018 mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=92a6f3e6ea30c043b46d3207034d35ae diff --git a/metadata/md5-cache/dev-db/mysql-5.1.57 b/metadata/md5-cache/dev-db/mysql-5.1.57 deleted file mode 100644 index dd8e7464bab5..000000000000 --- a/metadata/md5-cache/dev-db/mysql-5.1.57 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) >=sys-devel/libtool-2.2.10 sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 -DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. -EAPI=4 -HOMEPAGE=http://www.mysql.com/ -IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 berkdb +community profiling pbxt xtradb -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x64-macos ~x86-solaris -LICENSE=GPL-2 -PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.1 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) -SLOT=0 -SRC_URI=http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.57.tar.gz mirror://mysql/Downloads/MySQL-5.1/mysql-5.1.57.tar.gz mirror://gentoo/mysql-extras-20110713-0702Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20110713-0702Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20110713-0702Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20110713-0702Z.tar.bz2 pbxt? ( http://www.primebase.org/download/pbxt-1.0.11-6-pre-ga.tar.gz mirror://sourceforge/pbxt/pbxt-1.0.11-6-pre-ga.tar.gz ) xtradb? ( http://www.percona.com//percona-builds//Percona-Server/Percona-Server-5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//percona-builds//xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//mysql/xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz ) -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools ab454a153e06a18669eec3d2c44cc018 mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=4e3fb4fe0a32d13c3f72337fa38888e7 diff --git a/metadata/md5-cache/dev-db/mysql-5.1.58-r1 b/metadata/md5-cache/dev-db/mysql-5.1.58-r1 deleted file mode 100644 index 3ce15a1bd738..000000000000 --- a/metadata/md5-cache/dev-db/mysql-5.1.58-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) >=sys-devel/libtool-2.2.10 sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 -DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. -EAPI=4 -HOMEPAGE=http://www.mysql.com/ -IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 berkdb +community profiling pbxt xtradb -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x64-macos ~x86-solaris -LICENSE=GPL-2 -PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.1 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) -SLOT=0 -SRC_URI=http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.58.tar.gz mirror://mysql/Downloads/MySQL-5.1/mysql-5.1.58.tar.gz mirror://gentoo/mysql-extras-20110721-0450Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20110721-0450Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20110721-0450Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20110721-0450Z.tar.bz2 pbxt? ( http://www.primebase.org/download/pbxt-1.0.11-6-pre-ga.tar.gz mirror://sourceforge/pbxt/pbxt-1.0.11-6-pre-ga.tar.gz ) xtradb? ( http://www.percona.com//percona-builds//Percona-Server/Percona-Server-5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//percona-builds//xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//mysql/xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz ) -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools ab454a153e06a18669eec3d2c44cc018 mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=5eb0a76858f8b3fc3157a2f9d88e62f7 diff --git a/metadata/md5-cache/dev-db/mysql-5.1.59 b/metadata/md5-cache/dev-db/mysql-5.1.59 deleted file mode 100644 index b2d832063347..000000000000 --- a/metadata/md5-cache/dev-db/mysql-5.1.59 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) >=sys-devel/libtool-2.2.10 sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 -DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. -EAPI=4 -HOMEPAGE=http://www.mysql.com/ -IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 berkdb +community profiling pbxt xtradb -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-solaris -LICENSE=GPL-2 -PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.1 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) -SLOT=0 -SRC_URI=http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.59.tar.gz mirror://mysql/Downloads/MySQL-5.1/mysql-5.1.59.tar.gz mirror://gentoo/mysql-extras-20110721-0450Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20110721-0450Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20110721-0450Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20110721-0450Z.tar.bz2 pbxt? ( http://www.primebase.org/download/pbxt-1.0.11-6-pre-ga.tar.gz mirror://sourceforge/pbxt/pbxt-1.0.11-6-pre-ga.tar.gz ) xtradb? ( http://www.percona.com//percona-builds//Percona-Server/Percona-Server-5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//percona-builds//xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//mysql/xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz ) -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools ab454a153e06a18669eec3d2c44cc018 mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=914ffb4ac4e2f0c8faf1c18b6fe5325c diff --git a/metadata/md5-cache/dev-db/mysql-5.1.61 b/metadata/md5-cache/dev-db/mysql-5.1.61 deleted file mode 100644 index 26a7dabd9ce9..000000000000 --- a/metadata/md5-cache/dev-db/mysql-5.1.61 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) >=sys-devel/libtool-2.2.10 sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 -DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. -EAPI=4 -HOMEPAGE=http://www.mysql.com/ -IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 berkdb +community profiling pbxt xtradb -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-solaris -LICENSE=GPL-2 -PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.1 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) -SLOT=0 -SRC_URI=http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.61.tar.gz mirror://mysql/Downloads/MySQL-5.1/mysql-5.1.61.tar.gz mirror://gentoo/mysql-extras-20111118-2347Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20111118-2347Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20111118-2347Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20111118-2347Z.tar.bz2 pbxt? ( http://www.primebase.org/download/pbxt-1.0.11-6-pre-ga.tar.gz mirror://sourceforge/pbxt/pbxt-1.0.11-6-pre-ga.tar.gz ) xtradb? ( http://www.percona.com//percona-builds//Percona-Server/Percona-Server-5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//percona-builds//xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//mysql/xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz ) -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools ab454a153e06a18669eec3d2c44cc018 mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=d223adb91148dbfddda0a679bbb3f0a8 diff --git a/metadata/md5-cache/dev-db/mysql-5.1.62-r1 b/metadata/md5-cache/dev-db/mysql-5.1.62-r1 deleted file mode 100644 index 3ac983e21262..000000000000 --- a/metadata/md5-cache/dev-db/mysql-5.1.62-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) >=sys-devel/libtool-2.2.10 sys-devel/gnuconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 -DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. -EAPI=4 -HOMEPAGE=http://www.mysql.com/ -IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 berkdb +community profiling pbxt xtradb -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-solaris -LICENSE=GPL-2 -PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.1 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) -SLOT=0 -SRC_URI=http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.62.tar.gz mirror://mysql/Downloads/MySQL-5.1/mysql-5.1.62.tar.gz mirror://gentoo/mysql-extras-20120421-2004Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20120421-2004Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20120421-2004Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20120421-2004Z.tar.bz2 pbxt? ( http://www.primebase.org/download/pbxt-1.0.11-6-pre-ga.tar.gz mirror://sourceforge/pbxt/pbxt-1.0.11-6-pre-ga.tar.gz ) xtradb? ( http://www.percona.com//percona-builds//Percona-Server/Percona-Server-5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//percona-builds//xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//mysql/xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz ) -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools ab454a153e06a18669eec3d2c44cc018 mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=cb312800b1081b239cd643283b41a7bb diff --git a/metadata/md5-cache/dev-db/mysql-5.1.66 b/metadata/md5-cache/dev-db/mysql-5.1.66 index a8a53f1546ee..72b1e93aaa86 100644 --- a/metadata/md5-cache/dev-db/mysql-5.1.66 +++ b/metadata/md5-cache/dev-db/mysql-5.1.66 @@ -10,5 +10,5 @@ PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.1 RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) SLOT=0 SRC_URI=http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.66.tar.gz mirror://mysql/Downloads/MySQL-5.1/mysql-5.1.66.tar.gz mirror://gentoo/mysql-extras-20121101-2319Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20121101-2319Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20121101-2319Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20121101-2319Z.tar.bz2 pbxt? ( http://www.primebase.org/download/pbxt-1.0.11-6-pre-ga.tar.gz mirror://sourceforge/pbxt/pbxt-1.0.11-6-pre-ga.tar.gz ) xtradb? ( http://www.percona.com//percona-builds//Percona-Server/Percona-Server-5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//percona-builds//xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//mysql/xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz ) -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools ab454a153e06a18669eec3d2c44cc018 mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools 8d352060f916d8b61f690c493a98fce8 mysql-v2 e48569e19260bec2a6f46cbe5d257b7d mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=6ca8d61b9f8fde6e48f91d7623fe281a diff --git a/metadata/md5-cache/dev-db/mysql-5.1.62 b/metadata/md5-cache/dev-db/mysql-5.1.67 similarity index 75% rename from metadata/md5-cache/dev-db/mysql-5.1.62 rename to metadata/md5-cache/dev-db/mysql-5.1.67 index 7cc8da6dd631..04de69a359a4 100644 --- a/metadata/md5-cache/dev-db/mysql-5.1.62 +++ b/metadata/md5-cache/dev-db/mysql-5.1.67 @@ -4,11 +4,11 @@ DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. EAPI=4 HOMEPAGE=http://www.mysql.com/ IUSE=big-tables debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 berkdb +community profiling pbxt xtradb -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-solaris +KEYWORDS=~alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-solaris LICENSE=GPL-2 PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.1 RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) SLOT=0 -SRC_URI=http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.62.tar.gz mirror://mysql/Downloads/MySQL-5.1/mysql-5.1.62.tar.gz mirror://gentoo/mysql-extras-20120401-2131Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20120401-2131Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20120401-2131Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20120401-2131Z.tar.bz2 pbxt? ( http://www.primebase.org/download/pbxt-1.0.11-6-pre-ga.tar.gz mirror://sourceforge/pbxt/pbxt-1.0.11-6-pre-ga.tar.gz ) xtradb? ( http://www.percona.com//percona-builds//Percona-Server/Percona-Server-5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//percona-builds//xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//mysql/xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz ) -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools ab454a153e06a18669eec3d2c44cc018 mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=761dac83b4fd4d3ae2a57d4088a17941 +SRC_URI=http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.67.tar.gz mirror://mysql/Downloads/MySQL-5.1/mysql-5.1.67.tar.gz mirror://gentoo/mysql-extras-20121101-2319Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20121101-2319Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20121101-2319Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20121101-2319Z.tar.bz2 pbxt? ( http://www.primebase.org/download/pbxt-1.0.11-6-pre-ga.tar.gz mirror://sourceforge/pbxt/pbxt-1.0.11-6-pre-ga.tar.gz ) xtradb? ( http://www.percona.com//percona-builds//Percona-Server/Percona-Server-5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//percona-builds//xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz http://www.percona.com//mysql/xtradb/5.1.45-10/source/percona-xtradb-1.0.6-10.tar.gz ) +_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 mysql-autotools 8d352060f916d8b61f690c493a98fce8 mysql-v2 e48569e19260bec2a6f46cbe5d257b7d mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=2496f4fa07707329b82734896a142d52 diff --git a/metadata/md5-cache/dev-db/mysql-5.5.19 b/metadata/md5-cache/dev-db/mysql-5.5.19 index 638484f35bf8..c25eb4a55db3 100644 --- a/metadata/md5-cache/dev-db/mysql-5.5.19 +++ b/metadata/md5-cache/dev-db/mysql-5.5.19 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 >=dev-util/cmake-2.6.3 systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) +DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 >=dev-util/cmake-2.6.3 DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. EAPI=4 HOMEPAGE=http://www.mysql.com/ @@ -7,9 +7,9 @@ IUSE=debug embedded minimal +perl selinux ssl static test latin1 extraengine clu KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd LICENSE=GPL-2 PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.5 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) +RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) REQUIRED_USE=tcmalloc? ( !jemalloc ) jemalloc? ( !tcmalloc ) SLOT=0 SRC_URI=http://downloads.mysql.com/archives/mysql-5.5/mysql-5.5.19.tar.gz mirror://mysql/Downloads/MySQL-5.5/mysql-5.5.19.tar.gz mirror://gentoo/mysql-extras-20110713-0702Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20110713-0702Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20110713-0702Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20110713-0702Z.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib 9aa8a023e062fca0ba79362d9d0cc488 mysql-cmake ceb13d06802b7718713d30838257cadc mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=c5813fb9619dccd8aa7d8bbf43a57dc1 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib 9aa8a023e062fca0ba79362d9d0cc488 mysql-cmake 443f8896dfee2700765061f4f2539880 mysql-v2 e48569e19260bec2a6f46cbe5d257b7d mysql_fx f783e104c8bbd017eefc5359f327975b prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=71471400517826df319b17e7dc256fbe diff --git a/metadata/md5-cache/dev-db/mysql-5.5.20 b/metadata/md5-cache/dev-db/mysql-5.5.20 index ea4c864c3330..ccbf82b86d48 100644 --- a/metadata/md5-cache/dev-db/mysql-5.5.20 +++ b/metadata/md5-cache/dev-db/mysql-5.5.20 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 >=dev-util/cmake-2.6.3 systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) +DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 >=dev-util/cmake-2.6.3 DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. EAPI=4 HOMEPAGE=http://www.mysql.com/ @@ -7,9 +7,9 @@ IUSE=debug embedded minimal +perl selinux ssl static test latin1 extraengine clu KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd LICENSE=GPL-2 PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.5 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) +RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) REQUIRED_USE=tcmalloc? ( !jemalloc ) jemalloc? ( !tcmalloc ) SLOT=0 SRC_URI=http://downloads.mysql.com/archives/mysql-5.5/mysql-5.5.20.tar.gz mirror://mysql/Downloads/MySQL-5.5/mysql-5.5.20.tar.gz mirror://gentoo/mysql-extras-20111118-2347Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20111118-2347Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20111118-2347Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20111118-2347Z.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib 9aa8a023e062fca0ba79362d9d0cc488 mysql-cmake ceb13d06802b7718713d30838257cadc mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=f2656394c266450dbff4a7b43ffaa450 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib 9aa8a023e062fca0ba79362d9d0cc488 mysql-cmake 443f8896dfee2700765061f4f2539880 mysql-v2 e48569e19260bec2a6f46cbe5d257b7d mysql_fx f783e104c8bbd017eefc5359f327975b prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=e5718b5c8203e823626c35f41aee1b70 diff --git a/metadata/md5-cache/dev-db/mysql-5.5.21 b/metadata/md5-cache/dev-db/mysql-5.5.21 index 75aa5ef28d11..7dd61c6fde14 100644 --- a/metadata/md5-cache/dev-db/mysql-5.5.21 +++ b/metadata/md5-cache/dev-db/mysql-5.5.21 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 >=dev-util/cmake-2.6.3 systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) +DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 >=dev-util/cmake-2.6.3 DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. EAPI=4 HOMEPAGE=http://www.mysql.com/ @@ -7,9 +7,9 @@ IUSE=debug embedded minimal +perl selinux ssl static test latin1 extraengine clu KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd LICENSE=GPL-2 PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.5 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) +RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) REQUIRED_USE=tcmalloc? ( !jemalloc ) jemalloc? ( !tcmalloc ) SLOT=0 SRC_URI=http://downloads.mysql.com/archives/mysql-5.5/mysql-5.5.21.tar.gz mirror://mysql/Downloads/MySQL-5.5/mysql-5.5.21.tar.gz mirror://gentoo/mysql-extras-20111118-2347Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20111118-2347Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20111118-2347Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20111118-2347Z.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib 9aa8a023e062fca0ba79362d9d0cc488 mysql-cmake ceb13d06802b7718713d30838257cadc mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=e9e29f1eed089f1e590780c2720678cf +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib 9aa8a023e062fca0ba79362d9d0cc488 mysql-cmake 443f8896dfee2700765061f4f2539880 mysql-v2 e48569e19260bec2a6f46cbe5d257b7d mysql_fx f783e104c8bbd017eefc5359f327975b prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=5b060906aa2e2ab3ac525f4796774ca6 diff --git a/metadata/md5-cache/dev-db/mysql-5.5.22 b/metadata/md5-cache/dev-db/mysql-5.5.22 index 3800e7205577..815245bb4d6d 100644 --- a/metadata/md5-cache/dev-db/mysql-5.5.22 +++ b/metadata/md5-cache/dev-db/mysql-5.5.22 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 >=dev-util/cmake-2.6.3 systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) +DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 >=dev-util/cmake-2.6.3 DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. EAPI=4 HOMEPAGE=http://www.mysql.com/ @@ -7,9 +7,9 @@ IUSE=debug embedded minimal +perl selinux ssl static test latin1 extraengine clu KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd LICENSE=GPL-2 PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.5 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) +RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) REQUIRED_USE=tcmalloc? ( !jemalloc ) jemalloc? ( !tcmalloc ) SLOT=0 SRC_URI=http://downloads.mysql.com/archives/mysql-5.5/mysql-5.5.22.tar.gz mirror://mysql/Downloads/MySQL-5.5/mysql-5.5.22.tar.gz mirror://gentoo/mysql-extras-20120401-2131Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20120401-2131Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20120401-2131Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20120401-2131Z.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib 9aa8a023e062fca0ba79362d9d0cc488 mysql-cmake ceb13d06802b7718713d30838257cadc mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=8e4e7b88b13fff745d1594307cfaf721 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib 9aa8a023e062fca0ba79362d9d0cc488 mysql-cmake 443f8896dfee2700765061f4f2539880 mysql-v2 e48569e19260bec2a6f46cbe5d257b7d mysql_fx f783e104c8bbd017eefc5359f327975b prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=5b67c2cc722c52c6d1403940f65f7ab0 diff --git a/metadata/md5-cache/dev-db/mysql-5.5.22-r1 b/metadata/md5-cache/dev-db/mysql-5.5.22-r1 index ead00398a2bc..5fd78c6f0b15 100644 --- a/metadata/md5-cache/dev-db/mysql-5.5.22-r1 +++ b/metadata/md5-cache/dev-db/mysql-5.5.22-r1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 >=dev-util/cmake-2.6.3 systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) +DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 >=dev-util/cmake-2.6.3 DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. EAPI=4 HOMEPAGE=http://www.mysql.com/ @@ -7,9 +7,9 @@ IUSE=debug embedded minimal +perl selinux ssl static test latin1 extraengine clu KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd LICENSE=GPL-2 PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.5 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) +RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) REQUIRED_USE=tcmalloc? ( !jemalloc ) jemalloc? ( !tcmalloc ) SLOT=0 SRC_URI=http://downloads.mysql.com/archives/mysql-5.5/mysql-5.5.22.tar.gz mirror://mysql/Downloads/MySQL-5.5/mysql-5.5.22.tar.gz mirror://gentoo/mysql-extras-20120421-2004Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20120421-2004Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20120421-2004Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20120421-2004Z.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib 9aa8a023e062fca0ba79362d9d0cc488 mysql-cmake ceb13d06802b7718713d30838257cadc mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=d97966f9d11e4cfcf68bacf0485a693e +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib 9aa8a023e062fca0ba79362d9d0cc488 mysql-cmake 443f8896dfee2700765061f4f2539880 mysql-v2 e48569e19260bec2a6f46cbe5d257b7d mysql_fx f783e104c8bbd017eefc5359f327975b prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=2c1e8ee75e34c298bea205789c177d02 diff --git a/metadata/md5-cache/dev-db/mysql-5.5.28 b/metadata/md5-cache/dev-db/mysql-5.5.28 index 6cc49f49a586..055249f0b734 100644 --- a/metadata/md5-cache/dev-db/mysql-5.5.28 +++ b/metadata/md5-cache/dev-db/mysql-5.5.28 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack -DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 >=dev-util/cmake-2.6.3 systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) +DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 >=dev-util/cmake-2.6.3 DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. EAPI=4 HOMEPAGE=http://www.mysql.com/ @@ -7,9 +7,9 @@ IUSE=debug embedded minimal +perl selinux ssl static test latin1 extraengine clu KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-linux LICENSE=GPL-2 PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.5 -RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) +RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) REQUIRED_USE=tcmalloc? ( !jemalloc ) jemalloc? ( !tcmalloc ) SLOT=0 SRC_URI=http://downloads.mysql.com/archives/mysql-5.5/mysql-5.5.28.tar.gz mirror://mysql/Downloads/MySQL-5.5/mysql-5.5.28.tar.gz mirror://gentoo/mysql-extras-20120401-2131Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20120401-2131Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20120401-2131Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20120401-2131Z.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib 9aa8a023e062fca0ba79362d9d0cc488 mysql-cmake ceb13d06802b7718713d30838257cadc mysql-v2 a6debec1f7ea109a0726ed55861fd14a mysql_fx f783e104c8bbd017eefc5359f327975b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=0515d2b27b515c7d547027c6c40dd601 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib 9aa8a023e062fca0ba79362d9d0cc488 mysql-cmake 443f8896dfee2700765061f4f2539880 mysql-v2 e48569e19260bec2a6f46cbe5d257b7d mysql_fx f783e104c8bbd017eefc5359f327975b prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=408b6c531a5e8612478c9ba143b5a10c diff --git a/metadata/md5-cache/dev-db/mysql-5.5.29 b/metadata/md5-cache/dev-db/mysql-5.5.29 new file mode 100644 index 000000000000..8d4d4d0f0832 --- /dev/null +++ b/metadata/md5-cache/dev-db/mysql-5.5.29 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack +DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 >=dev-util/cmake-2.6.3 +DESCRIPTION=A fast, multi-threaded, multi-user SQL database server. +EAPI=4 +HOMEPAGE=http://www.mysql.com/ +IUSE=debug embedded minimal +perl selinux ssl static test latin1 extraengine cluster max-idx-128 berkdb +community profiling jemalloc tcmalloc systemtap +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-linux +LICENSE=GPL-2 +PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) =virtual/mysql-5.5 +RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.2.3 !dev-db/mariadb systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) jemalloc? ( dev-libs/jemalloc ) tcmalloc? ( dev-util/google-perftools ) !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) +REQUIRED_USE=tcmalloc? ( !jemalloc ) jemalloc? ( !tcmalloc ) +SLOT=0 +SRC_URI=http://downloads.mysql.com/archives/mysql-5.5/mysql-5.5.29.tar.gz mirror://mysql/Downloads/MySQL-5.5/mysql-5.5.29.tar.gz mirror://gentoo/mysql-extras-20130120-0100Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20130120-0100Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20130120-0100Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20130120-0100Z.tar.bz2 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib 9aa8a023e062fca0ba79362d9d0cc488 mysql-cmake 443f8896dfee2700765061f4f2539880 mysql-v2 e48569e19260bec2a6f46cbe5d257b7d mysql_fx f783e104c8bbd017eefc5359f327975b prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=b6da65cdf392a4a404702e5535af85d8 diff --git a/metadata/md5-cache/dev-embedded/urjtag-9999 b/metadata/md5-cache/dev-embedded/urjtag-9999 index ed146e926dda..409f4b650a4b 100644 --- a/metadata/md5-cache/dev-embedded/urjtag-9999 +++ b/metadata/md5-cache/dev-embedded/urjtag-9999 @@ -8,4 +8,4 @@ LICENSE=GPL-2 RDEPEND=ftdi? ( dev-embedded/libftdi ) ftd2xx? ( dev-embedded/libftd2xx ) readline? ( sys-libs/readline ) usb? ( virtual/libusb:1 ) !dev-embedded/jtag SLOT=0 _eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 git-2 e92e09651292b1bef5656592364550f7 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=a0f79419f6e919174678e98f705e88b5 +_md5_=13a8205ee7d0ff1251bac2bfe016c41f diff --git a/metadata/md5-cache/dev-games/physfs-2.0.3 b/metadata/md5-cache/dev-games/physfs-2.0.3 index cbdf47a9cc03..6b6153545293 100644 --- a/metadata/md5-cache/dev-games/physfs-2.0.3 +++ b/metadata/md5-cache/dev-games/physfs-2.0.3 @@ -4,9 +4,9 @@ DESCRIPTION=Abstraction layer for filesystem and archive access EAPI=2 HOMEPAGE=http://icculus.org/physfs/ IUSE=doc grp hog mvl qpak static-libs wad +zip -KEYWORDS=~alpha amd64 ~arm hppa ppc ppc64 sparc x86 ~x86-fbsd +KEYWORDS=alpha amd64 arm hppa ppc ppc64 sparc x86 ~x86-fbsd LICENSE=ZLIB SLOT=0 SRC_URI=http://icculus.org/physfs/downloads/physfs-2.0.3.tar.bz2 _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=35b02c41f9cdbadc0f20cdc5daed989e +_md5_=03de247e12a2c55d6d58fe1734667bec diff --git a/metadata/md5-cache/dev-haskell/arrows-0.4.4.1 b/metadata/md5-cache/dev-haskell/arrows-0.4.4.1 index 890d8773a8a5..3605dcfeb955 100644 --- a/metadata/md5-cache/dev-haskell/arrows-0.4.4.1 +++ b/metadata/md5-cache/dev-haskell/arrows-0.4.4.1 @@ -4,10 +4,10 @@ DESCRIPTION=Arrow classes and transformers EAPI=4 HOMEPAGE=http://www.haskell.org/arrows/ IUSE=doc hscolour profile -KEYWORDS=~alpha amd64 ia64 ppc ~ppc64 sparc x86 +KEYWORDS=alpha amd64 ia64 ppc ~ppc64 sparc x86 LICENSE=BSD RDEPEND=dev-haskell/stream[profile?] >=dev-lang/ghc-6.10.1 SLOT=0 SRC_URI=mirror://hackage/packages/archive/arrows/0.4.4.1/arrows-0.4.4.1.tar.gz _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 ghc-package f8674c44668a01a8b05d66a7c140008b haskell-cabal a2a8de4cff4a18a175b08057c65a7c4d multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=6220fc22663803c81c52ea9af5deed84 +_md5_=4b7ce86dba126308bd4a8605a8e322b8 diff --git a/metadata/md5-cache/dev-haskell/network-2.3.0.14 b/metadata/md5-cache/dev-haskell/network-2.3.0.14 index 00f4ba5fc5b7..49bd59912fff 100644 --- a/metadata/md5-cache/dev-haskell/network-2.3.0.14 +++ b/metadata/md5-cache/dev-haskell/network-2.3.0.14 @@ -4,10 +4,10 @@ DESCRIPTION=Low-level networking interface EAPI=4 HOMEPAGE=http://github.com/haskell/network IUSE=test doc hscolour profile -KEYWORDS=~alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +KEYWORDS=alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos LICENSE=BSD RDEPEND=dev-haskell/parsec[profile?] >=dev-lang/ghc-6.8.2 SLOT=0 SRC_URI=mirror://hackage/packages/archive/network/2.3.0.14/network-2.3.0.14.tar.gz _eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 ghc-package f8674c44668a01a8b05d66a7c140008b haskell-cabal a2a8de4cff4a18a175b08057c65a7c4d libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=51384ec1891b05c7fe4121ed237f6203 +_md5_=1ac11aef71c5739c9ec4ae2bb3dc3ae7 diff --git a/metadata/md5-cache/dev-java/java-config-2.1.12-r1 b/metadata/md5-cache/dev-java/java-config-2.1.12-r1 index 206ff08c666d..b4b26f1347bf 100644 --- a/metadata/md5-cache/dev-java/java-config-2.1.12-r1 +++ b/metadata/md5-cache/dev-java/java-config-2.1.12-r1 @@ -4,7 +4,7 @@ DESCRIPTION=Java environment configuration 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_8 python_targets_pypy1_9 -KEYWORDS=~amd64 ~arm ~ia64 ~ppc ppc64 ~x86 ~amd64-fbsd ~x86-fbsd +KEYWORDS=amd64 ~arm ~ia64 ~ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd LICENSE=GPL-2 PDEPEND=>=virtual/jre-1.5 RDEPEND=>=dev-java/java-config-wrapper-0.15 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_8?,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_8(-),-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_8? ( dev-python/pypy:1.8 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=2 SRC_URI=mirror://gentoo/java-config-2.1.12.tar.bz2 _eclasses_=distutils-r1 4de2bc5d5fcf225878bcf75551a1bd90 eutils d40dc948067bd3db1c8ebf7d51897313 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 b9091432451f035281bf6fc17720e820 python-utils-r1 069a968fde0ceb8a9cd5c6a89d77cbc2 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=6ad4005c88639e561baf42c685690208 +_md5_=30cb47fc337143a1aae4684ed3248a3f diff --git a/metadata/md5-cache/dev-lang/erlang-15.2.2 b/metadata/md5-cache/dev-lang/erlang-15.2.2 index e144b4a211c9..06b1a67c4f5c 100644 --- a/metadata/md5-cache/dev-lang/erlang-15.2.2 +++ b/metadata/md5-cache/dev-lang/erlang-15.2.2 @@ -4,10 +4,10 @@ DESCRIPTION=Erlang programming language, runtime environment, and large collecti EAPI=3 HOMEPAGE=http://www.erlang.org/ IUSE=compat-ethread doc emacs halfword hipe java kpoll odbc smp sctp ssl tk wxwidgets elibc_FreeBSD java -KEYWORDS=~alpha amd64 ~arm ~ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris +KEYWORDS=alpha amd64 ~arm ~ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris LICENSE=ErlPL-1.1 RDEPEND=>=dev-lang/perl-5.6.1 ssl? ( >=dev-libs/openssl-0.9.7d ) emacs? ( virtual/emacs ) java? ( >=virtual/jdk-1.2 ) odbc? ( dev-db/unixODBC ) java? ( >=dev-java/java-config-2.1.9-r1 ) SLOT=0 SRC_URI=http://www.erlang.org/download/otp_src_R15B02.tar.gz http://erlang.org/download/otp_doc_man_R15B02.tar.gz doc? ( http://erlang.org/download/otp_doc_html_R15B02.tar.gz ) _eclasses_=elisp-common 21605c8f0b2a5ffa3233faeb3f9df309 eutils d40dc948067bd3db1c8ebf7d51897313 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 wxwidgets fb1a306837717dfa2af841ecdf929565 -_md5_=d941e5b2a80a77fbb18ca381c1b0f94a +_md5_=5e2340260f6ac2d09d6fc8fa7e05bd22 diff --git a/metadata/md5-cache/dev-libs/libevent-2.0.21 b/metadata/md5-cache/dev-libs/libevent-2.0.21 index 5a5477593d26..525cc7056302 100644 --- a/metadata/md5-cache/dev-libs/libevent-2.0.21 +++ b/metadata/md5-cache/dev-libs/libevent-2.0.21 @@ -4,10 +4,10 @@ DESCRIPTION=A library to execute a function when a specific event occurs on a fi EAPI=2 HOMEPAGE=http://libevent.org/ IUSE=+ssl static-libs test -KEYWORDS=~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~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 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=BSD RDEPEND=ssl? ( dev-libs/openssl ) !<=dev-libs/9libs-1.0 SLOT=0 SRC_URI=mirror://github/libevent/libevent/libevent-2.0.21-stable.tar.gz _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=b52a5b3a24ca94c8a331fa513114e56f +_md5_=a9e76568e094797613c80de537a352d1 diff --git a/metadata/md5-cache/dev-libs/libgusb-0.1.4 b/metadata/md5-cache/dev-libs/libgusb-0.1.4 index acf1178069cc..753c35534941 100644 --- a/metadata/md5-cache/dev-libs/libgusb-0.1.4 +++ b/metadata/md5-cache/dev-libs/libgusb-0.1.4 @@ -4,7 +4,7 @@ DESCRIPTION=GObject wrapper for libusb EAPI=4 HOMEPAGE=https://gitorious.org/gusb/ IUSE=+introspection static-libs vala -KEYWORDS=~alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~sparc x86 +KEYWORDS=alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~sparc x86 LICENSE=LGPL-2.1+ RDEPEND=>=dev-libs/glib-2.28:2 virtual/libusb:1 virtual/udev[gudev] introspection? ( >=dev-libs/gobject-introspection-1.29 ) REQUIRED_USE=vala? ( introspection ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=http://people.freedesktop.org/~hughsient/releases/libgusb-0.1.4.tar.xz _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vala ad1e7234faa2244a7e10f1c864371475 -_md5_=360ca4db9aa4d9d76cc33c3416678a5c +_md5_=606b027329f20225054722b75fc64bc6 diff --git a/metadata/md5-cache/dev-perl/AnyEvent-I3-0.140.0 b/metadata/md5-cache/dev-perl/AnyEvent-I3-0.140.0 new file mode 100644 index 000000000000..3de6a8e4be9d --- /dev/null +++ b/metadata/md5-cache/dev-perl/AnyEvent-I3-0.140.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=dev-perl/AnyEvent dev-perl/JSON-XS dev-lang/perl[-build] +DESCRIPTION=Communicate with the i3 window manager +EAPI=5 +HOMEPAGE=http://search.cpan.org/dist/AnyEvent-I3/ +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) +RDEPEND=dev-perl/AnyEvent dev-perl/JSON-XS dev-lang/perl[-build] +SLOT=0 +SRC_URI=mirror://cpan/authors/id/M/MS/MSTPLBG/AnyEvent-I3-0.14.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=dfa58a632eeab59a39ab60c7a7cfb04a diff --git a/metadata/md5-cache/dev-perl/Carp-Assert-More-1.140.0 b/metadata/md5-cache/dev-perl/Carp-Assert-More-1.140.0 new file mode 100644 index 000000000000..2015e253c560 --- /dev/null +++ b/metadata/md5-cache/dev-perl/Carp-Assert-More-1.140.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=virtual/perl-Scalar-List-Utils dev-perl/Carp-Assert test? ( dev-perl/Test-Exception ) dev-lang/perl[-build] +DESCRIPTION=convenience wrappers around Carp::Assert +EAPI=5 +HOMEPAGE=http://search.cpan.org/dist/Carp-Assert-More/ +IUSE=test +KEYWORDS=~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) +RDEPEND=virtual/perl-Scalar-List-Utils dev-perl/Carp-Assert dev-lang/perl[-build] +SLOT=0 +SRC_URI=mirror://cpan/authors/id/P/PE/PETDANCE/Carp-Assert-More-1.14.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=444f0bea1e1b83d02a9359cd688f1e8a diff --git a/metadata/md5-cache/dev-perl/Crypt-SSLeay-0.640.0 b/metadata/md5-cache/dev-perl/Crypt-SSLeay-0.640.0 new file mode 100644 index 000000000000..6c63ea22af9f --- /dev/null +++ b/metadata/md5-cache/dev-perl/Crypt-SSLeay-0.640.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=>=dev-libs/openssl-0.9.7c virtual/perl-MIME-Base64 dev-lang/perl[-build] +DESCRIPTION=Crypt::SSLeay module for perl +EAPI=5 +HOMEPAGE=http://search.cpan.org/dist/Crypt-SSLeay/ +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=Artistic-2 +PDEPEND=dev-perl/libwww-perl +RDEPEND=>=dev-libs/openssl-0.9.7c virtual/perl-MIME-Base64 dev-lang/perl[-build] +SLOT=0 +SRC_URI=mirror://cpan/authors/id/N/NA/NANIS/Crypt-SSLeay-0.64.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=48f902b2816ebe14080952a8067cc597 diff --git a/metadata/md5-cache/dev-perl/Data-Random-0.80.0 b/metadata/md5-cache/dev-perl/Data-Random-0.80.0 new file mode 100644 index 000000000000..1b28a13e59b5 --- /dev/null +++ b/metadata/md5-cache/dev-perl/Data-Random-0.80.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=test? ( dev-perl/Test-Pod dev-perl/Test-Pod-Coverage ) dev-lang/perl[-build] +DESCRIPTION=A module used to generate random data +EAPI=5 +HOMEPAGE=http://search.cpan.org/dist/Data-Random/ +IUSE=test +KEYWORDS=~amd64 ~sparc ~x86 +LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) +RDEPEND=dev-lang/perl[-build] +SLOT=0 +SRC_URI=mirror://cpan/authors/id/B/BA/BAREFOOT/Data-Random-0.08.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=430fffec7d517303bb6fe2e55ba8f5a9 diff --git a/metadata/md5-cache/dev-perl/DateManip-6.380.0 b/metadata/md5-cache/dev-perl/DateManip-6.380.0 new file mode 100644 index 000000000000..71f48faa32a9 --- /dev/null +++ b/metadata/md5-cache/dev-perl/DateManip-6.380.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=virtual/perl-Storable >=virtual/perl-Module-Build-0.390.0 test? ( dev-perl/Test-Pod dev-perl/Test-Pod-Coverage dev-perl/Test-Inter ) dev-lang/perl[-build] +DESCRIPTION=Perl date manipulation routines +EAPI=5 +HOMEPAGE=http://search.cpan.org/dist/Date-Manip/ +IUSE=test +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris +LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) +RDEPEND=virtual/perl-Storable dev-lang/perl[-build] +SLOT=0 +SRC_URI=mirror://cpan/authors/id/S/SB/SBECK/Date-Manip-6.38.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=563b902bd3fb8f02d6bc98abfbd16d77 diff --git a/metadata/md5-cache/dev-perl/DateTime-0.780.0 b/metadata/md5-cache/dev-perl/DateTime-0.780.0 index f0f64c6a1529..7b81f893ba5b 100644 --- a/metadata/md5-cache/dev-perl/DateTime-0.780.0 +++ b/metadata/md5-cache/dev-perl/DateTime-0.780.0 @@ -4,10 +4,10 @@ DESCRIPTION=A date and time object EAPI=4 HOMEPAGE=http://search.cpan.org/dist/DateTime/ IUSE=test -KEYWORDS=~alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris +KEYWORDS=alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris LICENSE=Artistic-2 RDEPEND=>=dev-perl/Params-Validate-0.760.0 >=dev-perl/DateTime-TimeZone-1.90.0 >=dev-perl/DateTime-Locale-0.440.0 dev-lang/perl[-build] SLOT=0 SRC_URI=mirror://cpan/authors/id/D/DR/DROLSKY/DateTime-0.78.tar.gz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=ffbebdcecd2127a23e835a202cb3b7de +_md5_=bb9c2758ce6d587e5d4f2c592fc8e31b diff --git a/metadata/md5-cache/dev-perl/Devel-Caller-2.60.0 b/metadata/md5-cache/dev-perl/Devel-Caller-2.60.0 new file mode 100644 index 000000000000..fa4eb2d55df3 --- /dev/null +++ b/metadata/md5-cache/dev-perl/Devel-Caller-2.60.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=dev-perl/PadWalker dev-lang/perl[-build] +DESCRIPTION=Meatier versions of caller +EAPI=5 +HOMEPAGE=http://search.cpan.org/dist/Devel-Caller/ +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) +RDEPEND=dev-perl/PadWalker dev-lang/perl[-build] +SLOT=0 +SRC_URI=mirror://cpan/authors/id/R/RC/RCLAMP/Devel-Caller-2.06.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=e044a7c16dc7bc43125f07c5d1c14a90 diff --git a/metadata/md5-cache/dev-perl/Event-1.210.0 b/metadata/md5-cache/dev-perl/Event-1.210.0 new file mode 100644 index 000000000000..c9f10e5db36a --- /dev/null +++ b/metadata/md5-cache/dev-perl/Event-1.210.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=dev-lang/perl[-build] +DESCRIPTION=fast, generic event loop +EAPI=5 +HOMEPAGE=http://search.cpan.org/dist/Event/ +KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-solaris +LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) +RDEPEND=dev-lang/perl[-build] +SLOT=0 +SRC_URI=mirror://cpan/authors/id/J/JP/JPRIT/Event-1.21.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=d50ed86594f44667e4851b5d701686bf diff --git a/metadata/md5-cache/dev-perl/Net-SSH2-0.460.0 b/metadata/md5-cache/dev-perl/Net-SSH2-0.460.0 new file mode 100644 index 000000000000..7146785dd607 --- /dev/null +++ b/metadata/md5-cache/dev-perl/Net-SSH2-0.460.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=net-libs/libssh2 >=virtual/perl-ExtUtils-MakeMaker-6.50 dev-lang/perl[-build] +DESCRIPTION=Net::SSH2 - Support for the SSH 2 protocol via libssh2. +EAPI=5 +HOMEPAGE=http://search.cpan.org/dist/Net-SSH2/ +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) +RDEPEND=net-libs/libssh2 >=virtual/perl-ExtUtils-MakeMaker-6.50 dev-lang/perl[-build] +SLOT=0 +SRC_URI=mirror://cpan/authors/id/R/RK/RKITOVER/Net-SSH2-0.46.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=019bd4017001ac3bf9f41b98f09f5e4b diff --git a/metadata/md5-cache/dev-perl/Net-SSLeay-1.520.0 b/metadata/md5-cache/dev-perl/Net-SSLeay-1.520.0 new file mode 100644 index 000000000000..441faf2f37b5 --- /dev/null +++ b/metadata/md5-cache/dev-perl/Net-SSLeay-1.520.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=dev-libs/openssl dev-lang/perl[-build] +DESCRIPTION=Net::SSLeay module for perl +EAPI=5 +HOMEPAGE=http://search.cpan.org/dist/Net-SSLeay/ +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=SSLeay +RDEPEND=dev-libs/openssl dev-lang/perl[-build] +SLOT=0 +SRC_URI=mirror://cpan/authors/id/M/MI/MIKEM/Net-SSLeay-1.52.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=554e907b137bca7311dbe23fb3fb5309 diff --git a/metadata/md5-cache/dev-perl/POE-Component-IKC-0.230.300 b/metadata/md5-cache/dev-perl/POE-Component-IKC-0.230.300 new file mode 100644 index 000000000000..0fb9baf99aa1 --- /dev/null +++ b/metadata/md5-cache/dev-perl/POE-Component-IKC-0.230.300 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=>=dev-perl/POE-API-Peek-1.34 dev-perl/POE dev-perl/Devel-Size dev-lang/perl[-build] +DESCRIPTION=POE Inter-Kernel Communication +EAPI=5 +HOMEPAGE=http://search.cpan.org/dist/POE-Component-IKC/ +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) +RDEPEND=>=dev-perl/POE-API-Peek-1.34 dev-perl/POE dev-perl/Devel-Size dev-lang/perl[-build] +SLOT=0 +SRC_URI=mirror://cpan/authors/id/G/GW/GWYN/POE-Component-IKC-0.2303.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=f9ceb7770f5fcc1ead5e94022691b98d diff --git a/metadata/md5-cache/dev-perl/PPIx-Regexp-0.29.0 b/metadata/md5-cache/dev-perl/PPIx-Regexp-0.29.0 new file mode 100644 index 000000000000..e6da047ccc5e --- /dev/null +++ b/metadata/md5-cache/dev-perl/PPIx-Regexp-0.29.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=dev-perl/List-MoreUtils dev-perl/PPI virtual/perl-Scalar-List-Utils virtual/perl-Module-Build dev-lang/perl[-build] +DESCRIPTION=Represent a regular expression of some sort +EAPI=5 +HOMEPAGE=http://search.cpan.org/dist/PPIx-Regexp/ +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) +RDEPEND=dev-perl/List-MoreUtils dev-perl/PPI virtual/perl-Scalar-List-Utils dev-lang/perl[-build] +SLOT=0 +SRC_URI=mirror://cpan/authors/id/W/WY/WYANT/PPIx-Regexp-0.029.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=2fbfd4842fae69b8699a6f042c815615 diff --git a/metadata/md5-cache/dev-perl/dbix-searchbuilder-1.630.0 b/metadata/md5-cache/dev-perl/dbix-searchbuilder-1.630.0 new file mode 100644 index 000000000000..0d0c8f52b496 --- /dev/null +++ b/metadata/md5-cache/dev-perl/dbix-searchbuilder-1.630.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=test? ( dev-perl/DBI dev-perl/DBIx-DBSchema dev-perl/Want >=dev-perl/Cache-Simple-TimedExpiry-0.210.0 dev-perl/Clone dev-perl/Class-Accessor >=dev-perl/class-returnvalue-0.400.0 >=dev-perl/capitalization-0.30.0 dev-perl/DBD-SQLite >=virtual/perl-Test-Simple-0.520.0 ) dev-lang/perl[-build] +DESCRIPTION=Encapsulate SQL queries and rows in simple perl objects +EAPI=5 +HOMEPAGE=http://search.cpan.org/dist/DBIx-SearchBuilder/ +IUSE=test +KEYWORDS=~amd64 ~hppa ~ppc ~x86 +LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) +RDEPEND=dev-perl/DBI dev-perl/DBIx-DBSchema dev-perl/Want >=dev-perl/Cache-Simple-TimedExpiry-0.210.0 dev-perl/Clone dev-perl/Class-Accessor >=dev-perl/class-returnvalue-0.400.0 >=dev-perl/capitalization-0.30.0 dev-lang/perl[-build] +SLOT=0 +SRC_URI=mirror://cpan/authors/id/T/TS/TSIBLEY/DBIx-SearchBuilder-1.63.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=91302d9cdf9df7ff3bca69b3a9bd8a01 diff --git a/metadata/md5-cache/dev-perl/wxperl-0.991.600 b/metadata/md5-cache/dev-perl/wxperl-0.991.600 new file mode 100644 index 000000000000..269694c5c90c --- /dev/null +++ b/metadata/md5-cache/dev-perl/wxperl-0.991.600 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=>=dev-perl/Alien-wxWidgets-0.25 >=virtual/perl-File-Spec-0.82 >=virtual/perl-ExtUtils-ParseXS-0.22.03 >=dev-perl/ExtUtils-XSpp-0.160.200 dev-lang/perl[-build] +DESCRIPTION=Perl bindings for wxGTK +EAPI=5 +HOMEPAGE=http://wxperl.sourceforge.net/ http://search.cpan.org/dist/Wx/ +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) +RDEPEND=>=dev-perl/Alien-wxWidgets-0.25 >=virtual/perl-File-Spec-0.82 dev-lang/perl[-build] +SLOT=0 +SRC_URI=mirror://cpan/authors/id/M/MD/MDOOTSON/Wx-0.9916.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 wxwidgets fb1a306837717dfa2af841ecdf929565 +_md5_=bae8d182e93549c3f84744212c91359b diff --git a/metadata/md5-cache/dev-python/amqplib-1.0.2-r1 b/metadata/md5-cache/dev-python/amqplib-1.0.2-r1 new file mode 100644 index 000000000000..b96369409718 --- /dev/null +++ b/metadata/md5-cache/dev-python/amqplib-1.0.2-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=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(-)] python_targets_python2_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 ) +DESCRIPTION=Python client for the Advanced Message Queuing Procotol (AMQP) +EAPI=5 +HOMEPAGE=http://code.google.com/p/py-amqplib/ +IUSE=examples extras test 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 +KEYWORDS=~amd64 ~x86 +LICENSE=LGPL-3 +RDEPEND=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(-)] python_targets_python2_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 ) +SLOT=0 +SRC_URI=http://py-amqplib.googlecode.com/files/amqplib-1.0.2.tgz +_eclasses_=distutils-r1 4de2bc5d5fcf225878bcf75551a1bd90 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 b9091432451f035281bf6fc17720e820 python-utils-r1 069a968fde0ceb8a9cd5c6a89d77cbc2 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 new file mode 100644 index 000000000000..66e9df0174ee --- /dev/null +++ b/metadata/md5-cache/dev-python/ansi2html-0.9.3-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=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(-)] test? ( dev-python/nose[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(-)] dev-python/mock[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(-)] ) dev-python/setuptools[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(-)] 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(-)] 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 ) +DESCRIPTION=Convert text with ANSI color codes to HTML +EAPI=5 +HOMEPAGE=http://pypi.python.org/pypi/ansi2html https://github.com/ralphbean/ansi2html +IUSE=test 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=~amd64 ~x86 +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(-)] 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(-)] 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 ) +SLOT=0 +SRC_URI=mirror://pypi/a/ansi2html/ansi2html-0.9.3.tar.gz +_eclasses_=distutils-r1 4de2bc5d5fcf225878bcf75551a1bd90 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 b9091432451f035281bf6fc17720e820 python-utils-r1 069a968fde0ceb8a9cd5c6a89d77cbc2 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=a89c296e9da607ef8fe9d8c4bb3cd519 diff --git a/metadata/md5-cache/dev-python/apipkg-1.2-r1 b/metadata/md5-cache/dev-python/apipkg-1.2-r1 new file mode 100644 index 000000000000..aa15d1d98ec4 --- /dev/null +++ b/metadata/md5-cache/dev-python/apipkg-1.2-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_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/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(-)] python_targets_python2_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 ) +DESCRIPTION=namespace control and lazy-import mechanism +EAPI=5 +HOMEPAGE=http://pypi.python.org/pypi/apipkg +IUSE=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 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=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(-)] python_targets_python2_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 ) +SLOT=0 +SRC_URI=mirror://pypi/a/apipkg/apipkg-1.2.zip +_eclasses_=distutils-r1 4de2bc5d5fcf225878bcf75551a1bd90 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 b9091432451f035281bf6fc17720e820 python-utils-r1 069a968fde0ceb8a9cd5c6a89d77cbc2 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=b46f3d7813678c63654494f79ea34e50 diff --git a/metadata/md5-cache/dev-python/appdirs-1.2.0-r1 b/metadata/md5-cache/dev-python/appdirs-1.2.0-r1 new file mode 100644 index 000000000000..f43a914cf587 --- /dev/null +++ b/metadata/md5-cache/dev-python/appdirs-1.2.0-r1 @@ -0,0 +1,14 @@ +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_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/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(-)] python_targets_python2_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 ) +DESCRIPTION=Module for determining appropriate platform-specific dirs +EAPI=5 +HOMEPAGE=http://github.com/ActiveState/appdirs +IUSE=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 +KEYWORDS=~amd64 +LICENSE=MIT +RDEPEND=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(-)] python_targets_python2_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 ) +RESTRICT=test +SLOT=0 +SRC_URI=mirror://pypi/a/appdirs/appdirs-1.2.0.zip +_eclasses_=distutils-r1 4de2bc5d5fcf225878bcf75551a1bd90 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 b9091432451f035281bf6fc17720e820 python-utils-r1 069a968fde0ceb8a9cd5c6a89d77cbc2 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 new file mode 100644 index 000000000000..a51f0fedc972 --- /dev/null +++ b/metadata/md5-cache/dev-python/apse-0.2-r2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND==dev-python/docutils-0.10[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(-)] +RDEPEND=>=dev-python/docutils-0.10[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://gentoo/glep-0.4-r1.tbz2 _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 python-r1 b9091432451f035281bf6fc17720e820 python-utils-r1 069a968fde0ceb8a9cd5c6a89d77cbc2 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=79de8227ca0af2bf335cb4307234644a +_md5_=13b11ba41c04c96d53edb4a9c614fc28 diff --git a/metadata/md5-cache/dev-python/execnet-1.1-r1 b/metadata/md5-cache/dev-python/execnet-1.1-r1 new file mode 100644 index 000000000000..8341cbae6441 --- /dev/null +++ b/metadata/md5-cache/dev-python/execnet-1.1-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(-)] doc? ( dev-python/sphinx[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/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(-)] python_targets_python2_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 ) +DESCRIPTION=Rapid multi-Python deployment +EAPI=5 +HOMEPAGE=http://codespeak.net/execnet/ http://pypi.python.org/pypi/execnet/ +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=GPL-2 +RDEPEND=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(-)] python_targets_python2_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 ) +SLOT=0 +SRC_URI=mirror://pypi/e/execnet/execnet-1.1.zip +_eclasses_=distutils-r1 4de2bc5d5fcf225878bcf75551a1bd90 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 b9091432451f035281bf6fc17720e820 python-utils-r1 069a968fde0ceb8a9cd5c6a89d77cbc2 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=e1206ec571e5ebe6a63c11b59bde9656 diff --git a/metadata/md5-cache/dev-python/jsonpatch-0.10 b/metadata/md5-cache/dev-python/jsonpatch-0.10 new file mode 100644 index 000000000000..8af59ff344c2 --- /dev/null +++ b/metadata/md5-cache/dev-python/jsonpatch-0.10 @@ -0,0 +1,13 @@ +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(-)] dev-python/python-exec[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 ) +DESCRIPTION=Apply JSON-Patches according to http://tools.ietf.org/html/draft-pbryan-json-patch-04 +EAPI=5 +HOMEPAGE=https://github.com/stefankoegl/python-json-patch +IUSE=python_targets_python2_6 python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=dev-python/jsonpointer[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/python-exec[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 ) +SLOT=0 +SRC_URI=mirror://pypi/j/jsonpatch/jsonpatch-0.10.tar.gz +_eclasses_=distutils-r1 4de2bc5d5fcf225878bcf75551a1bd90 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 b9091432451f035281bf6fc17720e820 python-utils-r1 069a968fde0ceb8a9cd5c6a89d77cbc2 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=7a1fd41e043cfa93bd3f31feb2c2c1f1 diff --git a/metadata/md5-cache/dev-python/paramiko-1.9.0 b/metadata/md5-cache/dev-python/paramiko-1.9.0 index aae020847c6f..f702cc58c110 100644 --- a/metadata/md5-cache/dev-python/paramiko-1.9.0 +++ b/metadata/md5-cache/dev-python/paramiko-1.9.0 @@ -4,10 +4,10 @@ DESCRIPTION=SSH2 protocol library EAPI=4 HOMEPAGE=https://github.com/paramiko/paramiko/ http://pypi.python.org/pypi/paramiko IUSE=doc examples -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris +KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris LICENSE=LGPL-2.1 RDEPEND=>=dev-python/pycrypto-2.1 =dev-lang/python-2* SLOT=0 SRC_URI=mirror://pypi/p/paramiko/paramiko-1.9.0.tar.gz _eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 multilib 9aa8a023e062fca0ba79362d9d0cc488 python e5b3412fa9f03670a666c8a137bd1060 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=861c5c4ff95de407dfa33be2101e5213 +_md5_=0b3b7e72f45e4b860ba859aaddad0b44 diff --git a/metadata/md5-cache/dev-python/pycuda-2011.2.2-r1 b/metadata/md5-cache/dev-python/pycuda-2011.2.2-r1 deleted file mode 100644 index 285b46a6999d..000000000000 --- a/metadata/md5-cache/dev-python/pycuda-2011.2.2-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm prepare setup -DEPEND=>=dev-libs/boost-1.48[python] dev-python/decorator dev-python/numpy dev-python/pytools dev-util/nvidia-cuda-toolkit opengl? ( virtual/opengl ) =dev-lang/python-2* -DESCRIPTION=Python wrapper for NVIDIA CUDA -EAPI=4 -HOMEPAGE=http://mathema.tician.de/software/pycuda/ http://pypi.python.org/pypi/pycuda -IUSE=examples opengl -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=>=dev-libs/boost-1.48[python] dev-python/decorator dev-python/numpy dev-python/pytools dev-util/nvidia-cuda-toolkit opengl? ( virtual/opengl ) =dev-lang/python-2* -SLOT=0 -SRC_URI=mirror://pypi/p/pycuda/pycuda-2011.2.2.tar.gz -_eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 multilib 9aa8a023e062fca0ba79362d9d0cc488 python e5b3412fa9f03670a666c8a137bd1060 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=a8771f08ea355300d2e6600bc1e60c1f 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 08a805e77a1f..d4c3b3b27d14 100644 --- a/metadata/md5-cache/dev-python/pygobject-2.28.6-r53 +++ b/metadata/md5-cache/dev-python/pygobject-2.28.6-r53 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare test unpack -DEPEND=>=dev-libs/glib-2.24.0:2 libffi? ( virtual/libffi:= ) dev-util/gtk-doc-am test? ( media-fonts/font-cursor-misc media-fonts/font-misc-misc ) 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 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DEPEND=>=dev-libs/glib-2.24.0:2 libffi? ( virtual/libffi:= ) dev-python/python-exec[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-util/gtk-doc-am virtual/pkgconfig test? ( media-fonts/font-cursor-misc media-fonts/font-misc-misc ) || ( >=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 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) 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 LICENSE=LGPL-2.1+ -RDEPEND=>=dev-libs/glib-2.24.0:2 libffi? ( virtual/libffi:= ) !=dev-libs/glib-2.24.0:2 libffi? ( virtual/libffi:= ) dev-python/python-exec[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-db/freetds-0.63[mssql] =dev-lang/python-2* DESCRIPTION=Simple MSSQL python extension module EAPI=3 HOMEPAGE=http://pymssql.sourceforge.net/ http://code.google.com/p/pymssql/ http://pypi.python.org/pypi/pymssql -KEYWORDS=~alpha amd64 hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 +KEYWORDS=alpha amd64 hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 LICENSE=LGPL-2.1 RDEPEND=>=dev-db/freetds-0.63[mssql] =dev-lang/python-2* SLOT=0 SRC_URI=mirror://sourceforge/pymssql/pymssql-1.0.2.tar.gz _eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 multilib 9aa8a023e062fca0ba79362d9d0cc488 python e5b3412fa9f03670a666c8a137bd1060 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=9a99a8b567cfeea4cd93bda70ef193be +_md5_=d0bf32e48784bc5abf62c56d602948f6 diff --git a/metadata/md5-cache/dev-python/python-gnupg-0.3.2 b/metadata/md5-cache/dev-python/python-gnupg-0.3.2 new file mode 100644 index 000000000000..1cfd85370d52 --- /dev/null +++ b/metadata/md5-cache/dev-python/python-gnupg-0.3.2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=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(-)] python_targets_python2_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 ) +DESCRIPTION=Python wrapper for GNU Privacy Guard +EAPI=5 +HOMEPAGE=http://code.google.com/p/python-gnupg/ +IUSE=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 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=app-crypt/gnupg 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(-)] python_targets_python2_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 ) +SLOT=0 +SRC_URI=http://python-gnupg.googlecode.com/files/python-gnupg-0.3.2.tar.gz +_eclasses_=distutils-r1 4de2bc5d5fcf225878bcf75551a1bd90 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 b9091432451f035281bf6fc17720e820 python-utils-r1 069a968fde0ceb8a9cd5c6a89d77cbc2 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=e30ce8ee58ca935d399a4c29ade3bc1f diff --git a/metadata/md5-cache/dev-python/python-mpd-0.5.0 b/metadata/md5-cache/dev-python/python-mpd-0.5.0 new file mode 100644 index 000000000000..fe03e7a00648 --- /dev/null +++ b/metadata/md5-cache/dev-python/python-mpd-0.5.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=test? ( virtual/python-unittest2[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(-)] dev-python/mock[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(-)] ) 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(-)] 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 ) +DESCRIPTION=Python MPD client library +EAPI=5 +HOMEPAGE=https://github.com/Mic92/python-mpd2 +IUSE=test 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=~amd64 ~ppc ~ppc64 ~x86 +LICENSE=LGPL-3 +RDEPEND=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(-)] 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 ) +SLOT=0 +SRC_URI=https://github.com/Mic92/python-mpd2/tarball/v0.5.0 -> python-mpd-0.5.0.tar.gz +_eclasses_=distutils-r1 4de2bc5d5fcf225878bcf75551a1bd90 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 b9091432451f035281bf6fc17720e820 python-utils-r1 069a968fde0ceb8a9cd5c6a89d77cbc2 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot d7572a392e0bd8e207deae5414f6a887 +_md5_=0293c53af71362e6a5ec5ea36c5cef17 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 0c6505db1909..33830e0ec4cc 100644 --- a/metadata/md5-cache/dev-python/sphinx-1.1.3-r5 +++ b/metadata/md5-cache/dev-python/sphinx-1.1.3-r5 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst preinst prepare test -DEPEND=test? ( dev-python/nose[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(-)] ) 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(-)] python_targets_python2_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 ) +DEPEND=test? ( dev-python/nose[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/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(-)] python_targets_python2_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 ) DESCRIPTION=Python documentation generator EAPI=5 HOMEPAGE=http://sphinx.pocoo.org/ http://pypi.python.org/pypi/Sphinx -IUSE=doc latex test 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 +IUSE=doc latex test 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 KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=BSD -RDEPEND=>=dev-python/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_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(-)] >=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_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(-)] >=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_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(-)] 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_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(-)] latex? ( dev-texlive/texlive-latexextra app-text/dvipng ) 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(-)] python_targets_python2_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 ) +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 ) 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(-)] python_targets_python2_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 ) SLOT=0 SRC_URI=mirror://pypi/S/Sphinx/Sphinx-1.1.3.tar.gz _eclasses_=distutils-r1 4de2bc5d5fcf225878bcf75551a1bd90 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 b9091432451f035281bf6fc17720e820 python-utils-r1 069a968fde0ceb8a9cd5c6a89d77cbc2 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=f57106fffbcf27e884c420146c1e0567 +_md5_=f5f43b3bd325b72458dfee84d097fd45 diff --git a/metadata/md5-cache/dev-python/sqlalchemy-0.7.9 b/metadata/md5-cache/dev-python/sqlalchemy-0.7.9 index 700820673da4..c9c732d42904 100644 --- a/metadata/md5-cache/dev-python/sqlalchemy-0.7.9 +++ b/metadata/md5-cache/dev-python/sqlalchemy-0.7.9 @@ -4,10 +4,10 @@ DESCRIPTION=Python SQL toolkit and Object Relational Mapper EAPI=4 HOMEPAGE=http://www.sqlalchemy.org/ http://pypi.python.org/pypi/SQLAlchemy IUSE=doc examples firebird mssql mysql postgres +sqlite test -KEYWORDS=~alpha amd64 arm ~hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos +KEYWORDS=alpha amd64 arm ~hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=MIT RDEPEND=dev-python/setuptools 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 || ( >=dev-lang/python-2.5[sqlite] dev-python/pysqlite ) ) dev-lang/python SLOT=0 SRC_URI=mirror://pypi/S/SQLAlchemy/SQLAlchemy-0.7.9.tar.gz _eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 multilib 9aa8a023e062fca0ba79362d9d0cc488 python e5b3412fa9f03670a666c8a137bd1060 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=3221fc3cea4beed47aa55aed204de9e3 +_md5_=bf8ec0782c956ce1b8931433dc4fe21a diff --git a/metadata/md5-cache/dev-python/sqlalchemy-migrate-0.7.2 b/metadata/md5-cache/dev-python/sqlalchemy-migrate-0.7.2 index dbb85f7a1aac..69c54ff3ef7a 100644 --- a/metadata/md5-cache/dev-python/sqlalchemy-migrate-0.7.2 +++ b/metadata/md5-cache/dev-python/sqlalchemy-migrate-0.7.2 @@ -3,10 +3,10 @@ DEPEND=dev-python/decorator dev-python/setuptools >=dev-python/sqlalchemy-0.5 de DESCRIPTION=SQLAlchemy Schema Migration Tools EAPI=3 HOMEPAGE=http://code.google.com/p/sqlalchemy-migrate/ http://pypi.python.org/pypi/sqlalchemy-migrate -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=MIT RDEPEND=dev-python/decorator dev-python/setuptools >=dev-python/sqlalchemy-0.5 dev-python/tempita =dev-lang/python-2* SLOT=0 SRC_URI=http://sqlalchemy-migrate.googlecode.com/files/sqlalchemy-migrate-0.7.2.tar.gz _eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 multilib 9aa8a023e062fca0ba79362d9d0cc488 python e5b3412fa9f03670a666c8a137bd1060 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=806ede37f032fd89eb2b751ac106cbde +_md5_=a383bd5e330606317417cbba7f742e29 diff --git a/metadata/md5-cache/dev-python/tempita-0.5.1 b/metadata/md5-cache/dev-python/tempita-0.5.1 index 441428c6ac68..4af0e9857290 100644 --- a/metadata/md5-cache/dev-python/tempita-0.5.1 +++ b/metadata/md5-cache/dev-python/tempita-0.5.1 @@ -4,10 +4,10 @@ DESCRIPTION=A very small text templating language EAPI=3 HOMEPAGE=http://pythonpaste.org/tempita http://pypi.python.org/pypi/Tempita IUSE=test -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=MIT RDEPEND=dev-python/setuptools =dev-lang/python-2* SLOT=0 SRC_URI=mirror://pypi/T/Tempita/Tempita-0.5.1.tar.gz _eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 multilib 9aa8a023e062fca0ba79362d9d0cc488 python e5b3412fa9f03670a666c8a137bd1060 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=cd88c2a461e852f4114819ade252aa37 +_md5_=03d6d4b393b967df5e5164ad1f6dda3b diff --git a/metadata/md5-cache/dev-python/tlslite-0.4.3 b/metadata/md5-cache/dev-python/tlslite-0.4.3 new file mode 100644 index 000000000000..a171707bc784 --- /dev/null +++ b/metadata/md5-cache/dev-python/tlslite-0.4.3 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm prepare setup +DEPEND=>=dev-libs/cryptlib-3.3.3[python] || ( dev-python/m2crypto dev-python/pycrypto ) gmp? ( dev-python/gmpy ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) +DESCRIPTION=TLS Lite is a free python library that implements SSL 3.0 and TLS 1.0/1.1 +EAPI=4 +HOMEPAGE=http://trevp.net/tlslite/ http://pypi.python.org/pypi/tlslite +IUSE=doc gmp +KEYWORDS=~amd64 ~x86 +LICENSE=BSD public-domain +RDEPEND=>=dev-libs/cryptlib-3.3.3[python] || ( dev-python/m2crypto dev-python/pycrypto ) gmp? ( dev-python/gmpy ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) +RESTRICT=test +SLOT=0 +SRC_URI=http://github.com/trevp/tlslite/downloads/tlslite-0.4.3.tar.gz +_eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 multilib 9aa8a023e062fca0ba79362d9d0cc488 python e5b3412fa9f03670a666c8a137bd1060 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e +_md5_=29d3e3ec8f1bcc320ead0c4012900b9c diff --git a/metadata/md5-cache/dev-python/warlock-0.7.0 b/metadata/md5-cache/dev-python/warlock-0.7.0 index 71731e0203a9..cb29eedf7497 100644 --- a/metadata/md5-cache/dev-python/warlock-0.7.0 +++ b/metadata/md5-cache/dev-python/warlock-0.7.0 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/setuptools[python_targets_python2_7?,-python_single_target_python2_7(-)] test? ( virtual/python-unittest2[python_targets_python2_7?,-python_single_target_python2_7(-)] dev-python/jsonpatch[python_targets_python2_7?,-python_single_target_python2_7(-)] dev-python/jsonschema[python_targets_python2_7?,-python_single_target_python2_7(-)] ) dev-python/python-exec[python_targets_python2_7?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) +DEPEND=dev-python/setuptools[python_targets_python2_7?,-python_single_target_python2_7(-)] test? ( virtual/python-unittest2[python_targets_python2_7?,-python_single_target_python2_7(-)] =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(-)] ) dev-python/python-exec[python_targets_python2_7?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) DESCRIPTION=Python object model built on JSON schema and JSON patch EAPI=5 HOMEPAGE=http://github.com/bcwaldon/warlock IUSE=test python_targets_python2_7 KEYWORDS=~amd64 ~x86 LICENSE=Apache-2.0 -RDEPEND=dev-python/jsonpatch[python_targets_python2_7?,-python_single_target_python2_7(-)] dev-python/jsonschema[python_targets_python2_7?,-python_single_target_python2_7(-)] dev-python/python-exec[python_targets_python2_7?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) +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(-)] dev-python/python-exec[python_targets_python2_7?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) SLOT=0 SRC_URI=mirror://pypi/w/warlock/warlock-0.7.0.tar.gz _eclasses_=distutils-r1 4de2bc5d5fcf225878bcf75551a1bd90 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 b9091432451f035281bf6fc17720e820 python-utils-r1 069a968fde0ceb8a9cd5c6a89d77cbc2 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=34b2d8775a38d56075e460120f3c474f +_md5_=0fcfd35d0175df817436bfc683808a9d diff --git a/metadata/md5-cache/dev-ruby/actionmailer-2.3.14 b/metadata/md5-cache/dev-ruby/actionmailer-2.3.14 deleted file mode 100644 index 5b93980dc3f3..000000000000 --- a/metadata/md5-cache/dev-ruby/actionmailer-2.3.14 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/actionpack-2.3.14[ruby_targets_ruby18] >=dev-ruby/text-format-0.6.3[ruby_targets_ruby18] >=dev-ruby/tmail-1.2.3[ruby_targets_ruby18] ) ruby_targets_ree18? ( ~dev-ruby/actionpack-2.3.14[ruby_targets_ree18] >=dev-ruby/text-format-0.6.3[ruby_targets_ree18] >=dev-ruby/tmail-1.2.3[ruby_targets_ree18] ) ruby_targets_jruby? ( ~dev-ruby/actionpack-2.3.14[ruby_targets_jruby] >=dev-ruby/text-format-0.6.3[ruby_targets_jruby] >=dev-ruby/tmail-1.2.3[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ruby18] virtual/ruby-test-unit[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ree18] virtual/ruby-test-unit[ruby_targets_ree18] ) ) ruby_targets_jruby? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_jruby] virtual/ruby-test-unit[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) -DESCRIPTION=Framework for designing email-service layers -EAPI=2 -HOMEPAGE=http://rubyforge.org/projects/actionmailer/ -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_jruby doc test test -KEYWORDS=amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( ~dev-ruby/actionpack-2.3.14[ruby_targets_ruby18] >=dev-ruby/text-format-0.6.3[ruby_targets_ruby18] >=dev-ruby/tmail-1.2.3[ruby_targets_ruby18] ) ruby_targets_ree18? ( ~dev-ruby/actionpack-2.3.14[ruby_targets_ree18] >=dev-ruby/text-format-0.6.3[ruby_targets_ree18] >=dev-ruby/tmail-1.2.3[ruby_targets_ree18] ) ruby_targets_jruby? ( ~dev-ruby/actionpack-2.3.14[ruby_targets_jruby] >=dev-ruby/text-format-0.6.3[ruby_targets_jruby] >=dev-ruby/tmail-1.2.3[ruby_targets_jruby] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) 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_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) -SLOT=2.3 -SRC_URI=mirror://rubygems/actionmailer-2.3.14.gem -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=fa5fc98969513d24f8ffcf4485e24b2d diff --git a/metadata/md5-cache/dev-ruby/actionmailer-3.0.18 b/metadata/md5-cache/dev-ruby/actionmailer-3.0.18 deleted file mode 100644 index 77ff1ff2803c..000000000000 --- a/metadata/md5-cache/dev-ruby/actionmailer-3.0.18 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/actionpack-3.0.18[ruby_targets_ruby18] >=dev-ruby/mail-2.2.19[ruby_targets_ruby18] ) ruby_targets_ree18? ( ~dev-ruby/actionpack-3.0.18[ruby_targets_ree18] >=dev-ruby/mail-2.2.19[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( >=dev-ruby/mocha-0.10.5[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/mocha-0.10.5[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=Framework for designing email-service layers -EAPI=4 -HOMEPAGE=http://rubyforge.org/projects/actionmailer/ -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 test test -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( ~dev-ruby/actionpack-3.0.18[ruby_targets_ruby18] >=dev-ruby/mail-2.2.19[ruby_targets_ruby18] ) ruby_targets_ree18? ( ~dev-ruby/actionpack-3.0.18[ruby_targets_ree18] >=dev-ruby/mail-2.2.19[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ree18 ) -SLOT=3.0 -SRC_URI=http://github.com/rails/rails/tarball/v3.0.18 -> rails-3.0.18.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=270950f58a9251b9871a1ae6d9f285ca diff --git a/metadata/md5-cache/dev-ruby/actionmailer-3.1.9 b/metadata/md5-cache/dev-ruby/actionmailer-3.1.9 deleted file mode 100644 index 1ccd8ab645aa..000000000000 --- a/metadata/md5-cache/dev-ruby/actionmailer-3.1.9 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/actionpack-3.1.9[ruby_targets_ruby18] >=dev-ruby/mail-2.3.3:2.3[ruby_targets_ruby18] ) ruby_targets_ruby19? ( ~dev-ruby/actionpack-3.1.9[ruby_targets_ruby19] >=dev-ruby/mail-2.3.3:2.3[ruby_targets_ruby19] ) ruby_targets_ree18? ( ~dev-ruby/actionpack-3.1.9[ruby_targets_ree18] >=dev-ruby/mail-2.3.3:2.3[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ruby18] virtual/ruby-test-unit[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ruby19] virtual/ruby-test-unit[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ree18] virtual/ruby-test-unit[ruby_targets_ree18] ) ) 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_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=Framework for designing email-service layers -EAPI=4 -HOMEPAGE=http://rubyforge.org/projects/actionmailer/ -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 test test -KEYWORDS=~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( ~dev-ruby/actionpack-3.1.9[ruby_targets_ruby18] >=dev-ruby/mail-2.3.3:2.3[ruby_targets_ruby18] ) ruby_targets_ruby19? ( ~dev-ruby/actionpack-3.1.9[ruby_targets_ruby19] >=dev-ruby/mail-2.3.3:2.3[ruby_targets_ruby19] ) ruby_targets_ree18? ( ~dev-ruby/actionpack-3.1.9[ruby_targets_ree18] >=dev-ruby/mail-2.3.3:2.3[ruby_targets_ree18] ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ) -SLOT=3.1 -SRC_URI=http://github.com/rails/rails/tarball/v3.1.9 -> rails-3.1.9.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=2855a2e3266e3f2e4c602817685c18cb diff --git a/metadata/md5-cache/dev-ruby/actionmailer-3.2.10 b/metadata/md5-cache/dev-ruby/actionmailer-3.2.10 deleted file mode 100644 index dc316ff33370..000000000000 --- a/metadata/md5-cache/dev-ruby/actionmailer-3.2.10 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/actionpack-3.2.10[ruby_targets_ruby18] >=dev-ruby/mail-2.4.4[ruby_targets_ruby18] ) ruby_targets_ruby19? ( ~dev-ruby/actionpack-3.2.10[ruby_targets_ruby19] >=dev-ruby/mail-2.4.4[ruby_targets_ruby19] ) ruby_targets_ree18? ( ~dev-ruby/actionpack-3.2.10[ruby_targets_ree18] >=dev-ruby/mail-2.4.4[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( >=dev-ruby/mocha-0.12.1[ruby_targets_ruby18] =dev-ruby/mocha-0.12*[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( >=dev-ruby/mocha-0.12.1[ruby_targets_ruby19] =dev-ruby/mocha-0.12*[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/mocha-0.12.1[ruby_targets_ree18] =dev-ruby/mocha-0.12*[ruby_targets_ree18] ) ) 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_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=Framework for designing email-service layers -EAPI=4 -HOMEPAGE=http://rubyforge.org/projects/actionmailer/ -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 test test -KEYWORDS=~amd64 ~arm ~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/actionpack-3.2.10[ruby_targets_ruby18] >=dev-ruby/mail-2.4.4[ruby_targets_ruby18] ) ruby_targets_ruby19? ( ~dev-ruby/actionpack-3.2.10[ruby_targets_ruby19] >=dev-ruby/mail-2.4.4[ruby_targets_ruby19] ) ruby_targets_ree18? ( ~dev-ruby/actionpack-3.2.10[ruby_targets_ree18] >=dev-ruby/mail-2.4.4[ruby_targets_ree18] ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ) -SLOT=3.2 -SRC_URI=http://github.com/rails/rails/tarball/v3.2.10 -> rails-3.2.10.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=593b2ff37eb7d3949ca81860b9b10b63 diff --git a/metadata/md5-cache/dev-ruby/actionpack-2.3.14 b/metadata/md5-cache/dev-ruby/actionpack-2.3.14 deleted file mode 100644 index fef5966dedc2..000000000000 --- a/metadata/md5-cache/dev-ruby/actionpack-2.3.14 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/activesupport-2.3.14[ruby_targets_ruby18] >=dev-ruby/rack-1.1.0:0[ruby_targets_ruby18] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-2.3.14[ruby_targets_ree18] >=dev-ruby/rack-1.1.0:0[ruby_targets_ree18] ) ruby_targets_jruby? ( ~dev-ruby/activesupport-2.3.14[ruby_targets_jruby] >=dev-ruby/rack-1.1.0:0[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( test? ( >=dev-ruby/mocha-0.9.7[ruby_targets_ruby18] dev-ruby/activerecord:2.3[ruby_targets_ruby18] ~dev-ruby/actionmailer-2.3.14[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/mocha-0.9.7[ruby_targets_ree18] dev-ruby/activerecord:2.3[ruby_targets_ree18] ~dev-ruby/actionmailer-2.3.14[ruby_targets_ree18] ) ) ruby_targets_jruby? ( test? ( >=dev-ruby/mocha-0.9.7[ruby_targets_jruby] dev-ruby/activerecord:2.3[ruby_targets_jruby] ~dev-ruby/actionmailer-2.3.14[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) -DESCRIPTION=Eases web-request routing, handling, and response. -EAPI=2 -HOMEPAGE=http://rubyforge.org/projects/actionpack/ -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_jruby doc test test -KEYWORDS=amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( ~dev-ruby/activesupport-2.3.14[ruby_targets_ruby18] >=dev-ruby/rack-1.1.0:0[ruby_targets_ruby18] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-2.3.14[ruby_targets_ree18] >=dev-ruby/rack-1.1.0:0[ruby_targets_ree18] ) ruby_targets_jruby? ( ~dev-ruby/activesupport-2.3.14[ruby_targets_jruby] >=dev-ruby/rack-1.1.0:0[ruby_targets_jruby] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) 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_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) -SLOT=2.3 -SRC_URI=mirror://rubygems/actionpack-2.3.14.gem -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=8e6bb8c39b5b36add0004c4f93ca0bd4 diff --git a/metadata/md5-cache/dev-ruby/actionpack-3.0.18 b/metadata/md5-cache/dev-ruby/actionpack-3.0.18 deleted file mode 100644 index 4ed1de611ce1..000000000000 --- a/metadata/md5-cache/dev-ruby/actionpack-3.0.18 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/activemodel-3.0.18[ruby_targets_ruby18] ~dev-ruby/activesupport-3.0.18[ruby_targets_ruby18] >=dev-ruby/builder-2.1.2:0[ruby_targets_ruby18] >=dev-ruby/erubis-2.6.6[ruby_targets_ruby18] >=dev-ruby/i18n-0.5.0:0.5[ruby_targets_ruby18] >=dev-ruby/rack-1.2.5:1.2[ruby_targets_ruby18] >=dev-ruby/rack-mount-0.6.14:0.6[ruby_targets_ruby18] >=dev-ruby/rack-test-0.5.7:0.5[ruby_targets_ruby18] >=dev-ruby/tzinfo-0.3.23[ruby_targets_ruby18] ) ruby_targets_ree18? ( ~dev-ruby/activemodel-3.0.18[ruby_targets_ree18] ~dev-ruby/activesupport-3.0.18[ruby_targets_ree18] >=dev-ruby/builder-2.1.2:0[ruby_targets_ree18] >=dev-ruby/erubis-2.6.6[ruby_targets_ree18] >=dev-ruby/i18n-0.5.0:0.5[ruby_targets_ree18] >=dev-ruby/rack-1.2.5:1.2[ruby_targets_ree18] >=dev-ruby/rack-mount-0.6.14:0.6[ruby_targets_ree18] >=dev-ruby/rack-test-0.5.7:0.5[ruby_targets_ree18] >=dev-ruby/tzinfo-0.3.23[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/bundler[ruby_targets_ruby18] >=dev-ruby/mocha-0.10.5[ruby_targets_ruby18] ~dev-ruby/activerecord-3.0.18[ruby_targets_ruby18] ~dev-ruby/actionmailer-3.0.18[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/bundler[ruby_targets_ree18] >=dev-ruby/mocha-0.10.5[ruby_targets_ree18] ~dev-ruby/activerecord-3.0.18[ruby_targets_ree18] ~dev-ruby/actionmailer-3.0.18[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=Eases web-request routing, handling, and response. -EAPI=4 -HOMEPAGE=http://rubyforge.org/projects/actionpack/ -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 doc test test -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( ~dev-ruby/activemodel-3.0.18[ruby_targets_ruby18] ~dev-ruby/activesupport-3.0.18[ruby_targets_ruby18] >=dev-ruby/builder-2.1.2:0[ruby_targets_ruby18] >=dev-ruby/erubis-2.6.6[ruby_targets_ruby18] >=dev-ruby/i18n-0.5.0:0.5[ruby_targets_ruby18] >=dev-ruby/rack-1.2.5:1.2[ruby_targets_ruby18] >=dev-ruby/rack-mount-0.6.14:0.6[ruby_targets_ruby18] >=dev-ruby/rack-test-0.5.7:0.5[ruby_targets_ruby18] >=dev-ruby/tzinfo-0.3.23[ruby_targets_ruby18] ) ruby_targets_ree18? ( ~dev-ruby/activemodel-3.0.18[ruby_targets_ree18] ~dev-ruby/activesupport-3.0.18[ruby_targets_ree18] >=dev-ruby/builder-2.1.2:0[ruby_targets_ree18] >=dev-ruby/erubis-2.6.6[ruby_targets_ree18] >=dev-ruby/i18n-0.5.0:0.5[ruby_targets_ree18] >=dev-ruby/rack-1.2.5:1.2[ruby_targets_ree18] >=dev-ruby/rack-mount-0.6.14:0.6[ruby_targets_ree18] >=dev-ruby/rack-test-0.5.7:0.5[ruby_targets_ree18] >=dev-ruby/tzinfo-0.3.23[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ree18 ) -SLOT=3.0 -SRC_URI=http://github.com/rails/rails/tarball/v3.0.18 -> rails-3.0.18.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=44d35043e1a9acb1327f9eb1f1cea26f diff --git a/metadata/md5-cache/dev-ruby/actionpack-3.1.9 b/metadata/md5-cache/dev-ruby/actionpack-3.1.9 deleted file mode 100644 index 25a6c60c2b27..000000000000 --- a/metadata/md5-cache/dev-ruby/actionpack-3.1.9 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/activemodel-3.1.9[ruby_targets_ruby18] ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby18] >=dev-ruby/rack-cache-1.2[ruby_targets_ruby18] >=dev-ruby/builder-3.0.0:3[ruby_targets_ruby18] >=dev-ruby/erubis-2.7.0[ruby_targets_ruby18] >=dev-ruby/i18n-0.6:0.6[ruby_targets_ruby18] >=dev-ruby/rack-1.3.6:1.3[ruby_targets_ruby18] >=dev-ruby/rack-mount-0.8.2:0.8[ruby_targets_ruby18] >=dev-ruby/rack-test-0.6.1:0.6[ruby_targets_ruby18] >=dev-ruby/sprockets-2.0.4:2.0[ruby_targets_ruby18] ) ruby_targets_ruby19? ( ~dev-ruby/activemodel-3.1.9[ruby_targets_ruby19] ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby19] >=dev-ruby/rack-cache-1.2[ruby_targets_ruby19] >=dev-ruby/builder-3.0.0:3[ruby_targets_ruby19] >=dev-ruby/erubis-2.7.0[ruby_targets_ruby19] >=dev-ruby/i18n-0.6:0.6[ruby_targets_ruby19] >=dev-ruby/rack-1.3.6:1.3[ruby_targets_ruby19] >=dev-ruby/rack-mount-0.8.2:0.8[ruby_targets_ruby19] >=dev-ruby/rack-test-0.6.1:0.6[ruby_targets_ruby19] >=dev-ruby/sprockets-2.0.4:2.0[ruby_targets_ruby19] ) ruby_targets_ree18? ( ~dev-ruby/activemodel-3.1.9[ruby_targets_ree18] ~dev-ruby/activesupport-3.1.9[ruby_targets_ree18] >=dev-ruby/rack-cache-1.2[ruby_targets_ree18] >=dev-ruby/builder-3.0.0:3[ruby_targets_ree18] >=dev-ruby/erubis-2.7.0[ruby_targets_ree18] >=dev-ruby/i18n-0.6:0.6[ruby_targets_ree18] >=dev-ruby/rack-1.3.6:1.3[ruby_targets_ree18] >=dev-ruby/rack-mount-0.8.2:0.8[ruby_targets_ree18] >=dev-ruby/rack-test-0.6.1:0.6[ruby_targets_ree18] >=dev-ruby/sprockets-2.0.4:2.0[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/mocha[ruby_targets_ruby18] dev-ruby/bundler[ruby_targets_ruby18] ~dev-ruby/activerecord-3.1.9[ruby_targets_ruby18] ~dev-ruby/actionmailer-3.1.9[ruby_targets_ruby18] >=dev-ruby/tzinfo-0.3.29[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/mocha[ruby_targets_ruby19] dev-ruby/bundler[ruby_targets_ruby19] ~dev-ruby/activerecord-3.1.9[ruby_targets_ruby19] ~dev-ruby/actionmailer-3.1.9[ruby_targets_ruby19] >=dev-ruby/tzinfo-0.3.29[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/mocha[ruby_targets_ree18] dev-ruby/bundler[ruby_targets_ree18] ~dev-ruby/activerecord-3.1.9[ruby_targets_ree18] ~dev-ruby/actionmailer-3.1.9[ruby_targets_ree18] >=dev-ruby/tzinfo-0.3.29[ruby_targets_ree18] ) ) 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_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=Eases web-request routing, handling, and response. -EAPI=4 -HOMEPAGE=http://rubyforge.org/projects/actionpack/ -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 doc test test -KEYWORDS=~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( ~dev-ruby/activemodel-3.1.9[ruby_targets_ruby18] ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby18] >=dev-ruby/rack-cache-1.2[ruby_targets_ruby18] >=dev-ruby/builder-3.0.0:3[ruby_targets_ruby18] >=dev-ruby/erubis-2.7.0[ruby_targets_ruby18] >=dev-ruby/i18n-0.6:0.6[ruby_targets_ruby18] >=dev-ruby/rack-1.3.6:1.3[ruby_targets_ruby18] >=dev-ruby/rack-mount-0.8.2:0.8[ruby_targets_ruby18] >=dev-ruby/rack-test-0.6.1:0.6[ruby_targets_ruby18] >=dev-ruby/sprockets-2.0.4:2.0[ruby_targets_ruby18] ) ruby_targets_ruby19? ( ~dev-ruby/activemodel-3.1.9[ruby_targets_ruby19] ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby19] >=dev-ruby/rack-cache-1.2[ruby_targets_ruby19] >=dev-ruby/builder-3.0.0:3[ruby_targets_ruby19] >=dev-ruby/erubis-2.7.0[ruby_targets_ruby19] >=dev-ruby/i18n-0.6:0.6[ruby_targets_ruby19] >=dev-ruby/rack-1.3.6:1.3[ruby_targets_ruby19] >=dev-ruby/rack-mount-0.8.2:0.8[ruby_targets_ruby19] >=dev-ruby/rack-test-0.6.1:0.6[ruby_targets_ruby19] >=dev-ruby/sprockets-2.0.4:2.0[ruby_targets_ruby19] ) ruby_targets_ree18? ( ~dev-ruby/activemodel-3.1.9[ruby_targets_ree18] ~dev-ruby/activesupport-3.1.9[ruby_targets_ree18] >=dev-ruby/rack-cache-1.2[ruby_targets_ree18] >=dev-ruby/builder-3.0.0:3[ruby_targets_ree18] >=dev-ruby/erubis-2.7.0[ruby_targets_ree18] >=dev-ruby/i18n-0.6:0.6[ruby_targets_ree18] >=dev-ruby/rack-1.3.6:1.3[ruby_targets_ree18] >=dev-ruby/rack-mount-0.8.2:0.8[ruby_targets_ree18] >=dev-ruby/rack-test-0.6.1:0.6[ruby_targets_ree18] >=dev-ruby/sprockets-2.0.4:2.0[ruby_targets_ree18] ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ) -SLOT=3.1 -SRC_URI=http://github.com/rails/rails/tarball/v3.1.9 -> rails-3.1.9.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=ba755e3cae79a3eed6f3b15fc7998fbb diff --git a/metadata/md5-cache/dev-ruby/actionpack-3.2.10 b/metadata/md5-cache/dev-ruby/actionpack-3.2.10 deleted file mode 100644 index 4e56baffae50..000000000000 --- a/metadata/md5-cache/dev-ruby/actionpack-3.2.10 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/activemodel-3.2.10[ruby_targets_ruby18] ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby18] >=dev-ruby/rack-cache-1.2[ruby_targets_ruby18] >=dev-ruby/builder-3.0.0:3[ruby_targets_ruby18] >=dev-ruby/erubis-2.7.0[ruby_targets_ruby18] >=dev-ruby/i18n-0.6:0.6[ruby_targets_ruby18] >=dev-ruby/rack-1.4.0:1.4[ruby_targets_ruby18] >=dev-ruby/rack-test-0.6.1:0.6[ruby_targets_ruby18] >=dev-ruby/journey-1.0.4:1.0[ruby_targets_ruby18] >=dev-ruby/sprockets-2.2.1:2.2[ruby_targets_ruby18] ) ruby_targets_ruby19? ( ~dev-ruby/activemodel-3.2.10[ruby_targets_ruby19] ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby19] >=dev-ruby/rack-cache-1.2[ruby_targets_ruby19] >=dev-ruby/builder-3.0.0:3[ruby_targets_ruby19] >=dev-ruby/erubis-2.7.0[ruby_targets_ruby19] >=dev-ruby/i18n-0.6:0.6[ruby_targets_ruby19] >=dev-ruby/rack-1.4.0:1.4[ruby_targets_ruby19] >=dev-ruby/rack-test-0.6.1:0.6[ruby_targets_ruby19] >=dev-ruby/journey-1.0.4:1.0[ruby_targets_ruby19] >=dev-ruby/sprockets-2.2.1:2.2[ruby_targets_ruby19] ) ruby_targets_ree18? ( ~dev-ruby/activemodel-3.2.10[ruby_targets_ree18] ~dev-ruby/activesupport-3.2.10[ruby_targets_ree18] >=dev-ruby/rack-cache-1.2[ruby_targets_ree18] >=dev-ruby/builder-3.0.0:3[ruby_targets_ree18] >=dev-ruby/erubis-2.7.0[ruby_targets_ree18] >=dev-ruby/i18n-0.6:0.6[ruby_targets_ree18] >=dev-ruby/rack-1.4.0:1.4[ruby_targets_ree18] >=dev-ruby/rack-test-0.6.1:0.6[ruby_targets_ree18] >=dev-ruby/journey-1.0.4:1.0[ruby_targets_ree18] >=dev-ruby/sprockets-2.2.1:2.2[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( >=dev-ruby/mocha-0.12.1[ruby_targets_ruby18] dev-ruby/bundler[ruby_targets_ruby18] ~dev-ruby/activerecord-3.2.10[ruby_targets_ruby18] ~dev-ruby/actionmailer-3.2.10[ruby_targets_ruby18] >=dev-ruby/tzinfo-0.3.29[ruby_targets_ruby18] >=dev-ruby/uglifier-1.0.3[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( >=dev-ruby/mocha-0.12.1[ruby_targets_ruby19] dev-ruby/bundler[ruby_targets_ruby19] ~dev-ruby/activerecord-3.2.10[ruby_targets_ruby19] ~dev-ruby/actionmailer-3.2.10[ruby_targets_ruby19] >=dev-ruby/tzinfo-0.3.29[ruby_targets_ruby19] >=dev-ruby/uglifier-1.0.3[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/mocha-0.12.1[ruby_targets_ree18] dev-ruby/bundler[ruby_targets_ree18] ~dev-ruby/activerecord-3.2.10[ruby_targets_ree18] ~dev-ruby/actionmailer-3.2.10[ruby_targets_ree18] >=dev-ruby/tzinfo-0.3.29[ruby_targets_ree18] >=dev-ruby/uglifier-1.0.3[ruby_targets_ree18] ) ) 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_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=Eases web-request routing, handling, and response. -EAPI=4 -HOMEPAGE=http://rubyforge.org/projects/actionpack/ -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 doc test test -KEYWORDS=~amd64 ~arm ~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/activemodel-3.2.10[ruby_targets_ruby18] ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby18] >=dev-ruby/rack-cache-1.2[ruby_targets_ruby18] >=dev-ruby/builder-3.0.0:3[ruby_targets_ruby18] >=dev-ruby/erubis-2.7.0[ruby_targets_ruby18] >=dev-ruby/i18n-0.6:0.6[ruby_targets_ruby18] >=dev-ruby/rack-1.4.0:1.4[ruby_targets_ruby18] >=dev-ruby/rack-test-0.6.1:0.6[ruby_targets_ruby18] >=dev-ruby/journey-1.0.4:1.0[ruby_targets_ruby18] >=dev-ruby/sprockets-2.2.1:2.2[ruby_targets_ruby18] ) ruby_targets_ruby19? ( ~dev-ruby/activemodel-3.2.10[ruby_targets_ruby19] ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby19] >=dev-ruby/rack-cache-1.2[ruby_targets_ruby19] >=dev-ruby/builder-3.0.0:3[ruby_targets_ruby19] >=dev-ruby/erubis-2.7.0[ruby_targets_ruby19] >=dev-ruby/i18n-0.6:0.6[ruby_targets_ruby19] >=dev-ruby/rack-1.4.0:1.4[ruby_targets_ruby19] >=dev-ruby/rack-test-0.6.1:0.6[ruby_targets_ruby19] >=dev-ruby/journey-1.0.4:1.0[ruby_targets_ruby19] >=dev-ruby/sprockets-2.2.1:2.2[ruby_targets_ruby19] ) ruby_targets_ree18? ( ~dev-ruby/activemodel-3.2.10[ruby_targets_ree18] ~dev-ruby/activesupport-3.2.10[ruby_targets_ree18] >=dev-ruby/rack-cache-1.2[ruby_targets_ree18] >=dev-ruby/builder-3.0.0:3[ruby_targets_ree18] >=dev-ruby/erubis-2.7.0[ruby_targets_ree18] >=dev-ruby/i18n-0.6:0.6[ruby_targets_ree18] >=dev-ruby/rack-1.4.0:1.4[ruby_targets_ree18] >=dev-ruby/rack-test-0.6.1:0.6[ruby_targets_ree18] >=dev-ruby/journey-1.0.4:1.0[ruby_targets_ree18] >=dev-ruby/sprockets-2.2.1:2.2[ruby_targets_ree18] ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ) -SLOT=3.2 -SRC_URI=http://github.com/rails/rails/tarball/v3.2.10 -> rails-3.2.10.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=ef7346cbe63ecf96668bea2dcd1ecc26 diff --git a/metadata/md5-cache/dev-ruby/activemodel-3.0.18 b/metadata/md5-cache/dev-ruby/activemodel-3.0.18 deleted file mode 100644 index b02a6711fd62..000000000000 --- a/metadata/md5-cache/dev-ruby/activemodel-3.0.18 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.0.18[ruby_targets_ruby18] >=dev-ruby/builder-2.1.2[ruby_targets_ruby18] >=dev-ruby/i18n-0.5.0:0.5[ruby_targets_ruby18] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.0.18[ruby_targets_ree18] >=dev-ruby/builder-2.1.2[ruby_targets_ree18] >=dev-ruby/i18n-0.5.0:0.5[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/ruby-debug[ruby_targets_ruby18] >=dev-ruby/mocha-0.9.5[ruby_targets_ruby18] virtual/ruby-test-unit[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/ruby-debug[ruby_targets_ree18] >=dev-ruby/mocha-0.9.5[ruby_targets_ree18] virtual/ruby-test-unit[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=A toolkit for building modeling frameworks like Active Record and Active Resource. -EAPI=4 -HOMEPAGE=http://github.com/rails/rails -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 test test -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.0.18[ruby_targets_ruby18] >=dev-ruby/builder-2.1.2[ruby_targets_ruby18] >=dev-ruby/i18n-0.5.0:0.5[ruby_targets_ruby18] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.0.18[ruby_targets_ree18] >=dev-ruby/builder-2.1.2[ruby_targets_ree18] >=dev-ruby/i18n-0.5.0:0.5[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ree18 ) -SLOT=3.0 -SRC_URI=http://github.com/rails/rails/tarball/v3.0.18 -> rails-3.0.18.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=28e83d44b447578c781a3a254e7f4ba2 diff --git a/metadata/md5-cache/dev-ruby/activemodel-3.1.9 b/metadata/md5-cache/dev-ruby/activemodel-3.1.9 deleted file mode 100644 index 4b4e64d0bac0..000000000000 --- a/metadata/md5-cache/dev-ruby/activemodel-3.1.9 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby18] >=dev-ruby/builder-3.0.0[ruby_targets_ruby18] >=dev-ruby/i18n-0.6.0:0.6[ruby_targets_ruby18] >=dev-ruby/bcrypt-ruby-3.0.0[ruby_targets_ruby18] ) ruby_targets_ruby19? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby19] >=dev-ruby/builder-3.0.0[ruby_targets_ruby19] >=dev-ruby/i18n-0.6.0:0.6[ruby_targets_ruby19] >=dev-ruby/bcrypt-ruby-3.0.0[ruby_targets_ruby19] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ree18] >=dev-ruby/builder-3.0.0[ruby_targets_ree18] >=dev-ruby/i18n-0.6.0:0.6[ruby_targets_ree18] >=dev-ruby/bcrypt-ruby-3.0.0[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ree18] ) ) 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_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=A toolkit for building modeling frameworks like Active Record and Active Resource. -EAPI=4 -HOMEPAGE=http://github.com/rails/rails -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 test test -KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby18] >=dev-ruby/builder-3.0.0[ruby_targets_ruby18] >=dev-ruby/i18n-0.6.0:0.6[ruby_targets_ruby18] >=dev-ruby/bcrypt-ruby-3.0.0[ruby_targets_ruby18] ) ruby_targets_ruby19? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby19] >=dev-ruby/builder-3.0.0[ruby_targets_ruby19] >=dev-ruby/i18n-0.6.0:0.6[ruby_targets_ruby19] >=dev-ruby/bcrypt-ruby-3.0.0[ruby_targets_ruby19] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ree18] >=dev-ruby/builder-3.0.0[ruby_targets_ree18] >=dev-ruby/i18n-0.6.0:0.6[ruby_targets_ree18] >=dev-ruby/bcrypt-ruby-3.0.0[ruby_targets_ree18] ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ) -SLOT=3.1 -SRC_URI=http://github.com/rails/rails/tarball/v3.1.9 -> rails-3.1.9.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=41f6b9cc36cfa3a6f444fdcff400ecd9 diff --git a/metadata/md5-cache/dev-ruby/activemodel-3.2.10 b/metadata/md5-cache/dev-ruby/activemodel-3.2.10 deleted file mode 100644 index f0627b74a04f..000000000000 --- a/metadata/md5-cache/dev-ruby/activemodel-3.2.10 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby18] >=dev-ruby/builder-3.0.0[ruby_targets_ruby18] >=dev-ruby/bcrypt-ruby-3.0.0[ruby_targets_ruby18] ) ruby_targets_ruby19? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby19] >=dev-ruby/builder-3.0.0[ruby_targets_ruby19] >=dev-ruby/bcrypt-ruby-3.0.0[ruby_targets_ruby19] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ree18] >=dev-ruby/builder-3.0.0[ruby_targets_ree18] >=dev-ruby/bcrypt-ruby-3.0.0[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ree18] ) ) 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_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=A toolkit for building modeling frameworks like Active Record and Active Resource. -EAPI=4 -HOMEPAGE=http://github.com/rails/rails -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 test test -KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby18] >=dev-ruby/builder-3.0.0[ruby_targets_ruby18] >=dev-ruby/bcrypt-ruby-3.0.0[ruby_targets_ruby18] ) ruby_targets_ruby19? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby19] >=dev-ruby/builder-3.0.0[ruby_targets_ruby19] >=dev-ruby/bcrypt-ruby-3.0.0[ruby_targets_ruby19] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ree18] >=dev-ruby/builder-3.0.0[ruby_targets_ree18] >=dev-ruby/bcrypt-ruby-3.0.0[ruby_targets_ree18] ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ) -SLOT=3.2 -SRC_URI=http://github.com/rails/rails/tarball/v3.2.10 -> rails-3.2.10.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=0e576274850e57a0b4cace4bfcbf7d31 diff --git a/metadata/md5-cache/dev-ruby/activerecord-2.3.14-r1 b/metadata/md5-cache/dev-ruby/activerecord-2.3.14-r1 deleted file mode 100644 index aea6fdcbd92d..000000000000 --- a/metadata/md5-cache/dev-ruby/activerecord-2.3.14-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/activesupport-2.3.14[ruby_targets_ruby18] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-2.3.14[ruby_targets_ree18] ) ruby_targets_jruby? ( ~dev-ruby/activesupport-2.3.14[ruby_targets_jruby] ) ) test? ( ruby_targets_ruby18? ( sqlite3? ( dev-ruby/sqlite3[ruby_targets_ruby18] ) mysql? ( >=dev-ruby/mysql-ruby-2.7[ruby_targets_ruby18] ) postgres? ( dev-ruby/pg[ruby_targets_ruby18] ) ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rdoc[ruby_targets_ruby18] =dev-ruby/mocha-0.10*[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rdoc[ruby_targets_ree18] =dev-ruby/mocha-0.10*[ruby_targets_ree18] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rdoc[ruby_targets_jruby] =dev-ruby/mocha-0.10*[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) -DESCRIPTION=Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM -EAPI=2 -HOMEPAGE=http://rubyforge.org/projects/activerecord/ -IUSE=mysql postgres sqlite3 test test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_jruby doc test test -KEYWORDS=amd64 ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( ~dev-ruby/activesupport-2.3.14[ruby_targets_ruby18] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-2.3.14[ruby_targets_ree18] ) ruby_targets_jruby? ( ~dev-ruby/activesupport-2.3.14[ruby_targets_jruby] ) ruby_targets_ruby18? ( sqlite3? ( dev-ruby/sqlite3[ruby_targets_ruby18] ) mysql? ( >=dev-ruby/mysql-ruby-2.7[ruby_targets_ruby18] ) postgres? ( dev-ruby/pg[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) 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_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) -SLOT=2.3 -SRC_URI=mirror://rubygems/activerecord-2.3.14.gem -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=440aa597a968e8be9161da80fa116386 diff --git a/metadata/md5-cache/dev-ruby/activerecord-3.0.18 b/metadata/md5-cache/dev-ruby/activerecord-3.0.18 deleted file mode 100644 index 182a686484f0..000000000000 --- a/metadata/md5-cache/dev-ruby/activerecord-3.0.18 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.0.18[ruby_targets_ruby18] ~dev-ruby/activemodel-3.0.18[ruby_targets_ruby18] >=dev-ruby/arel-2.0.10-r1:2.0[ruby_targets_ruby18] >=dev-ruby/tzinfo-0.3.23[ruby_targets_ruby18] sqlite3? ( >=dev-ruby/sqlite3-1.3.3[ruby_targets_ruby18] ) mysql? ( dev-ruby/mysql2:0.2[ruby_targets_ruby18] ) postgres? ( dev-ruby/pg[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.0.18[ruby_targets_ree18] ~dev-ruby/activemodel-3.0.18[ruby_targets_ree18] >=dev-ruby/arel-2.0.10-r1:2.0[ruby_targets_ree18] >=dev-ruby/tzinfo-0.3.23[ruby_targets_ree18] sqlite3? ( >=dev-ruby/sqlite3-1.3.3[ruby_targets_ree18] ) mysql? ( dev-ruby/mysql2:0.2[ruby_targets_ree18] ) postgres? ( dev-ruby/pg[ruby_targets_ree18] ) ) ) ruby_targets_ruby18? ( test? ( dev-ruby/bundler[ruby_targets_ruby18] ~dev-ruby/actionpack-3.0.18[ruby_targets_ruby18] >=dev-ruby/sqlite3-1.3.3[ruby_targets_ruby18] >=dev-ruby/mocha-0.10.5[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/bundler[ruby_targets_ree18] ~dev-ruby/actionpack-3.0.18[ruby_targets_ree18] >=dev-ruby/sqlite3-1.3.3[ruby_targets_ree18] >=dev-ruby/mocha-0.10.5[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM -EAPI=4 -HOMEPAGE=http://rubyforge.org/projects/activerecord/ -IUSE=mysql postgres sqlite3 test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 test test -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.0.18[ruby_targets_ruby18] ~dev-ruby/activemodel-3.0.18[ruby_targets_ruby18] >=dev-ruby/arel-2.0.10-r1:2.0[ruby_targets_ruby18] >=dev-ruby/tzinfo-0.3.23[ruby_targets_ruby18] sqlite3? ( >=dev-ruby/sqlite3-1.3.3[ruby_targets_ruby18] ) mysql? ( dev-ruby/mysql2:0.2[ruby_targets_ruby18] ) postgres? ( dev-ruby/pg[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.0.18[ruby_targets_ree18] ~dev-ruby/activemodel-3.0.18[ruby_targets_ree18] >=dev-ruby/arel-2.0.10-r1:2.0[ruby_targets_ree18] >=dev-ruby/tzinfo-0.3.23[ruby_targets_ree18] sqlite3? ( >=dev-ruby/sqlite3-1.3.3[ruby_targets_ree18] ) mysql? ( dev-ruby/mysql2:0.2[ruby_targets_ree18] ) postgres? ( dev-ruby/pg[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ree18 ) -SLOT=3.0 -SRC_URI=http://github.com/rails/rails/tarball/v3.0.18 -> rails-3.0.18.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=c3c2c9cae0039d76c26892f1cee46510 diff --git a/metadata/md5-cache/dev-ruby/activerecord-3.1.9 b/metadata/md5-cache/dev-ruby/activerecord-3.1.9 deleted file mode 100644 index ac3f195d1fe2..000000000000 --- a/metadata/md5-cache/dev-ruby/activerecord-3.1.9 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby18] ~dev-ruby/activemodel-3.1.9[ruby_targets_ruby18] >=dev-ruby/arel-2.2.3:2.1[ruby_targets_ruby18] >=dev-ruby/tzinfo-0.3.29[ruby_targets_ruby18] sqlite3? ( >=dev-ruby/sqlite3-1.3.4[ruby_targets_ruby18] ) mysql? ( >=dev-ruby/mysql2-0.3.6:0.3[ruby_targets_ruby18] ) postgres? ( >=dev-ruby/pg-0.11.0[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby19] ~dev-ruby/activemodel-3.1.9[ruby_targets_ruby19] >=dev-ruby/arel-2.2.3:2.1[ruby_targets_ruby19] >=dev-ruby/tzinfo-0.3.29[ruby_targets_ruby19] sqlite3? ( >=dev-ruby/sqlite3-1.3.4[ruby_targets_ruby19] ) mysql? ( >=dev-ruby/mysql2-0.3.6:0.3[ruby_targets_ruby19] ) postgres? ( >=dev-ruby/pg-0.11.0[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ree18] ~dev-ruby/activemodel-3.1.9[ruby_targets_ree18] >=dev-ruby/arel-2.2.3:2.1[ruby_targets_ree18] >=dev-ruby/tzinfo-0.3.29[ruby_targets_ree18] sqlite3? ( >=dev-ruby/sqlite3-1.3.4[ruby_targets_ree18] ) mysql? ( >=dev-ruby/mysql2-0.3.6:0.3[ruby_targets_ree18] ) postgres? ( >=dev-ruby/pg-0.11.0[ruby_targets_ree18] ) ) ) ruby_targets_ruby18? ( test? ( dev-ruby/bundler[ruby_targets_ruby18] ~dev-ruby/actionpack-3.1.9[ruby_targets_ruby18] >=dev-ruby/sqlite3-1.3.3[ruby_targets_ruby18] >=dev-ruby/mocha-0.9.5[ruby_targets_ruby18] virtual/ruby-test-unit[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/bundler[ruby_targets_ruby19] ~dev-ruby/actionpack-3.1.9[ruby_targets_ruby19] >=dev-ruby/sqlite3-1.3.3[ruby_targets_ruby19] >=dev-ruby/mocha-0.9.5[ruby_targets_ruby19] virtual/ruby-test-unit[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/bundler[ruby_targets_ree18] ~dev-ruby/actionpack-3.1.9[ruby_targets_ree18] >=dev-ruby/sqlite3-1.3.3[ruby_targets_ree18] >=dev-ruby/mocha-0.9.5[ruby_targets_ree18] virtual/ruby-test-unit[ruby_targets_ree18] ) ) 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_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM -EAPI=4 -HOMEPAGE=http://rubyforge.org/projects/activerecord/ -IUSE=mysql postgres sqlite3 test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 test test -KEYWORDS=~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby18] ~dev-ruby/activemodel-3.1.9[ruby_targets_ruby18] >=dev-ruby/arel-2.2.3:2.1[ruby_targets_ruby18] >=dev-ruby/tzinfo-0.3.29[ruby_targets_ruby18] sqlite3? ( >=dev-ruby/sqlite3-1.3.4[ruby_targets_ruby18] ) mysql? ( >=dev-ruby/mysql2-0.3.6:0.3[ruby_targets_ruby18] ) postgres? ( >=dev-ruby/pg-0.11.0[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby19] ~dev-ruby/activemodel-3.1.9[ruby_targets_ruby19] >=dev-ruby/arel-2.2.3:2.1[ruby_targets_ruby19] >=dev-ruby/tzinfo-0.3.29[ruby_targets_ruby19] sqlite3? ( >=dev-ruby/sqlite3-1.3.4[ruby_targets_ruby19] ) mysql? ( >=dev-ruby/mysql2-0.3.6:0.3[ruby_targets_ruby19] ) postgres? ( >=dev-ruby/pg-0.11.0[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ree18] ~dev-ruby/activemodel-3.1.9[ruby_targets_ree18] >=dev-ruby/arel-2.2.3:2.1[ruby_targets_ree18] >=dev-ruby/tzinfo-0.3.29[ruby_targets_ree18] sqlite3? ( >=dev-ruby/sqlite3-1.3.4[ruby_targets_ree18] ) mysql? ( >=dev-ruby/mysql2-0.3.6:0.3[ruby_targets_ree18] ) postgres? ( >=dev-ruby/pg-0.11.0[ruby_targets_ree18] ) ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ) -SLOT=3.1 -SRC_URI=http://github.com/rails/rails/tarball/v3.1.9 -> rails-3.1.9.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=71dc579f27cf6b2fc8dd75795f4e7114 diff --git a/metadata/md5-cache/dev-ruby/activerecord-3.2.10 b/metadata/md5-cache/dev-ruby/activerecord-3.2.10 deleted file mode 100644 index c06391dab61a..000000000000 --- a/metadata/md5-cache/dev-ruby/activerecord-3.2.10 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby18] ~dev-ruby/activemodel-3.2.10[ruby_targets_ruby18] >=dev-ruby/arel-3.0.2:3.0[ruby_targets_ruby18] >=dev-ruby/tzinfo-0.3.29[ruby_targets_ruby18] sqlite3? ( >=dev-ruby/sqlite3-1.3.5[ruby_targets_ruby18] ) mysql? ( >=dev-ruby/mysql2-0.3.10:0.3[ruby_targets_ruby18] ) postgres? ( >=dev-ruby/pg-0.11.0[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby19] ~dev-ruby/activemodel-3.2.10[ruby_targets_ruby19] >=dev-ruby/arel-3.0.2:3.0[ruby_targets_ruby19] >=dev-ruby/tzinfo-0.3.29[ruby_targets_ruby19] sqlite3? ( >=dev-ruby/sqlite3-1.3.5[ruby_targets_ruby19] ) mysql? ( >=dev-ruby/mysql2-0.3.10:0.3[ruby_targets_ruby19] ) postgres? ( >=dev-ruby/pg-0.11.0[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ree18] ~dev-ruby/activemodel-3.2.10[ruby_targets_ree18] >=dev-ruby/arel-3.0.2:3.0[ruby_targets_ree18] >=dev-ruby/tzinfo-0.3.29[ruby_targets_ree18] sqlite3? ( >=dev-ruby/sqlite3-1.3.5[ruby_targets_ree18] ) mysql? ( >=dev-ruby/mysql2-0.3.10:0.3[ruby_targets_ree18] ) postgres? ( >=dev-ruby/pg-0.11.0[ruby_targets_ree18] ) ) ) ruby_targets_ruby18? ( test? ( dev-ruby/bundler[ruby_targets_ruby18] ~dev-ruby/actionpack-3.2.10[ruby_targets_ruby18] >=dev-ruby/sqlite3-1.3.5[ruby_targets_ruby18] >=dev-ruby/mocha-0.12.1[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/bundler[ruby_targets_ruby19] ~dev-ruby/actionpack-3.2.10[ruby_targets_ruby19] >=dev-ruby/sqlite3-1.3.5[ruby_targets_ruby19] >=dev-ruby/mocha-0.12.1[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/bundler[ruby_targets_ree18] ~dev-ruby/actionpack-3.2.10[ruby_targets_ree18] >=dev-ruby/sqlite3-1.3.5[ruby_targets_ree18] >=dev-ruby/mocha-0.12.1[ruby_targets_ree18] ) ) 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_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM -EAPI=4 -HOMEPAGE=http://rubyforge.org/projects/activerecord/ -IUSE=mysql postgres sqlite3 test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 test test -KEYWORDS=~amd64 ~arm ~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/activesupport-3.2.10[ruby_targets_ruby18] ~dev-ruby/activemodel-3.2.10[ruby_targets_ruby18] >=dev-ruby/arel-3.0.2:3.0[ruby_targets_ruby18] >=dev-ruby/tzinfo-0.3.29[ruby_targets_ruby18] sqlite3? ( >=dev-ruby/sqlite3-1.3.5[ruby_targets_ruby18] ) mysql? ( >=dev-ruby/mysql2-0.3.10:0.3[ruby_targets_ruby18] ) postgres? ( >=dev-ruby/pg-0.11.0[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby19] ~dev-ruby/activemodel-3.2.10[ruby_targets_ruby19] >=dev-ruby/arel-3.0.2:3.0[ruby_targets_ruby19] >=dev-ruby/tzinfo-0.3.29[ruby_targets_ruby19] sqlite3? ( >=dev-ruby/sqlite3-1.3.5[ruby_targets_ruby19] ) mysql? ( >=dev-ruby/mysql2-0.3.10:0.3[ruby_targets_ruby19] ) postgres? ( >=dev-ruby/pg-0.11.0[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ree18] ~dev-ruby/activemodel-3.2.10[ruby_targets_ree18] >=dev-ruby/arel-3.0.2:3.0[ruby_targets_ree18] >=dev-ruby/tzinfo-0.3.29[ruby_targets_ree18] sqlite3? ( >=dev-ruby/sqlite3-1.3.5[ruby_targets_ree18] ) mysql? ( >=dev-ruby/mysql2-0.3.10:0.3[ruby_targets_ree18] ) postgres? ( >=dev-ruby/pg-0.11.0[ruby_targets_ree18] ) ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ) -SLOT=3.2 -SRC_URI=http://github.com/rails/rails/tarball/v3.2.10 -> rails-3.2.10.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=885b550a3dc4306e8ea6ca93cd4afd19 diff --git a/metadata/md5-cache/dev-ruby/activeresource-2.3.14 b/metadata/md5-cache/dev-ruby/activeresource-2.3.14 deleted file mode 100644 index 90171d72acf1..000000000000 --- a/metadata/md5-cache/dev-ruby/activeresource-2.3.14 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/activesupport-2.3.14[ruby_targets_ruby18] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-2.3.14[ruby_targets_ree18] ) ruby_targets_jruby? ( ~dev-ruby/activesupport-2.3.14[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ruby18] virtual/ruby-test-unit[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ree18] virtual/ruby-test-unit[ruby_targets_ree18] ) ) ruby_targets_jruby? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_jruby] virtual/ruby-test-unit[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) -DESCRIPTION=Think Active Record for web resources.. -EAPI=2 -HOMEPAGE=http://rubyforge.org/projects/activeresource/ -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_jruby doc test test -KEYWORDS=amd64 ppc ppc64 x86 -x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( ~dev-ruby/activesupport-2.3.14[ruby_targets_ruby18] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-2.3.14[ruby_targets_ree18] ) ruby_targets_jruby? ( ~dev-ruby/activesupport-2.3.14[ruby_targets_jruby] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) 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_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) -SLOT=2.3 -SRC_URI=mirror://rubygems/activeresource-2.3.14.gem -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=ef2470ed12b9501cd114f292cce1464d diff --git a/metadata/md5-cache/dev-ruby/activeresource-3.0.18 b/metadata/md5-cache/dev-ruby/activeresource-3.0.18 deleted file mode 100644 index ea6aa91bbfab..000000000000 --- a/metadata/md5-cache/dev-ruby/activeresource-3.0.18 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.0.18[ruby_targets_ruby18] ~dev-ruby/activemodel-3.0.18[ruby_targets_ruby18] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.0.18[ruby_targets_ree18] ~dev-ruby/activemodel-3.0.18[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ruby18] virtual/ruby-test-unit[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ree18] virtual/ruby-test-unit[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=Think Active Record for web resources.. -EAPI=4 -HOMEPAGE=http://rubyforge.org/projects/activeresource/ -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 doc test test -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.0.18[ruby_targets_ruby18] ~dev-ruby/activemodel-3.0.18[ruby_targets_ruby18] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.0.18[ruby_targets_ree18] ~dev-ruby/activemodel-3.0.18[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ree18 ) -SLOT=3.0 -SRC_URI=http://github.com/rails/rails/tarball/v3.0.18 -> rails-3.0.18.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=578286138aaefb96167195f98c26bf0c diff --git a/metadata/md5-cache/dev-ruby/activeresource-3.1.9 b/metadata/md5-cache/dev-ruby/activeresource-3.1.9 deleted file mode 100644 index 90fccc2b2cb7..000000000000 --- a/metadata/md5-cache/dev-ruby/activeresource-3.1.9 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby18] ~dev-ruby/activemodel-3.1.9[ruby_targets_ruby18] ) ruby_targets_ruby19? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby19] ~dev-ruby/activemodel-3.1.9[ruby_targets_ruby19] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ree18] ~dev-ruby/activemodel-3.1.9[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ruby18] virtual/ruby-test-unit[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ruby19] virtual/ruby-test-unit[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ree18] virtual/ruby-test-unit[ruby_targets_ree18] ) ) 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_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=Think Active Record for web resources.. -EAPI=4 -HOMEPAGE=http://rubyforge.org/projects/activeresource/ -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 doc test test -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby18] ~dev-ruby/activemodel-3.1.9[ruby_targets_ruby18] ) ruby_targets_ruby19? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby19] ~dev-ruby/activemodel-3.1.9[ruby_targets_ruby19] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ree18] ~dev-ruby/activemodel-3.1.9[ruby_targets_ree18] ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ) -SLOT=3.1 -SRC_URI=http://github.com/rails/rails/tarball/v3.1.9 -> rails-3.1.9.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=eedd9a51cc4132f6920a3fda8d9054a7 diff --git a/metadata/md5-cache/dev-ruby/activeresource-3.2.10 b/metadata/md5-cache/dev-ruby/activeresource-3.2.10 deleted file mode 100644 index aa1a301a782d..000000000000 --- a/metadata/md5-cache/dev-ruby/activeresource-3.2.10 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby18] ~dev-ruby/activemodel-3.2.10[ruby_targets_ruby18] ) ruby_targets_ruby19? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby19] ~dev-ruby/activemodel-3.2.10[ruby_targets_ruby19] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ree18] ~dev-ruby/activemodel-3.2.10[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ree18] ) ) 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_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=Think Active Record for web resources.. -EAPI=4 -HOMEPAGE=http://rubyforge.org/projects/activeresource/ -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 doc test test -KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby18] ~dev-ruby/activemodel-3.2.10[ruby_targets_ruby18] ) ruby_targets_ruby19? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby19] ~dev-ruby/activemodel-3.2.10[ruby_targets_ruby19] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ree18] ~dev-ruby/activemodel-3.2.10[ruby_targets_ree18] ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ) -SLOT=3.2 -SRC_URI=http://github.com/rails/rails/tarball/v3.2.10 -> rails-3.2.10.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=1e1c6184785ddafdf2b3a160a676cfee diff --git a/metadata/md5-cache/dev-ruby/activesupport-2.3.14-r1 b/metadata/md5-cache/dev-ruby/activesupport-2.3.14-r1 deleted file mode 100644 index 2c548e6978dd..000000000000 --- a/metadata/md5-cache/dev-ruby/activesupport-2.3.14-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( >=dev-ruby/builder-2.1.2:0[ruby_targets_ruby18] >=dev-ruby/tzinfo-0.3.16[ruby_targets_ruby18] >=dev-ruby/i18n-0.4.1:0.4[ruby_targets_ruby18] ) ruby_targets_ree18? ( >=dev-ruby/builder-2.1.2:0[ruby_targets_ree18] >=dev-ruby/tzinfo-0.3.16[ruby_targets_ree18] >=dev-ruby/i18n-0.4.1:0.4[ruby_targets_ree18] ) ruby_targets_jruby? ( >=dev-ruby/builder-2.1.2:0[ruby_targets_jruby] >=dev-ruby/tzinfo-0.3.16[ruby_targets_jruby] >=dev-ruby/i18n-0.4.1:0.4[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) 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_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) -DESCRIPTION=Utility Classes and Extension to the Standard Library -EAPI=2 -HOMEPAGE=http://rubyforge.org/projects/activesupport/ -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_jruby test -KEYWORDS=amd64 ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( >=dev-ruby/builder-2.1.2:0[ruby_targets_ruby18] >=dev-ruby/tzinfo-0.3.16[ruby_targets_ruby18] >=dev-ruby/i18n-0.4.1:0.4[ruby_targets_ruby18] ) ruby_targets_ree18? ( >=dev-ruby/builder-2.1.2:0[ruby_targets_ree18] >=dev-ruby/tzinfo-0.3.16[ruby_targets_ree18] >=dev-ruby/i18n-0.4.1:0.4[ruby_targets_ree18] ) ruby_targets_jruby? ( >=dev-ruby/builder-2.1.2:0[ruby_targets_jruby] >=dev-ruby/tzinfo-0.3.16[ruby_targets_jruby] >=dev-ruby/i18n-0.4.1:0.4[ruby_targets_jruby] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) 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_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) -SLOT=2.3 -SRC_URI=mirror://rubygems/activesupport-2.3.14.gem -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=b9685e1c474488cbe5c563e1efcf7737 diff --git a/metadata/md5-cache/dev-ruby/activesupport-3.0.18 b/metadata/md5-cache/dev-ruby/activesupport-3.0.18 deleted file mode 100644 index c99b253181ca..000000000000 --- a/metadata/md5-cache/dev-ruby/activesupport-3.0.18 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( >=dev-ruby/memcache-client-1.5.8[ruby_targets_ruby18] ) ruby_targets_ree18? ( >=dev-ruby/memcache-client-1.5.8[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( >=dev-ruby/libxml-2.0.0[ruby_targets_ruby18] dev-ruby/nokogiri[ruby_targets_ruby18] >=dev-ruby/mocha-0.10.5[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/libxml-2.0.0[ruby_targets_ree18] dev-ruby/nokogiri[ruby_targets_ree18] >=dev-ruby/mocha-0.10.5[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=Utility Classes and Extension to the Standard Library -EAPI=4 -HOMEPAGE=http://rubyforge.org/projects/activesupport/ -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 test test -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( >=dev-ruby/memcache-client-1.5.8[ruby_targets_ruby18] ) ruby_targets_ree18? ( >=dev-ruby/memcache-client-1.5.8[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ree18 ) -SLOT=3.0 -SRC_URI=https://github.com/rails/rails/tarball/v3.0.18 -> rails-3.0.18.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=29093cb37ade37a7400156c782fa3270 diff --git a/metadata/md5-cache/dev-ruby/activesupport-3.1.9 b/metadata/md5-cache/dev-ruby/activesupport-3.1.9 deleted file mode 100644 index f36bd2d2c79c..000000000000 --- a/metadata/md5-cache/dev-ruby/activesupport-3.1.9 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( >=dev-ruby/memcache-client-1.5.8[ruby_targets_ruby18] >=dev-ruby/multi_json-1.0[ruby_targets_ruby18] dev-ruby/i18n:0.6[ruby_targets_ruby18] !!=dev-ruby/memcache-client-1.5.8[ruby_targets_ree18] >=dev-ruby/multi_json-1.0[ruby_targets_ree18] dev-ruby/i18n:0.6[ruby_targets_ree18] !!=dev-ruby/memcache-client-1.5.8[ruby_targets_ruby19] >=dev-ruby/multi_json-1.0[ruby_targets_ruby19] dev-ruby/i18n:0.6[ruby_targets_ruby19] !!=dev-ruby/libxml-2.0.0[ruby_targets_ruby18] dev-ruby/nokogiri[ruby_targets_ruby18] dev-ruby/builder:0[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( virtual/ruby-test-unit[ruby_targets_ree18] >=dev-ruby/libxml-2.0.0[ruby_targets_ree18] dev-ruby/nokogiri[ruby_targets_ree18] dev-ruby/builder:0[ruby_targets_ree18] ) ) ruby_targets_ruby19? ( test? ( virtual/ruby-test-unit[ruby_targets_ruby19] >=dev-ruby/libxml-2.0.0[ruby_targets_ruby19] dev-ruby/nokogiri[ruby_targets_ruby19] dev-ruby/builder:0[ruby_targets_ruby19] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ) -DESCRIPTION=Utility Classes and Extension to the Standard Library -EAPI=4 -HOMEPAGE=http://rubyforge.org/projects/activesupport/ -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 test test -KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( >=dev-ruby/memcache-client-1.5.8[ruby_targets_ruby18] >=dev-ruby/multi_json-1.0[ruby_targets_ruby18] dev-ruby/i18n:0.6[ruby_targets_ruby18] !!=dev-ruby/memcache-client-1.5.8[ruby_targets_ree18] >=dev-ruby/multi_json-1.0[ruby_targets_ree18] dev-ruby/i18n:0.6[ruby_targets_ree18] !!=dev-ruby/memcache-client-1.5.8[ruby_targets_ruby19] >=dev-ruby/multi_json-1.0[ruby_targets_ruby19] dev-ruby/i18n:0.6[ruby_targets_ruby19] !! rails-3.1.9.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=a7f848d9382a06f2d386ae0197ebe8dc diff --git a/metadata/md5-cache/dev-ruby/activesupport-3.2.10 b/metadata/md5-cache/dev-ruby/activesupport-3.2.10 deleted file mode 100644 index 2b3bbab393ec..000000000000 --- a/metadata/md5-cache/dev-ruby/activesupport-3.2.10 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( >=dev-ruby/multi_json-1.0[ruby_targets_ruby18] dev-ruby/i18n:0.6[ruby_targets_ruby18] !!=dev-ruby/multi_json-1.0[ruby_targets_ree18] dev-ruby/i18n:0.6[ruby_targets_ree18] !!=dev-ruby/multi_json-1.0[ruby_targets_ruby19] dev-ruby/i18n:0.6[ruby_targets_ruby19] !!=dev-ruby/multi_json-1.0[ruby_targets_jruby] dev-ruby/i18n:0.6[ruby_targets_jruby] !!=dev-ruby/memcache-client-1.5.8[ruby_targets_ruby18] dev-ruby/nokogiri[ruby_targets_ruby18] >=dev-ruby/builder-3.0.3:3[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/memcache-client-1.5.8[ruby_targets_ree18] dev-ruby/nokogiri[ruby_targets_ree18] >=dev-ruby/builder-3.0.3:3[ruby_targets_ree18] ) ) ruby_targets_ruby19? ( test? ( >=dev-ruby/memcache-client-1.5.8[ruby_targets_ruby19] dev-ruby/nokogiri[ruby_targets_ruby19] >=dev-ruby/builder-3.0.3:3[ruby_targets_ruby19] ) ) ruby_targets_jruby? ( test? ( >=dev-ruby/memcache-client-1.5.8[ruby_targets_jruby] dev-ruby/nokogiri[ruby_targets_jruby] >=dev-ruby/builder-3.0.3:3[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( test? ( >=dev-ruby/libxml-2.0.0[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/libxml-2.0.0[ruby_targets_ree18] ) ) ruby_targets_ruby19? ( test? ( >=dev-ruby/libxml-2.0.0[ruby_targets_ruby19] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) 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_ree18? ( virtual/rubygems[ruby_targets_ree18] ) 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_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) -DESCRIPTION=Utility Classes and Extension to the Standard Library -EAPI=4 -HOMEPAGE=http://rubyforge.org/projects/activesupport/ -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 ruby_targets_jruby test test -KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( >=dev-ruby/multi_json-1.0[ruby_targets_ruby18] dev-ruby/i18n:0.6[ruby_targets_ruby18] !!=dev-ruby/multi_json-1.0[ruby_targets_ree18] dev-ruby/i18n:0.6[ruby_targets_ree18] !!=dev-ruby/multi_json-1.0[ruby_targets_ruby19] dev-ruby/i18n:0.6[ruby_targets_ruby19] !!=dev-ruby/multi_json-1.0[ruby_targets_jruby] dev-ruby/i18n:0.6[ruby_targets_jruby] !! rails-3.2.10.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=7ba83967b0c4e26fd312fb6a67b09f80 diff --git a/metadata/md5-cache/dev-ruby/fakefs-0.4.2 b/metadata/md5-cache/dev-ruby/fakefs-0.4.2 index 87618d007ad0..92908da633dc 100644 --- a/metadata/md5-cache/dev-ruby/fakefs-0.4.2 +++ b/metadata/md5-cache/dev-ruby/fakefs-0.4.2 @@ -4,11 +4,11 @@ DESCRIPTION=A fake filesystem. Use it in your tests. EAPI=4 HOMEPAGE=http://github.com/defunkt/fakefs IUSE=elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 ruby_targets_jruby test -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise: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_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 ruby_targets_jruby ) SLOT=0 SRC_URI=mirror://rubygems/fakefs-0.4.2.gem _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=3da6eda187a95a4e7ec3fbca99abbd0a +_md5_=4193908f27152944e21fb8cf40932731 diff --git a/metadata/md5-cache/dev-ruby/hiera-1.1.2 b/metadata/md5-cache/dev-ruby/hiera-1.1.2-r1 similarity index 98% rename from metadata/md5-cache/dev-ruby/hiera-1.1.2 rename to metadata/md5-cache/dev-ruby/hiera-1.1.2-r1 index a7862821c7a9..19f1b32395a4 100644 --- a/metadata/md5-cache/dev-ruby/hiera-1.1.2 +++ b/metadata/md5-cache/dev-ruby/hiera-1.1.2-r1 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 rub SLOT=0 SRC_URI=mirror://rubygems/hiera-1.1.2.gem _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=875712551ee158a291afa24fc32c0e02 +_md5_=404efe0711fc3e004ccf0efb6985683e diff --git a/metadata/md5-cache/dev-ruby/jquery-rails-2.1.1 b/metadata/md5-cache/dev-ruby/jquery-rails-2.1.1 deleted file mode 100644 index d1068e5f9732..000000000000 --- a/metadata/md5-cache/dev-ruby/jquery-rails-2.1.1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( >=dev-ruby/railties-3.2.0[ruby_targets_ruby18] >=dev-ruby/thor-0.14[ruby_targets_ruby18] ) ruby_targets_ruby19? ( >=dev-ruby/railties-3.2.0[ruby_targets_ruby19] >=dev-ruby/thor-0.14[ruby_targets_ruby19] ) ruby_targets_ree18? ( >=dev-ruby/railties-3.2.0[ruby_targets_ree18] >=dev-ruby/thor-0.14[ruby_targets_ree18] ) ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=jQuery! For Rails! So great. -EAPI=4 -HOMEPAGE=http://www.rubyonrails.org -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 test -KEYWORDS=~amd64 ~arm ~x86 ~x64-macos -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( >=dev-ruby/railties-3.2.0[ruby_targets_ruby18] >=dev-ruby/thor-0.14[ruby_targets_ruby18] ) ruby_targets_ruby19? ( >=dev-ruby/railties-3.2.0[ruby_targets_ruby19] >=dev-ruby/thor-0.14[ruby_targets_ruby19] ) ruby_targets_ree18? ( >=dev-ruby/railties-3.2.0[ruby_targets_ree18] >=dev-ruby/thor-0.14[ruby_targets_ree18] ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ) -SLOT=2 -SRC_URI=mirror://rubygems/jquery-rails-2.1.1.gem -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=53eb98e908fcb0c743ad85d77b8fd311 diff --git a/metadata/md5-cache/dev-ruby/jquery-rails-2.1.2 b/metadata/md5-cache/dev-ruby/jquery-rails-2.1.2 deleted file mode 100644 index 789ad767e3aa..000000000000 --- a/metadata/md5-cache/dev-ruby/jquery-rails-2.1.2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( >=dev-ruby/railties-3.2.0[ruby_targets_ruby18] >=dev-ruby/thor-0.14[ruby_targets_ruby18] ) ruby_targets_ruby19? ( >=dev-ruby/railties-3.2.0[ruby_targets_ruby19] >=dev-ruby/thor-0.14[ruby_targets_ruby19] ) ruby_targets_ree18? ( >=dev-ruby/railties-3.2.0[ruby_targets_ree18] >=dev-ruby/thor-0.14[ruby_targets_ree18] ) ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=jQuery! For Rails! So great. -EAPI=4 -HOMEPAGE=http://www.rubyonrails.org -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 test -KEYWORDS=~amd64 ~arm ~x86 ~x64-macos -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( >=dev-ruby/railties-3.2.0[ruby_targets_ruby18] >=dev-ruby/thor-0.14[ruby_targets_ruby18] ) ruby_targets_ruby19? ( >=dev-ruby/railties-3.2.0[ruby_targets_ruby19] >=dev-ruby/thor-0.14[ruby_targets_ruby19] ) ruby_targets_ree18? ( >=dev-ruby/railties-3.2.0[ruby_targets_ree18] >=dev-ruby/thor-0.14[ruby_targets_ree18] ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ) -SLOT=2 -SRC_URI=mirror://rubygems/jquery-rails-2.1.2.gem -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=6f189eb86041b91ef796855616e2b6da diff --git a/metadata/md5-cache/dev-ruby/jquery-rails-2.2.0 b/metadata/md5-cache/dev-ruby/jquery-rails-2.2.0 new file mode 100644 index 000000000000..a39a95bf01d5 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/jquery-rails-2.2.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=test? ( ruby_targets_ruby18? ( >=dev-ruby/railties-3.0[ruby_targets_ruby18] >=dev-ruby/thor-0.14[ruby_targets_ruby18] ) ruby_targets_ruby19? ( >=dev-ruby/railties-3.0[ruby_targets_ruby19] >=dev-ruby/thor-0.14[ruby_targets_ruby19] ) ruby_targets_ree18? ( >=dev-ruby/railties-3.0[ruby_targets_ree18] >=dev-ruby/thor-0.14[ruby_targets_ree18] ) ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) +DESCRIPTION=jQuery! For Rails! So great. +EAPI=5 +HOMEPAGE=http://www.rubyonrails.org +IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 test +KEYWORDS=~amd64 ~arm ~x86 ~x64-macos +LICENSE=MIT +RDEPEND=ruby_targets_ruby18? ( >=dev-ruby/railties-3.0[ruby_targets_ruby18] >=dev-ruby/thor-0.14[ruby_targets_ruby18] ) ruby_targets_ruby19? ( >=dev-ruby/railties-3.0[ruby_targets_ruby19] >=dev-ruby/thor-0.14[ruby_targets_ruby19] ) ruby_targets_ree18? ( >=dev-ruby/railties-3.0[ruby_targets_ree18] >=dev-ruby/thor-0.14[ruby_targets_ree18] ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) +REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ) +SLOT=2 +SRC_URI=mirror://rubygems/jquery-rails-2.2.0.gem +_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=b19d4aa4606e69b1d5e579cd4e8e557c diff --git a/metadata/md5-cache/dev-ruby/pry-0.9.11.4 b/metadata/md5-cache/dev-ruby/pry-0.9.11.4 new file mode 100644 index 000000000000..e0d04d77ce9a --- /dev/null +++ b/metadata/md5-cache/dev-ruby/pry-0.9.11.4 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=test? ( ruby_targets_ruby19? ( >=dev-ruby/coderay-1.0.5[ruby_targets_ruby19] >=dev-ruby/slop-3.4.1:3[ruby_targets_ruby19] >=dev-ruby/method_source-0.8[ruby_targets_ruby19] ) ) ruby_targets_ruby19? ( test? ( >=dev-ruby/bacon-1.1[ruby_targets_ruby19] >=dev-ruby/open4-1.3[ruby_targets_ruby19] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ) +DESCRIPTION=Pry is a powerful alternative to the standard IRB shell for Ruby. +EAPI=5 +HOMEPAGE=https://github.com/pry/pry/wiki +IUSE=test elibc_FreeBSD ruby_targets_ruby19 test test +KEYWORDS=~amd64 ~ppc64 ~x86 +LICENSE=MIT +RDEPEND=ruby_targets_ruby19? ( >=dev-ruby/coderay-1.0.5[ruby_targets_ruby19] >=dev-ruby/slop-3.4.1:3[ruby_targets_ruby19] >=dev-ruby/method_source-0.8[ruby_targets_ruby19] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ) +SLOT=ruby19 +SRC_URI=mirror://rubygems/pry-0.9.11.4.gem +_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=7839b5ac7df507a54de900d578e4b4c0 diff --git a/metadata/md5-cache/dev-ruby/rails-2.3.14 b/metadata/md5-cache/dev-ruby/rails-2.3.14 deleted file mode 100644 index 53360506b001..000000000000 --- a/metadata/md5-cache/dev-ruby/rails-2.3.14 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( >=dev-ruby/rake-0.8.3[ruby_targets_ruby18] dev-ruby/rdoc[ruby_targets_ruby18] ~dev-ruby/activerecord-2.3.14[ruby_targets_ruby18] ~dev-ruby/activeresource-2.3.14[ruby_targets_ruby18] ~dev-ruby/activesupport-2.3.14[ruby_targets_ruby18] ~dev-ruby/actionmailer-2.3.14[ruby_targets_ruby18] ~dev-ruby/actionpack-2.3.14[ruby_targets_ruby18] ) ruby_targets_ree18? ( >=dev-ruby/rake-0.8.3[ruby_targets_ree18] dev-ruby/rdoc[ruby_targets_ree18] ~dev-ruby/activerecord-2.3.14[ruby_targets_ree18] ~dev-ruby/activeresource-2.3.14[ruby_targets_ree18] ~dev-ruby/activesupport-2.3.14[ruby_targets_ree18] ~dev-ruby/actionmailer-2.3.14[ruby_targets_ree18] ~dev-ruby/actionpack-2.3.14[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( doc? ( dev-ruby/redcloth[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/redcloth[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=ruby on rails is a web-application and persistance framework -EAPI=2 -HOMEPAGE=http://www.rubyonrails.org -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 doc test -KEYWORDS=amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=>=app-admin/eselect-rails-0.15 ruby_targets_ruby18? ( >=dev-ruby/rake-0.8.3[ruby_targets_ruby18] dev-ruby/rdoc[ruby_targets_ruby18] ~dev-ruby/activerecord-2.3.14[ruby_targets_ruby18] ~dev-ruby/activeresource-2.3.14[ruby_targets_ruby18] ~dev-ruby/activesupport-2.3.14[ruby_targets_ruby18] ~dev-ruby/actionmailer-2.3.14[ruby_targets_ruby18] ~dev-ruby/actionpack-2.3.14[ruby_targets_ruby18] ) ruby_targets_ree18? ( >=dev-ruby/rake-0.8.3[ruby_targets_ree18] dev-ruby/rdoc[ruby_targets_ree18] ~dev-ruby/activerecord-2.3.14[ruby_targets_ree18] ~dev-ruby/activeresource-2.3.14[ruby_targets_ree18] ~dev-ruby/activesupport-2.3.14[ruby_targets_ree18] ~dev-ruby/actionmailer-2.3.14[ruby_targets_ree18] ~dev-ruby/actionpack-2.3.14[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -SLOT=2.3 -SRC_URI=mirror://rubygems/rails-2.3.14.gem -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=05ff27c5ae066806b0893e0d04e78e69 diff --git a/metadata/md5-cache/dev-ruby/rails-3.0.18 b/metadata/md5-cache/dev-ruby/rails-3.0.18 deleted file mode 100644 index e1ff4bc39622..000000000000 --- a/metadata/md5-cache/dev-ruby/rails-3.0.18 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/actionmailer-3.0.18[ruby_targets_ruby18] ~dev-ruby/actionpack-3.0.18[ruby_targets_ruby18] ~dev-ruby/activerecord-3.0.18[ruby_targets_ruby18] ~dev-ruby/activeresource-3.0.18[ruby_targets_ruby18] ~dev-ruby/activesupport-3.0.18[ruby_targets_ruby18] =dev-ruby/bundler-1.0*[ruby_targets_ruby18] ~dev-ruby/railties-3.0.18[ruby_targets_ruby18] ) ruby_targets_ree18? ( ~dev-ruby/actionmailer-3.0.18[ruby_targets_ree18] ~dev-ruby/actionpack-3.0.18[ruby_targets_ree18] ~dev-ruby/activerecord-3.0.18[ruby_targets_ree18] ~dev-ruby/activeresource-3.0.18[ruby_targets_ree18] ~dev-ruby/activesupport-3.0.18[ruby_targets_ree18] =dev-ruby/bundler-1.0*[ruby_targets_ree18] ~dev-ruby/railties-3.0.18[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=ruby on rails is a web-application and persistance framework -EAPI=2 -HOMEPAGE=http://www.rubyonrails.org -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 test -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=>=app-admin/eselect-rails-0.16 ruby_targets_ruby18? ( ~dev-ruby/actionmailer-3.0.18[ruby_targets_ruby18] ~dev-ruby/actionpack-3.0.18[ruby_targets_ruby18] ~dev-ruby/activerecord-3.0.18[ruby_targets_ruby18] ~dev-ruby/activeresource-3.0.18[ruby_targets_ruby18] ~dev-ruby/activesupport-3.0.18[ruby_targets_ruby18] =dev-ruby/bundler-1.0*[ruby_targets_ruby18] ~dev-ruby/railties-3.0.18[ruby_targets_ruby18] ) ruby_targets_ree18? ( ~dev-ruby/actionmailer-3.0.18[ruby_targets_ree18] ~dev-ruby/actionpack-3.0.18[ruby_targets_ree18] ~dev-ruby/activerecord-3.0.18[ruby_targets_ree18] ~dev-ruby/activeresource-3.0.18[ruby_targets_ree18] ~dev-ruby/activesupport-3.0.18[ruby_targets_ree18] =dev-ruby/bundler-1.0*[ruby_targets_ree18] ~dev-ruby/railties-3.0.18[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -SLOT=3.0 -SRC_URI=mirror://rubygems/rails-3.0.18.gem -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=f9a5de7355351dc2d337ad64b641046a diff --git a/metadata/md5-cache/dev-ruby/rails-3.1.9 b/metadata/md5-cache/dev-ruby/rails-3.1.9 deleted file mode 100644 index 4191cdb87923..000000000000 --- a/metadata/md5-cache/dev-ruby/rails-3.1.9 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/actionmailer-3.1.9[ruby_targets_ruby18] ~dev-ruby/actionpack-3.1.9[ruby_targets_ruby18] ~dev-ruby/activerecord-3.1.9[ruby_targets_ruby18] ~dev-ruby/activeresource-3.1.9[ruby_targets_ruby18] ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby18] =dev-ruby/bundler-1*[ruby_targets_ruby18] ~dev-ruby/railties-3.1.9[ruby_targets_ruby18] asset-pipeline? ( dev-ruby/jquery-rails:0[ruby_targets_ruby18] dev-ruby/sass-rails[ruby_targets_ruby18] dev-ruby/uglifier[ruby_targets_ruby18] dev-ruby/coffee-rails[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( ~dev-ruby/actionmailer-3.1.9[ruby_targets_ruby19] ~dev-ruby/actionpack-3.1.9[ruby_targets_ruby19] ~dev-ruby/activerecord-3.1.9[ruby_targets_ruby19] ~dev-ruby/activeresource-3.1.9[ruby_targets_ruby19] ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby19] =dev-ruby/bundler-1*[ruby_targets_ruby19] ~dev-ruby/railties-3.1.9[ruby_targets_ruby19] asset-pipeline? ( dev-ruby/jquery-rails:0[ruby_targets_ruby19] dev-ruby/sass-rails[ruby_targets_ruby19] dev-ruby/uglifier[ruby_targets_ruby19] dev-ruby/coffee-rails[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( ~dev-ruby/actionmailer-3.1.9[ruby_targets_ree18] ~dev-ruby/actionpack-3.1.9[ruby_targets_ree18] ~dev-ruby/activerecord-3.1.9[ruby_targets_ree18] ~dev-ruby/activeresource-3.1.9[ruby_targets_ree18] ~dev-ruby/activesupport-3.1.9[ruby_targets_ree18] =dev-ruby/bundler-1*[ruby_targets_ree18] ~dev-ruby/railties-3.1.9[ruby_targets_ree18] asset-pipeline? ( dev-ruby/jquery-rails:0[ruby_targets_ree18] dev-ruby/sass-rails[ruby_targets_ree18] dev-ruby/uglifier[ruby_targets_ree18] dev-ruby/coffee-rails[ruby_targets_ree18] ) ) ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=ruby on rails is a web-application and persistance framework -EAPI=4 -HOMEPAGE=http://www.rubyonrails.org -IUSE=+asset-pipeline test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 test -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=>=app-admin/eselect-rails-0.18 ruby_targets_ruby18? ( ~dev-ruby/actionmailer-3.1.9[ruby_targets_ruby18] ~dev-ruby/actionpack-3.1.9[ruby_targets_ruby18] ~dev-ruby/activerecord-3.1.9[ruby_targets_ruby18] ~dev-ruby/activeresource-3.1.9[ruby_targets_ruby18] ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby18] =dev-ruby/bundler-1*[ruby_targets_ruby18] ~dev-ruby/railties-3.1.9[ruby_targets_ruby18] asset-pipeline? ( dev-ruby/jquery-rails:0[ruby_targets_ruby18] dev-ruby/sass-rails[ruby_targets_ruby18] dev-ruby/uglifier[ruby_targets_ruby18] dev-ruby/coffee-rails[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( ~dev-ruby/actionmailer-3.1.9[ruby_targets_ruby19] ~dev-ruby/actionpack-3.1.9[ruby_targets_ruby19] ~dev-ruby/activerecord-3.1.9[ruby_targets_ruby19] ~dev-ruby/activeresource-3.1.9[ruby_targets_ruby19] ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby19] =dev-ruby/bundler-1*[ruby_targets_ruby19] ~dev-ruby/railties-3.1.9[ruby_targets_ruby19] asset-pipeline? ( dev-ruby/jquery-rails:0[ruby_targets_ruby19] dev-ruby/sass-rails[ruby_targets_ruby19] dev-ruby/uglifier[ruby_targets_ruby19] dev-ruby/coffee-rails[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( ~dev-ruby/actionmailer-3.1.9[ruby_targets_ree18] ~dev-ruby/actionpack-3.1.9[ruby_targets_ree18] ~dev-ruby/activerecord-3.1.9[ruby_targets_ree18] ~dev-ruby/activeresource-3.1.9[ruby_targets_ree18] ~dev-ruby/activesupport-3.1.9[ruby_targets_ree18] =dev-ruby/bundler-1*[ruby_targets_ree18] ~dev-ruby/railties-3.1.9[ruby_targets_ree18] asset-pipeline? ( dev-ruby/jquery-rails:0[ruby_targets_ree18] dev-ruby/sass-rails[ruby_targets_ree18] dev-ruby/uglifier[ruby_targets_ree18] dev-ruby/coffee-rails[ruby_targets_ree18] ) ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ) -SLOT=3.1 -SRC_URI=mirror://rubygems/rails-3.1.9.gem -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=01cdf76c2e699d869dad4590172aaedd diff --git a/metadata/md5-cache/dev-ruby/rails-3.2.10 b/metadata/md5-cache/dev-ruby/rails-3.2.10 deleted file mode 100644 index 356a5aae7b2e..000000000000 --- a/metadata/md5-cache/dev-ruby/rails-3.2.10 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/actionmailer-3.2.10[ruby_targets_ruby18] ~dev-ruby/actionpack-3.2.10[ruby_targets_ruby18] ~dev-ruby/activerecord-3.2.10[ruby_targets_ruby18] ~dev-ruby/activeresource-3.2.10[ruby_targets_ruby18] ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby18] =dev-ruby/bundler-1*[ruby_targets_ruby18] ~dev-ruby/railties-3.2.10[ruby_targets_ruby18] asset-pipeline? ( dev-ruby/jquery-rails[ruby_targets_ruby18] >=dev-ruby/sass-rails-3.2.3:3.2[ruby_targets_ruby18] >=dev-ruby/uglifier-1.0.3[ruby_targets_ruby18] >=dev-ruby/coffee-rails-3.2.1:3.2[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( ~dev-ruby/actionmailer-3.2.10[ruby_targets_ruby19] ~dev-ruby/actionpack-3.2.10[ruby_targets_ruby19] ~dev-ruby/activerecord-3.2.10[ruby_targets_ruby19] ~dev-ruby/activeresource-3.2.10[ruby_targets_ruby19] ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby19] =dev-ruby/bundler-1*[ruby_targets_ruby19] ~dev-ruby/railties-3.2.10[ruby_targets_ruby19] asset-pipeline? ( dev-ruby/jquery-rails[ruby_targets_ruby19] >=dev-ruby/sass-rails-3.2.3:3.2[ruby_targets_ruby19] >=dev-ruby/uglifier-1.0.3[ruby_targets_ruby19] >=dev-ruby/coffee-rails-3.2.1:3.2[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( ~dev-ruby/actionmailer-3.2.10[ruby_targets_ree18] ~dev-ruby/actionpack-3.2.10[ruby_targets_ree18] ~dev-ruby/activerecord-3.2.10[ruby_targets_ree18] ~dev-ruby/activeresource-3.2.10[ruby_targets_ree18] ~dev-ruby/activesupport-3.2.10[ruby_targets_ree18] =dev-ruby/bundler-1*[ruby_targets_ree18] ~dev-ruby/railties-3.2.10[ruby_targets_ree18] asset-pipeline? ( dev-ruby/jquery-rails[ruby_targets_ree18] >=dev-ruby/sass-rails-3.2.3:3.2[ruby_targets_ree18] >=dev-ruby/uglifier-1.0.3[ruby_targets_ree18] >=dev-ruby/coffee-rails-3.2.1:3.2[ruby_targets_ree18] ) ) ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=ruby on rails is a web-application and persistance framework -EAPI=4 -HOMEPAGE=http://www.rubyonrails.org -IUSE=+asset-pipeline test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 test -KEYWORDS=~amd64 ~arm ~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/actionmailer-3.2.10[ruby_targets_ruby18] ~dev-ruby/actionpack-3.2.10[ruby_targets_ruby18] ~dev-ruby/activerecord-3.2.10[ruby_targets_ruby18] ~dev-ruby/activeresource-3.2.10[ruby_targets_ruby18] ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby18] =dev-ruby/bundler-1*[ruby_targets_ruby18] ~dev-ruby/railties-3.2.10[ruby_targets_ruby18] asset-pipeline? ( dev-ruby/jquery-rails[ruby_targets_ruby18] >=dev-ruby/sass-rails-3.2.3:3.2[ruby_targets_ruby18] >=dev-ruby/uglifier-1.0.3[ruby_targets_ruby18] >=dev-ruby/coffee-rails-3.2.1:3.2[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( ~dev-ruby/actionmailer-3.2.10[ruby_targets_ruby19] ~dev-ruby/actionpack-3.2.10[ruby_targets_ruby19] ~dev-ruby/activerecord-3.2.10[ruby_targets_ruby19] ~dev-ruby/activeresource-3.2.10[ruby_targets_ruby19] ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby19] =dev-ruby/bundler-1*[ruby_targets_ruby19] ~dev-ruby/railties-3.2.10[ruby_targets_ruby19] asset-pipeline? ( dev-ruby/jquery-rails[ruby_targets_ruby19] >=dev-ruby/sass-rails-3.2.3:3.2[ruby_targets_ruby19] >=dev-ruby/uglifier-1.0.3[ruby_targets_ruby19] >=dev-ruby/coffee-rails-3.2.1:3.2[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( ~dev-ruby/actionmailer-3.2.10[ruby_targets_ree18] ~dev-ruby/actionpack-3.2.10[ruby_targets_ree18] ~dev-ruby/activerecord-3.2.10[ruby_targets_ree18] ~dev-ruby/activeresource-3.2.10[ruby_targets_ree18] ~dev-ruby/activesupport-3.2.10[ruby_targets_ree18] =dev-ruby/bundler-1*[ruby_targets_ree18] ~dev-ruby/railties-3.2.10[ruby_targets_ree18] asset-pipeline? ( dev-ruby/jquery-rails[ruby_targets_ree18] >=dev-ruby/sass-rails-3.2.3:3.2[ruby_targets_ree18] >=dev-ruby/uglifier-1.0.3[ruby_targets_ree18] >=dev-ruby/coffee-rails-3.2.1:3.2[ruby_targets_ree18] ) ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ) -SLOT=3.2 -SRC_URI=mirror://rubygems/rails-3.2.10.gem -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=8466acc33dfe3b1bcbb425ad5d51d5da diff --git a/metadata/md5-cache/dev-ruby/railties-3.0.18 b/metadata/md5-cache/dev-ruby/railties-3.0.18 deleted file mode 100644 index 94da5b367516..000000000000 --- a/metadata/md5-cache/dev-ruby/railties-3.0.18 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.0.18[ruby_targets_ruby18] ~dev-ruby/actionpack-3.0.18[ruby_targets_ruby18] >=dev-ruby/rdoc-3.4[ruby_targets_ruby18] >=dev-ruby/thor-0.14.4[ruby_targets_ruby18] >=dev-ruby/rake-0.8.7[ruby_targets_ruby18] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.0.18[ruby_targets_ree18] ~dev-ruby/actionpack-3.0.18[ruby_targets_ree18] >=dev-ruby/rdoc-3.4[ruby_targets_ree18] >=dev-ruby/thor-0.14.4[ruby_targets_ree18] >=dev-ruby/rake-0.8.7[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ruby18] virtual/ruby-test-unit[ruby_targets_ruby18] ) doc? ( >=dev-ruby/redcloth-4.1.1[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ree18] virtual/ruby-test-unit[ruby_targets_ree18] ) doc? ( >=dev-ruby/redcloth-4.1.1[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=Tools for creating, working with, and running Rails applications. -EAPI=4 -HOMEPAGE=http://github.com/rails/rails -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 doc test test -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.0.18[ruby_targets_ruby18] ~dev-ruby/actionpack-3.0.18[ruby_targets_ruby18] >=dev-ruby/rdoc-3.4[ruby_targets_ruby18] >=dev-ruby/thor-0.14.4[ruby_targets_ruby18] >=dev-ruby/rake-0.8.7[ruby_targets_ruby18] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.0.18[ruby_targets_ree18] ~dev-ruby/actionpack-3.0.18[ruby_targets_ree18] >=dev-ruby/rdoc-3.4[ruby_targets_ree18] >=dev-ruby/thor-0.14.4[ruby_targets_ree18] >=dev-ruby/rake-0.8.7[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ree18 ) -RESTRICT=test -SLOT=3.0 -SRC_URI=http://github.com/rails/rails/tarball/v3.0.18 -> rails-3.0.18.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=be654c318b58067cfec2383c7818671c diff --git a/metadata/md5-cache/dev-ruby/railties-3.1.9 b/metadata/md5-cache/dev-ruby/railties-3.1.9 deleted file mode 100644 index c1ae84f15c7d..000000000000 --- a/metadata/md5-cache/dev-ruby/railties-3.1.9 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby18] ~dev-ruby/actionpack-3.1.9[ruby_targets_ruby18] >=dev-ruby/rdoc-3.4[ruby_targets_ruby18] >=dev-ruby/thor-0.14.6[ruby_targets_ruby18] >=dev-ruby/rack-ssl-1.3.2:1.3[ruby_targets_ruby18] >=dev-ruby/rake-0.8.7[ruby_targets_ruby18] ) ruby_targets_ruby19? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby19] ~dev-ruby/actionpack-3.1.9[ruby_targets_ruby19] >=dev-ruby/rdoc-3.4[ruby_targets_ruby19] >=dev-ruby/thor-0.14.6[ruby_targets_ruby19] >=dev-ruby/rack-ssl-1.3.2:1.3[ruby_targets_ruby19] >=dev-ruby/rake-0.8.7[ruby_targets_ruby19] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ree18] ~dev-ruby/actionpack-3.1.9[ruby_targets_ree18] >=dev-ruby/rdoc-3.4[ruby_targets_ree18] >=dev-ruby/thor-0.14.6[ruby_targets_ree18] >=dev-ruby/rack-ssl-1.3.2:1.3[ruby_targets_ree18] >=dev-ruby/rake-0.8.7[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ruby18] virtual/ruby-test-unit[ruby_targets_ruby18] ) doc? ( >=dev-ruby/redcloth-4.1.1[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ruby19] virtual/ruby-test-unit[ruby_targets_ruby19] ) doc? ( >=dev-ruby/redcloth-4.1.1[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ree18] virtual/ruby-test-unit[ruby_targets_ree18] ) doc? ( >=dev-ruby/redcloth-4.1.1[ruby_targets_ree18] ) ) 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_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( doc? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=Tools for creating, working with, and running Rails applications. -EAPI=4 -HOMEPAGE=http://github.com/rails/rails -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 doc test test -KEYWORDS=~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby18] ~dev-ruby/actionpack-3.1.9[ruby_targets_ruby18] >=dev-ruby/rdoc-3.4[ruby_targets_ruby18] >=dev-ruby/thor-0.14.6[ruby_targets_ruby18] >=dev-ruby/rack-ssl-1.3.2:1.3[ruby_targets_ruby18] >=dev-ruby/rake-0.8.7[ruby_targets_ruby18] ) ruby_targets_ruby19? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ruby19] ~dev-ruby/actionpack-3.1.9[ruby_targets_ruby19] >=dev-ruby/rdoc-3.4[ruby_targets_ruby19] >=dev-ruby/thor-0.14.6[ruby_targets_ruby19] >=dev-ruby/rack-ssl-1.3.2:1.3[ruby_targets_ruby19] >=dev-ruby/rake-0.8.7[ruby_targets_ruby19] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.1.9[ruby_targets_ree18] ~dev-ruby/actionpack-3.1.9[ruby_targets_ree18] >=dev-ruby/rdoc-3.4[ruby_targets_ree18] >=dev-ruby/thor-0.14.6[ruby_targets_ree18] >=dev-ruby/rack-ssl-1.3.2:1.3[ruby_targets_ree18] >=dev-ruby/rake-0.8.7[ruby_targets_ree18] ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ) -RESTRICT=test -SLOT=3.1 -SRC_URI=http://github.com/rails/rails/tarball/v3.1.9 -> rails-3.1.9.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=28ba16bf996bbf218e174451a19f961d diff --git a/metadata/md5-cache/dev-ruby/railties-3.2.10 b/metadata/md5-cache/dev-ruby/railties-3.2.10 deleted file mode 100644 index 9f6c87a9f930..000000000000 --- a/metadata/md5-cache/dev-ruby/railties-3.2.10 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby18] ~dev-ruby/actionpack-3.2.10[ruby_targets_ruby18] >=dev-ruby/rdoc-3.4[ruby_targets_ruby18] >=dev-ruby/thor-0.14.6[ruby_targets_ruby18] >=dev-ruby/rack-ssl-1.3.2:1.3[ruby_targets_ruby18] >=dev-ruby/rake-0.8.7[ruby_targets_ruby18] ) ruby_targets_ruby19? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby19] ~dev-ruby/actionpack-3.2.10[ruby_targets_ruby19] >=dev-ruby/rdoc-3.4[ruby_targets_ruby19] >=dev-ruby/thor-0.14.6[ruby_targets_ruby19] >=dev-ruby/rack-ssl-1.3.2:1.3[ruby_targets_ruby19] >=dev-ruby/rake-0.8.7[ruby_targets_ruby19] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ree18] ~dev-ruby/actionpack-3.2.10[ruby_targets_ree18] >=dev-ruby/rdoc-3.4[ruby_targets_ree18] >=dev-ruby/thor-0.14.6[ruby_targets_ree18] >=dev-ruby/rack-ssl-1.3.2:1.3[ruby_targets_ree18] >=dev-ruby/rake-0.8.7[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ruby18] virtual/ruby-test-unit[ruby_targets_ruby18] ) doc? ( >=dev-ruby/redcloth-4.1.1[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ruby19] virtual/ruby-test-unit[ruby_targets_ruby19] ) doc? ( >=dev-ruby/redcloth-4.1.1[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/mocha-0.9.5[ruby_targets_ree18] virtual/ruby-test-unit[ruby_targets_ree18] ) doc? ( >=dev-ruby/redcloth-4.1.1[ruby_targets_ree18] ) ) 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_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( doc? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=Tools for creating, working with, and running Rails applications. -EAPI=4 -HOMEPAGE=http://github.com/rails/rails -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 doc test test -KEYWORDS=~amd64 ~arm ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=>=app-admin/eselect-rails-0.18 ruby_targets_ruby18? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby18] ~dev-ruby/actionpack-3.2.10[ruby_targets_ruby18] >=dev-ruby/rdoc-3.4[ruby_targets_ruby18] >=dev-ruby/thor-0.14.6[ruby_targets_ruby18] >=dev-ruby/rack-ssl-1.3.2:1.3[ruby_targets_ruby18] >=dev-ruby/rake-0.8.7[ruby_targets_ruby18] ) ruby_targets_ruby19? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ruby19] ~dev-ruby/actionpack-3.2.10[ruby_targets_ruby19] >=dev-ruby/rdoc-3.4[ruby_targets_ruby19] >=dev-ruby/thor-0.14.6[ruby_targets_ruby19] >=dev-ruby/rack-ssl-1.3.2:1.3[ruby_targets_ruby19] >=dev-ruby/rake-0.8.7[ruby_targets_ruby19] ) ruby_targets_ree18? ( ~dev-ruby/activesupport-3.2.10[ruby_targets_ree18] ~dev-ruby/actionpack-3.2.10[ruby_targets_ree18] >=dev-ruby/rdoc-3.4[ruby_targets_ree18] >=dev-ruby/thor-0.14.6[ruby_targets_ree18] >=dev-ruby/rack-ssl-1.3.2:1.3[ruby_targets_ree18] >=dev-ruby/rake-0.8.7[ruby_targets_ree18] ) 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_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ) -RESTRICT=test -SLOT=3.2 -SRC_URI=http://github.com/rails/rails/tarball/v3.2.10 -> rails-3.2.10.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=abc3f0abd434243b0dfdc009a9773c7b diff --git a/metadata/md5-cache/dev-ruby/rspec-2.12.0 b/metadata/md5-cache/dev-ruby/rspec-2.12.0 index 961c4f437ef4..da1be60858a9 100644 --- a/metadata/md5-cache/dev-ruby/rspec-2.12.0 +++ b/metadata/md5-cache/dev-ruby/rspec-2.12.0 @@ -4,10 +4,10 @@ DESCRIPTION=A Behaviour Driven Development (BDD) framework for Ruby EAPI=2 HOMEPAGE=http://rspec.rubyforge.org/ IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ruby_targets_jruby test -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby18? ( =dev-ruby/rspec-core-2.12*[ruby_targets_ruby18] =dev-ruby/rspec-expectations-2.12*[ruby_targets_ruby18] =dev-ruby/rspec-mocks-2.12*[ruby_targets_ruby18] ) ruby_targets_ruby19? ( =dev-ruby/rspec-core-2.12*[ruby_targets_ruby19] =dev-ruby/rspec-expectations-2.12*[ruby_targets_ruby19] =dev-ruby/rspec-mocks-2.12*[ruby_targets_ruby19] ) ruby_targets_ree18? ( =dev-ruby/rspec-core-2.12*[ruby_targets_ree18] =dev-ruby/rspec-expectations-2.12*[ruby_targets_ree18] =dev-ruby/rspec-mocks-2.12*[ruby_targets_ree18] ) ruby_targets_jruby? ( =dev-ruby/rspec-core-2.12*[ruby_targets_jruby] =dev-ruby/rspec-expectations-2.12*[ruby_targets_jruby] =dev-ruby/rspec-mocks-2.12*[ruby_targets_jruby] ) 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] ) SLOT=2 SRC_URI=mirror://rubygems/rspec-2.12.0.gem _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=4c91f49a26523f8fac40b728542c93af +_md5_=2229f3a7022eb0820cb127674f0fcc7c diff --git a/metadata/md5-cache/dev-ruby/rspec-core-2.12.2 b/metadata/md5-cache/dev-ruby/rspec-core-2.12.2 index 8af2e8e6df66..0ceeff82ec66 100644 --- a/metadata/md5-cache/dev-ruby/rspec-core-2.12.2 +++ b/metadata/md5-cache/dev-ruby/rspec-core-2.12.2 @@ -4,11 +4,11 @@ DESCRIPTION=A Behaviour Driven Development (BDD) framework for Ruby EAPI=4 HOMEPAGE=http://rspec.rubyforge.org/ IUSE=elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 ruby_targets_jruby doc test test -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=! rspec-core-2.12.2-git.tgz _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=7fe74b7d7f18ef3566a2e290eee939e0 +_md5_=d889cb5585b1b4eeddc3f8b3bc6bf79e diff --git a/metadata/md5-cache/dev-ruby/rspec-expectations-2.12.1 b/metadata/md5-cache/dev-ruby/rspec-expectations-2.12.1 index 7a98656bb040..9b8c319b0669 100644 --- a/metadata/md5-cache/dev-ruby/rspec-expectations-2.12.1 +++ b/metadata/md5-cache/dev-ruby/rspec-expectations-2.12.1 @@ -4,11 +4,11 @@ DESCRIPTION=A Behaviour Driven Development (BDD) framework for Ruby EAPI=4 HOMEPAGE=http://rspec.rubyforge.org/ IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 ruby_targets_jruby test test -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby18? ( >=dev-ruby/diff-lcs-1.1.3[ruby_targets_ruby18] ) ruby_targets_ree18? ( >=dev-ruby/diff-lcs-1.1.3[ruby_targets_ree18] ) ruby_targets_ruby19? ( >=dev-ruby/diff-lcs-1.1.3[ruby_targets_ruby19] ) ruby_targets_jruby? ( >=dev-ruby/diff-lcs-1.1.3[ruby_targets_jruby] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise: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_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 ruby_targets_jruby ) SLOT=2 SRC_URI=https://github.com/rspec/rspec-expectations/tarball/v2.12.1 -> rspec-expectations-2.12.1-git.tgz _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=93f133ba91750efc8304aebc876144be +_md5_=c19eb61b541a75bb57d73ebceb6671fb diff --git a/metadata/md5-cache/dev-ruby/rspec-mocks-2.12.1 b/metadata/md5-cache/dev-ruby/rspec-mocks-2.12.1 index 39b6849236b6..6fc5638e7d56 100644 --- a/metadata/md5-cache/dev-ruby/rspec-mocks-2.12.1 +++ b/metadata/md5-cache/dev-ruby/rspec-mocks-2.12.1 @@ -4,11 +4,11 @@ DESCRIPTION=A Behaviour Driven Development (BDD) framework for Ruby EAPI=4 HOMEPAGE=http://rspec.rubyforge.org/ IUSE=elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 ruby_targets_jruby test test -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise: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_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 ruby_targets_jruby ) SLOT=2 SRC_URI=https://github.com/rspec/rspec-mocks/tarball/v2.12.1 -> rspec-mocks-2.12.1-git.tgz _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=60e1b1eca44a98baa001b1f727951abc +_md5_=85e4b5642c606cf491f11227a9d099e5 diff --git a/metadata/md5-cache/dev-ruby/sexp_processor-3.2.0 b/metadata/md5-cache/dev-ruby/sexp_processor-3.2.0 index 1baf8877f464..9f5aac6f637b 100644 --- a/metadata/md5-cache/dev-ruby/sexp_processor-3.2.0 +++ b/metadata/md5-cache/dev-ruby/sexp_processor-3.2.0 @@ -4,11 +4,11 @@ DESCRIPTION=Processor for s-expressions created as part of the ParseTree project EAPI=4 HOMEPAGE=http://www.zenspider.com/ZSS/Products/ParseTree/ IUSE=elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 ruby_targets_jruby doc test test -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise: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_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 ruby_targets_jruby ) SLOT=0 SRC_URI=mirror://rubygems/sexp_processor-3.2.0.gem _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=4616f6cf44fd6448b140f2358406ff48 +_md5_=f4ec2e336f57b5a1abc8dca7f3b7977c diff --git a/metadata/md5-cache/dev-ruby/test-unit-2.5.3 b/metadata/md5-cache/dev-ruby/test-unit-2.5.3 index 817fb65c396f..222e3f43c3c0 100644 --- a/metadata/md5-cache/dev-ruby/test-unit-2.5.3 +++ b/metadata/md5-cache/dev-ruby/test-unit-2.5.3 @@ -4,11 +4,11 @@ DESCRIPTION=An improved version of the Test::Unit framework from Ruby 1.8 EAPI=4 HOMEPAGE=http://test-unit.rubyforge.org/ 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 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=Ruby 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=2 SRC_URI=mirror://rubygems/test-unit-2.5.3.gem _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=3c00143f4ce1345a5737f18846069a0e +_md5_=ab3a218e544e852c2eba8a9531441afc diff --git a/metadata/md5-cache/dev-tex/glossaries-3.04 b/metadata/md5-cache/dev-tex/glossaries-3.04 index 993a796ce0a8..6eab92dcf2ea 100644 --- a/metadata/md5-cache/dev-tex/glossaries-3.04 +++ b/metadata/md5-cache/dev-tex/glossaries-3.04 @@ -4,10 +4,10 @@ DESCRIPTION=Create glossaries and lists of acronyms. EAPI=5 HOMEPAGE=http://www.ctan.org/tex-archive/help/Catalogue/entries/glossaries.html IUSE=doc examples -KEYWORDS=~alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos +KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=LPPL-1.2 RDEPEND=dev-lang/perl dev-texlive/texlive-latexrecommended >=dev-texlive/texlive-latexextra-2008 virtual/latex-base SLOT=0 SRC_URI=mirror://gentoo/glossaries-3.04.zip _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 latex-package e7bfe03b27224512702eac009812cc50 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=21eea24ce9a1ceb55bfe983f201a93ae +_md5_=b85ed9dc0cb585fcb1c650076890d812 diff --git a/metadata/md5-cache/dev-tex/luatex-0.70.1-r1 b/metadata/md5-cache/dev-tex/luatex-0.70.1-r1 index df8338fd2907..a5d5c58cff8c 100644 --- a/metadata/md5-cache/dev-tex/luatex-0.70.1-r1 +++ b/metadata/md5-cache/dev-tex/luatex-0.70.1-r1 @@ -4,10 +4,10 @@ DESCRIPTION=An extended version of pdfTeX using Lua as an embedded scripting lan EAPI=4 HOMEPAGE=http://www.luatex.org/ IUSE=doc -KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~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 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=dev-libs/zziplib >=media-libs/libpng-1.4 >=app-text/poppler-0.12.3-r3[xpdf-headers(+)] sys-libs/zlib >=dev-libs/kpathsea-6.0.1_p20110627 SLOT=0 SRC_URI=http://foundry.supelec.fr/gf/download/frsrelease/392/1730/luatex-beta-0.70.1.tar.bz2 http://foundry.supelec.fr/gf/download/frsrelease/392/1732/luatex-beta-0.70.1-doc.tar.bz2 _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 texlive-common dcab7201316e43f118d20a1d6dab09a9 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=33a39d87762d09f0058002a288a3c09c +_md5_=47a5dba8a076b3152b924ca94fa76bb3 diff --git a/metadata/md5-cache/dev-util/android-sdk-update-manager-17 b/metadata/md5-cache/dev-util/android-sdk-update-manager-17 deleted file mode 100644 index a01b3b2b7a63..000000000000 --- a/metadata/md5-cache/dev-util/android-sdk-update-manager-17 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=install postinst prepare setup -DEPEND=app-arch/tar app-arch/gzip -DESCRIPTION=Open Handset Alliance's Android SDK -EAPI=3 -HOMEPAGE=http://developer.android.com -KEYWORDS=~amd64 ~x86 -LICENSE=android -RDEPEND=>=virtual/jdk-1.5 >=dev-java/ant-core-1.6.5 >=dev-java/swt-3.5 amd64? ( app-emulation/emul-linux-x86-gtklibs ) x86? ( x11-libs/gtk+:2 ) -RESTRICT=mirror -SLOT=0 -SRC_URI=http://dl.google.com/android/android-sdk_r17-linux.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=34146f361706817c8b95c0c103a7a43c diff --git a/metadata/md5-cache/dev-util/android-sdk-update-manager-20 b/metadata/md5-cache/dev-util/android-sdk-update-manager-20 deleted file mode 100644 index ee0cd7fa20df..000000000000 --- a/metadata/md5-cache/dev-util/android-sdk-update-manager-20 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=install postinst prepare setup -DEPEND=app-arch/tar app-arch/gzip -DESCRIPTION=Open Handset Alliance's Android SDK -EAPI=3 -HOMEPAGE=http://developer.android.com -KEYWORDS=~amd64 ~x86 -LICENSE=android -RDEPEND=>=virtual/jdk-1.5 >=dev-java/ant-core-1.6.5 >=dev-java/swt-3.5 amd64? ( app-emulation/emul-linux-x86-gtklibs ) x86? ( x11-libs/gtk+:2 ) -RESTRICT=mirror -SLOT=0 -SRC_URI=http://dl.google.com/android/android-sdk_r20-linux.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=1341ee6e4dfbd080b8bded481e05e6c9 diff --git a/metadata/md5-cache/dev-util/android-sdk-update-manager-20.0.3 b/metadata/md5-cache/dev-util/android-sdk-update-manager-20.0.3 deleted file mode 100644 index 43c79071f9ed..000000000000 --- a/metadata/md5-cache/dev-util/android-sdk-update-manager-20.0.3 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=install postinst prepare setup -DEPEND=app-arch/tar app-arch/gzip -DESCRIPTION=Open Handset Alliance's Android SDK -EAPI=3 -HOMEPAGE=http://developer.android.com -KEYWORDS=~amd64 ~x86 -LICENSE=android -RDEPEND=>=virtual/jdk-1.5 >=dev-java/ant-core-1.6.5 >=dev-java/swt-3.5 amd64? ( app-emulation/emul-linux-x86-gtklibs ) x86? ( x11-libs/gtk+:2 ) -RESTRICT=mirror -SLOT=0 -SRC_URI=http://dl.google.com/android/android-sdk_r20.0.3-linux.tgz -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=c034f77cef898629245a6cb2ef990051 diff --git a/metadata/md5-cache/dev-util/android-sdk-update-manager-21 b/metadata/md5-cache/dev-util/android-sdk-update-manager-21 index a851f1aba56a..5fd05dfa76f7 100644 --- a/metadata/md5-cache/dev-util/android-sdk-update-manager-21 +++ b/metadata/md5-cache/dev-util/android-sdk-update-manager-21 @@ -10,4 +10,4 @@ RESTRICT=mirror SLOT=0 SRC_URI=http://dl.google.com/android/android-sdk_r21-linux.tgz _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=363aee08e00e66a59701beafe5656dae +_md5_=6349e2ccb8c7bbe81ce67911fdf396b8 diff --git a/metadata/md5-cache/dev-util/buildbot-0.8.6_p1 b/metadata/md5-cache/dev-util/buildbot-0.8.6_p1 index f72cbaacb503..5cc87777d131 100644 --- a/metadata/md5-cache/dev-util/buildbot-0.8.6_p1 +++ b/metadata/md5-cache/dev-util/buildbot-0.8.6_p1 @@ -4,10 +4,10 @@ DESCRIPTION=BuildBot build automation system EAPI=3 HOMEPAGE=http://trac.buildbot.net/ http://code.google.com/p/buildbot/ http://pypi.python.org/pypi/buildbot IUSE=doc examples irc mail manhole test -KEYWORDS=~alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris +KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris LICENSE=GPL-2 RDEPEND=>=dev-python/jinja-2.1 || ( dev-lang/python:2.7 dev-lang/python:2.6 dev-python/simplejson ) || ( dev-lang/python:2.7[sqlite] dev-lang/python:2.6[sqlite] dev-python/pysqlite:2 ) >=dev-python/twisted-8.0.0 dev-python/twisted-web dev-python/sqlalchemy dev-python/sqlalchemy-migrate irc? ( dev-python/twisted-words ) mail? ( dev-python/twisted-mail ) manhole? ( dev-python/twisted-conch ) =dev-lang/python-2* SLOT=0 SRC_URI=mirror://pypi/b/buildbot/buildbot-0.8.6p1.tar.gz _eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 multilib 9aa8a023e062fca0ba79362d9d0cc488 python e5b3412fa9f03670a666c8a137bd1060 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=1e195ce50033bab049da161777b94c29 +_md5_=96e9fb89327a20a8ab84d2516edffb01 diff --git a/metadata/md5-cache/dev-util/byacc-20121003 b/metadata/md5-cache/dev-util/byacc-20121003 index 28e3ddff7eb9..d3106c578f48 100644 --- a/metadata/md5-cache/dev-util/byacc-20121003 +++ b/metadata/md5-cache/dev-util/byacc-20121003 @@ -2,8 +2,8 @@ DEFINED_PHASES=configure DESCRIPTION=the best variant of the Yacc parser generator EAPI=5 HOMEPAGE=http://invisible-island.net/byacc/byacc.html -KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~ia64-hpux ~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 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=public-domain SLOT=0 SRC_URI=ftp://invisible-island.net/byacc/byacc-20121003.tgz -_md5_=b43c884c5814a8e15096c4fc22e09f64 +_md5_=43fd15330e37aee849ab3e4618be8bfd diff --git a/metadata/md5-cache/dev-util/plan9port-20130119 b/metadata/md5-cache/dev-util/plan9port-20130119 new file mode 100644 index 000000000000..a52959e5ad50 --- /dev/null +++ b/metadata/md5-cache/dev-util/plan9port-20130119 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile install postinst prepare +DEPEND=x11-apps/xauth +DESCRIPTION=Port of many Plan 9 programs and libraries +EAPI=4 +HOMEPAGE=http://swtch.com/plan9port/ +KEYWORDS=~amd64 ~x86 +LICENSE=9base BSD-4 MIT LGPL-2.1 BigelowHolmes +RDEPEND=x11-apps/xauth +SLOT=0 +SRC_URI=http://plan9port.googlecode.com/files/plan9port-20130119.tgz +_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=0e3aed4a340ba0db3a8d9f54521366b7 diff --git a/metadata/md5-cache/dev-vcs/git-1.7.12.4 b/metadata/md5-cache/dev-vcs/git-1.7.12.4 index f69a3134c9cf..e2321cb21207 100644 --- a/metadata/md5-cache/dev-vcs/git-1.7.12.4 +++ b/metadata/md5-cache/dev-vcs/git-1.7.12.4 @@ -4,11 +4,11 @@ DESCRIPTION=GIT - the stupid content tracker, the revision control system heavil EAPI=4 HOMEPAGE=http://www.git-scm.com/ IUSE=+blksha1 +curl cgi doc emacs +gpg gtk highlight +iconv +nls +pcre +perl +python ppcsha1 tk +threads +webdav xinetd cvs subversion test -KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=dev-libs/openssl sys-libs/zlib pcre? ( dev-libs/libpcre ) perl? ( dev-lang/perl[-build] ) tk? ( dev-lang/tk ) curl? ( net-misc/curl webdav? ( dev-libs/expat ) ) emacs? ( virtual/emacs ) gpg? ( app-crypt/gnupg ) perl? ( dev-perl/Error dev-perl/Net-SMTP-SSL dev-perl/Authen-SASL cgi? ( virtual/perl-CGI highlight? ( app-text/highlight ) ) cvs? ( >=dev-vcs/cvsps-2.1 dev-perl/DBI dev-perl/DBD-SQLite ) subversion? ( dev-vcs/subversion[-dso,perl] dev-perl/libwww-perl dev-perl/TermReadKey ) ) python? ( gtk? ( >=dev-python/pygtk-2.8 dev-python/pygtksourceview:2 ) ) python? ( =dev-lang/python-2* ) REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) subversion? ( perl ) webdav? ( curl ) SLOT=0 SRC_URI=http://git-core.googlecode.com/files/git-1.7.12.4.tar.gz mirror://kernel/software/scm/git/git-1.7.12.4.tar.gz http://git-core.googlecode.com/files/git-manpages-1.7.12.4.tar.gz mirror://kernel/software/scm/git/git-manpages-1.7.12.4.tar.gz doc? ( mirror://kernel/software/scm/git/git-htmldocs-1.7.12.4.tar.gz http://git-core.googlecode.com/files/git-htmldocs-1.7.12.4.tar.gz ) _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 elisp-common 21605c8f0b2a5ffa3233faeb3f9df309 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 python e5b3412fa9f03670a666c8a137bd1060 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=a632b8c4a712a6189c6051de80b7b955 +_md5_=eca03ead087af2bc018697ed897af774 diff --git a/metadata/md5-cache/games-action/abuse-0.7.1 b/metadata/md5-cache/games-action/abuse-0.7.1 deleted file mode 100644 index 5989d39b7ce8..000000000000 --- a/metadata/md5-cache/games-action/abuse-0.7.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack -DEPEND=>=media-libs/libsdl-1.1.6[audio,opengl,video] virtual/opengl x11-libs/libXt -DESCRIPTION=port of Abuse by Crack Dot Com -EAPI=2 -HOMEPAGE=http://abuse.zoy.org/ -IUSE=demo levels sound -KEYWORDS=amd64 ppc x86 -LICENSE=GPL-2 -RDEPEND=>=media-libs/libsdl-1.1.6[audio,opengl,video] virtual/opengl -SLOT=0 -SRC_URI=http://abuse.zoy.org/raw/Downloads/abuse-0.7.1.tar.gz !demo? ( http://abuse.zoy.org/raw/Downloads/abuse-data-2.00.tar.gz ) demo? ( http://abuse.zoy.org/raw/Downloads/abuse-lib-2.00.tar.gz ) sound? ( http://abuse.zoy.org/raw/Downloads/abuse-sfx-2.00.tar.gz ) levels? ( http://abuse.zoy.org/raw/Downloads/abuse-frabs-2.11.tar.gz ) -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 games e0a83e3f3f024b8c8ef7a8217d716cbf multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=2466d8c67403232e708f513a96ad3561 diff --git a/metadata/md5-cache/games-action/openastromenace-1.3.0 b/metadata/md5-cache/games-action/openastromenace-1.3.0 deleted file mode 100644 index 3004a4137a16..000000000000 --- a/metadata/md5-cache/games-action/openastromenace-1.3.0 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=virtual/opengl virtual/glu media-libs/libsdl[joystick,video,X] media-libs/openal media-libs/freealut media-libs/freetype:2 media-libs/libogg media-libs/libvorbis x11-libs/libXinerama virtual/jpeg >=sys-apps/sed-4 >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) -DESCRIPTION=Modern 3D space shooter with spaceship upgrade possibilities -EAPI=4 -HOMEPAGE=http://sourceforge.net/projects/openastromenace/ -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 UbuntuFontLicense-1.0 OFL-1.1 -SLOT=0 -SRC_URI=mirror://sourceforge/openastromenace/openastromenace-src-1.3.0.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de games e0a83e3f3f024b8c8ef7a8217d716cbf gnome2-utils 794d2847b4af390a1e020924876c8297 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=93b7a90f0e752e1a39ffa2a6cac873ae diff --git a/metadata/md5-cache/games-action/openastromenace-1.3.1 b/metadata/md5-cache/games-action/openastromenace-1.3.1 deleted file mode 100644 index 665c634b0a22..000000000000 --- a/metadata/md5-cache/games-action/openastromenace-1.3.1 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=virtual/opengl virtual/glu media-libs/libsdl[joystick,video,X] media-libs/openal media-libs/freealut media-libs/freetype:2 media-libs/libogg media-libs/libvorbis x11-libs/libXinerama >=sys-apps/sed-4 >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) -DESCRIPTION=Modern 3D space shooter with spaceship upgrade possibilities -EAPI=4 -HOMEPAGE=http://sourceforge.net/projects/openastromenace/ -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 GPL-3+ CCPL-Attribution-ShareAlike-3.0 UbuntuFontLicense-1.0 OFL-1.1 -SLOT=0 -SRC_URI=mirror://sourceforge/openastromenace/1.3.1/astromenace-src-1.3.1.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de games e0a83e3f3f024b8c8ef7a8217d716cbf gnome2-utils 794d2847b4af390a1e020924876c8297 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=1dbeb0bded5866c7aa056a68d1d15ca4 diff --git a/metadata/md5-cache/games-action/violetland-0.4.2 b/metadata/md5-cache/games-action/violetland-0.4.2 deleted file mode 100644 index 2d9b44db363a..000000000000 --- a/metadata/md5-cache/games-action/violetland-0.4.2 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup test unpack -DEPEND=media-libs/libsdl[audio,video] media-libs/sdl-image[png] media-libs/sdl-mixer[vorbis] media-libs/sdl-ttf dev-libs/boost virtual/opengl virtual/glu app-arch/unzip >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) -DESCRIPTION=Help a girl by name of Violet to struggle with hordes of monsters. -EAPI=2 -HOMEPAGE=http://code.google.com/p/violetland/ -KEYWORDS=amd64 x86 -LICENSE=GPL-3 CCPL-Attribution-ShareAlike-3.0 -RDEPEND=media-libs/libsdl[audio,video] media-libs/sdl-image[png] media-libs/sdl-mixer[vorbis] media-libs/sdl-ttf dev-libs/boost virtual/opengl virtual/glu -SLOT=0 -SRC_URI=http://violetland.googlecode.com/files/violetland-v0.4.2-src.zip -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de games e0a83e3f3f024b8c8ef7a8217d716cbf multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=a0c1ccf28e38e689e511018069a3bb19 diff --git a/metadata/md5-cache/games-board/peg-e-1.1.1 b/metadata/md5-cache/games-board/peg-e-1.1.1 new file mode 100644 index 000000000000..cdf7ad8c86b8 --- /dev/null +++ b/metadata/md5-cache/games-board/peg-e-1.1.1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack +DEPEND=x11-libs/qt-gui:4 +DESCRIPTION=A peg solitaire game +EAPI=2 +HOMEPAGE=http://gottcode.org/peg-e/ +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=x11-libs/qt-gui:4 +SLOT=0 +SRC_URI=http://gottcode.org/peg-e/peg-e-1.1.1-src.tar.bz2 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 games e0a83e3f3f024b8c8ef7a8217d716cbf multilib 9aa8a023e062fca0ba79362d9d0cc488 qt4-r2 19af9102ca9b827213997cc636e7e33c toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=d2c3d4e0c5e54dd1c03b26f300456373 diff --git a/metadata/md5-cache/games-engines/zoom-1.1.5 b/metadata/md5-cache/games-engines/zoom-1.1.5 new file mode 100644 index 000000000000..aef90398763f --- /dev/null +++ b/metadata/md5-cache/games-engines/zoom-1.1.5 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack +DEPEND=x11-libs/libSM x11-libs/libXft media-libs/fontconfig >=media-libs/t1lib-5 media-libs/libpng:0 dev-lang/perl x11-proto/xextproto +DESCRIPTION=A fast, clean, modern Z-code interpreter for X +EAPI=5 +HOMEPAGE=http://www.logicalshift.co.uk/unix/zoom/ +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=GPL-2 +RDEPEND=x11-libs/libSM x11-libs/libXft media-libs/fontconfig >=media-libs/t1lib-5 media-libs/libpng:0 +SLOT=0 +SRC_URI=http://www.logicalshift.co.uk/unix/zoom/zoom-1.1.5.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 games e0a83e3f3f024b8c8ef7a8217d716cbf multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=7e5f6792a4dddc932576fc6b1b5ce57f diff --git a/metadata/md5-cache/games-fps/rtcw-1.41b b/metadata/md5-cache/games-fps/rtcw-1.41b index 0eee6254b1e4..22847d682c15 100644 --- a/metadata/md5-cache/games-fps/rtcw-1.41b +++ b/metadata/md5-cache/games-fps/rtcw-1.41b @@ -10,4 +10,4 @@ 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 d40dc948067bd3db1c8ebf7d51897313 games e0a83e3f3f024b8c8ef7a8217d716cbf multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 50e1227854e96469a19a63f053496328 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=2dbff9518ec9a69a118dd4d358ce9854 +_md5_=acfc0499ad3283d20b5560b500c77ecd diff --git a/metadata/md5-cache/games-puzzle/wmpuzzle-0.5.1 b/metadata/md5-cache/games-puzzle/wmpuzzle-0.5.1 new file mode 100644 index 000000000000..64c887deea20 --- /dev/null +++ b/metadata/md5-cache/games-puzzle/wmpuzzle-0.5.1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack +DEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm x11-proto/xextproto +DESCRIPTION=wmpuzzle provides a 4x4 puzzle on a 64x64 mini window +EAPI=5 +HOMEPAGE=http://freshmeat.net/projects/wmpuzzle +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm +SLOT=0 +SRC_URI=http://people.debian.org/~godisch/wmpuzzle/wmpuzzle-0.5.1.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 games e0a83e3f3f024b8c8ef7a8217d716cbf multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=4a95f4d9c13983cace3cf7e36d4b494a diff --git a/metadata/md5-cache/games-rpg/freedroidrpg-0.15.1 b/metadata/md5-cache/games-rpg/freedroidrpg-0.15.1 new file mode 100644 index 000000000000..65731a1e4970 --- /dev/null +++ b/metadata/md5-cache/games-rpg/freedroidrpg-0.15.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack +DEPEND=media-libs/libsdl[opengl?,video] dev-lang/lua virtual/jpeg media-libs/libpng:0 media-libs/sdl-image[jpeg,png] media-libs/sdl-mixer[vorbis?] >=media-libs/sdl-gfx-2.0.21 vorbis? ( media-libs/libogg media-libs/libvorbis ) x11-libs/libX11 opengl? ( virtual/opengl ) || ( dev-lang/python:2.7 dev-lang/python:2.6 dev-lang/python:2.5 ) || ( >=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 modification of the classical Freedroid engine into an RPG +EAPI=5 +HOMEPAGE=http://freedroid.sourceforge.net/ +IUSE=opengl vorbis +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=GPL-2 +RDEPEND=media-libs/libsdl[opengl?,video] dev-lang/lua virtual/jpeg media-libs/libpng:0 media-libs/sdl-image[jpeg,png] media-libs/sdl-mixer[vorbis?] >=media-libs/sdl-gfx-2.0.21 vorbis? ( media-libs/libogg media-libs/libvorbis ) x11-libs/libX11 opengl? ( virtual/opengl ) +SLOT=0 +SRC_URI=mirror://sourceforge/freedroid/freedroidRPG-0.15.1.tar.gz +_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 games e0a83e3f3f024b8c8ef7a8217d716cbf libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-any-r1 f6b255f0bf44569e52128b09ad30fcec python-utils-r1 069a968fde0ceb8a9cd5c6a89d77cbc2 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=8d2ffb5546b90df3a279ea43aee8fe6f diff --git a/metadata/md5-cache/games-sports/trigger-0.5.2.1 b/metadata/md5-cache/games-sports/trigger-0.5.2.1 deleted file mode 100644 index 5cb8da5b81a1..000000000000 --- a/metadata/md5-cache/games-sports/trigger-0.5.2.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack -DEPEND=virtual/opengl virtual/glu media-libs/libsdl media-libs/sdl-image[jpeg,png] media-libs/sdl-mixer media-libs/openal media-libs/freealut dev-games/physfs dev-util/ftjam -DESCRIPTION=Free OpenGL rally car racing game -EAPI=2 -HOMEPAGE=http://www.positro.net/trigger/ -KEYWORDS=amd64 ~ppc x86 -LICENSE=GPL-2 -RDEPEND=virtual/opengl virtual/glu media-libs/libsdl media-libs/sdl-image[jpeg,png] media-libs/sdl-mixer media-libs/openal media-libs/freealut dev-games/physfs -SLOT=0 -SRC_URI=mirror://sourceforge/trigger-rally/trigger-0.5.2.1-src.tar.bz2 mirror://sourceforge/trigger-rally/trigger-0.5.2-data.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 games e0a83e3f3f024b8c8ef7a8217d716cbf multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=a52967acbcebf5b5bc8d4b35cf88b74e diff --git a/metadata/md5-cache/games-sports/trophy-2.0.3 b/metadata/md5-cache/games-sports/trophy-2.0.3 new file mode 100644 index 000000000000..7dd922c02db7 --- /dev/null +++ b/metadata/md5-cache/games-sports/trophy-2.0.3 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack +DEPEND=dev-games/clanlib:0.8[opengl] virtual/pkgconfig >=sys-apps/sed-4 +DESCRIPTION=2D Racing Game +EAPI=5 +HOMEPAGE=http://trophy.sourceforge.net/ +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-games/clanlib:0.8[opengl] +SLOT=0 +SRC_URI=mirror://sourceforge/trophy/trophy-2.0.3.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 games e0a83e3f3f024b8c8ef7a8217d716cbf gnome2-utils 794d2847b4af390a1e020924876c8297 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=057ee5bb1448259931e8081967d35d37 diff --git a/metadata/md5-cache/games-strategy/scorched3d-43.2a b/metadata/md5-cache/games-strategy/scorched3d-43.2a deleted file mode 100644 index 5ebf6d953c4b..000000000000 --- a/metadata/md5-cache/games-strategy/scorched3d-43.2a +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack -DEPEND=media-libs/libsdl[video] media-libs/sdl-net media-libs/libpng virtual/jpeg:0 dev-libs/expat !dedicated? ( virtual/opengl virtual/glu media-libs/libogg media-libs/libvorbis media-libs/openal media-libs/freealut x11-libs/wxGTK:2.8[X] media-libs/freetype:2 sci-libs/fftw:3.0 ) mysql? ( virtual/mysql ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool -DESCRIPTION=Multi-player tank battle in 3D (OpenGL) -EAPI=2 -HOMEPAGE=http://www.scorched3d.co.uk/ -IUSE=dedicated mysql -KEYWORDS=amd64 ppc ppc64 x86 -LICENSE=GPL-2 -RDEPEND=media-libs/libsdl[video] media-libs/sdl-net media-libs/libpng virtual/jpeg:0 dev-libs/expat !dedicated? ( virtual/opengl virtual/glu media-libs/libogg media-libs/libvorbis media-libs/openal media-libs/freealut x11-libs/wxGTK:2.8[X] media-libs/freetype:2 sci-libs/fftw:3.0 ) mysql? ( virtual/mysql ) -SLOT=0 -SRC_URI=mirror://sourceforge/scorched3d/Scorched3D-43.2a-src.tar.gz -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 games e0a83e3f3f024b8c8ef7a8217d716cbf libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 wxwidgets fb1a306837717dfa2af841ecdf929565 -_md5_=b33965df6e7f5660243a1eda9b2785fc diff --git a/metadata/md5-cache/games-strategy/warzone2100-2.3.8 b/metadata/md5-cache/games-strategy/warzone2100-2.3.8 deleted file mode 100644 index 9f2fe614c05b..000000000000 --- a/metadata/md5-cache/games-strategy/warzone2100-2.3.8 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack -DEPEND=dev-db/sqlite:3 >=dev-games/physfs-2[zip] dev-libs/popt media-libs/libogg media-libs/libpng media-libs/libsdl[opengl,video] media-libs/libtheora media-libs/libvorbis media-libs/openal media-libs/sdl-net media-libs/quesoglc virtual/glu virtual/opengl nls? ( virtual/libintl ) app-arch/zip virtual/pkgconfig nls? ( sys-devel/gettext ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool -DESCRIPTION=3D real-time strategy game -EAPI=2 -HOMEPAGE=http://wz2100.net/ -IUSE=debug nls videos -KEYWORDS=amd64 ~ppc x86 -LICENSE=GPL-2 CCPL-Attribution-ShareAlike-3.0 public-domain -RDEPEND=dev-db/sqlite:3 >=dev-games/physfs-2[zip] dev-libs/popt media-libs/libogg media-libs/libpng media-libs/libsdl[opengl,video] media-libs/libtheora media-libs/libvorbis media-libs/openal media-libs/sdl-net media-libs/quesoglc virtual/glu virtual/opengl nls? ( virtual/libintl ) media-fonts/dejavu -SLOT=0 -SRC_URI=mirror://sourceforge/warzone2100/warzone2100-2.3.8.tar.gz videos? ( mirror://sourceforge/warzone2100/warzone2100/Videos/2.2/high-quality-en/sequences.wz -> warzone2100-videos-2.2.wz ) -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 games e0a83e3f3f024b8c8ef7a8217d716cbf libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=f116d822d1be5a4e91394aded1294dcc diff --git a/metadata/md5-cache/kde-misc/kover-5 b/metadata/md5-cache/kde-misc/kover-5 deleted file mode 100644 index 28709986c664..000000000000 --- a/metadata/md5-cache/kde-misc/kover-5 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND==sys-apps/sed-4 >=dev-util/cmake-2.8.8 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 >=x11-libs/qt-core-4.7.4:4[qt3support,ssl] >=x11-libs/qt-dbus-4.7.4:4 >=x11-libs/qt-gui-4.7.4:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.4:4[accessibility] >=x11-libs/qt-script-4.7.4:4 >=x11-libs/qt-sql-4.7.4:4[qt3support] >=x11-libs/qt-svg-4.7.4:4 >=x11-libs/qt-test-4.7.4:4 >=x11-libs/qt-webkit-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=An easy to use WYSIWYG CD cover printer with CDDB support -EAPI=5 -HOMEPAGE=http://lisas.de/kover/ -IUSE=nls linguas_de linguas_es linguas_fr linguas_it linguas_nb linguas_no linguas_pl aqua -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==kde-base/oxygen-icons-4.4:4[aqua=] linguas_de? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_de(+)] ) linguas_es? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_es(+)] ) linguas_fr? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fr(+)] ) linguas_it? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_it(+)] ) linguas_nb? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nb(+)] ) linguas_no? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_no(+)] ) linguas_pl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pl(+)] ) dev-lang/perl >=x11-libs/qt-core-4.7.4:4[qt3support,ssl] >=x11-libs/qt-dbus-4.7.4:4 >=x11-libs/qt-gui-4.7.4:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.4:4[accessibility] >=x11-libs/qt-script-4.7.4:4 >=x11-libs/qt-sql-4.7.4:4[qt3support] >=x11-libs/qt-svg-4.7.4:4 >=x11-libs/qt-test-4.7.4:4 >=x11-libs/qt-webkit-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=] -SLOT=4 -SRC_URI=http://lisas.de/kover/kover-5.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 kde4-base 6e4e3fc3a36f43b71c84ad615e804a83 kde4-functions 37767566f9ffa88075c4d392a59100a9 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=e835c06ec3a277fe26e1c52cd0bb158f diff --git a/metadata/md5-cache/mail-client/claws-mail-rssyl-0.34 b/metadata/md5-cache/mail-client/claws-mail-rssyl-0.34 index 55a858b26bdd..95642cdf73fa 100644 --- a/metadata/md5-cache/mail-client/claws-mail-rssyl-0.34 +++ b/metadata/md5-cache/mail-client/claws-mail-rssyl-0.34 @@ -4,10 +4,10 @@ DESCRIPTION=Read your favorite newsfeeds in Claws Mail. RSS 1.0, 2.0 and Atom fe EAPI=4 HOMEPAGE=http://www.claws-mail.org/ IUSE=nls -KEYWORDS=~alpha amd64 ppc ppc64 x86 +KEYWORDS=alpha amd64 ppc ppc64 x86 LICENSE=GPL-2 RDEPEND=>=mail-client/claws-mail-3.9.0 net-misc/curl dev-libs/libxml2 nls? ( >=sys-devel/gettext-0.12.1 ) SLOT=0 SRC_URI=http://www.claws-mail.org/downloads/plugins/rssyl-0.34.tar.gz _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=22b69debbe3766918dd85c2d60eb6322 +_md5_=84d9acebe680ca066b8d4478c43de607 diff --git a/metadata/md5-cache/mail-mta/postfix-2.9.5 b/metadata/md5-cache/mail-mta/postfix-2.9.5 index 5e2d52e28def..50a92b7c57ce 100644 --- a/metadata/md5-cache/mail-mta/postfix-2.9.5 +++ b/metadata/md5-cache/mail-mta/postfix-2.9.5 @@ -4,11 +4,11 @@ DESCRIPTION=A fast and secure drop-in replacement for sendmail. EAPI=4 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/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.9.5.tar.gz vda? ( http://vda.sourceforge.net/VDA/postfix-vda-v11-2.9.1.patch ) _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 ssl-cert 0b45da48a22fda62c57c1809b8b55315 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=ca811a89367d0be8b9ff276a10df4127 +_md5_=4ac5770f85ec2683dd1e04df73ed8392 diff --git a/metadata/md5-cache/media-gfx/bootsplash-themes-20040821-r1 b/metadata/md5-cache/media-gfx/bootsplash-themes-20040821-r1 deleted file mode 100644 index a4d0fc5c3d2a..000000000000 --- a/metadata/md5-cache/media-gfx/bootsplash-themes-20040821-r1 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=install postinst unpack -DEPEND=net-misc/wget >=media-gfx/splashutils-1.1.9.6 -DESCRIPTION=A collection of Bootsplash themes -HOMEPAGE=http://www.bootsplash.de/ -KEYWORDS=amd64 ~ppc x86 -LICENSE=freedist -RDEPEND=>=media-gfx/splashutils-1.1.9.6 -SLOT=0 -SRC_URI=http://www.bootsplash.de/files/themes//Theme-73labAllstar.tar.bz2 http://www.bootsplash.de/files/themes//Theme-ASP.tar.bz2 http://www.bootsplash.de/files/themes//Theme-ASPLinux.tar.bz2 http://www.bootsplash.de/files/themes//Theme-AquaMatrix.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Arch.tar.bz2 http://www.bootsplash.de/files/themes//Theme-ArchPool.tar.bz2 http://www.bootsplash.de/files/themes//Theme-ArchRelief.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Ayo.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Black.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Cargal.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Cynapses.tar.bz2 http://www.bootsplash.de/files/themes//Theme-DangerGirl.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Dark-0.1.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Dark-2-0.2.tar.bz2 http://www.bootsplash.de/files/themes//Theme-DarkBlue.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Debian-Mist.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Debian-Tux.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Debian-Wave.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Debian.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Debian2.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Debian3.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Deflorist.tar.bz2 http://www.bootsplash.de/files/themes//Theme-DimmuBorgir.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Dragon.tar.bz2 http://www.bootsplash.de/files/themes//Theme-ElvinTooka.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Emergance.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Enterprise-spot.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Enterprise.tar.bz2 http://www.bootsplash.de/files/themes//Theme-EvenNewerTux.tar.bz2 http://www.bootsplash.de/files/themes//Theme-FarCry.tar.bz2 http://www.bootsplash.de/files/themes//Theme-FedoraCore2.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Flower.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Freepia.tar.bz2 http://www.bootsplash.de/files/themes//Theme-FrozenBubble.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Gentoo-Hornet.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Gentoo-LiveCD-2004.0.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Gentoo-LiveCD-2004.1.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Gentoo-LiveCD-2004.2.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Gentoo.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Ignite.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Jollix.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Juicy.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Keramik.tar.bz2 http://www.bootsplash.de/files/themes//Theme-KillBillTux-Grey.tar.bz2 http://www.bootsplash.de/files/themes//Theme-KillBillTux-Yellow.tar.bz2 http://www.bootsplash.de/files/themes//Theme-KnoppixKDE.tar.bz2 http://www.bootsplash.de/files/themes//Theme-KnoppixLT.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Konsole.tar.bz2 http://www.bootsplash.de/files/themes//Theme-KuruminOrgBR.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Leopard.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Linux.tar.bz2 http://www.bootsplash.de/files/themes//Theme-MaiHoshino.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Mandrake-10.0.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Mandrake-9.2.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Matrix.tar.bz2 http://www.bootsplash.de/files/themes//Theme-MetallTux.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Misspingus3.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Misspingus4.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Momonga.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Morphix.tar.bz2 http://www.bootsplash.de/files/themes//Theme-NewFreepia.tar.bz2 http://www.bootsplash.de/files/themes//Theme-NewLinux.tar.bz2 http://www.bootsplash.de/files/themes//Theme-NewTux.tar.bz2 http://www.bootsplash.de/files/themes//Theme-NightWorld.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Notes.tar.bz2 http://www.bootsplash.de/files/themes//Theme-OfficeDesktop.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Oneill.tar.bz2 http://www.bootsplash.de/files/themes//Theme-OpenSchool.tar.bz2 http://www.bootsplash.de/files/themes//Theme-OpenXchange.tar.bz2 http://www.bootsplash.de/files/themes//Theme-PLF1.tar.bz2 http://www.bootsplash.de/files/themes//Theme-PLF2.tar.bz2 http://www.bootsplash.de/files/themes//Theme-PLF5.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Pativo.tar.bz2 http://www.bootsplash.de/files/themes//Theme-PowerBook.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Psychotoxic.tar.bz2 http://www.bootsplash.de/files/themes//Theme-RH9.tar.bz2 http://www.bootsplash.de/files/themes//Theme-RadiantStar.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Redmond.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Rojo.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Rustenguin.tar.bz2 http://www.bootsplash.de/files/themes//Theme-SMGL.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Shodan.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Slackware.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Slackware2.tar.bz2 http://www.bootsplash.de/files/themes//Theme-SlackwareLinux.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Slide.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Spinner.tar.bz2 http://www.bootsplash.de/files/themes//Theme-SuSE-7.2.tar.bz2 http://www.bootsplash.de/files/themes//Theme-SuSE-7.3.tar.bz2 http://www.bootsplash.de/files/themes//Theme-SuSE-8.0.tar.bz2 http://www.bootsplash.de/files/themes//Theme-SuSE-8.1.tar.bz2 http://www.bootsplash.de/files/themes//Theme-SuSE-8.2.tar.bz2 http://www.bootsplash.de/files/themes//Theme-SuSE-Home.tar.bz2 http://www.bootsplash.de/files/themes//Theme-SuSE-SLES.tar.bz2 http://www.bootsplash.de/files/themes//Theme-SuSE.tar.bz2 http://www.bootsplash.de/files/themes//Theme-SwirlPool.tar.bz2 http://www.bootsplash.de/files/themes//Theme-ThinkLinux.tar.bz2 http://www.bootsplash.de/files/themes//Theme-TuxInfo-Conectiva.tar.bz2 http://www.bootsplash.de/files/themes//Theme-TuxInfo-Debian.tar.bz2 http://www.bootsplash.de/files/themes//Theme-TuxInfo-Mandrake.tar.bz2 http://www.bootsplash.de/files/themes//Theme-TuxInfo-RedHat.tar.bz2 http://www.bootsplash.de/files/themes//Theme-TuxInfo-Slackware.tar.bz2 http://www.bootsplash.de/files/themes//Theme-TuxInfo-SuSE.tar.bz2 http://www.bootsplash.de/files/themes//Theme-TuxInfo.tar.bz2 http://www.bootsplash.de/files/themes//Theme-TuxNTosh.tar.bz2 http://www.bootsplash.de/files/themes//Theme-UnitedLinux.tar.bz2 http://www.bootsplash.de/files/themes//Theme-UrbanVisions-Debian.tar.bz2 http://www.bootsplash.de/files/themes//Theme-UrbanVisions-Mandrake.tar.bz2 http://www.bootsplash.de/files/themes//Theme-UrbanVisions-SuSE.tar.bz2 http://www.bootsplash.de/files/themes//Theme-Vortex.tar.bz2 http://www.bootsplash.de/files/themes//Theme-WarmAqua.tar.bz2 -_md5_=9068436dee77242f24dbe0596ea9b4d8 diff --git a/metadata/md5-cache/media-gfx/engauge-4.1-r1 b/metadata/md5-cache/media-gfx/engauge-5.1 similarity index 61% rename from metadata/md5-cache/media-gfx/engauge-4.1-r1 rename to metadata/md5-cache/media-gfx/engauge-5.1 index cb3d24a3b920..ce8ce36828d1 100644 --- a/metadata/md5-cache/media-gfx/engauge-4.1-r1 +++ b/metadata/md5-cache/media-gfx/engauge-5.1 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install prepare unpack -DEPEND=x11-libs/qt-qt3support:4 sci-libs/fftw:3.0 x11-libs/libXft app-arch/xz-utils +DEPEND=x11-libs/qt-qt3support:4 x11-libs/qt-gui:4[gif] sci-libs/fftw:3.0 x11-libs/libXft DESCRIPTION=Convert an image file showing a graph or map into numbers EAPI=4 HOMEPAGE=http://digitizer.sourceforge.net/ IUSE=doc examples KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=x11-libs/qt-qt3support:4 sci-libs/fftw:3.0 x11-libs/libXft +RDEPEND=x11-libs/qt-qt3support:4 x11-libs/qt-gui:4[gif] sci-libs/fftw:3.0 x11-libs/libXft SLOT=0 -SRC_URI=mirror://sourceforge/digitizer/digit-src-4_1.tar.gz -> engauge-4.1.tar.gz http://dev.gentoo.org/~calchan/distfiles/engauge-4.1_qt4.patch.xz +SRC_URI=mirror://sourceforge/digitizer/digit-src-5_1.tar.gz -> engauge-5.1.tar.gz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 qt4-r2 19af9102ca9b827213997cc636e7e33c toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=92f7bcbe9911fde80002fff05c75341b +_md5_=792cb4fbd15df40736708af4cba42a44 diff --git a/metadata/md5-cache/media-gfx/entangle-0.5.0 b/metadata/md5-cache/media-gfx/entangle-0.5.0 new file mode 100644 index 000000000000..bfcf36a25d0e --- /dev/null +++ b/metadata/md5-cache/media-gfx/entangle-0.5.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack +DEPEND=>=dev-libs/glib-2.26:2 >=x11-libs/gdk-pixbuf-2.12.0:2 x11-libs/gtk+:3 >=sys-fs/udev-145[gudev] >=dev-libs/dbus-glib-0.60 >=dev-libs/gobject-introspection-0.9.3 >=media-libs/libgphoto2-2.4.11 >=media-libs/lcms-1.18 >=dev-libs/libpeas-0.5.5[gtk] >=media-libs/gexiv2-0.2.2 >=x11-libs/libXext-1.3.0 >=media-libs/libraw-0.9.0 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 +DESCRIPTION=Tethered Camera Control & Capture +EAPI=4 +HOMEPAGE=http://entangle-photo.org/ +IUSE=debug +KEYWORDS=~amd64 +LICENSE=GPL-3 +RDEPEND=>=dev-libs/glib-2.26:2 >=x11-libs/gdk-pixbuf-2.12.0:2 x11-libs/gtk+:3 >=sys-fs/udev-145[gudev] >=dev-libs/dbus-glib-0.60 >=dev-libs/gobject-introspection-0.9.3 >=media-libs/libgphoto2-2.4.11 >=media-libs/lcms-1.18 >=dev-libs/libpeas-0.5.5[gtk] >=media-libs/gexiv2-0.2.2 >=x11-libs/libXext-1.3.0 >=media-libs/libraw-0.9.0 +SLOT=0 +SRC_URI=http://entangle-photo.org/download/sources/entangle-0.5.0.tar.gz +_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=956dfd18805dd43a13a999df1b8cf53d diff --git a/metadata/md5-cache/media-gfx/sane-backends-1.0.23 b/metadata/md5-cache/media-gfx/sane-backends-1.0.23 index 1d39ed2eb787..96aa79afd40b 100644 --- a/metadata/md5-cache/media-gfx/sane-backends-1.0.23 +++ b/metadata/md5-cache/media-gfx/sane-backends-1.0.23 @@ -4,11 +4,11 @@ DESCRIPTION=Scanner Access Now Easy - Backends EAPI=4 HOMEPAGE=http://www.sane-project.org/ IUSE=avahi doc gphoto2 ipv6 threads usb v4l xinetd +sane_backends_abaton +sane_backends_agfafocus +sane_backends_apple +sane_backends_artec +sane_backends_artec_eplus48u +sane_backends_as6e +sane_backends_avision +sane_backends_bh +sane_backends_canon +sane_backends_canon630u +sane_backends_canon_dr +sane_backends_canon_pp +sane_backends_cardscan +sane_backends_coolscan +sane_backends_coolscan2 +sane_backends_coolscan3 +sane_backends_dc210 +sane_backends_dc240 +sane_backends_dc25 +sane_backends_dell1600n_net +sane_backends_dmc +sane_backends_epjitsu +sane_backends_epson +sane_backends_epson2 +sane_backends_fujitsu +sane_backends_genesys +sane_backends_gt68xx +sane_backends_hp +sane_backends_hp3500 +sane_backends_hp3900 +sane_backends_hp4200 +sane_backends_hp5400 +sane_backends_hp5590 +sane_backends_hpljm1005 +sane_backends_hpsj5s +sane_backends_hs2p +sane_backends_ibm +sane_backends_kodak +sane_backends_kodakaio +sane_backends_kvs1025 +sane_backends_kvs20xx +sane_backends_kvs40xx +sane_backends_leo +sane_backends_lexmark +sane_backends_ma1509 +sane_backends_magicolor +sane_backends_matsushita +sane_backends_microtek +sane_backends_microtek2 +sane_backends_mustek +sane_backends_mustek_pp +sane_backends_mustek_usb +sane_backends_mustek_usb2 +sane_backends_nec +sane_backends_net +sane_backends_niash +sane_backends_p5 +sane_backends_pie +sane_backends_pixma +sane_backends_plustek +sane_backends_plustek_pp -sane_backends_pnm +sane_backends_qcam +sane_backends_ricoh +sane_backends_rts8891 +sane_backends_s9036 +sane_backends_sceptre +sane_backends_sharp +sane_backends_sm3600 +sane_backends_sm3840 +sane_backends_snapscan +sane_backends_sp15c +sane_backends_st400 +sane_backends_stv680 +sane_backends_tamarack +sane_backends_teco1 +sane_backends_teco2 +sane_backends_teco3 +sane_backends_test +sane_backends_u12 +sane_backends_umax +sane_backends_umax1220u +sane_backends_umax_pp +sane_backends_xerox_mfp -KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux +KEYWORDS=alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=GPL-2 public-domain RDEPEND=sane_backends_dc210? ( virtual/jpeg ) sane_backends_dc240? ( virtual/jpeg ) sane_backends_dell1600n_net? ( virtual/jpeg media-libs/tiff ) avahi? ( >=net-dns/avahi-0.6.24 ) sane_backends_canon_pp? ( sys-libs/libieee1284 ) sane_backends_hpsj5s? ( sys-libs/libieee1284 ) sane_backends_mustek_pp? ( sys-libs/libieee1284 ) usb? ( virtual/libusb:0 ) gphoto2? ( media-libs/libgphoto2 virtual/jpeg ) v4l? ( media-libs/libv4l ) xinetd? ( sys-apps/xinetd ) !=media-gfx/splashutils-1.1.9.5 -DESCRIPTION=A collection of Gentoo themes for splashutils. -HOMEPAGE=http://dev.gentoo.org/~spock/ -KEYWORDS=amd64 ~ppc x86 -LICENSE=freedist -RDEPEND=>=media-gfx/splashutils-1.1.9.5 -RESTRICT=binchecks strip -SLOT=0 -SRC_URI=mirror://gentoo/fbsplash-theme-emergence-r2.tar.bz2 mirror://gentoo/fbsplash-theme-gentoo-r2.tar.bz2 -_md5_=8aef860015e2b7c1d385c28f3bb31c2f diff --git a/metadata/md5-cache/media-gfx/splash-themes-gentoo-20080914 b/metadata/md5-cache/media-gfx/splash-themes-gentoo-20080914 deleted file mode 100644 index 5d6875d59eaf..000000000000 --- a/metadata/md5-cache/media-gfx/splash-themes-gentoo-20080914 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=install postinst -DEPEND=>=media-gfx/splashutils-1.1.9.5 -DESCRIPTION=A collection of Gentoo themes for splashutils. -HOMEPAGE=http://dev.gentoo.org/~spock/ -KEYWORDS=amd64 ppc x86 -LICENSE=freedist -RDEPEND=>=media-gfx/splashutils-1.1.9.5 -RESTRICT=binchecks strip -SLOT=0 -SRC_URI=mirror://gentoo/fbsplash-theme-emergence-r2.tar.bz2 mirror://gentoo/fbsplash-theme-gentoo-r2.tar.bz2 mirror://gentoo/fbsplash-theme-natural_gentoo-7.1.tar.bz2 -_md5_=ff2890df2fe6a213e4a7409795a4fa40 diff --git a/metadata/md5-cache/media-gfx/splash-themes-gentoo-20090324 b/metadata/md5-cache/media-gfx/splash-themes-gentoo-20090324 deleted file mode 100644 index d9c6c195a523..000000000000 --- a/metadata/md5-cache/media-gfx/splash-themes-gentoo-20090324 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install postinst -DEPEND=>=media-gfx/splashutils-1.1.9.5[png] -DESCRIPTION=A collection of Gentoo themes for splashutils. -EAPI=2 -HOMEPAGE=http://dev.gentoo.org/~spock/ -KEYWORDS=amd64 ~ppc x86 -LICENSE=freedist -RDEPEND=>=media-gfx/splashutils-1.1.9.5[png] -RESTRICT=binchecks strip -SLOT=0 -SRC_URI=mirror://gentoo/fbsplash-theme-emergence-r2.tar.bz2 mirror://gentoo/fbsplash-theme-gentoo-r2.tar.bz2 mirror://gentoo/fbsplash-theme-natural_gentoo-7.1.tar.bz2 mirror://gentoo/fbsplash-theme-emerge-world-1.0.tar.bz2 -_md5_=ef6bb1a4b389c3ee355018a40a9b31f3 diff --git a/metadata/md5-cache/media-gfx/splash-themes-gentoo-20090926 b/metadata/md5-cache/media-gfx/splash-themes-gentoo-20090926 deleted file mode 100644 index cffdfd188205..000000000000 --- a/metadata/md5-cache/media-gfx/splash-themes-gentoo-20090926 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install postinst -DEPEND=>=media-gfx/splashutils-1.1.9.5[png] -DESCRIPTION=A collection of Gentoo themes for splashutils. -EAPI=2 -HOMEPAGE=http://dev.gentoo.org/~spock/ -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=freedist -RDEPEND=>=media-gfx/splashutils-1.1.9.5[png] -RESTRICT=binchecks strip -SLOT=0 -SRC_URI=mirror://gentoo/fbsplash-theme-emergence-r2.tar.bz2 mirror://gentoo/fbsplash-theme-gentoo-r2.tar.bz2 mirror://gentoo/fbsplash-theme-emerge-world-1.0.tar.bz2 http://fbsplash.berlios.de/themes/repo/natural_gentoo-8.0-r1.tar.bz2 -_md5_=8ed0eb7cf6fcd97d246f1e314f05ff4f diff --git a/metadata/md5-cache/media-gfx/splash-themes-gentoo-20100302 b/metadata/md5-cache/media-gfx/splash-themes-gentoo-20100302 deleted file mode 100644 index 76e8a3a33473..000000000000 --- a/metadata/md5-cache/media-gfx/splash-themes-gentoo-20100302 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install postinst prepare -DEPEND=>=media-gfx/splashutils-1.1.9.5[png] -DESCRIPTION=A collection of Gentoo themes for splashutils. -EAPI=2 -HOMEPAGE=http://dev.gentoo.org/~spock/ -KEYWORDS=amd64 ppc x86 -LICENSE=freedist -RDEPEND=>=media-gfx/splashutils-1.1.9.5[png] -RESTRICT=binchecks strip -SLOT=0 -SRC_URI=mirror://gentoo/fbsplash-theme-emergence-r2.tar.bz2 mirror://gentoo/fbsplash-theme-gentoo-r2.tar.bz2 mirror://gentoo/fbsplash-theme-emerge-world-1.0.tar.bz2 http://fbsplash.berlios.de/themes/repo/natural_gentoo-9.0.tar.bz2 -_md5_=5762d589859ec593321d484c99c9ced6 diff --git a/metadata/md5-cache/media-gfx/splash-themes-gentoo-20100820 b/metadata/md5-cache/media-gfx/splash-themes-gentoo-20101212-r1 similarity index 74% rename from metadata/md5-cache/media-gfx/splash-themes-gentoo-20100820 rename to metadata/md5-cache/media-gfx/splash-themes-gentoo-20101212-r1 index 8c37074f1acc..67c90c34890e 100644 --- a/metadata/md5-cache/media-gfx/splash-themes-gentoo-20100820 +++ b/metadata/md5-cache/media-gfx/splash-themes-gentoo-20101212-r1 @@ -1,12 +1,12 @@ DEFINED_PHASES=install postinst prepare DEPEND=>=media-gfx/splashutils-1.1.9.5[png] -DESCRIPTION=A collection of Gentoo themes for splashutils. -EAPI=2 +DESCRIPTION=A collection of Gentoo themes for splashutils +EAPI=5 HOMEPAGE=http://dev.gentoo.org/~spock/ KEYWORDS=~amd64 ~ppc ~x86 LICENSE=freedist RDEPEND=>=media-gfx/splashutils-1.1.9.5[png] RESTRICT=binchecks strip SLOT=0 -SRC_URI=mirror://gentoo/fbsplash-theme-emergence-r2.tar.bz2 mirror://gentoo/fbsplash-theme-gentoo-r2.tar.bz2 mirror://gentoo/fbsplash-theme-emerge-world-1.0.tar.bz2 http://fbsplash.berlios.de/themes/repo/natural_gentoo-9.0-r1.tar.bz2 -_md5_=fc91f20403a62b3af6dcde5c04895d54 +SRC_URI=mirror://gentoo/fbsplash-theme-emergence-r2.tar.bz2 mirror://gentoo/fbsplash-theme-gentoo-r2.tar.bz2 mirror://gentoo/fbsplash-theme-emerge-world-1.0.tar.bz2 http://fbsplash.berlios.de/themes/repo/natural_gentoo-9.0-r2.tar.bz2 +_md5_=78ba376e67cbac5470a5dd7d5e9f55fc diff --git a/metadata/md5-cache/media-gfx/splashutils-1.5.4.3-r3 b/metadata/md5-cache/media-gfx/splashutils-1.5.4.3-r3 deleted file mode 100644 index 8152a823275a..000000000000 --- a/metadata/md5-cache/media-gfx/splashutils-1.5.4.3-r3 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup -DEPEND=gpm? ( sys-libs/gpm ) truetype? ( >=media-libs/freetype-2[static-libs] || ( =media-libs/libpng-1.4.3[static-libs] ) mng? ( media-libs/lcms:0[static-libs] || ( media-libs/libmng[static-libs] =sys-apps/baselayout-1.9.4-r5 app-arch/cpio media-gfx/fbgrab !sys-apps/lcdsplash >=dev-libs/klibc-1.5 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=Framebuffer splash utilities. -EAPI=2 -HOMEPAGE=http://fbsplash.berlios.de -IUSE=hardened +png +truetype +mng gpm fbcondecor -KEYWORDS=amd64 ppc x86 -LICENSE=GPL-2 -RDEPEND=gpm? ( sys-libs/gpm ) truetype? ( >=media-libs/freetype-2[static-libs] || ( =media-libs/libpng-1.4.3[static-libs] ) mng? ( media-libs/lcms:0[static-libs] || ( media-libs/libmng[static-libs] =sys-apps/baselayout-1.9.4-r5 app-arch/cpio media-gfx/fbgrab !sys-apps/lcdsplash -RESTRICT=test -SLOT=0 -SRC_URI=mirror://berlios/fbsplash/splashutils-lite-1.5.4.3.tar.bz2 mirror://berlios/fbsplash/splashutils-gentoo-1.0.16.tar.bz2 mirror://gentoo/miscsplashutils-0.1.8.tar.bz2 mirror://sourceforge/libpng/libpng-1.4.3.tar.bz2 ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v8a.tar.gz mirror://sourceforge/freetype/freetype-2.3.12.tar.bz2 http://www.gzip.org/zlib/zlib-1.2.3.tar.bz2 -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=889a1331ddda55a20dd4ddfabe21a10e diff --git a/metadata/md5-cache/media-gfx/splashutils-1.5.4.4 b/metadata/md5-cache/media-gfx/splashutils-1.5.4.4 deleted file mode 100644 index e8eabec5c38b..000000000000 --- a/metadata/md5-cache/media-gfx/splashutils-1.5.4.4 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup -DEPEND=gpm? ( sys-libs/gpm ) truetype? ( >=media-libs/freetype-2[static-libs] || ( =media-libs/libpng-1.4.3[static-libs] ) mng? ( media-libs/lcms:0[static-libs] || ( media-libs/libmng[static-libs] =sys-apps/baselayout-1.9.4-r5 app-arch/cpio media-gfx/fbgrab !sys-apps/lcdsplash >=dev-libs/klibc-1.5 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=Framebuffer splash utilities. -EAPI=2 -HOMEPAGE=http://fbsplash.berlios.de -IUSE=hardened +png +truetype +mng gpm fbcondecor -KEYWORDS=amd64 ppc x86 -LICENSE=GPL-2 -RDEPEND=gpm? ( sys-libs/gpm ) truetype? ( >=media-libs/freetype-2[static-libs] || ( =media-libs/libpng-1.4.3[static-libs] ) mng? ( media-libs/lcms:0[static-libs] || ( media-libs/libmng[static-libs] =sys-apps/baselayout-1.9.4-r5 app-arch/cpio media-gfx/fbgrab !sys-apps/lcdsplash -RESTRICT=test -SLOT=0 -SRC_URI=mirror://berlios/fbsplash/splashutils-lite-1.5.4.4.tar.bz2 mirror://berlios/fbsplash/splashutils-gentoo-1.0.17.tar.bz2 mirror://gentoo/miscsplashutils-0.1.8.tar.bz2 mirror://sourceforge/libpng/libpng-1.4.3.tar.bz2 ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v8a.tar.gz mirror://sourceforge/freetype/freetype-2.3.12.tar.bz2 http://www.gzip.org/zlib/zlib-1.2.3.tar.bz2 -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=ae856b9fc75b0b9555cd43f0adc3ca60 diff --git a/metadata/md5-cache/media-libs/cogl-1.12.0-r1 b/metadata/md5-cache/media-libs/cogl-1.12.0-r1 deleted file mode 100644 index ddc4b49eff2b..000000000000 --- a/metadata/md5-cache/media-libs/cogl-1.12.0-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test unpack -DEPEND=>=dev-libs/glib-2.28.0:2 x11-libs/cairo:= >=x11-libs/gdk-pixbuf-2:2 x11-libs/libdrm:= x11-libs/libX11 >=x11-libs/libXcomposite-0.4 x11-libs/libXdamage x11-libs/libXext >=x11-libs/libXfixes-3 virtual/glu virtual/opengl gles2? ( media-libs/mesa[gles2] ) introspection? ( >=dev-libs/gobject-introspection-1.34.2 ) pango? ( >=x11-libs/pango-1.20.0[introspection?] ) sys-devel/gettext virtual/pkgconfig doc? ( app-text/docbook-xml-dtd:4.1.2 >=dev-util/gtk-doc-1.13 ) test? ( app-admin/eselect-opengl media-libs/mesa[classic] ) virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) -DESCRIPTION=A library for using 3D graphics hardware to draw pretty pictures -EAPI=5 -HOMEPAGE=http://www.clutter-project.org/ -IUSE=doc examples +introspection +opengl gles2 +pango debug test -KEYWORDS=~alpha ~amd64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 -LICENSE=LGPL-2.1+ FDL-1.1+ -RDEPEND=>=dev-libs/glib-2.28.0:2 x11-libs/cairo:= >=x11-libs/gdk-pixbuf-2:2 x11-libs/libdrm:= x11-libs/libX11 >=x11-libs/libXcomposite-0.4 x11-libs/libXdamage x11-libs/libXext >=x11-libs/libXfixes-3 virtual/glu virtual/opengl gles2? ( media-libs/mesa[gles2] ) introspection? ( >=dev-libs/gobject-introspection-1.34.2 ) pango? ( >=x11-libs/pango-1.20.0[introspection?] ) !=dev-libs/glib-2.28.0:2 x11-libs/cairo:= >=x11-libs/gdk-pixbuf-2:2 x11-libs/libdrm:= x11-libs/libX11 >=x11-libs/libXcomposite-0.4 x11-libs/libXdamage x11-libs/libXext >=x11-libs/libXfixes-3 virtual/glu virtual/opengl gles2? ( media-libs/mesa[gles2] ) introspection? ( >=dev-libs/gobject-introspection-1.34.2 ) pango? ( >=x11-libs/pango-1.20.0[introspection?] ) >=dev-util/gtk-doc-am-1.13 sys-devel/gettext virtual/pkgconfig doc? ( >=dev-util/gtk-doc-1.13 ) test? ( app-admin/eselect-opengl media-libs/mesa[classic] ) virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DEPEND=>=dev-libs/glib-2.28.0:2 x11-libs/cairo:= >=x11-libs/gdk-pixbuf-2:2 x11-libs/libdrm:= x11-libs/libX11 >=x11-libs/libXcomposite-0.4 x11-libs/libXdamage x11-libs/libXext >=x11-libs/libXfixes-3 virtual/opengl gles2? ( media-libs/mesa[gles2] ) introspection? ( >=dev-libs/gobject-introspection-1.34.2 ) pango? ( >=x11-libs/pango-1.20.0[introspection?] ) >=dev-util/gtk-doc-am-1.13 sys-devel/gettext virtual/pkgconfig doc? ( >=dev-util/gtk-doc-1.13 ) test? ( app-admin/eselect-opengl media-libs/mesa[classic] ) virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) DESCRIPTION=A library for using 3D graphics hardware to draw pretty pictures EAPI=5 HOMEPAGE=http://www.clutter-project.org/ IUSE=doc examples +introspection +opengl gles2 +pango debug test KEYWORDS=~alpha ~amd64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 LICENSE=LGPL-2.1+ FDL-1.1+ -RDEPEND=>=dev-libs/glib-2.28.0:2 x11-libs/cairo:= >=x11-libs/gdk-pixbuf-2:2 x11-libs/libdrm:= x11-libs/libX11 >=x11-libs/libXcomposite-0.4 x11-libs/libXdamage x11-libs/libXext >=x11-libs/libXfixes-3 virtual/glu virtual/opengl gles2? ( media-libs/mesa[gles2] ) introspection? ( >=dev-libs/gobject-introspection-1.34.2 ) pango? ( >=x11-libs/pango-1.20.0[introspection?] ) !=dev-libs/glib-2.28.0:2 x11-libs/cairo:= >=x11-libs/gdk-pixbuf-2:2 x11-libs/libdrm:= x11-libs/libX11 >=x11-libs/libXcomposite-0.4 x11-libs/libXdamage x11-libs/libXext >=x11-libs/libXfixes-3 virtual/opengl gles2? ( media-libs/mesa[gles2] ) introspection? ( >=dev-libs/gobject-introspection-1.34.2 ) pango? ( >=x11-libs/pango-1.20.0[introspection?] ) !=dev-libs/glib-2.32:2 dev-libs/libxml2:2 >=media-libs/gstreamer-1.0.5:1.0[introspection?] sys-libs/zlib alsa? ( >=media-libs/alsa-lib-0.9.1 ) introspection? ( >=dev-libs/gobject-introspection-1.31.1 ) ivorbis? ( media-libs/tremor ) ogg? ( >=media-libs/libogg-1 ) orc? ( >=dev-lang/orc-0.4.16 ) pango? ( >=x11-libs/pango-1.22 ) theora? ( >=media-libs/libtheora-1.1[encode] ) vorbis? ( >=media-libs/libvorbis-1 ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXv ) >=dev-util/gtk-doc-am-1.12 X? ( x11-proto/videoproto x11-proto/xextproto x11-proto/xproto ) >=sys-apps/sed-4 virtual/pkgconfig nls? ( >=sys-devel/gettext-0.17 ) >=dev-libs/glib-2.6:2 media-libs/gstreamer:1.0 >=sys-apps/sed-4 virtual/pkgconfig nls? ( >=sys-devel/gettext-0.17 ) >=dev-libs/glib-2.6:2 media-libs/gstreamer:1.0 +DESCRIPTION=Basepack of plugins for gstreamer +EAPI=5 +HOMEPAGE=http://gstreamer.freedesktop.org/ +IUSE=alsa +introspection ivorbis +ogg +orc +pango theora +vorbis X nls nls +KEYWORDS=~amd64 ~mips ~ppc ~ppc64 ~sh ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +LICENSE=GPL-2+ LGPL-2+ +RDEPEND=app-text/iso-codes >=dev-libs/glib-2.32:2 dev-libs/libxml2:2 >=media-libs/gstreamer-1.0.5:1.0[introspection?] sys-libs/zlib alsa? ( >=media-libs/alsa-lib-0.9.1 ) introspection? ( >=dev-libs/gobject-introspection-1.31.1 ) ivorbis? ( media-libs/tremor ) ogg? ( >=media-libs/libogg-1 ) orc? ( >=dev-lang/orc-0.4.16 ) pango? ( >=x11-libs/pango-1.22 ) theora? ( >=media-libs/libtheora-1.1[encode] ) vorbis? ( >=media-libs/libvorbis-1 ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXv ) >=dev-libs/glib-2.6:2 media-libs/gstreamer:1.0 >=dev-libs/glib-2.6:2 media-libs/gstreamer:1.0 +REQUIRED_USE=ivorbis? ( ogg ) theora? ( ogg ) vorbis? ( ogg ) +SLOT=1.0 +SRC_URI=http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.0.5.tar.xz +_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 gst-plugins-base ff4b09b7caed6e0ea884fbd72c79ced0 gst-plugins10 16cc1e471d2c8122c6b86c1618b9d736 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=eadf50761a0dda678f7d924a3e527b32 diff --git a/metadata/md5-cache/media-libs/openal-1.13 b/metadata/md5-cache/media-libs/openal-1.13 deleted file mode 100644 index 8f0dee7834ca..000000000000 --- a/metadata/md5-cache/media-libs/openal-1.13 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=alsa? ( media-libs/alsa-lib ) portaudio? ( >=media-libs/portaudio-19_pre ) pulseaudio? ( media-sound/pulseaudio ) >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) -DESCRIPTION=A software implementation of the OpenAL 3D audio API -EAPI=3 -HOMEPAGE=http://kcat.strangesoft.net/openal.html -IUSE=alsa debug oss portaudio pulseaudio -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux -LICENSE=LGPL-2 -RDEPEND=alsa? ( media-libs/alsa-lib ) portaudio? ( >=media-libs/portaudio-19_pre ) pulseaudio? ( media-sound/pulseaudio ) -SLOT=0 -SRC_URI=http://kcat.strangesoft.net/openal-releases/openal-soft-1.13.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=d453e21bcbe5449cbc8098fbaff90da8 diff --git a/metadata/md5-cache/media-libs/openal-1.14 b/metadata/md5-cache/media-libs/openal-1.14 deleted file mode 100644 index a327c10883ad..000000000000 --- a/metadata/md5-cache/media-libs/openal-1.14 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=alsa? ( media-libs/alsa-lib ) alstream? ( virtual/ffmpeg ) portaudio? ( >=media-libs/portaudio-19_pre ) pulseaudio? ( media-sound/pulseaudio ) oss? ( virtual/os-headers ) >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) -DESCRIPTION=A software implementation of the OpenAL 3D audio API -EAPI=3 -HOMEPAGE=http://kcat.strangesoft.net/openal.html -IUSE=alsa alstream coreaudio debug oss portaudio pulseaudio -KEYWORDS=~alpha amd64 ~arm -hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux -LICENSE=LGPL-2 -RDEPEND=alsa? ( media-libs/alsa-lib ) alstream? ( virtual/ffmpeg ) portaudio? ( >=media-libs/portaudio-19_pre ) pulseaudio? ( media-sound/pulseaudio ) -SLOT=0 -SRC_URI=http://kcat.strangesoft.net/openal-releases/openal-soft-1.14.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=9b0d8fb858b4741f233f2ff7193aff42 diff --git a/metadata/md5-cache/media-libs/openal-1.15 b/metadata/md5-cache/media-libs/openal-1.15 deleted file mode 100644 index a9a0184f0a46..000000000000 --- a/metadata/md5-cache/media-libs/openal-1.15 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=alsa? ( media-libs/alsa-lib ) alstream? ( virtual/ffmpeg ) portaudio? ( >=media-libs/portaudio-19_pre ) pulseaudio? ( media-sound/pulseaudio ) oss? ( virtual/os-headers ) >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) -DESCRIPTION=A software implementation of the OpenAL 3D audio API -EAPI=5 -HOMEPAGE=http://kcat.strangesoft.net/openal.html -IUSE=alsa alstream coreaudio debug neon oss portaudio pulseaudio sse -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux -LICENSE=LGPL-2 -RDEPEND=alsa? ( media-libs/alsa-lib ) alstream? ( virtual/ffmpeg ) portaudio? ( >=media-libs/portaudio-19_pre ) pulseaudio? ( media-sound/pulseaudio ) -SLOT=0 -SRC_URI=http://kcat.strangesoft.net/openal-releases/openal-soft-1.15.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=c569860036eb17561017cc43d6a859ae diff --git a/metadata/md5-cache/media-libs/openal-1.15.1 b/metadata/md5-cache/media-libs/openal-1.15.1 index 306da31a062e..a5697c3ab478 100644 --- a/metadata/md5-cache/media-libs/openal-1.15.1 +++ b/metadata/md5-cache/media-libs/openal-1.15.1 @@ -4,10 +4,10 @@ DESCRIPTION=A software implementation of the OpenAL 3D audio API EAPI=5 HOMEPAGE=http://kcat.strangesoft.net/openal.html IUSE=alsa alstream coreaudio debug neon oss portaudio pulseaudio sse -KEYWORDS=~alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux +KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux LICENSE=LGPL-2 RDEPEND=alsa? ( media-libs/alsa-lib ) alstream? ( virtual/ffmpeg ) portaudio? ( >=media-libs/portaudio-19_pre ) pulseaudio? ( media-sound/pulseaudio ) SLOT=0 SRC_URI=http://kcat.strangesoft.net/openal-releases/openal-soft-1.15.1.tar.bz2 _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=56d6e1e568a8e4a7996bea3aceeef2a1 +_md5_=ff2b68ffd8bcf55d78d1ec37b8f9e645 diff --git a/metadata/md5-cache/media-libs/sdl-gfx-2.0.24 b/metadata/md5-cache/media-libs/sdl-gfx-2.0.24 index 5afd5ec71bdc..e5a6f8b67c69 100644 --- a/metadata/md5-cache/media-libs/sdl-gfx-2.0.24 +++ b/metadata/md5-cache/media-libs/sdl-gfx-2.0.24 @@ -4,10 +4,10 @@ DESCRIPTION=Graphics drawing primitives library for SDL EAPI=2 HOMEPAGE=http://www.ferzkopp.net/joomla/content/view/19/14/ IUSE=doc mmx static-libs -KEYWORDS=~alpha amd64 hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris +KEYWORDS=alpha amd64 hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris LICENSE=ZLIB RDEPEND=media-libs/libsdl[video] SLOT=0 SRC_URI=http://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-2.0.24.tar.gz _eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=aeaf5ce04b403e99bf1998f81be1333b +_md5_=e78802e567b4d91aaaed5ab163fc8f17 diff --git a/metadata/md5-cache/media-sound/aqualung-0.9_beta11-r1 b/metadata/md5-cache/media-sound/aqualung-0.9_beta11-r1 index 450925ff89f1..b31a04f3654b 100644 --- a/metadata/md5-cache/media-sound/aqualung-0.9_beta11-r1 +++ b/metadata/md5-cache/media-sound/aqualung-0.9_beta11-r1 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install prepare -DEPEND=alsa? ( media-libs/alsa-lib ) cdda? ( || ( dev-libs/libcdio-paranoia =virtual/ffmpeg-0.6.90 ) ifp? ( media-libs/libifp ) jack? ( media-sound/jack-audio-connection-kit ) ladspa? ( media-libs/liblrdf ) lame? ( media-sound/lame ) libsamplerate? ( media-libs/libsamplerate ) lua? ( dev-lang/lua ) mac? ( media-sound/mac ) modplug? ( media-libs/libmodplug ) mp3? ( media-libs/libmad ) musepack? ( >=media-sound/musepack-tools-444 ) pulseaudio? ( media-sound/pulseaudio ) sndfile? ( media-libs/libsndfile ) speex? ( media-libs/speex media-libs/liboggz ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) x11-libs/gtk+:2 dev-libs/libxml2 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=alsa? ( media-libs/alsa-lib ) cdda? ( =virtual/ffmpeg-0.6.90 ) ifp? ( media-libs/libifp ) jack? ( media-sound/jack-audio-connection-kit ) ladspa? ( media-libs/liblrdf ) lame? ( media-sound/lame ) libsamplerate? ( media-libs/libsamplerate ) lua? ( dev-lang/lua ) mac? ( media-sound/mac ) modplug? ( media-libs/libmodplug ) mp3? ( media-libs/libmad ) musepack? ( >=media-sound/musepack-tools-444 ) pulseaudio? ( media-sound/pulseaudio ) sndfile? ( media-libs/libsndfile ) speex? ( media-libs/speex media-libs/liboggz ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) x11-libs/gtk+:2 dev-libs/libxml2 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=A music player for a wide range of formats designed for gapless playback EAPI=4 HOMEPAGE=http://aqualung.factorial.hu/ IUSE=alsa cdda cddb debug flac ffmpeg ifp jack ladspa lame libsamplerate lua mac modplug mp3 musepack oss podcast pulseaudio sndfile speex systray vorbis wavpack KEYWORDS=amd64 x86 LICENSE=GPL-2 -RDEPEND=alsa? ( media-libs/alsa-lib ) cdda? ( || ( dev-libs/libcdio-paranoia =virtual/ffmpeg-0.6.90 ) ifp? ( media-libs/libifp ) jack? ( media-sound/jack-audio-connection-kit ) ladspa? ( media-libs/liblrdf ) lame? ( media-sound/lame ) libsamplerate? ( media-libs/libsamplerate ) lua? ( dev-lang/lua ) mac? ( media-sound/mac ) modplug? ( media-libs/libmodplug ) mp3? ( media-libs/libmad ) musepack? ( >=media-sound/musepack-tools-444 ) pulseaudio? ( media-sound/pulseaudio ) sndfile? ( media-libs/libsndfile ) speex? ( media-libs/speex media-libs/liboggz ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) x11-libs/gtk+:2 +RDEPEND=alsa? ( media-libs/alsa-lib ) cdda? ( =virtual/ffmpeg-0.6.90 ) ifp? ( media-libs/libifp ) jack? ( media-sound/jack-audio-connection-kit ) ladspa? ( media-libs/liblrdf ) lame? ( media-sound/lame ) libsamplerate? ( media-libs/libsamplerate ) lua? ( dev-lang/lua ) mac? ( media-sound/mac ) modplug? ( media-libs/libmodplug ) mp3? ( media-libs/libmad ) musepack? ( >=media-sound/musepack-tools-444 ) pulseaudio? ( media-sound/pulseaudio ) sndfile? ( media-libs/libsndfile ) speex? ( media-libs/speex media-libs/liboggz ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) x11-libs/gtk+:2 SLOT=0 SRC_URI=mirror://sourceforge/aqualung/aqualung-0.9beta11.tar.gz _eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=7bf52a4d13d4c4e97aef03869481d884 +_md5_=847cefb7cc1747e10d377217bebc41a1 diff --git a/metadata/md5-cache/media-sound/aqualung-0.9_beta11-r2 b/metadata/md5-cache/media-sound/aqualung-0.9_beta11-r2 index 2db3452a65c0..171a4cd47bde 100644 --- a/metadata/md5-cache/media-sound/aqualung-0.9_beta11-r2 +++ b/metadata/md5-cache/media-sound/aqualung-0.9_beta11-r2 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install prepare -DEPEND=sys-libs/zlib app-arch/bzip2 dev-libs/libxml2 x11-libs/gtk+:2 alsa? ( media-libs/alsa-lib ) jack? ( media-sound/jack-audio-connection-kit ) pulseaudio? ( media-sound/pulseaudio ) flac? ( media-libs/flac ) lame? ( media-sound/lame ) ffmpeg? ( >=virtual/ffmpeg-0.6.90 ) mac? ( media-sound/mac ) modplug? ( media-libs/libmodplug ) musepack? ( >=media-sound/musepack-tools-444 ) mp3? ( media-libs/libmad ) sndfile? ( media-libs/libsndfile ) speex? ( media-libs/speex media-libs/liboggz ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) ladspa? ( media-libs/liblrdf ) libsamplerate? ( media-libs/libsamplerate ) cdda? ( || ( dev-libs/libcdio-paranoia =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-libs/zlib app-arch/bzip2 dev-libs/libxml2 x11-libs/gtk+:2 alsa? ( media-libs/alsa-lib ) jack? ( media-sound/jack-audio-connection-kit ) pulseaudio? ( media-sound/pulseaudio ) flac? ( media-libs/flac ) lame? ( media-sound/lame ) ffmpeg? ( >=virtual/ffmpeg-0.6.90 ) mac? ( media-sound/mac ) modplug? ( media-libs/libmodplug ) musepack? ( >=media-sound/musepack-tools-444 ) mp3? ( media-libs/libmad ) sndfile? ( media-libs/libsndfile ) speex? ( media-libs/speex media-libs/liboggz ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) ladspa? ( media-libs/liblrdf ) libsamplerate? ( media-libs/libsamplerate ) ifp? ( media-libs/libifp ) cddb? ( media-libs/libcddb ) lua? ( dev-lang/lua ) 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 DESCRIPTION=A music player for a wide range of formats designed for gapless playback EAPI=5 HOMEPAGE=http://aqualung.factorial.hu/ -IUSE=alsa cdda cddb debug flac ffmpeg ifp jack ladspa lame libsamplerate lua mac modplug mp3 musepack oss podcast pulseaudio sndfile speex systray vorbis wavpack +IUSE=alsa cddb debug flac ffmpeg ifp jack ladspa lame libsamplerate lua mac modplug mp3 musepack oss podcast pulseaudio sndfile speex systray vorbis wavpack KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=sys-libs/zlib app-arch/bzip2 dev-libs/libxml2 x11-libs/gtk+:2 alsa? ( media-libs/alsa-lib ) jack? ( media-sound/jack-audio-connection-kit ) pulseaudio? ( media-sound/pulseaudio ) flac? ( media-libs/flac ) lame? ( media-sound/lame ) ffmpeg? ( >=virtual/ffmpeg-0.6.90 ) mac? ( media-sound/mac ) modplug? ( media-libs/libmodplug ) musepack? ( >=media-sound/musepack-tools-444 ) mp3? ( media-libs/libmad ) sndfile? ( media-libs/libsndfile ) speex? ( media-libs/speex media-libs/liboggz ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) ladspa? ( media-libs/liblrdf ) libsamplerate? ( media-libs/libsamplerate ) cdda? ( || ( dev-libs/libcdio-paranoia =virtual/ffmpeg-0.6.90 ) mac? ( media-sound/mac ) modplug? ( media-libs/libmodplug ) musepack? ( >=media-sound/musepack-tools-444 ) mp3? ( media-libs/libmad ) sndfile? ( media-libs/libsndfile ) speex? ( media-libs/speex media-libs/liboggz ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) ladspa? ( media-libs/liblrdf ) libsamplerate? ( media-libs/libsamplerate ) ifp? ( media-libs/libifp ) cddb? ( media-libs/libcddb ) lua? ( dev-lang/lua ) SLOT=0 SRC_URI=mirror://sourceforge/aqualung/aqualung-0.9beta11.tar.gz _eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=de51bc2ebad678ce65c221fce281bbf0 +_md5_=48633b71050d9df968b078cf664187e8 diff --git a/metadata/md5-cache/media-sound/cmus-2.5.0 b/metadata/md5-cache/media-sound/cmus-2.5.0 index 42bbc81a1583..4395955d6dfb 100644 --- a/metadata/md5-cache/media-sound/cmus-2.5.0 +++ b/metadata/md5-cache/media-sound/cmus-2.5.0 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install -DEPEND=sys-libs/ncurses[unicode?] aac? ( media-libs/faad2 ) alsa? ( >=media-libs/alsa-lib-1.0.11 ) ao? ( media-libs/libao ) cue? ( media-libs/libcue ) cddb? ( media-libs/libcddb ) cdda? ( dev-libs/libcdio ) discid? ( media-libs/libdiscid ) flac? ( media-libs/flac ) mad? ( >=media-libs/libmad-0.14 ) mikmod? ( media-libs/libmikmod:0 ) modplug? ( >=media-libs/libmodplug-0.7 ) mp4? ( >=media-libs/libmp4v2-1.9:0 ) musepack? ( >=media-sound/musepack-tools-444 ) pulseaudio? ( media-sound/pulseaudio ) vorbis? ( >=media-libs/libvorbis-1.0 ) wavpack? ( media-sound/wavpack ) wma? ( >=virtual/ffmpeg-0.10.2-r1 ) virtual/pkgconfig +DEPEND=sys-libs/ncurses[unicode?] aac? ( media-libs/faad2 ) alsa? ( >=media-libs/alsa-lib-1.0.11 ) ao? ( media-libs/libao ) cue? ( media-libs/libcue ) cdda? ( || ( dev-libs/libcdio-paranoia =media-libs/libmad-0.14 ) mikmod? ( media-libs/libmikmod:0 ) modplug? ( >=media-libs/libmodplug-0.7 ) mp4? ( >=media-libs/libmp4v2-1.9:0 ) musepack? ( >=media-sound/musepack-tools-444 ) pulseaudio? ( media-sound/pulseaudio ) vorbis? ( >=media-libs/libvorbis-1.0 ) wavpack? ( media-sound/wavpack ) wma? ( >=virtual/ffmpeg-0.10.2-r1 ) virtual/pkgconfig DESCRIPTION=A ncurses based music player with plugin support for many formats EAPI=4 HOMEPAGE=http://cmus.sourceforge.net/ -IUSE=aac alsa ao cue cddb cdda discid debug examples flac mad mikmod modplug mp4 musepack oss pidgin pulseaudio unicode vorbis wavpack wma zsh-completion +IUSE=aac alsa ao cue cdda cddb discid debug examples flac mad mikmod modplug mp4 musepack oss pidgin pulseaudio unicode vorbis wavpack wma zsh-completion KEYWORDS=~amd64 ~ppc ~x86 ~x86-fbsd LICENSE=GPL-2 -RDEPEND=sys-libs/ncurses[unicode?] aac? ( media-libs/faad2 ) alsa? ( >=media-libs/alsa-lib-1.0.11 ) ao? ( media-libs/libao ) cue? ( media-libs/libcue ) cddb? ( media-libs/libcddb ) cdda? ( dev-libs/libcdio ) discid? ( media-libs/libdiscid ) flac? ( media-libs/flac ) mad? ( >=media-libs/libmad-0.14 ) mikmod? ( media-libs/libmikmod:0 ) modplug? ( >=media-libs/libmodplug-0.7 ) mp4? ( >=media-libs/libmp4v2-1.9:0 ) musepack? ( >=media-sound/musepack-tools-444 ) pulseaudio? ( media-sound/pulseaudio ) vorbis? ( >=media-libs/libvorbis-1.0 ) wavpack? ( media-sound/wavpack ) wma? ( >=virtual/ffmpeg-0.10.2-r1 ) zsh-completion? ( app-shells/zsh ) pidgin? ( net-im/pidgin dev-python/dbus-python ) +RDEPEND=sys-libs/ncurses[unicode?] aac? ( media-libs/faad2 ) alsa? ( >=media-libs/alsa-lib-1.0.11 ) ao? ( media-libs/libao ) cue? ( media-libs/libcue ) cdda? ( || ( dev-libs/libcdio-paranoia =media-libs/libmad-0.14 ) mikmod? ( media-libs/libmikmod:0 ) modplug? ( >=media-libs/libmodplug-0.7 ) mp4? ( >=media-libs/libmp4v2-1.9:0 ) musepack? ( >=media-sound/musepack-tools-444 ) pulseaudio? ( media-sound/pulseaudio ) vorbis? ( >=media-libs/libvorbis-1.0 ) wavpack? ( media-sound/wavpack ) wma? ( >=virtual/ffmpeg-0.10.2-r1 ) zsh-completion? ( app-shells/zsh ) pidgin? ( net-im/pidgin dev-python/dbus-python ) SLOT=0 SRC_URI=mirror://sourceforge/cmus/cmus-v2.5.0.tar.bz2 _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=0f4297a15abc28cbc1d92fec7ae7db69 +_md5_=7abc26b4a1b79e38368d677a331b55d8 diff --git a/metadata/md5-cache/media-sound/mp3splt-2.4.3 b/metadata/md5-cache/media-sound/mp3splt-2.4.3 index 34ad14249f7a..7cc3e82fd7ea 100644 --- a/metadata/md5-cache/media-sound/mp3splt-2.4.3 +++ b/metadata/md5-cache/media-sound/mp3splt-2.4.3 @@ -3,10 +3,10 @@ DEPEND=>=media-libs/libmp3splt-0.7.3 sys-devel/gettext DESCRIPTION=a command line utility to split mp3 and ogg files without decoding. EAPI=2 HOMEPAGE=http://mp3splt.sourceforge.net -KEYWORDS=~alpha amd64 ~hppa ~ppc ~ppc64 sparc x86 +KEYWORDS=alpha amd64 ~hppa ~ppc ~ppc64 sparc x86 LICENSE=GPL-2 RDEPEND=>=media-libs/libmp3splt-0.7.3 SLOT=0 SRC_URI=mirror://sourceforge/mp3splt/mp3splt-2.4.3.tar.gz _eclasses_=multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=3895ec9e666989dd6f01184542077637 +_md5_=f7d45f04542856bb5b7420b75991e3c5 diff --git a/metadata/md5-cache/media-sound/quimup-1.3.0 b/metadata/md5-cache/media-sound/quimup-1.3.0 new file mode 100644 index 000000000000..7b9bda44f54b --- /dev/null +++ b/metadata/md5-cache/media-sound/quimup-1.3.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare unpack +DEPEND=x11-libs/qt-gui:4 >=media-libs/libmpdclient-2.3 +DESCRIPTION=A Qt4 client for the music player daemon (MPD) written in C++ +EAPI=5 +HOMEPAGE=http://mpd.wikia.com/wiki/Client:Quimup +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=x11-libs/qt-gui:4 >=media-libs/libmpdclient-2.3 +SLOT=0 +SRC_URI=mirror://sourceforge/musicpd/quimup_1.3.0_src.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 qt4-r2 19af9102ca9b827213997cc636e7e33c toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=e31dab1895910f38da7369561f50c6f6 diff --git a/metadata/md5-cache/media-sound/xnoise-0.2.14 b/metadata/md5-cache/media-sound/xnoise-0.2.14 new file mode 100644 index 000000000000..5a75e2cc3a08 --- /dev/null +++ b/metadata/md5-cache/media-sound/xnoise-0.2.14 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install postinst postrm preinst +DEPEND=x11-libs/gtk+:3 >=dev-libs/glib-2.30:2 media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 dev-db/sqlite:3 media-libs/taglib x11-libs/cairo x11-libs/libX11 lastfm? ( net-libs/libsoup:2.4 ) lyrics? ( net-libs/libsoup:2.4 dev-libs/libxml2:2 ) dev-util/intltool virtual/pkgconfig sys-devel/gettext >=sys-apps/sed-4 +DESCRIPTION=A media player for Gtk+ with a slick GUI, great speed and lots of features +EAPI=4 +HOMEPAGE=http://www.xnoise-media-player.com/ +IUSE=+lastfm +lyrics +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=x11-libs/gtk+:3 >=dev-libs/glib-2.30:2 media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 dev-db/sqlite:3 media-libs/taglib x11-libs/cairo x11-libs/libX11 lastfm? ( net-libs/libsoup:2.4 ) lyrics? ( net-libs/libsoup:2.4 dev-libs/libxml2:2 ) +SLOT=0 +SRC_URI=mirror://bitbucket/shuerhaaken/xnoise/downloads/xnoise-0.2.14.tar.gz +_eclasses_=fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 +_md5_=4ce46aa6643b3be33cab5d4c1ebb92ca diff --git a/metadata/md5-cache/media-sound/xnoise-9999 b/metadata/md5-cache/media-sound/xnoise-9999 index 6e3155d62467..c42a06c7363b 100644 --- a/metadata/md5-cache/media-sound/xnoise-9999 +++ b/metadata/md5-cache/media-sound/xnoise-9999 @@ -1,11 +1,11 @@ DEFINED_PHASES=configure install postinst postrm preinst prepare unpack -DEPEND=x11-libs/gtk+:3 >=dev-libs/glib-2.30:2 media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 dev-db/sqlite:3 media-libs/taglib x11-libs/cairo x11-libs/libX11 lastfm? ( net-libs/libsoup:2.4 ) libnotify? ( x11-libs/libnotify ) lyrics? ( net-libs/libsoup:2.4 dev-libs/libxml2:2 ) dev-lang/vala:0.16 dev-util/intltool virtual/pkgconfig gnome-base/gnome-common:3 >=sys-devel/autoconf-2.67:2.5 sys-devel/gettext >=sys-apps/sed-4 dev-vcs/git +DEPEND=x11-libs/gtk+:3 >=dev-libs/glib-2.30:2 media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 dev-db/sqlite:3 media-libs/taglib x11-libs/cairo x11-libs/libX11 lastfm? ( net-libs/libsoup:2.4 ) lyrics? ( net-libs/libsoup:2.4 dev-libs/libxml2:2 ) dev-lang/vala:0.18 dev-util/intltool virtual/pkgconfig gnome-base/gnome-common:3 >=sys-devel/autoconf-2.67:2.5 sys-devel/gettext >=sys-apps/sed-4 dev-vcs/git DESCRIPTION=A media player for Gtk+ with a slick GUI, great speed and lots of features EAPI=4 HOMEPAGE=http://www.xnoise-media-player.com/ -IUSE=+lastfm libnotify +lyrics +IUSE=+lastfm +lyrics LICENSE=GPL-2 -RDEPEND=x11-libs/gtk+:3 >=dev-libs/glib-2.30:2 media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 dev-db/sqlite:3 media-libs/taglib x11-libs/cairo x11-libs/libX11 lastfm? ( net-libs/libsoup:2.4 ) libnotify? ( x11-libs/libnotify ) lyrics? ( net-libs/libsoup:2.4 dev-libs/libxml2:2 ) +RDEPEND=x11-libs/gtk+:3 >=dev-libs/glib-2.30:2 media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 dev-db/sqlite:3 media-libs/taglib x11-libs/cairo x11-libs/libX11 lastfm? ( net-libs/libsoup:2.4 ) lyrics? ( net-libs/libsoup:2.4 dev-libs/libxml2:2 ) SLOT=0 _eclasses_=fdo-mime 0acfe1a88fd8751a1d5dc671168219fa git-2 e92e09651292b1bef5656592364550f7 gnome2-utils 794d2847b4af390a1e020924876c8297 -_md5_=0f428cf0d7aca8350ea0731241d30cc6 +_md5_=893cfc83f6c6a0e3fd69c7dbdc0bf665 diff --git a/metadata/md5-cache/media-video/libav-0.8.5 b/metadata/md5-cache/media-video/libav-0.8.5 index 35fc1cef1454..8d512044c929 100644 --- a/metadata/md5-cache/media-video/libav-0.8.5 +++ b/metadata/md5-cache/media-video/libav-0.8.5 @@ -4,11 +4,11 @@ DESCRIPTION=Complete solution to record, convert and stream audio and video. EAPI=5 HOMEPAGE=http://libav.org/ IUSE=+3dnow +3dnowext aac alsa altivec amr bindist +bzip2 cdio cpudetection custom-cflags debug dirac doc +encode faac truetype frei0r +gpl gsm +hardcoded-tables ieee1394 jack jpeg2k +mmx +mmxext mp3 network openssl oss pic pulseaudio +qt-faststart rtmp schroedinger sdl speex ssl +ssse3 static-libs test theora threads v4l vaapi vdpau vorbis vpx X x264 xvid +zlib 3dnow 3dnowext altivec avx mmx mmxext neon ssse3 vis -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=LGPL-2.1 gpl? ( GPL-3 ) RDEPEND=!media-video/ffmpeg alsa? ( media-libs/alsa-lib ) amr? ( media-libs/opencore-amr ) bzip2? ( app-arch/bzip2 ) cdio? ( || ( dev-libs/libcdio-paranoia =media-sound/lame-3.98.3 ) theora? ( >=media-libs/libtheora-1.1.1[encode] media-libs/libogg ) vorbis? ( media-libs/libvorbis media-libs/libogg ) x264? ( >=media-libs/x264-0.0.20111017 ) xvid? ( >=media-libs/xvid-1.1.0 ) ) truetype? ( media-libs/freetype:2 ) frei0r? ( media-plugins/frei0r-plugins ) gsm? ( >=media-sound/gsm-1.0.12-r1 ) ieee1394? ( media-libs/libdc1394 sys-libs/libraw1394 ) jack? ( media-sound/jack-audio-connection-kit ) jpeg2k? ( >=media-libs/openjpeg-1.3-r2 ) pulseaudio? ( media-sound/pulseaudio ) rtmp? ( >=media-video/rtmpdump-2.2f ) ssl? ( openssl? ( dev-libs/openssl ) !openssl? ( net-libs/gnutls ) ) sdl? ( >=media-libs/libsdl-1.2.13-r1[audio,video] ) schroedinger? ( media-libs/schroedinger ) speex? ( >=media-libs/speex-1.2_beta3 ) vaapi? ( x11-libs/libva ) vdpau? ( x11-libs/libvdpau ) vpx? ( >=media-libs/libvpx-0.9.6 ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes ) zlib? ( sys-libs/zlib ) REQUIRED_USE=bindist? ( !faac !openssl ) rtmp? ( network ) amr? ( gpl ) aac? ( gpl ) x264? ( gpl ) X? ( gpl ) cdio? ( gpl ) test? ( encode ) SLOT=0/0.8 SRC_URI=http://libav.org/releases/libav-0.8.5.tar.xz test? ( http://dev.gentoo.org/~lu_zero/libav/fate-0.8.2.tar.xz ) _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=c5c8098a022955a9dd87c4b930eb5b29 +_md5_=f3a23850ebc6aba52bef249179581e0d diff --git a/metadata/md5-cache/net-dialup/capi4k-utils-20050718-r3 b/metadata/md5-cache/net-dialup/capi4k-utils-20050718-r3 index ec7a086fd41b..b9382bef6930 100644 --- a/metadata/md5-cache/net-dialup/capi4k-utils-20050718-r3 +++ b/metadata/md5-cache/net-dialup/capi4k-utils-20050718-r3 @@ -1,12 +1,13 @@ DEFINED_PHASES=compile install postinst setup unpack DEPEND=virtual/linux-sources virtual/os-headers >=sys-apps/sed-4 DESCRIPTION=CAPI4Linux Utils +EAPI=1 HOMEPAGE=ftp://ftp.in-berlin.de/pub/capi4linux/ -IUSE=fax pppd tcpd usb pcmcia +IUSE=fax +pppd tcpd usb pcmcia KEYWORDS=alpha amd64 ppc x86 LICENSE=GPL-2 -RDEPEND=usb? ( sys-apps/hotplug ) pcmcia? ( virtual/pcmcia ) dev-lang/perl +RDEPEND=usb? ( sys-apps/hotplug ) pcmcia? ( sys-apps/pcmciautils ) dev-lang/perl SLOT=0 SRC_URI=ftp://ftp.in-berlin.de/pub/capi4linux/capi4k-utils-2005-07-18.tar.gz ftp://ftp.in-berlin.de/pub/capi4linux/OLD/capi4k-utils-2005-07-18.tar.gz http://voip-cell.eu/gentoo/distfiles/capi4k-patches-20050718-r3.tar.bz2 _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 linux-info 6923bbfed4371639315c56d17e2da90c multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=ee3c918bcc801ddeb220c5ea487f825a +_md5_=1a74278450d8aea193f092af6ba08b38 diff --git a/metadata/md5-cache/net-dialup/capi4k-utils-20050718-r4 b/metadata/md5-cache/net-dialup/capi4k-utils-20050718-r4 index 31b783a8e53b..19619ea3b55d 100644 --- a/metadata/md5-cache/net-dialup/capi4k-utils-20050718-r4 +++ b/metadata/md5-cache/net-dialup/capi4k-utils-20050718-r4 @@ -3,11 +3,11 @@ DEPEND=virtual/linux-sources virtual/os-headers >=sys-apps/sed-4 DESCRIPTION=CAPI4Linux Utils EAPI=3 HOMEPAGE=ftp://ftp.in-berlin.de/pub/capi4linux/ -IUSE=fax pppd rcapid +IUSE=fax +pppd rcapid KEYWORDS=~alpha ~amd64 ~ppc ~x86 LICENSE=GPL-2 RDEPEND=dev-lang/perl SLOT=0 SRC_URI=ftp://ftp.in-berlin.de/pub/capi4linux/capi4k-utils-2005-07-18.tar.gz ftp://ftp.in-berlin.de/pub/capi4linux/OLD/capi4k-utils-2005-07-18.tar.gz http://sbriesen.de/gentoo/distfiles/capi4k-files-20050718-r4.tar.xz http://sbriesen.de/gentoo/distfiles/capi4k-patches-20050718-r4.tar.xz _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 linux-info 6923bbfed4371639315c56d17e2da90c multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=51e5dfc3db21edbb428cec8290a8ec3e +_md5_=d73ae21e7e8be34f06968643b837bedd diff --git a/metadata/md5-cache/net-dialup/capi4k-utils-20050718-r5 b/metadata/md5-cache/net-dialup/capi4k-utils-20050718-r5 index 7a8051f012aa..5850f5dfebd7 100644 --- a/metadata/md5-cache/net-dialup/capi4k-utils-20050718-r5 +++ b/metadata/md5-cache/net-dialup/capi4k-utils-20050718-r5 @@ -3,11 +3,11 @@ DEPEND=pppd? ( net-dialup/ppp ) virtual/linux-sources virtual/os-headers app-arc DESCRIPTION=CAPI4Linux Utils EAPI=3 HOMEPAGE=ftp://ftp.in-berlin.de/pub/capi4linux/ -IUSE=fax pppd rcapid +IUSE=fax +pppd rcapid KEYWORDS=~alpha ~amd64 ~ppc ~x86 LICENSE=GPL-2 RDEPEND=pppd? ( net-dialup/ppp ) dev-lang/perl SLOT=0 SRC_URI=ftp://ftp.in-berlin.de/pub/capi4linux/capi4k-utils-2005-07-18.tar.gz ftp://ftp.in-berlin.de/pub/capi4linux/OLD/capi4k-utils-2005-07-18.tar.gz http://sbriesen.de/gentoo/distfiles/capi4k-files-20050718-r5.tar.xz http://sbriesen.de/gentoo/distfiles/capi4k-patches-20050718-r5.tar.xz _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 linux-info 6923bbfed4371639315c56d17e2da90c multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=aa0d5a2d61cfd9f674de5d7c86e1174a +_md5_=bfa468235b89b9355d13f27f262ff66d diff --git a/metadata/md5-cache/net-firewall/shorewall-4.5.8.2-r1 b/metadata/md5-cache/net-firewall/shorewall-4.5.8.2-r1 index 611ddaf946bf..d8421b93e591 100644 --- a/metadata/md5-cache/net-firewall/shorewall-4.5.8.2-r1 +++ b/metadata/md5-cache/net-firewall/shorewall-4.5.8.2-r1 @@ -4,10 +4,10 @@ DESCRIPTION=Shoreline Firewall is an iptables-based firewall for Linux. EAPI=4 HOMEPAGE=http://www.shorewall.net/ IUSE=doc -KEYWORDS=~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86 +KEYWORDS=alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86 LICENSE=GPL-2 RDEPEND=>=net-firewall/iptables-1.2.4 sys-apps/iproute2[-minimal] dev-lang/perl =net-firewall/shorewall-core-4.5.8.2 SLOT=0 SRC_URI=http://www1.shorewall.net/pub/shorewall/4.5/shorewall-4.5.8/shorewall-4.5.8.2.tar.bz2 doc? ( http://www1.shorewall.net/pub/shorewall/4.5/shorewall-4.5.8/shorewall-docs-html-4.5.8.2.tar.bz2 ) _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=7d42afd0396353405ead0f79ee6fe05d +_md5_=d94a6548ae1ceaff20a0b7cec729f17f diff --git a/metadata/md5-cache/net-firewall/shorewall-core-4.5.8.2 b/metadata/md5-cache/net-firewall/shorewall-core-4.5.8.2 index 8f60f96beb19..112e899f921e 100644 --- a/metadata/md5-cache/net-firewall/shorewall-core-4.5.8.2 +++ b/metadata/md5-cache/net-firewall/shorewall-core-4.5.8.2 @@ -4,10 +4,10 @@ DESCRIPTION=Core libraries of shorewall / shorewall(6)-lite EAPI=4 HOMEPAGE=http://www.shorewall.net/ IUSE=selinux -KEYWORDS=~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86 +KEYWORDS=alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86 LICENSE=GPL-2 RDEPEND=>=net-firewall/iptables-1.2.4 sys-apps/iproute2[-minimal] dev-lang/perl dev-perl/Digest-SHA1 !=net-firewall/iptables-1.4.0 sys-apps/iproute2 >=net-firewall/shorewall-4.5.8 dev-perl/Socket6 SLOT=0 SRC_URI=http://www1.shorewall.net/pub/shorewall/4.5/shorewall-4.5.8/shorewall6-4.5.8.2.tar.bz2 doc? ( http://www1.shorewall.net/pub/shorewall6/4.5/shorewall-4.5.8/shorewall-docs-html-4.5.8.2.tar.bz2 ) _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 linux-info 6923bbfed4371639315c56d17e2da90c multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=f3a07dc3c52004c078ae7a788945c67b +_md5_=32dbfd740545b1d757a4f8ea876b3552 diff --git a/metadata/md5-cache/net-firewall/shorewall6-lite-4.5.8.2 b/metadata/md5-cache/net-firewall/shorewall6-lite-4.5.8.2 index 04f2cbe8968c..c533f2004e54 100644 --- a/metadata/md5-cache/net-firewall/shorewall6-lite-4.5.8.2 +++ b/metadata/md5-cache/net-firewall/shorewall6-lite-4.5.8.2 @@ -3,10 +3,10 @@ DESCRIPTION=An iptables-based firewall whose config is handled by a normal Shore EAPI=4 HOMEPAGE=http://www.shorewall.net/ IUSE=doc -KEYWORDS=~alpha amd64 ~hppa ~sparc x86 +KEYWORDS=alpha amd64 ~hppa ~sparc x86 LICENSE=GPL-2 RDEPEND=>=net-firewall/iptables-1.4.0 sys-apps/iproute2 =net-firewall/shorewall-core-4.5.8.2 SLOT=0 SRC_URI=http://www1.shorewall.net/pub/shorewall/4.5/shorewall-4.5.8/shorewall6-lite-4.5.8.2.tar.bz2 doc? ( http://www1.shorewall.net/pub/shorewall/4.5/shorewall-4.5.8/shorewall-docs-html-4.5.8.2.tar.bz2 ) _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 linux-info 6923bbfed4371639315c56d17e2da90c multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=bc4a7da4314bda88cd5d1f100c2e007b +_md5_=1016d5b40e0b1d878ffdb9d00d0a2641 diff --git a/metadata/md5-cache/net-libs/courier-authlib-0.65.0-r2 b/metadata/md5-cache/net-libs/courier-authlib-0.65.0-r2 index ad4c167150db..16d0f7dc987b 100644 --- a/metadata/md5-cache/net-libs/courier-authlib-0.65.0-r2 +++ b/metadata/md5-cache/net-libs/courier-authlib-0.65.0-r2 @@ -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 ) sqlite? ( mysql ) @@ -12,4 +12,4 @@ RESTRICT=userpriv !berkdb? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/courier/courier-authlib-0.65.0.tar.bz2 _eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=0311710d4edfee4a794c88b497f0670c +_md5_=9a98a3c8dfc8f35da9d4bc69762c1856 diff --git a/metadata/md5-cache/net-libs/zeromq-2.1.10 b/metadata/md5-cache/net-libs/zeromq-2.1.10 index acd38805a654..994a463afe0a 100644 --- a/metadata/md5-cache/net-libs/zeromq-2.1.10 +++ b/metadata/md5-cache/net-libs/zeromq-2.1.10 @@ -9,4 +9,4 @@ LICENSE=LGPL-3 SLOT=0 SRC_URI=http://download.zeromq.org/zeromq-2.1.10.tar.gz _eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=e119e2a28bc59ce07c5c8ed15e09a150 +_md5_=6d7d0687e6b1db17e0cfa898ac64605b diff --git a/metadata/md5-cache/net-libs/zeromq-2.2.0 b/metadata/md5-cache/net-libs/zeromq-2.2.0 index 572967fbac24..c95a3724963b 100644 --- a/metadata/md5-cache/net-libs/zeromq-2.2.0 +++ b/metadata/md5-cache/net-libs/zeromq-2.2.0 @@ -9,4 +9,4 @@ LICENSE=LGPL-3 SLOT=0 SRC_URI=http://download.zeromq.org/zeromq-2.2.0.tar.gz _eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=78e865ff2a5a3a3aa9f35d6c7045b1ce +_md5_=7e073a67dce0627a300ebdfcc06eae81 diff --git a/metadata/md5-cache/net-libs/zeromq-3.2.2 b/metadata/md5-cache/net-libs/zeromq-3.2.2 new file mode 100644 index 000000000000..6725052abf00 --- /dev/null +++ b/metadata/md5-cache/net-libs/zeromq-3.2.2 @@ -0,0 +1,12 @@ +DEFINED_PHASES=configure install prepare +DEPEND=sys-devel/gcc pgm? ( virtual/pkgconfig =net-libs/openpgm-5.1.118 ) sys-apps/util-linux || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DESCRIPTION=ZeroMQ is a brokerless kernel +EAPI=5 +HOMEPAGE=http://www.zeromq.org/ +IUSE=pgm test static-libs +KEYWORDS=~amd64 ~hppa ~x86 ~ppc ~ppc64 ~amd64-linux ~x86-linux +LICENSE=LGPL-3 +SLOT=0 +SRC_URI=http://download.zeromq.org/zeromq-3.2.2.tar.gz +_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e +_md5_=24e290b376865153c738dc3fa7628089 diff --git a/metadata/md5-cache/net-mail/mailbase-1.1 b/metadata/md5-cache/net-mail/mailbase-1.1 index eada52464a96..c0a350e22ff1 100644 --- a/metadata/md5-cache/net-mail/mailbase-1.1 +++ b/metadata/md5-cache/net-mail/mailbase-1.1 @@ -2,9 +2,9 @@ DEFINED_PHASES=install postinst setup DESCRIPTION=MTA layout package HOMEPAGE=http://www.gentoo.org/ IUSE=pam -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd +KEYWORDS=alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd LICENSE=GPL-2 RDEPEND=pam? ( virtual/pam ) SLOT=0 _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=bdd93390ce50cb6c40669aa8c9180fb6 +_md5_=fa55abd92c13e8215c4a15e88144753e diff --git a/metadata/md5-cache/net-mail/notmuch-0.15 b/metadata/md5-cache/net-mail/notmuch-0.15 new file mode 100644 index 000000000000..22bdd3c38e5c --- /dev/null +++ b/metadata/md5-cache/net-mail/notmuch-0.15 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare setup test +DEPEND=>=dev-libs/glib-2.22 >=dev-libs/gmime-2.6.7 dev-libs/xapian sys-libs/talloc debug? ( dev-util/valgrind ) emacs? ( >=virtual/emacs-23 ) x86? ( >=dev-libs/xapian-1.2.7-r2 ) vim? ( || ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 ) ) virtual/pkgconfig doc? ( python? ( dev-python/sphinx ) ) test? ( app-misc/dtach || ( >=app-editors/emacs-23[libxml2] >=app-editors/emacs-vcs-23[libxml2] ) sys-devel/gdb ) python? ( || ( =dev-lang/python-3.3* =dev-lang/python-3.2* =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) +DESCRIPTION=Thread-based e-mail indexer, supporting quick search and tagging +EAPI=4 +HOMEPAGE=http://notmuchmail.org/ +IUSE=bash-completion crypt debug doc emacs mutt nmbug pick python test vim zsh-completion +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=>=dev-libs/glib-2.22 >=dev-libs/gmime-2.6.7 dev-libs/xapian sys-libs/talloc debug? ( dev-util/valgrind ) emacs? ( >=virtual/emacs-23 ) x86? ( >=dev-libs/xapian-1.2.7-r2 ) vim? ( || ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 ) ) crypt? ( app-crypt/gnupg ) nmbug? ( dev-vcs/git virtual/perl-File-Temp virtual/perl-PodParser ) mutt? ( dev-perl/File-Which dev-perl/Mail-Box dev-perl/MailTools dev-perl/String-ShellQuote dev-perl/Term-ReadLine-Gnu virtual/perl-Digest-SHA virtual/perl-File-Path virtual/perl-Getopt-Long virtual/perl-PodParser ) zsh-completion? ( app-shells/zsh ) python? ( || ( =dev-lang/python-3.3* =dev-lang/python-3.2* =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) +REQUIRED_USE=pick? ( emacs ) test? ( crypt emacs python ) +SLOT=0 +SRC_URI=http://notmuchmail.org/releases/notmuch-0.15.tar.gz +_eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 elisp-common 21605c8f0b2a5ffa3233faeb3f9df309 multilib 9aa8a023e062fca0ba79362d9d0cc488 pax-utils 0ace932c4045349c7fc1af0fe7091acf python e5b3412fa9f03670a666c8a137bd1060 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e +_md5_=bda6b1a4d634f0cce68917e1fa57c74d diff --git a/metadata/md5-cache/net-misc/mediatomb-0.12.1-r4 b/metadata/md5-cache/net-misc/mediatomb-0.12.1-r5 similarity index 98% rename from metadata/md5-cache/net-misc/mediatomb-0.12.1-r4 rename to metadata/md5-cache/net-misc/mediatomb-0.12.1-r5 index 7c5aaf8f40da..47f7f21773a0 100644 --- a/metadata/md5-cache/net-misc/mediatomb-0.12.1-r4 +++ b/metadata/md5-cache/net-misc/mediatomb-0.12.1-r5 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( mysql sqlite ) taglib? ( !id3tag ) id3tag? ( !taglib ) SLOT=0 SRC_URI=mirror://sourceforge/mediatomb/mediatomb-0.12.1.tar.gz mirror://debian/pool/main/m/mediatomb/mediatomb_0.12.1-4.debian.tar.gz _eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 libtool 2b273eea1976cfaed3449345d94331ac linux-info 6923bbfed4371639315c56d17e2da90c multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=6fe7949e4989e87b8a998af4f3c4db6c +_md5_=af37982f8d3d880a35273bb2cf1efb09 diff --git a/metadata/md5-cache/net-misc/wicd-1.7.2.4-r2 b/metadata/md5-cache/net-misc/wicd-1.7.2.4-r2 index 3776fe42fc44..052dec7fcc56 100644 --- a/metadata/md5-cache/net-misc/wicd-1.7.2.4-r2 +++ b/metadata/md5-cache/net-misc/wicd-1.7.2.4-r2 @@ -4,10 +4,10 @@ DESCRIPTION=A lightweight wired and wireless network manager for Linux EAPI=3 HOMEPAGE=https://launchpad.net/wicd IUSE=X ambiance +gtk ioctl libnotify mac4lin ncurses nls +pm-utils -KEYWORDS=amd64 ~arm ~mips ppc ppc64 ~x86 +KEYWORDS=amd64 ~arm ~mips ppc ppc64 x86 LICENSE=GPL-2 RDEPEND=dev-python/dbus-python X? ( gtk? ( dev-python/pygtk || ( x11-misc/ktsuss x11-libs/gksu kde-base/kdesu ) ) ) || ( net-misc/dhcpcd net-misc/dhcp net-misc/pump ) net-wireless/wireless-tools net-wireless/wpa_supplicant || ( sys-apps/net-tools sys-apps/ethtool ) !gtk? ( dev-python/pygobject:2 ) ioctl? ( dev-python/python-iwscan dev-python/python-wpactrl ) libnotify? ( dev-python/notify-python ) ncurses? ( dev-python/urwid dev-python/pygobject:2 ) pm-utils? ( >=sys-power/pm-utils-1.1.1 ) =dev-lang/python-2* =dev-lang/python-2*[ncurses?,xml] SLOT=0 SRC_URI=http://launchpad.net/wicd/1.7/1.7.2.4/+download/wicd-1.7.2.4.tar.gz mac4lin? ( http://dev.gentoo.org/~anarchy/dist/wicd-mac4lin-icons.tar.xz ) ambiance? ( http://freetimesblog.altervista.org/blog/wp-content/uploads/downloads/2010/05/Icone-Wicd-Lucid.tar.gz ) _eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 python e5b3412fa9f03670a666c8a137bd1060 systemd 28706ddc21464b4ed255eee9fc70b516 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=7a7823e499f18364c3ffe604156bf3bc +_md5_=3ec6c2ae0954bb456d7320ecbf0f1d7d diff --git a/metadata/md5-cache/net-news/yydecode-0.2.10 b/metadata/md5-cache/net-news/yydecode-0.2.10 index b813a28debdc..f0dc335e34bd 100644 --- a/metadata/md5-cache/net-news/yydecode-0.2.10 +++ b/metadata/md5-cache/net-news/yydecode-0.2.10 @@ -3,6 +3,7 @@ DESCRIPTION=A decoder for yENC format, popular on Usenet HOMEPAGE=http://yydecode.sourceforge.net/ KEYWORDS=alpha amd64 arm ~ppc ~sparc x86 LICENSE=GPL-2 +RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/yydecode/yydecode-0.2.10.tar.gz -_md5_=a5a55e523e45282e6f35d4b3b9561d6f +_md5_=e029dd6bbdbb51e26eb95280d34193fb diff --git a/metadata/md5-cache/net-news/yydecode-0.2.10-r1 b/metadata/md5-cache/net-news/yydecode-0.2.10-r1 new file mode 100644 index 000000000000..f717ad4a19d0 --- /dev/null +++ b/metadata/md5-cache/net-news/yydecode-0.2.10-r1 @@ -0,0 +1,9 @@ +DEFINED_PHASES=prepare +DESCRIPTION=A decoder for yENC format, popular on Usenet +EAPI=5 +HOMEPAGE=http://yydecode.sourceforge.net/ +KEYWORDS=~alpha ~amd64 ~arm ~ppc ~sparc ~x86 +LICENSE=GPL-2 +SLOT=0 +SRC_URI=mirror://sourceforge/yydecode/yydecode-0.2.10.tar.gz +_md5_=5a5fb87765fdc301cc858e789f23fb03 diff --git a/metadata/md5-cache/net-nntp/newspost-2.1.1-r3 b/metadata/md5-cache/net-nntp/newspost-2.1.1-r3 new file mode 100644 index 000000000000..c66648f23362 --- /dev/null +++ b/metadata/md5-cache/net-nntp/newspost-2.1.1-r3 @@ -0,0 +1,10 @@ +DEFINED_PHASES=compile install prepare +DESCRIPTION=A usenet binary autoposter for unix +EAPI=5 +HOMEPAGE=http://newspost.unixcab.org/ +KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos +LICENSE=GPL-2 +SLOT=0 +SRC_URI=http://newspost.unixcab.org/download/newspost-2.1.1.tar.gz +_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=15af57615170588c09c0c7c598be649c diff --git a/metadata/md5-cache/net-wireless/atmel-firmware-1.3 b/metadata/md5-cache/net-wireless/atmel-firmware-1.3 deleted file mode 100644 index 820c8a3b3b97..000000000000 --- a/metadata/md5-cache/net-wireless/atmel-firmware-1.3 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm -DESCRIPTION=Firmware and config for atmel and atmel_cs wlan drivers included in linux 2.6 -HOMEPAGE=http://www.thekelleys.org.uk/atmel/ -IUSE=pcmcia usb -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Atmel -RDEPEND=|| ( virtual/udev >=sys-apps/hotplug-20040923 ) !=net-wireless/wireless-tools-26-r1 pcmcia? ( virtual/pcmcia ) -SLOT=0 -SRC_URI=http://www.thekelleys.org.uk/atmel/atmel-firmware-1.3.tar.gz -_eclasses_=multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=6a1fe3db086333b8145669fe8330ff34 diff --git a/metadata/md5-cache/net-wireless/atmel-firmware-1.3-r1 b/metadata/md5-cache/net-wireless/atmel-firmware-1.3-r1 index 300801f7b3e8..b09c6fcb75fb 100644 --- a/metadata/md5-cache/net-wireless/atmel-firmware-1.3-r1 +++ b/metadata/md5-cache/net-wireless/atmel-firmware-1.3-r1 @@ -5,8 +5,8 @@ HOMEPAGE=http://www.thekelleys.org.uk/atmel/ IUSE=pcmcia usb KEYWORDS=~amd64 ~ppc ~x86 LICENSE=Atmel -RDEPEND=|| ( virtual/udev >=sys-apps/hotplug-20040923 ) !=net-wireless/wireless-tools-26-r1 pcmcia? ( virtual/pcmcia ) +RDEPEND=|| ( virtual/udev >=sys-apps/hotplug-20040923 ) !=net-wireless/wireless-tools-26-r1 pcmcia? ( sys-apps/pcmciautils ) SLOT=0 SRC_URI=http://www.thekelleys.org.uk/atmel/atmel-firmware-1.3.tar.gz _eclasses_=multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=16b22a72d71714e2b81c521fcd49cefe +_md5_=16405bdcb853ccc0ea5522e5f94f45da diff --git a/metadata/md5-cache/net-wireless/bluez-4.101-r5 b/metadata/md5-cache/net-wireless/bluez-4.101-r5 index b6adf73c3ca3..d1d1da2fb42e 100644 --- a/metadata/md5-cache/net-wireless/bluez-4.101-r5 +++ b/metadata/md5-cache/net-wireless/bluez-4.101-r5 @@ -4,10 +4,10 @@ DESCRIPTION=Bluetooth Tools and System Daemons for Linux EAPI=5 HOMEPAGE=http://www.bluez.org/ IUSE=alsa +consolekit cups debug gstreamer pcmcia readline selinux test-programs usb python_targets_python2_6 python_targets_python2_7 python_single_target_python2_6 python_single_target_python2_7 -KEYWORDS=amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 +KEYWORDS=amd64 arm ~hppa ~ppc ~ppc64 ~x86 LICENSE=GPL-2 LGPL-2.1 RDEPEND=>=dev-libs/glib-2.28:2 >=sys-apps/dbus-1.6 >=sys-apps/hwids-20121202.2 >=virtual/udev-171 alsa? ( media-libs/alsa-lib:=[alsa_pcm_plugins_extplug(+),alsa_pcm_plugins_ioplug(+)] media-libs/libsndfile:= ) cups? ( net-print/cups ) gstreamer? ( >=media-libs/gstreamer-0.10:0.10 >=media-libs/gst-plugins-base-0.10:0.10 ) readline? ( sys-libs/readline:= ) selinux? ( sec-policy/selinux-bluetooth ) usb? ( virtual/libusb:0 ) consolekit? ( || ( sys-auth/consolekit sys-apps/systemd ) ) test-programs? ( >=dev-python/dbus-python-1 dev-python/pygobject:2 dev-python/python-exec[python_targets_python2_6?,python_targets_python2_7?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] python_single_target_python2_6? ( dev-lang/python:2.6 ) python_single_target_python2_7? ( dev-lang/python:2.7 ) ) SLOT=0 SRC_URI=mirror://kernel/linux/bluetooth/bluez-4.101.tar.xz _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 python-single-r1 24fb5eb34cffbd2bfe575987513c972a python-utils-r1 069a968fde0ceb8a9cd5c6a89d77cbc2 systemd 28706ddc21464b4ed255eee9fc70b516 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=1d460951b024a8cc4b8e1ee3c7805232 +_md5_=787372bfb32ad8cfcafa87ce8ec66b46 diff --git a/metadata/md5-cache/net-wireless/ndiswrapper-1.58_rc1 b/metadata/md5-cache/net-wireless/ndiswrapper-1.58_rc1 index 084598175461..7c46e336cdb2 100644 --- a/metadata/md5-cache/net-wireless/ndiswrapper-1.58_rc1 +++ b/metadata/md5-cache/net-wireless/ndiswrapper-1.58_rc1 @@ -10,4 +10,4 @@ RDEPEND=sys-apps/pciutils net-wireless/wireless-tools kernel_linux? ( virtual/mo SLOT=0 SRC_URI=mirror://sourceforge/ndiswrapper/testing/ndiswrapper-1.58rc1.tar.gz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 linux-info 6923bbfed4371639315c56d17e2da90c linux-mod dbc722ed035721476f23ab7b0572985e multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=374ccb46caf7e7acdf7e0836182eaba1 +_md5_=d86dd9634b51ace5edf0331ab334de90 diff --git a/metadata/md5-cache/perl-core/Filter-1.450.0 b/metadata/md5-cache/perl-core/Filter-1.450.0 new file mode 100644 index 000000000000..5ee5f03d7816 --- /dev/null +++ b/metadata/md5-cache/perl-core/Filter-1.450.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=dev-lang/perl[-build] +DESCRIPTION=Interface for creation of Perl Filters +EAPI=5 +HOMEPAGE=http://search.cpan.org/dist/Filter/ +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris +LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) +RDEPEND=dev-lang/perl[-build] +SLOT=0 +SRC_URI=mirror://cpan/authors/id/R/RU/RURBAN/Filter-1.45.tar.gz +_eclasses_=alternatives 7a734a903498a04a0722152a124aa3a5 base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=12950c1662b60e14526ac760f7fcf622 diff --git a/metadata/md5-cache/perl-core/Module-Load-Conditional-0.540.0 b/metadata/md5-cache/perl-core/Module-Load-Conditional-0.540.0 new file mode 100644 index 000000000000..e26de5dd1e6a --- /dev/null +++ b/metadata/md5-cache/perl-core/Module-Load-Conditional-0.540.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=>=virtual/perl-Module-Load-0.12 >=virtual/perl-Module-CoreList-0.22 >=virtual/perl-Module-Metadata-1.0.5 virtual/perl-Locale-Maketext-Simple virtual/perl-Params-Check virtual/perl-version dev-lang/perl[-build] +DESCRIPTION=Looking up module information / loading at runtime +EAPI=5 +HOMEPAGE=http://search.cpan.org/dist/Module-Load-Conditional/ +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) +RDEPEND=>=virtual/perl-Module-Load-0.12 >=virtual/perl-Module-CoreList-0.22 >=virtual/perl-Module-Metadata-1.0.5 virtual/perl-Locale-Maketext-Simple virtual/perl-Params-Check virtual/perl-version dev-lang/perl[-build] +SLOT=0 +SRC_URI=mirror://cpan/authors/id/B/BI/BINGOS/Module-Load-Conditional-0.54.tar.gz +_eclasses_=alternatives 7a734a903498a04a0722152a124aa3a5 base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=18f67f55e1c3cfb190bfcd6b19c73992 diff --git a/metadata/md5-cache/sci-chemistry/gromacs-4.6 b/metadata/md5-cache/sci-chemistry/gromacs-4.6 new file mode 100644 index 000000000000..ff89be296851 --- /dev/null +++ b/metadata/md5-cache/sci-chemistry/gromacs-4.6 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst prepare pretend test unpack +DEPEND=X? ( x11-libs/libX11 x11-libs/libSM x11-libs/libICE ) blas? ( virtual/blas ) cuda? ( dev-util/nvidia-cuda-toolkit ) fftw? ( sci-libs/fftw:3.0 ) gsl? ( sci-libs/gsl ) lapack? ( virtual/lapack ) mkl? ( sci-libs/mkl ) mpi? ( virtual/mpi ) virtual/pkgconfig >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) +DESCRIPTION=The ultimate molecular dynamics simulation package +EAPI=5 +HOMEPAGE=http://www.gromacs.org/ +IUSE=X blas cuda doc -double-precision +fftw gsl lapack mkl mpi +offensive openmp +single-precision test +threads zsh-completion sse2 sse41 avx128fma avx256 +KEYWORDS=~alpha ~amd64 ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos +LICENSE=LGPL-2.1 UoI-NCSA !mkl? ( !fftw? ( BSD ) !blas? ( BSD ) !lapack? ( BSD ) ) cuda? ( LGPL-3 ) threads? ( BSD ) +RDEPEND=X? ( x11-libs/libX11 x11-libs/libSM x11-libs/libICE ) blas? ( virtual/blas ) cuda? ( dev-util/nvidia-cuda-toolkit ) fftw? ( sci-libs/fftw:3.0 ) gsl? ( sci-libs/gsl ) lapack? ( virtual/lapack ) mkl? ( sci-libs/mkl ) mpi? ( virtual/mpi ) +REQUIRED_USE=|| ( single-precision double-precision ) cuda? ( single-precision ) mkl? ( !blas !fftw !lapack ) +SLOT=0 +SRC_URI=ftp://ftp.gromacs.org/pub/gromacs/gromacs-4.6.tar.gz doc? ( ftp://ftp.gromacs.org/pub/manual/manual-4.6.pdf -> gromacs-manual-4.6.pdf ) test? ( http://gromacs.googlecode.com/files/regressiontests-4.6.tar.gz ) +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=ba765387ea5dabaffd6d391b4936893f diff --git a/metadata/md5-cache/sci-misc/netlogo-bin-5.0.3 b/metadata/md5-cache/sci-misc/netlogo-bin-5.0.3-r1 similarity index 95% rename from metadata/md5-cache/sci-misc/netlogo-bin-5.0.3 rename to metadata/md5-cache/sci-misc/netlogo-bin-5.0.3-r1 index 019bfba6e30c..bebda2d3f4d0 100644 --- a/metadata/md5-cache/sci-misc/netlogo-bin-5.0.3 +++ b/metadata/md5-cache/sci-misc/netlogo-bin-5.0.3-r1 @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.5 >=dev-java/java-config-2.1.9-r1 SLOT=0 SRC_URI=http://dev.gentoo.org/~jlec/distfiles/netlogo.gif.tar http://ccl.northwestern.edu/netlogo/5.0.3/netlogo-5.0.3.tar.gz _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 dcda71e114d638cdf01db57b8445337d multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=2bc9443a8aa11c3ace7c42c2ac1e1e1b +_md5_=a3c7ab7bf6c0c0610452bcc8e4e31d5a diff --git a/metadata/md5-cache/sci-visualization/gnuplot-4.6.1 b/metadata/md5-cache/sci-visualization/gnuplot-4.6.1 index 28ef3e188e7d..1acbc2a1c73c 100644 --- a/metadata/md5-cache/sci-visualization/gnuplot-4.6.1 +++ b/metadata/md5-cache/sci-visualization/gnuplot-4.6.1 @@ -4,10 +4,10 @@ DESCRIPTION=Command-line driven interactive plotting program EAPI=4 HOMEPAGE=http://www.gnuplot.info/ IUSE=bitmap cairo doc emacs examples +gd ggi latex lua plotutils qt4 readline svga thin-splines wxwidgets X xemacs -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=gnuplot GPL-2 bitmap? ( free-noncomm ) RDEPEND=cairo? ( x11-libs/cairo x11-libs/pango ) emacs? ( virtual/emacs ) gd? ( media-libs/gd[png] ) ggi? ( media-libs/libggi ) latex? ( virtual/latex-base lua? ( dev-tex/pgf >=dev-texlive/texlive-latexrecommended-2008-r2 ) ) lua? ( dev-lang/lua ) plotutils? ( media-libs/plotutils ) qt4? ( >=x11-libs/qt-core-4.5:4 >=x11-libs/qt-gui-4.5:4 >=x11-libs/qt-svg-4.5:4 ) readline? ( sys-libs/readline ) svga? ( media-libs/svgalib ) wxwidgets? ( x11-libs/wxGTK:2.8[X] x11-libs/cairo x11-libs/pango x11-libs/gtk+:2 ) X? ( x11-libs/libXaw ) xemacs? ( app-editors/xemacs app-xemacs/xemacs-base ) SLOT=0 SRC_URI=mirror://sourceforge/gnuplot/gnuplot-4.6.1.tar.gz _eclasses_=elisp-common 21605c8f0b2a5ffa3233faeb3f9df309 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 wxwidgets fb1a306837717dfa2af841ecdf929565 -_md5_=c72e710058ff926a44e854bdb65a4939 +_md5_=4f7dd639be973c2df2689fa0321908bd diff --git a/metadata/md5-cache/sys-apps/dbus-1.4.20 b/metadata/md5-cache/sys-apps/dbus-1.4.20 deleted file mode 100644 index 2a37462eb36f..000000000000 --- a/metadata/md5-cache/sys-apps/dbus-1.4.20 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup test -DEPEND=>=dev-libs/expat-2 selinux? ( sec-policy/selinux-dbus sys-libs/libselinux ) X? ( x11-libs/libX11 x11-libs/libXt ) virtual/pkgconfig doc? ( app-doc/doxygen app-text/docbook-xml-dtd:4.1.2 app-text/xmlto ) test? ( >=dev-libs/glib-2.24 dev-lang/python:2.7 ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) -DESCRIPTION=A message bus system, a simple way for applications to talk to each other -EAPI=4 -HOMEPAGE=http://dbus.freedesktop.org/ -IUSE=debug doc selinux static-libs test X test -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd -LICENSE=|| ( GPL-2 AFL-2.1 ) -RDEPEND=>=dev-libs/expat-2 selinux? ( sec-policy/selinux-dbus sys-libs/libselinux ) X? ( x11-libs/libX11 x11-libs/libXt ) -SLOT=0 -SRC_URI=http://dbus.freedesktop.org/releases/dbus/dbus-1.4.20.tar.gz -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python e5b3412fa9f03670a666c8a137bd1060 systemd 28706ddc21464b4ed255eee9fc70b516 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=8857cc4e2ba8a47984dcd6ac76c98c56 diff --git a/metadata/md5-cache/sys-apps/dbus-1.6.2 b/metadata/md5-cache/sys-apps/dbus-1.6.2 deleted file mode 100644 index 3fd410759bac..000000000000 --- a/metadata/md5-cache/sys-apps/dbus-1.6.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup test -DEPEND=>=dev-libs/expat-2 selinux? ( sec-policy/selinux-dbus sys-libs/libselinux ) X? ( x11-libs/libX11 x11-libs/libXt ) virtual/pkgconfig doc? ( app-doc/doxygen app-text/docbook-xml-dtd:4.1.2 app-text/xmlto ) test? ( >=dev-libs/glib-2.24 dev-lang/python:2.7 ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) -DESCRIPTION=A message bus system, a simple way for applications to talk to each other -EAPI=4 -HOMEPAGE=http://dbus.freedesktop.org/ -IUSE=debug doc selinux static-libs systemd test X test -KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd -LICENSE=|| ( AFL-2.1 GPL-2 ) -RDEPEND=>=dev-libs/expat-2 selinux? ( sec-policy/selinux-dbus sys-libs/libselinux ) X? ( x11-libs/libX11 x11-libs/libXt ) -SLOT=0 -SRC_URI=http://dbus.freedesktop.org/releases/dbus/dbus-1.6.2.tar.gz -_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac linux-info 6923bbfed4371639315c56d17e2da90c multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python e5b3412fa9f03670a666c8a137bd1060 systemd 28706ddc21464b4ed255eee9fc70b516 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=e93003ed592dc6e3b6a96183e243ba07 diff --git a/metadata/md5-cache/sys-apps/dbus-1.6.8 b/metadata/md5-cache/sys-apps/dbus-1.6.8 index 9fff089d5521..93a8dd27ff49 100644 --- a/metadata/md5-cache/sys-apps/dbus-1.6.8 +++ b/metadata/md5-cache/sys-apps/dbus-1.6.8 @@ -10,4 +10,4 @@ RDEPEND=>=dev-libs/expat-2 selinux? ( sec-policy/selinux-dbus sys-libs/libselinu SLOT=0 SRC_URI=http://dbus.freedesktop.org/releases/dbus/dbus-1.6.8.tar.gz _eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac linux-info 6923bbfed4371639315c56d17e2da90c multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python e5b3412fa9f03670a666c8a137bd1060 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=cdc9d6a4112e7e9dbbb1ba958a297c48 +_md5_=cba8544a7f979b4683f0dd7550e85b57 diff --git a/metadata/md5-cache/sys-apps/dmidecode-2.11 b/metadata/md5-cache/sys-apps/dmidecode-2.11 index c4f98f7bef17..3a6ff1a769de 100644 --- a/metadata/md5-cache/sys-apps/dmidecode-2.11 +++ b/metadata/md5-cache/sys-apps/dmidecode-2.11 @@ -4,10 +4,10 @@ DESCRIPTION=DMI (Desktop Management Interface) table related utilities EAPI=3 HOMEPAGE=http://www.nongnu.org/dmidecode/ IUSE=selinux -KEYWORDS=-* amd64 ~arm ~ia64 ppc ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-solaris +KEYWORDS=-* amd64 arm ~ia64 ppc ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-solaris LICENSE=GPL-2 RDEPEND=selinux? ( sec-policy/selinux-dmidecode ) SLOT=0 SRC_URI=http://savannah.nongnu.org/download/dmidecode/dmidecode-2.11.tar.bz2 _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=7c552092f9fba27931da2cee27283c80 +_md5_=d168499eeb1e3fc78f2fc44d9df8b345 diff --git a/metadata/md5-cache/sys-apps/gptfdisk-0.8.4 b/metadata/md5-cache/sys-apps/gptfdisk-0.8.4 index 757532339632..f5618bd8452d 100644 --- a/metadata/md5-cache/sys-apps/gptfdisk-0.8.4 +++ b/metadata/md5-cache/sys-apps/gptfdisk-0.8.4 @@ -3,10 +3,10 @@ DEPEND=dev-libs/icu dev-libs/popt sys-libs/ncurses DESCRIPTION=gdisk - GPT partition table manipulator for Linux EAPI=4 HOMEPAGE=http://www.rodsbooks.com/gdisk/ -KEYWORDS=~alpha amd64 ~arm ~ia64 ~mips ppc ppc64 x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 arm ~ia64 ~mips ppc ppc64 x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 RDEPEND=dev-libs/icu dev-libs/popt sys-libs/ncurses SLOT=0 SRC_URI=mirror://sourceforge/gptfdisk/gptfdisk-0.8.4.tar.gz _eclasses_=multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=9eaae284cfe0d5ae7de9743ac8da91e4 +_md5_=de18f0fe280df4a63ef7b04e99540fa9 diff --git a/metadata/md5-cache/sys-apps/hwids-20130114 b/metadata/md5-cache/sys-apps/hwids-20130114 index 578adcd3da88..ed895bb3a6ff 100644 --- a/metadata/md5-cache/sys-apps/hwids-20130114 +++ b/metadata/md5-cache/sys-apps/hwids-20130114 @@ -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 ~x86-linux +KEYWORDS=~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~x86-linux LICENSE=|| ( GPL-2 BSD ) public-domain RDEPEND=!=app-misc/editor-wrapper-3 >=sys-libs/ncurses-5.2 pcre? ( dev-libs/libpcre ) SLOT=0 SRC_URI=http://www.greenwoodsoftware.com/less/less-457.tar.gz http://www-zeuthen.desy.de/~friebel/unix/less/code2color _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=587d483406ab39b5486acdb30d543047 +_md5_=fd01b67858548c3c011294853c202f49 diff --git a/metadata/md5-cache/sys-apps/module-init-tools-3.10 b/metadata/md5-cache/sys-apps/module-init-tools-3.10 deleted file mode 100644 index 603e73cc2fe6..000000000000 --- a/metadata/md5-cache/sys-apps/module-init-tools-3.10 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile install postinst test unpack -DEPEND=sys-libs/zlib >=sys-apps/baselayout-2.0.1 !sys-apps/modutils -DESCRIPTION=tools for managing linux kernel modules -HOMEPAGE=http://modules.wiki.kernel.org/ -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=sys-libs/zlib >=sys-apps/baselayout-2.0.1 !sys-apps/modutils -SLOT=0 -SRC_URI=mirror://kernel/linux/utils/kernel/module-init-tools/module-init-tools-3.10.tar.bz2 -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=5bee38cf0d711b4f9732d514f71e43a7 diff --git a/metadata/md5-cache/sys-apps/module-init-tools-3.11.1 b/metadata/md5-cache/sys-apps/module-init-tools-3.11.1 deleted file mode 100644 index 875052976ffe..000000000000 --- a/metadata/md5-cache/sys-apps/module-init-tools-3.11.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install postinst test unpack -DEPEND=sys-libs/zlib >=sys-apps/baselayout-2.0.1 !sys-apps/modutils -DESCRIPTION=tools for managing linux kernel modules -HOMEPAGE=http://modules.wiki.kernel.org/ -IUSE=static -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=sys-libs/zlib >=sys-apps/baselayout-2.0.1 !sys-apps/modutils -SLOT=0 -SRC_URI=mirror://kernel/linux/utils/kernel/module-init-tools/module-init-tools-3.11.1.tar.bz2 -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=7f4967d8df100e75a64efd50f3e9af41 diff --git a/metadata/md5-cache/sys-apps/module-init-tools-3.12-r1 b/metadata/md5-cache/sys-apps/module-init-tools-3.12-r1 deleted file mode 100644 index 1d31da385fe6..000000000000 --- a/metadata/md5-cache/sys-apps/module-init-tools-3.12-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install postinst test unpack -DEPEND=sys-libs/zlib >=sys-apps/baselayout-2.0.1 !sys-apps/modutils -DESCRIPTION=tools for managing linux kernel modules -HOMEPAGE=http://modules.wiki.kernel.org/ -IUSE=static -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=sys-libs/zlib >=sys-apps/baselayout-2.0.1 !sys-apps/modutils -RESTRICT=test -SLOT=0 -SRC_URI=mirror://kernel/linux/utils/kernel/module-init-tools/module-init-tools-3.12.tar.bz2 -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=08cdf3d20c78037db8e7e6146e63877d diff --git a/metadata/md5-cache/sys-apps/module-init-tools-3.13 b/metadata/md5-cache/sys-apps/module-init-tools-3.13 deleted file mode 100644 index cf4ab4799019..000000000000 --- a/metadata/md5-cache/sys-apps/module-init-tools-3.13 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install postinst test unpack -DEPEND=sys-libs/zlib !=sys-apps/baselayout-1.12.7-r2 !sys-apps/modutils >=sys-apps/sed-4 -DESCRIPTION=tools for managing linux kernel modules -HOMEPAGE=http://modules.wiki.kernel.org/ -IUSE=old-linux -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=sys-libs/zlib >=sys-apps/baselayout-1.12.7-r2 !sys-apps/modutils -RESTRICT=test -SLOT=0 -SRC_URI=mirror://kernel/linux/utils/kernel/module-init-tools/module-init-tools-3.6.tar.bz2 old-linux? ( mirror://kernel/linux/utils/kernel/modutils/v2.4/modutils-2.4.27.tar.bz2 ) mirror://gentoo/module-init-tools-3.6-man.tar.bz2 -_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=5aa57cdea77389334d88fe42ac648d6e diff --git a/metadata/md5-cache/sys-apps/portage-2.1.11.43 b/metadata/md5-cache/sys-apps/portage-2.1.11.47 similarity index 93% rename from metadata/md5-cache/sys-apps/portage-2.1.11.43 rename to metadata/md5-cache/sys-apps/portage-2.1.11.47 index dd902e7a9592..3efda623a26a 100644 --- a/metadata/md5-cache/sys-apps/portage-2.1.11.43 +++ b/metadata/md5-cache/sys-apps/portage-2.1.11.47 @@ -9,6 +9,6 @@ LICENSE=GPL-2 PDEPEND=!build? ( >=net-misc/rsync-2.6.4 userland_GNU? ( >=sys-apps/coreutils-6.4 ) ) RDEPEND=python3? ( =dev-lang/python-3* ) !pypy2_0? ( !python2? ( !python3? ( || ( >=dev-lang/python-2.7 dev-lang/python:2.6[threads] ) ) ) ) pypy2_0? ( !python2? ( !python3? ( dev-python/pypy:2.0[bzip2] ) ) ) python2? ( !python3? ( || ( dev-lang/python:2.7 dev-lang/python:2.6[threads] ) ) ) !build? ( >=sys-apps/sed-4.0.5 || ( >=app-shells/bash-4.2_p37[readline] ( =app-shells/bash-3.2_p17 ) ) >=app-admin/eselect-1.2 || ( python3? ( =dev-lang/python-3*[ssl] ) !pypy2_0? ( !python2? ( !python3? ( || ( >=dev-lang/python-2.7[ssl] dev-lang/python:2.6[threads,ssl] ) ) ) ) pypy2_0? ( !python2? ( !python3? ( dev-python/pypy:2.0[bzip2,ssl] ) ) ) python2? ( !python3? ( || ( dev-lang/python:2.7[ssl] dev-lang/python:2.6[ssl,threads] ) ) ) dev-python/python-mhash ) ) elibc_FreeBSD? ( sys-freebsd/freebsd-bin ) elibc_glibc? ( >=sys-apps/sandbox-2.2 ) elibc_uclibc? ( >=sys-apps/sandbox-2.2 ) >=app-misc/pax-utils-0.1.17 xattr? ( kernel_linux? ( || ( >=dev-lang/python-3.3_pre20110902 dev-python/pyxattr ) ) ) selinux? ( || ( >=sys-libs/libselinux-2.0.94[python] =net-misc/rsync-2.6.4 userland_GNU? ( >=sys-apps/coreutils-6.4 ) ) RDEPEND=python3? ( =dev-lang/python-3* ) !pypy2_0? ( !python2? ( !python3? ( || ( >=dev-lang/python-2.7 dev-lang/python:2.6[threads] ) ) ) ) pypy2_0? ( !python2? ( !python3? ( dev-python/pypy:2.0[bzip2] ) ) ) python2? ( !python3? ( || ( dev-lang/python:2.7 dev-lang/python:2.6[threads] ) ) ) !build? ( >=sys-apps/sed-4.0.5 || ( >=app-shells/bash-4.2_p37[readline] ( =app-shells/bash-3.2_p17 ) ) >=app-admin/eselect-1.2 || ( python3? ( =dev-lang/python-3*[ssl] ) !pypy2_0? ( !python2? ( !python3? ( || ( >=dev-lang/python-2.7[ssl] dev-lang/python:2.6[threads,ssl] ) ) ) ) pypy2_0? ( !python2? ( !python3? ( dev-python/pypy:2.0[bzip2,ssl] ) ) ) python2? ( !python3? ( || ( dev-lang/python:2.7[ssl] dev-lang/python:2.6[ssl,threads] ) ) ) dev-python/python-mhash ) ) elibc_FreeBSD? ( sys-freebsd/freebsd-bin ) elibc_glibc? ( >=sys-apps/sandbox-2.2 ) elibc_uclibc? ( >=sys-apps/sandbox-2.2 ) >=app-misc/pax-utils-0.1.17 xattr? ( kernel_linux? ( || ( >=dev-lang/python-3.3_pre20110902 dev-python/pyxattr ) ) ) selinux? ( || ( >=sys-libs/libselinux-2.0.94[python] =sys-apps/dbus-1.6.8-r1 >=sys-apps/util-linux-2.20 ~sys-fs/udev-197 sys-libs/libcap acl? ( sys-apps/acl ) audit? ( >=sys-process/audit-2 ) cryptsetup? ( >=sys-fs/cryptsetup-1.4.2 ) gcrypt? ( >=dev-libs/libgcrypt-1.4.5 ) http? ( net-libs/libmicrohttpd ) kmod? ( >=sys-apps/kmod-12 ) lzma? ( app-arch/xz-utils ) pam? ( virtual/pam ) python? ( dev-python/python-exec[python_targets_python2_7?,python_single_target_python2_7(+)?] python_single_target_python2_7? ( dev-lang/python:2.7 ) ) qrcode? ( media-gfx/qrencode ) selinux? ( sys-libs/libselinux ) tcpd? ( sys-apps/tcp-wrappers ) xattr? ( sys-apps/attr ) app-arch/xz-utils app-text/docbook-xsl-stylesheets dev-libs/libxslt dev-util/gperf dev-util/intltool sys-fs/quota >=sys-kernel/linux-headers-2.6.39 virtual/pkgconfig +DEPEND=>=sys-apps/dbus-1.6.8-r1 >=sys-apps/util-linux-2.20 ~sys-fs/udev-197 sys-libs/libcap acl? ( sys-apps/acl ) audit? ( >=sys-process/audit-2 ) cryptsetup? ( >=sys-fs/cryptsetup-1.4.2 ) gcrypt? ( >=dev-libs/libgcrypt-1.4.5 ) http? ( net-libs/libmicrohttpd ) kmod? ( >=sys-apps/kmod-12 ) lzma? ( app-arch/xz-utils ) pam? ( virtual/pam ) python? ( dev-python/python-exec[python_targets_python2_7?,python_single_target_python2_7(+)?] python_single_target_python2_7? ( dev-lang/python:2.7 ) ) qrcode? ( media-gfx/qrencode ) selinux? ( sys-libs/libselinux ) tcpd? ( sys-apps/tcp-wrappers ) xattr? ( sys-apps/attr ) app-arch/xz-utils app-text/docbook-xsl-stylesheets dev-libs/libxslt dev-util/gperf dev-util/intltool sys-fs/quota >=sys-kernel/linux-headers-2.6.39 DESCRIPTION=System and service manager for Linux EAPI=5 HOMEPAGE=http://www.freedesktop.org/wiki/Software/systemd @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2.1 MIT RDEPEND=>=sys-apps/dbus-1.6.8-r1 >=sys-apps/util-linux-2.20 ~sys-fs/udev-197 sys-libs/libcap acl? ( sys-apps/acl ) audit? ( >=sys-process/audit-2 ) cryptsetup? ( >=sys-fs/cryptsetup-1.4.2 ) gcrypt? ( >=dev-libs/libgcrypt-1.4.5 ) http? ( net-libs/libmicrohttpd ) kmod? ( >=sys-apps/kmod-12 ) lzma? ( app-arch/xz-utils ) pam? ( virtual/pam ) python? ( dev-python/python-exec[python_targets_python2_7?,python_single_target_python2_7(+)?] python_single_target_python2_7? ( dev-lang/python:2.7 ) ) qrcode? ( media-gfx/qrencode ) selinux? ( sys-libs/libselinux ) tcpd? ( sys-apps/tcp-wrappers ) xattr? ( sys-apps/attr ) sys-apps/hwids || ( >=sys-apps/util-linux-2.22 =sys-apps/dbus-1.6.8-r1 >=sys-apps/util-linux-2.20 ~sys-fs/udev-9999 sys-libs/libcap acl? ( sys-apps/acl ) audit? ( >=sys-process/audit-2 ) cryptsetup? ( >=sys-fs/cryptsetup-1.4.2 ) gcrypt? ( >=dev-libs/libgcrypt-1.4.5 ) http? ( net-libs/libmicrohttpd ) kmod? ( >=sys-apps/kmod-12 ) lzma? ( app-arch/xz-utils ) pam? ( virtual/pam ) python? ( dev-python/python-exec[python_targets_python2_7?,python_single_target_python2_7(+)?] python_single_target_python2_7? ( dev-lang/python:2.7 ) ) qrcode? ( media-gfx/qrencode ) selinux? ( sys-libs/libselinux ) tcpd? ( sys-apps/tcp-wrappers ) xattr? ( sys-apps/attr ) sys-apps/hwids || ( >=sys-apps/util-linux-2.22 =gnome-extra/polkit-gnome-0.105 lxde-base/lxpolkit ) ) kde? ( sys-auth/polkit-kde-agent ) pam? ( systemd? ( sys-auth/pambase[systemd] ) !systemd? ( sys-auth/pambase[consolekit] ) ) !systemd? ( >=sys-auth/consolekit-0.4.5_p2012[policykit] ) RDEPEND=>=dev-lang/spidermonkey-1.8.5-r1 >=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 d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 pax-utils 0ace932c4045349c7fc1af0fe7091acf systemd 28706ddc21464b4ed255eee9fc70b516 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=512f59f95f46b21f1f10b4f6d6c26137 +_md5_=3e50ffe32c4380217b8e57354a865cac diff --git a/metadata/md5-cache/sys-cluster/slurm-2.5.1 b/metadata/md5-cache/sys-cluster/slurm-2.5.1 new file mode 100644 index 000000000000..9e2f9e4b357b --- /dev/null +++ b/metadata/md5-cache/sys-cluster/slurm-2.5.1 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst preinst prepare setup test unpack +DEPEND=!sys-cluster/torque !net-analyzer/slurm !net-analyzer/sinfo mysql? ( dev-db/mysql ) munge? ( sys-auth/munge ) ypbind? ( net-nds/ypbind ) pam? ( virtual/pam ) postgres? ( dev-db/postgresql-base ) ssl? ( dev-libs/openssl ) lua? ( dev-lang/lua ) !lua? ( !dev-lang/lua ) >=sys-apps/hwloc-1.1.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 dev-lang/perl[-build] +DESCRIPTION=SLURM: A Highly Scalable Resource Manager +EAPI=4 +HOMEPAGE=http://www.schedmd.com +IUSE=lua maui multiple-slurmd +munge mysql pam perl postgres ssl static-libs torque ypbind +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=!sys-cluster/torque !net-analyzer/slurm !net-analyzer/sinfo mysql? ( dev-db/mysql ) munge? ( sys-auth/munge ) ypbind? ( net-nds/ypbind ) pam? ( virtual/pam ) postgres? ( dev-db/postgresql-base ) ssl? ( dev-libs/openssl ) lua? ( dev-lang/lua ) !lua? ( !dev-lang/lua ) >=sys-apps/hwloc-1.1.1-r1 dev-libs/libcgroup maui? ( sys-cluster/maui[slurm] ) dev-lang/perl[-build] +REQUIRED_USE=torque? ( perl ) +RESTRICT=primaryuri +SLOT=0 +SRC_URI=http://www.schedmd.com/download/total/slurm-2.5.1.tar.bz2 +_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=e3b60423c28b1e3b5a650667fb0f73a3 diff --git a/metadata/md5-cache/sys-fs/extundelete-0.2.4 b/metadata/md5-cache/sys-fs/extundelete-0.2.4 new file mode 100644 index 000000000000..d7bae42ba960 --- /dev/null +++ b/metadata/md5-cache/sys-fs/extundelete-0.2.4 @@ -0,0 +1,11 @@ +DEFINED_PHASES=- +DEPEND=>=sys-fs/e2fsprogs-1.42.6 >=sys-libs/e2fsprogs-libs-1.42.6 +DESCRIPTION=A utility to undelete files from an ext3 or ext4 partition +EAPI=5 +HOMEPAGE=http://extundelete.sourceforge.net/ +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=sys-fs/e2fsprogs-1.42.6 >=sys-libs/e2fsprogs-libs-1.42.6 +SLOT=0 +SRC_URI=mirror://sourceforge/extundelete/extundelete-0.2.4.tar.bz2 +_md5_=7b90eae6b7860389956821f936620cd9 diff --git a/metadata/md5-cache/sys-fs/fuse-2.9.1-r1 b/metadata/md5-cache/sys-fs/fuse-2.9.1-r1 index ceb33587d015..21414653770b 100644 --- a/metadata/md5-cache/sys-fs/fuse-2.9.1-r1 +++ b/metadata/md5-cache/sys-fs/fuse-2.9.1-r1 @@ -4,10 +4,10 @@ DESCRIPTION=An interface for filesystems implemented in userspace. EAPI=4 HOMEPAGE=http://fuse.sourceforge.net IUSE=kernel_linux kernel_FreeBSD static-libs -KEYWORDS=alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux +KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=GPL-2 PDEPEND=kernel_FreeBSD? ( sys-fs/fuse4bsd ) SLOT=0 SRC_URI=mirror://sourceforge/fuse/fuse-2.9.1.tar.gz _eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 libtool 2b273eea1976cfaed3449345d94331ac linux-info 6923bbfed4371639315c56d17e2da90c multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev 4f764d2b1e34e4ef12b9b0d6e680c0ee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=cbe75e17ccd364d1c87cb8b2bb41f7cf +_md5_=d2db6e4a6a17267867c0bdbc1d612552 diff --git a/metadata/md5-cache/sys-fs/lvm2-2.02.97-r1 b/metadata/md5-cache/sys-fs/lvm2-2.02.97-r1 index 74e7763923f9..a1b55ef38a58 100644 --- a/metadata/md5-cache/sys-fs/lvm2-2.02.97-r1 +++ b/metadata/md5-cache/sys-fs/lvm2-2.02.97-r1 @@ -4,10 +4,10 @@ DESCRIPTION=User-land utilities for LVM2 (device-mapper) software. EAPI=5 HOMEPAGE=http://sources.redhat.com/lvm2/ IUSE=readline static static-libs clvm cman +lvm1 selinux +udev +thin -KEYWORDS=~alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc ~x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 RDEPEND=!!sys-fs/device-mapper readline? ( sys-libs/readline ) clvm? ( =sys-cluster/libdlm-3* cman? ( =sys-cluster/cman-3* ) ) udev? ( virtual/udev ) !=sys-apps/baselayout-2.1-r1 !!sys-fs/lvm-user !!sys-fs/clvm >=sys-apps/util-linux-2.16 thin? ( sys-block/thin-provisioning-tools ) !=sys-fs/fuse-2.6.0_pre3 >=dev-libs/glib-2.4.2 virtual/pkgconfig DESCRIPTION=Fuse-filesystem utilizing the sftp service. EAPI=4 HOMEPAGE=http://fuse.sourceforge.net/sshfs.html -KEYWORDS=amd64 ~arm hppa ~ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux +KEYWORDS=amd64 arm hppa ~ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=GPL-2 RDEPEND=>=sys-fs/fuse-2.6.0_pre3 >=dev-libs/glib-2.4.2 >=net-misc/openssh-4.3 SLOT=0 SRC_URI=mirror://sourceforge/fuse/sshfs-fuse-2.4.tar.gz -_md5_=2fdab705d49d5f562e66d60a39756bba +_md5_=3937420089f2d8bd9099cd2bd0c81452 diff --git a/metadata/md5-cache/sys-fs/udev-197-r3 b/metadata/md5-cache/sys-fs/udev-197-r3 index 631115f5f94b..b0e9e217044f 100644 --- a/metadata/md5-cache/sys-fs/udev-197-r3 +++ b/metadata/md5-cache/sys-fs/udev-197-r3 @@ -1,5 +1,5 @@ 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-12 ) selinux? ( sys-libs/libselinux ) !=dev-util/gtk-doc-1.18 ) hwdb? ( >=sys-apps/hwids-20121202.2[udev] ) || ( >=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-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 ) !=dev-util/gtk-doc-1.18 ) hwdb? ( >=sys-apps/hwids-20121202.2[udev] ) || ( >=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=4 HOMEPAGE=http://www.freedesktop.org/wiki/Software/systemd @@ -7,9 +7,9 @@ IUSE=acl doc 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 openrc? ( >=sys-fs/udev-init-scripts-19 ) -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 ) !=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 ) !=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 ) !=dev-util/gtk-doc-1.18 ) hwdb? ( >=sys-apps/hwids-20121202.2[udev] ) || ( >=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-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 ) !=dev-util/gtk-doc-1.18 ) hwdb? ( >=sys-apps/hwids-20130114[udev] ) 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=4 HOMEPAGE=http://www.freedesktop.org/wiki/Software/systemd @@ -7,9 +7,9 @@ IUSE=acl doc 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 openrc? ( >=sys-fs/udev-init-scripts-19 ) -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 ) !=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 ) !=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 ) !=dev-util/gtk-doc-1.18 ) hwdb? ( >=sys-apps/hwids-20121202.2[udev] ) app-text/docbook-xsl-stylesheets dev-libs/libxslt >=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-12 ) selinux? ( sys-libs/libselinux ) !=dev-util/gtk-doc-1.18 ) hwdb? ( >=sys-apps/hwids-20130114[udev] ) keymap? ( dev-util/gperf ) app-text/docbook-xsl-stylesheets dev-libs/libxslt 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=4 HOMEPAGE=http://www.freedesktop.org/wiki/Software/systemd IUSE=acl doc gudev hwdb introspection keymap +kmod +openrc selinux static-libs LICENSE=LGPL-2.1 MIT GPL-2 PDEPEND=>=virtual/udev-197 openrc? ( >=sys-fs/udev-init-scripts-19 ) -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 ) !=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 ) !=app-misc/pax-utils-0.2.1 !=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Hardened kernel sources (kernel series 2.6) +EAPI=4 +HOMEPAGE=http://www.gentoo.org/proj/en/hardened/ +IUSE=deblob symlink build deblob +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-2 !deblob? ( freedist ) +PDEPEND=!build? ( virtual/dev-manager ) +RDEPEND=>=sys-devel/gcc-4.5 !build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl ) +RESTRICT=binchecks strip +SLOT=2.6.32-r146 +SRC_URI=mirror://kernel/linux/kernel/v2.6/linux-2.6.32.tar.bz2 deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-2.6.32.N/deblob-2.6.32 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-2.6.32.N/deblob-check -> deblob-check-2.6.32 ) http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-2.6.32-150.extras.tar.bz2 mirror://gentoo/genpatches-2.6.32-48.base.tar.bz2 mirror://gentoo/genpatches-2.6.32-48.extras.tar.bz2 +_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 kernel-2 dd451098928ff900df7c254820871c00 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=d6c91d169ed0918064fabffb117cb133 diff --git a/metadata/md5-cache/sys-kernel/hardened-sources-3.2.37 b/metadata/md5-cache/sys-kernel/hardened-sources-3.2.37 new file mode 100644 index 000000000000..7115c22c2393 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/hardened-sources-3.2.37 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile install postinst postrm preinst setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Hardened kernel sources (kernel series 3.2) +EAPI=4 +HOMEPAGE=http://www.gentoo.org/proj/en/hardened/ +IUSE=deblob symlink build deblob +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-2 !deblob? ( freedist ) +PDEPEND=!build? ( virtual/dev-manager ) +RDEPEND=>=sys-devel/gcc-4.5 !build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl ) +RESTRICT=binchecks strip +SLOT=3.2.37 +SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.2.tar.bz2 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 ) http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-3.2.37-1.extras.tar.bz2 mirror://gentoo/genpatches-3.2-16.base.tar.bz2 mirror://gentoo/genpatches-3.2-16.extras.tar.bz2 +_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 kernel-2 dd451098928ff900df7c254820871c00 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=5517918b37d9692d2ccde31c26a2147b diff --git a/metadata/md5-cache/sys-kernel/hardened-sources-3.7.3 b/metadata/md5-cache/sys-kernel/hardened-sources-3.7.3 new file mode 100644 index 000000000000..7dcbdd47a425 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/hardened-sources-3.7.3 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile install postinst postrm preinst setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Hardened kernel sources (kernel series 3.7) +EAPI=4 +HOMEPAGE=http://www.gentoo.org/proj/en/hardened/ +IUSE=deblob symlink build deblob +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-2 !deblob? ( freedist ) +PDEPEND=!build? ( virtual/dev-manager ) +RDEPEND=>=sys-devel/gcc-4.5 !build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl ) +RESTRICT=binchecks strip +SLOT=3.7.3 +SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.7.tar.bz2 deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.7.N/deblob-3.7 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.7.N/deblob-check -> deblob-check-3.7 ) http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-3.7.3-1.extras.tar.bz2 mirror://gentoo/genpatches-3.7-5.base.tar.bz2 +_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 kernel-2 dd451098928ff900df7c254820871c00 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=85dec19377be08ee7443faf03b118018 diff --git a/metadata/md5-cache/sys-power/acpid-2.0.17-r1 b/metadata/md5-cache/sys-power/acpid-2.0.17-r1 index 3f7b00f12aa8..da9a93ddf3ad 100644 --- a/metadata/md5-cache/sys-power/acpid-2.0.17-r1 +++ b/metadata/md5-cache/sys-power/acpid-2.0.17-r1 @@ -4,10 +4,10 @@ DESCRIPTION=Daemon for Advanced Configuration and Power Interface EAPI=4 HOMEPAGE=http://tedfelix.com/linux/acpid-netlink.html IUSE=selinux -KEYWORDS=~amd64 ~ia64 -ppc ~x86 +KEYWORDS=amd64 ~ia64 -ppc x86 LICENSE=GPL-2 RDEPEND=selinux? ( sec-policy/selinux-apm ) SLOT=0 SRC_URI=http://tedfelix.com/linux/acpid-2.0.17.tar.xz _eclasses_=systemd 28706ddc21464b4ed255eee9fc70b516 -_md5_=f75cf92179dd1669d6862b471ff17c80 +_md5_=e9779860e7abc8f71f7bea7f75479831 diff --git a/metadata/md5-cache/sys-process/cronie-1.4.8-r1 b/metadata/md5-cache/sys-process/cronie-1.4.8-r1 deleted file mode 100644 index 65182d224fd6..000000000000 --- a/metadata/md5-cache/sys-process/cronie-1.4.8-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install postinst setup -DEPEND=pam? ( virtual/pam ) anacron? ( !sys-process/anacron ) >=sys-apps/sed-4.0.5 -DESCRIPTION=Cronie is a standard UNIX daemon cron based on the original vixie-cron. -EAPI=3 -HOMEPAGE=https://fedorahosted.org/cronie/wiki -IUSE=anacron inotify pam selinux -KEYWORDS=~amd64 ~arm ~sparc ~x86 -LICENSE=ISC BSD BSD-2 -RDEPEND=pam? ( virtual/pam ) anacron? ( !sys-process/anacron ) virtual/mta >=sys-process/cronbase-0.3.2 !sys-process/vixie-cron !sys-process/bcron !sys-process/dcron !sys-process/fcron -SLOT=0 -SRC_URI=https://fedorahosted.org/releases/c/r/cronie/cronie-1.4.8.tar.gz -_eclasses_=cron 7f2ced83f02bd3c752860bd108b62e2c eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=7bf2aa824e38ef3ed8bb9e617c2c1e70 diff --git a/metadata/md5-cache/sys-process/cronie-1.4.9 b/metadata/md5-cache/sys-process/cronie-1.4.9-r1 similarity index 95% rename from metadata/md5-cache/sys-process/cronie-1.4.9 rename to metadata/md5-cache/sys-process/cronie-1.4.9-r1 index cb1905f5c973..1236315042ff 100644 --- a/metadata/md5-cache/sys-process/cronie-1.4.9 +++ b/metadata/md5-cache/sys-process/cronie-1.4.9-r1 @@ -10,4 +10,4 @@ RDEPEND=pam? ( virtual/pam ) anacron? ( !sys-process/anacron ) virtual/mta >=sys SLOT=0 SRC_URI=https://fedorahosted.org/releases/c/r/cronie/cronie-1.4.9.tar.gz _eclasses_=cron 7f2ced83f02bd3c752860bd108b62e2c eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=21d8f3c392a75cea3aea52df12319cfa +_md5_=4fd52b0383f16cbb8452e6f275b96fd9 diff --git a/metadata/md5-cache/sys-process/fcron-3.0.6-r1 b/metadata/md5-cache/sys-process/fcron-3.0.6-r1 index 27f951e3205d..70667d8a14d7 100644 --- a/metadata/md5-cache/sys-process/fcron-3.0.6-r1 +++ b/metadata/md5-cache/sys-process/fcron-3.0.6-r1 @@ -3,10 +3,10 @@ DEPEND=selinux? ( sys-libs/libselinux ) pam? ( virtual/pam ) >=sys-apps/sed-4.0. DESCRIPTION=A command scheduler with extended capabilities over cron and anacron HOMEPAGE=http://fcron.free.fr/ IUSE=debug pam selinux linguas_fr -KEYWORDS=amd64 ~arm hppa ia64 ~mips ppc sparc x86 ~x86-fbsd +KEYWORDS=amd64 arm hppa ia64 ~mips ppc sparc x86 ~x86-fbsd LICENSE=GPL-2 RDEPEND=selinux? ( sys-libs/libselinux ) pam? ( virtual/pam ) app-shells/bash >=app-misc/editor-wrapper-3 pam? ( >=sys-auth/pambase-20100310 ) virtual/mta >=sys-process/cronbase-0.3.2 !sys-process/vixie-cron !sys-process/bcron !sys-process/cronie !sys-process/dcron SLOT=0 SRC_URI=http://fcron.free.fr/archives/fcron-3.0.6.src.tar.gz _eclasses_=cron 7f2ced83f02bd3c752860bd108b62e2c eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 9aa8a023e062fca0ba79362d9d0cc488 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=ce0c680e39fcff411bde4ec7761d4ed7 +_md5_=3a172c4a65a71d863f3868a8ebd729ab diff --git a/metadata/md5-cache/virtual/pcmcia-2.6.13 b/metadata/md5-cache/virtual/pcmcia-2.6.13 deleted file mode 100644 index 3d257798ddac..000000000000 --- a/metadata/md5-cache/virtual/pcmcia-2.6.13 +++ /dev/null @@ -1,6 +0,0 @@ -DEFINED_PHASES=- -DESCRIPTION=Virtual for PCMCIA userspace tools -KEYWORDS=amd64 arm ppc sh x86 -RDEPEND=|| ( sys-apps/pcmcia-cs sys-apps/pcmciautils ) -SLOT=0 -_md5_=9ef8d3b22cd9a1a930fe00808954a1c8 diff --git a/metadata/md5-cache/virtual/perl-Filter-1.450.0 b/metadata/md5-cache/virtual/perl-Filter-1.450.0 new file mode 100644 index 000000000000..f2aa30a31c01 --- /dev/null +++ b/metadata/md5-cache/virtual/perl-Filter-1.450.0 @@ -0,0 +1,6 @@ +DEFINED_PHASES=- +DESCRIPTION=Virtual for Filter +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris +RDEPEND=~perl-core/Filter-1.450.0 +SLOT=0 +_md5_=f05b96ed86a0541d3015df2dc48ab31a diff --git a/metadata/md5-cache/virtual/perl-Module-Load-Conditional-0.540.0 b/metadata/md5-cache/virtual/perl-Module-Load-Conditional-0.540.0 new file mode 100644 index 000000000000..ccfbccc4546d --- /dev/null +++ b/metadata/md5-cache/virtual/perl-Module-Load-Conditional-0.540.0 @@ -0,0 +1,6 @@ +DEFINED_PHASES=- +DESCRIPTION=Virtual for Module-Load-Conditional +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +RDEPEND=~perl-core/Module-Load-Conditional-0.540.0 +SLOT=0 +_md5_=942b0278cdb12c94284eea12e19b07fc diff --git a/metadata/md5-cache/www-client/chromium-26.0.1386.0 b/metadata/md5-cache/www-client/chromium-26.0.1386.0 new file mode 100644 index 000000000000..953c263dfcef --- /dev/null +++ b/metadata/md5-cache/www-client/chromium-26.0.1386.0 @@ -0,0 +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.15.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 gnome? ( >=gnome-base/gconf-2.24.0 ) gnome-keyring? ( >=gnome-base/gnome-keyring-2.28.2 ) >=media-libs/alsa-lib-1.0.19 media-libs/flac media-libs/harfbuzz >=media-libs/libjpeg-turbo-1.2.0-r1 media-libs/libpng 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] =net-libs/libsrtp-1.4.4_p20121108 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 ) !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 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DESCRIPTION=Open-source version of Google Chrome web browser +EAPI=5 +HOMEPAGE=http://chromium.org/ +IUSE=bindist cups gnome gnome-keyring kerberos 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.15.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 gnome? ( >=gnome-base/gconf-2.24.0 ) gnome-keyring? ( >=gnome-base/gnome-keyring-2.28.2 ) >=media-libs/alsa-lib-1.0.19 media-libs/flac media-libs/harfbuzz >=media-libs/libjpeg-turbo-1.2.0-r1 media-libs/libpng 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] =net-libs/libsrtp-1.4.4_p20121108 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 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) +SLOT=0 +SRC_URI=https://commondatastorage.googleapis.com/chromium-browser-official/chromium-26.0.1386.0-lite.tar.xz +_eclasses_=chromium 10deb47dfb7657ba0fc7814da0bad35e eutils d40dc948067bd3db1c8ebf7d51897313 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 linux-info 6923bbfed4371639315c56d17e2da90c multilib 9aa8a023e062fca0ba79362d9d0cc488 pax-utils 0ace932c4045349c7fc1af0fe7091acf portability 536c5e70c5fb252ed3b769e04aa3f05b python e5b3412fa9f03670a666c8a137bd1060 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_md5_=087acdfdd0b49069007ce54278425088 diff --git a/metadata/md5-cache/www-client/chromium-9999-r1 b/metadata/md5-cache/www-client/chromium-9999-r1 index a54d3946c586..ff69b795257f 100644 --- a/metadata/md5-cache/www-client/chromium-9999-r1 +++ b/metadata/md5-cache/www-client/chromium-9999-r1 @@ -1,11 +1,11 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=app-accessibility/speech-dispatcher app-arch/bzip2 cups? ( dev-libs/libgcrypt >=net-print/cups-1.3.11 ) >=dev-lang/v8-3.15.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 gnome? ( >=gnome-base/gconf-2.24.0 ) gnome-keyring? ( >=gnome-base/gnome-keyring-2.28.2 ) >=media-libs/alsa-lib-1.0.19 media-libs/flac media-libs/harfbuzz >=media-libs/libjpeg-turbo-1.2.0-r1 media-libs/libpng 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] ) ) >=net-libs/libsrtp-1.4.4_p20121108 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 ) !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 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) || ( dev-vcs/subversion[webdav-neon] dev-vcs/subversion[webdav-serf] ) net-misc/rsync test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DEPEND=app-accessibility/speech-dispatcher app-arch/bzip2 cups? ( dev-libs/libgcrypt >=net-print/cups-1.3.11 ) >=dev-lang/v8-3.15.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 gnome? ( >=gnome-base/gconf-2.24.0 ) gnome-keyring? ( >=gnome-base/gnome-keyring-2.28.2 ) >=media-libs/alsa-lib-1.0.19 media-libs/flac media-libs/harfbuzz >=media-libs/libjpeg-turbo-1.2.0-r1 media-libs/libpng 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] =net-libs/libsrtp-1.4.4_p20121108 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 ) !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 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) || ( dev-vcs/subversion[webdav-neon] dev-vcs/subversion[webdav-serf] ) net-misc/rsync test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) DESCRIPTION=Open-source version of Google Chrome web browser EAPI=5 HOMEPAGE=http://chromium.org/ IUSE=bindist cups gnome gnome-keyring kerberos 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 LICENSE=BSD -RDEPEND=app-accessibility/speech-dispatcher app-arch/bzip2 cups? ( dev-libs/libgcrypt >=net-print/cups-1.3.11 ) >=dev-lang/v8-3.15.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 gnome? ( >=gnome-base/gconf-2.24.0 ) gnome-keyring? ( >=gnome-base/gnome-keyring-2.28.2 ) >=media-libs/alsa-lib-1.0.19 media-libs/flac media-libs/harfbuzz >=media-libs/libjpeg-turbo-1.2.0-r1 media-libs/libpng 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] ) ) >=net-libs/libsrtp-1.4.4_p20121108 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 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) +RDEPEND=app-accessibility/speech-dispatcher app-arch/bzip2 cups? ( dev-libs/libgcrypt >=net-print/cups-1.3.11 ) >=dev-lang/v8-3.15.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 gnome? ( >=gnome-base/gconf-2.24.0 ) gnome-keyring? ( >=gnome-base/gnome-keyring-2.28.2 ) >=media-libs/alsa-lib-1.0.19 media-libs/flac media-libs/harfbuzz >=media-libs/libjpeg-turbo-1.2.0-r1 media-libs/libpng 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] =net-libs/libsrtp-1.4.4_p20121108 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 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) SLOT=live _eclasses_=chromium 10deb47dfb7657ba0fc7814da0bad35e eutils d40dc948067bd3db1c8ebf7d51897313 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 linux-info 6923bbfed4371639315c56d17e2da90c multilib 9aa8a023e062fca0ba79362d9d0cc488 pax-utils 0ace932c4045349c7fc1af0fe7091acf portability 536c5e70c5fb252ed3b769e04aa3f05b python e5b3412fa9f03670a666c8a137bd1060 subversion 877d251a42b69543c01f6a36b4707b3b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=99fd64aa78624089727dfc9bf9e42202 +_md5_=9ac25802f3a1b0b69d63bf1e863e2684 diff --git a/metadata/md5-cache/www-client/google-chrome-24.0.1312.52_p175374 b/metadata/md5-cache/www-client/google-chrome-24.0.1312.52_p175374 index 1f9a1629412e..51b1630e4e31 100644 --- a/metadata/md5-cache/www-client/google-chrome-24.0.1312.52_p175374 +++ b/metadata/md5-cache/www-client/google-chrome-24.0.1312.52_p175374 @@ -6,9 +6,9 @@ HOMEPAGE=http://www.google.com/chrome IUSE=+plugins +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 KEYWORDS=-* ~amd64 ~x86 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] ) virtual/udev x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 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 +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/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_24.0.1312.52-r175374_amd64.deb ) x86? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_24.0.1312.52-r175374_i386.deb ) +SRC_URI=amd64? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_24.0.1312.52-r175374_amd64.deb mirror://gentoo/google-chrome-libudev-0.13.1-amd64.tar.xz ) x86? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_24.0.1312.52-r175374_i386.deb mirror://gentoo/google-chrome-libudev-0.13.1-x86.tar.xz ) _eclasses_=chromium 10deb47dfb7657ba0fc7814da0bad35e eutils d40dc948067bd3db1c8ebf7d51897313 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 linux-info 6923bbfed4371639315c56d17e2da90c multilib 9aa8a023e062fca0ba79362d9d0cc488 pax-utils 0ace932c4045349c7fc1af0fe7091acf toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 50e1227854e96469a19a63f053496328 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=42f93e4311a685f76aad3582a4476eac +_md5_=28afaebbbb8e40fdda3737253691aa87 diff --git a/metadata/md5-cache/www-client/google-chrome-25.0.1364.36_beta177067 b/metadata/md5-cache/www-client/google-chrome-25.0.1364.36_beta177067 index bee97312f29f..9e493a743100 100644 --- a/metadata/md5-cache/www-client/google-chrome-25.0.1364.36_beta177067 +++ b/metadata/md5-cache/www-client/google-chrome-25.0.1364.36_beta177067 @@ -6,9 +6,9 @@ HOMEPAGE=http://www.google.com/chrome IUSE=+plugins +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 KEYWORDS=-* ~amd64 ~x86 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] ) virtual/udev 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:stable !www-client/google-chrome:unstable +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:stable !www-client/google-chrome:unstable 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_25.0.1364.36-r177067_amd64.deb ) x86? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_25.0.1364.36-r177067_i386.deb ) +SRC_URI=amd64? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_25.0.1364.36-r177067_amd64.deb mirror://gentoo/google-chrome-libudev-0.13.1-amd64.tar.xz ) x86? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_25.0.1364.36-r177067_i386.deb mirror://gentoo/google-chrome-libudev-0.13.1-x86.tar.xz ) _eclasses_=chromium 10deb47dfb7657ba0fc7814da0bad35e eutils d40dc948067bd3db1c8ebf7d51897313 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 linux-info 6923bbfed4371639315c56d17e2da90c multilib 9aa8a023e062fca0ba79362d9d0cc488 pax-utils 0ace932c4045349c7fc1af0fe7091acf toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 50e1227854e96469a19a63f053496328 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=922dc50afa477960f755451c0046d1bb +_md5_=c219ccd10b25a95997fe6923a691f8d6 diff --git a/metadata/md5-cache/www-client/google-chrome-26.0.1386.0_alpha177362 b/metadata/md5-cache/www-client/google-chrome-26.0.1386.0_alpha177362 index 0775f074a344..12cadde80b1c 100644 --- a/metadata/md5-cache/www-client/google-chrome-26.0.1386.0_alpha177362 +++ b/metadata/md5-cache/www-client/google-chrome-26.0.1386.0_alpha177362 @@ -6,9 +6,9 @@ HOMEPAGE=http://www.google.com/chrome IUSE=+plugins +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 KEYWORDS=-* ~amd64 ~x86 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] ) virtual/udev 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:stable +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:stable RESTRICT=bindist mirror strip SLOT=unstable -SRC_URI=amd64? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_26.0.1386.0-r177362_amd64.deb ) x86? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_26.0.1386.0-r177362_i386.deb ) +SRC_URI=amd64? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_26.0.1386.0-r177362_amd64.deb mirror://gentoo/google-chrome-libudev-0.13.1-amd64.tar.xz ) x86? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_26.0.1386.0-r177362_i386.deb mirror://gentoo/google-chrome-libudev-0.13.1-x86.tar.xz ) _eclasses_=chromium 10deb47dfb7657ba0fc7814da0bad35e eutils d40dc948067bd3db1c8ebf7d51897313 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 linux-info 6923bbfed4371639315c56d17e2da90c multilib 9aa8a023e062fca0ba79362d9d0cc488 pax-utils 0ace932c4045349c7fc1af0fe7091acf toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 50e1227854e96469a19a63f053496328 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=9dbbb130ca36fbf1c4b25d8f9ee9001a +_md5_=fb872b1607e571e17966893fd316fe4f diff --git a/metadata/md5-cache/www-client/qupzilla-1.3.5-r1 b/metadata/md5-cache/www-client/qupzilla-1.3.5-r1 new file mode 100644 index 000000000000..f12bcadc86cf --- /dev/null +++ b/metadata/md5-cache/www-client/qupzilla-1.3.5-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare unpack +DEPEND=>=x11-libs/qt-core-4.7:4 >=x11-libs/qt-gui-4.7:4 >=x11-libs/qt-script-4.7:4 >=x11-libs/qt-sql-4.7:4 >=x11-libs/qt-webkit-4.7:4 dbus? ( >=x11-libs/qt-dbus-4.7:4 ) +DESCRIPTION=Qt WebKit web browser +EAPI=5 +HOMEPAGE=http://www.qupzilla.com/ +IUSE=dbus debug kde nonblockdialogs linguas_cs_CZ linguas_de_DE linguas_el_GR linguas_es_ES linguas_es_VE linguas_fa_IR linguas_fr_FR linguas_hu_HU linguas_id_ID linguas_it_IT linguas_ja_JP linguas_ka_GE linguas_nl_NL linguas_pl_PL linguas_pt_BR linguas_pt_PT linguas_ro_RO linguas_ru_RU linguas_sk_SK linguas_sr_BA linguas_sr_RS linguas_sv_SE linguas_uk_UA linguas_zh_CN linguas_zh_TW +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=>=x11-libs/qt-core-4.7:4 >=x11-libs/qt-gui-4.7:4 >=x11-libs/qt-script-4.7:4 >=x11-libs/qt-sql-4.7:4 >=x11-libs/qt-webkit-4.7:4 dbus? ( >=x11-libs/qt-dbus-4.7:4 ) +SLOT=0 +SRC_URI=mirror://github/QupZilla/qupzilla/QupZilla-1.3.5.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 l10n 33bde4fb0cfd3a21a277b66bfd837e19 multilib 9aa8a023e062fca0ba79362d9d0cc488 qt4-r2 19af9102ca9b827213997cc636e7e33c toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot d7572a392e0bd8e207deae5414f6a887 +_md5_=7d7aca109324b2319887c5ff2c96c560 diff --git a/metadata/md5-cache/x11-libs/colord-gtk-0.1.24 b/metadata/md5-cache/x11-libs/colord-gtk-0.1.24 index fbff8d6ea48c..bda3c8aa14cb 100644 --- a/metadata/md5-cache/x11-libs/colord-gtk-0.1.24 +++ b/metadata/md5-cache/x11-libs/colord-gtk-0.1.24 @@ -4,7 +4,7 @@ DESCRIPTION=GTK support library for colord EAPI=5 HOMEPAGE=http://www.freedesktop.org/software/colord/ IUSE=doc +introspection vala -KEYWORDS=~alpha amd64 arm ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd +KEYWORDS=alpha amd64 arm ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd LICENSE=LGPL-3+ RDEPEND=>=dev-libs/glib-2.28:2 >=media-libs/lcms-2.2:2= x11-libs/gdk-pixbuf:2[introspection?] x11-libs/gtk+:3[X(+),introspection?] x11-misc/colord:=[introspection?,vala?] introspection? ( >=dev-libs/gobject-introspection-0.9.8 ) !=dev-libs/glib-2.28.0:2 >=media-libs/lcms-2.2:2= >=sys-auth/polkit-0.103 gusb? ( >=dev-libs/libgusb-0.1.1 ) introspection? ( >=dev-libs/gobject-introspection-0.9.8 ) udev? ( virtual/udev:=[gudev] ) media-gfx/shared-color-profiles REQUIRED_USE=vala? ( introspection ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0/1 SRC_URI=http://www.freedesktop.org/software/colord/releases/colord-0.1.26.tar.xz _eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 eutils d40dc948067bd3db1c8ebf7d51897313 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 systemd 28706ddc21464b4ed255eee9fc70b516 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev 4f764d2b1e34e4ef12b9b0d6e680c0ee user d0a4d0735a6c0183d707ca919bd72f28 vala ad1e7234faa2244a7e10f1c864371475 -_md5_=af0b86cc3bc69c2423f620efe833752d +_md5_=2c81a0971627516ace4bccd4ff6a2a7d diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index 5ad726e79db8..d48a0ee0a7fb 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Sat, 19 Jan 2013 17:36:54 +0000 +Sun, 20 Jan 2013 17:36:56 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index d3cbabfcfa46..63bfbad351a8 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Sat Jan 19 17:36:52 UTC 2013 +Sun Jan 20 17:36:54 UTC 2013 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 192fd6e6845d..f1c2420eda1d 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Sat, 19 Jan 2013 18:00:01 +0000 +Sun, 20 Jan 2013 18:00:01 +0000 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index 91ac6d7a105b..11c2835e1dee 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1358616901 Sat Jan 19 17:35:01 2013 UTC +1358703301 Sun Jan 20 17:35:01 2013 UTC diff --git a/net-dialup/capi4k-utils/capi4k-utils-20050718-r3.ebuild b/net-dialup/capi4k-utils/capi4k-utils-20050718-r3.ebuild index 7b71df4e5691..c5934481558a 100644 --- a/net-dialup/capi4k-utils/capi4k-utils-20050718-r3.ebuild +++ b/net-dialup/capi4k-utils/capi4k-utils-20050718-r3.ebuild @@ -1,7 +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-dialup/capi4k-utils/capi4k-utils-20050718-r3.ebuild,v 1.15 2012/12/25 14:15:30 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/capi4k-utils-20050718-r3.ebuild,v 1.17 2013/01/20 13:54:12 dilfridge Exp $ +EAPI=1 inherit eutils multilib linux-info YEAR_PV="${PV:0:4}" @@ -19,14 +20,14 @@ SRC_URI="ftp://ftp.in-berlin.de/pub/capi4linux/${MY_P}.tar.gz LICENSE="GPL-2" SLOT="0" KEYWORDS="alpha amd64 ppc x86" -IUSE="fax pppd tcpd usb pcmcia" +IUSE="fax +pppd tcpd usb pcmcia" DEPEND="virtual/linux-sources virtual/os-headers >=sys-apps/sed-4" RDEPEND="usb? ( sys-apps/hotplug ) - pcmcia? ( virtual/pcmcia ) + pcmcia? ( sys-apps/pcmciautils ) dev-lang/perl" S="${WORKDIR}/${PN}" diff --git a/net-dialup/capi4k-utils/capi4k-utils-20050718-r4.ebuild b/net-dialup/capi4k-utils/capi4k-utils-20050718-r4.ebuild index 8d90968eafed..e0041022412b 100644 --- a/net-dialup/capi4k-utils/capi4k-utils-20050718-r4.ebuild +++ b/net-dialup/capi4k-utils/capi4k-utils-20050718-r4.ebuild @@ -1,6 +1,6 @@ -# 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/net-dialup/capi4k-utils/capi4k-utils-20050718-r4.ebuild,v 1.1 2010/07/21 14:03:38 sbriesen Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/capi4k-utils-20050718-r4.ebuild,v 1.2 2013/01/20 13:54:12 dilfridge Exp $ EAPI="3" @@ -22,7 +22,7 @@ SRC_URI="ftp://ftp.in-berlin.de/pub/capi4linux/${MY_P}.tar.gz LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~ppc ~x86" -IUSE="fax pppd rcapid" +IUSE="fax +pppd rcapid" DEPEND="virtual/linux-sources virtual/os-headers diff --git a/net-dialup/capi4k-utils/capi4k-utils-20050718-r5.ebuild b/net-dialup/capi4k-utils/capi4k-utils-20050718-r5.ebuild index 3277ce7cccef..3fc744f6cccd 100644 --- a/net-dialup/capi4k-utils/capi4k-utils-20050718-r5.ebuild +++ b/net-dialup/capi4k-utils/capi4k-utils-20050718-r5.ebuild @@ -1,6 +1,6 @@ -# 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/net-dialup/capi4k-utils/capi4k-utils-20050718-r5.ebuild,v 1.1 2010/09/08 23:58:29 sbriesen Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/capi4k-utils-20050718-r5.ebuild,v 1.2 2013/01/20 13:54:12 dilfridge Exp $ EAPI="3" @@ -21,7 +21,7 @@ SRC_URI="ftp://ftp.in-berlin.de/pub/capi4linux/${MY_P}.tar.gz LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~ppc ~x86" -IUSE="fax pppd rcapid" +IUSE="fax +pppd rcapid" COMMON_DEP="pppd? ( net-dialup/ppp )" diff --git a/net-firewall/shorewall-core/shorewall-core-4.5.8.2.ebuild b/net-firewall/shorewall-core/shorewall-core-4.5.8.2.ebuild index 9d3a649074d9..1f46d5c1ead2 100644 --- a/net-firewall/shorewall-core/shorewall-core-4.5.8.2.ebuild +++ b/net-firewall/shorewall-core/shorewall-core-4.5.8.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/net-firewall/shorewall-core/shorewall-core-4.5.8.2.ebuild,v 1.4 2013/01/18 12:52:38 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall-core/shorewall-core-4.5.8.2.ebuild,v 1.5 2013/01/20 10:26:19 ago Exp $ EAPI="4" @@ -18,7 +18,7 @@ SRC_URI="http://www1.shorewall.net/pub/shorewall/${MY_PV_TREE}/${MY_P}/${P}.tar. LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86" +KEYWORDS="alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86" IUSE="selinux" DEPEND=">=net-firewall/iptables-1.2.4 diff --git a/net-firewall/shorewall-lite/shorewall-lite-4.5.8.2.ebuild b/net-firewall/shorewall-lite/shorewall-lite-4.5.8.2.ebuild index 6ad1790ba93e..b5725c659622 100644 --- a/net-firewall/shorewall-lite/shorewall-lite-4.5.8.2.ebuild +++ b/net-firewall/shorewall-lite/shorewall-lite-4.5.8.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/net-firewall/shorewall-lite/shorewall-lite-4.5.8.2.ebuild,v 1.3 2013/01/18 12:52:59 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall-lite/shorewall-lite-4.5.8.2.ebuild,v 1.4 2013/01/20 10:26:57 ago Exp $ EAPI="4" @@ -21,7 +21,7 @@ SRC_URI="http://www1.shorewall.net/pub/${MY_PN}/${MY_PV_TREE}/${MY_P}/${P}.tar.b LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86" +KEYWORDS="alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86" IUSE="doc" RDEPEND="net-firewall/iptables diff --git a/net-firewall/shorewall/shorewall-4.5.8.2-r1.ebuild b/net-firewall/shorewall/shorewall-4.5.8.2-r1.ebuild index 8a84214c5966..8666b4c1b599 100644 --- a/net-firewall/shorewall/shorewall-4.5.8.2-r1.ebuild +++ b/net-firewall/shorewall/shorewall-4.5.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/net-firewall/shorewall/shorewall-4.5.8.2-r1.ebuild,v 1.3 2013/01/18 12:52:48 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/shorewall-4.5.8.2-r1.ebuild,v 1.4 2013/01/20 10:26:38 ago Exp $ EAPI="4" @@ -20,7 +20,7 @@ SRC_URI="http://www1.shorewall.net/pub/${PN}/${MY_PV_TREE}/${MY_P}/${P}.tar.bz2 LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86" +KEYWORDS="alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86" IUSE="doc" DEPEND=">=net-firewall/iptables-1.2.4 diff --git a/net-firewall/shorewall6-lite/shorewall6-lite-4.5.8.2.ebuild b/net-firewall/shorewall6-lite/shorewall6-lite-4.5.8.2.ebuild index a622941c470f..2d86b407046d 100644 --- a/net-firewall/shorewall6-lite/shorewall6-lite-4.5.8.2.ebuild +++ b/net-firewall/shorewall6-lite/shorewall6-lite-4.5.8.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/net-firewall/shorewall6-lite/shorewall6-lite-4.5.8.2.ebuild,v 1.3 2013/01/18 12:53:18 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall6-lite/shorewall6-lite-4.5.8.2.ebuild,v 1.4 2013/01/20 10:27:30 ago Exp $ EAPI="4" @@ -21,7 +21,7 @@ SRC_URI="http://www1.shorewall.net/pub/${MY_PN}/${MY_PV_TREE}/${MY_P}/${P}.tar.b LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ~sparc x86" +KEYWORDS="alpha amd64 ~hppa ~sparc x86" IUSE="doc" RDEPEND=">=net-firewall/iptables-1.4.0 diff --git a/net-firewall/shorewall6/shorewall6-4.5.8.2-r1.ebuild b/net-firewall/shorewall6/shorewall6-4.5.8.2-r1.ebuild index 0cb4cec8b4e9..8709e6926e34 100644 --- a/net-firewall/shorewall6/shorewall6-4.5.8.2-r1.ebuild +++ b/net-firewall/shorewall6/shorewall6-4.5.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/net-firewall/shorewall6/shorewall6-4.5.8.2-r1.ebuild,v 1.3 2013/01/18 12:53:10 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall6/shorewall6-4.5.8.2-r1.ebuild,v 1.4 2013/01/20 10:27:16 ago Exp $ EAPI="4" @@ -21,7 +21,7 @@ SRC_URI="http://www1.shorewall.net/pub/${MY_PN}/${MY_PV_TREE}/${MY_P}/${P}.tar.b LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86" +KEYWORDS="alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86" IUSE="doc" diff --git a/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild b/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild index 2ad612566bd9..eb14a0bb7e68 100644 --- a/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild +++ b/net-libs/courier-authlib/courier-authlib-0.65.0-r2.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-r2.ebuild,v 1.9 2013/01/16 18:55:09 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.10 2013/01/20 10:17:00 ago 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/zeromq/Manifest b/net-libs/zeromq/Manifest index c2e88c2ab2e5..1d107fa03c87 100644 --- a/net-libs/zeromq/Manifest +++ b/net-libs/zeromq/Manifest @@ -3,3 +3,4 @@ DIST zeromq-2.1.11.tar.gz 1891038 SHA256 e1cd4abbe353d3d72df42a2ee05593047915987 DIST zeromq-2.1.7.tar.gz 1877380 SHA256 2a1416d0a3ea55ae17d43417fd9bd193412cc9101e144bc8d3bd19fe36816e0d SHA512 4e8ac3529398448686d06d44693d9e3a372697576bbe3f91c89baffa42a4cde6af9d63210522a8f51e4b62f4ab151153fe504a42632dafebbaaa4576a2263fa4 WHIRLPOOL 557bab8df704e044c90ab01cce332e84d78e553d83f5e6cad27f9cf9c359608333edfb2afc3bba0a549e37d08304c6a40ff2103b29eab473a75df076059098c1 DIST zeromq-2.1.9.tar.gz 1884656 SHA256 f3542f756687e622beef3a75c8e027fe2d95d4654350cbca4c070ffc58d9ace0 DIST zeromq-2.2.0.tar.gz 1899104 SHA256 6e2f4183e5259eeb67025b00116d900491fb71581e8e085373b51c3bc9571ae1 SHA512 fb3cf421b2dc48c31956b3e3ee4ab6ebc743deec3bf626c2238a1996c8c51be87260bd6aa662793a1f0c34dcda9b3146763777bb162dfad6fec4ca7acc403b2e WHIRLPOOL b35a6f0cdcff34ec188c989354fb53ee44f22ebb8d830f904447b4fa32ddd17de157998c2733a42ff0a6c1355f0ab2e0639e7666c7e983839e1dbde2188dcef5 +DIST zeromq-3.2.2.tar.gz 2067590 SHA256 2b4eeda60fe47a9fa0804d53d76f656665c5f84dab7e63a1d496d9430b554f99 SHA512 b9d061ca49e54ea917e0aed2b2a48faef33061dbf6d17eae7f8c3fff0b35ca883e7324f6cb24bda542443f669dcd5748037a5f2309f4c359d68adef520894865 WHIRLPOOL 75260afaf678300700ce9b542d7ef2c11a730b1844d4520de9242f45adf4851220f3209d103d9b57e66e9befb767eff41846a67e92a8e0f343bc3dbc921ec355 diff --git a/net-libs/zeromq/metadata.xml b/net-libs/zeromq/metadata.xml index 329b25659036..44802a710e9f 100644 --- a/net-libs/zeromq/metadata.xml +++ b/net-libs/zeromq/metadata.xml @@ -5,6 +5,10 @@ djc@gentoo.org Dirkjan Ochtman + + qnikst@gentoo.org + Alexander Vershilov + sustrik@fastmq.com diff --git a/net-libs/zeromq/zeromq-2.1.10.ebuild b/net-libs/zeromq/zeromq-2.1.10.ebuild index 70d9bed8e93b..22af12d309a9 100644 --- a/net-libs/zeromq/zeromq-2.1.10.ebuild +++ b/net-libs/zeromq/zeromq-2.1.10.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-libs/zeromq/zeromq-2.1.10.ebuild,v 1.4 2012/05/05 02:54:24 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/zeromq/zeromq-2.1.10.ebuild,v 1.5 2013/01/20 09:51:02 qnikst Exp $ # NOTES: # 1- use flag 'pgm' (OpenPGM support) must be masked by profiles for ARM archs; diff --git a/net-libs/zeromq/zeromq-2.2.0.ebuild b/net-libs/zeromq/zeromq-2.2.0.ebuild index ba921ca0b6d8..dc70bfeb32bc 100644 --- a/net-libs/zeromq/zeromq-2.2.0.ebuild +++ b/net-libs/zeromq/zeromq-2.2.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/net-libs/zeromq/zeromq-2.2.0.ebuild,v 1.8 2012/12/17 18:30:00 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/zeromq/zeromq-2.2.0.ebuild,v 1.9 2013/01/20 09:51:02 qnikst Exp $ # NOTES: # 1- use flag 'pgm' (OpenPGM support) must be masked by profiles for ARM archs; diff --git a/net-libs/zeromq/zeromq-3.2.2.ebuild b/net-libs/zeromq/zeromq-3.2.2.ebuild new file mode 100644 index 000000000000..82f920d17269 --- /dev/null +++ b/net-libs/zeromq/zeromq-3.2.2.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/net-libs/zeromq/zeromq-3.2.2.ebuild,v 1.1 2013/01/20 09:51:02 qnikst Exp $ + +EAPI=5 + +inherit autotools + +DESCRIPTION="ZeroMQ is a brokerless kernel" +HOMEPAGE="http://www.zeromq.org/" +SRC_URI="http://download.zeromq.org/${P}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~x86 ~ppc ~ppc64 ~amd64-linux ~x86-linux" +IUSE="pgm test static-libs" + +DEPEND="sys-devel/gcc + pgm? ( + virtual/pkgconfig + =net-libs/openpgm-5.1.118 + ) + sys-apps/util-linux" +RDEPEND="" + +src_prepare() { + einfo "Removing bundled OpenPGM library" + rm -r "${S}"/foreign/openpgm/libpgm* || die + eautoreconf +} + +src_configure() { + local myconf + use pgm && myconf="--with-system-pgm" || myconf="--without-pgm" + econf \ + $(use_enable static-libs static) \ + $myconf +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc NEWS README AUTHORS ChangeLog || die "dodoc failed" + doman doc/*.[1-9] || die "doman failed" + + # remove useless .la files + find "${D}" -name '*.la' -delete + + # remove useless .a (only for non static compilation) + use static-libs || find "${D}" -name '*.a' -delete +} diff --git a/net-mail/mailbase/mailbase-1.1.ebuild b/net-mail/mailbase/mailbase-1.1.ebuild index cd03e3423d62..a937444d2756 100644 --- a/net-mail/mailbase/mailbase-1.1.ebuild +++ b/net-mail/mailbase/mailbase-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/net-mail/mailbase/mailbase-1.1.ebuild,v 1.5 2013/01/18 17:07:55 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/mailbase/mailbase-1.1.ebuild,v 1.7 2013/01/20 13:13:13 ago Exp $ inherit pam eutils user @@ -10,7 +10,7 @@ HOMEPAGE="http://www.gentoo.org/" LICENSE="GPL-2" 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="pam" RDEPEND="pam? ( virtual/pam )" diff --git a/net-mail/notmuch/Manifest b/net-mail/notmuch/Manifest index 97706aaee490..e598aefb5e33 100644 --- a/net-mail/notmuch/Manifest +++ b/net-mail/notmuch/Manifest @@ -3,3 +3,4 @@ DIST notmuch-0.11.1.tar.gz 439099 SHA256 d9896ae295fd8e5471c49b0ba39872ccfdfc348 DIST notmuch-0.12.tar.gz 464967 SHA256 1dbbbbba3567df9c67ecc642d1e63269a527952c557f6b0c8bafcd4e37893992 SHA512 e6254cdd869d4a542f06c4e483255bb76a1befc0a1778f1f1ed77cb4e382ff56d63e7cf3290e58eee7a82aa5c050735d088e95e022140b2e7ddb8c3d4a855b82 WHIRLPOOL 07895be7c9aac47657258a84f77fe9aa8d7fd0778874eefd33a956d53bbcaca239705afd6fc5927d8add1dca870e23bc9dd274f4c2f6f69e7ceeac925199a0f8 DIST notmuch-0.13.1.tar.gz 483776 SHA256 cf909876551e3345941e1ed40f5ef851f34b78fe3c93db3bf37789580035ce48 SHA512 110eb54b04c77e75ad8217aa3725802085a604c457014aa1f1b6ee0937f694de9ac36c47d225dcdcea1bb9b5f6d49ce476eafc61deb85c3435106bbc3784e406 WHIRLPOOL cebe7090a52838bcd42119ca360b4a038eb3cfe7d3854183fe71b1f98f222bc8ac16d4a8cf92a0206b5ad8a8f9f552d6cf760c42febdf9fb1755c51b8f6c2e7c DIST notmuch-0.14.tar.gz 488310 SHA256 095e191dc0f3125c4fd98440fdf55050cba01b8e9f68245ffe0190a7f39ca753 SHA512 64f277906c085cc391e9ae3283e38905d95a931b0223cc986ca213d2191aa810b5b0f3abdf5fed84f5d6c4e6baacca8ca02574e29cd13537be01ac00e2501ed0 WHIRLPOOL b924cc3a922c209c52ae18446b363b29e81e77cdde3e37c47a99647f1a66dc55daf77db57dc9c9acd0d9953a5456ba1e82014585205bcca869f9fc4d0bd99eb3 +DIST notmuch-0.15.tar.gz 559746 SHA256 1898b7d46cb4bd81d2d5167e6b3f95a7e949b7268eb3edc80ae640d7e541711d SHA512 fc6ef79c5a1b81f32aac40d39ed781e7703b5649291d400fd69f333948ff27c56a30eb1b1bec526d61ea7af1d0a240099b5e899b04e9b716137d9e523bc29c7a WHIRLPOOL ffae2db49373c065e220bc752e3799da76b3096f4b406915a351a9c3289bd30dc720d398a4de8519e3e5a7066335b970340dc56c3ba0e5bb93b4f774520d6cda diff --git a/net-mail/notmuch/files/60notmuch-pick-gentoo.el b/net-mail/notmuch/files/60notmuch-pick-gentoo.el new file mode 100644 index 000000000000..84ef4b4d2293 --- /dev/null +++ b/net-mail/notmuch/files/60notmuch-pick-gentoo.el @@ -0,0 +1 @@ +(autoload 'notmuch-pick "notmuch-pick" "Run notmuch pick with the given `query' and display the results" t) diff --git a/net-mail/notmuch/metadata.xml b/net-mail/notmuch/metadata.xml index aaa61627c031..4aa8c42e3b08 100644 --- a/net-mail/notmuch/metadata.xml +++ b/net-mail/notmuch/metadata.xml @@ -14,6 +14,8 @@ Install experimental tag sharing / pseudo-bug-tracking script for Notmuch (see http://notmuchmail.org/nmbug/) + Experimental threaded message view for the emacs + interface Install Vim UI (experimental) diff --git a/net-mail/notmuch/notmuch-0.15.ebuild b/net-mail/notmuch/notmuch-0.15.ebuild new file mode 100644 index 000000000000..59ed5159f20e --- /dev/null +++ b/net-mail/notmuch/notmuch-0.15.ebuild @@ -0,0 +1,187 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/notmuch/notmuch-0.15.ebuild,v 1.2 2013/01/20 15:39:10 aidecoe Exp $ + +EAPI=4 + +PYTHON_DEPEND="python? 2:2.6 3:3.2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="2.[45] 3.1" + +inherit elisp-common pax-utils distutils + +DESCRIPTION="Thread-based e-mail indexer, supporting quick search and tagging" +HOMEPAGE="http://notmuchmail.org/" +SRC_URI="${HOMEPAGE%/}/releases/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +REQUIRED_USE=" + pick? ( emacs ) + test? ( crypt emacs python ) + " +IUSE="bash-completion crypt debug doc emacs mutt nmbug pick python test vim + zsh-completion" + +CDEPEND=" + >=dev-libs/glib-2.22 + >=dev-libs/gmime-2.6.7 + dev-libs/xapian + sys-libs/talloc + debug? ( dev-util/valgrind ) + emacs? ( >=virtual/emacs-23 ) + x86? ( >=dev-libs/xapian-1.2.7-r2 ) + vim? ( || ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 ) ) + " +DEPEND="${CDEPEND} + virtual/pkgconfig + doc? ( python? ( dev-python/sphinx ) ) + test? ( app-misc/dtach || ( >=app-editors/emacs-23[libxml2] + >=app-editors/emacs-vcs-23[libxml2] ) sys-devel/gdb ) + " +RDEPEND="${CDEPEND} + crypt? ( app-crypt/gnupg ) + nmbug? ( dev-vcs/git virtual/perl-File-Temp virtual/perl-PodParser ) + mutt? ( dev-perl/File-Which dev-perl/Mail-Box dev-perl/MailTools + dev-perl/String-ShellQuote dev-perl/Term-ReadLine-Gnu + virtual/perl-Digest-SHA virtual/perl-File-Path virtual/perl-Getopt-Long + virtual/perl-PodParser + ) + zsh-completion? ( app-shells/zsh ) + " + +DOCS=( AUTHORS NEWS README ) +SITEFILE="50${PN}-gentoo.el" +SITEFILE_PICK="60${PN}-pick-gentoo.el" +MY_LD_LIBRARY_PATH="${WORKDIR}/${P}/lib" + +bindings() { + if use $1; then + pushd bindings/$1 || die + shift + $@ + popd || die + fi +} + +pkg_setup() { + if use emacs; then + elisp-need-emacs 23 || die "Emacs version too low" + fi + use python && python_pkg_setup +} + +src_prepare() { + default + bindings python distutils_src_prepare + + if use mutt; then + mv contrib/notmuch-mutt/README contrib/notmuch-mutt/README-mutt || die + fi + + if use pick; then + mv contrib/notmuch-pick/README contrib/notmuch-pick/README-pick || die + fi +} + +src_configure() { + local myeconfargs=( + --bashcompletiondir="${ROOT}/usr/share/bash-completion" + --emacslispdir="${ROOT}/${SITELISP}/${PN}" + --emacsetcdir="${ROOT}/${SITEETC}/${PN}" + --with-gmime-version=2.6 + --zshcompletiondir="${ROOT}/usr/share/zsh/site-functions" + $(use_with bash-completion) + $(use_with emacs) + $(use_with zsh-completion) + ) + econf "${myeconfargs[@]}" +} + +src_compile() { + default + bindings python distutils_src_compile + + if use mutt; then + pushd contrib/notmuch-mutt || die + emake notmuch-mutt.1 + popd || die + fi + + if use doc; then + pydocs() { + mv README README-python || die + pushd docs || die + emake html + mv html ../python || die + popd || die + } + LD_LIBRARY_PATH="${MY_LD_LIBRARY_PATH}" bindings python pydocs + fi +} + +src_test() { + pax-mark -m notmuch + LD_LIBRARY_PATH="${MY_LD_LIBRARY_PATH}" default + pax-mark -ze notmuch +} + +src_install() { + default + + if use emacs; then + elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die + + if use pick; then + pushd contrib/notmuch-pick || die + elisp-install "${PN}" notmuch-pick.el || die + dodoc README-pick + popd || die + elisp-site-file-install "${FILESDIR}/${SITEFILE_PICK}" || die + fi + fi + + if use nmbug; then + dobin contrib/nmbug/nmbug + fi + + if use mutt; then + [[ -e /etc/mutt/notmuch-mutt.rc ]] && NOTMUCH_MUTT_RC_EXISTS=1 + pushd contrib/notmuch-mutt || die + dobin notmuch-mutt + doman notmuch-mutt.1 + insinto /etc/mutt + doins notmuch-mutt.rc + dodoc README-mutt + popd || die + fi + + if use vim; then + insinto /usr/share/vim/vimfiles + doins -r vim/plugin vim/syntax + fi + + DOCS="" bindings python distutils_src_install + + if use doc; then + bindings python dohtml -r python + fi +} + +pkg_postinst() { + use emacs && elisp-site-regen + use python && distutils_pkg_postinst + + if use mutt && [[ ! ${NOTMUCH_MUTT_RC_EXISTS} ]]; then + elog "To enable notmuch support in mutt, add the following line into" + elog "your mutt config file, please:" + elog "" + elog " source /etc/mutt/notmuch-mutt.rc" + fi +} + +pkg_postrm() { + use emacs && elisp-site-regen + use python && distutils_pkg_postrm +} diff --git a/net-misc/mediatomb/files/mediatomb-0.12.1-avformatcontext-pointer.patch b/net-misc/mediatomb/files/mediatomb-0.12.1-avformatcontext-pointer.patch new file mode 100644 index 000000000000..ab3e7cf7e17d --- /dev/null +++ b/net-misc/mediatomb/files/mediatomb-0.12.1-avformatcontext-pointer.patch @@ -0,0 +1,19 @@ +When opening a file to check its avformat, the AVFormatContext pointer was +not initialized to NULL before it was passed by reference to the open +function. + +Patch by Bradley Broom + +https://bugs.gentoo.org/show_bug.cgi?id=446922 + +--- mediatomb-0.12.1/src/metadata/ffmpeg_handler.cc ++++ mediatomb-0.12.1/src/metadata/ffmpeg_handler.cc +@@ -281,7 +281,7 @@ + int x = 0; + int y = 0; + +- AVFormatContext *pFormatCtx; ++ AVFormatContext *pFormatCtx = NULL; + + // Suppress all log messages + av_log_set_callback(FfmpegNoOutputStub); diff --git a/net-misc/mediatomb/mediatomb-0.12.1-r4.ebuild b/net-misc/mediatomb/mediatomb-0.12.1-r5.ebuild similarity index 96% rename from net-misc/mediatomb/mediatomb-0.12.1-r4.ebuild rename to net-misc/mediatomb/mediatomb-0.12.1-r5.ebuild index 8dac38434756..33c8b3ee41fd 100644 --- a/net-misc/mediatomb/mediatomb-0.12.1-r4.ebuild +++ b/net-misc/mediatomb/mediatomb-0.12.1-r5.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-misc/mediatomb/mediatomb-0.12.1-r4.ebuild,v 1.2 2012/11/25 15:16:05 lu_zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/mediatomb/mediatomb-0.12.1-r5.ebuild,v 1.1 2013/01/20 16:28:11 thev00d00 Exp $ EAPI="4" inherit autotools eutils linux-info user @@ -67,6 +67,7 @@ src_prepare() { epatch "${FILESDIR}"/${P}-thumb-cache.patch epatch "${FILESDIR}"/${P}-libav9.patch epatch "${FILESDIR}"/${P}-no-thumbnail.patch + epatch "${FILESDIR}"/${P}-avformatcontext-pointer.patch #446922 eautoreconf } diff --git a/net-misc/wicd/wicd-1.7.2.4-r2.ebuild b/net-misc/wicd/wicd-1.7.2.4-r2.ebuild index b2f33764e27e..3c87e55aab1c 100644 --- a/net-misc/wicd/wicd-1.7.2.4-r2.ebuild +++ b/net-misc/wicd/wicd-1.7.2.4-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-misc/wicd/wicd-1.7.2.4-r2.ebuild,v 1.6 2013/01/16 20:05:44 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/wicd-1.7.2.4-r2.ebuild,v 1.7 2013/01/20 09:39:18 ago Exp $ EAPI=3 @@ -20,7 +20,7 @@ SRC_URI="http://launchpad.net/wicd/1.7/${PV}/+download/${P}.tar.gz LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~arm ~mips ppc ppc64 ~x86" +KEYWORDS="amd64 ~arm ~mips ppc ppc64 x86" IUSE="X ambiance +gtk ioctl libnotify mac4lin ncurses nls +pm-utils" DEPEND="nls? ( dev-python/Babel )" diff --git a/net-news/yydecode/yydecode-0.2.10-r1.ebuild b/net-news/yydecode/yydecode-0.2.10-r1.ebuild new file mode 100644 index 000000000000..0a60b391f783 --- /dev/null +++ b/net-news/yydecode/yydecode-0.2.10-r1.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-news/yydecode/yydecode-0.2.10-r1.ebuild,v 1.1 2013/01/20 14:14:40 kensington Exp $ + +EAPI=5 + +DESCRIPTION="A decoder for yENC format, popular on Usenet" +HOMEPAGE="http://yydecode.sourceforge.net/" +SRC_URI="mirror://sourceforge/yydecode/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ppc ~sparc ~x86" +IUSE="" + +src_prepare() { + sed -e "s/t3.sh//" -e "s/t7.sh//" -i checks/Makefile.in || die +} diff --git a/net-news/yydecode/yydecode-0.2.10.ebuild b/net-news/yydecode/yydecode-0.2.10.ebuild index 8a940a22f3a6..0d789fa48736 100644 --- a/net-news/yydecode/yydecode-0.2.10.ebuild +++ b/net-news/yydecode/yydecode-0.2.10.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-news/yydecode/yydecode-0.2.10.ebuild,v 1.7 2006/10/04 12:32:49 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-news/yydecode/yydecode-0.2.10.ebuild,v 1.8 2013/01/20 14:14:40 kensington Exp $ DESCRIPTION="A decoder for yENC format, popular on Usenet" HOMEPAGE="http://yydecode.sourceforge.net/" @@ -11,6 +11,8 @@ SLOT="0" KEYWORDS="alpha amd64 arm ~ppc ~sparc x86" IUSE="" +RESTRICT="test" + src_install() { make install DESTDIR="${D}" || die "make install failed" dodoc AUTHORS ChangeLog NEWS README diff --git a/net-nntp/newspost/Manifest b/net-nntp/newspost/Manifest index cabfbb77dffa..b61217691003 100644 --- a/net-nntp/newspost/Manifest +++ b/net-nntp/newspost/Manifest @@ -1 +1 @@ -DIST newspost-2.1.1.tar.gz 61412 RMD160 a954f727e3ba5b3dcf845b8158b2752d76dbac2a SHA1 244f31c6e5aa8e41224310295e477ab4a8a17071 SHA256 bdd1ae83d7459d2cdd726115c028405fce33f9b60e71b88969f82fbc02672be7 +DIST newspost-2.1.1.tar.gz 61412 SHA256 bdd1ae83d7459d2cdd726115c028405fce33f9b60e71b88969f82fbc02672be7 SHA512 d7f5b583ef5619a65e87f2ce2edbad307d60da7f29e5c6bef8eaa7c757f97f82f08654409a75ea7b28e5575fd267af57cbc170f467f6737f701bfbd6bd4b2f66 WHIRLPOOL 7ab7e3a39b300ab262293be4933105b2796d85ae8af919a22adf164754bcc598abe9c75974aa99670e3037d211189b78385771128c2d4b871700f52f7bba9ad8 diff --git a/net-nntp/newspost/newspost-2.1.1-r3.ebuild b/net-nntp/newspost/newspost-2.1.1-r3.ebuild new file mode 100644 index 000000000000..09d95ab06135 --- /dev/null +++ b/net-nntp/newspost/newspost-2.1.1-r3.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/net-nntp/newspost/newspost-2.1.1-r3.ebuild,v 1.1 2013/01/20 13:25:15 kensington Exp $ + +EAPI=5 + +inherit eutils toolchain-funcs + +DESCRIPTION="A usenet binary autoposter for unix" +HOMEPAGE="http://newspost.unixcab.org/" +SRC_URI="http://newspost.unixcab.org/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="" + +src_prepare() { + # Should fix some problems with unexpected server replies, cf. bug 185468 + epatch "${FILESDIR}"/${P}-nntp.patch + epatch "${FILESDIR}"/CAN-2005-0101.patch + epatch "${FILESDIR}"/${P}-glibc-2.10.patch + + sed -e "/-strip newspost/d" -i Makefile || die +} + +src_compile() { + emake CC="$(tc-getCC)" LIBS="${LDFLAGS}" main +} + +src_install () { + dobin newspost + doman man/man1/newspost.1 + dodoc CHANGES README +} diff --git a/net-wireless/atmel-firmware/atmel-firmware-1.3-r1.ebuild b/net-wireless/atmel-firmware/atmel-firmware-1.3-r1.ebuild index 63f5febaa9b1..c38093499746 100644 --- a/net-wireless/atmel-firmware/atmel-firmware-1.3-r1.ebuild +++ b/net-wireless/atmel-firmware/atmel-firmware-1.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/net-wireless/atmel-firmware/atmel-firmware-1.3-r1.ebuild,v 1.1 2013/01/01 14:42:31 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-wireless/atmel-firmware/atmel-firmware-1.3-r1.ebuild,v 1.2 2013/01/19 21:46:30 ssuominen Exp $ EAPI=5 inherit toolchain-funcs @@ -17,7 +17,7 @@ IUSE="pcmcia usb" RDEPEND="|| ( virtual/udev >=sys-apps/hotplug-20040923 ) !=net-wireless/wireless-tools-26-r1 - pcmcia? ( virtual/pcmcia )" + pcmcia? ( sys-apps/pcmciautils )" src_compile() { tc-export CC diff --git a/net-wireless/atmel-firmware/atmel-firmware-1.3.ebuild b/net-wireless/atmel-firmware/atmel-firmware-1.3.ebuild deleted file mode 100644 index 39250a3eb653..000000000000 --- a/net-wireless/atmel-firmware/atmel-firmware-1.3.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/atmel-firmware/atmel-firmware-1.3.ebuild,v 1.6 2012/12/11 17:14:04 axs Exp $ - -inherit toolchain-funcs - -DESCRIPTION="Firmware and config for atmel and atmel_cs wlan drivers included in linux 2.6" -HOMEPAGE="http://www.thekelleys.org.uk/atmel/" -SRC_URI="http://www.thekelleys.org.uk/atmel/${P}.tar.gz" - -LICENSE="Atmel" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="pcmcia usb" - -RDEPEND="|| ( virtual/udev >=sys-apps/hotplug-20040923 ) - !=net-wireless/wireless-tools-26-r1 - pcmcia? ( virtual/pcmcia )" - -src_compile() { - tc-export CC - emake atmel_fwl || die -} - -src_install() { - insinto /lib/firmware - doins images/*.bin || die - if use usb; then - doins images.usb/*.bin || die - fi - - if use pcmcia; then - insinto /etc/pcmcia - doins atmel.conf || die - fi - - dosbin atmel_fwl atmel_fwl.pl || die - doman atmel_fwl.8 - dodoc README VERSION -} - -pkg_postinst() { - if use pcmcia && [ -f /var/run/cardmgr.pid ]; then - kill -HUP `cat /var/run/cardmgr.pid` - fi -} - -pkg_postrm() { - if use pcmcia && [ -f /var/run/cardmgr.pid ]; then - kill -HUP `cat /var/run/cardmgr.pid` - fi -} diff --git a/net-wireless/bluez/bluez-4.101-r5.ebuild b/net-wireless/bluez/bluez-4.101-r5.ebuild index 439e17e9e7ec..a8125bedd92b 100644 --- a/net-wireless/bluez/bluez-4.101-r5.ebuild +++ b/net-wireless/bluez/bluez-4.101-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/net-wireless/bluez/bluez-4.101-r5.ebuild,v 1.2 2013/01/18 16:27:57 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-wireless/bluez/bluez-4.101-r5.ebuild,v 1.3 2013/01/20 13:11:26 ago Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7} ) @@ -12,7 +12,7 @@ SRC_URI="mirror://kernel/linux/bluetooth/${P}.tar.xz" LICENSE="GPL-2 LGPL-2.1" SLOT="0" -KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" +KEYWORDS="amd64 arm ~hppa ~ppc ~ppc64 ~x86" IUSE="alsa +consolekit cups debug gstreamer pcmcia readline selinux test-programs usb" CDEPEND=">=dev-libs/glib-2.28:2 diff --git a/net-wireless/ndiswrapper/ndiswrapper-1.58_rc1.ebuild b/net-wireless/ndiswrapper/ndiswrapper-1.58_rc1.ebuild index f970f4c1ee9e..fcad83a47cbf 100644 --- a/net-wireless/ndiswrapper/ndiswrapper-1.58_rc1.ebuild +++ b/net-wireless/ndiswrapper/ndiswrapper-1.58_rc1.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-wireless/ndiswrapper/ndiswrapper-1.58_rc1.ebuild,v 1.2 2012/05/22 15:54:54 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-wireless/ndiswrapper/ndiswrapper-1.58_rc1.ebuild,v 1.3 2013/01/19 21:21:08 angelos Exp $ EAPI=4 inherit base linux-mod toolchain-funcs @@ -33,12 +33,19 @@ pkg_pretend() { linux-mod_pkg_setup } +src_prepare() { + base_src_prepare + + # Linux 3.7 fix by Philip Müller + sed -i "s|/include/linux/version.h|/include/generated/uapi/linux/version.h|g" driver/Makefile +} + src_compile() { - local params + local params="WRAP_WQ=1" # Enable verbose debugging information if use debug; then - params="DEBUG=3" + params="${params} DEBUG=3" use usb && params="${params} USB_DEBUG=1" fi diff --git a/perl-core/Filter/Filter-1.450.0.ebuild b/perl-core/Filter/Filter-1.450.0.ebuild new file mode 100644 index 000000000000..424e5d10e9a9 --- /dev/null +++ b/perl-core/Filter/Filter-1.450.0.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/perl-core/Filter/Filter-1.450.0.ebuild,v 1.1 2013/01/20 11:25:18 tove Exp $ + +EAPI=5 + +MODULE_AUTHOR=RURBAN +MODULE_VERSION=1.45 +inherit perl-module + +DESCRIPTION="Interface for creation of Perl Filters" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="" + +SRC_TEST=do diff --git a/perl-core/Filter/Manifest b/perl-core/Filter/Manifest index f1f2807d0b08..02157bfd1e33 100644 --- a/perl-core/Filter/Manifest +++ b/perl-core/Filter/Manifest @@ -1,4 +1,5 @@ -DIST Filter-1.37.tar.gz 81056 RMD160 962ec0545f962993e1029732514ad4399f7c2a04 SHA1 5e3f6eede7af5a46f0bfee9384d25e3260d750d8 SHA256 bcc08b554db9e9d904ba573a381858f7beee4f46ca228741c14935fe6718df4c -DIST Filter-1.38.tar.gz 81006 RMD160 ce9cee3d434ec1a69b0fddfe558b59958ad9bb56 SHA1 d4f95c8871e4b25e31290048cde5c720062f8fd5 SHA256 349af81c672e1af8f5478a130b2b2ecadb4041972e7b5f50ca65b0ed2aa023fa -DIST Filter-1.39.tar.gz 80994 RMD160 e433af4fd6959abf4ace298297aeb8b50e6edf1b SHA1 fdc79f536b3642a00d8905af6cfe02fbaae3ae99 SHA256 bbcc2d7af3717de6fd94b8e644485ed48cd1f07fb7b6bace25264a854d8d1a0e -DIST Filter-1.41.tar.gz 83198 RMD160 803909ec312a8525d72d83ac0cb4ed1284216540 SHA1 7f57eeeb9e0570821ebd5e33d6bd3727c7c9793f SHA256 99b226994ce9e6e8718d91355433a9e1b9e99298e90dc5829db2a9c446570dc1 +DIST Filter-1.37.tar.gz 81056 SHA256 bcc08b554db9e9d904ba573a381858f7beee4f46ca228741c14935fe6718df4c SHA512 a46f770d1e3962b4f284cab0de3740411cbe56641340470f2352c5ae82033cb90e00645ac91c4e0b385c1587ec54f81ba1d176256c43d18ff7626320daf0b01e WHIRLPOOL 5d7933f33e6cbacacdca59c6eae807818f53ac8f808aa4eff42b87d6b4db8a67fe45eed573dbdfd7c7086242a7620f9b23f1454de079493b888019d26ac898fc +DIST Filter-1.38.tar.gz 81006 SHA256 349af81c672e1af8f5478a130b2b2ecadb4041972e7b5f50ca65b0ed2aa023fa +DIST Filter-1.39.tar.gz 80994 SHA256 bbcc2d7af3717de6fd94b8e644485ed48cd1f07fb7b6bace25264a854d8d1a0e +DIST Filter-1.41.tar.gz 83198 SHA256 99b226994ce9e6e8718d91355433a9e1b9e99298e90dc5829db2a9c446570dc1 SHA512 f676a21fa1269ba227cd407dcc5cd85e7f8ef6fcbc9993128e896217aea380d9fc3b6b6339a6deaae59b5bcc8c03ef764b0c5be4bf87c24e4b7386d04f2dc8ea WHIRLPOOL ed514a3e127c96d937518e2ae2aff3de8c803c24bcc86428775c8aa3916ed6429b9d07378aba3e486685ff1717c1162130b7bf31819611f40ae487dc144c2cb4 +DIST Filter-1.45.tar.gz 83810 SHA256 a551354bb11c3a96d20a14576bb11df27475e75aebe01f3c0ef1fa34aeec744c SHA512 010e8969a8e46a51d5b7de35d4be9677ddfee77eb6478a08711ae9eec06b30e9a7b0ef937682442f0be00a6d7c0cb9d3995fcbdce88fe6ad1e6bc639b008a1bc WHIRLPOOL eb7a862a1fdff7348f57811d626c1b99646371b33a34eaa3a9a66a1b5921e412f951adda6a28e213b4164e16b35213fbfbd34e6649f3010f2ed32c6c6ef4c21e diff --git a/perl-core/Module-Load-Conditional/Manifest b/perl-core/Module-Load-Conditional/Manifest index 7bcc2bc0c8a3..5a6d5f30f3b1 100644 --- a/perl-core/Module-Load-Conditional/Manifest +++ b/perl-core/Module-Load-Conditional/Manifest @@ -4,3 +4,4 @@ DIST Module-Load-Conditional-0.46.tar.gz 13935 SHA256 82f79c144654a9e3c0858481cc DIST Module-Load-Conditional-0.48.tar.gz 13912 SHA256 3492fdb930aa386be52dd0cbd0dbf55221a81d2219d7d2f25026e9826684bf28 DIST Module-Load-Conditional-0.50.tar.gz 13962 SHA256 847cb773499e8f5ca509c86b742f7e144d23b09098b3bb3d2a60d78998444981 SHA512 78496c10916229c1788f71ef515300956ec1cb1837f6aa6b18922b9c1f9eff9836666d511fc9a02a557ba46f4a1aaf70a3dd7fccc7eb429d17dea22a3e710fc3 WHIRLPOOL 5e42d0d55195fcb867648f721014353882396620fd3321b69af576fd37ef58784a1b93d1c9ec007d09914d1cbf8b2d92b035e0c9f552024edbe130d75e884937 DIST Module-Load-Conditional-0.52.tar.gz 12343 SHA256 45fbd24386e130269a9360d29647bf887866ed1d448126243c71bd0aedff7f14 SHA512 2405fc4dd54affddbcdaf77788ccb3bcdd0b98d4de8994bc348759f9e96b54f6ad82b6ba9a8fdaaabf2f03a8a2422b03ff2c4a2c6b109d4dd41ee24ed39a0c2b WHIRLPOOL b427171d8a96b971bd954fb319afb005ac59711578530352b5a9bfff6e0c59fd938aef7e3157443618ed5c78fb2904551c7d307eaf0e764502b94891abdbe79e +DIST Module-Load-Conditional-0.54.tar.gz 12381 SHA256 1b99c78a074b732dfd5f7e627102ef4789695e370da671e4c614754aa8ed5b8f SHA512 52298f34afd9bcc1ac748ccc2fcbc2d06b811e1bfc14d56508842703784b08a372d4b742041dc70689a80c2baad4a0a92bdb95ba7e5ab626c9e7c827f0bfc780 WHIRLPOOL b9e316b5df6370597ea443cc7482b9719a3e373b1b896d04941286cbd3f17951bfac59654c8c46ae1db5ffb833b853fea83e50b17a99f88e45cf5a2229403162 diff --git a/perl-core/Module-Load-Conditional/Module-Load-Conditional-0.540.0.ebuild b/perl-core/Module-Load-Conditional/Module-Load-Conditional-0.540.0.ebuild new file mode 100644 index 000000000000..f501206207d7 --- /dev/null +++ b/perl-core/Module-Load-Conditional/Module-Load-Conditional-0.540.0.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/perl-core/Module-Load-Conditional/Module-Load-Conditional-0.540.0.ebuild,v 1.1 2013/01/20 11:21:26 tove Exp $ + +EAPI=5 + +MODULE_AUTHOR=BINGOS +MODULE_VERSION=0.54 +inherit perl-module + +DESCRIPTION="Looking up module information / loading at runtime" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="" + +RDEPEND=" + >=virtual/perl-Module-Load-0.12 + >=virtual/perl-Module-CoreList-0.22 + >=virtual/perl-Module-Metadata-1.0.5 + virtual/perl-Locale-Maketext-Simple + virtual/perl-Params-Check + virtual/perl-version +" +DEPEND="${RDEPEND}" + +SRC_TEST=do diff --git a/profiles/arch/alpha/use.mask b/profiles/arch/alpha/use.mask index 0e2cced83ae0..5c2cee124116 100644 --- a/profiles/arch/alpha/use.mask +++ b/profiles/arch/alpha/use.mask @@ -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/arch/alpha/use.mask,v 1.78 2013/01/18 14:14:27 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/use.mask,v 1.81 2013/01/20 16:53:23 ago Exp $ # Unmask the flag which corresponds to ARCH. -alpha @@ -90,11 +90,6 @@ gts # Other -# Alexandre Rostovtsev (28 Oct 2011) -# x11-misc/colord and app-admin/packagekit-base not tested. Bug #387959. -colord -packagekit - # Raúl Porcel (23 Apr 2011) # Needs to be tested video_cards_nouveau @@ -209,15 +204,6 @@ entropy # net-libs/libsocialweb is not keyworded socialweb -# Michał Górny (31 Oct 2012) -# Mask PYTHON_TARGETS for implementations not keyworded on this arch. -python_targets_pypy1_8 -python_targets_pypy1_9 -python_targets_jython2_5 -python_single_target_pypy1_8 -python_single_target_pypy1_9 -python_single_target_jython2_5 - # Alexandre Rostovtsev (31 Dec 2012) # media-libs/xine-lib is not keyworded xine @@ -228,3 +214,4 @@ cman clvm -zeitgeist +template_haskell diff --git a/profiles/arch/amd64-fbsd/use.mask b/profiles/arch/amd64-fbsd/use.mask index 587bcd20f11f..2947e4a9af71 100644 --- a/profiles/arch/amd64-fbsd/use.mask +++ b/profiles/arch/amd64-fbsd/use.mask @@ -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/profiles/arch/amd64-fbsd/use.mask,v 1.12 2012/12/09 08:02:53 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/arch/amd64-fbsd/use.mask,v 1.13 2013/01/20 10:51:20 mgorny Exp $ # Unmask the flag which corresponds to ARCH. -amd64-fbsd @@ -42,16 +42,10 @@ python_targets_python2_4 python_targets_python2_5 python_targets_python2_6 python_targets_python3_1 -python_targets_pypy1_8 -python_targets_pypy1_9 -python_targets_jython2_5 python_single_target_python2_4 python_single_target_python2_5 python_single_target_python2_6 python_single_target_python3_1 -python_single_target_pypy1_8 -python_single_target_pypy1_9 -python_single_target_jython2_5 # Diego Elio Pettenò (21 Aug 2012) # IPMI is only implemented for x86, amd64 and ia64 diff --git a/profiles/arch/amd64/use.mask b/profiles/arch/amd64/use.mask index 69fe452552bf..123bdfceb0b7 100644 --- a/profiles/arch/amd64/use.mask +++ b/profiles/arch/amd64/use.mask @@ -1,19 +1,12 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/arch/amd64/use.mask,v 1.40 2013/01/02 15:36:55 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/arch/amd64/use.mask,v 1.42 2013/01/20 14:18:53 graaff Exp $ # Unmask the flag which corresponds to ARCH. -amd64 # SECTION: Unmask -# Mike Gilbert (02 Jan 2013) -# PyPy is keyworded for this arch. --python_targets_pypy1_9 --python_targets_pypy2_0 --python_single_target_pypy1_9 --python_single_target_pypy2_0 - # Alexandre Rostovtsev (09 Dec 2012) # Orc optimisations work fine on amd64 and x86 -orc @@ -56,7 +49,7 @@ # 2010/05/03 - Alex Legler # Add support for Ruby Enterprise Edition targets where rubyee is available --ruby_targets_ree18 +# -ruby_targets_ree18 # 2010/01/08 - Diego E. Pettenò # Add support for JRuby targets where jruby is available diff --git a/profiles/arch/arm/use.mask b/profiles/arch/arm/use.mask index 3ac0de234fdd..5715e109c7b5 100644 --- a/profiles/arch/arm/use.mask +++ b/profiles/arch/arm/use.mask @@ -229,15 +229,6 @@ d3d # mask wayland since dev-libs/wayland isn't keyworded wayland -# Michał Górny (31 Oct 2012) -# Mask PYTHON_TARGETS for implementations not keyworded on this arch. -python_targets_pypy1_8 -python_targets_pypy1_9 -python_targets_jython2_5 -python_single_target_pypy1_8 -python_single_target_pypy1_9 -python_single_target_jython2_5 - # fdk-aac is already keyworded here -fdk diff --git a/profiles/arch/ia64/use.mask b/profiles/arch/ia64/use.mask index 4f2f5e25e040..952e6488251e 100644 --- a/profiles/arch/ia64/use.mask +++ b/profiles/arch/ia64/use.mask @@ -225,15 +225,6 @@ wayland # media-sound/fluidsynth isn't keyworded fluidsynth -# Michał Górny (31 Oct 2012) -# Mask PYTHON_TARGETS for implementations not keyworded on this arch. -python_targets_pypy1_8 -python_targets_pypy1_9 -python_targets_jython2_5 -python_single_target_pypy1_8 -python_single_target_pypy1_9 -python_single_target_jython2_5 - # Alexandre Rostovtsev (31 Dec 2012) # net-misc/connman is not keyworded, bug 348308 connman diff --git a/profiles/arch/m68k/use.mask b/profiles/arch/m68k/use.mask index 9113e4de7b6b..f250f61a2980 100644 --- a/profiles/arch/m68k/use.mask +++ b/profiles/arch/m68k/use.mask @@ -82,15 +82,6 @@ pango avahi zeroconf -# Michał Górny (31 Oct 2012) -# Mask PYTHON_TARGETS for implementations not keyworded on this arch. -python_targets_pypy1_8 -python_targets_pypy1_9 -python_targets_jython2_5 -python_single_target_pypy1_8 -python_single_target_pypy1_9 -python_single_target_jython2_5 - # Samuli Suominen (18 Jan 2013) # libdlm and cman are not keyworded cman diff --git a/profiles/arch/mips/use.mask b/profiles/arch/mips/use.mask index ffe74dd62b4a..72d4b204c4b6 100644 --- a/profiles/arch/mips/use.mask +++ b/profiles/arch/mips/use.mask @@ -1,4 +1,4 @@ -# $Header: /var/cvsroot/gentoo-x86/profiles/arch/mips/use.mask,v 1.60 2013/01/18 14:23:28 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/arch/mips/use.mask,v 1.61 2013/01/20 10:51:21 mgorny Exp $ # Unmask the flag which corresponds to ARCH. -mips @@ -373,15 +373,6 @@ fluidsynth -ip30 -fixed-point -# Michał Górny (31 Oct 2012) -# Mask PYTHON_TARGETS for implementations not keyworded on this arch. -python_targets_pypy1_8 -python_targets_pypy1_9 -python_targets_jython2_5 -python_single_target_pypy1_8 -python_single_target_pypy1_9 -python_single_target_jython2_5 - # Samuli Suominen (18 Jan 2013) # libdlm and cman are not keyworded cman diff --git a/profiles/arch/powerpc/use.mask b/profiles/arch/powerpc/use.mask index 6144d6956549..57d300398c2c 100644 --- a/profiles/arch/powerpc/use.mask +++ b/profiles/arch/powerpc/use.mask @@ -199,15 +199,6 @@ systemd # Masked because nvidia-texture-tools is not (tested) for PowerPC nvtt -# Michał Górny (31 Oct 2012) -# Mask PYTHON_TARGETS for implementations not keyworded on this arch. -python_targets_pypy1_8 -python_targets_pypy1_9 -python_targets_jython2_5 -python_single_target_pypy1_8 -python_single_target_pypy1_9 -python_single_target_jython2_5 - # fdk-aac is already keyworded here -fdk diff --git a/profiles/arch/s390/use.mask b/profiles/arch/s390/use.mask index c8d1d0fd4d08..90848ed1b783 100644 --- a/profiles/arch/s390/use.mask +++ b/profiles/arch/s390/use.mask @@ -105,15 +105,6 @@ wxwidgets # Robin H. Johnson audit -# Michał Górny (31 Oct 2012) -# Mask PYTHON_TARGETS for implementations not keyworded on this arch. -python_targets_pypy1_8 -python_targets_pypy1_9 -python_targets_jython2_5 -python_single_target_pypy1_8 -python_single_target_pypy1_9 -python_single_target_jython2_5 - # Samuli Suominen (18 Jan 2013) # libdlm and cman are not keyworded cman diff --git a/profiles/arch/sh/use.mask b/profiles/arch/sh/use.mask index 97306cf37388..cf63132a26b4 100644 --- a/profiles/arch/sh/use.mask +++ b/profiles/arch/sh/use.mask @@ -168,15 +168,6 @@ d3d # mask wayland since dev-libs/wayland isn't keyworded wayland -# Michał Górny (31 Oct 2012) -# Mask PYTHON_TARGETS for implementations not keyworded on this arch. -python_targets_pypy1_8 -python_targets_pypy1_9 -python_targets_jython2_5 -python_single_target_pypy1_8 -python_single_target_pypy1_9 -python_single_target_jython2_5 - # Samuli Suominen (18 Jan 2013) # libdlm and cman are not keyworded cman diff --git a/profiles/arch/sparc-fbsd/use.mask b/profiles/arch/sparc-fbsd/use.mask index 997c0319671f..292e9d79a0a9 100644 --- a/profiles/arch/sparc-fbsd/use.mask +++ b/profiles/arch/sparc-fbsd/use.mask @@ -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/profiles/arch/sparc-fbsd/use.mask,v 1.8 2012/11/24 21:38:13 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc-fbsd/use.mask,v 1.9 2013/01/20 10:51:21 mgorny Exp $ # Unmask the flag which corresponds to ARCH. -sparc-fbsd @@ -32,12 +32,3 @@ X # Ryan Hill # Needs sci-mathematics/glpk lpsol - -# Michał Górny (31 Oct 2012) -# Mask PYTHON_TARGETS for implementations not keyworded on this arch. -python_targets_pypy1_8 -python_targets_pypy1_9 -python_targets_jython2_5 -python_single_target_pypy1_8 -python_single_target_pypy1_9 -python_single_target_jython2_5 diff --git a/profiles/arch/sparc/use.mask b/profiles/arch/sparc/use.mask index a57781bd5f42..56e2e93f8fc4 100644 --- a/profiles/arch/sparc/use.mask +++ b/profiles/arch/sparc/use.mask @@ -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/arch/sparc/use.mask,v 1.104 2013/01/18 14:22:48 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/use.mask,v 1.105 2013/01/20 10:51:21 mgorny Exp $ # Unmask the flag which corresponds to ARCH. -sparc @@ -318,15 +318,6 @@ d3d # mask wayland since dev-libs/wayland isn't keyworded wayland -# Michał Górny (31 Oct 2012) -# Mask PYTHON_TARGETS for implementations not keyworded on this arch. -python_targets_pypy1_8 -python_targets_pypy1_9 -python_targets_jython2_5 -python_single_target_pypy1_8 -python_single_target_pypy1_9 -python_single_target_jython2_5 - # Samuli Suominen (18 Jan 2013) # libdlm and cman are not keyworded cman diff --git a/profiles/arch/x86-fbsd/use.mask b/profiles/arch/x86-fbsd/use.mask index 3bcde4be725b..786698474c9b 100644 --- a/profiles/arch/x86-fbsd/use.mask +++ b/profiles/arch/x86-fbsd/use.mask @@ -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/profiles/arch/x86-fbsd/use.mask,v 1.10 2012/12/05 10:35:57 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/arch/x86-fbsd/use.mask,v 1.11 2013/01/20 10:51:22 mgorny Exp $ # Unmask the flag which corresponds to ARCH. -x86-fbsd @@ -44,12 +44,3 @@ valgrind # libva doesnt build on fbsd for now vaapi - -# Michał Górny (05 Dec 2012) -# Mask PYTHON_TARGETS for implementations not keyworded on this arch. -python_targets_pypy1_8 -python_targets_pypy1_9 -python_targets_jython2_5 -python_single_target_pypy1_8 -python_single_target_pypy1_9 -python_single_target_jython2_5 diff --git a/profiles/arch/x86/use.mask b/profiles/arch/x86/use.mask index 13b587ee4761..807e507b5e78 100644 --- a/profiles/arch/x86/use.mask +++ b/profiles/arch/x86/use.mask @@ -1,17 +1,10 @@ # Copyright 1999-2013 Gentoo Foundation. # Distributed under the terms of the GNU General Public License, v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/arch/x86/use.mask,v 1.40 2013/01/18 14:18:29 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/arch/x86/use.mask,v 1.42 2013/01/20 14:18:53 graaff Exp $ # Unmask the flag which corresponds to ARCH. -x86 -# Mike Gilbert (02 Jan 2013) -# PyPy is keyworded for this arch. --python_targets_pypy1_9 --python_targets_pypy2_0 --python_single_target_pypy1_9 --python_single_target_pypy2_0 - # Alexandre Rostovtsev (09 Dec 2012) # Orc optimisations work fine on amd64 and x86 -orc @@ -66,7 +59,7 @@ ipmi # 2010/05/03 - Alex Legler # Add support for Ruby Enterprise Edition targets where rubyee is available --ruby_targets_ree18 +# -ruby_targets_ree18 # 2010/01/08 - Diego E. Pettenò # Add support for JRuby targets where jruby is available diff --git a/profiles/base/use.mask b/profiles/base/use.mask index 361a8f0addc4..811fa3bafeb8 100644 --- a/profiles/base/use.mask +++ b/profiles/base/use.mask @@ -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/use.mask,v 1.153 2013/01/02 04:55:15 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/base/use.mask,v 1.154 2013/01/20 11:05:49 mgorny Exp $ # not ready for primetime packagekit @@ -315,7 +315,8 @@ fdk orc # Mike Gilbert (02 Jan 2013) -# PyPy is unkeyworded on most arches. +# PyPy is unkeyworded on most arches. If you are running amd64 or x86, +# please switch to one of the testing 13.0 profiles to get it. python_targets_pypy1_8 python_targets_pypy1_9 python_targets_pypy2_0 diff --git a/profiles/default/linux/amd64/13.0/eapi b/profiles/default/linux/amd64/13.0/eapi index 0cfbf08886fc..7ed6ff82de6b 100644 --- a/profiles/default/linux/amd64/13.0/eapi +++ b/profiles/default/linux/amd64/13.0/eapi @@ -1 +1 @@ -2 +5 diff --git a/profiles/default/linux/amd64/13.0/use.mask b/profiles/default/linux/amd64/13.0/use.mask new file mode 100644 index 000000000000..99e406826109 --- /dev/null +++ b/profiles/default/linux/amd64/13.0/use.mask @@ -0,0 +1,10 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/profiles/default/linux/amd64/13.0/use.mask,v 1.1 2013/01/20 11:06:26 mgorny Exp $ + +# Michał Górny (19 Jan 2013) +# PyPy is keyworded on this arch. +-python_targets_pypy1_9 +-python_targets_pypy2_0 +-python_single_target_pypy1_9 +-python_single_target_pypy2_0 diff --git a/profiles/default/linux/amd64/13.0/use.stable.mask b/profiles/default/linux/amd64/13.0/use.stable.mask new file mode 100644 index 000000000000..2f8e4ce8f61c --- /dev/null +++ b/profiles/default/linux/amd64/13.0/use.stable.mask @@ -0,0 +1,10 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/profiles/default/linux/amd64/13.0/use.stable.mask,v 1.1 2013/01/20 11:06:26 mgorny Exp $ + +# Michał Górny (19 Jan 2013) +# PyPy is unstable on this arch. +python_targets_pypy1_9 +python_targets_pypy2_0 +python_single_target_pypy1_9 +python_single_target_pypy2_0 diff --git a/profiles/default/linux/make.defaults b/profiles/default/linux/make.defaults index c7c6b97c9c58..b658f7320b33 100644 --- a/profiles/default/linux/make.defaults +++ b/profiles/default/linux/make.defaults @@ -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/profiles/default/linux/make.defaults,v 1.16 2012/07/27 20:23:42 chithanh Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/default/linux/make.defaults,v 1.18 2013/01/20 13:55:43 dilfridge Exp $ # # System-wide defaults for the Portage system # See portage(5) manpage @@ -23,14 +23,6 @@ USE="${USE} mudflap fortran openmp" # global USE flags that may be expected to be set by other packages. USE="${USE} cli pcre session" -# 2006/03/07 - Donnie Berkholz -# Modular X: Support direct rendering by default -USE="${USE} dri" - -# 2006/03/29 - Stefan Schweizer -# isdn USE flag defaults -USE="${USE} pppd" - # 2006/10/28 - Luca Barbato # on glibc system you cannot turn it off USE="${USE} iconv" diff --git a/profiles/default/linux/x86/13.0/eapi b/profiles/default/linux/x86/13.0/eapi index 0cfbf08886fc..7ed6ff82de6b 100644 --- a/profiles/default/linux/x86/13.0/eapi +++ b/profiles/default/linux/x86/13.0/eapi @@ -1 +1 @@ -2 +5 diff --git a/profiles/default/linux/x86/13.0/use.mask b/profiles/default/linux/x86/13.0/use.mask new file mode 100644 index 000000000000..afc86075f419 --- /dev/null +++ b/profiles/default/linux/x86/13.0/use.mask @@ -0,0 +1,10 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/profiles/default/linux/x86/13.0/use.mask,v 1.1 2013/01/20 11:06:40 mgorny Exp $ + +# Michał Górny (19 Jan 2013) +# PyPy is keyworded on this arch. +-python_targets_pypy1_9 +-python_targets_pypy2_0 +-python_single_target_pypy1_9 +-python_single_target_pypy2_0 diff --git a/profiles/default/linux/x86/13.0/use.stable.mask b/profiles/default/linux/x86/13.0/use.stable.mask new file mode 100644 index 000000000000..7339a2e83aba --- /dev/null +++ b/profiles/default/linux/x86/13.0/use.stable.mask @@ -0,0 +1,10 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/profiles/default/linux/x86/13.0/use.stable.mask,v 1.1 2013/01/20 11:06:40 mgorny Exp $ + +# Michał Górny (19 Jan 2013) +# PyPy is unstable on this arch. +python_targets_pypy1_9 +python_targets_pypy2_0 +python_single_target_pypy1_9 +python_single_target_pypy2_0 diff --git a/profiles/package.mask b/profiles/package.mask index 2e146a7990b4..9a10ae71bca9 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -1,5 +1,5 @@ #################################################################### -# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.14394 2013/01/19 14:33:25 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.14396 2013/01/20 14:18:52 graaff 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,23 @@ #--- END OF EXAMPLES --- +# Hans de Graaff (20 Jan 2013) Mask +# dev-lang/ruby-enterprise for removal, bug 453178. The current +# versions have minor security issues, the latest versions are masked +# and don't work, and upstream announced end-of-life almost a year +# ago. Ruby 1.9 has almost all of the benefits of REE, so the +# recommendation is to switch to that if you are still using REE. +dev-lang/ruby-enterprise + +# Ben de Groot (20 Jan 2013) +# 2.5* has known security and other issues due to bundled ffmpeg, +# see (bugs #446468 and #444262) +# 2.6* is masked for testing, and may have unknown issues due to bundled ffmpeg +# This package needs a new, dedicated maintainer. We voted for keeping it in +# the tree for now, so users who are willing to accept the known issues can +# still easily install it by unmasking this. +media-video/avidemux + # Marien Zwart # Patch tarball is broken, meaning this builds 1.2.0 (bug #452918) =app-emulation/qemu-1.2.2-r1 @@ -412,10 +429,6 @@ dev-vcs/gitosis-gentoo # masked for testing, bug #422605 =media-plugins/vdr-softdevice-0.5.0.20110417 -# Markos Chandras (04 Nov 2012) -# Masked for testing -=media-video/avidemux-2.6* - # Markos Chandras (03 Nov 2012) # Masked for testing app-benchmarks/ltp diff --git a/profiles/releases/make.defaults b/profiles/releases/make.defaults index 104c8a93742f..ca2520d3e31a 100644 --- a/profiles/releases/make.defaults +++ b/profiles/releases/make.defaults @@ -1,7 +1,7 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/releases/make.defaults,v 1.3 2012/05/06 16:38:32 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/releases/make.defaults,v 1.4 2013/01/20 13:46:00 dilfridge Exp $ # These USE flags are what is common between the various sub-profiles. Stages 2 # and 3 are built against these, so be careful what you add. -USE="acl cups gdbm gpm nptl unicode" +USE="acl gdbm gpm nptl unicode" diff --git a/profiles/targets/desktop/make.defaults b/profiles/targets/desktop/make.defaults index 0ab47331fa0c..5c13f821a8ed 100644 --- a/profiles/targets/desktop/make.defaults +++ b/profiles/targets/desktop/make.defaults @@ -1,5 +1,5 @@ -# 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/profiles/targets/desktop/make.defaults,v 1.24 2012/07/04 07:38:06 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/targets/desktop/make.defaults,v 1.26 2013/01/20 13:43:03 dilfridge Exp $ -USE="a52 aac acpi alsa bluetooth branding cairo cdda cdr consolekit dbus dts dvd dvdr emboss encode exif fam firefox flac gif gpm gtk jpeg lcms ldap libnotify mad mng mp3 mp4 mpeg ogg opengl pango pdf png policykit ppds qt3support qt4 sdl spell startup-notification svg tiff truetype vorbis udev udisks unicode upower usb wxwidgets X xcb x264 xml xv xvid" +USE="a52 aac acpi alsa bluetooth branding cairo cdda cdr consolekit cups dbus dri dts dvd dvdr emboss encode exif fam firefox flac gif gpm gtk jpeg lcms ldap libnotify mad mng mp3 mp4 mpeg ogg opengl pango pdf png policykit ppds qt3support qt4 sdl spell startup-notification svg tiff truetype vorbis udev udisks unicode upower usb wxwidgets X xcb x264 xml xv xvid" diff --git a/profiles/uclibc/arm/2.4/package.mask b/profiles/uclibc/arm/2.4/package.mask index 472f7a28eb47..2212cb12d718 100644 --- a/profiles/uclibc/arm/2.4/package.mask +++ b/profiles/uclibc/arm/2.4/package.mask @@ -2,5 +2,3 @@ >=sys-kernel/gentoo-sources-2.5 >=sys-kernel/hardened-sources-2.5 >=sys-kernel/vanilla-sources-2.5 - ->=virtual/pcmcia-2.5 diff --git a/profiles/uclibc/arm/armeb/2.4/package.mask b/profiles/uclibc/arm/armeb/2.4/package.mask index 472f7a28eb47..2212cb12d718 100644 --- a/profiles/uclibc/arm/armeb/2.4/package.mask +++ b/profiles/uclibc/arm/armeb/2.4/package.mask @@ -2,5 +2,3 @@ >=sys-kernel/gentoo-sources-2.5 >=sys-kernel/hardened-sources-2.5 >=sys-kernel/vanilla-sources-2.5 - ->=virtual/pcmcia-2.5 diff --git a/profiles/uclibc/ppc/2.4/package.mask b/profiles/uclibc/ppc/2.4/package.mask index 472f7a28eb47..2212cb12d718 100644 --- a/profiles/uclibc/ppc/2.4/package.mask +++ b/profiles/uclibc/ppc/2.4/package.mask @@ -2,5 +2,3 @@ >=sys-kernel/gentoo-sources-2.5 >=sys-kernel/hardened-sources-2.5 >=sys-kernel/vanilla-sources-2.5 - ->=virtual/pcmcia-2.5 diff --git a/profiles/uclibc/ppc/hardened/2.4/package.mask b/profiles/uclibc/ppc/hardened/2.4/package.mask index 472f7a28eb47..2212cb12d718 100644 --- a/profiles/uclibc/ppc/hardened/2.4/package.mask +++ b/profiles/uclibc/ppc/hardened/2.4/package.mask @@ -2,5 +2,3 @@ >=sys-kernel/gentoo-sources-2.5 >=sys-kernel/hardened-sources-2.5 >=sys-kernel/vanilla-sources-2.5 - ->=virtual/pcmcia-2.5 diff --git a/profiles/uclibc/sh/2.4/package.mask b/profiles/uclibc/sh/2.4/package.mask index 472f7a28eb47..2212cb12d718 100644 --- a/profiles/uclibc/sh/2.4/package.mask +++ b/profiles/uclibc/sh/2.4/package.mask @@ -2,5 +2,3 @@ >=sys-kernel/gentoo-sources-2.5 >=sys-kernel/hardened-sources-2.5 >=sys-kernel/vanilla-sources-2.5 - ->=virtual/pcmcia-2.5 diff --git a/profiles/uclibc/x86/2.4/package.mask b/profiles/uclibc/x86/2.4/package.mask index 472f7a28eb47..2212cb12d718 100644 --- a/profiles/uclibc/x86/2.4/package.mask +++ b/profiles/uclibc/x86/2.4/package.mask @@ -2,5 +2,3 @@ >=sys-kernel/gentoo-sources-2.5 >=sys-kernel/hardened-sources-2.5 >=sys-kernel/vanilla-sources-2.5 - ->=virtual/pcmcia-2.5 diff --git a/profiles/uclibc/x86/2005.1/2.4/package.mask b/profiles/uclibc/x86/2005.1/2.4/package.mask index 472f7a28eb47..2212cb12d718 100644 --- a/profiles/uclibc/x86/2005.1/2.4/package.mask +++ b/profiles/uclibc/x86/2005.1/2.4/package.mask @@ -2,5 +2,3 @@ >=sys-kernel/gentoo-sources-2.5 >=sys-kernel/hardened-sources-2.5 >=sys-kernel/vanilla-sources-2.5 - ->=virtual/pcmcia-2.5 diff --git a/profiles/uclibc/x86/hardened/2.4/package.mask b/profiles/uclibc/x86/hardened/2.4/package.mask index 472f7a28eb47..2212cb12d718 100644 --- a/profiles/uclibc/x86/hardened/2.4/package.mask +++ b/profiles/uclibc/x86/hardened/2.4/package.mask @@ -2,5 +2,3 @@ >=sys-kernel/gentoo-sources-2.5 >=sys-kernel/hardened-sources-2.5 >=sys-kernel/vanilla-sources-2.5 - ->=virtual/pcmcia-2.5 diff --git a/profiles/use.local.desc b/profiles/use.local.desc index 7ab516e6505c..6c6edc5166e4 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -153,6 +153,7 @@ app-admin/gkrellm:hddtemp - Enable monitoring harddrive temperatures via app-adm app-admin/gkrellm:lm_sensors - Enable monitoring sensors via sys-apps/lm_sensors app-admin/gkrellm:ntlm - Enable NTLM authentication for mail checking with net-libs/libntlm app-admin/gkrellm:ssl - Enable SSL support for mail checking with dev-libs/openssl +app-admin/glance:swift - Adds swift storage support app-admin/gnome-system-tools:nfs - Adds support for NFS shares app-admin/gtkdiskfree:gtk3 - Use GTK+3 instead of 2 app-admin/hddtemp:network-cron - Monthly cronjob to update hddtemp.db. @@ -280,6 +281,7 @@ app-crypt/eid-mw:xpi - Build and install an extension for Mozilla browsers. app-crypt/ekeyd:minimal - Only install the ekey-egd-linux service rather than the full ekeyd package. app-crypt/ekeyd:munin - Install a plugin for net-analyzer/munin to graph statistical data from ekeyd. app-crypt/ekeyd:usb - Build the libusb-based userland daemon for accessing the EntropyKey (alternative to the CDC USB driver). It is suggested to use this option by default, as the CDC driver in the kernel often seems to be fragile (or the gadget implementation on the EntropyKey is too buggy), and can cause various problems. +app-crypt/gnupg:mta - Build mta support using virtual/mta. app-crypt/gnupg:smartcard - Build scdaemon software. Enables usage of OpenPGP cards. For other type of smartcards, try app-crypt/gnupg-pkcs11-scd. app-crypt/gnupg:usb - Build direct CCID access for scdaemon; requires dev-libs/libusb. app-crypt/gpgme:common-lisp - Install common-lisp files @@ -2650,6 +2652,7 @@ media-libs/gmtk:dconf - Enable support for gnome-base/dconf media-libs/grilo:introspection - Use dev-libs/gobject-introspection for introspection media-libs/grilo:network - Enable network access for media discovery using net-libs/libsoup media-libs/grilo:vala - Generate bindings for dev-lang/vala +media-libs/gst-plugins-base:ivorbis - Enable integer based vorbis decoder. media-libs/gst-plugins-base:pango - Enable pango GStreamer plugin media-libs/gst-rtsp-server:introspection - Use dev-libs/gobject-introspection for introspection media-libs/gst-rtsp-server:vala - Add support for dev-lang/vala @@ -4323,6 +4326,7 @@ net-mail/notmuch:doc - Install API documentation for enabled bindings net-mail/notmuch:emacs - Install Emacs UI (the main one) net-mail/notmuch:mutt - Install helper script for Mutt net-mail/notmuch:nmbug - Install experimental tag sharing / pseudo-bug-tracking script for Notmuch (see http://notmuchmail.org/nmbug/) +net-mail/notmuch:pick - Experimental threaded message view for the emacs interface net-mail/notmuch:vim - Install Vim UI (experimental) net-mail/offlineimap:sqlite - Enable runtime support for sqlite mail status backend. net-mail/qmailadmin:maildrop - Filter spam using maildrop diff --git a/sci-chemistry/gromacs/Manifest b/sci-chemistry/gromacs/Manifest index b45574000ed9..f000d56d874b 100644 --- a/sci-chemistry/gromacs/Manifest +++ b/sci-chemistry/gromacs/Manifest @@ -3,5 +3,8 @@ DIST 0002-Make-stack-non-executable-for-ATT-assembly.patch.gz 3868244 SHA256 af1 DIST gmxtest-4.0.4.tgz 14845017 SHA256 6a7f787f4bb7cbecb688115ff0854a5ffd2ef33487d7bce4b031e63848b6f361 SHA512 f8165ef1d7e2ed69db0a069a1c85fc5fa440d66e96aa54b474392a6331d2327b60f76b8dceb02f9233ce06eb6b7a4e7c448fc71f666e244efa571cf94f1e86ec WHIRLPOOL dbb122736a588deb7931204b29142dd3d9b074691e94341b04dcad2cdf428eb0aae739aa37ef6f61d1dcd6fb96ddcc1292e76f267694f3c18ee67d17352bfd9b DIST gromacs-4.5.5.tar.gz 10398178 SHA256 e0605e4810b0d552a8761fef5540c545beeaf85893f4a6e21df9905a33f871ba SHA512 8af0b81261a6b08c461275bccc4e72d23efd664ed5af12e3579956b5822ab6c6eea2ccbfbfe6ea1f4b30403a3c1367f52638e281cd1d7bc49e9220332c3e2b8c WHIRLPOOL 021a07171c3301184c48d31e2ad2068ce54b7746b9b0f9086d34796ddcfe750006e6f23bc0d8c52942fb491bd047411d7f5f21aaa9d7eb8ab9b7485fcb587f8c DIST gromacs-4.6-beta3.tar.gz 10238128 SHA256 4ec708c0def71435d513fba01fe0d71f0cb8da71639a42cb9da8bf9e3985cae4 SHA512 862835e6c9fcdfd432d0205558279c775ccbd3fe5a1092728e2a0991a603bc74944ac4ab29fef0552aa4f17d945d1e74f87021533c42bf63d4c07dfcce73b427 WHIRLPOOL ecf080eafaa381ae9b80755a9389bd85e6b93d557e31aedbc385a5c0b32223e081220f44693ac9f5b50d502a908d6203101fd9290bafa190769f1a36ea64fcc2 +DIST gromacs-4.6.tar.gz 10098687 SHA256 f695ea814b10cb9afa8d69241fed703c6e20156bab96ed4b25f817ad85a8dbde SHA512 9b47d8fe05d9c825619d20322cda63b59b88365af0c621d12b8240b2ce52be164adcecb7b0ac0b8101e01f8e3f7ae06aa740b28be83bdffd49ac66953d8cba0f WHIRLPOOL d2494387a4e7cd5eb36c2f244bdc75f0151c37b62d0d3a8741476f194516a688967b67507adf8c8eaa2d6fda7381ece764c7f1e8092d7384b945b14bec7d49e5 DIST gromacs-manual-4.5.4.pdf 2463242 SHA256 dc14504a7072b61e7aa576c48f04df03356824f3a9d9e744dfaf51529ab46252 SHA512 957995333163f6f28568a18d5423a75dc6c315215692da94d0916f09b6221e2a875c5ff4b05385ad6604bd8ae38f0cb61c740cd734c76b360aa4b598cd2c3380 WHIRLPOOL 07077d81ea89bc02207e45e56c77a668375a7284bf6f4a3cc7fe637f1f53ce4ab687c722f13f208cdd2c056b9d766ebfcbe5ea9579ce7649ec9e088371e7db8d DIST gromacs-manual-4.6-beta1.pdf 5527287 SHA256 788a424720b149d905d236d3c792d72c3f5af1c054f6ef19192bd12f44fe1fb9 SHA512 5a76aa847a865bfa8ca77bbad67eec18e8328c3db8af411a609a7039f48bcc1973ac6af0201c78f1428ed05040102cbe96638399413520bb1f1c1013031662c6 WHIRLPOOL 1c189bc1cc1da42bcb7332c45c13789ca822e57dbbff6452be7328163a95ed29b678a201250018a214a95e23fb43258d7cc6a58bdde88afcdf718db0c80cf45a +DIST gromacs-manual-4.6.pdf 5537288 SHA256 e2381a0196dd6babc051bcbe2fc83a953cafbd782111f21abb3f1aa3a802ab8e SHA512 4a9070a52f6777776ed958e678623ddbb5c1290b542a1b539826390d0603ec6d2fad0908fd9f125093ea9c1f7ce1db64ca474405868458770180f7a581767baa WHIRLPOOL cefeaaeee6fe75cc863ff604bdf742843d00d60bce6b8b1a2e2cfeed96fb5e33ce6b7a73c22f1ea145b895727587a7f99fadda9cac4a6741503aa52f1f86c95b +DIST regressiontests-4.6.tar.gz 43570117 SHA256 517d75855e9e6e43954dbc1c54e581ca8844fbf9c1f85cf810c93d9340b15d03 SHA512 14b337ea1ad39c550a431d9cd3e5f1cd16ab4f19ff392ec2332cb4e4180ba78db73c09fe1596c06798f4c40d6282ffcbb9ace7935d243d9c5354abe85f5f1af3 WHIRLPOOL fa72afc791652a74677d831f2400ac080f40fb28fca9a63df0b81d201422109578ab7445107143767df1a0b604f3ebe91be265a8f300201a5c80409f8e4cad04 diff --git a/sci-chemistry/gromacs/gromacs-4.6.ebuild b/sci-chemistry/gromacs/gromacs-4.6.ebuild new file mode 100644 index 000000000000..6f63b7c02272 --- /dev/null +++ b/sci-chemistry/gromacs/gromacs-4.6.ebuild @@ -0,0 +1,226 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gromacs/gromacs-4.6.ebuild,v 1.1 2013/01/19 21:49:38 ottxor Exp $ + +EAPI=5 + +TEST_PV="4.6" +MANUAL_PV="4.6" + +CMAKE_MAKEFILE_GENERATOR="ninja" + +inherit bash-completion-r1 cmake-utils eutils multilib toolchain-funcs + +if [[ $PV = *9999* ]]; then + EGIT_REPO_URI="git://git.gromacs.org/gromacs.git + https://gerrit.gromacs.org/gromacs.git + git://github.com/gromacs/gromacs.git + http://repo.or.cz/r/gromacs.git" + EGIT_BRANCH="release-4-6" + inherit git-2 + PDEPEND="doc? ( ~app-doc/${PN}-manual-${PV} )" +else + SRC_URI="ftp://ftp.gromacs.org/pub/${PN}/${P}.tar.gz + doc? ( ftp://ftp.gromacs.org/pub/manual/manual-${MANUAL_PV}.pdf -> ${PN}-manual-${MANUAL_PV}.pdf ) + test? ( http://${PN}.googlecode.com/files/regressiontests-${TEST_PV}.tar.gz )" +fi + +ACCE_IUSE="sse2 sse41 avx128fma avx256" + +DESCRIPTION="The ultimate molecular dynamics simulation package" +HOMEPAGE="http://www.gromacs.org/" + +# see COPYING for details +# http://repo.or.cz/w/gromacs.git/blob/HEAD:/COPYING +# base, vmd plugins, fftpack from numpy, blas/lapck from netlib, memtestG80 library, mpi_thread lib +LICENSE="LGPL-2.1 UoI-NCSA !mkl? ( !fftw? ( BSD ) !blas? ( BSD ) !lapack? ( BSD ) ) cuda? ( LGPL-3 ) threads? ( BSD )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos" +IUSE="X blas cuda doc -double-precision +fftw gsl lapack mkl mpi +offensive openmp +single-precision test +threads zsh-completion ${ACCE_IUSE}" + +CDEPEND=" + X? ( + x11-libs/libX11 + x11-libs/libSM + x11-libs/libICE + ) + blas? ( virtual/blas ) + cuda? ( dev-util/nvidia-cuda-toolkit ) + fftw? ( sci-libs/fftw:3.0 ) + gsl? ( sci-libs/gsl ) + lapack? ( virtual/lapack ) + mkl? ( sci-libs/mkl ) + mpi? ( virtual/mpi )" +DEPEND="${CDEPEND} + virtual/pkgconfig" +RDEPEND="${CDEPEND}" + +REQUIRED_USE=" + || ( single-precision double-precision ) + cuda? ( single-precision ) + mkl? ( !blas !fftw !lapack )" + +pkg_pretend() { + [[ $(gcc-version) == "4.1" ]] && die "gcc 4.1 is not supported by gromacs" + use openmp && ! tc-has-openmp && \ + die "Please switch to an openmp compatible compiler" +} + +src_prepare() { + #notes/todos + # -on apple: there is framework support + + #add user patches from /etc/portage/patches/sci-chemistry/gromacs + epatch_user + + GMX_DIRS="" + use single-precision && GMX_DIRS+=" float" + use double-precision && GMX_DIRS+=" double" + + if use test; then + for x in ${GMX_DIRS}; do + mkdir -p "${WORKDIR}/${P}_${x}" || die + cp -al "${WORKDIR}/regressiontests-${TEST_PV}" "${WORKDIR}/${P}_${x}/tests" || die + done + fi +} + +src_configure() { + local mycmakeargs_pre=( ) extra fft_opts=( ) + + #go from slowest to fastest acceleration + local acce="None" + use sse2 && acce="SSE2" + use sse41 && acce="SSE4.1" + use avx128fma && acce="AVX_128_FMA" + use avx256 && acce="AVX_256" + + #to create man pages, build tree binaries are executed (bug #398437) + [[ ${CHOST} = *-darwin* ]] && \ + extra+=" -DCMAKE_BUILD_WITH_INSTALL_RPATH=OFF" + + if use fftw; then + fft_opts=( -DGMX_FFT_LIBRARY=fftw3 ) + elif use mkl && has_version "=sci-libs/mkl-10*"; then + fft_opts=( -DGMX_FFT_LIBRARY=mkl + -DMKL_INCLUDE_DIR="${MKLROOT}/include" + -DMKL_LIBRARIES="$(echo /opt/intel/mkl/10.0.5.025/lib/*/libmkl.so);$(echo /opt/intel/mkl/10.0.5.025/lib/*/libiomp*.so)" + ) + elif use mkl; then + local bits=$(get_libdir) + fft_opts=( -DGMX_FFT_LIBRARY=mkl + -DMKL_INCLUDE_DIR="$(echo /opt/intel/*/mkl/include)" + -DMKL_LIBRARIES="$(echo /opt/intel/*/mkl/lib/*${bits/lib}/libmkl_rt.so)" + ) + else + fft_opts=( -DGMX_FFT_LIBRARY=fftpack ) + fi + + mycmakeargs_pre+=( + "${fft_opts[@]}" + $(cmake-utils_use X GMX_X11) + $(cmake-utils_use blas GMX_EXTERNAL_BLAS) + $(cmake-utils_use gsl GMX_GSL) + $(cmake-utils_use lapack GMX_EXTERNAL_LAPACK) + $(cmake-utils_use openmp GMX_OPENMP) + $(cmake-utils_use offensive GMX_COOL_QUOTES) + -DGMX_DEFAULT_SUFFIX=off + -DGMX_ACCELERATION="$acce" + -DGMXLIB="$(get_libdir)" + -DGMX_VMD_PLUGIN_PATH="${EPREFIX}/usr/$(get_libdir)/vmd/plugins/*/molfile/" + -DGMX_PREFIX_LIBMD=ON + -DGMX_X86_AVX_GCC_MASKLOAD_BUG=OFF + -DGMX_USE_GCC44_BUG_WORKAROUND=OFF + ${extra} + ) + + for x in ${GMX_DIRS}; do + einfo "Configuring for ${x} precision" + local suffix="" + #if we build single and double - double is suffixed + use double-precision && use single-precision && \ + [[ ${x} = "double" ]] && suffix="_d" + local p + [[ ${x} = "double" ]] && p="-DGMX_DOUBLE=ON" || p="-DGMX_DOUBLE=OFF" + local cuda=$(cmake-utils_use cuda GMX_GPU) + [[ ${x} = "double" ]] && use cuda && cuda="-DGMX_GPU=OFF" + mycmakeargs=( ${mycmakeargs_pre[@]} ${p} -DGMX_MPI=OFF + $(cmake-utils_use threads GMX_THREAD_MPI) ${cuda} -DGMX_OPENMM=OFF + "$(use test && echo -DREGRESSIONTEST_PATH="${WORKDIR}/${P}_${x}/tests")" + -DGMX_BINARY_SUFFIX="${suffix}" -DGMX_LIBS_SUFFIX="${suffix}" ) + BUILD_DIR="${WORKDIR}/${P}_${x}" cmake-utils_src_configure + use mpi || continue + einfo "Configuring for ${x} precision with mpi" + mycmakeargs=( ${mycmakeargs_pre[@]} ${p} -DGMX_THREAD_MPI=OFF + -DGMX_MPI=ON ${cuda} -DGMX_OPENMM=OFF + -DGMX_BINARY_SUFFIX="_mpi${suffix}" -DGMX_LIBS_SUFFIX="_mpi${suffix}" ) + BUILD_DIR="${WORKDIR}/${P}_${x}_mpi" CC="mpicc" cmake-utils_src_configure + done +} + +src_compile() { + for x in ${GMX_DIRS}; do + einfo "Compiling for ${x} precision" + BUILD_DIR="${WORKDIR}/${P}_${x}"\ + cmake-utils_src_compile + use mpi || continue + einfo "Compiling for ${x} precision with mpi" + BUILD_DIR="${WORKDIR}/${P}_${x}_mpi"\ + cmake-utils_src_compile mdrun + done +} + +src_test() { + for x in ${GMX_DIRS}; do + BUILD_DIR="${WORKDIR}/${P}_${x}"\ + cmake-utils_src_make check + done +} + +src_install() { + for x in ${GMX_DIRS}; do + BUILD_DIR="${WORKDIR}/${P}_${x}" \ + cmake-utils_src_install + use mpi || continue + BUILD_DIR="${WORKDIR}/${P}_${x}_mpi" \ + DESTDIR="${D}" cmake-utils_src_make install-mdrun + done + + rm -f "${ED}"/usr/bin/GMXRC* + + newbashcomp "${ED}"/usr/bin/completion.bash ${PN} + if use zsh-completion ; then + insinto /usr/share/zsh/site-functions + newins "${ED}"/usr/bin/completion.zsh _${PN} + fi + rm -f "${ED}"/usr/bin/completion.* + + cd "${S}" + dodoc AUTHORS INSTALL* README* + if use doc; then + dohtml -r "${ED}usr/share/gromacs/html/" + if [[ $PV = *9999* ]]; then + insinto /usr/share/gromacs + doins "admin/programs.txt" + ls -1 "${ED}"/usr/bin | sed -e '/_d$/d' > "${T}"/programs.list + doins "${T}"/programs.list + else + dodoc "${DISTDIR}/${PN}-manual-${MANUAL_PV}.pdf" + fi + fi + rm -rf "${ED}usr/share/gromacs/html/" +} + +pkg_postinst() { + einfo + einfo "Please read and cite:" + einfo "Gromacs 4, J. Chem. Theory Comput. 4, 435 (2008). " + einfo "http://dx.doi.org/10.1021/ct700301q" + if use offensive; then + einfo + einfo $(g_luck) + einfo "For more Gromacs cool quotes (gcq) add g_luck to your .bashrc" + fi + einfo + elog "Gromacs can use sci-chemistry/vmd to read additional file formats" +} diff --git a/sci-mathematics/kodkod/metadata.xml b/sci-mathematics/kodkod/metadata.xml index 7e86d3ebe1d1..ad14c71b8a60 100644 --- a/sci-mathematics/kodkod/metadata.xml +++ b/sci-mathematics/kodkod/metadata.xml @@ -2,7 +2,7 @@ - gienah@gentoo.org> + gienah@gentoo.org sci-mathematics diff --git a/sci-misc/netlogo-bin/netlogo-bin-5.0.3.ebuild b/sci-misc/netlogo-bin/netlogo-bin-5.0.3-r1.ebuild similarity index 92% rename from sci-misc/netlogo-bin/netlogo-bin-5.0.3.ebuild rename to sci-misc/netlogo-bin/netlogo-bin-5.0.3-r1.ebuild index 6f9d6543cc1e..2765ed334d53 100644 --- a/sci-misc/netlogo-bin/netlogo-bin-5.0.3.ebuild +++ b/sci-misc/netlogo-bin/netlogo-bin-5.0.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/sci-misc/netlogo-bin/netlogo-bin-5.0.3.ebuild,v 1.1 2013/01/07 01:08:51 creffett Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/netlogo-bin/netlogo-bin-5.0.3-r1.ebuild,v 1.1 2013/01/19 22:02:16 creffett Exp $ EAPI=5 @@ -29,6 +29,7 @@ QA_PREBUILT="/usr/share/"${PN}"/lib/Linux-*/*.so" src_install() { insinto /usr/share/"${PN}"/ doins *.jar + rm lib/quaqua-7.3.4.jar java-pkg_dojar extensions/sound/*.jar java-pkg_dojar extensions/profiler/*.jar java-pkg_dojar extensions/array/*.jar @@ -39,6 +40,7 @@ src_install() { java-pkg_dojar lib/*.jar dohtml -r docs/* + dodoc "docs/NetLogo User Manual.pdf" docs/shapes.nlogo insinto /usr/share/"${PN}"/models doins -r models/* diff --git a/sci-visualization/gnuplot/Manifest b/sci-visualization/gnuplot/Manifest index 63f030507c7b..e7e64c863176 100644 --- a/sci-visualization/gnuplot/Manifest +++ b/sci-visualization/gnuplot/Manifest @@ -1,3 +1,3 @@ -DIST gnuplot-4.4.4.tar.gz 3328278 SHA256 d228599d08d5f87bcb79af8af8bb432c77d942802b1643f920c7baaeaf1ddbfd +DIST gnuplot-4.4.4.tar.gz 3328278 SHA256 d228599d08d5f87bcb79af8af8bb432c77d942802b1643f920c7baaeaf1ddbfd SHA512 5781a1cb569bb4e4471be87f563c761a28a8a927c32c58e65e296152869951d2f5f16a437af3988ba83212ea2aaf641176c9863d6f5f3e629d86a927c41e75ba WHIRLPOOL c5e04c1a9ae7aa6c3f91e535d004cd75ae2ffa2bda5a6f284fa475286e34606c6e7970d83f80fd00e359da4b81f34526b2f02c2a305d7d982840b30a1e8cecd5 DIST gnuplot-4.6.0.tar.gz 5017694 SHA256 6e60adb5039a3541f407c2ade670004178b376754c424c13f0be24c7960c17be SHA512 a4358c20577f978215a22db041f4d369ab69a88624b2fe831d2a1124fffb84d4dafa7f0f5a8bfdb388c663073570adb084949195c6eebd0f11f9b0ac4485debc WHIRLPOOL a892cf9061b1ca1e47f51294bbc08494f8725a9b1cb4f413d68d99a158f11fcf718aec3bc8a21c132f596f4ab39a9b4e541f3cca1933de9670912cdd32364ef4 DIST gnuplot-4.6.1.tar.gz 4959670 SHA256 f4bf99907d0fea7db90b6e50147f1730b5bde2fbb93d9e58478b6b94409eebc6 SHA512 a6a05da6708a7f5629d8356901e93ab622d4a3a6325e050fc1f8dce652e6061164783a98ff5cbc2dede65f6f0cb5be6a1ab2fcaeb778f6879215bae7056bd3ed WHIRLPOOL fa72b52a181ee9f7599c3646c4303ebcc21c0ecae51f7e9024356108f6f6539cfbc91e52e787fbf6d782aff8e1e94d9fec02f05c6bf754c6368eaca947e6bb6c diff --git a/sci-visualization/gnuplot/gnuplot-4.6.1.ebuild b/sci-visualization/gnuplot/gnuplot-4.6.1.ebuild index 03802b23e02b..7555fe464a18 100644 --- a/sci-visualization/gnuplot/gnuplot-4.6.1.ebuild +++ b/sci-visualization/gnuplot/gnuplot-4.6.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/sci-visualization/gnuplot/gnuplot-4.6.1.ebuild,v 1.2 2012/10/02 16:28:21 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gnuplot/gnuplot-4.6.1.ebuild,v 1.6 2013/01/20 17:04:53 ago Exp $ EAPI=4 -inherit elisp-common flag-o-matic multilib wxwidgets +inherit elisp-common flag-o-matic multilib wxwidgets toolchain-funcs DESCRIPTION="Command-line driven interactive plotting program" HOMEPAGE="http://www.gnuplot.info/" @@ -25,7 +25,7 @@ fi LICENSE="gnuplot GPL-2 bitmap? ( free-noncomm )" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="bitmap cairo doc emacs examples +gd ggi latex lua plotutils qt4 readline svga thin-splines wxwidgets X xemacs" RDEPEND=" @@ -106,6 +106,8 @@ src_configure() { need-wxwidgets unicode fi + tc-export CC CXX #453174 + local myconf myconf="${myconf} --without-lisp-files" myconf="${myconf} --without-pdf" diff --git a/sys-apps/dbus/Manifest b/sys-apps/dbus/Manifest index 686d5fcd46a7..caf34998cb3e 100644 --- a/sys-apps/dbus/Manifest +++ b/sys-apps/dbus/Manifest @@ -1,3 +1 @@ -DIST dbus-1.4.20.tar.gz 1895099 SHA256 103bdcd261a13140730b5fa69f56a98ab5c89ba3f0116ea62fcfd639520d5aaf SHA512 d6bad9df110a7b93f278577b9e45c0a9c07fbc2d6bb89fbf0c4af09d9dc8bab91b4e62aee0db32536b1c6194fc638e7a1c99f48a74e0cf55fcb1cc121bbe57f7 WHIRLPOOL 897fc3f5c8d946735380c8f9f08bf5de0e23f97f60008917b398bd5dc6bfd4c696fc4b3eeccb578e89dfd639aedb893c2bcef88b99e8e5bb052ad1d4037a6820 -DIST dbus-1.6.2.tar.gz 1927211 SHA256 2bf210e549fbf801fef32ba132284bcd10021d1d9e52fc29097fe1333b54c2ea SHA512 c53b3cc2251ccf88918f8080a922a10d6cb755900a78978df8ba5c19e100c94adafb8e0790d9a753c20d81e1fb5fda5d02b52653acedc5dddb60d8f65c061d7c WHIRLPOOL 02f4e046d345d604ffd11ec60bbf40ae4dcd15c6dfb9afbc61c3e93979ac2547f4e957378d475b989490daaf37074a1bae088f57e4df6258c745d43ec43b96e2 DIST dbus-1.6.8.tar.gz 1929630 SHA256 fc1370ef38abeeb13f55c905ec002e60705fb0bfde3b8d21c8d6eb8056c11bac SHA512 eb26f1dfb6c6e3757a408a98e0f4012eda926e2f8ee7a2356ebd567a2e4a7d96effca7cec6e6b4f9e7bc578cbdd7b703d00158343a260859aff0718c76f296b0 WHIRLPOOL b614da2bc57376c8ad626ed2469e9a2cfcf7a2debba97187728048ad73e0c5075b290766d088e470b266fcad3e3cf2ec2c9c8477f1f7c5a232f1f74cadc83c1a diff --git a/sys-apps/dbus/dbus-1.4.20.ebuild b/sys-apps/dbus/dbus-1.4.20.ebuild deleted file mode 100644 index 4eb8c41caef3..000000000000 --- a/sys-apps/dbus/dbus-1.4.20.ebuild +++ /dev/null @@ -1,184 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.4.20.ebuild,v 1.13 2012/07/15 18:08:37 armin76 Exp $ - -EAPI=4 -inherit autotools eutils multilib flag-o-matic python systemd virtualx user - -DESCRIPTION="A message bus system, a simple way for applications to talk to each other" -HOMEPAGE="http://dbus.freedesktop.org/" -SRC_URI="http://dbus.freedesktop.org/releases/dbus/${P}.tar.gz" - -LICENSE="|| ( GPL-2 AFL-2.1 )" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd" -IUSE="debug doc selinux static-libs test X" - -RDEPEND=">=dev-libs/expat-2 - selinux? ( - sec-policy/selinux-dbus - sys-libs/libselinux - ) - X? ( - x11-libs/libX11 - x11-libs/libXt - )" -DEPEND="${RDEPEND} - virtual/pkgconfig - doc? ( - app-doc/doxygen - app-text/docbook-xml-dtd:4.1.2 - app-text/xmlto - ) - test? ( - >=dev-libs/glib-2.24 - dev-lang/python:2.7 - )" - -# out of sources build directory -BD=${WORKDIR}/${P}-build -# out of sources build dir for make check -TBD=${WORKDIR}/${P}-tests-build - -pkg_setup() { - enewgroup messagebus - enewuser messagebus -1 -1 -1 messagebus - - # FIXME: Test suite fails with Python 3.2 (last checked: 1.4.20) - if use test; then - python_set_active_version 2 - python_pkg_setup - fi -} - -src_prepare() { - # Tests were restricted because of this - sed -i \ - -e 's/.*bus_dispatch_test.*/printf ("Disabled due to excess noise\\n");/' \ - -e '/"dispatch"/d' \ - bus/test-main.c || die - - epatch \ - "${FILESDIR}"/${PN}-1.4.0-asneeded.patch \ - "${FILESDIR}"/${PN}-1.5.12-selinux-when-dropping-capabilities-only-include-AUDI.patch - - # required for asneeded patch but also for bug 263909, cross-compile so - # don't remove eautoreconf - eautoreconf -} - -src_configure() { - local myconf - - # so we can get backtraces from apps - append-flags -rdynamic - - # libaudit is *only* used in DBus wrt SELinux support, so disable it, if - # not on an SELinux profile. - myconf=( - --disable-asserts - --disable-checks - --disable-embedded-tests - --disable-modular-tests - $(use_with X x) - $(use_enable debug verbose-mode) - $(use_enable kernel_linux inotify) - $(use_enable kernel_FreeBSD kqueue) - $(use_enable selinux) - $(use_enable selinux libaudit) - $(use_enable static-libs static) - --enable-shared - --with-xml=expat - --with-system-pid-file=/var/run/dbus.pid - --with-system-socket=/var/run/dbus/system_bus_socket - --with-session-socket-dir=/tmp - --with-dbus-user=messagebus - "$(systemd_with_unitdir)" - --localstatedir=/var - --docdir=/usr/share/doc/${PF} - --htmldir=/usr/share/doc/${PF}/html - ) - - mkdir "${BD}" - cd "${BD}" - einfo "Running configure in ${BD}" - ECONF_SOURCE="${S}" econf "${myconf[@]}" \ - $(use_enable doc doxygen-docs) \ - $(use_enable doc xml-docs) - - if use test; then - mkdir "${TBD}" - cd "${TBD}" - einfo "Running configure in ${TBD}" - ECONF_SOURCE="${S}" econf "${myconf[@]}" \ - $(use_enable test checks) \ - $(use_enable test embedded-tests) \ - $(use_enable test asserts) \ - $(has_version dev-libs/dbus-glib && echo --enable-modular-tests) - fi -} - -src_compile() { - # after the compile, it uses a selinuxfs interface to - # check if the SELinux policy has the right support - use selinux && addwrite /selinux/access - - cd "${BD}" - einfo "Running make in ${BD}" - emake - - if use test; then - cd "${TBD}" - einfo "Running make in ${TBD}" - emake - fi -} - -src_test() { - cd "${TBD}" - DBUS_VERBOSE=1 Xemake -j1 check -} - -src_install() { - newinitd "${FILESDIR}"/dbus.initd dbus - - if use X; then - # dbus X session script (#77504) - # turns out to only work for GDM (and startx). has been merged into - # other desktop (kdm and such scripts) - exeinto /etc/X11/xinit/xinitrc.d - doexe "${FILESDIR}"/80-dbus - fi - - # needs to exist for dbus sessions to launch - keepdir /usr/share/dbus-1/services - keepdir /etc/dbus-1/system.d - keepdir /etc/dbus-1/session.d - keepdir /var/lib/dbus # See pkg_postinst() for symlink creation - - dodoc AUTHORS ChangeLog HACKING NEWS README doc/TODO - - cd "${BD}" - emake DESTDIR="${D}" install - - find "${ED}" -type f -name '*.la' -exec rm -f {} + -} - -pkg_postinst() { - elog "To start the D-Bus system-wide messagebus by default" - elog "you should add it to the default runlevel :" - elog "\`rc-update add dbus default\`" - elog - elog "Some applications require a session bus in addition to the system" - elog "bus. Please see \`man dbus-launch\` for more information." - elog - ewarn "You must restart D-Bus \`/etc/init.d/dbus restart\` to run" - ewarn "the new version of the daemon." - ewarn "Don't do this while X is running because it will restart your X as well." - - # Ensure unique id is generated and put it in /etc wrt #370451 but symlink - # for DBUS_MACHINE_UUID_FILE (see tools/dbus-launch.c) and reverse - # dependencies with hardcoded paths (although the known ones got fixed already) - dbus-uuidgen --ensure="${EROOT}"/etc/machine-id - ln -sf "${EROOT}"/etc/machine-id "${EROOT}"/var/lib/dbus/machine-id -} diff --git a/sys-apps/dbus/dbus-1.6.2.ebuild b/sys-apps/dbus/dbus-1.6.2.ebuild deleted file mode 100644 index 2ca7745e4d7c..000000000000 --- a/sys-apps/dbus/dbus-1.6.2.ebuild +++ /dev/null @@ -1,190 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.6.2.ebuild,v 1.5 2012/07/25 21:06:45 maekke Exp $ - -EAPI=4 -inherit autotools eutils linux-info flag-o-matic python systemd virtualx user - -DESCRIPTION="A message bus system, a simple way for applications to talk to each other" -HOMEPAGE="http://dbus.freedesktop.org/" -SRC_URI="http://dbus.freedesktop.org/releases/dbus/${P}.tar.gz" - -LICENSE="|| ( AFL-2.1 GPL-2 )" -SLOT="0" -KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd" -IUSE="debug doc selinux static-libs systemd test X" - -RDEPEND=">=dev-libs/expat-2 - selinux? ( - sec-policy/selinux-dbus - sys-libs/libselinux - ) - X? ( - x11-libs/libX11 - x11-libs/libXt - )" -DEPEND="${RDEPEND} - virtual/pkgconfig - doc? ( - app-doc/doxygen - app-text/docbook-xml-dtd:4.1.2 - app-text/xmlto - ) - test? ( - >=dev-libs/glib-2.24 - dev-lang/python:2.7 - )" - -# out of sources build directory -BD=${WORKDIR}/${P}-build -# out of sources build dir for make check -TBD=${WORKDIR}/${P}-tests-build - -pkg_setup() { - enewgroup messagebus - enewuser messagebus -1 -1 -1 messagebus - - if use test; then - python_set_active_version 2 - python_pkg_setup - fi - - if use kernel_linux; then - CONFIG_CHECK="~EPOLL" - linux-info_pkg_setup - fi -} - -src_prepare() { - epatch "${FILESDIR}"/${PN}-1.5.12-selinux-when-dropping-capabilities-only-include-AUDI.patch - - # Tests were restricted because of this - sed -i \ - -e 's/.*bus_dispatch_test.*/printf ("Disabled due to excess noise\\n");/' \ - -e '/"dispatch"/d' \ - bus/test-main.c || die - - # required for asneeded patch but also for bug 263909, cross-compile so - # don't remove eautoreconf - eautoreconf -} - -src_configure() { - # so we can get backtraces from apps - append-flags -rdynamic - - # temp. hack for stable wrt #416725#c5 - local myconf=( --disable-systemd ) - if use systemd && has_version sys-apps/systemd; then - myconf=( --enable-systemd ) - fi - - # libaudit is *only* used in DBus wrt SELinux support, so disable it, if - # not on an SELinux profile. - myconf+=( - --localstatedir=/var - --docdir=/usr/share/doc/${PF} - --htmldir=/usr/share/doc/${PF}/html - $(use_enable static-libs static) - $(use_enable debug verbose-mode) - --disable-asserts - --disable-checks - $(use_enable selinux) - $(use_enable selinux libaudit) - $(use_enable kernel_linux inotify) - $(use_enable kernel_FreeBSD kqueue) - --disable-embedded-tests - --disable-modular-tests - $(use_enable debug stats) - --with-xml=expat - --with-session-socket-dir=/tmp - --with-system-pid-file=/var/run/dbus.pid - --with-system-socket=/var/run/dbus/system_bus_socket - --with-dbus-user=messagebus - $(use_with X x) - "$(systemd_with_unitdir)" - ) - - mkdir "${BD}" - cd "${BD}" - einfo "Running configure in ${BD}" - ECONF_SOURCE="${S}" econf "${myconf[@]}" \ - $(use_enable doc xml-docs) \ - $(use_enable doc doxygen-docs) - - if use test; then - mkdir "${TBD}" - cd "${TBD}" - einfo "Running configure in ${TBD}" - ECONF_SOURCE="${S}" econf "${myconf[@]}" \ - $(use_enable test asserts) \ - $(use_enable test checks) \ - $(use_enable test embedded-tests) \ - $(has_version dev-libs/dbus-glib && echo --enable-modular-tests) - fi -} - -src_compile() { - # after the compile, it uses a selinuxfs interface to - # check if the SELinux policy has the right support - use selinux && addwrite /selinux/access - - cd "${BD}" - einfo "Running make in ${BD}" - emake - - if use test; then - cd "${TBD}" - einfo "Running make in ${TBD}" - emake - fi -} - -src_test() { - cd "${TBD}" - DBUS_VERBOSE=1 Xemake -j1 check -} - -src_install() { - newinitd "${FILESDIR}"/dbus.initd dbus - - if use X; then - # dbus X session script (#77504) - # turns out to only work for GDM (and startx). has been merged into - # other desktop (kdm and such scripts) - exeinto /etc/X11/xinit/xinitrc.d - doexe "${FILESDIR}"/80-dbus - fi - - # needs to exist for dbus sessions to launch - keepdir /usr/share/dbus-1/services - keepdir /etc/dbus-1/{session,system}.d - # machine-id symlink from pkg_postinst() - keepdir /var/lib/dbus - - dodoc AUTHORS ChangeLog HACKING NEWS README doc/TODO - - cd "${BD}" - emake DESTDIR="${D}" install - - find "${ED}" -type f -name '*.la' -exec rm -f {} + -} - -pkg_postinst() { - elog "To start the D-Bus system-wide messagebus by default" - elog "you should add it to the default runlevel :" - elog "\`rc-update add dbus default\`" - elog - elog "Some applications require a session bus in addition to the system" - elog "bus. Please see \`man dbus-launch\` for more information." - elog - ewarn "You must restart D-Bus \`/etc/init.d/dbus restart\` to run" - ewarn "the new version of the daemon." - ewarn "Don't do this while X is running because it will restart your X as well." - - # Ensure unique id is generated and put it in /etc wrt #370451 but symlink - # for DBUS_MACHINE_UUID_FILE (see tools/dbus-launch.c) and reverse - # dependencies with hardcoded paths (although the known ones got fixed already) - dbus-uuidgen --ensure="${EROOT}"/etc/machine-id - ln -sf "${EROOT}"/etc/machine-id "${EROOT}"/var/lib/dbus/machine-id -} diff --git a/sys-apps/dbus/dbus-1.6.8.ebuild b/sys-apps/dbus/dbus-1.6.8.ebuild index 2f12470e31cb..b854a4b8e9e6 100644 --- a/sys-apps/dbus/dbus-1.6.8.ebuild +++ b/sys-apps/dbus/dbus-1.6.8.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/dbus/dbus-1.6.8.ebuild,v 1.9 2012/10/14 14:38:52 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.6.8.ebuild,v 1.10 2013/01/20 11:21:03 pinkbyte Exp $ EAPI=4 inherit autotools eutils linux-info flag-o-matic python virtualx user @@ -78,6 +78,7 @@ src_configure() { # libaudit is *only* used in DBus wrt SELinux support, so disable it, if # not on an SELinux profile. myconf=( + --disable-silent-rules --localstatedir="${EPREFIX}/var" --docdir="${EPREFIX}/usr/share/doc/${PF}" --htmldir="${EPREFIX}/usr/share/doc/${PF}/html" diff --git a/sys-apps/dbus/files/dbus-1.4.0-asneeded.patch b/sys-apps/dbus/files/dbus-1.4.0-asneeded.patch deleted file mode 100644 index baa71294dc71..000000000000 --- a/sys-apps/dbus/files/dbus-1.4.0-asneeded.patch +++ /dev/null @@ -1,94 +0,0 @@ -http://bugs.freedesktop.org/show_bug.cgi?id=23162 - ---- dbus/Makefile.am -+++ dbus/Makefile.am -@@ -277,7 +277,7 @@ - dbus_test_SOURCES= \ - dbus-test-main.c - --dbus_test_LDADD=libdbus-internal.la $(DBUS_TEST_LIBS) -+dbus_test_LDADD=$(DBUS_TEST_LIBS) libdbus-internal.la - dbus_test_LDFLAGS=@R_DYNAMIC_LDFLAG@ - - ## mop up the gcov files ---- test/Makefile.am -+++ test/Makefile.am -@@ -63,17 +63,17 @@ - - # When any programs are not linked to libdbus-internal, fix this. - AM_CPPFLAGS=-DDBUS_STATIC_BUILD --TEST_LIBS=$(top_builddir)/dbus/libdbus-internal.la $(DBUS_TEST_LIBS) -+TEST_LIBS=$(DBUS_TEST_LIBS) $(top_builddir)/dbus/libdbus-internal.la - --test_service_LDADD=libdbus-testutils.la $(TEST_LIBS) -+test_service_LDADD=$(TEST_LIBS) libdbus-testutils.la - test_service_LDFLAGS=@R_DYNAMIC_LDFLAG@ --test_names_LDADD=libdbus-testutils.la $(TEST_LIBS) -+test_names_LDADD=$(TEST_LIBS) libdbus-testutils.la - test_names_LDFLAGS=@R_DYNAMIC_LDFLAG@ - ## break_loader_LDADD= $(TEST_LIBS) - ## break_loader_LDFLAGS=@R_DYNAMIC_LDFLAG@ --test_shell_service_LDADD=libdbus-testutils.la $(TEST_LIBS) -+test_shell_service_LDADD=$(TEST_LIBS) libdbus-testutils.la - test_shell_service_LDFLAGS=@R_DYNAMIC_LDFLAG@ --shell_test_LDADD=libdbus-testutils.la $(TEST_LIBS) -+shell_test_LDADD=$(TEST_LIBS) libdbus-testutils.la - shell_test_LDFLAGS=@R_DYNAMIC_LDFLAG@ - spawn_test_LDADD=$(TEST_LIBS) - spawn_test_LDFLAGS=@R_DYNAMIC_LDFLAG@ ---- test/name-test/Makefile.am -+++ test/name-test/Makefile.am -@@ -22,46 +22,46 @@ - test_pending_call_dispatch_SOURCES = \ - test-pending-call-dispatch.c - --test_pending_call_dispatch_LDADD=$(top_builddir)/dbus/libdbus-internal.la $(DBUS_TEST_LIBS) -+test_pending_call_dispatch_LDADD=$(DBUS_TEST_LIBS) $(top_builddir)/dbus/libdbus-internal.la - test_pending_call_dispatch_LDFLAGS=@R_DYNAMIC_LDFLAG@ - - test_pending_call_timeout_SOURCES = \ - test-pending-call-timeout.c - --test_pending_call_timeout_LDADD=$(top_builddir)/dbus/libdbus-internal.la $(DBUS_TEST_LIBS) -+test_pending_call_timeout_LDADD=$(DBUS_TEST_LIBS) $(top_builddir)/dbus/libdbus-internal.la - test_pending_call_timeout_LDFLAGS=@R_DYNAMIC_LDFLAG@ - - test_threads_init_SOURCES = \ - test-threads-init.c - --test_threads_init_LDADD=$(top_builddir)/dbus/libdbus-internal.la $(DBUS_TEST_LIBS) -+test_threads_init_LDADD=$(DBUS_TEST_LIBS) $(top_builddir)/dbus/libdbus-internal.la - test_threads_init_LDFLAGS=@R_DYNAMIC_LDFLAG@ - - test_ids_SOURCES = \ - test-ids.c - --test_ids_LDADD=$(top_builddir)/dbus/libdbus-internal.la $(DBUS_TEST_LIBS) -+test_ids_LDADD=$(DBUS_TEST_LIBS) $(top_builddir)/dbus/libdbus-internal.la - test_ids_LDFLAGS=@R_DYNAMIC_LDFLAG@ - - test_shutdown_SOURCES = \ - test-shutdown.c - - test_shutdown_CFLAGS= --test_shutdown_LDADD=$(top_builddir)/dbus/libdbus-internal.la ../libdbus-testutils.la $(DBUS_TEST_LIBS) -+test_shutdown_LDADD=$(DBUS_TEST_LIBS) $(top_builddir)/dbus/libdbus-internal.la ../libdbus-testutils.la - test_shutdown_LDFLAGS=@R_DYNAMIC_LDFLAG@ - - test_privserver_SOURCES = \ - test-privserver.c - - test_privserver_CFLAGS= --test_privserver_LDADD=$(top_builddir)/dbus/libdbus-internal.la ../libdbus-testutils.la $(DBUS_TEST_LIBS) -+test_privserver_LDADD=$(DBUS_TEST_LIBS) $(top_builddir)/dbus/libdbus-internal.la ../libdbus-testutils.la - test_privserver_LDFLAGS=@R_DYNAMIC_LDFLAG@ - - test_privserver_client_SOURCES = \ - test-privserver-client.c - - test_privserver_client_CFLAGS= --test_privserver_client_LDADD=$(top_builddir)/dbus/libdbus-internal.la ../libdbus-testutils.la $(DBUS_TEST_LIBS) -+test_privserver_client_LDADD=$(DBUS_TEST_LIBS) $(top_builddir)/dbus/libdbus-internal.la ../libdbus-testutils.la - test_privserver_client_LDFLAGS=@R_DYNAMIC_LDFLAG@ - - endif diff --git a/sys-apps/dbus/files/dbus.init-1.0 b/sys-apps/dbus/files/dbus.init-1.0 deleted file mode 100644 index 502f40fdc608..000000000000 --- a/sys-apps/dbus/files/dbus.init-1.0 +++ /dev/null @@ -1,51 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/files/dbus.init-1.0,v 1.5 2011/09/23 12:45:03 polynomial-c Exp $ - -extra_started_commands="reload" - -depend() { - need localmount - after bootmisc -} - -start() { - ebegin "Starting D-BUS system messagebus" - - /usr/bin/dbus-uuidgen --ensure - - # We need to test if /var/run/dbus exists, since script will fail if it does not - [ ! -e /var/run/dbus ] && mkdir /var/run/dbus - - start-stop-daemon --start --pidfile /var/run/dbus.pid --exec /usr/bin/dbus-daemon -- --system - eend $? -} - -stop() { - local retval - - ebegin "Stopping D-BUS system messagebus" - - start-stop-daemon --stop --pidfile /var/run/dbus.pid - retval=$? - - eend ${retval} - - [ -S /var/run/dbus/system_bus_socket ] && rm -f /var/run/dbus/system_bus_socket - - return ${retval} -} - -reload() { - local retval - - ebegin "Reloading D-BUS messagebus config" - - /usr/bin/dbus-send --print-reply --system --type=method_call \ - --dest=org.freedesktop.DBus \ - / org.freedesktop.DBus.ReloadConfig > /dev/null - retval=$? - eend ${retval} - return ${retval} -} diff --git a/sys-apps/dmidecode/dmidecode-2.11.ebuild b/sys-apps/dmidecode/dmidecode-2.11.ebuild index ab8c37120cc8..ee20c7c3c6d9 100644 --- a/sys-apps/dmidecode/dmidecode-2.11.ebuild +++ b/sys-apps/dmidecode/dmidecode-2.11.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/dmidecode/dmidecode-2.11.ebuild,v 1.11 2013/01/16 20:06:08 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dmidecode/dmidecode-2.11.ebuild,v 1.12 2013/01/20 13:18:00 ago Exp $ EAPI="3" @@ -12,7 +12,7 @@ SRC_URI="http://savannah.nongnu.org/download/${PN}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="-* amd64 ~arm ~ia64 ppc ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-solaris" +KEYWORDS="-* amd64 arm ~ia64 ppc ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-solaris" IUSE="selinux" DEPEND="selinux? ( sec-policy/selinux-dmidecode )" diff --git a/sys-apps/fbset/metadata.xml b/sys-apps/fbset/metadata.xml index 9414bddf5bbd..96a2d586367d 100644 --- a/sys-apps/fbset/metadata.xml +++ b/sys-apps/fbset/metadata.xml @@ -2,7 +2,4 @@ base-system - - spock@gentoo.org - diff --git a/sys-apps/gptfdisk/gptfdisk-0.8.4.ebuild b/sys-apps/gptfdisk/gptfdisk-0.8.4.ebuild index 300b82a9de9f..f63897cd5e12 100644 --- a/sys-apps/gptfdisk/gptfdisk-0.8.4.ebuild +++ b/sys-apps/gptfdisk/gptfdisk-0.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/sys-apps/gptfdisk/gptfdisk-0.8.4.ebuild,v 1.8 2012/09/29 16:44:31 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gptfdisk/gptfdisk-0.8.4.ebuild,v 1.9 2013/01/20 13:18:24 ago Exp $ EAPI=4 @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ppc ppc64 x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm ~ia64 ~mips ppc ppc64 x86 ~amd64-linux ~x86-linux" IUSE="" RDEPEND="dev-libs/icu diff --git a/sys-apps/hwids/hwids-20130114.ebuild b/sys-apps/hwids/hwids-20130114.ebuild index dd2cf6b6a7ec..b52ed60ead45 100644 --- a/sys-apps/hwids/hwids-20130114.ebuild +++ b/sys-apps/hwids/hwids-20130114.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-20130114.ebuild,v 1.3 2013/01/17 15:42:13 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/hwids-20130114.ebuild,v 1.4 2013/01/20 12:17:43 ssuominen 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 ~x86-linux" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~x86-linux" IUSE="+udev" DEPEND="udev? ( dev-lang/perl !=sys-fs/udev-196 )" diff --git a/sys-apps/kbd/files/kbd-1.15.5-loadkeys-parse.patch b/sys-apps/kbd/files/kbd-1.15.5-loadkeys-parse.patch new file mode 100644 index 000000000000..c78a22780840 --- /dev/null +++ b/sys-apps/kbd/files/kbd-1.15.5-loadkeys-parse.patch @@ -0,0 +1,90 @@ +https://bugs.gentoo.org/447440 + +From 7e06e56157e8431d02e1377cdc44230944203d88 Mon Sep 17 00:00:00 2001 +From: Alexey Gladkov +Date: Tue, 11 Dec 2012 14:24:44 +0400 +Subject: [PATCH] Fix regression in 16117ce6ab + +Signed-off-by: Alexey Gladkov +--- + src/loadkeys.analyze.l | 14 +++++++++----- + 1 file changed, 9 insertions(+), 5 deletions(-) + +diff --git a/src/loadkeys.analyze.l b/src/loadkeys.analyze.l +index c18dcea..f817c78 100644 +--- a/src/loadkeys.analyze.l ++++ b/src/loadkeys.analyze.l +@@ -307,8 +307,10 @@ To to|To|TO + char *s = xstrndup(yytext+1, strlen(yytext)-2); + /* use static pathname to store *s ? */ + open_include(s); +- yy_pop_state(); +- state_ptr--; ++ while (state_ptr > 0) { ++ yy_pop_state(); ++ state_ptr--; ++ } + } + [^"]|\"\"|\"[^"\n]*{Eol} { + yyerror(_("expected filename between quotes")); +@@ -323,7 +325,7 @@ To to|To|TO + } + {Eol} { + line_nr++; +- if (state_ptr > 0) { ++ while (state_ptr > 0) { + yy_pop_state(); + state_ptr--; + } +@@ -428,8 +430,10 @@ To to|To|TO + } + \" { + *p = '\0'; +- yy_pop_state(); +- state_ptr--; ++ while (state_ptr > 0) { ++ yy_pop_state(); ++ state_ptr--; ++ } + return(STRLITERAL); + } + . { +--- a/src/loadkeys.analyze.c ++++ b/src/loadkeys.analyze.c +@@ -1359,8 +1359,10 @@ YY_RULE_SETUP + char *s = xstrndup(yytext+1, strlen(yytext)-2); + /* use static pathname to store *s ? */ + open_include(s); +- yy_pop_state(); +- state_ptr--; ++ while (state_ptr > 0) { ++ yy_pop_state(); ++ state_ptr--; ++ } + } + YY_BREAK + case 3: +@@ -1393,7 +1395,7 @@ YY_RULE_SETUP + #line 324 "loadkeys.analyze.l" + { + line_nr++; +- if (state_ptr > 0) { ++ while (state_ptr > 0) { + yy_pop_state(); + state_ptr--; + } +@@ -1670,8 +1670,10 @@ YY_RULE_SETUP + #line 429 "loadkeys.analyze.l" + { + *p = '\0'; +- yy_pop_state(); +- state_ptr--; ++ while (state_ptr > 0) { ++ yy_pop_state(); ++ state_ptr--; ++ } + return(STRLITERAL); + } + YY_BREAK +-- +1.8.0.2 diff --git a/sys-apps/kbd/kbd-1.15.5-r1.ebuild b/sys-apps/kbd/kbd-1.15.5-r1.ebuild new file mode 100644 index 000000000000..b10ac319354f --- /dev/null +++ b/sys-apps/kbd/kbd-1.15.5-r1.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/sys-apps/kbd/kbd-1.15.5-r1.ebuild,v 1.1 2013/01/20 17:23:16 vapier Exp $ + +EAPI="4" + +inherit eutils + +DESCRIPTION="Keyboard and console utilities" +HOMEPAGE="http://freshmeat.net/projects/kbd/" +SRC_URI="ftp://ftp.altlinux.org/pub/people/legion/kbd/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="nls pam" + +RDEPEND="pam? ( virtual/pam )" +DEPEND="${RDEPEND}" + +src_unpack() { + default + cd "${S}" + + # broken file ... upstream git punted it + rm po/es.po + + # Rename conflicting keymaps to have unique names, bug #293228 + cd "${S}"/data/keymaps/i386 + mv dvorak/no.map dvorak/no-dvorak.map + mv fgGIod/trf.map fgGIod/trf-fgGIod.map + mv olpc/es.map olpc/es-olpc.map + mv olpc/pt.map olpc/pt-olpc.map + mv qwerty/cz.map qwerty/cz-qwerty.map +} + +src_prepare() { + epatch "${FILESDIR}"/${P}-loadkeys-parse.patch #447440 +} + +src_configure() { + econf \ + $(use_enable nls) \ + $(use_enable pam vlock) +} + +src_install() { + default + dohtml doc/*.html +} diff --git a/sys-apps/less/less-457.ebuild b/sys-apps/less/less-457.ebuild index 381fcef59f5a..7733556e844f 100644 --- a/sys-apps/less/less-457.ebuild +++ b/sys-apps/less/less-457.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/less/less-457.ebuild,v 1.6 2013/01/17 15:39:06 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/less/less-457.ebuild,v 1.7 2013/01/20 10:21:58 ago Exp $ EAPI="4" @@ -13,7 +13,7 @@ SRC_URI="http://www.greenwoodsoftware.com/less/${P}.tar.gz LICENSE="|| ( GPL-3 BSD-2 )" SLOT="0" -KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="pcre unicode" DEPEND=">=app-misc/editor-wrapper-3 diff --git a/sys-apps/module-init-tools/Manifest b/sys-apps/module-init-tools/Manifest index da9b01eb061d..f1ddf0bd78c1 100644 --- a/sys-apps/module-init-tools/Manifest +++ b/sys-apps/module-init-tools/Manifest @@ -1,9 +1,2 @@ -DIST module-init-tools-3.10.tar.bz2 885014 SHA256 fef01424081e728ff6fadc96a8e9b6e4efe3d21f315f1e27b1a16abf7047c12b -DIST module-init-tools-3.11.1.tar.bz2 200815 SHA256 c5bc5fba03769fec786a305abdf97f37c5d7a33e61b92f4ee4f1b80cbc1d1dc0 -DIST module-init-tools-3.12.tar.bz2 938086 SHA256 d012ab07ea26721467a85a775f34747c1c8897e37f16bec5317d8a72ef8b4f17 SHA512 7c64619148eaf4eb755aca785c6d551d8c05e30b85632ebea00cb939e37f4c8abb28ecd5200e37ea0b204741048db991386eed77c7d6d35414d64421c022a82f WHIRLPOOL 46d9663db93f924225206d9a7ffe5a0a6457e0dcbc81feba8b92d31702961e7469553f890ac9bed8017ba32600132706db4346ca99df9c973c509853c87c9c9c -DIST module-init-tools-3.13.tar.bz2 975594 SHA256 6a29185d09fab7c30817d57994336bb2e1a9da5b80b82c8b282d2c08a221925b SHA512 eb99e77ae95365ca9424f44921716c5c50d612b5f2b1e6f5204e01aa1b1368b9c84131c0861ff57d94a96c10254917aedfee5ef0edd076a8a20d61d077e076b8 WHIRLPOOL 9856fd9052e81170696d6275e9671328bc147ed0b8593d785edb0adbff85617fe38fd97757f872d7b855cebf860779d1f407297a34fb28c852d0f6b9e0e62635 DIST module-init-tools-3.16-man.tar.bz2 9300 SHA256 a80cfeb48279964b2c515ab5ca06925dd22d2187ae1043992650bf7950fc36c8 SHA512 02c7d01412493c8b24d9fd6f7c8bd758a804936e7ccf2dbfe2aeafb01b9e612d55d769ea7c16366fd4a1d07653adace087ab1d84ca9cf60a830dc5866fa7b278 WHIRLPOOL 31d9aaf6cc9ed0a1a11e344610520a2cfd8134e951e4946171c4e92923b3ea3cb1d86e7d9d815d352155af401f558ac6dcfa1a310ed24582cb87854a297c456e DIST module-init-tools-3.16.tar.bz2 228821 SHA256 e1f2cdcae64a8effc25e545a5e0bdaf312f816ebbcd0916e4e87450755fab64b SHA512 c234d66b5981cf9b74a5bec2a9c139f33088c8c65c32c1a30ef6d2b335d72761eac09fd958d694828860ab85dffee518286d8a5f41565539a7cca5d402e467a2 WHIRLPOOL d27ad6694dc44536d61dd90746e6a7e9b852bc49d5c67c9203a817dd3f9ce62552711add0221c1abb24373b8d1e223fd9047d6a6bdc256484698b3e3844b86a4 -DIST module-init-tools-3.6-man.tar.bz2 8872 SHA256 a8b5dcc3572619d604645292abd7adf508511141a3bdb94cf58f79eb86836b22 -DIST module-init-tools-3.6.tar.bz2 230327 SHA256 64a0b3b058f2236be1a8138356306c91e5f23f149a131428e4c7d97b1c050728 -DIST modutils-2.4.27.tar.bz2 234963 SHA256 ab4c9191645f9ffb455ae7c014d8c45339c13a1d0f6914817cfbf30a0bc56bf0 SHA512 5a638ea757f9d2cd7e91a8711eadfc6c723ca3b75757363620c8128772b9c00ddeb46af853711ce4c845096ad322a1dd2e8429be3d2e0a371ca93b1c81aa089d WHIRLPOOL baf623c4e5fe2c92139c27caa317694d8e3e9c60b875c8470218d6ed450e8bb52f8c11c34a1dc855aa3399648b06b77578d08966ec177b1ad7169fb622aef590 diff --git a/sys-apps/module-init-tools/files/module-init-tools-3.1_generate-modprobe-assume-kernel.patch b/sys-apps/module-init-tools/files/module-init-tools-3.1_generate-modprobe-assume-kernel.patch deleted file mode 100644 index 19cfd26d4110..000000000000 --- a/sys-apps/module-init-tools/files/module-init-tools-3.1_generate-modprobe-assume-kernel.patch +++ /dev/null @@ -1,58 +0,0 @@ ---- generate-modprobe.conf -+++ generate-modprobe.conf -@@ -1,20 +1,35 @@ - #! /bin/sh -e - - # Naive shell script to translate modules.conf + defaults to modprobe.conf - # Normal caveats apply, as with any machine translation. --if [ $# -gt 2 ] || [ x"$1" = x--help ]; then -- echo "Usage: $0 [--stdin] [modprobe.conf]" -- echo " Converts your current modules setup to modprobe.conf." -- echo " Don't trust it too much." -- echo " Version 0.1" -- exit 1 --fi -+# -+# Updated 07 May 2004 by Aron Griffis to support -+# --assume-kernel option for Gentoo LiveCD building. See -+# http://bugs.gentoo.org/49927 - -+# Parse command-line - STDIN= --if [ "$1" = "--stdin" ]; then -- STDIN=1 -- shift --fi -+KV=`uname -r` -+while [ -n "$1" ] ; do -+ case "$1" in -+ --assume-kernel=*) -+ KV=${1#*=} -+ ;; -+ --stdin) -+ STDIN=1 -+ ;; -+ --*) -+ echo "Usage: $0 [--stdin] [--assume-kernel=n.n.n] [modprobe.conf]" -+ echo " Converts your current modules setup to modprobe.conf." -+ echo " Don't trust it too much." -+ echo " Version 0.1" -+ exit 1 -+ ;; -+ *) -+ break;; -+ esac -+ shift -+done - - # Set up output if specified. - if [ $# -eq 1 ]; then exec > $1; fi -@@ -221,7 +234,7 @@ - ($0 $MODULE) - ;; - # Ignore default lines which are not required any more. -- "path[boot]=/lib/modules/boot"|"path[toplevel]=/lib/modules/`uname -r`"|"path[toplevel]=/lib/modules/2.4"|"path[kernel]=/lib/modules/kernel"|"path[fs]=/lib/modules/fs"|"path[net]=/lib/modules/net"|"path[scsi]=/lib/modules/scsi"|"path[block]=/lib/modules/block"|"path[cdrom]=/lib/modules/cdrom"|"path[ipv4]=/lib/modules/ipv4"|"path[ipv6]=/lib/modules/ipv6"|"path[sound]=/lib/modules/sound"|"path[fc4]=/lib/modules/fc4"|"path[video]=/lib/modules/video"|"path[misc]=/lib/modules/misc"|"path[pcmcia]=/lib/modules/pcmcia"|"path[atm]=/lib/modules/atm"|"path[usb]=/lib/modules/usb"|"path[ide]=/lib/modules/ide"|"path[ieee1394]=/lib/modules/ieee1394"|"path[mtd]=/lib/modules/mtd"|"generic_stringfile=/lib/modules/`uname -r`/modules.generic_string"|"pcimapfile=/lib/modules/`uname -r`/modules.pcimap"|"isapnpmapfile=/lib/modules/`uname -r`/modules.isapnpmap"|"usbmapfile=/lib/modules/`uname -r`/modules.usbmap"|"parportmapfile=/lib/modules/`uname -r`/modules.parportmap"|"ieee1394mapfile=/lib/modules/`uname -r`/modules.ieee1394map"|"pnpbiosmapfile=/lib/modules/`uname -r`/modules.pnpbiosmap"|"depfile=/lib/modules/`uname -r`/modules.dep"|"persistdir=/var/lib/modules/persist") -+ "path[boot]=/lib/modules/boot"|"path[toplevel]=/lib/modules/$KV"|"path[toplevel]=/lib/modules/2.4"|"path[kernel]=/lib/modules/kernel"|"path[fs]=/lib/modules/fs"|"path[net]=/lib/modules/net"|"path[scsi]=/lib/modules/scsi"|"path[block]=/lib/modules/block"|"path[cdrom]=/lib/modules/cdrom"|"path[ipv4]=/lib/modules/ipv4"|"path[ipv6]=/lib/modules/ipv6"|"path[sound]=/lib/modules/sound"|"path[fc4]=/lib/modules/fc4"|"path[video]=/lib/modules/video"|"path[misc]=/lib/modules/misc"|"path[pcmcia]=/lib/modules/pcmcia"|"path[atm]=/lib/modules/atm"|"path[usb]=/lib/modules/usb"|"path[ide]=/lib/modules/ide"|"path[ieee1394]=/lib/modules/ieee1394"|"path[mtd]=/lib/modules/mtd"|"generic_stringfile=/lib/modules/$KV/modules.generic_string"|"pcimapfile=/lib/modules/$KV/modules.pcimap"|"isapnpmapfile=/lib/modules/$KV/modules.isapnpmap"|"usbmapfile=/lib/modules/$KV/modules.usbmap"|"parportmapfile=/lib/modules/$KV/modules.parportmap"|"ieee1394mapfile=/lib/modules/$KV/modules.ieee1394map"|"pnpbiosmapfile=/lib/modules/$KV/modules.pnpbiosmap"|"depfile=/lib/modules/$KV/modules.dep"|"persistdir=/var/lib/modules/persist") - ;; - - # Ignore prune lines unless they end in .o or .ko, which would diff --git a/sys-apps/module-init-tools/files/module-init-tools-3.2.2-handle-dupliate-aliases.patch b/sys-apps/module-init-tools/files/module-init-tools-3.2.2-handle-dupliate-aliases.patch deleted file mode 100644 index e119ce6bee8e..000000000000 --- a/sys-apps/module-init-tools/files/module-init-tools-3.2.2-handle-dupliate-aliases.patch +++ /dev/null @@ -1,68 +0,0 @@ -http://bugs.gentoo.org/149426 - -keep from blowing up when people have duplicate aliases ... the grep -ends up including new lines and with certain formed comments, hits an -infinite loop ... - -for example, the following inputs illustrates the problem: ----------------------------------------------- -# Old nvidia support ... -alias char-major-195 NVdriver -alias /dev/nvidiactl char-major-195 -alias char-major-195 nvidia -alias /dev/nvidiactl char-major-195 -# To enable Side Band Adressing: NVreg_EnableAGPSBA=1 -#options nvidia NVreg_EnableAGPSBA=1 NVreg_EnableAGPFW=1 -#options nvidia NVreg_SoftEDIDs=0 NVreg_Mobile=3 ----------------------------------------------- -alias a b -alias b a ----------------------------------------------- - -fixes from Martin Vth - ---- generate-modprobe.conf -+++ generate-modprobe.conf -@@ -65,19 +65,29 @@ - # Resolve (possibly recursive) alias: args filename alias - resolve_alias() - { -- RA_RESOLVE=`grep "^alias[ ][ ]*$2[ ]" -- $1 | awk '{ print $3 }'` -+ if [ 0$3 -gt 99 ]; then -+ echo "Infinite recursion detected; aborting after $3 tries (alias '$2')" 1>&2 -+ return 1 -+ fi -+ -+ _RA_RESOLVE=`grep "^alias[ ][ ]*$2[ ]" -- $1 | awk '{ print $3 }'` -+ RA_RESOLVE=`echo "$_RA_RESOLVE" | head -n 1` -+ if [ x"$_RA_RESOLVE" != x"$RA_RESOLVE" ]; then -+ echo "Invalid dupliate alias found for '$2' (results: `echo $_RA_RESOLVE`)" 1>&2 -+ return 1 -+ fi - if [ x"$RA_RESOLVE" = x ]; then - echo $2 - return - fi - # Recurse. -- (resolve_alias $1 "$RA_RESOLVE") -+ (resolve_alias $1 "$RA_RESOLVE" $(($3 + 1))) - } - - # Parse alias: args filename modulename aliasto. - parse_alias() - { -- PA_ALIAS=`resolve_alias $1 $3` -+ PA_ALIAS=`resolve_alias $1 $3` || exit 1 - NAME=`echo $2|sed -e 's/\(block\|char\)-major-\([0-9]\+\)$/\1-major-\2-*/'` - - echo "alias $NAME $PA_ALIAS" -@@ -180,7 +190,8 @@ - parse_options $MODULE `grab_noninstall_options $REST` - INSTALL_OPTIONS=`grab_install_options $REST` - INSTALL_COMMANDS="$INSTALL_COMMANDS $MODULE" -- eval install_$MODNAME=\"/sbin/modprobe $INSTALL_OPTIONS --ignore-install `resolve_alias $MODPROBECONF $MODULE`\" -+ INSTALL_ALIAS=`resolve_alias $MODPROBECONF "$MODULE"` || exit 1 -+ eval install_$MODNAME=\"/sbin/modprobe $INSTALL_OPTIONS --ignore-install $INSTALL_ALIAS\" - ;; - *) - parse_options $MODULE "$REST" diff --git a/sys-apps/module-init-tools/files/module-init-tools-3.2_pre7-abort-on-modprobe-failure.patch b/sys-apps/module-init-tools/files/module-init-tools-3.2_pre7-abort-on-modprobe-failure.patch deleted file mode 100644 index ed217bdc3cb3..000000000000 --- a/sys-apps/module-init-tools/files/module-init-tools-3.2_pre7-abort-on-modprobe-failure.patch +++ /dev/null @@ -1,37 +0,0 @@ -Abort generate-modprobe.conf if modprobe fails, bug #68689. - ---- module-init-tools-3.2-pre7/generate-modprobe.conf 2005-07-15 11:21:54.000000000 +0200 -+++ module-init-tools-3.2-pre7.az/generate-modprobe.conf 2005-07-15 11:24:33.000000000 +0200 -@@ -35,22 +35,28 @@ - MODPROBECONF=`mktemp /tmp/modprobe.XXXXXX || tempfile || echo /tmp/modprobe.$$` - trap "rm -f $MODPROBECONF" 0 - -+modprobe_abort() -+{ -+ echo Failed to to run modprobe. Giving up. 1>&2 -+ exit 1 -+} -+ - if [ x"$TESTING_MODPROBE_CONF" != x ]; then - cp $TESTING_MODPROBE_CONF $MODPROBECONF - elif [ "$STDIN" = "1" ]; then - cat > $MODPROBECONF - elif [ -x /sbin/modprobe.old ]; then - # In sbin. -- /sbin/modprobe.old -c > $MODPROBECONF -+ /sbin/modprobe.old -c > $MODPROBECONF || modprobe_abort - elif modprobe.old -c >/dev/null 2>&1; then - # Somewhere in path. -- modprobe.old -c > $MODPROBECONF -+ modprobe.old -c > $MODPROBECONF || modprobe_abort - elif /sbin/modprobe -V 2>/dev/null | grep -q 'modprobe version'; then - # Running /sbin/modprobe gives old version. -- /sbin/modprobe -c > $MODPROBECONF -+ /sbin/modprobe -c > $MODPROBECONF || modprobe_abort - elif modprobe -V 2>/dev/null | grep -q 'modprobe version'; then - # Running modprobe gives old version. -- modprobe -c > $MODPROBECONF -+ modprobe -c > $MODPROBECONF || modprobe_abort - else - echo Cannot find old version of modprobe. Giving up. 2>&1 - exit 1 diff --git a/sys-apps/module-init-tools/files/module-init-tools-3.6-hidden-dirs.patch b/sys-apps/module-init-tools/files/module-init-tools-3.6-hidden-dirs.patch deleted file mode 100644 index 9d215bc12e9f..000000000000 --- a/sys-apps/module-init-tools/files/module-init-tools-3.6-hidden-dirs.patch +++ /dev/null @@ -1,17 +0,0 @@ -http://bugs.gentoo.org/245271 - ---- a/modprobe.c -+++ b/modprobe.c -@@ -1289,6 +1289,12 @@ - DIR *dir; - int ret = 0; - -+ /* Ignore hidden dirs. This allows people to maintain things with -+ * SCMs like .svn/ or .git/ or ... -+ */ -+ if (filename[0] == '.') -+ return 1; -+ - /* Reiser4 has file/directory duality: treat it as both. */ - dir = opendir(filename); - if (dir) { diff --git a/sys-apps/module-init-tools/files/module-init-tools-3.6-skip-sys-check.patch b/sys-apps/module-init-tools/files/module-init-tools-3.6-skip-sys-check.patch deleted file mode 100644 index e965e25b48ff..000000000000 --- a/sys-apps/module-init-tools/files/module-init-tools-3.6-skip-sys-check.patch +++ /dev/null @@ -1,50 +0,0 @@ -http://bugs.gentoo.org/258442 - -From 1a55ee5297b883ea4b43cdf74ad890873ebe966c Mon Sep 17 00:00:00 2001 -From: Mike Frysinger -Date: Fri, 13 Feb 2009 02:21:10 -0500 -Subject: [PATCH] modprobe: remove pointless /sys requirement - -When modprobe was converted from parsing /proc to parsing /sys, it was not -a straight conversion. Instead, a "sanity" check was added early on where -modprobe would simply abort doing anything useful if /sys isn't mounted. -Unfortunately, this makes modprobe fairly unusable. Considering the -kernel itself can invoke modprobe before userspace gets a chance to start -the init process (and actually mount /sys), we end up with a chicken and -egg issue. Which gets even worse when the kernel keeps running modprobe -over and over and the boot output fills up with: -modprobe: FATAL: /sys is not mounted. -modprobe: FATAL: /sys is not mounted. -modprobe: FATAL: /sys is not mounted. -modprobe: FATAL: /sys is not mounted. -modprobe: FATAL: /sys is not mounted. -modprobe: FATAL: /sys is not mounted. - -Since modprobe itself is already written to handle the case where it -cannot figure out whether a given module is loaded (and so was able to run -perfectly fine without /proc being mounted), the check is wholly useless. - -Signed-off-by: Mike Frysinger ---- - modprobe.c | 5 ----- - 1 files changed, 0 insertions(+), 5 deletions(-) - -diff --git a/modprobe.c b/modprobe.c -index 022004c..110204b 100644 ---- a/modprobe.c -+++ b/modprobe.c -@@ -1522,11 +1522,6 @@ static void handle_module(const char *modname, - const char *cmdline_opts, - int flags) - { -- struct stat finfo; -- -- if (stat("/sys/module", &finfo) < 0) -- fatal("/sys is not mounted.\n"); -- - if (list_empty(todo_list)) { - const char *command; - --- -1.6.1.3 - diff --git a/sys-apps/module-init-tools/files/modutils-2.4.27-alias.patch b/sys-apps/module-init-tools/files/modutils-2.4.27-alias.patch deleted file mode 100644 index 1fefffb62f85..000000000000 --- a/sys-apps/module-init-tools/files/modutils-2.4.27-alias.patch +++ /dev/null @@ -1,86 +0,0 @@ -Taken from Debian. - -Update misc alias cruft. - ---- util/alias.h -+++ util/alias.h -@@ -52,7 +52,11 @@ - "binfmt--310 binfmt_java", - - "block-major-1 rd", -+#if defined(__s390__) || defined(__s390x__) || defined(__ia64__) || defined(__powerpc__) -+ "block-major-2 off", -+#else - "block-major-2 floppy", -+#endif - "block-major-3 ide-probe-mod", - "block-major-7 loop", - "block-major-8 sd_mod", -@@ -107,6 +111,7 @@ - /* /dev/sunmouse Sun mouse */ - /* /dev/beep Fancy beep device */ - /* /dev/modreq Kernel module load request */ -+ "char-major-10-116 snd", - "char-major-10-130 wdt", /* /dev/watchdog Watchdog timer port */ - "char-major-10-131 wdt", /* /dev/temperature Machine internal temperature */ - /* /dev/hwtrap Hardware fault trap */ -@@ -116,7 +121,11 @@ - "char-major-10-144 nvram", /* from Tigran Aivazian */ - "char-major-10-157 applicom", /* from David Woodhouse */ - "char-major-10-175 agpgart", /* /dev/agpgart GART AGP mapping access */ -+ "char-major-10-181 toshiba", -+ "char-major-10-183 hw_random", - "char-major-10-184 microcode", /* Tigran Aivazian */ -+ "char-major-10-187 irnet", -+ "char-major-10-189 ussp", - "char-major-10-200 tun", /* Universal TUN/TAP device driver */ - "char-major-10-250 hci_vhci", - -@@ -179,6 +203,11 @@ - /* next two from Thanks! */ - "net-pf-17 af_packet", - "net-pf-19 off", /* acorn econet */ -+ "net-pf-20 atm", -+ "net-pf-23 irda", -+ "net-pf-24 pppoe", -+ "net-pf-25 wanrouter", -+ "net-pf-26 llc", - - "net-pf-31 bluez", - -@@ -199,6 +228,10 @@ - "bt-proto-2 sco", - "bt-proto-3 rfcomm", - "bt-proto-4 bnep", -+ "bt-proto-5 cmtp", -+ "bt-proto-6 hidp", -+ "bt-proto-7 avdtp", -+ - - "plip0 plip", - "plip1 plip", -@@ -228,6 +261,7 @@ - "ppp-compress-21 bsd_comp", - "ppp-compress-24 ppp_deflate", - "ppp-compress-26 ppp_deflate", -+ "ppp ppp_async", /* for 2.4 */ - - #ifndef __sparc__ - "parport_lowlevel parport_pc", -@@ -271,9 +305,6 @@ - */ - char *above[] = - { -- "hid keybdev mousedev", -- "usbmouse hid", -- "wacom evdev", - NULL /* marks the end of the list! */ - }; - -@@ -284,7 +315,6 @@ - */ - char *below[] = - { -- "ov518_decomp ov511", - NULL /* marks the end of the list! */ - }; diff --git a/sys-apps/module-init-tools/files/modutils-2.4.27-build.patch b/sys-apps/module-init-tools/files/modutils-2.4.27-build.patch deleted file mode 100644 index 00cc103257f7..000000000000 --- a/sys-apps/module-init-tools/files/modutils-2.4.27-build.patch +++ /dev/null @@ -1,35 +0,0 @@ -http://bugs.gentoo.org/154281 - ---- util/Makefile.in -+++ util/Makefile.in -@@ -42,7 +42,7 @@ - install-bin: all - - dep depend .depend: $(OBJS:.o=.c) -- $(CC) -M $(CFLAGS) $(DEFS) $^ > .depend -+ $(CC) -M $(CPPFLAGS) $(DEFS) $^ > .depend - - ifeq (.depend,$(wildcard .depend)) - include .depend ---- obj/Makefile.in -+++ obj/Makefile.in -@@ -78,7 +78,7 @@ - install-bin: all - - dep depend .depend: $(LIBOBJ_SRCS) -- $(CC) -M $(CFLAGS) $(DEFSNOARCH) $(DEFS) $^ > .depend -+ $(CC) -M $(CPPFLAGS) $(DEFSNOARCH) $(DEFS) $^ > .depend - - ifeq (.depend,$(wildcard .depend)) - include .depend ---- insmod/Makefile.in.orig 2006-11-06 16:10:44.000000000 -0500 -+++ insmod/Makefile.in 2006-11-06 16:10:53.000000000 -0500 -@@ -146,7 +146,7 @@ - rm -f Makefile - - dep depend .depend: $(addsuffix .c, $(PROGS)) -- $(CC) -M $(CFLAGS) $(DEFSNOARCH) $(DEFS) $^ > .depend -+ $(CC) -M $(CPPFLAGS) $(DEFSNOARCH) $(DEFS) $^ > .depend - - ifeq (.depend,$(wildcard .depend)) - include .depend diff --git a/sys-apps/module-init-tools/files/modutils-2.4.27-flex.patch b/sys-apps/module-init-tools/files/modutils-2.4.27-flex.patch deleted file mode 100644 index c07e929b8b42..000000000000 --- a/sys-apps/module-init-tools/files/modutils-2.4.27-flex.patch +++ /dev/null @@ -1,37 +0,0 @@ -Taken from Debian. - -Build with newer flex versions. - ---- modutils-2.4.27.0.orig/genksyms/lex.l -+++ modutils-2.4.27.0/genksyms/lex.l -@@ -130,6 +130,7 @@ - - static int suppress_type_lookup, dont_want_brace_phrase; - static struct string_list *next_node; -+ static int next_token = 0; - - int token, count = 0; - struct string_list *cur_node; -@@ -144,7 +145,12 @@ - } - - repeat: -- token = yylex1(); -+ if (next_token != 0) { -+ token = next_token; -+ next_token = 0; -+ } -+ else -+ token = yylex1(); - - if (token == 0) - return 0; -@@ -425,7 +431,7 @@ - { - /* Put back the token we just read so's we can find it again - after registering the expression. */ -- unput(token); -+ next_token = token; - - lexstate = ST_NORMAL; - token = EXPRESSION_PHRASE; diff --git a/sys-apps/module-init-tools/files/modutils-2.4.27-gcc.patch b/sys-apps/module-init-tools/files/modutils-2.4.27-gcc.patch deleted file mode 100644 index 5193c82e36d9..000000000000 --- a/sys-apps/module-init-tools/files/modutils-2.4.27-gcc.patch +++ /dev/null @@ -1,292 +0,0 @@ -Fix building with newer gcc versions. - -Most changes taken from Debian. - ---- obj/obj_ia64.c -+++ obj/obj_ia64.c -@@ -127,6 +127,7 @@ - return (*(bundle + 1) >> 23) & 0x1ffffffffff; - - default: -+ ; - } - return (-1); - } ---- depmod/depmod.c -+++ depmod/depmod.c -@@ -1133,7 +1133,7 @@ - - for (ksym = ksyms; so_far < nksyms; ++so_far, ksym++) { - if (strncmp((char *)ksym->name, "GPLONLY_", 8) == 0) -- ((char *)ksym->name) += 8; -+ ksym->name = ((char *)ksym->name) + 8; - assert(n_syms < MAX_MAP_SYM); - symtab[n_syms++] = addsym((char *)ksym->name, mod, SYM_DEFINED, 0); - } -@@ -1265,7 +1265,7 @@ - * error. Use the error() routine but do not count - * any errors. Remove in 2.5. - */ -- int save_errors = errors; -+ int save_errors = error_count; - if (!quiet && nberr == 0) - error("*** Unresolved symbols in %s", - ptmod->name); -@@ -1274,7 +1274,7 @@ - nberr++; - if (flag_unresolved_error) - ret = 1; -- errors = save_errors; -+ error_count = save_errors; - } - } - verbose("%s\n", ptmod->name + skipchars); -@@ -1675,6 +1675,6 @@ - #else - int main(int argc, char **argv) - { -- return depmod_main(argc, argv) || errors; -+ return depmod_main(argc, argv) || error_count; - } - #endif /* defined(COMMON_3264) && defined(ONLY_32) */ ---- genksyms/genksyms.c -+++ genksyms/genksyms.c -@@ -45,7 +45,7 @@ - int flag_debug, flag_dump_defs, flag_warnings; - int checksum_version = 1, kernel_version = version(2,0,0); - --static int errors; -+static int num_errors; - static int nsyms; - - static struct symbol *expansion_trail; -@@ -458,7 +458,7 @@ - va_end(args); - putc('\n', stderr); - -- errors++; -+ num_errors++; - } - } - -@@ -476,7 +476,7 @@ - va_end(args); - putc('\n', stderr); - -- errors++; -+ num_errors++; - } - } - -@@ -597,5 +597,5 @@ - nsyms, HASH_BUCKETS, (double)nsyms / (double)HASH_BUCKETS); - } - -- return errors != 0; -+ return num_errors != 0; - } ---- include/util.h -+++ include/util.h -@@ -39,8 +39,8 @@ - extern int xftw(const char *directory, xftw_func_t); - - /* Error logging */ --extern int log; --extern int errors; -+extern int logging; -+extern int error_count; - extern const char *error_file; - - extern int flag_verbose; ---- insmod/insmod.c -+++ insmod/insmod.c -@@ -275,7 +275,7 @@ - if (strncmp((char *)s->name, "GPLONLY_", 8) == 0) { - gplonly_seen = 1; - if (gpl) -- ((char *)s->name) += 8; -+ s->name = ((char *)s->name) + 8; - else - continue; - } -@@ -1679,7 +1679,7 @@ - error_file = "insmod"; - - /* To handle repeated calls from combined modprobe */ -- errors = optind = 0; -+ error_count = optind = 0; - - /* Process the command line. */ - while ((o = getopt_long(argc, argv, "fhkLmnpqrsSvVxXyYNe:o:O:P:R:", -@@ -2064,7 +2064,7 @@ - goto out; - /**** No symbols or sections to be changed after kallsyms above ***/ - -- if (errors) -+ if (error_count) - goto out; - - /* If we were just checking, we made it. */ -@@ -2123,10 +2123,10 @@ - test_read.m.read_start = m_addr + sizeof(struct module); - test_read.m.read_end = test_read.m.read_start + sizeof(test_read.data); - if (sys_init_module(m_name, (struct module *) &test_read)) { -- int old_errors = errors; -+ int old_errors = error_count; - error("has persistent data but the kernel is too old to support it." - " Expect errors during rmmod as well"); -- errors = old_errors; -+ error_count = old_errors; - } - } - -@@ -2152,7 +2152,7 @@ - #else - init_module(m_name, f, m_size, blob_name, noload, flag_load_map); - #endif -- if (errors) { -+ if (error_count) { - if (!noload) - delete_module(m_name); - goto out; ---- insmod/kallsyms.c -+++ insmod/kallsyms.c -@@ -80,7 +80,7 @@ - error_file = "kallsyms"; - - /* To handle repeated calls from combined modprobe */ -- errors = optind = 0; -+ error_count = optind = 0; - - /* Process the command line. */ - while ((c = getopt_long(argc, argv, "Vh", ---- insmod/modprobe.c -+++ insmod/modprobe.c -@@ -1023,7 +1023,7 @@ - if (quiet) - my_argv[my_argc++] = "-q"; - -- if (log) -+ if (logging) - my_argv[my_argc++] = "-s"; - - if (insmod_opt) { ---- insmod/rmmod.c -+++ insmod/rmmod.c -@@ -261,9 +261,9 @@ - read_parm.m.read_start = mp->sym->value; - read_parm.m.read_end = read_parm.m.read_start + datasize; - if (sys_init_module(module, (struct module *) &read_parm)) { -- int old_errors = errors; -+ int old_errors = error_count; - error("has persistent data but the kernel is too old to support it."); -- errors = old_errors; -+ error_count = old_errors; - return(0); - } - ---- util/logger.c -+++ util/logger.c -@@ -31,10 +31,10 @@ - - /*======================================================================*/ - --int log; -+int logging; - static int silent; - --int errors; -+int error_count; - const char *error_file; - const char *program_name; - -@@ -75,7 +75,7 @@ - - if (silent) - ; -- else if (log) { -+ else if (logging) { - char buf[2*PATH_MAX]; - int n; - -@@ -100,7 +100,7 @@ - putc('\n', stderr); - } - -- errors++; -+ error_count++; - } - - void lprintf(const char *fmt,...) -@@ -108,7 +108,7 @@ - va_list args; - - if (silent); -- else if (log) { -+ else if (logging) { - char buf[2*PATH_MAX]; - va_start(args, fmt); - vsnprintf(buf, sizeof(buf), fmt, args); -@@ -132,5 +132,5 @@ - #ifdef STOREMSG - atexit(dumpmsg); - #endif -- log = 1; -+ logging = 1; - } ---- obj/obj_kallsyms.c -+++ obj/obj_kallsyms.c -@@ -200,8 +200,8 @@ - - /* Initial contents, header + one entry per input section. No strings. */ - osec->header.sh_size = sizeof(*a_hdr) + loaded*sizeof(*a_sec); -- a_hdr = (struct kallsyms_header *) osec->contents = -- xmalloc(osec->header.sh_size); -+ osec->contents = xmalloc(osec->header.sh_size); -+ a_hdr = (struct kallsyms_header *) osec->contents; - memset(osec->contents, 0, osec->header.sh_size); - a_hdr->size = sizeof(*a_hdr); - a_hdr->sections = loaded; -@@ -275,8 +275,8 @@ - a_hdr->symbol_off + - a_hdr->symbols*a_hdr->symbol_size + - strings_size - strings_left; -- a_hdr = (struct kallsyms_header *) osec->contents = -- xrealloc(a_hdr, a_hdr->total_size); -+ osec->contents = xrealloc(a_hdr, a_hdr->total_size); -+ a_hdr = (struct kallsyms_header *) osec->contents; - p = (char *)a_hdr + a_hdr->symbol_off; - memcpy(p, symbols, a_hdr->symbols*a_hdr->symbol_size); - free(symbols); ---- obj/obj_ppc.c -+++ obj/obj_ppc.c -@@ -25,6 +25,7 @@ - #include - #include - #include -+#include - - - /*======================================================================*/ -@@ -255,7 +256,8 @@ - archdata_sec->header.sh_size = 0; - sec = obj_find_section(f, "__ftr_fixup"); - if (sec) { -- ad = (struct archdata *) (archdata_sec->contents) = xmalloc(sizeof(*ad)); -+ archdata_sec->contents = xmalloc(sizeof(*ad)); -+ ad = (struct archdata *) (archdata_sec->contents); - memset(ad, 0, sizeof(*ad)); - archdata_sec->header.sh_size = sizeof(*ad); - ad->__start___ftr_fixup = sec->header.sh_addr; ---- obj/obj_mips.c -+++ obj/obj_mips.c -@@ -244,7 +244,8 @@ - archdata_sec->header.sh_size = 0; - sec = obj_find_section(f, "__dbe_table"); - if (sec) { -- ad = (struct archdata *) (archdata_sec->contents) = xmalloc(sizeof(*ad)); -+ archdata_sec->contents = xmalloc(sizeof(*ad)); -+ ad = (struct archdata *) (archdata_sec->contents); - memset(ad, 0, sizeof(*ad)); - archdata_sec->header.sh_size = sizeof(*ad); - ad->__start___dbe_table = sec->header.sh_addr; diff --git a/sys-apps/module-init-tools/files/modutils-2.4.27-hppa.patch b/sys-apps/module-init-tools/files/modutils-2.4.27-hppa.patch deleted file mode 100644 index 30168d3dae12..000000000000 --- a/sys-apps/module-init-tools/files/modutils-2.4.27-hppa.patch +++ /dev/null @@ -1,12 +0,0 @@ -fix support for hppa1.0-unknown-linux-gnu / hppa1.1-unknown-linux-gnu - ---- modutils-2.4.27/configure -+++ modutils-2.4.27/configure -@@ -31,6 +31,7 @@ - powerpc) ARCH=ppc ;; - powerpc64) ARCH=ppc64 ;; - hppa2*) ARCH=hppa64 ;; -+ hppa*) ARCH=hppa ;; - *) ARCH=$host_cpu ;; - esac - diff --git a/sys-apps/module-init-tools/files/modutils-2.4.27-no-nested-function.patch b/sys-apps/module-init-tools/files/modutils-2.4.27-no-nested-function.patch deleted file mode 100644 index 7af4599c7154..000000000000 --- a/sys-apps/module-init-tools/files/modutils-2.4.27-no-nested-function.patch +++ /dev/null @@ -1,43 +0,0 @@ -Patch by the PaX team to get rid of executable stacks. - ---- modutils/insmod/insmod.c -+++ modutils/insmod/insmod.c -@@ -366,18 +366,21 @@ static void hide_special_symbols(struct - sym->info = ELFW(ST_INFO) (STB_LOCAL, ELFW(ST_TYPE) (sym->info)); - } - -+static struct obj_file *load_map_file; -+ -+static int load_map_cmp(const void *a, const void *b) { -+ struct obj_symbol **as = (struct obj_symbol **) a; -+ struct obj_symbol **bs = (struct obj_symbol **) b; -+ unsigned long aa = obj_symbol_final_value(load_map_file, *as); -+ unsigned long ba = obj_symbol_final_value(load_map_file, *bs); -+ return aa < ba ? -1 : aa > ba ? 1 : 0; -+} -+ - static void print_load_map(struct obj_file *f) - { - struct obj_symbol *sym; - struct obj_symbol **all, **p; - struct obj_section *sec; -- int load_map_cmp(const void *a, const void *b) { -- struct obj_symbol **as = (struct obj_symbol **) a; -- struct obj_symbol **bs = (struct obj_symbol **) b; -- unsigned long aa = obj_symbol_final_value(f, *as); -- unsigned long ba = obj_symbol_final_value(f, *bs); -- return aa < ba ? -1 : aa > ba ? 1 : 0; -- } - int i, nsyms, *loaded; - - /* Report on the section layout. */ -@@ -425,7 +428,9 @@ static void print_load_map(struct obj_fi - *p++ = sym; - - /* Sort them by final value. */ -+ load_map_file = f; - qsort(all, nsyms, sizeof(struct obj_file *), load_map_cmp); -+ load_map_file = NULL; - - /* And list them. */ - lprintf("\nSymbols:"); diff --git a/sys-apps/module-init-tools/module-init-tools-3.10.ebuild b/sys-apps/module-init-tools/module-init-tools-3.10.ebuild deleted file mode 100644 index 8876cc3d5af9..000000000000 --- a/sys-apps/module-init-tools/module-init-tools-3.10.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/module-init-tools/module-init-tools-3.10.ebuild,v 1.3 2011/04/24 21:28:11 ulm Exp $ - -inherit eutils - -DESCRIPTION="tools for managing linux kernel modules" -HOMEPAGE="http://modules.wiki.kernel.org/" -SRC_URI="mirror://kernel/linux/utils/kernel/module-init-tools/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="" - -DEPEND="sys-libs/zlib - >=sys-apps/baselayout-2.0.1 - !sys-apps/modutils" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${PN}-3.2.2-handle-dupliate-aliases.patch #149426 - touch *.5 *.8 # dont regen manpages -} - -src_compile() { - econf \ - --prefix=/ \ - --enable-zlib \ - --enable-zlib-dynamic \ - --disable-static-utils - emake || die "emake module-init-tools failed" -} - -src_test() { - ./tests/runtests || die -} - -src_install() { - emake install DESTDIR="${D}" || die - dodoc AUTHORS ChangeLog NEWS README TODO - - into / - newsbin "${FILESDIR}"/update-modules-3.5.sh update-modules || die - doman "${FILESDIR}"/update-modules.8 -} - -pkg_postinst() { - # cheat to keep users happy - if grep -qs modules-update "${ROOT}"/etc/init.d/modules ; then - sed -i 's:modules-update:update-modules:' "${ROOT}"/etc/init.d/modules - fi -} diff --git a/sys-apps/module-init-tools/module-init-tools-3.11.1.ebuild b/sys-apps/module-init-tools/module-init-tools-3.11.1.ebuild deleted file mode 100644 index f8fba7a9d91f..000000000000 --- a/sys-apps/module-init-tools/module-init-tools-3.11.1.ebuild +++ /dev/null @@ -1,89 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/module-init-tools/module-init-tools-3.11.1.ebuild,v 1.6 2011/04/24 21:28:11 ulm Exp $ - -inherit eutils flag-o-matic - -DESCRIPTION="tools for managing linux kernel modules" -HOMEPAGE="http://modules.wiki.kernel.org/" -SRC_URI="mirror://kernel/linux/utils/kernel/module-init-tools/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="static" - -DEPEND="sys-libs/zlib - >=sys-apps/baselayout-2.0.1 - !sys-apps/modutils" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${PN}-3.2.2-handle-dupliate-aliases.patch #149426 - touch *.5 *.8 # dont regen manpages -} - -src_compile() { - mkdir build && cd build #290207 - use static && append-ldflags -static - ECONF_SOURCE=.. \ - econf \ - --prefix=/ \ - --enable-zlib \ - --enable-zlib-dynamic \ - --disable-static-utils - emake || die "emake module-init-tools failed" -} - -src_test() { - ./tests/runtests || die -} - -src_install() { - emake -C build install DESTDIR="${D}" || die - dodoc AUTHORS ChangeLog NEWS README TODO - - into / - newsbin "${FILESDIR}"/update-modules-3.5.sh update-modules || die - doman "${FILESDIR}"/update-modules.8 -} - -pkg_postinst() { - # cheat to keep users happy - if grep -qs modules-update "${ROOT}"/etc/init.d/modules ; then - sed -i 's:modules-update:update-modules:' "${ROOT}"/etc/init.d/modules - fi - - # For files that were upgraded but not renamed via their ebuild to - # have a proper .conf extension, rename them so etc-update tools can - # take care of things. #274942 - local i f cfg - eshopts_push -s nullglob - for f in "${ROOT}"etc/modprobe.d/* ; do - # The .conf files need no upgrading unless a non-.conf exists, - # so skip this until later ... - [[ ${f} == *.conf ]] && continue - # If a .conf doesn't exist, then a package needs updating, or - # the user created it, or it's orphaned. Either way, we don't - # really know, so leave it alone. - [[ ! -f ${f}.conf ]] && continue - - i=0 - while :; do - cfg=$(printf "%s/._cfg%04d_%s.conf" "${f%/*}" ${i} "${f##*/}") - [[ ! -e ${cfg} ]] && break - ((i++)) - done - elog "Updating ${f}; please run 'etc-update'" - mv "${f}.conf" "${cfg}" - mv "${f}" "${f}.conf" - done - # Whine about any non-.conf files that are left - for f in "${ROOT}"etc/modprobe.d/* ; do - [[ ${f} == *.conf ]] && continue - ewarn "The '${f}' file needs to be upgraded to end with a '.conf'." - ewarn "Either upgrade the package that owns it, or manually rename it." - done - eshopts_pop -} diff --git a/sys-apps/module-init-tools/module-init-tools-3.12-r1.ebuild b/sys-apps/module-init-tools/module-init-tools-3.12-r1.ebuild deleted file mode 100644 index d656a9677436..000000000000 --- a/sys-apps/module-init-tools/module-init-tools-3.12-r1.ebuild +++ /dev/null @@ -1,99 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/module-init-tools/module-init-tools-3.12-r1.ebuild,v 1.13 2012/11/24 21:14:02 ssuominen Exp $ - -inherit eutils flag-o-matic - -DESCRIPTION="tools for managing linux kernel modules" -HOMEPAGE="http://modules.wiki.kernel.org/" -SRC_URI="mirror://kernel/linux/utils/kernel/module-init-tools/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="static" -RESTRICT="test" - -DEPEND="sys-libs/zlib - >=sys-apps/baselayout-2.0.1 - !sys-apps/modutils" - -src_unpack() { - unpack ${A} - cd "${S}" - rm -rf tests/build # punt precompiled objects - touch *.5 *.8 # dont regen manpages -} - -src_compile() { - mkdir build && cd build #290207 - use static && append-ldflags -static - ECONF_SOURCE=.. \ - econf \ - --prefix=/ \ - --enable-zlib \ - --enable-zlib-dynamic \ - --disable-static-utils - emake || die -} - -src_test() { - # this manually runs configure and stuff, so ignore it - ./tests/runtests -v || die -} - -src_install() { - emake -C build install DESTDIR="${D}" || die - dodoc AUTHORS ChangeLog NEWS README TODO - - into / - newsbin "${FILESDIR}"/update-modules-3.5.sh update-modules || die - doman "${FILESDIR}"/update-modules.8 || die - - cat <<-EOF > "${T}"/usb-load-ehci-first.conf - install ohci_hcd /sbin/modprobe ehci_hcd ; /sbin/modprobe --ignore-install ohci_hcd \$CMDLINE_OPTS - install uhci_hcd /sbin/modprobe ehci_hcd ; /sbin/modprobe --ignore-install uhci_hcd \$CMDLINE_OPTS - EOF - - insinto /etc/modprobe.d - doins "${T}"/usb-load-ehci-first.conf || die #260139 -} - -pkg_postinst() { - # cheat to keep users happy - if grep -qs modules-update "${ROOT}"/etc/init.d/modules ; then - sed -i 's:modules-update:update-modules:' "${ROOT}"/etc/init.d/modules - fi - - # For files that were upgraded but not renamed via their ebuild to - # have a proper .conf extension, rename them so etc-update tools can - # take care of things. #274942 - local i f cfg - eshopts_push -s nullglob - for f in "${ROOT}"etc/modprobe.d/* ; do - # The .conf files need no upgrading unless a non-.conf exists, - # so skip this until later ... - [[ ${f} == *.conf ]] && continue - # If a .conf doesn't exist, then a package needs updating, or - # the user created it, or it's orphaned. Either way, we don't - # really know, so leave it alone. - [[ ! -f ${f}.conf ]] && continue - - i=0 - while :; do - cfg=$(printf "%s/._cfg%04d_%s.conf" "${f%/*}" ${i} "${f##*/}") - [[ ! -e ${cfg} ]] && break - ((i++)) - done - elog "Updating ${f}; please run 'etc-update'" - mv "${f}.conf" "${cfg}" - mv "${f}" "${f}.conf" - done - # Whine about any non-.conf files that are left - for f in "${ROOT}"etc/modprobe.d/* ; do - [[ ${f} == *.conf ]] && continue - ewarn "The '${f}' file needs to be upgraded to end with a '.conf'." - ewarn "Either upgrade the package that owns it, or manually rename it." - done - eshopts_pop -} diff --git a/sys-apps/module-init-tools/module-init-tools-3.13.ebuild b/sys-apps/module-init-tools/module-init-tools-3.13.ebuild deleted file mode 100644 index b86bc7633928..000000000000 --- a/sys-apps/module-init-tools/module-init-tools-3.13.ebuild +++ /dev/null @@ -1,99 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/module-init-tools/module-init-tools-3.13.ebuild,v 1.1 2011/06/01 15:00:31 vapier Exp $ - -inherit eutils flag-o-matic - -DESCRIPTION="tools for managing linux kernel modules" -HOMEPAGE="http://modules.wiki.kernel.org/" -SRC_URI="mirror://kernel/linux/utils/kernel/module-init-tools/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="static" -RESTRICT="test" - -DEPEND="sys-libs/zlib - ! "${T}"/usb-load-ehci-first.conf - install ohci_hcd /sbin/modprobe ehci_hcd ; /sbin/modprobe --ignore-install ohci_hcd \$CMDLINE_OPTS - install uhci_hcd /sbin/modprobe ehci_hcd ; /sbin/modprobe --ignore-install uhci_hcd \$CMDLINE_OPTS - EOF - - insinto /etc/modprobe.d - doins "${T}"/usb-load-ehci-first.conf || die #260139 -} - -pkg_postinst() { - # cheat to keep users happy - if grep -qs modules-update "${ROOT}"/etc/init.d/modules ; then - sed -i 's:modules-update:update-modules:' "${ROOT}"/etc/init.d/modules - fi - - # For files that were upgraded but not renamed via their ebuild to - # have a proper .conf extension, rename them so etc-update tools can - # take care of things. #274942 - local i f cfg - eshopts_push -s nullglob - for f in "${ROOT}"etc/modprobe.d/* ; do - # The .conf files need no upgrading unless a non-.conf exists, - # so skip this until later ... - [[ ${f} == *.conf ]] && continue - # If a .conf doesn't exist, then a package needs updating, or - # the user created it, or it's orphaned. Either way, we don't - # really know, so leave it alone. - [[ ! -f ${f}.conf ]] && continue - - i=0 - while :; do - cfg=$(printf "%s/._cfg%04d_%s.conf" "${f%/*}" ${i} "${f##*/}") - [[ ! -e ${cfg} ]] && break - ((i++)) - done - elog "Updating ${f}; please run 'etc-update'" - mv "${f}.conf" "${cfg}" - mv "${f}" "${f}.conf" - done - # Whine about any non-.conf files that are left - for f in "${ROOT}"etc/modprobe.d/* ; do - [[ ${f} == *.conf ]] && continue - ewarn "The '${f}' file needs to be upgraded to end with a '.conf'." - ewarn "Either upgrade the package that owns it, or manually rename it." - done - eshopts_pop -} diff --git a/sys-apps/module-init-tools/module-init-tools-3.6-r1.ebuild b/sys-apps/module-init-tools/module-init-tools-3.6-r1.ebuild deleted file mode 100644 index 7c1add578fe2..000000000000 --- a/sys-apps/module-init-tools/module-init-tools-3.6-r1.ebuild +++ /dev/null @@ -1,166 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/module-init-tools/module-init-tools-3.6-r1.ebuild,v 1.3 2011/04/24 21:28:11 ulm Exp $ - -inherit flag-o-matic eutils toolchain-funcs fixheadtails - -MODUTILS_PV="2.4.27" - -MY_P="${P/_pre/-pre}" -DESCRIPTION="tools for managing linux kernel modules" -HOMEPAGE="http://modules.wiki.kernel.org/" -SRC_URI="mirror://kernel/linux/utils/kernel/module-init-tools/${MY_P}.tar.bz2 - old-linux? ( mirror://kernel/linux/utils/kernel/modutils/v2.4/modutils-${MODUTILS_PV}.tar.bz2 ) - mirror://gentoo/${MY_P}-man.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="old-linux" -# The test code runs `make clean && configure` and screws up src_compile() -RESTRICT="test" - -DEPEND="sys-libs/zlib - >=sys-apps/baselayout-1.12.7-r2 - !sys-apps/modutils" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - unpack ${A} - - # Patches for old modutils - if use old-linux ; then - cd "${WORKDIR}"/modutils-${MODUTILS_PV} - epatch "${FILESDIR}"/modutils-2.4.27-alias.patch - epatch "${FILESDIR}"/modutils-2.4.27-gcc.patch - epatch "${FILESDIR}"/modutils-2.4.27-flex.patch - epatch "${FILESDIR}"/modutils-2.4.27-no-nested-function.patch - epatch "${FILESDIR}"/modutils-2.4.27-hppa.patch - epatch "${FILESDIR}"/modutils-2.4.27-build.patch #154281 - fi - - # Fixes for new module-init-tools - cd "${S}" - ht_fix_file tests/test-depmod/10badcommand.sh - # Test fails due since it needs to write to /lib/modules so disable it - rm -f tests/test-depmod/01backcompat.sh - - # Fix bug 49926: This patch allows generate-modprobe.conf to - # accept the --assume-kernel=x.x.x option for generating livecds. - # This is a companion to a patch in baselayout-1.9.0 which allows - # the same flag to modules-update. - epatch "${FILESDIR}"/${PN}-3.1_generate-modprobe-assume-kernel.patch - - # Abort if we fail to run modprobe, bug #68689 - epatch "${FILESDIR}"/${PN}-3.2_pre7-abort-on-modprobe-failure.patch - epatch "${FILESDIR}"/${PN}-3.2.2-handle-dupliate-aliases.patch #149426 - epatch "${FILESDIR}"/${PN}-3.6-hidden-dirs.patch #245271 - epatch "${FILESDIR}"/${P}-skip-sys-check.patch #258442 - - # make sure we link dynamically with zlib; our zlib.so is in /lib vs - # /usr/lib so it's safe to link with. fixes ugly textrels as well. - sed -i \ - -e 's:-Wl,-Bstatic -lz -Wl,-Bdynamic:-lz:' \ - configure || die - - # make sure we don't try to regen the manpages - touch *.5 *.8 -} - -src_compile() { - # Configure script uses BUILDCFLAGS for cross-compiles but this - # defaults to CFLAGS which can be bad mojo - export BUILDCFLAGS=-pipe - export BUILDCC=$(tc-getBUILD_CC) - - if use old-linux ; then - einfo "Building modutils ..." - cd "${WORKDIR}"/modutils-${MODUTILS_PV} - econf \ - --disable-strip \ - --prefix=/ \ - --enable-insmod-static \ - --disable-zlib \ - || die "econf failed" - emake || die "emake modutils failed" - - einfo "Building module-init-tools ..." - cd "${S}" - fi - - econf \ - --prefix=/ \ - --enable-zlib \ - || die "econf failed" - emake || die "emake module-init-tools failed" -} - -modutils_src_install() { - cd "${WORKDIR}"/modutils-${MODUTILS_PV} - einstall prefix="${D}" || die - docinto modutils-${MODUTILS_PV} - dodoc CREDITS ChangeLog NEWS README TODO - - # remove man pages provided by the man-pages package now #124127 - rm -r "${D}"/usr/share/man/man2 - - cd "${S}" - # This copies the old version of modutils to *.old so it still works - # with kernels <= 2.4; new versions will execve() the .old version if - # a 2.4 kernel is running... - # This code was borrowed from the module-init-tools Makefile - local runme f - for f in lsmod modprobe rmmod depmod insmod insmod.static modinfo ; do - if [[ -L ${D}/sbin/${f} ]] ; then - einfo "Moving symlink $f to ${f}.old" - #runme = the target of the symlink with a .old tagged on. - runme=$(ls -l "${D}"/sbin/${f} | sed 's/.* -> //').old - [[ ! -e ${D}/sbin/${runme} ]] || einfo "${D}/sbin/${runme} not found" - dosym ${runme} /sbin/${f} || die - elif [[ -e ${D}/sbin/${f} ]] ; then - einfo "Moving executable $f to ${f}.old" - fi - mv -f "${D}"/sbin/${f} "${D}"/sbin/${f}.old - done - # Move the man pages as well. We only do this for the man pages of the - # tools that module-init-tools will replace. - for f in "${D}"/usr/share/man/man8/{lsmod,modprobe,rmmod,depmod,insmod}.8 - do - mv -f ${f} ${f%\.*}.old.${f##*\.} - done - # Fix the ksyms links #35601 - for f in ksyms kallsyms ; do - dosym insmod.old /sbin/${f} - dosym insmod.static.old /sbin/${f}.static - done -} - -src_install() { - use old-linux && modutils_src_install - - cd "${S}" - emake install DESTDIR="${D}" || die - dosym modprobe.conf.5 /usr/share/man/man5/modprobe.d.5 - - # Install compat symlink - dosym ../bin/lsmod /sbin/lsmod - use old-linux && dosym ../sbin/insmod.old /bin/lsmod.old - # Install the modules.conf2modprobe.conf tool, so we can update - # modprobe.conf. - into / - dosbin "${S}"/generate-modprobe.conf || die - newsbin "${FILESDIR}"/update-modules-3.5.sh update-modules || die - doman "${FILESDIR}"/update-modules.8 - - doman *.[1-8] - docinto / - dodoc AUTHORS ChangeLog INSTALL NEWS README TODO -} - -pkg_postinst() { - # cheat to keep users happy - if grep -qs modules-update "${ROOT}"/etc/init.d/modules ; then - sed -i 's:modules-update:update-modules:' "${ROOT}"/etc/init.d/modules - fi -} diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest index 34b7b700edb1..595c67fd0fa2 100644 --- a/sys-apps/portage/Manifest +++ b/sys-apps/portage/Manifest @@ -1,11 +1,10 @@ DIST portage-2.1.11.31.tar.bz2 848585 SHA256 3013e9ba1fc3f87a5fedff8e5a1d2b36d6a9e06538fdebee6ab7b4cf61d273ce SHA512 12222ecb8e3f3b239c7616568475d87f2ef705b83cb72311c0d70df49c7eef1f1bb4e898afb6f17023b40077a80f9ae26129aef0a52f9f16e22140e5ea8d8522 WHIRLPOOL b3d3b0fc90476c6bd6c41a1dea17999ca21598db547c8e691fdd378e9bbacb991954f03378a033755008d7bc27d15b2505f62e6408ec914e840ead4edc0a5c9a -DIST portage-2.1.11.43.tar.bz2 889250 SHA256 daddc843700473e80ff97c8524090676c4b5f2d8ff3ffade7644210f48fa3e1b SHA512 dd38da4ca0810c3c0fa85f4ca102f9cf9eda32287cf7081a32980d84a9b6305fcf4e2c39000705698f982e1ba6b6fdcf90313be4b0c4cb602d666b3f478e978b WHIRLPOOL 8128ad773dfa9b8118a1d3cd73757d0cb5d0f821d6500560cb7c74dd5525614a609bd3f9119df60e73faaa06f302b8effd11bd8c8f57ef526644765d2acc51e7 DIST portage-2.1.11.44.tar.bz2 893137 SHA256 99968c8b3de129e64ef066c15e5b2532562e10711cbfb5476dc09449770e44d3 SHA512 f409f6547f3f03e230271a35e720a90c40523f47ae8c773b98da686edfcf26c861b462cd30eeef3a6c9f5af03ec953697072f0e7c882e05603f5efef1ec4703e WHIRLPOOL c63b1b7b0c942f2ac3705b9c394cebeae0969af8ca8f8f5a2a1fcd3d4f41b9c6a1311d05594f49345bb350fa74cab2d2712ab5f4e0cfcca620e25097a65eb2b1 +DIST portage-2.1.11.47.tar.bz2 894208 SHA256 0e11e3a009be17bd208dece200f1d91ccdacdcf9b916ad2cb69c501a9e724439 SHA512 e9f8f44d809136a5d5cae2e141fa03786786a344cec161195d05baba085f68e973c486f9bcc792e5dd1427db9eb338657ea74843355b8c22552194b69ba70c95 WHIRLPOOL a441b9447ab5919b30c9bf55ac4fb7a63ceedcdfc9f215f22ff8a0b46d2d2be6fa312b54cde417e1c48fa81b9413587efd333d446db0e8e67fcacc2b8134776f DIST portage-2.1.6.7.patch.bz2 50118 SHA256 5f0605b51a24d23703330b040d2f7154322284db3e0cefa7499002ff1fa733c0 SHA512 dd2acc1d436cad77cfc83c4dec79316763c1fb88d61b7702e8e47e6f31b2b9fe49e8a4cf4a947614a2acd6db2ef080ed8b4ae5fce9d9be29d7e218a0ec1576c0 WHIRLPOOL 050f923249fde7c4774a2a8a944889e4270a89b00441f1923c01ab0be38f107503e018d7ab7a7f42615e7e375f0f6c0eb3bdbf3ff4ce1ce226957238a729b1ee DIST portage-2.1.6.7_p1.patch.bz2 4741 SHA256 ddaae2ad8c01e6477bfe22e23a4da57eb9d079a27a17a08385d56fe2c49eec30 SHA512 39058d815827b340787d813515ed4fb8c52c4fb0caa12ae70c8a9a97b9ba16c2bf4177190cb7d1c508055ce8a7aaa390ba9b31642c7d74bfb4a14d729e720617 WHIRLPOOL 8eab9574ed2e6cabac593d93f8b6ff71465c01376e7eec4cf357c336b5ed3d4f3fb3521991148ba4e34ba00c56bec5534c98311167c03866812277a8d88b0494 DIST portage-2.1.6.tar.bz2 518771 SHA256 b1c507445b3858449c861568f477e1cfab8b2326ded906b852c5193fb3839647 SHA512 d035f84601802ecaea3c0edea037a783fec743733bd40895eb5bb8a220449eb24cf1e2623cbca2e378197caba63a833d8cc54f1e49d886266307288b0adcfbdc WHIRLPOOL 25b6a6e3810f428c630ec7a6dc3cf2cfbe6bfdf276553786e1436b2630532ab442186e427bc75f249a224c5171b508a92303ce352b07be1a8a4d805c568ec10f DIST portage-2.2.0_alpha142.tar.bz2 848765 SHA256 c2fb4499fbf747ad11a297f2ab0340f6af7958868cc72530627dd46596e88ff5 SHA512 f0fb016503d1e7998cc295c07ea83d4210075ea3d8c9421e2e9fe4256dde4138a073c60c6f11dc1dd0b3a362404810dea84ee878eec8a0c74bd43ef8e3741d2c WHIRLPOOL 34f1f5ebd2f18e52b1d441d763fda335cdbcc879aa89e36ca5a8e344567c8ab30d7a88864f97a332ba4b2a9d226eae89a41302e73ebe7eb2d33d2a9a0a3211be -DIST portage-2.2.0_alpha150.tar.bz2 882798 SHA256 00a5abb96fe24e4429c1e2dc8dfa11324b4f81aa7c7bd478be92ccecbb57f54e SHA512 691a0dc9394188b2a6a413f25035cf35d967be3a86fab5be42053c45063272a7ab6a8547c46fad54eebe9de75603a4a8c2f059e4a5d44148879722f9c7633c01 WHIRLPOOL 2462a6d6bf7ff0c3b6d5c2a193d3a2f1b033026c383568d692034acd50aa75fc3e340aa35c0d892b7d50d7af2e512e21dbe0fede828eb4a7e3bd155274b574bb -DIST portage-2.2.0_alpha154.patch.bz2 16636 SHA256 2beaeb1849cbbf3bc0e670d964968d03f4d571ba703c2c09b2d65dfbddd68614 SHA512 424bbc83fdfd5cf6523cf37f79dec82a363c3f569697596cbaf61005e69658c4a4e6ff50d0901640faf1a70f666de7f76da9bdeadb97a8b59ce76ef73ebbfb1d WHIRLPOOL b2ad5ae305af5f290563f7768a5d06c37d24646a8e5245cc962c0df9da64fe4df019fa2038610ed607d8edf72d4afc722533638261602b31146b5997f4de05d1 DIST portage-2.2.0_alpha155.tar.bz2 893163 SHA256 b32dae85151f3ccca939a13c9f05268e9d78c2e71f7f319ac3e21accca397112 SHA512 faf95d47df930883c9c7c8dea1e6c29571af644d77c26f2a15db6f67d6f6c13c7dede6eab57bb0227d1f352ebdccf42cd35a8aa1088bbf41915354364d3c1535 WHIRLPOOL ad04c5a404b84b72c6e4f7c0bfc56080c274dcdbb71e32e46d0e2bf05ebbe357d91084edb8fe9878fbe3bd4d89823bfc9c3ba64a62b8ef301e265f056d9073b3 +DIST portage-2.2.0_alpha158.patch.bz2 3627 SHA256 f0dbf32e85c7077675a3f164ecb2cb6a1ab29c5c35bfcf7a3fcb2787c9c09535 SHA512 a97159b70fbb3d715dba6cd0f376a5749812db0f2173f6f02fe97bc76df6bc1170fb08e5bae1266310ce8a23fe465e24cb110e9f725b588278f4b95e5b477dd2 WHIRLPOOL 08ba76f33b2ce99e5c36953127e0d4f6b983cef32c19eedc6f121d3a69e58f216687b2690f1a1840811e7708b226e9f51f1dadf8a4820fcc3542ec274d8215ac DIST portage-man-pl-2.1.2.tar.bz2 53893 SHA256 960eaa7c6f3a2af44bdc665266a8e884628a562373cc477d301597ecc5ef961f SHA512 5f5c8dd1559048546633b1e7291ff8c0f5d637595f1a4c98405424b08c30c089fc9359e0214f78fbe358754f20d327794f4692b9b67639585c29b755975ee853 WHIRLPOOL 756e267b84077501d976f46fa448cda5368cd52aeca6ec43d109c81fe8e2364e0cd0f35630d68a4186c70e3b440b7c870b86ac7ef83cc0afa43e10f9f8e1f422 diff --git a/sys-apps/portage/portage-2.1.11.43.ebuild b/sys-apps/portage/portage-2.1.11.47.ebuild similarity index 99% rename from sys-apps/portage/portage-2.1.11.43.ebuild rename to sys-apps/portage/portage-2.1.11.47.ebuild index 544f140e3979..741e357e6a0d 100644 --- a/sys-apps/portage/portage-2.1.11.43.ebuild +++ b/sys-apps/portage/portage-2.1.11.47.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.1.11.43.ebuild,v 1.1 2013/01/16 15:04:51 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.1.11.47.ebuild,v 1.1 2013/01/20 16:27:26 zmedico Exp $ # Require EAPI 2 since we now require at least python-2.6 (for python 3 # syntax support) which also requires EAPI 2. diff --git a/sys-apps/portage/portage-2.2.0_alpha154.ebuild b/sys-apps/portage/portage-2.2.0_alpha158.ebuild similarity index 99% rename from sys-apps/portage/portage-2.2.0_alpha154.ebuild rename to sys-apps/portage/portage-2.2.0_alpha158.ebuild index aa336a29ccd5..71d4fc00692f 100644 --- a/sys-apps/portage/portage-2.2.0_alpha154.ebuild +++ b/sys-apps/portage/portage-2.2.0_alpha158.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.2.0_alpha154.ebuild,v 1.1 2013/01/16 15:05:44 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.2.0_alpha158.ebuild,v 1.1 2013/01/20 16:29:25 zmedico Exp $ # Require EAPI 2 since we now require at least python-2.6 (for python 3 # syntax support) which also requires EAPI 2. @@ -73,7 +73,7 @@ prefix_src_archives() { PV_PL="2.1.2" PATCHVER_PL="" -TARBALL_PV=2.2.0_alpha150 +TARBALL_PV=2.2.0_alpha155 SRC_URI="mirror://gentoo/${PN}-${TARBALL_PV}.tar.bz2 $(prefix_src_archives ${PN}-${TARBALL_PV}.tar.bz2) linguas_pl? ( mirror://gentoo/${PN}-man-pl-${PV_PL}.tar.bz2 diff --git a/sys-apps/systemd/systemd-197.ebuild b/sys-apps/systemd/systemd-197.ebuild index e814e67132dd..2cd68835257e 100644 --- a/sys-apps/systemd/systemd-197.ebuild +++ b/sys-apps/systemd/systemd-197.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/sys-apps/systemd/systemd-197.ebuild,v 1.2 2013/01/19 00:31:40 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-197.ebuild,v 1.3 2013/01/20 17:20:49 mgorny Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) inherit autotools-utils bash-completion-r1 linux-info pam \ - python-single-r1 systemd udev + python-single-r1 systemd DESCRIPTION="System and service manager for Linux" HOMEPAGE="http://www.freedesktop.org/wiki/Software/systemd" @@ -116,7 +116,11 @@ src_configure() { src_install() { autotools-utils_src_install \ bashcompletiondir=/tmp \ - udevlibexecdir="$(udev_get_udevdir)" + udevlibexecdir=/lib/udev + + # README files stating 'hey, this directory was replaced by our + # awesome whatever' + rm "${D}"/{etc/init.d,var/log}/README || die # remove pam.d plugin .la-file prune_libtool_files --modules diff --git a/sys-apps/systemd/systemd-9999.ebuild b/sys-apps/systemd/systemd-9999.ebuild index a30989371906..152288e09a6b 100644 --- a/sys-apps/systemd/systemd-9999.ebuild +++ b/sys-apps/systemd/systemd-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-apps/systemd/systemd-9999.ebuild,v 1.7 2013/01/19 00:31:40 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-9999.ebuild,v 1.8 2013/01/20 17:20:49 mgorny Exp $ EAPI=5 @@ -138,6 +138,10 @@ src_install() { bashcompletiondir=/tmp \ udevlibexecdir=/lib/udev + # README files stating 'hey, this directory was replaced by our + # awesome whatever' + rm "${D}"/{etc/init.d,var/log}/README || die + # remove pam.d plugin .la-file prune_libtool_files --modules diff --git a/sys-apps/v86d/Manifest b/sys-apps/v86d/Manifest index 26aeaa7352cf..9b48736a550c 100644 --- a/sys-apps/v86d/Manifest +++ b/sys-apps/v86d/Manifest @@ -1,3 +1 @@ -DIST v86d-0.1.10.tar.bz2 69819 RMD160 44067f4bf5bdb7ae154e350c9071b41b0cc6968c SHA1 ee9f7e63b44c30e909ffda421848d26601e9bf21 SHA256 634964ae18ef68c8493add2ce150e3b4502badeb0d9194b4bd81241d25e6735c -DIST v86d-0.1.3.tar.bz2 67044 RMD160 717aa7b043979bc9aa3fd702bd656fa9c473dcd8 SHA1 372b20cc10e8435343b05dc197d30721eb3faa61 SHA256 bf0ca221bc5e8a6b06f73a1eb6ae1470ec5b34b987669f7abeb499e6402af3b0 -DIST v86d-0.1.9.tar.bz2 69752 RMD160 e2d9cda4e8b40a5002c8448d1954a06c5fddb3bf SHA1 ca16ae61329847955ca65da3222131866703a02a SHA256 8167dec4ff919cfd73f854bbd3244f05c2b867e014fa8298044ea7cfd66d18a8 +DIST v86d-0.1.10.tar.bz2 69819 SHA256 634964ae18ef68c8493add2ce150e3b4502badeb0d9194b4bd81241d25e6735c diff --git a/sys-apps/v86d/files/v86d-0.1.8-concurrent-make.patch b/sys-apps/v86d/files/v86d-0.1.8-concurrent-make.patch deleted file mode 100644 index 1a969d67f7fc..000000000000 --- a/sys-apps/v86d/files/v86d-0.1.8-concurrent-make.patch +++ /dev/null @@ -1,43 +0,0 @@ -diff -Naurp v86d-0.1.8-orig/Makefile v86d-0.1.8/Makefile ---- v86d-0.1.8-orig/Makefile 2008-09-27 21:52:56.000000000 +0200 -+++ v86d-0.1.8/Makefile 2008-09-27 21:53:50.000000000 +0200 -@@ -17,13 +17,13 @@ ifeq ($(call config_opt,CONFIG_X86EMU),t - CFLAGS += -Ilibs/x86emu - LDFLAGS += -Llibs/x86emu - LDLIBS += -lx86emu -- V86OBJS = v86_x86emu.o v86_mem.o -+ V86OBJS = v86_x86emu.o v86_mem.o v86_common.o - V86LIB = x86emu - else - CFLAGS += -Ilibs/lrmi-0.10 - LDFLAGS += -Llibs/lrmi-0.10 -static - LDLIBS += -llrmi -- V86OBJS = v86_lrmi.o -+ V86OBJS = v86_lrmi.o v86_common.o - V86LIB = lrmi - endif - -@@ -40,17 +40,17 @@ all: $(V86LIB) v86d $(DEBUG_BUILD) - %.o: %.c v86.h - $(CC) $(CFLAGS) -c -o $@ $< - --v86d: v86.o v86_common.o $(V86OBJS) -- $(CC) $(LDFLAGS) $+ $(LDLIBS) -o $@ -+v86d: $(V86OBJS) $(V86LIB) v86.o -+ $(CC) $(LDFLAGS) $(V86OBJS) v86.o $(LDLIBS) -o $@ - --testvbe: testvbe.o v86_common.o $(V86OBJS) -- $(CC) $(LDFLAGS) $+ $(LDLIBS) -o $@ -+testvbe: $(V86OBJS) $(V86LIB) testvbe.o -+ $(CC) $(LDFLAGS) $(V86OBJS) testvbe.o $(LDLIBS) -o $@ - - x86emu: -- make -w -C libs/x86emu -+ $(MAKE) -w -C libs/x86emu - - lrmi: -- make -e -w -C libs/lrmi-0.10 liblrmi.a -+ $(MAKE) -e -w -C libs/lrmi-0.10 liblrmi.a - - clean: - rm -rf *.o v86d testvbe diff --git a/sys-apps/v86d/files/v86d-0.1.9-prot_write.patch b/sys-apps/v86d/files/v86d-0.1.9-prot_write.patch deleted file mode 100644 index 109c1c731b7b..000000000000 --- a/sys-apps/v86d/files/v86d-0.1.9-prot_write.patch +++ /dev/null @@ -1,28 +0,0 @@ -diff --git a/v86_mem.c b/v86_mem.c -index 4cedbbe..23eb7c0 100644 ---- a/v86_mem.c -+++ b/v86_mem.c -@@ -293,7 +293,13 @@ int v86_mem_init(void) - } - vbios_size = tmp[2] * 0x200; - ulog(LOG_DEBUG, "VBIOS at %5x-%5x\n", VBIOS_BASE, VBIOS_BASE + vbios_size - 1); -- mem_vbios = map_file(NULL, vbios_size, PROT_READ, -+ -+ /* -+ * The Video BIOS and the System BIOS have to be mapped with PROT_WRITE. -+ * There is at least one case where mapping them without this flag causes -+ * a segfault during the emulation: https://bugs.gentoo.org/show_bug.cgi?id=245254 -+ */ -+ mem_vbios = map_file(NULL, vbios_size, PROT_READ | PROT_WRITE, - MAP_SHARED, "/dev/mem", VBIOS_BASE); - - if (!mem_vbios) { -@@ -303,7 +309,7 @@ int v86_mem_init(void) - } - - /* Map the system BIOS */ -- mem_sbios = map_file(NULL, SBIOS_SIZE, PROT_READ, -+ mem_sbios = map_file(NULL, SBIOS_SIZE, PROT_READ | PROT_WRITE, - MAP_SHARED, "/dev/mem", SBIOS_BASE); - if (!mem_sbios) { - ulog(LOG_ERR, "Failed to mmap the System BIOS as %5x.", SBIOS_BASE); diff --git a/sys-apps/v86d/metadata.xml b/sys-apps/v86d/metadata.xml index fa995053b5c8..9c1506a1eb33 100644 --- a/sys-apps/v86d/metadata.xml +++ b/sys-apps/v86d/metadata.xml @@ -2,7 +2,7 @@ - spock@gentoo.org + maintainer-needed@gentoo.org Use x86emu for Video BIOS calls diff --git a/sys-apps/v86d/v86d-0.1.3-r1.ebuild b/sys-apps/v86d/v86d-0.1.3-r1.ebuild deleted file mode 100644 index 5a42e23693e7..000000000000 --- a/sys-apps/v86d/v86d-0.1.3-r1.ebuild +++ /dev/null @@ -1,58 +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/v86d/v86d-0.1.3-r1.ebuild,v 1.3 2008/09/27 20:54:16 spock Exp $ - -inherit eutils linux-info - -DESCRIPTION="A daemon to run x86 code in an emulated environment." -HOMEPAGE="http://dev.gentoo.org/~spock/projects/uvesafb/" -SRC_URI="http://dev.gentoo.org/~spock/projects/uvesafb/archive/${P/_/-}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="debug x86emu" - -DEPEND="dev-libs/klibc" -RDEPEND="" - -S="${WORKDIR}/${P//_*/}" - -pkg_setup() { - if [ -z "$(grep V86D /usr/lib/klibc/include/linux/connector.h)" ]; then - eerror "You need to compile klibc against a kernel tree patched with uvesafb" - eerror "prior to merging this package." - die "Kernel not patched with uvesafb." - fi - linux-info_pkg_setup -} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${PN}-0.1.8-concurrent-make.patch" -} - -src_compile() { - local myconf="" - if use x86emu ; then - myconf="--with-x86emu" - fi - - ./configure --with-klibc $(use_with debug) ${myconf} - make KDIR=${KV_DIR} || die -} - -src_install() { - make DESTDIR="${D}" install || die - - dodoc README ChangeLog - - insinto /usr/share/${PN} - doins misc/initramfs -} - -pkg_postinst() { - elog "If you wish to place v86d into an initramfs image, you might want to use" - elog "'/usr/share/${PN}/initramfs' in your kernel's CONFIG_INITRAMFS_SOURCE." -} diff --git a/sys-apps/v86d/v86d-0.1.9.ebuild b/sys-apps/v86d/v86d-0.1.9.ebuild deleted file mode 100644 index 4980ee1d8e1c..000000000000 --- a/sys-apps/v86d/v86d-0.1.9.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/v86d/v86d-0.1.9.ebuild,v 1.5 2010/11/28 18:27:20 spock Exp $ - -inherit eutils flag-o-matic linux-info multilib - -DESCRIPTION="A daemon to run x86 code in an emulated environment." -HOMEPAGE="http://dev.gentoo.org/~spock/projects/uvesafb/" -SRC_URI="http://dev.gentoo.org/~spock/projects/uvesafb/archive/${P/_/-}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="debug x86emu" - -DEPEND="dev-libs/klibc" -RDEPEND="" - -S="${WORKDIR}/${P//_*/}" - -pkg_setup() { - if [ -z "$(grep V86D /usr/$(get_libdir)/klibc/include/linux/connector.h)" ]; then - eerror "You need to compile klibc against a kernel tree patched with uvesafb" - eerror "prior to merging this package." - die "Kernel not patched with uvesafb." - fi - linux-info_pkg_setup -} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}-prot_write.patch" -} - -src_compile() { - # Disable stack protector, as it does not work with klibc (bug #346397). - filter-flags -fstack-protector -fstack-protector-all - ./configure --with-klibc $(use_with debug) $(use_with x86emu) || die - emake KDIR="${KV_DIR}" || die -} - -src_install() { - emake DESTDIR="${D}" install || die - - dodoc README ChangeLog - - insinto /usr/share/${PN} - doins misc/initramfs -} - -pkg_postinst() { - elog "If you wish to place v86d into an initramfs image, you might want to use" - elog "'/usr/share/${PN}/initramfs' in your kernel's CONFIG_INITRAMFS_SOURCE." -} diff --git a/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.8.12.ebuild b/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.8.12.ebuild index a3eae623e0cb..3caa1428ba81 100644 --- a/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.8.12.ebuild +++ b/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.8.12.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-auth/nss-pam-ldapd/nss-pam-ldapd-0.8.12.ebuild,v 1.1 2012/11/19 01:01:44 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.8.12.ebuild,v 1.2 2013/01/20 00:44:08 prometheanfire Exp $ EAPI=4 @@ -56,8 +56,8 @@ src_install() { dodoc NEWS ChangeLog AUTHORS README - # for socket and pid file - keepdir /var/run/nslcd + # for socket and pid file (not needed bug 452992) + #keepdir /var/run/nslcd # init script newinitd "${FILESDIR}"/nslcd-init nslcd diff --git a/sys-auth/otpcalc/otpcalc-0.97-r6.ebuild b/sys-auth/otpcalc/otpcalc-0.97-r6.ebuild index ae2d336c9d3d..9f4e679846a7 100644 --- a/sys-auth/otpcalc/otpcalc-0.97-r6.ebuild +++ b/sys-auth/otpcalc/otpcalc-0.97-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-auth/otpcalc/otpcalc-0.97-r6.ebuild,v 1.4 2013/01/16 11:23:43 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/otpcalc/otpcalc-0.97-r6.ebuild,v 1.5 2013/01/20 17:09:44 ago Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="http://killa.net/infosec/otpCalc/otpCalc-${PV}.tar.gz" LICENSE="GPL-2+" # bundled crypto functions are not used SLOT="0" -KEYWORDS="~alpha amd64 ~ppc ~sparc ~x86" +KEYWORDS="alpha amd64 ~ppc ~sparc ~x86" IUSE="" RDEPEND="x11-libs/gtk+:2 diff --git a/sys-auth/pam_krb5/pam_krb5-4.6.ebuild b/sys-auth/pam_krb5/pam_krb5-4.6.ebuild index d9dd8849c5c2..4b9adbe938eb 100644 --- a/sys-auth/pam_krb5/pam_krb5-4.6.ebuild +++ b/sys-auth/pam_krb5/pam_krb5-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/sys-auth/pam_krb5/pam_krb5-4.6.ebuild,v 1.3 2013/01/18 11:00:26 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_krb5/pam_krb5-4.6.ebuild,v 1.4 2013/01/20 10:50:46 ago Exp $ EAPI=4 @@ -12,7 +12,7 @@ SRC_URI="http://archives.eyrie.org/software/kerberos/pam-krb5-${PV}.tar.gz" LICENSE="|| ( BSD-2 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="" DEPEND="virtual/krb5 diff --git a/sys-auth/polkit/polkit-0.110.ebuild b/sys-auth/polkit/polkit-0.110.ebuild index caaeed4f5df7..a34e4666df5b 100644 --- a/sys-auth/polkit/polkit-0.110.ebuild +++ b/sys-auth/polkit/polkit-0.110.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/polkit/polkit-0.110.ebuild,v 1.2 2013/01/19 15:50:57 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/polkit/polkit-0.110.ebuild,v 1.3 2013/01/20 12:16:16 ssuominen Exp $ EAPI=5 inherit eutils multilib pam pax-utils systemd user @@ -11,7 +11,7 @@ SRC_URI="http://www.freedesktop.org/software/${PN}/releases/${P}.tar.gz" LICENSE="LGPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86" IUSE="examples gtk +introspection kde nls pam selinux systemd" RDEPEND=">=dev-lang/spidermonkey-1.8.5-r1 diff --git a/sys-cluster/slurm/Manifest b/sys-cluster/slurm/Manifest index 3b8911ff7410..75e2f3e8c1cb 100644 --- a/sys-cluster/slurm/Manifest +++ b/sys-cluster/slurm/Manifest @@ -2,3 +2,4 @@ DIST slurm-2.3.4.tar.bz2 5082579 SHA256 2a221316077c4b70df42042d1c94bc552b38060f DIST slurm-2.4.3.tar.bz2 5236537 SHA256 96a36dee1337ea1caf70cdeca2056c1aa0a7f5950800c40d898645f9d99e0e74 SHA512 f8342ac24a8744f840c09f43849503c7e8155472c97a9ad9a361af00256964f83048aec2830adcbcdc6568262d0dd05cd11e6f10cb3b0b7d4a2556a33a9942af WHIRLPOOL 61b656aba784b37990bf042f154fa4e4f04cd7b94fcb4dd985273c16dce1c5fbf0e372a9ab02800703ffbf5612a945768c04f853000b6dc774729a1fb5e5ae49 DIST slurm-2.4.5.tar.bz2 5377708 SHA256 db1d2f559353e0b494cf7a29ec3f7f314cb2e6131e1b8dfe307cf189b51626a4 SHA512 5e0ed11608bfb00a0f7fa8199fc5aef4d7568fa171570b1f40a6356070f4cde7c4227be3997650d3f2c26b46fd408a2b97d48fd0d0b6aef6a3aff9ea75a22b7a WHIRLPOOL 599aa7c846ca655912711286eaadaef732c434f5bcc0ed905b6aa3bfa07be81322c8b6253bc11e7644f6a72918a2c9383682c97847e8bbd78d77c49b56f5ad9f DIST slurm-2.5.0.tar.bz2 5389388 SHA256 ecccb03752a1def4194c88bbd36e782dd6025024eb8ef0cb31f1c9f4e7fd73c7 SHA512 657a148e365cbabf54154e78ac155f09a7751ae985dae42b3ed5d4c143a7305ccce9476ae0cb87caa4d22f007534791daf403b55af8dabf8069ac54f3b783b52 WHIRLPOOL 72bcf724ef9e1b588242f3b1ed14462565ee3eeb44c1493c084f3897f0d542861044dcd0cecf2fb0c834b9b3167b4b508949e4deca1c0d009880fab32c18304c +DIST slurm-2.5.1.tar.bz2 5394385 SHA256 7161508690ab395220caf8eef15b7e5194e7ce9cc71a5766508e8d60a3118540 SHA512 4af462b57478bac65b2d3aa143a2a8a09052eecaa568fdb57b362487660152eeea061b9566a2c56d78c778c8c1a562ae30ba939d061e0983561702be39eedd87 WHIRLPOOL fba06ac2a611cc00b80290f9b20d4e9047d918d86761d2732cd3e244a8233bdec8f78b80e235114d9c273587f6a4d5da640c310bc8ff0591ea3a52e7c5bc4be0 diff --git a/sys-cluster/slurm/slurm-2.5.1.ebuild b/sys-cluster/slurm/slurm-2.5.1.ebuild new file mode 100644 index 000000000000..080ab504d27d --- /dev/null +++ b/sys-cluster/slurm/slurm-2.5.1.ebuild @@ -0,0 +1,261 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/slurm/slurm-2.5.1.ebuild,v 1.1 2013/01/20 13:13:53 alexxy Exp $ + +EAPI=4 + +if [[ ${PV} == *9999* ]]; then + EGIT_REPO_URI="git://github.com/SchedMD/slurm.git" + INHERIT_GIT="git-2" + SRC_URI="" + KEYWORDS="" +else + inherit versionator + if [[ ${PV} == *pre* || ${PV} == *rc* ]]; then + MY_PV=$(replace_version_separator 3 '-0.') # pre-releases or release-candidate + else + MY_PV=$(replace_version_separator 3 '-') # stable releases + fi + MY_P="${PN}-${MY_PV}" + INHERIT_GIT="" + SRC_URI="http://www.schedmd.com/download/total/${MY_P}.tar.bz2" + KEYWORDS="~amd64 ~x86" + S="${WORKDIR}/${MY_P}" +fi + +inherit autotools base eutils pam perl-module user ${INHERIT_GIT} + +DESCRIPTION="SLURM: A Highly Scalable Resource Manager" +HOMEPAGE="http://www.schedmd.com" + +LICENSE="GPL-2" +SLOT="0" +IUSE="lua maui multiple-slurmd +munge mysql pam perl postgres ssl static-libs torque ypbind" + +DEPEND=" + !sys-cluster/torque + !net-analyzer/slurm + !net-analyzer/sinfo + mysql? ( dev-db/mysql ) + munge? ( sys-auth/munge ) + ypbind? ( net-nds/ypbind ) + pam? ( virtual/pam ) + postgres? ( dev-db/postgresql-base ) + ssl? ( dev-libs/openssl ) + lua? ( dev-lang/lua ) + !lua? ( !dev-lang/lua ) + >=sys-apps/hwloc-1.1.1-r1" +RDEPEND="${DEPEND} + dev-libs/libcgroup + maui? ( sys-cluster/maui[slurm] )" + +REQUIRED_USE="torque? ( perl )" + +LIBSLURM_PERL_S="${WORKDIR}/${P}/contribs/perlapi/libslurm/perl" +LIBSLURMDB_PERL_S="${WORKDIR}/${P}/contribs/perlapi/libslurmdb/perl" + +RESTRICT="primaryuri" + +PATCHES=( + "${FILESDIR}/${PN}-2.5.0-nogtk.patch" +) + +src_unpack() { + if [[ ${PV} == *9999* ]]; then + git-2_src_unpack + else + default + fi +} + +pkg_setup() { + enewgroup slurm 500 + enewuser slurm 500 -1 /var/spool/slurm slurm +} + +src_prepare() { + # Gentoo uses /sys/fs/cgroup instead of /cgroup + # FIXME: Can the "^/cgroup" and "\([ =\"]\)/cgroup" patterns be merged? + sed \ + -e 's|\([ =\"]\)/cgroup|\1/sys/fs/cgroup|g' \ + -e "s|^/cgroup|/sys/fs/cgroup|g" \ + -i "${S}/doc/man/man5/cgroup.conf.5" \ + -i "${S}/etc/cgroup.release_common.example" \ + -i "${S}/src/common/xcgroup_read_config.c" \ + || die "Can't sed /cgroup for /sys/fs/cgroup" + # and pids should go to /var/run/slurm + sed -e 's:/var/run/slurmctld.pid:/var/run/slurm/slurmctld.pid:g' \ + -e 's:/var/run/slurmd.pid:/var/run/slurm/slurmd.pid:g' \ + -i "${S}/etc/slurm.conf.example" \ + || die "Can't sed for /var/run/slurmctld.pid" + # also state dirs are in /var/spool/slurm + sed -e 's:StateSaveLocation=*.:StateSaveLocation=/var/spool/slurm:g' \ + -e 's:SlurmdSpoolDir=*.:SlurmdSpoolDir=/var/spool/slurm/slurmd:g' \ + -i "${S}/etc/slurm.conf.example" \ + || die "Can't sed ${S}/etc/slurm.conf.example for StateSaveLocation=*. or SlurmdSpoolDir=*" + # and tmp should go to /var/tmp/slurm + sed -e 's:/tmp:/var/tmp:g' \ + -i "${S}/etc/slurm.conf.example" \ + || die "Can't sed for StateSaveLocation=*./tmp" + # disable sview since it need gtk+ + sed -e '/sview/d' \ + -i configure.ac + sed -e 's:sview::g' \ + -i src/Makefile.am + # apply patches + epatch "${PATCHES[@]}" + elibtoolize + eautoreconf +} + +src_configure() { + local myconf=( + --sysconfdir="${EPREFIX}/etc/${PN}" + --with-hwloc="${EPREFIX}/usr" + --docdir="${EPREFIX}/usr/share/doc/${P}" + --htmldir="${EPREFIX}/usr/share/doc/${P}" + ) + use pam && myconf+=( --with-pam_dir=$(getpam_mod_dir) ) + use mysql || myconf+=( --without-mysql_config ) + use postgres || myconf+=( --without-pg_config ) + econf "${myconf[@]}" \ + $(use_enable pam) \ + $(use_with ssl) \ + $(use_with munge) \ + $(use_enable static-libs static) \ + $(use_enable multiple-slurmd) + + # --htmldir does not seems to propagate... Documentations are installed + # in /usr/share/doc/slurm-2.3.0/html + # instead of /usr/share/doc/slurm-2.3.0.2/html + sed -e "s|htmldir = .*/html|htmldir = \${prefix}/share/doc/slurm-${PVR}/html|g" -i doc/html/Makefile || die + if use perl ; then + # small hack to make it compile + mkdir -p "${S}/src/api/.libs" + mkdir -p "${S}/src/db_api/.libs" + touch "${S}/src/api/.libs/libslurm.so" + touch "${S}/src/db_api/.libs/libslurmdb.so" + cd "${LIBSLURM_PERL_S}" + S="${LIBSLURM_PERL_S}" SRC_PREP="no" perl-module_src_configure + cd "${LIBSLURMDB_PERL_S}" + S="${LIBSLURMDB_PERL_S}" SRC_PREP="no" perl-module_src_configure + cd "${S}" + rm -rf "${S}/src/api/.libs" "${S}/src/db_api/.libs" + fi +} + +src_compile() { + default + use pam && emake -C contribs/pam || die + if use perl ; then + cd "${LIBSLURM_PERL_S}" + S="${LIBSLURM_PERL_S}" perl-module_src_compile + cd "${LIBSLURMDB_PERL_S}" + S="${LIBSLURMDB_PERL_S}" perl-module_src_compile + cd "${S}" + fi + if use torque ; then + emake -C contribs/torque || die + fi +} + +src_install() { + default + use pam && emake DESTDIR="${D}" -C contribs/pam install || die + if use perl; then + cd "${LIBSLURM_PERL_S}" + S="${LIBSLURM_PERL_S}" perl-module_src_install + cd "${LIBSLURMDB_PERL_S}" + S="${LIBSLURMDB_PERL_S}" perl-module_src_install + cd "${S}" + fi + if use torque; then + emake DESTDIR="${D}" -C contribs/torque || die + rm -f "${ED}/usr/bin/mpiexec" || die + fi + use static-libs || find "${ED}" -name '*.la' -exec rm {} + + # install sample configs + keepdir /etc/slurm + insinto /etc/slurm + doins etc/bluegene.conf.example + doins etc/cgroup.conf.example + doins etc/cgroup_allowed_devices_file.conf.example + doins etc/slurm.conf.example + doins etc/slurmdbd.conf.example + exeinto /etc/slurm + doexe etc/cgroup.release_common.example + doexe etc/slurm.epilog.clean + # install init.d files + newinitd "${FILESDIR}/slurmd.initd" slurmd + newinitd "${FILESDIR}/slurmctld.initd" slurmctld + newinitd "${FILESDIR}/slurmdbd.initd" slurmdbd + # install conf.d files + newconfd "${FILESDIR}/slurm.confd" slurm + # Install logrotate file + insinto /etc/logrotate.d + newins "${FILESDIR}/logrotate" slurm || die + # cgroups support + exeinto /etc/slurm/cgroup + doexe etc/cgroup.release_common.example + mv "${D}"/etc/slurm/cgroup/cgroup.release_common.example "${D}"/etc/slurm/cgroup/release_common || die "Can't move cgroup.release_common.example" + ln -s release_common "${D}"/etc/slurm/cgroup/release_cpuset || die "Can't create symbolic link release_cpuset" + ln -s release_common "${D}"/etc/slurm/cgroup/release_devices || die "Can't create symbolic link release_devices" + ln -s release_common "${D}"/etc/slurm/cgroup/release_freezer || die "Can't create symbolic link release_freezer" +} + +pkg_preinst() { + if use munge; then + sed -i 's,\(SLURM_USE_MUNGE=\).*,\11,' "${D}"etc/conf.d/slurm || die + fi + if use ypbind; then + sed -i 's,\(SLURM_USE_YPBIND=\).*,\11,' "${D}"etc/conf.d/slurm || die + fi +} + +create_folders_and_fix_permissions() { + einfo "Fixing permissions in ${@}" + mkdir -p ${@} + chown -R ${PN}:${PN} ${@} +} + +pkg_postinst() { + paths=( + /var/${PN}/checkpoint + /var/${PN} + /var/spool/${PN}/slurmd + /var/spool/${PN} + /var/run/${PN} + /var/log/${PN} + /var/tmp/${PN}/${PN}d + /var/tmp/${PN} + ) + for folder_path in ${paths[@]}; do + create_folders_and_fix_permissions $folder_path + done + einfo + + elog "Please visit the file '/usr/share/doc/${P}/html/configurator.html" + elog "through a (javascript enabled) browser to create a configureation file." + elog "Copy that file to /etc/slurm/slurm.conf on all nodes (including the headnode) of your cluster." + einfo + elog "For cgroup support, please see http://www.schedmd.com/slurmdocs/cgroup.conf.html" + elog "Your kernel must be compiled with the wanted cgroup feature:" + elog " General setup --->" + elog " [*] Control Group support --->" + elog " [*] Freezer cgroup subsystem" + elog " [*] Device controller for cgroups" + elog " [*] Cpuset support" + elog " [*] Simple CPU accounting cgroup subsystem" + elog " [*] Resource counters" + elog " [*] Memory Resource Controller for Control Groups" + elog " [*] Group CPU scheduler --->" + elog " [*] Group scheduling for SCHED_OTHER" + elog "Then, set these options in /etc/slurm/slurm.conf:" + elog " ProctrackType=proctrack/cgroup" + elog " TaskPlugin=task/cgroup" + einfo + ewarn "Paths were created for slurm. Please use these paths in /etc/slurm/slurm.conf:" + for folder_path in ${paths[@]}; do + ewarn " ${folder_path}" + done +} diff --git a/sys-fs/extundelete/Manifest b/sys-fs/extundelete/Manifest index 5c6e544abcbb..3ba78306f202 100644 --- a/sys-fs/extundelete/Manifest +++ b/sys-fs/extundelete/Manifest @@ -1,2 +1,3 @@ DIST extundelete-0.2.0.tar.bz2 97851 SHA256 0f6a3004d8ddcafe63059a104c174f753c7fc95455081f3ff5aaf3b8c100f97b SHA512 2d4b18110795a5318fab5c5889a9b516360ea420215d0a3692322b30e87d5bb3954bbba725a067322cd76e7bba06466032a1405f9fc6dbc3f318723be238b317 WHIRLPOOL 5e79c5485eb323593289bc7b82a0960c9174e91f1491b9c64097c6095b7065b14dfafa3efe89030dbd3007d28ff54bb4d12814f5a5cf72920ceff63085c437a9 +DIST extundelete-0.2.4.tar.bz2 108472 SHA256 a1f9dd61247056d36401ce5d6785e74d08a184340eebd3865c345ddaa93f19f4 SHA512 5c896055b6fa3c38f283a043cca744513fdc1a60e212eac0c78fa868064a8eeb11f540c4cc5ca89ac68da0c1705a40fe45731c203b6748808f85e9870a207bcd WHIRLPOOL b7b9372ce38edf03c9d11199ff0ff225e1993b2e5a791f288db802f4a7789bca52c5e9d56361f18831cf472bdab4b7349e8b0f41ecbd26a6fcdee7d7a9772ec2 DIST extundelete_0.2.0-2.1.debian.tar.gz 6862 SHA256 3e37f24ac60bd60a0d162184b2834b85bac0cd4cd2d055e1f687ed6a88f70f97 SHA512 37b74347a3017edfd28714731125f968f66beac1b7b7ebd1d44e3d3dff9da06216560433f330f4a544da24f7083f6e900fbe8a5c2930e8760405cb72e6a918e3 WHIRLPOOL e403d2f546d3d15032f6e49220cc0ca55bb9d7cfd0515030b57058e4d177f00ac34c378d08e5eb61245287322fa9d4d579d169e41e2b6b01e0109e112dff7642 diff --git a/sys-fs/extundelete/extundelete-0.2.4.ebuild b/sys-fs/extundelete/extundelete-0.2.4.ebuild new file mode 100644 index 000000000000..796bfc94d480 --- /dev/null +++ b/sys-fs/extundelete/extundelete-0.2.4.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/sys-fs/extundelete/extundelete-0.2.4.ebuild,v 1.1 2013/01/20 12:11:01 ssuominen Exp $ + +EAPI=5 + +DESCRIPTION="A utility to undelete files from an ext3 or ext4 partition" +HOMEPAGE="http://extundelete.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT=0 +KEYWORDS="~amd64 ~x86" +IUSE="" + +E2FSPROGS=1.42.6 +RDEPEND=">=sys-fs/e2fsprogs-${E2FSPROGS} + >=sys-libs/e2fsprogs-libs-${E2FSPROGS}" +DEPEND=${RDEPEND} + +DOCS=README diff --git a/sys-fs/fuse/fuse-2.9.1-r1.ebuild b/sys-fs/fuse/fuse-2.9.1-r1.ebuild index 761f4a958b08..fb06d413644b 100644 --- a/sys-fs/fuse/fuse-2.9.1-r1.ebuild +++ b/sys-fs/fuse/fuse-2.9.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-fs/fuse/fuse-2.9.1-r1.ebuild,v 1.10 2012/12/30 14:19:17 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.1-r1.ebuild,v 1.11 2013/01/20 13:09:39 ago Exp $ EAPI=4 inherit eutils libtool linux-info udev toolchain-funcs @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/fuse/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux" IUSE="kernel_linux kernel_FreeBSD static-libs" PDEPEND="kernel_FreeBSD? ( sys-fs/fuse4bsd )" diff --git a/sys-fs/lvm2/lvm2-2.02.97-r1.ebuild b/sys-fs/lvm2/lvm2-2.02.97-r1.ebuild index 3420420bbeb5..1701c4c3de49 100644 --- a/sys-fs/lvm2/lvm2-2.02.97-r1.ebuild +++ b/sys-fs/lvm2/lvm2-2.02.97-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-fs/lvm2/lvm2-2.02.97-r1.ebuild,v 1.8 2013/01/18 10:03:37 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/lvm2-2.02.97-r1.ebuild,v 1.9 2013/01/20 10:14:12 ago Exp $ EAPI=5 inherit eutils multilib toolchain-funcs autotools linux-info udev @@ -12,7 +12,7 @@ SRC_URI="ftp://sources.redhat.com/pub/lvm2/${PN/lvm/LVM}.${PV}.tgz LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc ~x86 ~amd64-linux ~x86-linux" IUSE="readline static static-libs clvm cman +lvm1 selinux +udev +thin" diff --git a/sys-fs/sshfs-fuse/sshfs-fuse-2.4.ebuild b/sys-fs/sshfs-fuse/sshfs-fuse-2.4.ebuild index 38b5d358f636..f4dc9f0df5ba 100644 --- a/sys-fs/sshfs-fuse/sshfs-fuse-2.4.ebuild +++ b/sys-fs/sshfs-fuse/sshfs-fuse-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-fs/sshfs-fuse/sshfs-fuse-2.4.ebuild,v 1.6 2012/11/07 04:20:46 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/sshfs-fuse/sshfs-fuse-2.4.ebuild,v 1.7 2013/01/20 13:17:10 ago Exp $ EAPI="4" @@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/fuse/${P}.tar.gz" HOMEPAGE="http://fuse.sourceforge.net/sshfs.html" LICENSE="GPL-2" -KEYWORDS="amd64 ~arm hppa ~ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="amd64 arm hppa ~ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux" SLOT="0" IUSE="" diff --git a/sys-fs/udev/udev-197-r3.ebuild b/sys-fs/udev/udev-197-r3.ebuild index 8668374d7a3e..59d1d580569f 100644 --- a/sys-fs/udev/udev-197-r3.ebuild +++ b/sys-fs/udev/udev-197-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/udev/udev-197-r3.ebuild,v 1.14 2013/01/19 14:58:10 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-197-r3.ebuild,v 1.17 2013/01/19 18:30:59 ssuominen Exp $ EAPI=4 @@ -38,7 +38,8 @@ COMMON_DEPEND=">=sys-apps/util-linux-2.20 introspection? ( >=dev-libs/gobject-introspection-1.31.1 ) kmod? ( >=sys-apps/kmod-12 ) selinux? ( sys-libs/libselinux ) - !=sys-apps/hwids-20130114[udev] ) + keymap? ( dev-util/gperf )" if [[ ${PV} = 9999* ]] then DEPEND="${DEPEND} app-text/docbook-xsl-stylesheets dev-libs/libxslt + dev-util/gperf >=dev-util/intltool-0.50" fi @@ -139,17 +141,6 @@ src_prepare() eval export {MSG{FMT,MERGE},XGETTEXT}=/bin/true fi - # This check is for maintainers only - if [[ ${PV} = 9999* ]]; then - # Support uClibc wrt bug #443030 with a safe kludge so we know when - # to check for other uses than logs. See the echo for secure_getenv - # at the end of src_prepare(). - if ! [[ $(grep -r secure_getenv * | wc -l) -eq 16 ]]; then - eerror "The line count of secure_getenv failed, see bug #443030" - die - fi - fi - # apply user patches epatch_user @@ -176,8 +167,21 @@ src_prepare() elibtoolize fi - # This is the actual fix for bug #443030 if the check earlier doesn't fail. - if ! use elibc_glibc; then + if [[ ${PV} = 9999* ]]; then + # secure_getenv() disable for non-glibc systems wrt bug #443030 + if ! [[ $(grep -r secure_getenv * | wc -l) -eq 16 ]]; then + eerror "The line count for secure_getenv() failed, see bug #443030" + die + fi + + # gperf disable if keymaps are not requested wrt bug #452760 + if ! [[ $(grep -i gperf Makefile.am | wc -l) -eq 24 ]]; then + eerror "The line count for gperf references failed, see bug 452760" + die + fi + 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 @@ -185,6 +189,8 @@ src_prepare() src_configure() { + use keymap || export ac_cv_path_GPERF=true #452760 + local econf_args econf_args=( @@ -247,6 +253,10 @@ src_compile() v4l_id accelerometer mtd_probe + man/sd_is_fifo.3 + man/sd_notify.3 + man/sd_listen_fds.3 + man/sd-daemon.3 man/udev.7 man/udevadm.8 man/systemd-udevd.8 @@ -282,6 +292,7 @@ src_install() install-dist_udevkeymapforcerelDATA install-dist_udevrulesDATA install-girDATA + install-man3 install-man7 install-man8 install-nodist_systemunitDATA @@ -307,10 +318,16 @@ src_install() 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" + MANPAGES="man/sd-daemon.3 man/sd_notify.3 man/sd_listen_fds.3 \ + man/sd_is_fifo.3 man/sd_booted.3 man/udev.7 man/udevadm.8 \ + man/systemd-udevd.service.8" + MANPAGES_ALIAS="man/sd_is_socket.3 man/sd_is_socket_unix.3 \ + man/sd_is_socket_inet.3 man/sd_is_mq.3 man/sd_notifyf.3 \ + man/SD_LISTEN_FDS_START.3 man/SD_EMERG.3 man/SD_ALERT.3 \ + man/SD_CRIT.3 man/SD_ERR.3 man/SD_WARNING.3 man/SD_NOTICE.3 \ + man/SD_INFO.3 man/SD_DEBUG.3 man/systemd-udevd.8" dist_systemunit_DATA="units/systemd-udevd-control.socket \ - units/systemd-udevd-kernel.socket" + units/systemd-udevd-kernel.socket" nodist_systemunit_DATA="units/systemd-udevd.service \ units/systemd-udev-trigger.service \ units/systemd-udev-settle.service" @@ -362,6 +379,7 @@ pkg_preinst() fi done preserve_old_lib /$(get_libdir)/libudev.so.0 + if has_version '=sys-apps/hwids-20130114[udev] ) + keymap? ( dev-util/gperf )" if [[ ${PV} = 9999* ]] then DEPEND="${DEPEND} app-text/docbook-xsl-stylesheets dev-libs/libxslt + dev-util/gperf >=dev-util/intltool-0.50" fi @@ -139,17 +141,6 @@ src_prepare() eval export {MSG{FMT,MERGE},XGETTEXT}=/bin/true fi - # This check is for maintainers only - if [[ ${PV} = 9999* ]]; then - # Support uClibc wrt bug #443030 with a safe kludge so we know when - # to check for other uses than logs. See the echo for secure_getenv - # at the end of src_prepare(). - if ! [[ $(grep -r secure_getenv * | wc -l) -eq 13 ]]; then - eerror "The line count of secure_getenv failed, see bug #443030" - die - fi - fi - # apply user patches epatch_user @@ -176,8 +167,21 @@ src_prepare() elibtoolize fi - # This is the actual fix for bug #443030 if the check earlier doesn't fail. - if ! use elibc_glibc; then + if [[ ${PV} = 9999* ]]; then + # secure_getenv() disable for non-glibc systems wrt bug #443030 + if ! [[ $(grep -r secure_getenv * | wc -l) -eq 13 ]]; then + eerror "The line count for secure_getenv() failed, see bug #443030" + die + fi + + # gperf disable if keymaps are not requested wrt bug #452760 + if ! [[ $(grep -i gperf Makefile.am | wc -l) -eq 24 ]]; then + eerror "The line count for gperf references failed, see bug 452760" + die + fi + 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 @@ -185,6 +189,8 @@ src_prepare() src_configure() { + use keymap || export ac_cv_path_GPERF=true #452760 + local econf_args econf_args=( @@ -247,6 +253,10 @@ src_compile() v4l_id accelerometer mtd_probe + man/sd_is_fifo.3 + man/sd_notify.3 + man/sd_listen_fds.3 + man/sd-daemon.3 man/udev.7 man/udevadm.8 man/systemd-udevd.8 @@ -282,6 +292,7 @@ src_install() install-dist_udevkeymapforcerelDATA install-dist_udevrulesDATA install-girDATA + install-man3 install-man7 install-man8 install-nodist_systemunitDATA @@ -307,10 +318,16 @@ src_install() 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" + MANPAGES="man/sd-daemon.3 man/sd_notify.3 man/sd_listen_fds.3 \ + man/sd_is_fifo.3 man/sd_booted.3 man/udev.7 man/udevadm.8 \ + man/systemd-udevd.service.8" + MANPAGES_ALIAS="man/sd_is_socket.3 man/sd_is_socket_unix.3 \ + man/sd_is_socket_inet.3 man/sd_is_mq.3 man/sd_notifyf.3 \ + man/SD_LISTEN_FDS_START.3 man/SD_EMERG.3 man/SD_ALERT.3 \ + man/SD_CRIT.3 man/SD_ERR.3 man/SD_WARNING.3 man/SD_NOTICE.3 \ + man/SD_INFO.3 man/SD_DEBUG.3 man/systemd-udevd.8" dist_systemunit_DATA="units/systemd-udevd-control.socket \ - units/systemd-udevd-kernel.socket" + units/systemd-udevd-kernel.socket" nodist_systemunit_DATA="units/systemd-udevd.service \ units/systemd-udev-trigger.service \ units/systemd-udev-settle.service" @@ -362,6 +379,7 @@ pkg_preinst() fi done preserve_old_lib /$(get_libdir)/libudev.so.0 + if has_version ' latest Git branch "master" # genkernel-VERSION -> normal genkernel release @@ -43,7 +43,7 @@ else inherit bash-completion-r1 eutils SRC_URI="mirror://gentoo/${P}.tar.bz2 ${COMMON_URI}" - KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc ~x86" + KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86" fi DESCRIPTION="Gentoo automatic kernel building scripts" diff --git a/sys-kernel/hardened-sources/Manifest b/sys-kernel/hardened-sources/Manifest index 7959462d1b59..138f3f029d46 100644 --- a/sys-kernel/hardened-sources/Manifest +++ b/sys-kernel/hardened-sources/Manifest @@ -20,23 +20,27 @@ DIST genpatches-3.5-5.base.tar.bz2 122034 SHA256 50828709004b240ce3d3dcfedc4d88a DIST genpatches-3.5-5.extras.tar.bz2 17507 SHA256 1b2294687e842e6450184ce2800ba3df8006ca47d75f95437a1e1d2976162727 SHA512 2eefd45f853e9bab3f89701e470309471b5b2c9ed651dba03776a47d11e26c00170d32aaac547889ae7cee435278bb5ffa4ddc1dc769e6440d454008f62ce23d WHIRLPOOL 43dfd1c6a046e3dc07db72e8d7f062689366112ccf080a17b84bc7adda3e5257d7be551e0a34b6c79c9016b5b04bad5bdf8c52589dcc362dc675f72ca7681135 DIST genpatches-3.7-1.base.tar.bz2 5157 SHA256 f52abbd98168691ca69de973a62803d738499d9278ee46295d5d57c5097f0700 SHA512 8e12fb6aa2204b428a2fde920d36f8b0bc7832ffc1e9faeea10a3c5fc644b64dd44bb944aae7741616a635fb8d6951a6337b5926207fe332b69ee3de7f7fa595 WHIRLPOOL 7be5daed9b82f5e0e72b333ceaf62c5d8b5dc6072cce2e722c603fd6b2c8836b77f12a29c2f94aeaca896f92c8fa5fc1930eea3a9062b2453977703b00b3e3fe DIST genpatches-3.7-3.base.tar.bz2 14787 SHA256 a4ce4247ebcbba337f7efa25acf3e42a19f8d165068c6c13d3cae63bc5fe603e SHA512 89b0b5dbd050ec07f5bbbb999e44113d1e1a1898ca4c8ba5f88e1645d1b88169d7a2a534d08e8eed342f685693142794d27b09dfe4bc067c64332c38ce4d6b9f WHIRLPOOL f213a1793c0d3883659ebab53ff9aa5ecc7dbb842b1a89330b3b637f4bb3a356c3f9be9ca712fe1ab5bde06d27118f62c33434275c9aa6bf0871e39a06c20fcd +DIST genpatches-3.7-5.base.tar.bz2 129620 SHA256 6db9674a1380748017e12ecf097ce14d655e74d164210f0cc13057bd7c0d85e2 SHA512 0626fdf3d6c8b76e911b14d7e49beda00ba63ebd06ad7553ca9e60b775f8a26a794de21359498a747d3d6dd8244a53255033a19553409db9658071a273087ca9 WHIRLPOOL b5c9975ee15ff3626054168df94175b863c64102210688f14c3beffcefc040cdae53af06134e060c28a233ac1086661d585fe3e2d1a60184223b571815b1b1c2 DIST hardened-patches-2.6.32-118.extras.tar.bz2 753437 SHA256 11ad917cf892f7253524db9a8100ed36e9c385180ed530d972d5b3113d0c7ba1 SHA512 ec696b23c5b1217d72b64c1b612534d1a75682b05a4ba38223bc7383b34e3a4266a2e8181eebf7c9a7b1375e966f81d92241628e802307abd639b6494267aff7 WHIRLPOOL 0d274ddb697fe733cbe94ccaadf1fdaa63217ac834712a4ab1933903cf487b8b222928241632b2ffaa39ca03e386dd1d7891eb0954823e3e1b625433e0ea5aa9 DIST hardened-patches-2.6.32-133.extras.tar.bz2 776996 SHA256 e5b663a640c3c1122eddd37f3c7a39579ddbe001e08621fe4399fdaabde97248 SHA512 8d8339f3b14b0088286ec87e49a78d8b608264b22b9c501bb5dd452c742d948b8f736378d5f16c62423f4f8278ec6b08c03d209f3d3fd03b3d46d8d36f2f665d WHIRLPOOL f05e3ac31018a58f2595b9696a6b89829e9df15443ecfd9ed383e80ac05386930e819b059916482267c1757decf9dd0a3c8c9f7296f283db348f169a86602fc0 DIST hardened-patches-2.6.32-147.extras.tar.bz2 895220 SHA256 5d902c8f3f883116067c48aa9ee362705777fe02808e94812c11bb431a62ec59 SHA512 e9365b7da0bec02aead8239e804a5124970bd0bdf6bfb61618897149072c0e00c7dbf20143fd0ee881a9968383e2ab342282ef99d8cab6ee52c61694c5a2fb44 WHIRLPOOL 618c3f6457083061a4208487573dc89c645a740ff1ee2e957d76549bdef12be8d79d58257afd9d4b54cba7e5140495880c7110cf48c5e6871e21f612c2aeea29 DIST hardened-patches-2.6.32-148.extras.tar.bz2 899364 SHA256 dccb03b4770377f0c8d2c7b469082a84ac3581ffab14986ef4bff638d56a5547 SHA512 027839717678d347468d644ff8921fcb41bd0e1089ca3d65b055badc0d64839ee9b98551f08a3e9484903f11bf0c54f4b69cb74b85b782ea96c7f0cdb4f2f06a WHIRLPOOL cf626250d5fde5f821bd74b28e953ed6552c562928026e3f5275fed84a0f0a7b371c4391263160c0d396476b7afb059d9e3935a458837e1cef8e623a0dbb8df4 DIST hardened-patches-2.6.32-149.extras.tar.bz2 898561 SHA256 5bb8db64db5d3a6e4ef8ad1588eed88042962c63f05fc36211a80995357d0971 SHA512 3ad54958ab89b7ddadcb5b320067350c07190c67a416d23e6e271a689af6be13c1bfe257a02ef568e45555dc88a296116b8da3765d4ca2ca06a4587f01499cac WHIRLPOOL 81fd31263c65e04515df4530ba762aac58e1463c3911b81552e75093c27a061e01f9ee74ea4b8d29e18d83826ae98627b748b48fb70ff4b5dc353db7b4a0a959 +DIST hardened-patches-2.6.32-150.extras.tar.bz2 901050 SHA256 2b3871f26909f79b736938160f755c4fa8c5d225efdce5330b5a7a2c3d902904 SHA512 a3455a3d84caf609e610371336f46f42acb792b4d7d8d9b8247423ec897af6c9b18eb21b1dd2c0687a45672be261de02e22a37af440370740a09ad87adc4918f WHIRLPOOL 5a115ef31cab21d4fd39583a2c7f8f34dc5dea8cb2f3ae5ab51e631c89c1ef88c1daef5b469c9537fb0920c3c07f5627b98946343cac212ba70b81aa42701ec1 DIST hardened-patches-2.6.32-45.extras.tar.bz2 378165 SHA256 04dd316b257644c104c7660a649abcd48a11fff59e7773988ace8e0da49b930c DIST hardened-patches-3.2.23-2.extras.tar.bz2 585133 SHA256 ce03488bc9cdf2288bb285b70d20eaa1b1049024e2549f427e36f9ea908f0185 SHA512 040390f8690adda5221e0b0b90f4df099389a78fa0a764ce1667c630319c16f8d47182db34e953c38f537216e036487bf1bb2c97889a5dc82508654ea1699237 WHIRLPOOL 841ec91f3d56d811463278771edf6fbec513e8e2b6acbb0bb485449171a948d17c271f6ff98f263c5d39ed357edd966b446936b8ba3b14617fda54d9231abb5f DIST hardened-patches-3.2.30-1.extras.tar.bz2 813742 SHA256 4f0227ab21c559a9fbc5268dbbf4a8b2c45512726a3d93d30d84665678fd9ed3 SHA512 c5660f3a48d0bfc559151c054beba40ec81733f78b208999ed627290bba476c827d76098bf76b79558f42d05def756498f34eb9098fcef963b6762f2e1acd61e WHIRLPOOL c2ee01f43fd51a8c55eb87eaee59b51d9e4c9aaad2ca3198a96ece697c463ef93d1e08ba48d7e7afdca078db35681e1ed48bbf38a84cc34349ee9a5728e67421 DIST hardened-patches-3.2.35-1.extras.tar.bz2 996229 SHA256 c37f1c5e7ebae714362dbbdcdc50e79a3c805d4b388aa6622a5584f6618bbc57 SHA512 577905be5adc27cd6ba5047674ec3d289e48e913e67072535796827cb0fec5f859da698c1beebdbd6e15f875b424219da77cbde6b9ca18852d8d0ba401f676a2 WHIRLPOOL a5f514df5204157833a1b2c4aec51af042a0a38502b0329e48c65ca59cc90ab4e1d0d682a884dc914783feed2f4b7a78c3ab2e1f6fd6d315ecd6c51b8d0ef58a DIST hardened-patches-3.2.35-2.extras.tar.bz2 998528 SHA256 2ec95626acd3e501d7dc5409f7a9d0335d0d3252ec1f4b777c672c017254802a SHA512 b3b536b2b54951b3d5f1ff4eb1e97d4a19217dcdea748e5690d7903cab46c237b15b4b4fbf38f6384db9c212dd89ae7ee507733bd7bb31670fbc9becf240f50d WHIRLPOOL 88b27147260ba76a273096efd83741cb79c1db8ca08f17126aab2e9c2276e0846c19c5fa198940ca903f5be3ea53ed8059d06667e90196fc592a4a5bfa33bd8e DIST hardened-patches-3.2.36-1.extras.tar.bz2 1046798 SHA256 88ef7fbf8192008cea40b362b260235041fa042d20ffbe3739b05780e81b7f5e SHA512 a9d600d73cff6f6a4d8c76c07e0d4bad40ca10ab84a688b39c58a9b6fd1a5bd0d4768018c31a36bb0f5dcf8ef7094bd82878cf07002b035aed528f8613e2d152 WHIRLPOOL 4b148526a72d12894a2a1a7120ab4110fed60066773d91ea3ac003a1ab9e6b0840839551b7aaf891d221159824214fe5f697a947c465c9ec6a0c9c101ab8acd0 +DIST hardened-patches-3.2.37-1.extras.tar.bz2 1056068 SHA256 31585bf59edbe7de70b4625e8b0f7b4417e8da068c7fb7aa8aa26177f3d26b90 SHA512 cf4e18cf78086dabbcfea0b75412bfe75017e85daee98d577f129293b5ec914a666f01cfd2e64dca33077cc2b9663739d708f11a9d000ec0138749bfefce41da WHIRLPOOL d4e32787d1b7f95d63d2d89140eef978443e11dc50213e886c58d603b12a22a1085e50b7337ce6dc5fd6cf78ab3e55eaa7206733da33560dee9a442d6a99d775 DIST hardened-patches-3.4.5-1.extras.tar.bz2 548697 SHA256 f77fdd4450cfaa051058383d4c7bce9ae7cf40cc39948a265870c8806fcdc2ef SHA512 b5b516200e0f78f6695f70ae7f7918bbd813647439f2e1df0dc0545439724c18bd5f31379d99b09372cdc91d612ab0cfef3cdeade229425a936a3e2873a56c1f WHIRLPOOL 3bc4be49dbaf31bfc592098b3cbb6c43b7d027f97c0089bf6fa1b4b914cbea4189ab6b63bf38f8dbc1647f011dedc1aa901d1b0679da875a741ca12df9ba4433 DIST hardened-patches-3.5.4-2.extras.tar.bz2 578566 SHA256 505c3848b3ff0f2622f28e26158fcfefa793570efd7ffb07a6070fb627e84682 SHA512 3362f3ef67a8e2759ab4ae8d7065d694873b668c4d369436ff7f2262d4b8123f165bcc65f56ce3a0cca7be4f56b49e589064afa24f8cab3932d09c28f266536b WHIRLPOOL e074e418e3cade3b05bec185ff0a558ecef2903269d92ba2033745cdcde56a540a2ed3638ac5ac75cbee600d722844c53d78a1acaa1c06af4e318e65ce2c77ea DIST hardened-patches-3.7.0-1.extras.tar.bz2 593322 SHA256 af919f14f6066cc723305ccfbbfb4f36b04c7a4943bb960c9910054363fd4577 SHA512 5b77a970b739366b82c738a0f62b9fd66b9a13d5b4bfbf42a150ac4629bcebb0212c3961724a71542a4ffff330929ffbd9f2f61cf4912d65984d8e96d5ffe36d WHIRLPOOL 409371d84afe1c9a775cee4a248d60847b9958fc9d5b612f992df25444139199ba90ea4f60ce5ab7458f073535950a2266109830425de2805e0c69b28211f047 DIST hardened-patches-3.7.1-1.extras.tar.bz2 593222 SHA256 393a22b27ba97f93d1a0fb8cf017034175a4d9dafcc459565758a88f7eba9017 SHA512 db7afe787d021d8a939e1fce4927065ce8e72e785c61c96c1c47f146f06b6265ecd4be70eb0a1198fe89b0ed9679ed20d0fb83e2314fcd9797ea41c604166c45 WHIRLPOOL d4685d25f46ad256285fbbed7ec29f53446c3e7e03a402ef5dc682c590ff173ebe032d389b38a47ef808e1937d498670890eef07824a86fd05c4ab87ad158ba1 DIST hardened-patches-3.7.1-2.extras.tar.bz2 594189 SHA256 7966fd1ce96044e1d4d442cab5541a66345e0e5da131dd75811ccfa776298249 SHA512 ba1a62d6f7f3917c2a552760696b9cb0c90ae5792692289ab2dc53f77f3e087e01a27e5213f39f879cb2de1f7b58f4937d58bdc2f8cc36e72ad97a83868ebea6 WHIRLPOOL c534025f787cf3baf5023a4dfda3899b87bb3bb00e0ed29e60cc4acda86a865aa5f5d5f3b48badf111d6abea30af7a1894d99f9ce0bfbbe4123183df71666929 DIST hardened-patches-3.7.1-3.extras.tar.bz2 608733 SHA256 89072dd018febb34a7ad92eacf444d019b516349cb35459b5d0511294f3245dc SHA512 6916f260b159f9040da690387189674dd31b9bccf8a1b272520a17f9cef60de9aa43206b6739bd423d795af396fbeee11eec882f7c4f8b42a306ee1b5e577c93 WHIRLPOOL 9dbe412b2cd2d918238b38e06150b4d524001003852a74ae31a27eac8ed0db7692bec247c70894edbe10d0748fe935cf45e5f36c082032b42c3062554f7bb3a2 +DIST hardened-patches-3.7.3-1.extras.tar.bz2 600263 SHA256 5a6454482b53babd417b8e5a5dbf2444b40c1c184af83db401c541b005a8abcc SHA512 24cb3a5521acdef40fdd900d8a3ebc008889f14a2391e1ece5a0b71bc02a24a8c4a1824af348fdcc3ee362cd46b5c88bd517d76acd13f9436af2ad672ababb9b WHIRLPOOL 8fe614b2c9da34cb61d03ce31c524167892538ae2c5161405fb3b4df067d156689785460ac8670cf9f678605da9f9b0d133b4da97b122758f09f0659d9e115af DIST linux-2.6.32.tar.bz2 64424138 SHA256 5099786d80b8407d98a619df00209c2353517f22d804fdd9533b362adcb4504e SHA512 739c67875dcb1a80412a034e7d3dddfb6aea4d7a77f12b572fb5afbb827e6ab5a682df7501c0982966e85948ddf7251b8dc5eeb064b2d264025160d8a903bc82 WHIRLPOOL 762dfd7f4c062fdcda00b7fc45ead0f8cb4e321027769a12d92640012f5768c2033da95f24491adfcd6eb453c2658978d4f170e73e4f8a5ccd263efcbe00429d DIST linux-3.2.tar.bz2 78147838 SHA256 c881fc2b53cf0da7ca4538aa44623a7de043a41f76fd5d0f51a31f6ed699d463 SHA512 1f57b98e8da34b10f37ce94e0f13a994c111d483b104c27a8f58a4a55013a73a9f1ffcebb597be63ce0dfadb92201e93b0e072ba49bac0033026aceb0840c812 WHIRLPOOL 3dc893bde09f064e4614183964a4b9feaab938ca7a739f46f825818a577884eae815f195b52a4c55c571345de59d7ba09631fb68dac481a0837b24868ce60e3d DIST linux-3.4.tar.bz2 80173484 SHA256 a797a15d0b6228381507c14ecf4eec4a6cc5c77cfd521ba3b3e1325e85b5b16d SHA512 597002fa82b70b5052f9e05c1d8547bc5f89d8e1aecfd1765f4033f6d2c5c02d51b6372dbeef12c2eb070ae318a04c39925050cb37a39399961c8b263479fca1 WHIRLPOOL 57e6dd7094db2bc41175d7bb551e8237ea96eacf3710a734e8413915c54304e84ca11455e41c7752882ce81048459555d44d1798bf0775b79c3d74b13aa3a9f2 diff --git a/sys-kernel/hardened-sources/hardened-sources-2.6.32-r146.ebuild b/sys-kernel/hardened-sources/hardened-sources-2.6.32-r146.ebuild new file mode 100644 index 000000000000..b73a05e9c318 --- /dev/null +++ b/sys-kernel/hardened-sources/hardened-sources-2.6.32-r146.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-2.6.32-r146.ebuild,v 1.1 2013/01/20 01:21:30 blueness Exp $ + +EAPI="4" + +ETYPE="sources" +K_WANT_GENPATCHES="base extras" +K_GENPATCHES_VER="48" +K_DEBLOB_AVAILABLE="1" + +inherit kernel-2 +detect_version + +HGPV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-150" +HGPV_URI="http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2" +SRC_URI="${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +UNIPATCH_LIST="${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2" +UNIPATCH_EXCLUDE="4200_fbcondecor-0.9.6.patch" + +DESCRIPTION="Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})" +HOMEPAGE="http://www.gentoo.org/proj/en/hardened/" +IUSE="deblob" + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" + +RDEPEND=">=sys-devel/gcc-4.5" + +pkg_postinst() { + kernel-2_pkg_postinst + + local GRADM_COMPAT="sys-apps/gradm-2.9.1*" + + ewarn + ewarn "Hardened Gentoo provides three different predefined grsecurity level:" + ewarn "[server], [workstation], and [virtualization]." + ewarn + ewarn "Those who intend to use one of these predefined grsecurity levels" + ewarn "should read the help associated with the level. Users importing a" + ewarn "kernel configuration from a kernel prior to ${PN}-2.6.32," + ewarn "should review their selected grsecurity/PaX options carefully." + ewarn + ewarn "Users of grsecurity's RBAC system must ensure they are using" + ewarn "${GRADM_COMPAT}, which is compatible with ${PF}." + ewarn "It is strongly recommended that the following command is issued" + ewarn "prior to booting a ${PF} kernel for the first time:" + ewarn + ewarn "emerge -na =${GRADM_COMPAT}" + ewarn +} diff --git a/sys-kernel/hardened-sources/hardened-sources-3.2.37.ebuild b/sys-kernel/hardened-sources/hardened-sources-3.2.37.ebuild new file mode 100644 index 000000000000..5974fddfdc71 --- /dev/null +++ b/sys-kernel/hardened-sources/hardened-sources-3.2.37.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/sys-kernel/hardened-sources/hardened-sources-3.2.37.ebuild,v 1.1 2013/01/20 01:23:05 blueness Exp $ + +EAPI="4" + +ETYPE="sources" +K_WANT_GENPATCHES="base extras" +K_GENPATCHES_VER="16" +K_DEBLOB_AVAILABLE="1" + +inherit kernel-2 +detect_version + +HGPV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-1" +HGPV_URI="http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2" +SRC_URI="${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +UNIPATCH_LIST="${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2" +UNIPATCH_EXCLUDE="4200_fbcondecor-0.9.6.patch" + +DESCRIPTION="Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})" +HOMEPAGE="http://www.gentoo.org/proj/en/hardened/" +IUSE="deblob" + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" + +RDEPEND=">=sys-devel/gcc-4.5" + +pkg_postinst() { + kernel-2_pkg_postinst + + local GRADM_COMPAT="sys-apps/gradm-2.9.1*" + + ewarn + ewarn "Hardened Gentoo provides three different predefined grsecurity level:" + ewarn "[server], [workstation], and [virtualization]. Those who intend to" + ewarn "use one of these predefined grsecurity levels should read the help" + ewarn "associated with the level. Because some options require >=gcc-4.5," + ewarn "users with more, than one version of gcc installed should use gcc-config" + ewarn "to select a compatible version." + ewarn + ewarn "Users of grsecurity's RBAC system must ensure they are using" + ewarn "${GRADM_COMPAT}, which is compatible with ${PF}." + ewarn "It is strongly recommended that the following command is issued" + ewarn "prior to booting a ${PF} kernel for the first time:" + ewarn + ewarn "emerge -na =${GRADM_COMPAT}" + ewarn +} diff --git a/sys-kernel/hardened-sources/hardened-sources-3.7.3.ebuild b/sys-kernel/hardened-sources/hardened-sources-3.7.3.ebuild new file mode 100644 index 000000000000..7f76e4195bc8 --- /dev/null +++ b/sys-kernel/hardened-sources/hardened-sources-3.7.3.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/sys-kernel/hardened-sources/hardened-sources-3.7.3.ebuild,v 1.1 2013/01/20 01:25:48 blueness Exp $ + +EAPI="4" + +ETYPE="sources" +K_WANT_GENPATCHES="base" +K_GENPATCHES_VER="5" +K_DEBLOB_AVAILABLE="1" + +inherit kernel-2 +detect_version + +HGPV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-1" +HGPV_URI="http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2" +SRC_URI="${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +UNIPATCH_LIST="${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2" +UNIPATCH_EXCLUDE="4200_fbcondecor-0.9.6.patch" + +DESCRIPTION="Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})" +HOMEPAGE="http://www.gentoo.org/proj/en/hardened/" +IUSE="deblob" + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" + +RDEPEND=">=sys-devel/gcc-4.5" + +pkg_postinst() { + kernel-2_pkg_postinst + + local GRADM_COMPAT="sys-apps/gradm-2.9.1*" + + ewarn + ewarn "Hardened Gentoo provides three different predefined grsecurity level:" + ewarn "[server], [workstation], and [virtualization]. Those who intend to" + ewarn "use one of these predefined grsecurity levels should read the help" + ewarn "associated with the level. Because some options require >=gcc-4.5," + ewarn "users with more, than one version of gcc installed should use gcc-config" + ewarn "to select a compatible version." + ewarn + ewarn "Users of grsecurity's RBAC system must ensure they are using" + ewarn "${GRADM_COMPAT}, which is compatible with ${PF}." + ewarn "It is strongly recommended that the following command is issued" + ewarn "prior to booting a ${PF} kernel for the first time:" + ewarn + ewarn "emerge -na =${GRADM_COMPAT}" + ewarn +} diff --git a/sys-libs/lrmi/Manifest b/sys-libs/lrmi/Manifest index 39d2419fbe2c..0a1b978a4dc9 100644 --- a/sys-libs/lrmi/Manifest +++ b/sys-libs/lrmi/Manifest @@ -1 +1 @@ -DIST lrmi-0.10.tar.gz 10271 RMD160 3805b41fd2a558ec145991c30a7f88101af48f1c SHA1 1495b3c2f3613979eb0396fd99a8e5e52d53ec80 SHA256 b0be55c14407f586dc10836e8f348b3a002c461a9b47a302071eac0ef85770da +DIST lrmi-0.10.tar.gz 10271 SHA256 b0be55c14407f586dc10836e8f348b3a002c461a9b47a302071eac0ef85770da diff --git a/sys-libs/lrmi/metadata.xml b/sys-libs/lrmi/metadata.xml index 9414bddf5bbd..96a2d586367d 100644 --- a/sys-libs/lrmi/metadata.xml +++ b/sys-libs/lrmi/metadata.xml @@ -2,7 +2,4 @@ base-system - - spock@gentoo.org - diff --git a/sys-power/acpid/acpid-2.0.17-r1.ebuild b/sys-power/acpid/acpid-2.0.17-r1.ebuild index 6063ced56a64..b58630829cf2 100644 --- a/sys-power/acpid/acpid-2.0.17-r1.ebuild +++ b/sys-power/acpid/acpid-2.0.17-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-power/acpid/acpid-2.0.17-r1.ebuild,v 1.1 2013/01/18 16:21:17 miska Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-power/acpid/acpid-2.0.17-r1.ebuild,v 1.3 2013/01/20 14:09:53 ago Exp $ EAPI=4 inherit systemd @@ -11,7 +11,7 @@ SRC_URI="http://tedfelix.com/linux/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ia64 -ppc ~x86" +KEYWORDS="amd64 ~ia64 -ppc x86" IUSE="selinux" RDEPEND="selinux? ( sec-policy/selinux-apm )" diff --git a/sys-process/cronie/cronie-1.4.8-r1.ebuild b/sys-process/cronie/cronie-1.4.8-r1.ebuild deleted file mode 100644 index eafb54b9dcf1..000000000000 --- a/sys-process/cronie/cronie-1.4.8-r1.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/cronie-1.4.8-r1.ebuild,v 1.5 2012/12/18 22:36:34 polynomial-c Exp $ - -EAPI="3" - -inherit cron eutils pam user - -DESCRIPTION="Cronie is a standard UNIX daemon cron based on the original vixie-cron." -SRC_URI="https://fedorahosted.org/releases/c/r/cronie/${P}.tar.gz" -HOMEPAGE="https://fedorahosted.org/cronie/wiki" - -LICENSE="ISC BSD BSD-2" -KEYWORDS="~amd64 ~arm ~sparc ~x86" -IUSE="anacron inotify pam selinux" - -DEPEND="pam? ( virtual/pam ) - anacron? ( !sys-process/anacron )" -RDEPEND="${DEPEND}" - -#cronie supports /etc/crontab -CRON_SYSTEM_CRONTAB="yes" - -pkg_setup() { - enewgroup crontab -} - -src_configure() { - SPOOL_DIR="/var/spool/cron/crontabs" econf \ - $(use_with inotify ) \ - $(use_with pam ) \ - $(use_with selinux ) \ - $(use_enable anacron ) \ - --with-daemon_username=cron \ - --with-daemon_groupname=cron \ - || die "econf failed" -} - -src_install() { - emake install DESTDIR="${D}" || die "install failed" - - docrondir -m 1730 -o root -g crontab - fowners root:crontab /usr/bin/crontab - fperms 2751 /usr/bin/crontab - - insinto /etc/conf.d - newins "${S}"/crond.sysconfig ${PN} - - insinto /etc - newins "${FILESDIR}/${PN}-1.2-crontab" crontab - newins "${FILESDIR}/${PN}-1.2-cron.deny" cron.deny - - keepdir /etc/cron.d - newinitd "${FILESDIR}/${PN}-1.3-initd" ${PN} - newpamd "${FILESDIR}/${PN}-1.4.3-pamd" crond - - if use anacron ; then - #insinto /etc/cron.daily - #doins "${S}"/contrib/0anacron - #fperms 0755 /etc/cron.daily/0anacron - - keepdir /var/spool/anacron - fowners root:cron /var/spool/anacron - fperms 0750 /var/spool/anacron - - insinto /etc - - newinitd "${FILESDIR}"/anacron-1.0-initd anacron - fi - - dodoc AUTHORS README contrib/* -} - -pkg_postinst() { - cron_pkg_postinst -} diff --git a/sys-process/cronie/cronie-1.4.9.ebuild b/sys-process/cronie/cronie-1.4.9-r1.ebuild similarity index 92% rename from sys-process/cronie/cronie-1.4.9.ebuild rename to sys-process/cronie/cronie-1.4.9-r1.ebuild index 32fa7f0d1076..2e7bc850259f 100644 --- a/sys-process/cronie/cronie-1.4.9.ebuild +++ b/sys-process/cronie/cronie-1.4.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/sys-process/cronie/cronie-1.4.9.ebuild,v 1.1 2012/12/18 22:36:34 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/cronie-1.4.9-r1.ebuild,v 1.1 2013/01/19 17:43:32 polynomial-c Exp $ EAPI="5" @@ -31,6 +31,7 @@ src_configure() { $(use_with pam) \ $(use_with selinux) \ $(use_enable anacron) \ + --with-syscrontab \ --with-daemon_username=cron \ --with-daemon_groupname=cron } diff --git a/sys-process/fcron/fcron-3.0.6-r1.ebuild b/sys-process/fcron/fcron-3.0.6-r1.ebuild index 5274becf9de7..e0945a59c8ff 100644 --- a/sys-process/fcron/fcron-3.0.6-r1.ebuild +++ b/sys-process/fcron/fcron-3.0.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-process/fcron/fcron-3.0.6-r1.ebuild,v 1.10 2012/05/24 05:51:09 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/fcron-3.0.6-r1.ebuild,v 1.11 2013/01/20 13:10:30 ago Exp $ inherit cron pam eutils flag-o-matic user @@ -10,7 +10,7 @@ HOMEPAGE="http://fcron.free.fr/" SRC_URI="http://fcron.free.fr/archives/${MY_P}.src.tar.gz" LICENSE="GPL-2" -KEYWORDS="amd64 ~arm hppa ia64 ~mips ppc sparc x86 ~x86-fbsd" +KEYWORDS="amd64 arm hppa ia64 ~mips ppc sparc x86 ~x86-fbsd" IUSE="debug pam selinux linguas_fr" DEPEND="selinux? ( sys-libs/libselinux ) diff --git a/virtual/pcmcia/Manifest b/virtual/pcmcia/Manifest deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/virtual/pcmcia/metadata.xml b/virtual/pcmcia/metadata.xml deleted file mode 100644 index 4538a68724a6..000000000000 --- a/virtual/pcmcia/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - -maintainer-needed@gentoo.org - diff --git a/virtual/pcmcia/pcmcia-2.6.13.ebuild b/virtual/pcmcia/pcmcia-2.6.13.ebuild deleted file mode 100644 index f19b4c013a80..000000000000 --- a/virtual/pcmcia/pcmcia-2.6.13.ebuild +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/virtual/pcmcia/pcmcia-2.6.13.ebuild,v 1.3 2010/01/11 11:08:43 ulm Exp $ - -DESCRIPTION="Virtual for PCMCIA userspace tools" -HOMEPAGE="" -SRC_URI="" - -LICENSE="" -SLOT="0" -KEYWORDS="amd64 arm ppc sh x86" -IUSE="" - -DEPEND="" -RDEPEND="|| ( sys-apps/pcmcia-cs sys-apps/pcmciautils )" diff --git a/virtual/perl-Filter/perl-Filter-1.450.0.ebuild b/virtual/perl-Filter/perl-Filter-1.450.0.ebuild new file mode 100644 index 000000000000..cb7aae0846d0 --- /dev/null +++ b/virtual/perl-Filter/perl-Filter-1.450.0.ebuild @@ -0,0 +1,14 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/virtual/perl-Filter/perl-Filter-1.450.0.ebuild,v 1.1 2013/01/20 11:25:32 tove Exp $ + +DESCRIPTION="Virtual for ${PN#perl-}" +HOMEPAGE="" +SRC_URI="" + +LICENSE="" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="" + +RDEPEND="~perl-core/${PN#perl-}-${PV}" diff --git a/virtual/perl-Module-Load-Conditional/perl-Module-Load-Conditional-0.540.0.ebuild b/virtual/perl-Module-Load-Conditional/perl-Module-Load-Conditional-0.540.0.ebuild new file mode 100644 index 000000000000..0da588df6bee --- /dev/null +++ b/virtual/perl-Module-Load-Conditional/perl-Module-Load-Conditional-0.540.0.ebuild @@ -0,0 +1,14 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/virtual/perl-Module-Load-Conditional/perl-Module-Load-Conditional-0.540.0.ebuild,v 1.1 2013/01/20 11:21:53 tove Exp $ + +DESCRIPTION="Virtual for ${PN#perl-}" +HOMEPAGE="" +SRC_URI="" + +LICENSE="" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="" + +RDEPEND="~perl-core/${PN#perl-}-${PV}" diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest index 8b2282393092..5a200b3c1f94 100644 --- a/www-client/chromium/Manifest +++ b/www-client/chromium/Manifest @@ -2,3 +2,4 @@ DIST chromium-24.0.1312.52.tar.bz2 186302423 SHA256 f30df8b0f4c999185bb11d873f0c DIST chromium-25.0.1364.26-lite.tar.bz2 124886062 SHA256 aa5450100c61d4d9a06f8f9e4378b929e0ff26399d21aad9259189af56d4f451 SHA512 2635c77a87a4e003ae1969c35c95cc49c19d31b81670b1b3af7256d8bc39f8a66f0dd7beff4121949b1b6bbda50697ba43cea75350bd8ba32930d28dd89f58d3 WHIRLPOOL dd525d4b78a46ebc778f4ba6bdb2189db6614ad2984595db95caea74af5040abf34bc453dc27c40dc2ddc08fb47d75df304808968d3c29dd278325daac093121 DIST chromium-25.0.1364.29-lite.tar.bz2 125178430 SHA256 2df88ede433a0480701bbda173fadee93b3cfb41dafc97418346396e3bb6dde7 SHA512 8ccd844ce2ca94d559541e01a37d351784c606fe4201eb323b38a9527c2cca51b53b1d0628fc4a9bf9477001e6ca194320d91994d7319aa8bc5b039e1d11b0c8 WHIRLPOOL 0e5b7263027d812818b465e419e5d2e544e87a4ad8f19dc11e7fb5cb39a3050706c1f20d9ece767d049f713073a75b328312adea307ab80d354c2f52fa78935e DIST chromium-26.0.1384.2-lite.tar.xz 103884752 SHA256 624d5ffc6939818172c8c76c49d736e0a2171133e5be39a55a32e6413ed3b82b SHA512 5989b337a6aac03418531c4b681980debbd7f291ea982065110657cc45f6f2f0549f0c40f0d212d21ec8e9fed10ff589ac111f03d3b00a1bc69c73ea62443f1d WHIRLPOOL 6729eb5354879872d417d04812b29e0ce7f62fe9a00f0efa95f77d09e97cd3f5b8ff7bae96ca68654e4e29395cbc05ece66b963df932c9d968bc790f626a0a3e +DIST chromium-26.0.1386.0-lite.tar.xz 104034868 SHA256 1e99751df931f877327506cba1b1958c670abe449f88f0e3880bb418370d389f SHA512 9781ce24973835e39a0078a3feb162f830cc4e590fc7446314d02cbcb1b793ac5b95c5808f6576506f6da35afe53948ed8b39460c972b073278ebb3a7b0a37fd WHIRLPOOL 9af7bf3fcf03823f040f007e4adff223ea162d816f7789802220e42ef667aa702e18c12859e7293cad7ca518523aa74ef2d80af150f51789df13475e5bd65d25 diff --git a/www-client/chromium/chromium-26.0.1386.0.ebuild b/www-client/chromium/chromium-26.0.1386.0.ebuild new file mode 100644 index 000000000000..8767ea2eff73 --- /dev/null +++ b/www-client/chromium/chromium-26.0.1386.0.ebuild @@ -0,0 +1,520 @@ +# 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.1386.0.ebuild,v 1.1 2013/01/20 06:00:45 phajdan.jr Exp $ + +EAPI="5" +PYTHON_DEPEND="2:2.6" + +CHROMIUM_LANGS="am ar bg bn ca cs da de el en_GB es es_LA et fa fi fil fr gu he + hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt_BR pt_PT ro ru sk sl sr + sv sw ta te th tr uk vi zh_CN zh_TW" + +inherit chromium eutils flag-o-matic multilib \ + pax-utils portability python toolchain-funcs versionator virtualx + +DESCRIPTION="Open-source version of Google Chrome web browser" +HOMEPAGE="http://chromium.org/" +SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}-lite.tar.xz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="bindist cups gnome gnome-keyring kerberos pulseaudio selinux system-ffmpeg tcmalloc" + +RDEPEND="app-accessibility/speech-dispatcher + app-arch/bzip2 + cups? ( + dev-libs/libgcrypt + >=net-print/cups-1.3.11 + ) + >=dev-lang/v8-3.15.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 + gnome? ( >=gnome-base/gconf-2.24.0 ) + gnome-keyring? ( >=gnome-base/gnome-keyring-2.28.2 ) + >=media-libs/alsa-lib-1.0.19 + media-libs/flac + media-libs/harfbuzz + >=media-libs/libjpeg-turbo-1.2.0-r1 + media-libs/libpng + 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] + =net-libs/libsrtp-1.4.4_p20121108 + 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 + )" +DEPEND="${RDEPEND} + !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 )" +RDEPEND+=" + !=www-client/chromium-9999 + x11-misc/xdg-utils + virtual/ttf-fonts" + +if ! has chromium_pkg_die ${EBUILD_DEATH_HOOKS}; then + EBUILD_DEATH_HOOKS+=" chromium_pkg_die"; +fi + +pkg_setup() { + if [[ "${SLOT}" == "0" ]]; then + CHROMIUM_SUFFIX="" + else + CHROMIUM_SUFFIX="-${SLOT}" + fi + CHROMIUM_HOME="/usr/$(get_libdir)/chromium-browser${CHROMIUM_SUFFIX}" + + # Make sure the build system will use the right tools, bug #340795. + tc-export AR CC CXX RANLIB + + # Make sure the build system will use the right python, bug #344367. + python_set_active_version 2 + python_pkg_setup + + if ! use selinux; then + chromium_suid_sandbox_check_kernel_config + fi + + if use bindist && ! use system-ffmpeg; then + elog "bindist enabled: H.264 video support will be disabled." + fi + if ! use bindist; then + elog "bindist disabled: Resulting binaries may not be legal to re-distribute." + fi +} + +src_prepare() { + if ! use arm; then + mkdir -p out/Release/obj/gen/sdk/toolchain || die + cp -a /usr/$(get_libdir)/nacl-toolchain-newlib \ + out/Release/obj/gen/sdk/toolchain/linux_x86_newlib || die + touch out/Release/obj/gen/sdk/toolchain/linux_x86_newlib/stamp.untar || die + fi + + # Fix build without NaCl glibc toolchain. + epatch "${FILESDIR}/${PN}-ppapi-r0.patch" + + # Fix build with system nspr. + epatch "${FILESDIR}/${PN}-system-nspr-r0.patch" + + # Missing gyp files in tarball. + # https://code.google.com/p/chromium/issues/detail?id=144823 + if [[ -e chrome/test/data/nacl/nacl_test_data.gyp ]]; then + die "tarball fixed, please remove workaround" + fi + + mkdir -p chrome/test/data/nacl + cat > chrome/test/data/nacl/nacl_test_data.gyp <<-EOF + { + 'targets': [ + { + 'target_name': 'nacl_tests', + 'type': 'none', + }, + ], + } + EOF + + epatch "${FILESDIR}/${PN}-system-ffmpeg-r1.patch" + + epatch_user + + # Remove most bundled libraries. Some are still needed. + find third_party -type f \! -iname '*.gyp*' \ + \! -path 'third_party/WebKit/*' \ + \! -path 'third_party/angle/*' \ + \! -path 'third_party/cacheinvalidation/*' \ + \! -path 'third_party/cld/*' \ + \! -path 'third_party/cros_system_api/*' \ + \! -path 'third_party/ffmpeg/*' \ + \! -path 'third_party/flot/*' \ + \! -path 'third_party/hunspell/*' \ + \! -path 'third_party/hyphen/*' \ + \! -path 'third_party/iccjpeg/*' \ + \! -path 'third_party/khronos/*' \ + \! -path 'third_party/leveldatabase/*' \ + \! -path 'third_party/libjingle/*' \ + \! -path 'third_party/libphonenumber/*' \ + \! -path 'third_party/libxml/chromium/*' \ + \! -path 'third_party/libXNVCtrl/*' \ + \! -path 'third_party/libyuv/*' \ + \! -path 'third_party/lss/*' \ + \! -path 'third_party/mesa/*' \ + \! -path 'third_party/modp_b64/*' \ + \! -path 'third_party/mongoose/*' \ + \! -path 'third_party/mt19937ar/*' \ + \! -path 'third_party/npapi/*' \ + \! -path 'third_party/openmax/*' \ + \! -path 'third_party/ots/*' \ + \! -path 'third_party/pywebsocket/*' \ + \! -path 'third_party/qcms/*' \ + \! -path 'third_party/re2/*' \ + \! -path 'third_party/sfntly/*' \ + \! -path 'third_party/skia/*' \ + \! -path 'third_party/smhasher/*' \ + \! -path 'third_party/sqlite/*' \ + \! -path 'third_party/tcmalloc/*' \ + \! -path 'third_party/tlslite/*' \ + \! -path 'third_party/trace-viewer/*' \ + \! -path 'third_party/undoview/*' \ + \! -path 'third_party/v8-i18n/*' \ + \! -path 'third_party/webdriver/*' \ + \! -path 'third_party/webrtc/*' \ + \! -path 'third_party/widevine/*' \ + -delete || die + + # Remove bundled v8. + find v8 -type f \! -iname '*.gyp*' -delete || die + + # The implementation files include v8 headers with full path, + # like #include "v8/include/v8.h". Make sure the system headers + # will be used. + # TODO: find a solution that can be upstreamed. + rmdir v8/include || die + ln -s /usr/include v8/include || die +} + +src_configure() { + local myconf="" + + # Never tell the build system to "enable" SSE2, it has a few unexpected + # additions, bug #336871. + myconf+=" -Ddisable_sse2=1" + + # Optional tcmalloc. Note it causes problems with e.g. NVIDIA + # drivers, bug #413637. + myconf+=" $(gyp_use tcmalloc linux_use_tcmalloc)" + + # Disable glibc Native Client toolchain, we don't need it (bug #417019). + myconf+=" -Ddisable_glibc=1" + + # TODO: also build with pnacl + myconf+=" -Ddisable_pnacl=1" + + # It would be awkward for us to tar the toolchain and get it untarred again + # during the build. + myconf+=" -Ddisable_newlib_untar=1" + + # Make it possible to remove third_party/adobe. + echo > "${T}/flapper_version.h" || die + myconf+=" -Dflapper_version_h_file=${T}/flapper_version.h" + + # Use system-provided libraries. + # TODO: use_system_ffmpeg + # TODO: use_system_hunspell (upstream changes needed). + # TODO: use_system_ssl (http://crbug.com/58087). + # TODO: use_system_sqlite (http://crbug.com/22208). + myconf+=" + -Duse_system_bzip2=1 + -Duse_system_flac=1 + -Duse_system_harfbuzz=1 + -Duse_system_icu=1 + -Duse_system_jsoncpp=1 + -Duse_system_libevent=1 + -Duse_system_libjpeg=1 + -Duse_system_libpng=1 + -Duse_system_libsrtp=1 + -Duse_system_libusb=1 + -Duse_system_libvpx=1 + -Duse_system_libwebp=1 + -Duse_system_libxml=1 + -Duse_system_minizip=1 + -Duse_system_nspr=1 + -Duse_system_opus=1 + -Duse_system_protobuf=1 + -Duse_system_speex=1 + -Duse_system_v8=1 + -Duse_system_xdg_utils=1 + -Duse_system_yasm=1 + -Duse_system_zlib=1 + $(gyp_use system-ffmpeg use_system_ffmpeg)" + + # Optional dependencies. + # TODO: linux_link_kerberos, bug #381289. + # TODO: linux_use_libgps, linux_link_libgps. + myconf+=" + $(gyp_use cups) + $(gyp_use gnome use_gconf) + $(gyp_use gnome-keyring use_gnome_keyring) + $(gyp_use gnome-keyring linux_link_gnome_keyring) + $(gyp_use kerberos) + $(gyp_use pulseaudio) + $(gyp_use selinux selinux)" + + # Use explicit library dependencies instead of dlopen. + # This makes breakages easier to detect by revdep-rebuild. + myconf+=" + -Dlinux_link_gsettings=1 + -Dlinux_link_libpci=1 + -Dlinux_link_libspeechd=1" + + # TODO: use the file at run time instead of effectively compiling it in. + myconf+=" + -Dusb_ids_path=/usr/share/misc/usb.ids" + + if ! use selinux; then + # Enable SUID sandbox. + myconf+=" + -Dlinux_sandbox_path=${CHROMIUM_HOME}/chrome_sandbox + -Dlinux_sandbox_chrome_path=${CHROMIUM_HOME}/chrome" + fi + + # Never use bundled gold binary. Disable gold linker flags for now. + myconf+=" + -Dlinux_use_gold_binary=0 + -Dlinux_use_gold_flags=0" + + if ! use bindist && ! use system-ffmpeg; then + # Enable H.624 support in bundled ffmpeg. + myconf+=" -Dproprietary_codecs=1 -Dffmpeg_branding=Chrome" + fi + + # Set up Google API keys, see http://www.chromium.org/developers/how-tos/api-keys . + # Note: these are for Gentoo use ONLY. For your own distribution, + # please get your own set of keys. Feel free to contact chromium@gentoo.org + # for more info. + myconf+=" -Dgoogle_api_key=AIzaSyDEAOvatFo0eTgsV_ZlEzx0ObmepsMzfAc + -Dgoogle_default_client_id=329227923882.apps.googleusercontent.com + -Dgoogle_default_client_secret=vgKG0NNv7GoDpbtoFNLxCUXu" + + local myarch="$(tc-arch)" + if [[ $myarch = amd64 ]] ; then + myconf+=" -Dtarget_arch=x64" + elif [[ $myarch = x86 ]] ; then + myconf+=" -Dtarget_arch=ia32" + elif [[ $myarch = arm ]] ; then + # TODO: re-enable NaCl (NativeClient). + myconf+=" -Dtarget_arch=arm + -Darmv7=0 + -Darm_neon=0 + -Ddisable_nacl=1" + else + die "Failed to determine target arch, got '$myarch'." + fi + + # Make sure that -Werror doesn't get added to CFLAGS by the build system. + # Depending on GCC version the warnings are different and we don't want + # the build to fail because of that. + myconf+=" -Dwerror=" + + # Avoid CFLAGS problems, bug #352457, bug #390147. + if ! use custom-cflags; then + replace-flags "-Os" "-O2" + strip-flags + fi + + egyp_chromium ${myconf} || die +} + +src_compile() { + local test_targets + for x in base cacheinvalidation crypto \ + googleurl gpu media net printing sql; do + test_targets+=" ${x}_unittests" + done + + local make_targets="chrome chromedriver" + if ! use selinux; then + make_targets+=" chrome_sandbox" + fi + if use test; then + make_targets+=$test_targets + fi + + # See bug #410883 for more info about the .host mess. + emake ${make_targets} BUILDTYPE=Release V=1 \ + CC.host="$(tc-getCC)" CFLAGS.host="${CFLAGS}" \ + CXX.host="$(tc-getCXX)" CXXFLAGS.host="${CXXFLAGS}" \ + LINK.host="$(tc-getCXX)" LDFLAGS.host="${LDFLAGS}" \ + AR.host="$(tc-getAR)" || die + + pax-mark m out/Release/chrome + if use test; then + for x in $test_targets; do + pax-mark m out/Release/${x} + done + fi +} + +src_test() { + # For more info see bug #350349. + local mylocale='en_US.utf8' + if ! locale -a | grep -q "$mylocale"; then + eerror "${PN} requires ${mylocale} locale for tests" + eerror "Please read the following guides for more information:" + eerror " http://www.gentoo.org/doc/en/guide-localization.xml" + eerror " http://www.gentoo.org/doc/en/utf-8.xml" + die "locale ${mylocale} is not supported" + fi + + # For more info see bug #370957. + if [[ $UID -eq 0 ]]; then + die "Tests must be run as non-root. Please use FEATURES=userpriv." + fi + + runtest() { + local cmd=$1 + shift + local filter="--gtest_filter=$(IFS=:; echo "-${*}")" + einfo "${cmd}" "${filter}" + LC_ALL="${mylocale}" VIRTUALX_COMMAND="${cmd}" virtualmake "${filter}" + } + + local excluded_base_unittests=( + "ICUStringConversionsTest.*" # bug #350347 + "MessagePumpLibeventTest.*" # bug #398591 + ) + runtest out/Release/base_unittests "${excluded_base_unittests[@]}" + + runtest out/Release/cacheinvalidation_unittests + runtest out/Release/crypto_unittests + runtest out/Release/googleurl_unittests + runtest out/Release/gpu_unittests + + # TODO: re-enable when we get the test data in a separate tarball. + # runtest out/Release/media_unittests + + # local excluded_net_unittests=( + # "NetUtilTest.IDNToUnicode*" # bug 361885 + # "NetUtilTest.FormatUrl*" # see above + # "DnsConfigServiceTest.GetSystemConfig" # bug #394883 + # "CertDatabaseNSSTest.ImportServerCert_SelfSigned" # bug #399269 + # "URLFetcher*" # bug #425764 + # "HTTPSOCSPTest.*" # bug #426630 + # "HTTPSEVCRLSetTest.*" # see above + # "HTTPSCRLSetTest.*" # see above + #) + # runtest out/Release/net_unittests "${excluded_net_unittests[@]}" + + runtest out/Release/printing_unittests + runtest out/Release/sql_unittests +} + +src_install() { + exeinto "${CHROMIUM_HOME}" + doexe out/Release/chrome || die + + if ! use selinux; then + doexe out/Release/chrome_sandbox || die + fperms 4755 "${CHROMIUM_HOME}/chrome_sandbox" + fi + + doexe out/Release/chromedriver || die + + if ! use arm; then + doexe out/Release/nacl_helper{,_bootstrap} || die + insinto "${CHROMIUM_HOME}" + doins out/Release/nacl_irt_*.nexe || die + doins out/Release/libppGoogleNaClPluginChrome.so || die + fi + + newexe "${FILESDIR}"/chromium-launcher-r2.sh chromium-launcher.sh || die + if [[ "${CHROMIUM_SUFFIX}" != "" ]]; then + sed "s:chromium-browser:chromium-browser${CHROMIUM_SUFFIX}:g" \ + -i "${ED}"/"${CHROMIUM_HOME}"/chromium-launcher.sh || die + sed "s:chromium.desktop:chromium${CHROMIUM_SUFFIX}.desktop:g" \ + -i "${ED}"/"${CHROMIUM_HOME}"/chromium-launcher.sh || die + sed "s:plugins:plugins --user-data-dir=\${HOME}/.config/chromium${CHROMIUM_SUFFIX}:" \ + -i "${ED}"/"${CHROMIUM_HOME}"/chromium-launcher.sh || die + fi + + # It is important that we name the target "chromium-browser", + # xdg-utils expect it; bug #355517. + dosym "${CHROMIUM_HOME}/chromium-launcher.sh" /usr/bin/chromium-browser${CHROMIUM_SUFFIX} || die + # keep the old symlink around for consistency + dosym "${CHROMIUM_HOME}/chromium-launcher.sh" /usr/bin/chromium${CHROMIUM_SUFFIX} || die + + # Allow users to override command-line options, bug #357629. + dodir /etc/chromium || die + insinto /etc/chromium + newins "${FILESDIR}/chromium.default" "default" || die + + pushd out/Release/locales > /dev/null || die + chromium_remove_language_paks + popd + + insinto "${CHROMIUM_HOME}" + doins out/Release/*.pak || die + + doins -r out/Release/locales || die + doins -r out/Release/resources || die + + newman out/Release/chrome.1 chromium${CHROMIUM_SUFFIX}.1 || die + newman out/Release/chrome.1 chromium-browser${CHROMIUM_SUFFIX}.1 || die + + if ! use system-ffmpeg; then + doexe out/Release/libffmpegsumo.so || die + fi + + # Install icons and desktop entry. + local branding size + for size in 16 22 24 32 48 64 128 256 ; do + case ${size} in + 16|32) branding="chrome/app/theme/default_100_percent/chromium" ;; + *) branding="chrome/app/theme/chromium" ;; + esac + newicon -s ${size} "${branding}/product_logo_${size}.png" \ + chromium-browser${CHROMIUM_SUFFIX}.png + done + + local mime_types="text/html;text/xml;application/xhtml+xml;" + mime_types+="x-scheme-handler/http;x-scheme-handler/https;" # bug #360797 + mime_types+="x-scheme-handler/ftp;" # bug #412185 + mime_types+="x-scheme-handler/mailto;x-scheme-handler/webcal;" # bug #416393 + make_desktop_entry \ + chromium-browser${CHROMIUM_SUFFIX} \ + "Chromium${CHROMIUM_SUFFIX}" \ + chromium-browser${CHROMIUM_SUFFIX} \ + "Network;WebBrowser" \ + "MimeType=${mime_types}\nStartupWMClass=chromium-browser" + sed -e "/^Exec/s/$/ %U/" -i "${ED}"/usr/share/applications/*.desktop || die + + # Install GNOME default application entry (bug #303100). + if use gnome; then + dodir /usr/share/gnome-control-center/default-apps || die + insinto /usr/share/gnome-control-center/default-apps + newins "${FILESDIR}"/chromium-browser.xml chromium-browser${CHROMIUM_SUFFIX}.xml || die + if [[ "${CHROMIUM_SUFFIX}" != "" ]]; then + sed "s:chromium-browser:chromium-browser${CHROMIUM_SUFFIX}:g" -i \ + "${ED}"/usr/share/gnome-control-center/default-apps/chromium-browser${CHROMIUM_SUFFIX}.xml + fi + fi +} diff --git a/www-client/chromium/chromium-9999-r1.ebuild b/www-client/chromium/chromium-9999-r1.ebuild index e0839fe2f1aa..8a714e1ab24d 100644 --- a/www-client/chromium/chromium-9999-r1.ebuild +++ b/www-client/chromium/chromium-9999-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/chromium/chromium-9999-r1.ebuild,v 1.160 2013/01/17 04:41:52 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/chromium/chromium-9999-r1.ebuild,v 1.161 2013/01/20 06:00:45 phajdan.jr Exp $ EAPI="5" PYTHON_DEPEND="2:2.6" @@ -50,7 +50,11 @@ RDEPEND="app-accessibility/speech-dispatcher media-libs/opus media-libs/speex pulseaudio? ( media-sound/pulseaudio ) - system-ffmpeg? ( || ( =media-video/ffmpeg-1.0[opus] ) ) + system-ffmpeg? ( || ( + >=media-video/ffmpeg-1.0[opus] + =net-libs/libsrtp-1.4.4_p20121108 sys-apps/dbus sys-apps/pciutils diff --git a/www-client/chromium/files/chromium-system-nspr-r0.patch b/www-client/chromium/files/chromium-system-nspr-r0.patch new file mode 100644 index 000000000000..130baf606124 --- /dev/null +++ b/www-client/chromium/files/chromium-system-nspr-r0.patch @@ -0,0 +1,10 @@ +--- chrome/chrome_common.gypi.orig 2013-01-19 05:55:34.000000000 +0100 ++++ chrome/chrome_common.gypi 2013-01-19 05:56:04.000000000 +0100 +@@ -31,6 +31,7 @@ + '<(DEPTH)/base/base.gyp:base_i18n', + '<(DEPTH)/base/base.gyp:base_prefs', + '<(DEPTH)/base/base.gyp:base_static', ++ '<(DEPTH)/base/third_party/nspr/nspr.gyp:nspr', + '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', + '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', + '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', diff --git a/www-client/google-chrome/Manifest b/www-client/google-chrome/Manifest index 42fea5ea9d53..d9294c65e6e2 100644 --- a/www-client/google-chrome/Manifest +++ b/www-client/google-chrome/Manifest @@ -1,5 +1,7 @@ DIST google-chrome-beta_25.0.1364.36-r177067_amd64.deb 39397570 SHA256 72c3d9094027b01589b9f6cd5a0213602ad09dc3b26485c422b6bae0d44fe8b2 SHA512 fcb5024e77784b8ced10bccef2906a1400ff806e590ab262552a6f332d64bf01c3295e7a7255a2758694da98f8c0296800f17388a88af5bbb0b369814319fab5 WHIRLPOOL c4dae01adf444cafb0f094bffcc8e3f3873bc84fa06747e045bcb9d3bc0749f96f0831c76606753bb428a35a16df6099fe4b9fac78ddbe498a8d3d5b7348441d DIST google-chrome-beta_25.0.1364.36-r177067_i386.deb 37455192 SHA256 2bf9f922838bee33cb63eab33d46e51ee2ea65d6ade0f40ab08800bb3295118a SHA512 9da9b338bdb4c2b07e84e5449feb8d192283eda20787712c4c50e943422f18f9db2746fee0499cbf33d6dc95ce1d4fb95b7aa0041ba46ba1e1966f842aaaf153 WHIRLPOOL dbdf7d3c14107d9536fa1306c528e4c860f19f6be13a40efbfd1cd3bdd18bb63e83d6fceb1cce64af1ae2943604ed8d2f71716f7fb79c48755409a07ef7ea7f3 +DIST google-chrome-libudev-0.13.1-amd64.tar.xz 22040 SHA256 e9010b3fc6023c722664a73a62129cdb0cb3c0bc7d86d74de13b4c69eb4470c5 SHA512 f48946a4047cb5ceb148daac22d379c35f2c19fc0ee08c17871a683dd925e34fafee2231e8e4721c97805fb764a23ac76e2ef782ad19efb2af952ba4e3c813fb WHIRLPOOL d37553068b168b64c11120021b544e710f387a3f5e247d7af1c7f892789651aac32b062daa26543d25daebeba887615f713623a6c52e131b747395463a327e1d +DIST google-chrome-libudev-0.13.1-x86.tar.xz 23840 SHA256 abb1ea83b407bd75e9a1e7b5dfce589352a7eda4d15f76647b84ef304d69058a SHA512 6da8d114a33cc693274096d51e989ffcdc2465adfc8f9b4d888704b5f9fad639af91799ee40a94d0a25c9d04e2d70cbd55a0f47e72e4e6b024277e46f027dd28 WHIRLPOOL fa3725df2e9b6e19cd5afc482e833b540a217f364e90113a304c5418cbd3080f5bf8a476966285a18fedae4c3032d0e6f95ddac67c7c72f066c71a9dcdc1090c DIST google-chrome-stable_24.0.1312.52-r175374_amd64.deb 36683546 SHA256 cf1ebfbe203dd765c951e632c0692351067079d49a513ef813398d0e5f632e91 SHA512 b9e5c57238879a3637d7140a028ba06d8b83ed3c8ebe2c0bd3daf91929ea1dcd227962e820504ffd99399213103f49004592d8f81d1b2959665d07fd36d31c52 WHIRLPOOL bcfc0d7582bbb90dcfd340242ab8a0203a08a6cbe493b964f9cba0d3d6ed80defd8133e5d2134a9079d1797f63df87688f3906bcc55f79f5d2254ca24b645391 DIST google-chrome-stable_24.0.1312.52-r175374_i386.deb 34997244 SHA256 b053fc3a2432eac6c918bc5ff7b1eeb4897f5e284698109b12cbfd301a1cf8bc SHA512 e859242fee3725e85a0e1cb71ae70d1e99df030048761773ef372735cbf4e309f3d167c1fa0392cd839928a06370527d5d942de587399a984c3acc1373a54eb7 WHIRLPOOL 2024a35ee370317a3b33e0d54c02ddc175fb0431a4fa8a387ce44ad7988ec0fd213077e769d19e973369feafeee971b25e584dbd716dca014e91957769eabbfc DIST google-chrome-unstable_26.0.1386.0-r177362_amd64.deb 39639828 SHA256 a523d0b0ebeca1439d76be6e3423a0c5f9e4326e9a1359b3bb111155c10a5da0 SHA512 3fb97280d7183eb9215eca543699b6dfa3e7ce7ca6cd00f8ae7acbcc698e1c5f270e4a388abbe43240a6a169ade940a15173abccbf19aa06e33afcc5e5adf0f5 WHIRLPOOL 9b0afa4faf4dccd80f41204e57040dbd2e2955ab9a21f4f53749a879b95208c844bd1c4e332ad1d482121f5d0ecad86cf704b6f288cdded8c9e1a8e4a75a7836 diff --git a/www-client/google-chrome/google-chrome-24.0.1312.52_p175374.ebuild b/www-client/google-chrome/google-chrome-24.0.1312.52_p175374.ebuild index e3c6d67f12f4..c0f541bf875c 100644 --- a/www-client/google-chrome/google-chrome-24.0.1312.52_p175374.ebuild +++ b/www-client/google-chrome/google-chrome-24.0.1312.52_p175374.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-24.0.1312.52_p175374.ebuild,v 1.1 2013/01/11 02:02:17 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/google-chrome/google-chrome-24.0.1312.52_p175374.ebuild,v 1.3 2013/01/20 08:22:07 floppym Exp $ EAPI="4" @@ -34,8 +34,16 @@ esac MY_PN="${PN}-${SLOT}" MY_P="${MY_PN}_${MY_PV}" -SRC_BASE="http://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_" -SRC_URI="amd64? ( ${SRC_BASE}amd64.deb ) x86? ( ${SRC_BASE}i386.deb )" +SRC_URI=" + amd64? ( + http://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_amd64.deb + mirror://gentoo/google-chrome-libudev-0.13.1-amd64.tar.xz + ) + x86? ( + http://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_i386.deb + mirror://gentoo/google-chrome-libudev-0.13.1-x86.tar.xz + ) +" LICENSE="google-chrome" KEYWORDS="-* ~amd64 ~x86" @@ -58,7 +66,6 @@ RDEPEND=" net-print/cups sys-apps/dbus || ( >=sys-devel/gcc-4.4.0[-nocxx] >=sys-devel/gcc-4.4.0[cxx] ) - virtual/udev x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 @@ -83,9 +90,7 @@ QA_PREBUILT="*" S=${WORKDIR} pkg_nofetch() { - eerror "Please do not report bugs for google-chrome fetch failures." - eerror "The problem will be resolved with the next version bump." - eerror "Sync your portage tree and try again." + eerror "Please wait 24 hours before reporting a bug for google-chrome fetch failures." } pkg_setup() { @@ -118,9 +123,6 @@ src_install() { insinto /usr/share/icons/hicolor/${size}x${size}/apps newins "${D}${CHROME_HOME}product_logo_${size}.png" google-chrome.png done - - # Compatibility symlink for newer udev, bug 423415. - dosym "/usr/$(get_libdir)/libudev.so" "${CHROME_HOME}libudev.so.0" } any_cpu_missing_flag() { diff --git a/www-client/google-chrome/google-chrome-25.0.1364.36_beta177067.ebuild b/www-client/google-chrome/google-chrome-25.0.1364.36_beta177067.ebuild index 70334f5ffe0c..e44435be11e6 100644 --- a/www-client/google-chrome/google-chrome-25.0.1364.36_beta177067.ebuild +++ b/www-client/google-chrome/google-chrome-25.0.1364.36_beta177067.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-25.0.1364.36_beta177067.ebuild,v 1.1 2013/01/19 17:19:53 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/google-chrome/google-chrome-25.0.1364.36_beta177067.ebuild,v 1.3 2013/01/20 08:22:07 floppym Exp $ EAPI="4" @@ -34,8 +34,16 @@ esac MY_PN="${PN}-${SLOT}" MY_P="${MY_PN}_${MY_PV}" -SRC_BASE="http://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_" -SRC_URI="amd64? ( ${SRC_BASE}amd64.deb ) x86? ( ${SRC_BASE}i386.deb )" +SRC_URI=" + amd64? ( + http://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_amd64.deb + mirror://gentoo/google-chrome-libudev-0.13.1-amd64.tar.xz + ) + x86? ( + http://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_i386.deb + mirror://gentoo/google-chrome-libudev-0.13.1-x86.tar.xz + ) +" LICENSE="google-chrome" KEYWORDS="-* ~amd64 ~x86" @@ -58,7 +66,6 @@ RDEPEND=" net-print/cups sys-apps/dbus || ( >=sys-devel/gcc-4.4.0[-nocxx] >=sys-devel/gcc-4.4.0[cxx] ) - virtual/udev x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 @@ -84,9 +91,7 @@ QA_PREBUILT="*" S=${WORKDIR} pkg_nofetch() { - eerror "Please do not report bugs for google-chrome fetch failures." - eerror "The problem will be resolved with the next version bump." - eerror "Sync your portage tree and try again." + eerror "Please wait 24 hours before reporting a bug for google-chrome fetch failures." } pkg_setup() { @@ -119,9 +124,6 @@ src_install() { insinto /usr/share/icons/hicolor/${size}x${size}/apps newins "${D}${CHROME_HOME}product_logo_${size}.png" google-chrome.png done - - # Compatibility symlink for newer udev, bug 423415. - dosym "/usr/$(get_libdir)/libudev.so" "${CHROME_HOME}libudev.so.0" } any_cpu_missing_flag() { diff --git a/www-client/google-chrome/google-chrome-26.0.1386.0_alpha177362.ebuild b/www-client/google-chrome/google-chrome-26.0.1386.0_alpha177362.ebuild index 5d2b431187d1..0504348ee9b1 100644 --- a/www-client/google-chrome/google-chrome-26.0.1386.0_alpha177362.ebuild +++ b/www-client/google-chrome/google-chrome-26.0.1386.0_alpha177362.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.1386.0_alpha177362.ebuild,v 1.1 2013/01/19 17:19:53 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/google-chrome/google-chrome-26.0.1386.0_alpha177362.ebuild,v 1.3 2013/01/20 08:22:07 floppym Exp $ EAPI="4" @@ -34,8 +34,16 @@ esac MY_PN="${PN}-${SLOT}" MY_P="${MY_PN}_${MY_PV}" -SRC_BASE="http://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_" -SRC_URI="amd64? ( ${SRC_BASE}amd64.deb ) x86? ( ${SRC_BASE}i386.deb )" +SRC_URI=" + amd64? ( + http://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_amd64.deb + mirror://gentoo/google-chrome-libudev-0.13.1-amd64.tar.xz + ) + x86? ( + http://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_i386.deb + mirror://gentoo/google-chrome-libudev-0.13.1-x86.tar.xz + ) +" LICENSE="google-chrome" KEYWORDS="-* ~amd64 ~x86" @@ -58,7 +66,6 @@ RDEPEND=" net-print/cups sys-apps/dbus || ( >=sys-devel/gcc-4.4.0[-nocxx] >=sys-devel/gcc-4.4.0[cxx] ) - virtual/udev x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 @@ -84,9 +91,7 @@ QA_PREBUILT="*" S=${WORKDIR} pkg_nofetch() { - eerror "Please do not report bugs for google-chrome fetch failures." - eerror "The problem will be resolved with the next version bump." - eerror "Sync your portage tree and try again." + eerror "Please wait 24 hours before reporting a bug for google-chrome fetch failures." } pkg_setup() { @@ -119,9 +124,6 @@ src_install() { insinto /usr/share/icons/hicolor/${size}x${size}/apps newins "${D}${CHROME_HOME}product_logo_${size}.png" google-chrome.png done - - # Compatibility symlink for newer udev, bug 423415. - dosym "/usr/$(get_libdir)/libudev.so" "${CHROME_HOME}libudev.so.0" } any_cpu_missing_flag() { diff --git a/www-client/qupzilla/files/qupzilla-1.3.5-fixes.patch b/www-client/qupzilla/files/qupzilla-1.3.5-fixes.patch new file mode 100644 index 000000000000..0f2bb096baed --- /dev/null +++ b/www-client/qupzilla/files/qupzilla-1.3.5-fixes.patch @@ -0,0 +1,78 @@ +https://github.com/QupZilla/qupzilla/commit/37da53731c6c92b4ece0bdb6e264472adf2f6d9f +diff -ru QupZilla-1.3.5.org/src/lib/adblock/adblockicon.cpp QupZilla-1.3.5/src/lib/adblock/adblockicon.cpp +--- QupZilla-1.3.5.org/src/lib/adblock/adblockicon.cpp 2012-12-11 19:20:32.094777090 +0100 ++++ QupZilla-1.3.5/src/lib/adblock/adblockicon.cpp 2012-12-11 19:25:29.891932103 +0100 +@@ -111,7 +111,7 @@ + menu->addAction(tr("Show AdBlock &Settings"), manager, SLOT(showDialog())); + menu->addSeparator(); + +- if (!pageUrl.isEmpty()) { ++ if (!pageUrl.isEmpty() && m_enabled) { + const QString &host = page->url().host().contains(QLatin1String("www.")) ? pageUrl.host().mid(4) : pageUrl.host(); + const QString &hostFilter = QString("@@||%1^$document").arg(host); + const QString &pageFilter = QString("@@|%1|$document").arg(pageUrl.toString()); + +https://github.com/QupZilla/qupzilla/commit/7eaa2d11e057cc28b22cb5c45f6285c6a350fa67 +and +https://github.com/QupZilla/qupzilla/issues/652 +diff -ru QupZilla-1.3.5.org/src/lib/history/historymodel.cpp QupZilla-1.3.5/src/lib/history/historymodel.cpp +--- QupZilla-1.3.5.org/src/lib/history/historymodel.cpp 2012-12-11 19:20:32.085777083 +0100 ++++ QupZilla-1.3.5/src/lib/history/historymodel.cpp 2012-12-11 19:24:17.013895571 +0100 +@@ -264,6 +264,7 @@ + beginResetModel(); + + delete m_rootItem; ++ m_todayItem = 0; + m_rootItem = new HistoryItem(0); + + init(); +@@ -448,12 +449,15 @@ + if (!query.next()) { + return; + } ++ ++ const qint64 &minTimestamp = query.value(0).toLongLong(); ++ if (minTimestamp <= 0) { ++ return; ++ } + + const QDate &today = QDate::currentDate(); + const QDate &week = today.addDays(1 - today.dayOfWeek()); + const QDate &month = QDate(today.year(), today.month(), 1); +- +- const qint64 &minTimestamp = query.value(0).toLongLong(); + const qint64 ¤tTimestamp = QDateTime::currentMSecsSinceEpoch(); + + qint64 timestamp = currentTimestamp; + +backport of https://github.com/QupZilla/qupzilla/commit/d08ec28d70934fa82d51efceb1a422d96c6812f6 +diff -ru QupZilla-1.3.5.org/src/lib/webview/tabbar.cpp QupZilla-1.3.5/src/lib/webview/tabbar.cpp +--- QupZilla-1.3.5.org/src/lib/webview/tabbar.cpp 2012-12-11 19:20:32.092777090 +0100 ++++ QupZilla-1.3.5/src/lib/webview/tabbar.cpp 2012-12-11 19:27:23.110991048 +0100 +@@ -647,15 +647,6 @@ + QAbstractButton::leaveEvent(event); + } + +-void CloseButton::hideEvent(QHideEvent* event) +-{ +- QAbstractButton::hideEvent(event); +- +- if (!isVisible()) { +- deleteLater(); +- } +-} +- + void CloseButton::paintEvent(QPaintEvent*) + { + QPainter p(this); +diff -ru QupZilla-1.3.5.org/src/lib/webview/tabbar.h QupZilla-1.3.5/src/lib/webview/tabbar.h +--- QupZilla-1.3.5.org/src/lib/webview/tabbar.h 2012-12-11 19:20:32.093777090 +0100 ++++ QupZilla-1.3.5/src/lib/webview/tabbar.h 2012-12-11 19:27:32.539995733 +0100 +@@ -128,7 +128,6 @@ + + void enterEvent(QEvent* event); + void leaveEvent(QEvent* event); +- void hideEvent(QHideEvent* event); + void paintEvent(QPaintEvent* event); + }; + diff --git a/www-client/qupzilla/qupzilla-1.3.5-r1.ebuild b/www-client/qupzilla/qupzilla-1.3.5-r1.ebuild new file mode 100644 index 000000000000..fafcca702b4d --- /dev/null +++ b/www-client/qupzilla/qupzilla-1.3.5-r1.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/qupzilla/qupzilla-1.3.5-r1.ebuild,v 1.1 2013/01/20 10:04:57 yngwin Exp $ + +EAPI=5 +PLOCALES="cs_CZ de_DE el_GR es_ES es_VE fa_IR fr_FR hu_HU id_ID it_IT ja_JP +ka_GE nl_NL pl_PL pt_BR pt_PT ro_RO ru_RU sk_SK sr_BA sr_RS sv_SE uk_UA +zh_CN zh_TW" +inherit l10n multilib qt4-r2 vcs-snapshot + +MY_P="QupZilla-${PV}" + +DESCRIPTION="Qt WebKit web browser" +HOMEPAGE="http://www.qupzilla.com/" +SRC_URI="mirror://github/QupZilla/${PN}/${MY_P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="dbus debug kde nonblockdialogs" + +DEPEND=" + >=x11-libs/qt-core-4.7:4 + >=x11-libs/qt-gui-4.7:4 + >=x11-libs/qt-script-4.7:4 + >=x11-libs/qt-sql-4.7:4 + >=x11-libs/qt-webkit-4.7:4 + dbus? ( >=x11-libs/qt-dbus-4.7:4 )" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${MY_P} + +DOCS="AUTHORS BUILDING CHANGELOG FAQ README.md TODO" + +src_prepare() { + # remove outdated copies of localizations: + rm -rf bin/locale || die + epatch "${FILESDIR}"/${P}-libX11-underlinking.patch + epatch "${FILESDIR}"/${P}-fixes.patch + epatch_user +} + +src_configure() { + # see BUILDING document for explanation of options + export QUPZILLA_PREFIX=${EPREFIX}/usr/ + export USE_LIBPATH=${QUPZILLA_PREFIX}$(get_libdir) + export DISABLE_DBUS=$(use dbus && echo false || echo true) + export KDE=$(use kde && echo true || echo false) # in future this will enable nepomuk integration + export NONBLOCK_JS_DIALOGS=$(use nonblockdialogs && echo true || echo false) + has_version '>=x11-libs/qt-webkit-4.8.0:4' && export USE_QTWEBKIT_2_2=true + + eqmake4 +} + +src_install() { + qt4-r2_src_install + l10n_for_each_disabled_locale_do rm_loc +} + +rm_loc() { + rm "${D}"/usr/share/${PN}/locale/${1}.qm || die +} diff --git a/x11-drivers/nvidia-drivers/metadata.xml b/x11-drivers/nvidia-drivers/metadata.xml index f60e0ea72e38..eb0801f40fdf 100644 --- a/x11-drivers/nvidia-drivers/metadata.xml +++ b/x11-drivers/nvidia-drivers/metadata.xml @@ -8,10 +8,6 @@ jer@gentoo.org - - spock@gentoo.org - Focused on CUDA and new kernel support - xarthisius@gentoo.org Blame me on all OpenCL issues diff --git a/x11-libs/colord-gtk/colord-gtk-0.1.24.ebuild b/x11-libs/colord-gtk/colord-gtk-0.1.24.ebuild index 9ec436e587c9..18f42fb09623 100644 --- a/x11-libs/colord-gtk/colord-gtk-0.1.24.ebuild +++ b/x11-libs/colord-gtk/colord-gtk-0.1.24.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/colord-gtk/colord-gtk-0.1.24.ebuild,v 1.9 2013/01/06 11:19:35 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/colord-gtk/colord-gtk-0.1.24.ebuild,v 1.10 2013/01/20 17:08:43 ago Exp $ EAPI="5" VALA_MIN_API_VERSION="0.14" @@ -14,7 +14,7 @@ SRC_URI="http://www.freedesktop.org/software/colord/releases/${P}.tar.xz" LICENSE="LGPL-3+" SLOT="0/1" # subslot = libcolord-gtk soname version -KEYWORDS="~alpha amd64 arm ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd" IUSE="doc +introspection vala" REQUIRED_USE="vala? ( introspection )" diff --git a/x11-misc/colord/colord-0.1.26.ebuild b/x11-misc/colord/colord-0.1.26.ebuild index 4923d7936a59..7b44c032193b 100644 --- a/x11-misc/colord/colord-0.1.26.ebuild +++ b/x11-misc/colord/colord-0.1.26.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/colord/colord-0.1.26.ebuild,v 1.9 2013/01/06 18:07:25 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/colord/colord-0.1.26.ebuild,v 1.10 2013/01/20 17:08:22 ago Exp $ EAPI="5" VALA_MIN_API_VERSION="0.18" @@ -14,7 +14,7 @@ SRC_URI="http://www.freedesktop.org/software/colord/releases/${P}.tar.xz" LICENSE="GPL-2+" SLOT="0/1" # subslot = libcolord soname version -KEYWORDS="~alpha amd64 arm ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd" IUSE="doc examples +gusb +introspection +udev vala" #systemd REQUIRED_USE="vala? ( introspection )" diff --git a/x11-misc/x11vnc/metadata.xml b/x11-misc/x11vnc/metadata.xml index 1a98ec09335c..a8bbd113b788 100644 --- a/x11-misc/x11vnc/metadata.xml +++ b/x11-misc/x11vnc/metadata.xml @@ -2,8 +2,7 @@ - swegener@gentoo.org - Primary Maintainer + maintainer-needed@gentoo.org The primary goal of this program is to create a portable and simple command-line diff --git a/x11-wm/fvwm/metadata.xml b/x11-wm/fvwm/metadata.xml index 84a6a6098938..6810efe917a3 100644 --- a/x11-wm/fvwm/metadata.xml +++ b/x11-wm/fvwm/metadata.xml @@ -2,14 +2,11 @@ desktop-wm + proxy-maintainers i92guboj@gentoo.org Proxied committer, assign bugs - - maintainer-needed@gentoo.org - Need proxy committer, CC bugs - fvwm is an ICCCM-compliant X window manager providing a 3D look for window decorations, multiple discontiguous virtual desktops, a high