diff --git a/app-admin/webmin/Manifest b/app-admin/webmin/Manifest index b6a050595a66..e5ae1da3bfd5 100644 --- a/app-admin/webmin/Manifest +++ b/app-admin/webmin/Manifest @@ -1,2 +1,4 @@ DIST webmin-1.770-minimal.tar.gz 2612198 SHA256 e976091dcf0a68dfb02d5633d09da2ce9dc69d8ea2bde95c3cc57a0a25384488 SHA512 3661e37bbeb9f814862ff208d32ec4bfa15e8e826c15833e47c3a39cb0bb47d1f227c0c942f72aed4f3e9344556cc0ef8de42a5961c6795ef01986abafe9949b WHIRLPOOL 92a89623da8ba09d921ffec38c45c2c4bf04c8249178d9d13d34339ecc902d8d7184396ce29c04bfb6e9eba463c2942dc5d9d10d05af463b4dbf9337891bcc02 DIST webmin-1.770.tar.gz 28441983 SHA256 eb84f1adbb099d0a2e633fbc4ea4838d1ddbcc84135d6a897803fbd0284719ba SHA512 460d9e06379df8d950874906589938077fd0fc70ed12948a685c1386c9995538d92387e252373398319469406b8ef0daab67dabe8c71b2f1961a5d5cb6848a7f WHIRLPOOL 4556f51001d010b66c6af265904b3f634f7bccf1afeb74be6de0824fefb2a5b2a5508d751bfa4abcfd0cb8b670659474ecf4e564505e446ed36a737e4f100dc0 +DIST webmin-1.780-minimal.tar.gz 2624841 SHA256 d4f51fcc448a881d568a32dce1712f4feb1d15bccb05005117179b8a6488e403 SHA512 a0fc61c202d94419f52572a95df23f4dd54c3b0552ce96df356b13b529988cb4be02e5f1165fbd5fbe30921697baac8b229d8d587860e3adabcbe2a4bfb11806 WHIRLPOOL f8b94e16b041cef115cfa7a49fbb34d432f9f96b28959e3f161df9de5805d4a38d7a019479e96ee886dd6f4c21e5884864a69b923ec3b0ac92422c530a95249c +DIST webmin-1.780.tar.gz 28578888 SHA256 eb2613a4f4525cbbd04435580a843cb2a454bcf2712301105657cc114beda40e SHA512 1d5552fc09e0a42218881d2d028b8e73deadfca36022a6212e540e8dbbd2ff5fe23883fc4d3b4d63abee0a2aee570ce9710e4e1b75c2cc28f70724502d6680d7 WHIRLPOOL 7ef76b9e3f64d01978aa281d7e57db37078bab4ec101faa115f51ebf43bc0823d8a8bfa925dff5d1a39b0b9aabdada2218d543b14d3961b1346de05c46137d4b diff --git a/app-admin/webmin/webmin-1.780.ebuild b/app-admin/webmin/webmin-1.780.ebuild new file mode 100644 index 000000000000..eb7f7a9fb001 --- /dev/null +++ b/app-admin/webmin/webmin-1.780.ebuild @@ -0,0 +1,307 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +inherit eutils pam ssl-cert systemd + +DESCRIPTION="A web-based Unix systems administration interface" +HOMEPAGE="http://www.webmin.com/" +SRC_URI="minimal? ( mirror://sourceforge/webadmin/${P}-minimal.tar.gz ) + !minimal? ( mirror://sourceforge/webadmin/${P}.tar.gz )" + +LICENSE="BSD GPL-2" +SLOT="0" + +KEYWORDS="~amd64 ~x86" + +# NOTE: The ssl flag auto added by ssl-cert eclass is not used actually +# because openssl is forced by dev-perl/Net-SSLeay +IUSE="minimal +ssl mysql postgres ldap" + +# All the required perl modules can be found easily using (in Webmin's root src dir): +# find . -name cpan_modules.pl -exec grep "::" {} \; +# NOTE: If Webmin doesn't find the required perl modules, it offers(runtime) the user +# to install them using the in-built cpan module, and this will mess up perl on the system +# That's why some modules are forced without a use flag +# NOTE: pam, ssl and dnssec-tools deps are forced for security and Gentoo compliance installation reasons +DEPEND="virtual/perl-MIME-Base64 + virtual/perl-Socket + virtual/perl-Sys-Syslog + virtual/perl-Time-HiRes + virtual/perl-Time-Local + dev-perl/Authen-Libwrap + dev-perl/IO-Tty + dev-perl/MD5 + dev-perl/Net-SSLeay + dev-perl/Authen-PAM + dev-perl/Sys-Hostname-Long + >=net-dns/dnssec-tools-1.13 + !minimal? ( + mysql? ( dev-perl/DBD-mysql ) + postgres? ( dev-perl/DBD-Pg ) + ldap? ( dev-perl/perl-ldap ) + dev-perl/XML-Generator + dev-perl/XML-Parser + )" +RDEPEND="${DEPEND}" + +src_prepare() { + local perl="$( which perl )" + + # Remove the unnecessary and incompatible files + rm -rf acl/Authen-SolarisRBAC-0.1* + if ! use minimal ; then + rm -rf {format,{bsd,hpux,sgi}exports,zones,rbac} + rm -f mount/{free,net,open}bsd-mounts* + rm -f mount/macos-mounts* + fi + + # For security reasons remove the SSL certificate that comes with Webmin + # We will create our own later + rm -f miniserv.pem + + # Remove the Webmin setup scripts to avoid Webmin in runtime to mess up config + # We will use our own later + rm -f setup.{sh,pl} + + # Set the installation type/mode to Gentoo + echo "gentoo" > install-type + + # Fix the permissions of the install files + chmod -R og-w "${S}" + + # Since we should not modify any files after install + # we set the perl path in all cgi and pl files here using Webmin's routines + # The pl file is Prefix safe and works only on provided input, no other filesystem files + ebegin "Fixing perl path in source files" + (find "${S}" -name '*.cgi' -print ; find "${S}" -name '*.pl' -print) | $perl "${S}"/perlpath.pl $perl - + eend $? +} + +src_install() { + # Create config dir and keep + diropts -m0755 + dodir /etc/webmin + keepdir /etc/webmin + + # Create install dir + # Third party modules installed through Webmin go here too, so keep + dodir /usr/libexec/webmin + keepdir /usr/libexec/webmin + + # Copy our own setup script to installation folder + insinto /usr/libexec/webmin + newins "${FILESDIR}"/gentoo-setup gentoo-setup.sh + fperms 0744 /usr/libexec/webmin/gentoo-setup.sh + + # This is here if we ever want in future ebuilds to add some specific + # config values in the /etc/webmin/miniserv.conf + # The format of this file should be the same as the one of miniserv.conf: + # var=value + # + # Uncomment it if you use such file. Before that check if upstream + # has this file in root dir too. + #newins "${FILESDIR}/miniserv-conf" miniserv-conf + + # Create the log dir and keep + diropts -m0700 + dodir /var/log/webmin + keepdir /var/log/webmin + + # Create the init.d file and put the neccessary variables there + newinitd "${FILESDIR}"/init.d.webmin webmin + sed -i \ + -e "s:%exe%:${EROOT}usr/libexec/webmin/miniserv.pl:" \ + -e "s:%pid%:${EROOT}var/run/webmin.pid:" \ + -e "s:%conf%:${EROOT}etc/webmin/miniserv.conf:" \ + -e "s:%config%:${EROOT}etc/webmin/config:" \ + -e "s:%perllib%:${EROOT}usr/libexec/webmin:" \ + "${ED}etc/init.d/webmin" \ + || die "Failed to patch the webmin init file" + + # Create the systemd service file and put the neccessary variables there + systemd_newunit "${FILESDIR}"/webmin.service webmin.service + sed -i \ + -e "s:%exe%:${EROOT}usr/libexec/webmin/miniserv.pl:" \ + -e "s:%pid%:${EROOT}var/run/webmin.pid:" \ + -e "s:%conf%:${EROOT}etc/webmin/miniserv.conf:" \ + -e "s:%config%:${EROOT}etc/webmin/config:" \ + -e "s:%perllib%:${EROOT}usr/libexec/webmin:" \ + "${ED}$(_systemd_get_systemunitdir)/webmin.service" \ + || die "Failed to patch the webmin systemd service file" + + # Setup pam + pamd_mimic system-auth webmin auth account session + + # Copy files to installation folder + ebegin "Copying install files to destination" + cp -pPR "${S}"/* "${ED}usr/libexec/webmin" + eend $? +} + +pkg_preinst() { + # First stop service if running so Webmin to not messup our config + ebegin "Stopping any running Webmin instance prior merging" + if systemd_is_booted ; then + systemctl stop webmin.service 2>/dev/null + else + rc-service --ifexists -- webmin --ifstarted stop + fi + eend $? +} + +pkg_postinst() { + # Run pkg_config phase first - non interactively + export INTERACTIVE="no" + pkg_config + # Every next time pkg_config should be interactive + INTERACTIVE="yes" + + ewarn + ewarn "Bare in mind that not all Webmin modules are Gentoo tweaked and may have some issues." + ewarn "Always be careful when using modules that modify init entries, do update of webmin, install CPAN modules etc." + ewarn "To avoid problems, please before using any module, look at its configuration options first." + ewarn "(Usually there is a link at top in the right pane of Webmin for configuring the module.)" + ewarn + if systemd_is_booted ; then + elog "- To make Webmin start at boot time, run: 'systemctl enable webmin.service'" + else + elog "- To make Webmin start at boot time, run: 'rc-update add webmin default'" + fi + elog "- The default URL to connect to Webmin is: https://localhost:10000" + elog "- The default user that can login is: root" + elog "- To reconfigure Webmin in case of problems run 'emerge --config app-admin/webmin'" +} + +pkg_prerm() { + # First stop service if running - we do not want Webmin to mess up config + ebegin "Stopping any running Webmin instance prior unmerging" + if systemd_is_booted ; then + systemctl stop webmin.service 2>/dev/null + else + rc-service --ifexists -- webmin --ifstarted stop + fi + eend $? +} + +pkg_postrm() { + # If removing webmin completely, remind the user for the Webmin's own cron jobs. + if [[ ! ${REPLACED_BY_VERSION} ]]; then + ewarn + ewarn "You have uninstalled Webmin, so have in mind that all cron jobs scheduled" + ewarn "by Webmin for its own modules, are left active and they will fail when Webmin is missing." + ewarn "To fix this just disable them if you intend to use Webmin again," + ewarn "OR delete them if not." + ewarn + fi +} + +pkg_config(){ + # First stop service if running + ebegin "Stopping any running Webmin instance" + if systemd_is_booted ; then + systemctl stop webmin.service 2>/dev/null + else + rc-service --ifexists -- webmin --ifstarted stop + fi + eend $? + + # Next set the default reset variable to 'none' + # reset/_reset can be: + # 'none' - does not reset anything, just upgrades if a conf is present + # OR installs new conf if a conf is missing + # 'soft' - deletes only $config_dir/config file and thus resetting most + # conf values to their defaults. Keeps the specific Webmin cron jobs + # 'hard' - deletes all files in $config_dir (keeping the .keep_* Gentoo file) + # and thus resetting all Webmin. Deletes the specific Webmin cron jobs too. + local _reset="none" + + # If in interactive mode ask user what should we do + if [[ "${INTERACTIVE}" = "yes" ]]; then + einfo + einfo "Please enter the number of the action you would like to perform?" + einfo + einfo "1. Update configuration" + einfo " (keeps old config options and adds the new ones)" + einfo "2. Soft reset configuration" + einfo " (keeps some old config options, the other options are set to default)" + ewarn " All Webmin users will be reset" + einfo "3. Hard reset configuration" + einfo " (all options including module options are set to default)" + ewarn " You will lose all Webmin configuration options you have done till now" + einfo "4. Exit this configuration utility (default)" + while [ "$correct" != "true" ] ; do + read answer + if [[ "$answer" = "1" ]] ; then + _reset="none" + correct="true" + elif [[ "$answer" = "2" ]] ; then + _reset="soft" + correct="true" + elif [[ "$answer" = "3" ]] ; then + _reset="hard" + correct="true" + elif [ "$answer" = "4" -o "$answer" = "" ] ; then + die "User aborted configuration." + else + echo "Answer not recognized. Enter a number from 1 to 4" + fi + done + + if [[ "$_reset" = "hard" ]]; then + while [ "$sure" != "true" ] ; do + ewarn "You will lose all Webmin configuration options you have done till now." + ewarn "Are you sure you want to do this? (y/n)" + read answer + if [[ $answer =~ ^[Yy]([Ee][Ss])?$ ]] ; then + sure="true" + elif [[ $answer =~ ^[Nn]([Oo])?$ ]] ; then + die "User aborted configuration." + else + echo "Answer not recognized. Enter 'y' or 'n'" + fi + done + fi + fi + + export reset=$_reset + + # Create ssl certificate for Webmin if there is not one in the proper place + if [[ ! -e "${EROOT}etc/ssl/webmin/server.pem" ]]; then + SSL_ORGANIZATION="${SSL_ORGANIZATION:-Webmin Server}" + SSL_COMMONNAME="${SSL_COMMONNAME:-*}" + install_cert "${EROOT}/etc/ssl/webmin/server" + fi + + # Ensure all paths passed to the setup script use EROOT + export wadir="${EROOT}usr/libexec/webmin" + export config_dir="${EROOT}etc/webmin" + export var_dir="${EROOT}var/log/webmin" + export tempdir="${T}" + export pidfile="${EROOT}var/run/webmin.pid" + export perl="$( which perl )" + export os_type='gentoo-linux' + export os_version='*' + export real_os_type='Gentoo Linux' + export real_os_version='Any version' + # Forcing 'ssl', 'no_ssl2', 'no_ssl3', 'ssl_redirect', 'no_sslcompression', + # 'no_tls1' and 'no_tls1_1' for tightening security + export ssl=1 + export no_ssl2=1 + export no_ssl3=1 + export ssl_redirect=1 + export no_sslcompression=1 + export no_tls1=1 + export no_tls1_1=1 + export keyfile="${EROOT}etc/ssl/webmin/server.pem" + export port=10000 + + export atboot=0 + + einfo "Executing Webmin's configure script" + $wadir/gentoo-setup.sh + + einfo "Configuration of Webmin done" +} diff --git a/app-benchmarks/stress-ng/Manifest b/app-benchmarks/stress-ng/Manifest new file mode 100644 index 000000000000..b721fe824de3 --- /dev/null +++ b/app-benchmarks/stress-ng/Manifest @@ -0,0 +1 @@ +DIST stress-ng-0.05.12.tar.gz 280758 SHA256 081a597bc3b6b7f2993828a04048e5321a81ece6995c7bb9b202dd65e7fb055f SHA512 ee622b1d8fd1b3ddee6119f5a43cedb427e3524bb6ef10f7ac96c305567c9919574e9103949825e2bea3391c302b6e2b5871667bc8f8609844765b64ec760bc8 WHIRLPOOL b9f84501fcbe6494881947a44bbb42ba6fb00120ab6e7fc45ac6b5ece76f7dd95a98a588db9326f0e1bd879020a8ffdcc604dfc5a70f2858924bf85a8a4612c0 diff --git a/app-benchmarks/stress-ng/metadata.xml b/app-benchmarks/stress-ng/metadata.xml new file mode 100644 index 000000000000..dbd7f9333e52 --- /dev/null +++ b/app-benchmarks/stress-ng/metadata.xml @@ -0,0 +1,13 @@ + + + + + brendan@horan.hk + Brendan Horan + Proxy - Maintainer. Assign bugs to him + + + proxy-maint@gentoo.org + Proxy Maintainers + + diff --git a/app-benchmarks/stress-ng/stress-ng-0.05.12.ebuild b/app-benchmarks/stress-ng/stress-ng-0.05.12.ebuild new file mode 100644 index 000000000000..052c63b19999 --- /dev/null +++ b/app-benchmarks/stress-ng/stress-ng-0.05.12.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="A tool to load and stress a computer system" +HOMEPAGE="http://kernel.ubuntu.com/~cking/stress-ng/" +SRC_URI="http://kernel.ubuntu.com/~cking/tarballs/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="sys-apps/keyutils + sys-apps/attr" +RDEPEND="${DEPEND}" diff --git a/app-emulation/lxd/Manifest b/app-emulation/lxd/Manifest index fcb60cb0191e..d68b9fb13bfa 100644 --- a/app-emulation/lxd/Manifest +++ b/app-emulation/lxd/Manifest @@ -1,3 +1,3 @@ -DIST lxd-0.25.tar.bz2 1983043 SHA256 1cfdf1a5e8638060e2368e9e5cf8763406857309f08c4668fa0756e85ba7b89e SHA512 001e52826a3bbe00121115ddace14b3f552321f16e97700763ff6dd23b5babd3c1393cbc9b9b263b6a18c31e49c30d612e3d7153d4987644689989be0be50d00 WHIRLPOOL 496f3f19c50c1ee79ba8b5625cf34b6f57683f4066a09b3edc2cbd017cc5ebc2cc7ac9e569c94bcba0d699c6efb722b79ae43541e0dfddc2fb8d877131519b06 DIST lxd-0.26.tar.bz2 1985288 SHA256 71079140946e3e66563cc3025c3e4f756fd45cc413af1d5396c56a608427d0aa SHA512 25aa73274b03163698646fe2f49c2401ae93a9b90be46f0ba0414521bc920e68c61db7e6617d75a19675e22a705afd5d3220e24a518e30819daf3dc75670b900 WHIRLPOOL d59471f02744efbe3d3dbb1ae32dcf17141f8414a1614535451e75c5422928d3c5d54dceebcf0d829f7395ae3cb49bf424ff7999d1e32b9384a3f81b3d3ab01e DIST lxd-0.27.tar.bz2 2247266 SHA256 290d05a792f2f146b302d500eadd3168822ed99aecb4ea96762570580f29910a SHA512 37d5fef677a943dc7e84c73836aa1d4e5f0353c165aa33cefcd87dcd1fdae574760e74fb290404182badfee96e04ef929a81d6633d2c0f91c458ccd19996b9c3 WHIRLPOOL d1d0c0fad0e604f41482c133f4425461546599aded2e948d5c58f7698eba963746ac8c3c3085ffbd244b0169cedb26ad8ec5d85babea6aa9a7688ee6ce342589 +DIST lxd-2.0.0_beta1.tar.bz2 2253384 SHA256 443d8004aea80a9295eeb28c81b930947163b5af5e7c5ec15e6123938268bd6c SHA512 21cc90e18173f832f7aa2f39762ba1c47ac54dbb947519302075d10f8c55cce766d436cb7f9ec96cb2fe538952b801398ce3b1320d878e8835d58e4fb3b81c86 WHIRLPOOL 85a11976fbf74f8b408c75aa7abf645d3e27eed3f82021fbcb7b2d8db95cc986fdf2cd6a38ef8749857027b380382e66678fb1f1656274159dbc2531c3860761 diff --git a/app-emulation/lxd/files/lxd-2.0.0_beta1-disregard-dev-subdirs.patch b/app-emulation/lxd/files/lxd-2.0.0_beta1-disregard-dev-subdirs.patch new file mode 100644 index 000000000000..9655e5ebb182 --- /dev/null +++ b/app-emulation/lxd/files/lxd-2.0.0_beta1-disregard-dev-subdirs.patch @@ -0,0 +1,17 @@ +--- a/lxd/container_lxc.go ++++ b/lxd/container_lxc.go +@@ -3509,8 +3509,13 @@ func (c *containerLXC) getDiskLimits() (map[string]deviceBlockLimit, error) { + + for _, block := range blocks { + dev := strings.TrimPrefix(block, "/dev/") ++ ++ if strings.Contains(dev,"/") { ++ continue ++ } ++ + if !shared.PathExists(fmt.Sprintf("/sys/class/block/%s/dev", dev)) { +- return nil, fmt.Errorf("Disk is missing /sys/class/block entry") ++ return nil, fmt.Errorf("Disk %s is missing /sys/class/block entry", dev) + } + + block, err := ioutil.ReadFile(fmt.Sprintf("/sys/class/block/%s/dev", dev)) diff --git a/app-emulation/lxd/files/lxd-0.25-dont-go-get.patch b/app-emulation/lxd/files/lxd-2.0.0_beta1-dont-go-get.patch similarity index 100% rename from app-emulation/lxd/files/lxd-0.25-dont-go-get.patch rename to app-emulation/lxd/files/lxd-2.0.0_beta1-dont-go-get.patch diff --git a/app-emulation/lxd/files/lxd-0.25-nc-binary-name.patch b/app-emulation/lxd/files/lxd-2.0.0_beta1-nc-binary-name.patch similarity index 100% rename from app-emulation/lxd/files/lxd-0.25-nc-binary-name.patch rename to app-emulation/lxd/files/lxd-2.0.0_beta1-nc-binary-name.patch diff --git a/app-emulation/lxd/files/lxd-0.25.confd b/app-emulation/lxd/files/lxd-2.0.0_beta1.confd similarity index 100% rename from app-emulation/lxd/files/lxd-0.25.confd rename to app-emulation/lxd/files/lxd-2.0.0_beta1.confd diff --git a/app-emulation/lxd/files/lxd-0.25.initd b/app-emulation/lxd/files/lxd-2.0.0_beta1.initd similarity index 100% rename from app-emulation/lxd/files/lxd-0.25.initd rename to app-emulation/lxd/files/lxd-2.0.0_beta1.initd diff --git a/app-emulation/lxd/lxd-0.25.ebuild b/app-emulation/lxd/lxd-2.0.0_beta1.ebuild similarity index 87% rename from app-emulation/lxd/lxd-0.25.ebuild rename to app-emulation/lxd/lxd-2.0.0_beta1.ebuild index 549dff584e5f..9ff9d906254e 100644 --- a/app-emulation/lxd/lxd-0.25.ebuild +++ b/app-emulation/lxd/lxd-2.0.0_beta1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -68,6 +68,13 @@ src_prepare() { # Gentoo installs that with a renamed binary epatch "${FILESDIR}/${P}-nc-binary-name.patch" + # see https://github.com/lxc/lxd/pull/1562 + epatch "${FILESDIR}/${P}-disregard-dev-subdirs.patch" + + tmpgoroot="${T}/goroot" + mkdir -p "$tmpgoroot" || die "Failed to create temporary GOROOT" + cp -sR "$(get_golibdir_gopath)"/* "${tmpgoroot}" || die "Failed to copy files to temporary GOROOT" + # Warn on unhandled locale changes l10n_find_plocales_changes po "" .po } @@ -77,12 +84,13 @@ src_compile() { cd "${S}/src/${EGO_PN}" || die "Failed to change to deep src dir" + tmpgoroot="${T}/goroot" if use daemon; then # Build binaries - GOPATH="${S}:$(get_golibdir_gopath)" emake + GOPATH="${S}:${tmpgoroot}" emake else # build client tool - GOPATH="${S}:$(get_golibdir_gopath)" emake client + GOPATH="${S}:${tmpgoroot}" emake client fi use nls && emake build-mo @@ -120,7 +128,7 @@ src_install() { systemd_dounit "${FILESDIR}"/lxd.service fi - newbashcomp config/bash/lxc.in lxc + newbashcomp config/bash/lxd-client lxc dodoc AUTHORS CONTRIBUTING.md README.md diff --git a/app-portage/conf-update/conf-update-1.0.3-r1.ebuild b/app-portage/conf-update/conf-update-1.0.3-r1.ebuild new file mode 100644 index 000000000000..821c39cbdb00 --- /dev/null +++ b/app-portage/conf-update/conf-update-1.0.3-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils toolchain-funcs + +DESCRIPTION="${PN} is a ncurses-based config management utility" +HOMEPAGE="https://gitweb.gentoo.org/proj/conf-update.git/" +SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="colordiff libressl" + +RDEPEND=">=dev-libs/glib-2.6 + sys-libs/ncurses:0 + libressl? ( dev-libs/openssl:0 ) + libressl? ( dev-libs/libressl ) + colordiff? ( app-misc/colordiff )" +DEPEND="virtual/pkgconfig + ${RDEPEND}" + +src_prepare() { + sed -i -e "s/\$Rev:.*\\$/${PVR}/" "${S}"/"${PN}".h || die + if use colordiff ; then + sed -i -e "s/diff_tool=diff/diff_tool=colordiff/" ${PN}.conf \ die 'colordiff-sed failed' + fi + tc-export PKG_CONFIG +} + +src_compile() { + emake CC="$(tc-getCC)" +} diff --git a/app-portage/conf-update/metadata.xml b/app-portage/conf-update/metadata.xml index 31347ae3eb19..cae82b362a61 100644 --- a/app-portage/conf-update/metadata.xml +++ b/app-portage/conf-update/metadata.xml @@ -16,5 +16,7 @@ portage de Gentoo Linux Use colors when displaying diffs (app-misc/colordiff) +Enable SSL connections and crypto functions + using dev-libs/libressl diff --git a/dev-db/mariadb/mariadb-10.0.23.ebuild b/dev-db/mariadb/mariadb-10.0.23.ebuild index c9b9f36d105c..eb0673b399d8 100644 --- a/dev-db/mariadb/mariadb-10.0.23.ebuild +++ b/dev-db/mariadb/mariadb-10.0.23.ebuild @@ -20,7 +20,7 @@ RESTRICT="!bindist? ( bindist )" REQUIRED_USE="tokudb? ( jemalloc ) static? ( !pam )" # REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~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" +KEYWORDS="alpha amd64 arm ~arm64 hppa ~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='20004_all_mariadb-filter-tokudb-flags-10.0.7.patch' diff --git a/dev-db/mysql/mysql-5.6.28.ebuild b/dev-db/mysql/mysql-5.6.28.ebuild index 3f5402313c40..bc1281630b26 100644 --- a/dev-db/mysql/mysql-5.6.28.ebuild +++ b/dev-db/mysql/mysql-5.6.28.ebuild @@ -15,7 +15,7 @@ inherit mysql-multilib-r1 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 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ~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-java/colt/colt-1.2.0-r2.ebuild b/dev-java/colt/colt-1.2.0-r2.ebuild deleted file mode 100644 index 1aca6f8fd697..000000000000 --- a/dev-java/colt/colt-1.2.0-r2.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -JAVA_PKG_IUSE="source doc" - -inherit java-pkg-2 java-ant-2 eutils - -DESCRIPTION="A set of Open Source Libraries for High Performance Scientific and Technical Computing in Java" -SRC_URI="http://dsd.lbl.gov/~hoschek/colt-download/releases/${P}.tar.gz" -HOMEPAGE="http://www-itg.lbl.gov/~hoschek/colt/" - -LICENSE="colt" -IUSE="" -SLOT="0" -KEYWORDS="amd64 ppc64 x86" - -DEPEND=">=virtual/jdk-1.4 - >=dev-java/concurrent-util-1.3.4:0" -RDEPEND=">=virtual/jre-1.4 - >=dev-java/concurrent-util-1.3.4:0" - -S="${WORKDIR}/${PN}" - -EANT_BUILD_TARGET="javac jar" -JAVA_ANT_REWRITE_CLASSPATH="true" -EANT_GENTOO_CLASSPATH="concurrent-util" - -java_prepare() { - find "${S}" -iname '*.jar' -delete || die - - epatch "${FILESDIR}/${P}-benchmark-no-deprecation.patch" -} - -src_install() { - java-pkg_dojar lib/${PN}.jar - - dohtml README.html || die - use doc && java-pkg_dojavadoc doc/api - use source && java-pkg_dosrc src/* -} diff --git a/dev-java/colt/colt-1.2.0-r3.ebuild b/dev-java/colt/colt-1.2.0-r3.ebuild index ca4b0ed642b8..d9b814a4e415 100644 --- a/dev-java/colt/colt-1.2.0-r3.ebuild +++ b/dev-java/colt/colt-1.2.0-r3.ebuild @@ -14,7 +14,7 @@ HOMEPAGE="http://www-itg.lbl.gov/~hoschek/colt/" LICENSE="colt" IUSE="" SLOT="0" -KEYWORDS="amd64 x86" +KEYWORDS="amd64 ~ppc64 x86" DEPEND=">=virtual/jdk-1.7" RDEPEND=">=virtual/jre-1.7" diff --git a/dev-java/fastutil/Manifest b/dev-java/fastutil/Manifest index e3c8907eb13c..6752fc2ed132 100644 --- a/dev-java/fastutil/Manifest +++ b/dev-java/fastutil/Manifest @@ -1,4 +1,2 @@ -DIST fastutil-4.3.1-src.tar.gz 203660 SHA256 90f07cf08c8926451041e52452c3ba486f3000bfbade1d2fa3531fab0d09db4e SHA512 afedd592a891a0ed7a06780f8f1e0bbcdd0f1da6aee8536628e8a61f6dfc0787a23d69e68e1543fcfa9bc410571114a44499f5b302e30796c19f5a5841354a81 WHIRLPOOL b98f8f0a26b78e546bf491ab4fde3ddff8f226f4cf92d6098dddbcc365f419f02cca40b250371b5244ec5713722bcce8830a559430fbe46d24747d8ef4085852 -DIST fastutil-4.4.2-src.tar.gz 213196 SHA256 dff9d53db666a3ad6d1cb88166b05a0d38333fbb3ecd79edcbe968d38da795e7 SHA512 cb438044ee63a89e4e655a41448924d5ac1f61f48839480fc5ba2c08b6317e3e4b0f66b2581ebff73bcb7d865123539ad09029670d7e5d46664f61fe593c503b WHIRLPOOL ea834078c5c189574fd3e79f8b1189c674b31f005404f22701c1209204c7840ff340b471c521d84bd0325f8bf735bac9eb590c927134e7194f36e32925d0ac4f DIST fastutil-5.1.3-src.tar.gz 238461 SHA256 fe95b3f66306003bdda1de018120150790205760065d7e31aa8c207c25c3a188 SHA512 67f7ac65afbfd9e5adc415ea65a3b2f334752008e994c7e1ecac334b06a98edad73da549245e39c79709df683f4384c1d0c76f7e8a8cdd428407d547ce0eea47 WHIRLPOOL 2533487909428345f35eebb845f33267f6cd81140206e721eeca1f3f7f94926dc2af9b03dcbdde35799a089ad174e5dd6a052251820558a907579e223ec3b01a DIST fastutil-6.5.4-src.tar.gz 376688 SHA256 bc2cc6abb168856c43b9c5f6b468b1cfba4657efd0623a7d7e7800a9e01d966e SHA512 3b75d423ce9e4bb883f1baa910ed59b9ad2fc1ddf52da970f7d40eef6e0044618ce6aeaaa9daf873a256a966cd5bf850004feec21a8e7abf05cc6ac7eb6dd3fb WHIRLPOOL 5ec84a84c9be5dbfb53d69a557b0b26c0658b06b9234da4ed1614afff8ceafbcf3fe38a6b775fdc91202ad0301e2aebb70566dcd8cbae81c3828b7f18be5146d diff --git a/dev-java/fastutil/fastutil-4.3.1-r1.ebuild b/dev-java/fastutil/fastutil-4.3.1-r1.ebuild deleted file mode 100644 index 3ef42cdaa64d..000000000000 --- a/dev-java/fastutil/fastutil-4.3.1-r1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="Provides faster type-specific maps, sets and lists with a small memory footprint" -SRC_URI="http://fastutil.dsi.unimi.it/${P}-src.tar.gz" -HOMEPAGE="http://fastutil.dsi.unimi.it" -LICENSE="LGPL-2.1" -SLOT="4.3" -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND=">=virtual/jdk-1.4" -RDEPEND=">=virtual/jre-1.4" - -src_compile() { - emake sources || die "failed to make sources" - # bug 162650 and #175578 and #183356 - java-pkg_init-compiler_ - [[ ${GENTOO_COMPILER} != "javac" ]] && export ANT_OPTS="-Xmx512m" - java-pkg-2_src_compile -} - -src_install() { - - java-pkg_newjar ${P}.jar - - dodoc CHANGES README - use doc && java-pkg_dojavadoc docs - use source && java-pkg_dosrc java/it - -} diff --git a/dev-java/fastutil/fastutil-4.4.2-r1.ebuild b/dev-java/fastutil/fastutil-4.4.2-r1.ebuild deleted file mode 100644 index 383af347025b..000000000000 --- a/dev-java/fastutil/fastutil-4.4.2-r1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="Provides faster type-specific maps, sets and lists with a small memory footprint" -SRC_URI="http://fastutil.dsi.unimi.it/${P}-src.tar.gz" -HOMEPAGE="http://fastutil.dsi.unimi.it" -LICENSE="LGPL-2.1" -SLOT="4.4" -IUSE="" -KEYWORDS="amd64 x86" - -DEPEND=">=virtual/jdk-1.4" -RDEPEND=">=virtual/jre-1.4" - -src_compile() { - make sources || die "failed to make sources" - # bug 162650 and #175578 and #183356 - java-pkg_init-compiler_ - [[ ${GENTOO_COMPILER} != "javac" ]] && export ANT_OPTS="-Xmx512m" - java-pkg-2_src_compile -} - -src_install() { - java-pkg_newjar ${P}.jar - - dodoc CHANGES README || die - - use doc && java-pkg_dojavadoc docs - use source && java-pkg_dosrc java/it -} diff --git a/dev-libs/libusb/libusb-1.0.20.ebuild b/dev-libs/libusb/libusb-1.0.20.ebuild index fa3032969986..0723c730c4f7 100644 --- a/dev-libs/libusb/libusb-1.0.20.ebuild +++ b/dev-libs/libusb/libusb-1.0.20.ebuild @@ -33,7 +33,8 @@ multilib_src_configure() { } multilib_src_compile() { - emake + # Bug 573802 + emake -j1 if multilib_is_native_abi; then use doc && emake -C doc docs diff --git a/dev-libs/libusb/metadata.xml b/dev-libs/libusb/metadata.xml index 66a6901dc0bd..b0a75962266c 100644 --- a/dev-libs/libusb/metadata.xml +++ b/dev-libs/libusb/metadata.xml @@ -1,17 +1,13 @@ - - peter@stuge.se - Peter Stuge - base-system@gentoo.org Gentoo Base System - - proxy-maint@gentoo.org - Proxy Maintainers + + peter@stuge.se + Peter Stuge libusb diff --git a/dev-libs/nettle/Manifest b/dev-libs/nettle/Manifest index 84490bf72fe9..0cf2c0098642 100644 --- a/dev-libs/nettle/Manifest +++ b/dev-libs/nettle/Manifest @@ -1 +1,2 @@ DIST nettle-3.1.1.tar.gz 1851876 SHA256 5fd4d25d64d8ddcb85d0d897572af73b05b4d163c6cc49438a5bfbb8ff293d4c SHA512 b0a52e1569ff11d871165a689fdc2a0b2f478bcc3122f39df9751b7b1c915d4240ec57d22e98034cf2b5130dddcf5dc57fe26278a2f41c15f669f65814768de1 WHIRLPOOL 8a429cd860ff717c225fbd576f6bcfc2c33809df5c346e3ced9fd75f89e0895f200ffbd0bec84bd74144e397d16d1f9ba56131c29a3d65cbc4189ef3dfd5fb99 +DIST nettle-3.2.tar.gz 1879604 SHA256 ea4283def236413edab5a4cf9cf32adf540c8df1b9b67641cfc2302fca849d97 SHA512 9f2c802e8b683d1c2fd8d16ab33b2a1efda33a1bf33196be39031a2d0677f2e78d67221a718997780e157aa72973da7d9d549429e706fcfcdff97ee3bbef615a WHIRLPOOL 0353f04760137eef292848b4d8060c40cf2959596aff6f39a1d1bd123e42bc0ecb6f01679f16797204eedb01123c09ae7745121241f6a32cc205bf1c8c6efc12 diff --git a/dev-libs/nettle/nettle-3.2.ebuild b/dev-libs/nettle/nettle-3.2.ebuild new file mode 100644 index 000000000000..21a650406f3b --- /dev/null +++ b/dev-libs/nettle/nettle-3.2.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools eutils multilib-build multilib-minimal multilib toolchain-funcs + +DESCRIPTION="Low-level cryptographic library" +HOMEPAGE="http://www.lysator.liu.se/~nisse/nettle/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +LICENSE="|| ( LGPL-3 LGPL-2.1 )" +SLOT="0/6" # subslot = libnettle soname version +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x86-solaris" +IUSE="doc +gmp neon static-libs test cpu_flags_x86_aes" + +DEPEND="gmp? ( dev-libs/gmp:0[${MULTILIB_USEDEP}] )" +RDEPEND="${DEPEND} + abi_x86_32? ( + !<=app-emulation/emul-linux-x86-baselibs-20131008-r17 + !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] + )" + +MULTILIB_WRAPPED_HEADERS=( + /usr/include/nettle/nettle-stdint.h + /usr/include/nettle/version.h +) + +src_prepare() { + default + + sed -e '/CFLAGS=/s: -ggdb3::' \ + -e 's/solaris\*)/sunldsolaris*)/' \ + -i configure.ac || die + + # conditionally build tests and examples required by tests + use test || sed -i '/SUBDIRS/s/testsuite examples//' Makefile.in || die + + eautoreconf +} + +multilib_src_configure() { + # --disable-openssl bug #427526 + ECONF_SOURCE="${S}" econf \ + --libdir="${EPREFIX}"/usr/$(get_libdir) \ + --disable-openssl \ + --disable-fat \ + $(use_enable gmp public-key) \ + $(use_enable static-libs static) \ + $(tc-is-static-only && echo --disable-shared) \ + $(use_enable doc documentation) \ + $(use_enable neon arm-neon) \ + $(use_enable cpu_flags_x86_aes x86-aesni) +} + +multilib_src_install_all() { + einstalldocs + if use doc ; then + dohtml nettle.html + dodoc nettle.pdf + fi +} diff --git a/dev-libs/nss/nss-3.21-r2.ebuild b/dev-libs/nss/nss-3.21-r2.ebuild index 078a01768002..5545d30c7d50 100644 --- a/dev-libs/nss/nss-3.21-r2.ebuild +++ b/dev-libs/nss/nss-3.21-r2.ebuild @@ -20,7 +20,7 @@ SRC_URI="http://archive.mozilla.org/pub/mozilla.org/security/nss/releases/${RTM_ LICENSE="|| ( MPL-2.0 GPL-2 LGPL-2.1 )" SLOT="0" -KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="+cacert +nss-pem utils" CDEPEND=">=dev-db/sqlite-3.8.2[${MULTILIB_USEDEP}] >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]" diff --git a/dev-perl/Filter/Filter-1.540.0.ebuild b/dev-perl/Filter/Filter-1.540.0.ebuild index 2d50e35ade2f..c9bb02bc9188 100644 --- a/dev-perl/Filter/Filter-1.540.0.ebuild +++ b/dev-perl/Filter/Filter-1.540.0.ebuild @@ -11,7 +11,7 @@ inherit perl-module DESCRIPTION="Interface for creation of Perl Filters" SLOT="0" -KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~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 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~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="" DEPEND=" diff --git a/dev-perl/MooseX-Types/MooseX-Types-0.460.0.ebuild b/dev-perl/MooseX-Types/MooseX-Types-0.460.0.ebuild index 84d7978d63ed..bdc882a5cb00 100644 --- a/dev-perl/MooseX-Types/MooseX-Types-0.460.0.ebuild +++ b/dev-perl/MooseX-Types/MooseX-Types-0.460.0.ebuild @@ -11,7 +11,7 @@ inherit perl-module DESCRIPTION="Organise your Moose types in libraries" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 ~hppa ~x86" IUSE="test" RDEPEND=" diff --git a/dev-perl/Sub-Exporter-ForMethods/Sub-Exporter-ForMethods-0.100.52.ebuild b/dev-perl/Sub-Exporter-ForMethods/Sub-Exporter-ForMethods-0.100.52.ebuild index 18a77bd8885a..40b4792dcdd6 100644 --- a/dev-perl/Sub-Exporter-ForMethods/Sub-Exporter-ForMethods-0.100.52.ebuild +++ b/dev-perl/Sub-Exporter-ForMethods/Sub-Exporter-ForMethods-0.100.52.ebuild @@ -11,7 +11,7 @@ inherit perl-module DESCRIPTION="Helper routines for using Sub::Exporter to build methods" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 ~hppa ~x86" IUSE="test" RDEPEND=" diff --git a/dev-perl/namespace-autoclean/namespace-autoclean-0.280.0.ebuild b/dev-perl/namespace-autoclean/namespace-autoclean-0.280.0.ebuild index 9d5c769eb644..75285b044248 100644 --- a/dev-perl/namespace-autoclean/namespace-autoclean-0.280.0.ebuild +++ b/dev-perl/namespace-autoclean/namespace-autoclean-0.280.0.ebuild @@ -11,7 +11,7 @@ inherit perl-module DESCRIPTION="Keep imports out of your namespace" SLOT="0" -KEYWORDS="amd64 ~arm ~ppc ~x86 ~x64-macos" +KEYWORDS="amd64 ~arm ~hppa ~ppc ~x86 ~x64-macos" IUSE="test" RDEPEND=" diff --git a/dev-php/PEAR-DB_DataObject/Manifest b/dev-php/PEAR-DB_DataObject/Manifest index a13eb30f8b52..5b5b89c8454c 100644 --- a/dev-php/PEAR-DB_DataObject/Manifest +++ b/dev-php/PEAR-DB_DataObject/Manifest @@ -1 +1,2 @@ DIST DB_DataObject-1.11.3.tgz 81873 SHA256 5fa1ce2d3d2543a5b9e8f825a2c9a409201978b0f6c45da1f9dadfe58ac47d2b SHA512 bf74b99b6d28e8c5074dd9058ad6624ed93cd4578164d71fcf2c70070a81f5bb5dfc46d11d5a1408ad5bac12ac6d36cd47dbe102b16ffbf9c091153e9e400d8f WHIRLPOOL 3189f3238afc0d7087ced6c1b1bd91ecf99b009f03e17e907d68404c7d5e06f6ebeda0d5b3ef7235802fd18062ae330ec974b5121de17078521cec2210a1e0c9 +DIST DB_DataObject-1.11.5.tgz 83878 SHA256 0157d3197c28b33d41c069b7f0ed8d2651fe2377e83a0a7b9f1b7a47a4f31b05 SHA512 bc8c5d0994fba78c6f8137682da87018e7660ceb39f5583aabf424509bf0ab263b8f32f6676821acaf69ed991778ad85f5f3fc156799c0811b2ec39546688bc6 WHIRLPOOL 64e1eea3a33e83d307a5059e7f770fb9e16b0c67ac4feb6962e0f7c2caf102a160645005581c9cf828f0013829fe133a2fe8dc66356039283a3b3908f3cc3472 diff --git a/dev-php/PEAR-DB_DataObject/PEAR-DB_DataObject-1.11.5.ebuild b/dev-php/PEAR-DB_DataObject/PEAR-DB_DataObject-1.11.5.ebuild new file mode 100644 index 000000000000..87d2dae044a7 --- /dev/null +++ b/dev-php/PEAR-DB_DataObject/PEAR-DB_DataObject-1.11.5.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit php-pear-r1 + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" + +DESCRIPTION="SQL builder and data modeling layer" +LICENSE="PHP-3.01" +SLOT="0" +IUSE="minimal" + +# The MDB2/DB dependencies are listed as "optional," but really, you +# need one or the other. Prefer the newer MDB2 to the deprecated DB. +DEPEND="" +RDEPEND="|| ( dev-php/PEAR-MDB2 dev-php/PEAR-DB ) + dev-php/PEAR-Date + !minimal? ( dev-php/PEAR-Validate )" + +src_prepare() { + # Don't install this batch file -- it winds up in ${EPREFIX}/usr/bin. + # Delete the line that mentions it from package.xml. + sed -e '/DB_DataObject_createTables\.bat/d' \ + -i "${WORKDIR}/package.xml" \ + || die "failed to remove batch file from package.xml" + + eapply_user +} diff --git a/dev-python/numpy/numpy-1.10.4.ebuild b/dev-python/numpy/numpy-1.10.4.ebuild index 310c4c6458e9..7a78e14e989e 100644 --- a/dev-python/numpy/numpy-1.10.4.ebuild +++ b/dev-python/numpy/numpy-1.10.4.ebuild @@ -25,7 +25,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz # It appears the docs haven't been upgraded, still @ 1.8.1 LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="doc lapack test" RDEPEND=" diff --git a/dev-python/pyopenssl/pyopenssl-0.15.1-r1.ebuild b/dev-python/pyopenssl/pyopenssl-0.15.1-r1.ebuild index 545cd1d65fdf..d5eb94af3563 100644 --- a/dev-python/pyopenssl/pyopenssl-0.15.1-r1.ebuild +++ b/dev-python/pyopenssl/pyopenssl-0.15.1-r1.ebuild @@ -22,7 +22,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris" +KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris" IUSE="doc examples" RDEPEND=" diff --git a/dev-qt/qtchooser/qtchooser-0_p20151008.ebuild b/dev-qt/qtchooser/qtchooser-0_p20151008.ebuild index ba9dcdb71890..b05a88357c36 100644 --- a/dev-qt/qtchooser/qtchooser-0_p20151008.ebuild +++ b/dev-qt/qtchooser/qtchooser-0_p20151008.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://dev.gentoo.org/~pesa/distfiles/${P}.tar.xz" LICENSE="|| ( LGPL-2.1 GPL-3 )" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" IUSE="test" DEPEND="test? ( diff --git a/dev-ruby/rspec-rails/Manifest b/dev-ruby/rspec-rails/Manifest index 85968ed5470b..d07af3986036 100644 --- a/dev-ruby/rspec-rails/Manifest +++ b/dev-ruby/rspec-rails/Manifest @@ -4,3 +4,4 @@ DIST rspec-rails-3.2.3.tar.gz 97589 SHA256 d70416a471a6e83b10a3b2c18f2dcfcb22897 DIST rspec-rails-3.3.2.tar.gz 102934 SHA256 efdfadb375e0a64b6a306482ab705bdd9f147ff8c6b1acebb1981e50d5043b1c SHA512 59d8c516e3b7b5138c08d6cc2d68e21078dec0b340f9c0f709c9fa9cb7c318718454a8e11737a3ff1f2e940fc7d8db425b36bffda6966ad5f270923ffb9345bc WHIRLPOOL 6501d7b3467dcbec069472e6510a8c48a0a50b5f02ad6be5336b8c0bd2f841e72d865a3a8260bc4ef47744f6fd39eb4554c0c14d47153b2c1dce829d446b3672 DIST rspec-rails-3.3.3.tar.gz 102963 SHA256 b0edc645a25c929deb39a7334894922cdf67cf7cb895bb728751d0d3a459fac9 SHA512 72c8a027d3ac7c8487c4dec23c91c7014456e6d8ed10f80f72e71c90e7bde0a3c005dd6b57985b1f3e32b32cb6d4610f651f8aa4b81156536a667a266e816603 WHIRLPOOL 78b00968fe75cd632b94bd4b2f244dc6ac50e708b9023baf882bba6ef76b827b681f55dd88be0220988c49d308b9bde4e3344456980db0d9a5654e39f65edd93 DIST rspec-rails-3.4.0.tar.gz 113846 SHA256 8cbe0b54e1000e3b5f9810c22b8387f95d34c482eea00177c4895b6a5d38673e SHA512 d9bc98a2af31dba2149c678025b2e9ffc7120daec2a0326fd50f1dd3e47efd8cb636fda10728d637792a4a9bdeeed54650892af11aafa4ec4baaa7577329985e WHIRLPOOL b8e0934ba838acbab96123d6327e1910c86117b5f3b16206ec782d4e12c4cf2e59f2fce481a29d6cb3b80804407859523a9bbc38c6e58b8d35f2d7ef0e09fb2f +DIST rspec-rails-3.4.2.tar.gz 114252 SHA256 ff54962e135baad173aa987ba08ea4d35b2479cc32beaa2d348e2dfb95bffc85 SHA512 922a666ac674d6e91083caf5b5526556add9ffc8783f3f5af8a7d60afb2353b99730e367d522b91bf487fcbe9282fbf51648487c9d0bed005882dc57d7fb57bc WHIRLPOOL 7004dec656c42d2c0ad1a930c4df04955acb0b936c75699f902cd42acb1e42fc9cab7340acf8da834b769d5740431d2ad6e83ea1b61d60939d7d523bb6462977 diff --git a/dev-ruby/rspec-rails/rspec-rails-3.4.2.ebuild b/dev-ruby/rspec-rails/rspec-rails-3.4.2.ebuild new file mode 100644 index 000000000000..610b7d8b6dd6 --- /dev/null +++ b/dev-ruby/rspec-rails/rspec-rails-3.4.2.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +USE_RUBY="ruby20 ruby21" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md" + +inherit ruby-fakegem versionator + +DESCRIPTION="RSpec's official Ruby on Rails plugin" +HOMEPAGE="http://rspec.info/" +SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="3" +KEYWORDS="~amd64" +IUSE="" + +SUBVERSION="$(get_version_component_range 1-2)" + +ruby_add_rdepend ">=dev-ruby/activesupport-3.0:* =dev-ruby/actionpack-3.0:* =dev-ruby/railties-3.0:* =dev-ruby/capybara-2.0.0 + >=dev-ruby/ammeter-1.1.2 + ~dev-ruby/rspec-rails-${PV} +)" + +all_ruby_prepare() { + # Remove .rspec options to avoid dependency on newer rspec when + # bootstrapping. + rm -f .rspec || die + + # Avoid bundler-specific specs. + rm -f spec/sanity_check_spec.rb || die + + # Avoid broken controller generator specs for now. + rm -fr spec/generators/rspec || die + + # Avoid loading rspec/rails explicitly since ammeter/init will also + # do this and loading it twice causes an error + sed -i -e '/rspec\/rails/ s:^:#:' spec/spec_helper.rb || die +} diff --git a/dev-ruby/shoulda/shoulda-2.11.3-r1.ebuild b/dev-ruby/shoulda/shoulda-2.11.3-r1.ebuild deleted file mode 100644 index 6198d82f5042..000000000000 --- a/dev-ruby/shoulda/shoulda-2.11.3-r1.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -USE_RUBY="ruby19 ruby20" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="CONTRIBUTION_GUIDELINES.rdoc README.rdoc" - -inherit ruby-fakegem - -DESCRIPTION="Making tests easy on the fingers and eyes" -HOMEPAGE="http://thoughtbot.com/projects/shoulda" -SRC_URI="https://github.com/thoughtbot/${PN}/tarball/v${PV} -> ${P}.tar.gz" -RUBY_S="thoughtbot-${PN}-*" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" -IUSE="" - -# tests seem to be quite broken :( They require working version of -# various rails versions. There appear to be unit and matcher tests but -# they can't be run on their own. -RESTRICT=test diff --git a/dev-ruby/shoulda/shoulda-3.5.0-r1.ebuild b/dev-ruby/shoulda/shoulda-3.5.0-r1.ebuild deleted file mode 100644 index d1692250da25..000000000000 --- a/dev-ruby/shoulda/shoulda-3.5.0-r1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -USE_RUBY="ruby19 ruby20 ruby21" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Making tests easy on the fingers and eyes" -HOMEPAGE="http://thoughtbot.com/projects/shoulda" -SRC_URI="https://github.com/thoughtbot/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="3" -KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64" -IUSE="" - -# This now more or less a meta-gem and it only contains features for -# integration tests using Appraisals, which we don't currently package. -RESTRICT=test - -ruby_add_rdepend ">=dev-ruby/shoulda-context-1.0.1 - >=dev-ruby/shoulda-matchers-1.4.1" - -all_ruby_prepare() { - sed -e '/git ls-files/d' -i ${RUBY_FAKEGEM_GEMSPEC} || die -} diff --git a/dev-ruby/unf_ext/Manifest b/dev-ruby/unf_ext/Manifest index 16ffa3ccba09..82a7b8d85040 100644 --- a/dev-ruby/unf_ext/Manifest +++ b/dev-ruby/unf_ext/Manifest @@ -1,2 +1,2 @@ -DIST unf_ext-0.0.6.gem 395264 SHA256 afcdba30a57665a4540c5d43b2833c6a3677a3296428fa70fbd7b4c8feaceb1f SHA512 ae6df02589e0ce4189127836bdc18f7cc2f1c7f7fd2647f0b8d0a80f1175ad1f682a983195527e4f0b50b685de0aaf9377b7c5e955dc49d802176b2db63fc869 WHIRLPOOL 25d54eb777e00b4c96c87079159e05a94c5507d1f165fec6803337f9f4c7f0b8069d578702f5dc2ab0ae05c89b6cbab8b28aa29fbd6d18082c903a0af6cc06df DIST unf_ext-0.0.7.1.gem 392192 SHA256 ab58d1a808d38872817bea89fc3f055bfc250af48d9653425e35c7c18caec253 SHA512 06239dc5870ad0f345266b12ad6ed9508ab731dfd37b450d0e1eae1ef8e8301f8ad1ef7fffbbcf69b56b0af5aa257ea279dda3a252bdf397d11949e9885db3d4 WHIRLPOOL 4d5d8c6efb46bb46b65967101389b5b7414bfa507d591e29dfb9d8c354555b9b92a997f19b68e0d4aa58143bf836849f152dafc2936b13a11cac74d7063f3d16 +DIST unf_ext-0.0.7.2.gem 392192 SHA256 e8fa13d09880f8d06d30a86f929a38ba0af6abe61272927a49e6796aee1aa111 SHA512 99e1cada3cc51baf52010b7569f68eff168dfb4c691645c88625738513258191e586e5d99f5ba7f528ce677fdec77a08510f77d9bf2c9234c68ac239f270fbf6 WHIRLPOOL 2e932abce52f87709dbf5f25ba8a7a32bd55410ba10b620db4d23a41855faf0da3486674ea7e9fb11849f9621d0fdbab8739c0486278026ba9e8f27ae47f5332 diff --git a/dev-ruby/unf_ext/unf_ext-0.0.6-r2.ebuild b/dev-ruby/unf_ext/unf_ext-0.0.6-r2.ebuild deleted file mode 100644 index 01ef53df52fb..000000000000 --- a/dev-ruby/unf_ext/unf_ext-0.0.6-r2.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -RUBY_FAKEGEM_RECIPE_TEST="none" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_DOCDIR="doc" - -RUBY_FAKEGEM_EXTRADOC="README.md" - -inherit ruby-fakegem multilib - -DESCRIPTION="Unicode Normalization Form support library for CRuby" -HOMEPAGE="http://sourceforge.jp/projects/unf/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" -IUSE="doc test" - -ruby_add_bdepend " - test? ( - >=dev-ruby/test-unit-2.5.1-r1 - dev-ruby/shoulda - )" - -all_ruby_prepare() { - sed -i -e '/bundler/,/end/ s:^:#:' Rakefile test/helper.rb || die -} - -each_ruby_configure() { - ${RUBY} -Cext/unf_ext extconf.rb || die -} - -each_ruby_compile() { - emake -Cext/unf_ext CFLAGS="${CFLAGS} -fPIC" archflag="${LDFLAGS}" V=1 - cp ext/unf_ext/*$(get_modname) lib/ || die -} - -each_ruby_test() { - ruby-ng_testrb-2 test/test_*.rb -} diff --git a/dev-ruby/unf_ext/unf_ext-0.0.6-r1.ebuild b/dev-ruby/unf_ext/unf_ext-0.0.7.2.ebuild similarity index 82% rename from dev-ruby/unf_ext/unf_ext-0.0.6-r1.ebuild rename to dev-ruby/unf_ext/unf_ext-0.0.7.2.ebuild index a23a6cc594a5..c4a1c03749ae 100644 --- a/dev-ruby/unf_ext/unf_ext-0.0.6-r1.ebuild +++ b/dev-ruby/unf_ext/unf_ext-0.0.7.2.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -USE_RUBY="ruby19 ruby20" +USE_RUBY="ruby20 ruby21 ruby22" RUBY_FAKEGEM_RECIPE_TEST="none" @@ -20,7 +20,7 @@ HOMEPAGE="http://sourceforge.jp/projects/unf/" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" IUSE="doc test" ruby_add_bdepend " diff --git a/dev-tex/latexdiff/latexdiff-1.1.0.ebuild b/dev-tex/latexdiff/latexdiff-1.1.0.ebuild index ba827da1d0ef..fc73489866e5 100644 --- a/dev-tex/latexdiff/latexdiff-1.1.0.ebuild +++ b/dev-tex/latexdiff/latexdiff-1.1.0.ebuild @@ -10,7 +10,7 @@ SRC_URI="http://mirror.ctan.org/support/${PN}.zip -> ${P}.zip" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="" diff --git a/dev-vcs/mercurial/Manifest b/dev-vcs/mercurial/Manifest index 6668bd9ddb2b..0acabff8e949 100644 --- a/dev-vcs/mercurial/Manifest +++ b/dev-vcs/mercurial/Manifest @@ -3,4 +3,4 @@ DIST mercurial-3.3.3.tar.gz 4167447 SHA256 a445367f0dcbaf3a6279bfa743b364e729be0 DIST mercurial-3.4.2.tar.gz 4296407 SHA256 dcc90e4a8476149ecc8af13c08202860b4c9c987a94c4f3c18b28294b6fd8ecd SHA512 f5ef7064a1ac4189fe4db91fec283cdead257b132674d0869f075b80ba5707e0163e28f18545a9d867336ebc6b1cbb8bcf794b6881b8f23f6c067e68c7ae584b WHIRLPOOL db7389c92680f6058efda6fa4cb7747ff3cd78bc361c43464a938c213b9ce46e8a040a57c68975f02342beb35522c27c3ab6250b2fc6e54777ddd20b0bda5443 DIST mercurial-3.5.2.tar.gz 4415307 SHA256 23fdc038503911b21dc9e556118803f7b1d4150eb14933d2ea3d0ff0dc60ab5d SHA512 d0a4007763186ab72e7ef6e6f6fa84719fcdc2d16208bc99cc32f44cecdc0ccdf5719e18fbc8a5d0735f6441acc0d82bcac05d7c75fee15966c88ee75e7b6bdd WHIRLPOOL 10ec5dd3d1d2e3487f4a290bc0d32fe2237cc450b54774503e7e9e25b12e895c8065f1c2e27dcaa03deac82d1e10e58dd8ea18e9bacf4f24f58a52a3d5c0fea4 DIST mercurial-3.6.3.tar.gz 4521749 SHA256 402731f27256beb9a575a6991ca3d7059976197c905337f4f5729fd940329fa8 SHA512 e5b39e5456a35e19f2ac02838946305023de957590c5aa2828f7c37e9b5f6f2e6376526d0845ebd1ca198860425d11e208b3c36e12e189e0b02871e9c91aad9a WHIRLPOOL 36f0f6caa43ce2c65c7c2bdfb3fa3935cec1e47c25fae6a6a3c7b00165d1aff9b71c73dd10faad2e2ba096d55cc633366170135d95452c162936fef93571dbf1 -DIST mercurial-3.7.tar.gz 4630279 SHA256 888e1522f92bf97053baae7333346586b5fc34c81de14af21c0fbb009c30b933 SHA512 ecb95555471274105a309940b4c0a82aba308deea4662a79e4e2ca9caf8965a5b01a9684d5adf3ecd767a7da71b61fc2322f3f7e1a9e95894cc8320836e7b3d2 WHIRLPOOL f872459194f02424e177e82b0d5814803aa60b9f77c7a6f370fad4d9374ae04f1a267f30a3563163c6f447629e73192ba4f4355c6c659133d38c265742d1b8d8 +DIST mercurial-3.7.1.tar.gz 4630846 SHA256 96d37d1f444a032295e190318b3166e9d05abb55916d2b3adb618a8f16c5cfed SHA512 32df161756d7c76abd792bfe5dc3d3f2ea39facdc9c9bd8d93193ecd6cc171f050a4e6dae18255614087ba6fa8f9d787aac41b137c233fa9c3f32217a9cad112 WHIRLPOOL 894a9bd7c61f6a6262ec46f8c80b1894348f765216159458795210fed504a4700e8b4b263e305f3c746d180ef27ab1de11fd4926a2969883d529a613dc93e17a diff --git a/dev-vcs/mercurial/mercurial-3.7.ebuild b/dev-vcs/mercurial/mercurial-3.7.1.ebuild similarity index 100% rename from dev-vcs/mercurial/mercurial-3.7.ebuild rename to dev-vcs/mercurial/mercurial-3.7.1.ebuild diff --git a/dev-vcs/tortoisehg/Manifest b/dev-vcs/tortoisehg/Manifest index 2ff8c7a3f1b3..894a93cf3d37 100644 --- a/dev-vcs/tortoisehg/Manifest +++ b/dev-vcs/tortoisehg/Manifest @@ -2,5 +2,5 @@ DIST tortoisehg-3.3.2.tar.gz 8226128 SHA256 779beb06588897d1c42fc463fecc4b61498f DIST tortoisehg-3.3.3.tar.gz 8230380 SHA256 a22ec794b0152b25b085447a253594dde27f71863149b9471ec70669687fb47f SHA512 ed15a2ce76647f6c2d9df2daebc62f983eec6a27ea15a808060d83968cfee2c22f643b2ed6fb48bf06dd5d7cb9f4178e756e539eec2ca43e74fe4c8cfc7da4cf WHIRLPOOL d069dbe4ca109aaf2ebf9dd73f2d87343c2c71a8d5a894a5b7278a5edc878aa7eda56f9d53dca8968d1e730eea94a9f814a5cd76fb4af522a506753a5342cb47 DIST tortoisehg-3.4.2.tar.gz 8205349 SHA256 d22692166dc6ff61c9d12bfe5ceb77fbf87e7dd52222c956976e7987d84145a1 SHA512 f771536508f1c72c15b1fe7fbf5b3ef6dafbb14314db45776632231dd2d74b46b862476fe78505a08b2271c2ce6419926e6090a2e0a6451da60314ba154fe9f4 WHIRLPOOL cfe0db33da10b2fcafff3e831937488a276924420cfff8a50396e0109c3edef7fb182036d38b72ff8fbf6aafae714eb1b6c4caf109938361babf04eed3addce4 DIST tortoisehg-3.5.2.tar.gz 7399407 SHA256 f5d36d8f19b508dd00a7ac720af3889defd40e99fcb60d907a0fefb9c867dd63 SHA512 43ab341b4b01b2b28a9ac4290c9902720a10094390d323ab0c4e0962276cd333def7bec818e59a8bbacac9390cb22fd310875eb58f7092573c1254c517ada310 WHIRLPOOL c49707205e06fe269be3c69330d78ca8194a54d709b9056bea502403b4e047a1da46f1cd73ca5d7b052aab6f0d4b3ae4aa93f0544b78f12a6a9ffd8459edfb37 -DIST tortoisehg-3.6.2.tar.gz 7748075 SHA256 3ed668010e7f850ed3932aab83f87f0d0cc8726969283b190e002e9a1d2a3cac SHA512 901962b7f09a4823401ef50407b0767c280089fd00ebbd9c06dd4e88c66fa3814364a82fb7726a53d53837948c623f09d3fdb3c6f432cc9107be3c1a8a826d5f WHIRLPOOL e378aa9a162538196ec127d30788b34aa76e2e786f06d3bb69b0b2e66c96a1c3c3f4a98e8e2f6b3d6a30887a76646473708710596aa77e7c2e6f7d292f55a787 DIST tortoisehg-3.6.3.tar.gz 7748149 SHA256 99f4ed22082e8c9d7e52f6b0c94d0835cf40aa5a1624f07bb7839d7891ca843b SHA512 5b6fdf8b4233d6802aa0e501e9f9c22ee44391461c0552d73f65a6c26e041ac11efe0ad703558e1f589e421d8759ea0052c634960e51738cc2534d9a73030c1b WHIRLPOOL 9ab2d97658d8e82eb9d12a7be6349fff37e2b8642ff471ac2e30c9f65465f4d9dca86582968bf889e075574c300247583c60152220cd5024ad51f1109abd9431 +DIST tortoisehg-3.7.1.tar.gz 7770904 SHA256 6612dacc2a41f259382ce321fc3dff9630327508062b56744a3a87c9ed448ef9 SHA512 5d4302c6b5db6dc3feaf0fd045500c574bb9eb8de7d7c00b54c6122c80af6eed9fc173173ba23f86aaa06728ec115635caeea5c10d079976e2a6a1c8bab10e3a WHIRLPOOL 06cdbbf7e86170ccd74a7e8cce5527ac7a3e020c13146134dc771bf34667f8ff6623b7ccc674d7b4a14f214e033ed006c5e6d657098c55dc8b970cfe5e5517f4 diff --git a/dev-vcs/tortoisehg/tortoisehg-3.6.2.ebuild b/dev-vcs/tortoisehg/tortoisehg-3.7.1.ebuild similarity index 94% rename from dev-vcs/tortoisehg/tortoisehg-3.6.2.ebuild rename to dev-vcs/tortoisehg/tortoisehg-3.7.1.ebuild index a4a2d28c129e..3b0a0c0fca0c 100644 --- a/dev-vcs/tortoisehg/tortoisehg-3.6.2.ebuild +++ b/dev-vcs/tortoisehg/tortoisehg-3.7.1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 PYTHON_COMPAT=( python2_7 ) inherit distutils-r1 eutils @@ -10,7 +10,7 @@ inherit distutils-r1 eutils if [[ ${PV} != *9999* ]]; then KEYWORDS="~amd64 ~x86" SRC_URI="https://www.bitbucket.org/${PN}/targz/downloads/${P}.tar.gz" - HG_DEPEND=">=dev-vcs/mercurial-3.5 + + + QEMU: Multiple vulnerabilities + Multiple vulnerabilities have been found in QEMU, the worst of + which may allow a remote attacker to cause a Denial of Service or gain + elevated privileges from a guest VM. + + qemu + February 04, 2016 + February 04, 2016: 1 + 544328 + 549404 + 557206 + 558416 + 559656 + 560422 + 560550 + 560760 + 566792 + 567144 + 567828 + 567868 + 568214 + 568226 + 568246 + 569646 + 570110 + 570988 + 571562 + 571564 + 571566 + local, remote + + + 2.5.0-r1 + 2.5.0-r1 + + + +

QEMU is a generic and open source machine emulator and virtualizer.

+
+ +

Multiple vulnerabilities have been discovered in QEMU. Please review the + CVE identifiers referenced below for details. +

+
+ +

A remote attacker might cause a Denial of Service or gain escalated + privileges from a guest VM. +

+
+ +

There is no known workaround at this time.

+
+ +

All QEMU users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=app-emulation/qemu-2.5.0-r1" + + +
+ + CVE-2015-1779 + CVE-2015-3456 + CVE-2015-5225 + CVE-2015-5278 + CVE-2015-5279 + CVE-2015-5745 + CVE-2015-6815 + CVE-2015-6855 + CVE-2015-7295 + CVE-2015-7504 + CVE-2015-7512 + CVE-2015-7549 + CVE-2015-8345 + CVE-2015-8504 + CVE-2015-8556 + CVE-2015-8558 + CVE-2015-8567 + CVE-2015-8568 + CVE-2015-8666 + CVE-2015-8701 + CVE-2015-8743 + CVE-2015-8744 + CVE-2015-8745 + CVE-2016-1568 + + K_F + K_F +
diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index c49c7e64b6c3..e3ebffe7fc7d 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Wed, 03 Feb 2016 19:08:20 +0000 +Thu, 04 Feb 2016 09:38:16 +0000 diff --git a/metadata/md5-cache/app-admin/webmin-1.780 b/metadata/md5-cache/app-admin/webmin-1.780 new file mode 100644 index 000000000000..41dc76256ae9 --- /dev/null +++ b/metadata/md5-cache/app-admin/webmin-1.780 @@ -0,0 +1,13 @@ +DEFINED_PHASES=config install postinst postrm preinst prepare prerm +DEPEND=virtual/perl-MIME-Base64 virtual/perl-Socket virtual/perl-Sys-Syslog virtual/perl-Time-HiRes virtual/perl-Time-Local dev-perl/Authen-Libwrap dev-perl/IO-Tty dev-perl/MD5 dev-perl/Net-SSLeay dev-perl/Authen-PAM dev-perl/Sys-Hostname-Long >=net-dns/dnssec-tools-1.13 !minimal? ( mysql? ( dev-perl/DBD-mysql ) postgres? ( dev-perl/DBD-Pg ) ldap? ( dev-perl/perl-ldap ) dev-perl/XML-Generator dev-perl/XML-Parser ) ssl? ( dev-libs/openssl ) virtual/pkgconfig +DESCRIPTION=A web-based Unix systems administration interface +EAPI=5 +HOMEPAGE=http://www.webmin.com/ +IUSE=minimal +ssl mysql postgres ldap ssl +KEYWORDS=~amd64 ~x86 +LICENSE=BSD GPL-2 +RDEPEND=virtual/perl-MIME-Base64 virtual/perl-Socket virtual/perl-Sys-Syslog virtual/perl-Time-HiRes virtual/perl-Time-Local dev-perl/Authen-Libwrap dev-perl/IO-Tty dev-perl/MD5 dev-perl/Net-SSLeay dev-perl/Authen-PAM dev-perl/Sys-Hostname-Long >=net-dns/dnssec-tools-1.13 !minimal? ( mysql? ( dev-perl/DBD-mysql ) postgres? ( dev-perl/DBD-Pg ) ldap? ( dev-perl/perl-ldap ) dev-perl/XML-Generator dev-perl/XML-Parser ) +SLOT=0 +SRC_URI=minimal? ( mirror://sourceforge/webadmin/webmin-1.780-minimal.tar.gz ) !minimal? ( mirror://sourceforge/webadmin/webmin-1.780.tar.gz ) +_eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 pam 3ecd5b75e39b0bb05a3183c08fcdfdb4 ssl-cert e90a74de57c48ea6c058b1cb3a735907 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_md5_=28af9faa5c3524834c0ef5445770c5cf diff --git a/metadata/md5-cache/app-benchmarks/stress-ng-0.05.12 b/metadata/md5-cache/app-benchmarks/stress-ng-0.05.12 new file mode 100644 index 000000000000..f0f66c81b844 --- /dev/null +++ b/metadata/md5-cache/app-benchmarks/stress-ng-0.05.12 @@ -0,0 +1,11 @@ +DEFINED_PHASES=- +DEPEND=sys-apps/keyutils sys-apps/attr +DESCRIPTION=A tool to load and stress a computer system +EAPI=6 +HOMEPAGE=http://kernel.ubuntu.com/~cking/stress-ng/ +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=sys-apps/keyutils sys-apps/attr +SLOT=0 +SRC_URI=http://kernel.ubuntu.com/~cking/tarballs/stress-ng/stress-ng-0.05.12.tar.gz +_md5_=dbafef10da096261fa62d993e3024579 diff --git a/metadata/md5-cache/app-emulation/lxd-0.25 b/metadata/md5-cache/app-emulation/lxd-2.0.0_beta1 similarity index 90% rename from metadata/md5-cache/app-emulation/lxd-0.25 rename to metadata/md5-cache/app-emulation/lxd-2.0.0_beta1 index 86cb516958bf..2329ee610c28 100644 --- a/metadata/md5-cache/app-emulation/lxd-0.25 +++ b/metadata/md5-cache/app-emulation/lxd-2.0.0_beta1 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 LICENSE=Apache-2.0 RDEPEND=daemon? ( app-admin/cgmanager app-arch/xz-utils app-emulation/lxc[cgmanager,seccomp] net-analyzer/openbsd-netcat net-misc/bridge-utils net-misc/rsync[xattr] sys-apps/iproute2 virtual/acl ) SLOT=0 -SRC_URI=https://dev.gentoo.org/~stasibear/distfiles/lxd-0.25.tar.bz2 +SRC_URI=https://dev.gentoo.org/~stasibear/distfiles/lxd-2.0.0_beta1.tar.bz2 _eclasses_=bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 eutils 28fb3e5852485af1c348d446b0b98389 golang-base 59e300a2d8836a6e8d508276da0d570f golang-build 1b49258a68ba3972a575490adf3b7b4c l10n 714aaf78929eade946da5eaff7d2001a multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 user 906f3c8eb3a2350a4f1191a89baa3e46 vcs-snapshot b45be87e7012be0af8424e8a5644da1d -_md5_=fefc38ade26a9a8816840858c22f2e5b +_md5_=eeb85211bcf4750fb2ca225b08efae52 diff --git a/metadata/md5-cache/app-portage/conf-update-1.0.3-r1 b/metadata/md5-cache/app-portage/conf-update-1.0.3-r1 new file mode 100644 index 000000000000..62f14ce67504 --- /dev/null +++ b/metadata/md5-cache/app-portage/conf-update-1.0.3-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile prepare +DEPEND=virtual/pkgconfig >=dev-libs/glib-2.6 sys-libs/ncurses:0 libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) colordiff? ( app-misc/colordiff ) +DESCRIPTION=conf-update is a ncurses-based config management utility +EAPI=5 +HOMEPAGE=https://gitweb.gentoo.org/proj/conf-update.git/ +IUSE=colordiff libressl +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=GPL-2 +RDEPEND=>=dev-libs/glib-2.6 sys-libs/ncurses:0 libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) colordiff? ( app-misc/colordiff ) +SLOT=0 +SRC_URI=https://gitweb.gentoo.org/proj/conf-update.git/snapshot/conf-update-1.0.3.tar.bz2 +_eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_md5_=5b1ac20174fa94223216e4dc99aeefd6 diff --git a/metadata/md5-cache/dev-db/mariadb-10.0.23 b/metadata/md5-cache/dev-db/mariadb-10.0.23 index 880f6b916ab1..43d5bb4a5edb 100644 --- a/metadata/md5-cache/dev-db/mariadb-10.0.23 +++ b/metadata/md5-cache/dev-db/mariadb-10.0.23 @@ -4,7 +4,7 @@ DESCRIPTION=An enhanced, drop-in replacement for MySQL EAPI=5 HOMEPAGE=http://mariadb.org/ IUSE=bindist odbc oqgraph pam sphinx tokudb xml abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 debug embedded extraengine jemalloc latin1 libressl +openssl +perl profiling selinux +server systemtap static static-libs tcmalloc test yassl -KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~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 +KEYWORDS=alpha amd64 arm ~arm64 hppa ~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.6 RDEPEND=!bindist? ( >=sys-libs/readline-4.1:0= ) server? ( extraengine? ( odbc? ( dev-db/unixODBC:0= ) xml? ( dev-libs/libxml2:2= ) ) oqgraph? ( >=dev-libs/boost-1.40.0:0= dev-libs/judy:0= ) pam? ( virtual/pam:0= ) tokudb? ( app-arch/snappy ) ) >=dev-libs/libpcre-8.35:3= perl? ( !dev-db/mytop virtual/perl-Getopt-Long dev-perl/TermReadKey virtual/perl-Term-ANSIColor virtual/perl-Time-HiRes ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 !dev-db/mariadb-native-client[mysqlcompat] jemalloc? ( dev-libs/jemalloc:0= ) tcmalloc? ( dev-util/google-perftools:0= ) systemtap? ( >=dev-util/systemtap-1.3:0= ) openssl? ( >=dev-libs/openssl-1.0.0:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?,static-libs?] ) libressl? ( dev-libs/libressl:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?,static-libs?] ) >=sys-libs/zlib-1.2.3:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?,static-libs?] sys-libs/ncurses:0= selinux? ( sec-policy/selinux-mysql ) abi_x86_32? ( !app-emulation/emul-linux-x86-db[-abi_x86_32(-)] ) !dev-db/mysql !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster server? ( !prefix? ( dev-db/mysql-init-scripts ) ) !=dev-perl/DBD-mysql-2.9004 ) ~virtual/mysql-5.6 RDEPEND=kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 !dev-db/mariadb-native-client[mysqlcompat] jemalloc? ( dev-libs/jemalloc:0= ) tcmalloc? ( dev-util/google-perftools:0= ) systemtap? ( >=dev-util/systemtap-1.3:0= ) openssl? ( >=dev-libs/openssl-1.0.0:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?,static-libs?] ) libressl? ( dev-libs/libressl:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?,static-libs?] ) >=sys-libs/zlib-1.2.3:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?,static-libs?] sys-libs/ncurses:0= selinux? ( sec-policy/selinux-mysql ) abi_x86_32? ( !app-emulation/emul-linux-x86-db[-abi_x86_32(-)] ) !dev-db/mariadb !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster server? ( !prefix? ( dev-db/mysql-init-scripts ) ) !=virtual/jdk-1.4 >=dev-java/concurrent-util-1.3.4:0 >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=A set of Open Source Libraries for High Performance Scientific and Technical Computing in Java -EAPI=5 -HOMEPAGE=http://www-itg.lbl.gov/~hoschek/colt/ -IUSE=elibc_FreeBSD source doc elibc_FreeBSD -KEYWORDS=amd64 ppc64 x86 -LICENSE=colt -RDEPEND=>=virtual/jre-1.4 >=dev-java/concurrent-util-1.3.4:0 >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=http://dsd.lbl.gov/~hoschek/colt-download/releases/colt-1.2.0.tar.gz -_eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 java-ant-2 7c5d0c274d390745f5033754a319f515 java-pkg-2 b02dc1e46b3648e467b5fbdf7857cf28 java-utils-2 5f1bd1f8baff3ee957cb72c75c3949f2 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=52c482ad67cb04e7d4f7bc585a4b1588 diff --git a/metadata/md5-cache/dev-java/colt-1.2.0-r3 b/metadata/md5-cache/dev-java/colt-1.2.0-r3 index a7e76cb54103..ff36912c6ee1 100644 --- a/metadata/md5-cache/dev-java/colt-1.2.0-r3 +++ b/metadata/md5-cache/dev-java/colt-1.2.0-r3 @@ -4,10 +4,10 @@ DESCRIPTION=Java Libraries for High Performance Scientific and Technical Computi EAPI=5 HOMEPAGE=http://www-itg.lbl.gov/~hoschek/colt/ IUSE=elibc_FreeBSD source doc elibc_FreeBSD -KEYWORDS=amd64 x86 +KEYWORDS=amd64 ~ppc64 x86 LICENSE=colt RDEPEND=>=virtual/jre-1.7 >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) SLOT=0 SRC_URI=http://dsd.lbl.gov/~hoschek/colt-download/releases/colt-1.2.0.tar.gz _eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 java-ant-2 7c5d0c274d390745f5033754a319f515 java-pkg-2 b02dc1e46b3648e467b5fbdf7857cf28 java-utils-2 5f1bd1f8baff3ee957cb72c75c3949f2 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=3e48dab0567d40e604c4fa2d8d8b1435 +_md5_=652cd16d84dd6801d0d2c3e16b756beb diff --git a/metadata/md5-cache/dev-java/fastutil-4.3.1-r1 b/metadata/md5-cache/dev-java/fastutil-4.3.1-r1 deleted file mode 100644 index 4f9caac95b87..000000000000 --- a/metadata/md5-cache/dev-java/fastutil-4.3.1-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst setup -DEPEND=>=virtual/jdk-1.4 >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Provides faster type-specific maps, sets and lists with a small memory footprint -EAPI=0 -HOMEPAGE=http://fastutil.dsi.unimi.it -IUSE=elibc_FreeBSD doc source elibc_FreeBSD -KEYWORDS=amd64 x86 -LICENSE=LGPL-2.1 -RDEPEND=>=virtual/jre-1.4 >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) -SLOT=4.3 -SRC_URI=http://fastutil.dsi.unimi.it/fastutil-4.3.1-src.tar.gz -_eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 java-ant-2 7c5d0c274d390745f5033754a319f515 java-pkg-2 b02dc1e46b3648e467b5fbdf7857cf28 java-utils-2 5f1bd1f8baff3ee957cb72c75c3949f2 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=76b4f5dbeb5587bb2fe6147f0ccedb8c diff --git a/metadata/md5-cache/dev-java/fastutil-4.4.2-r1 b/metadata/md5-cache/dev-java/fastutil-4.4.2-r1 deleted file mode 100644 index 7ffeaac2bba8..000000000000 --- a/metadata/md5-cache/dev-java/fastutil-4.4.2-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst setup -DEPEND=>=virtual/jdk-1.4 >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Provides faster type-specific maps, sets and lists with a small memory footprint -EAPI=0 -HOMEPAGE=http://fastutil.dsi.unimi.it -IUSE=elibc_FreeBSD doc source elibc_FreeBSD -KEYWORDS=amd64 x86 -LICENSE=LGPL-2.1 -RDEPEND=>=virtual/jre-1.4 >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) -SLOT=4.4 -SRC_URI=http://fastutil.dsi.unimi.it/fastutil-4.4.2-src.tar.gz -_eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 java-ant-2 7c5d0c274d390745f5033754a319f515 java-pkg-2 b02dc1e46b3648e467b5fbdf7857cf28 java-utils-2 5f1bd1f8baff3ee957cb72c75c3949f2 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=95afbccb08c3054b9e07662bdf425634 diff --git a/metadata/md5-cache/dev-libs/libusb-1.0.20 b/metadata/md5-cache/dev-libs/libusb-1.0.20 index 536ba1920411..53ffd2050e78 100644 --- a/metadata/md5-cache/dev-libs/libusb-1.0.20 +++ b/metadata/md5-cache/dev-libs/libusb-1.0.20 @@ -10,4 +10,4 @@ RDEPEND=udev? ( >=virtual/libudev-208:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x3 SLOT=1 SRC_URI=https://github.com/libusb/libusb/releases/download/v1.0.20/libusb-1.0.20.tar.bz2 _eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=79c536675c595321c6f66f6d621a895c +_md5_=8dfdbe72e77fa3eb6659cdff22844cf0 diff --git a/metadata/md5-cache/dev-libs/nettle-3.2 b/metadata/md5-cache/dev-libs/nettle-3.2 new file mode 100644 index 000000000000..a1e1fbaebd79 --- /dev/null +++ b/metadata/md5-cache/dev-libs/nettle-3.2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=gmp? ( dev-libs/gmp:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=Low-level cryptographic library +EAPI=6 +HOMEPAGE=http://www.lysator.liu.se/~nisse/nettle/ +IUSE=doc +gmp neon static-libs test cpu_flags_x86_aes abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x86-solaris +LICENSE=|| ( LGPL-3 LGPL-2.1 ) +RDEPEND=gmp? ( dev-libs/gmp:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20131008-r17 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) +SLOT=0/6 +SRC_URI=mirror://gnu/nettle/nettle-3.2.tar.gz +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils 28fb3e5852485af1c348d446b0b98389 libtool b75230758539a7da029e24afdb693960 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_md5_=15e20793e2f2a8196fce8f9d5b26ba67 diff --git a/metadata/md5-cache/dev-libs/nss-3.21-r2 b/metadata/md5-cache/dev-libs/nss-3.21-r2 index 24c19c85fd2c..605c61d30bd0 100644 --- a/metadata/md5-cache/dev-libs/nss-3.21-r2 +++ b/metadata/md5-cache/dev-libs/nss-3.21-r2 @@ -4,11 +4,11 @@ DESCRIPTION=Mozilla's Network Security Services library that implements PKI supp EAPI=5 HOMEPAGE=http://www.mozilla.org/projects/security/pki/nss/ IUSE=+cacert +nss-pem utils abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( MPL-2.0 GPL-2 LGPL-2.1 ) RDEPEND=>=dev-libs/nspr-4.10.8[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-db/sqlite-3.8.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20140508-r12 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) RESTRICT=test SLOT=0 SRC_URI=http://archive.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_21_RTM/src/nss-3.21.tar.gz cacert? ( https://dev.gentoo.org/~anarchy/patches/nss-3.14.1-add_spi+cacerts_ca_certs.patch ) nss-pem? ( https://dev.gentoo.org/~anarchy/dist/nss-pem-20140125.tar.bz2 ) _eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 flag-o-matic d270fa247153df66074f795fa42dba3e multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=05c0e8f14f7dab964712697c94be28ab +_md5_=e744141c2e615eff025629f3a997cba1 diff --git a/metadata/md5-cache/dev-perl/Filter-1.540.0 b/metadata/md5-cache/dev-perl/Filter-1.540.0 index 5ff91c710295..c322ab350fb4 100644 --- a/metadata/md5-cache/dev-perl/Filter-1.540.0 +++ b/metadata/md5-cache/dev-perl/Filter-1.540.0 @@ -3,10 +3,10 @@ DEPEND=virtual/perl-ExtUtils-MakeMaker 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 ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~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 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~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+ ) RDEPEND=dev-lang/perl:=[-build(-)] SLOT=0 SRC_URI=mirror://cpan/authors/id/R/RU/RURBAN/Filter-1.54.tar.gz _eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 -_md5_=26c173773a2a2a3696616d8d6f2d1dd8 +_md5_=f63237622b0a25acbd01724670c6f560 diff --git a/metadata/md5-cache/dev-perl/MooseX-Types-0.460.0 b/metadata/md5-cache/dev-perl/MooseX-Types-0.460.0 index 59748bece88a..27cbaf3d012a 100644 --- a/metadata/md5-cache/dev-perl/MooseX-Types-0.460.0 +++ b/metadata/md5-cache/dev-perl/MooseX-Types-0.460.0 @@ -4,10 +4,10 @@ DESCRIPTION=Organise your Moose types in libraries EAPI=6 HOMEPAGE=http://search.cpan.org/dist/MooseX-Types/ IUSE=test -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 ~hppa ~x86 LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=virtual/perl-Carp >=dev-perl/Carp-Clan-6 virtual/perl-Exporter dev-perl/Module-Runtime >=dev-perl/Moose-1.06 virtual/perl-Scalar-List-Utils >=dev-perl/Sub-Exporter-ForMethods-0.100.52 dev-perl/Sub-Name >=dev-perl/namespace-autoclean-0.160.0 dev-lang/perl:= SLOT=0 SRC_URI=mirror://cpan/authors/id/E/ET/ETHER/MooseX-Types-0.46.tar.gz _eclasses_=multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c -_md5_=9aa444c5bbe113a4536faa28209996e4 +_md5_=0939e7359888a93ad25ae6299ecaf067 diff --git a/metadata/md5-cache/dev-perl/Sub-Exporter-ForMethods-0.100.52 b/metadata/md5-cache/dev-perl/Sub-Exporter-ForMethods-0.100.52 index e238d341f7d2..7cbc4cb954e9 100644 --- a/metadata/md5-cache/dev-perl/Sub-Exporter-ForMethods-0.100.52 +++ b/metadata/md5-cache/dev-perl/Sub-Exporter-ForMethods-0.100.52 @@ -4,10 +4,10 @@ DESCRIPTION=Helper routines for using Sub::Exporter to build methods EAPI=6 HOMEPAGE=http://search.cpan.org/dist/Sub-Exporter-ForMethods/ IUSE=test -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 ~hppa ~x86 LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=virtual/perl-Scalar-List-Utils >=dev-perl/Sub-Exporter-0.978.0 dev-perl/Sub-Name dev-lang/perl:= SLOT=0 SRC_URI=mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-ForMethods-0.100052.tar.gz _eclasses_=multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c -_md5_=b51d0d2313c9089c2541d937e2272aed +_md5_=f6fb8e769fb73288c00dc22dde0a23b7 diff --git a/metadata/md5-cache/dev-perl/namespace-autoclean-0.280.0 b/metadata/md5-cache/dev-perl/namespace-autoclean-0.280.0 index 42bb221d2ed1..048b379cc4da 100644 --- a/metadata/md5-cache/dev-perl/namespace-autoclean-0.280.0 +++ b/metadata/md5-cache/dev-perl/namespace-autoclean-0.280.0 @@ -4,10 +4,10 @@ DESCRIPTION=Keep imports out of your namespace EAPI=6 HOMEPAGE=http://search.cpan.org/dist/namespace-autoclean/ IUSE=test -KEYWORDS=amd64 ~arm ~ppc ~x86 ~x64-macos +KEYWORDS=amd64 ~arm ~hppa ~ppc ~x86 ~x64-macos LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=>=dev-perl/B-Hooks-EndOfScope-0.120.0 virtual/perl-Scalar-List-Utils dev-perl/Sub-Identify >=dev-perl/namespace-clean-0.200.0 dev-lang/perl:= SLOT=0 SRC_URI=mirror://cpan/authors/id/E/ET/ETHER/namespace-autoclean-0.28.tar.gz _eclasses_=multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c -_md5_=00b079cb4a8a073f55569e623086e345 +_md5_=81434e111091a5ee042db692062b812e diff --git a/metadata/md5-cache/dev-php/PEAR-Auth-1.6.4 b/metadata/md5-cache/dev-php/PEAR-Auth-1.6.4 index 6ce706bb8533..8e6bd1490b1e 100644 --- a/metadata/md5-cache/dev-php/PEAR-Auth-1.6.4 +++ b/metadata/md5-cache/dev-php/PEAR-Auth-1.6.4 @@ -9,5 +9,5 @@ LICENSE=PHP-3.01 RDEPEND=!minimal? ( >=dev-php/PEAR-Log-1.9.10 >=dev-php/PEAR-File_Passwd-1.1.0 >=dev-php/PEAR-Net_POP3-1.3.0 >=dev-php/PEAR-DB-1.7.6-r1 dev-php/PEAR-MDB >=dev-php/PEAR-MDB2-2.0.0_rc1 >=dev-php/PEAR-Crypt_CHAP-1.0.0 >=dev-php/PEAR-SOAP-0.9.0 >=dev-php/PEAR-File_SMBPasswd-1.0.0 >=dev-php/PEAR-HTTP_Client-1.1.0 ) dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Auth-1.6.4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=ce582fe0ce32f04d4305a0339d3c38a4 diff --git a/metadata/md5-cache/dev-php/PEAR-Auth_HTTP-2.1.6-r1 b/metadata/md5-cache/dev-php/PEAR-Auth_HTTP-2.1.6-r1 index 65f9765f1241..aca609012822 100644 --- a/metadata/md5-cache/dev-php/PEAR-Auth_HTTP-2.1.6-r1 +++ b/metadata/md5-cache/dev-php/PEAR-Auth_HTTP-2.1.6-r1 @@ -8,5 +8,5 @@ LICENSE=PHP-3.01 RDEPEND=dev-php/PEAR-Auth dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Auth_HTTP-2.1.6.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=92ce64765da92b43f05680f27450a541 diff --git a/metadata/md5-cache/dev-php/PEAR-Auth_HTTP-2.1.8 b/metadata/md5-cache/dev-php/PEAR-Auth_HTTP-2.1.8 index 75770502b6e9..712077942866 100644 --- a/metadata/md5-cache/dev-php/PEAR-Auth_HTTP-2.1.8 +++ b/metadata/md5-cache/dev-php/PEAR-Auth_HTTP-2.1.8 @@ -8,5 +8,5 @@ LICENSE=PHP-3.01 RDEPEND=dev-php/PEAR-Auth dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Auth_HTTP-2.1.8.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=92ce64765da92b43f05680f27450a541 diff --git a/metadata/md5-cache/dev-php/PEAR-Auth_SASL-1.0.6 b/metadata/md5-cache/dev-php/PEAR-Auth_SASL-1.0.6 index bda53e3bb425..710ece72970c 100644 --- a/metadata/md5-cache/dev-php/PEAR-Auth_SASL-1.0.6 +++ b/metadata/md5-cache/dev-php/PEAR-Auth_SASL-1.0.6 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Auth_SASL-1.0.6.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=51d393f211a7058924c9be9ac2596b10 diff --git a/metadata/md5-cache/dev-php/PEAR-Auth_SASL-1.0.6-r1 b/metadata/md5-cache/dev-php/PEAR-Auth_SASL-1.0.6-r1 index 33a3a07ca2ac..8d39f4e6d4a0 100644 --- a/metadata/md5-cache/dev-php/PEAR-Auth_SASL-1.0.6-r1 +++ b/metadata/md5-cache/dev-php/PEAR-Auth_SASL-1.0.6-r1 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Auth_SASL-1.0.6.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=76a91aee15044d798eed3657938e6b48 diff --git a/metadata/md5-cache/dev-php/PEAR-Benchmark-1.2.9 b/metadata/md5-cache/dev-php/PEAR-Benchmark-1.2.9 index d437cbb1565d..80dedc105053 100644 --- a/metadata/md5-cache/dev-php/PEAR-Benchmark-1.2.9 +++ b/metadata/md5-cache/dev-php/PEAR-Benchmark-1.2.9 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Benchmark-1.2.9.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=455e1abae9af8a3586b51ed6ee1275d5 diff --git a/metadata/md5-cache/dev-php/PEAR-Cache-1.5.6 b/metadata/md5-cache/dev-php/PEAR-Cache-1.5.6 index d18e4f628f9b..9404213f9976 100644 --- a/metadata/md5-cache/dev-php/PEAR-Cache-1.5.6 +++ b/metadata/md5-cache/dev-php/PEAR-Cache-1.5.6 @@ -8,5 +8,5 @@ LICENSE=PHP-2.02 RDEPEND=dev-php/PEAR-HTTP_Request dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Cache-1.5.6.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=13a70b8af87e15b4c43125184e197427 diff --git a/metadata/md5-cache/dev-php/PEAR-Cache_Lite-1.7.16 b/metadata/md5-cache/dev-php/PEAR-Cache_Lite-1.7.16 index aecd6380ac6f..735e76fa2e17 100644 --- a/metadata/md5-cache/dev-php/PEAR-Cache_Lite-1.7.16 +++ b/metadata/md5-cache/dev-php/PEAR-Cache_Lite-1.7.16 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Cache_Lite-1.7.16.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=25a1a664a93f7ecf3b220da25374bf3f diff --git a/metadata/md5-cache/dev-php/PEAR-Calendar-0.5.5 b/metadata/md5-cache/dev-php/PEAR-Calendar-0.5.5 index da85d21515ac..e3abd7cd1835 100644 --- a/metadata/md5-cache/dev-php/PEAR-Calendar-0.5.5 +++ b/metadata/md5-cache/dev-php/PEAR-Calendar-0.5.5 @@ -8,5 +8,5 @@ LICENSE=PHP-2.02 RDEPEND=>=dev-php/PEAR-Date-1.4.5 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Calendar-0.5.5.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=b6a42de3c449717a5e14f50e8b1d304c diff --git a/metadata/md5-cache/dev-php/PEAR-Config-1.10.12-r1 b/metadata/md5-cache/dev-php/PEAR-Config-1.10.12-r1 index af7f4435e0e4..6ae8d755629a 100644 --- a/metadata/md5-cache/dev-php/PEAR-Config-1.10.12-r1 +++ b/metadata/md5-cache/dev-php/PEAR-Config-1.10.12-r1 @@ -9,5 +9,5 @@ LICENSE=PHP-2.02 RDEPEND=xml? ( dev-php/PEAR-XML_Parser dev-php/PEAR-XML_Util ) dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Config-1.10.12.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=f04d1b09477db91321ce3cec472c50bd diff --git a/metadata/md5-cache/dev-php/PEAR-Console_Color-1.0.3 b/metadata/md5-cache/dev-php/PEAR-Console_Color-1.0.3 index e8cd2aa1e4c9..05137fdd0927 100644 --- a/metadata/md5-cache/dev-php/PEAR-Console_Color-1.0.3 +++ b/metadata/md5-cache/dev-php/PEAR-Console_Color-1.0.3 @@ -8,5 +8,5 @@ LICENSE=MIT RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Console_Color-1.0.3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=30353ee793ed62fddb22b4210329fb12 diff --git a/metadata/md5-cache/dev-php/PEAR-Console_CommandLine-1.2.0 b/metadata/md5-cache/dev-php/PEAR-Console_CommandLine-1.2.0 index 4820599759e5..a56ef66f3663 100644 --- a/metadata/md5-cache/dev-php/PEAR-Console_CommandLine-1.2.0 +++ b/metadata/md5-cache/dev-php/PEAR-Console_CommandLine-1.2.0 @@ -8,5 +8,5 @@ LICENSE=MIT RDEPEND=>=dev-php/pear-1.4 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Console_CommandLine-1.2.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=f66a1cce765757a05a3f9d7ccec289c4 diff --git a/metadata/md5-cache/dev-php/PEAR-Console_Getargs-1.3.5 b/metadata/md5-cache/dev-php/PEAR-Console_Getargs-1.3.5 index 271a85c0940e..dbbf7d17c50d 100644 --- a/metadata/md5-cache/dev-php/PEAR-Console_Getargs-1.3.5 +++ b/metadata/md5-cache/dev-php/PEAR-Console_Getargs-1.3.5 @@ -8,5 +8,5 @@ LICENSE=PHP-3 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Console_Getargs-1.3.5.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=8a990cfe096293a8fbb0308a5221ab33 diff --git a/metadata/md5-cache/dev-php/PEAR-Console_Table-1.1.6 b/metadata/md5-cache/dev-php/PEAR-Console_Table-1.1.6 index de6ade1a8bb4..53edc460ebfe 100644 --- a/metadata/md5-cache/dev-php/PEAR-Console_Table-1.1.6 +++ b/metadata/md5-cache/dev-php/PEAR-Console_Table-1.1.6 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Console_Table-1.1.6.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=6246ad51c31c86595fcb0f7f74a0d614 diff --git a/metadata/md5-cache/dev-php/PEAR-Crypt_Blowfish-1.1.0_rc2-r1 b/metadata/md5-cache/dev-php/PEAR-Crypt_Blowfish-1.1.0_rc2-r1 index 03ac9df419a6..e0483dc18e53 100644 --- a/metadata/md5-cache/dev-php/PEAR-Crypt_Blowfish-1.1.0_rc2-r1 +++ b/metadata/md5-cache/dev-php/PEAR-Crypt_Blowfish-1.1.0_rc2-r1 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Crypt_Blowfish-1.1.0RC2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=9b42be31ec2ece3bb998f2a6b4cbeeaf diff --git a/metadata/md5-cache/dev-php/PEAR-Crypt_CHAP-1.5.0 b/metadata/md5-cache/dev-php/PEAR-Crypt_CHAP-1.5.0 index b52107d6401c..df2791beb065 100644 --- a/metadata/md5-cache/dev-php/PEAR-Crypt_CHAP-1.5.0 +++ b/metadata/md5-cache/dev-php/PEAR-Crypt_CHAP-1.5.0 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Crypt_CHAP-1.5.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=8367d50e167c0a4c73d57ce9553c21bd diff --git a/metadata/md5-cache/dev-php/PEAR-Crypt_GPG-1.3.2 b/metadata/md5-cache/dev-php/PEAR-Crypt_GPG-1.3.2 index abe39bcb311f..e084b4257c27 100644 --- a/metadata/md5-cache/dev-php/PEAR-Crypt_GPG-1.3.2 +++ b/metadata/md5-cache/dev-php/PEAR-Crypt_GPG-1.3.2 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-lang/php-5.2.1 app-crypt/gnupg dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Crypt_GPG-1.3.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=863de4e4fffd045ef57eb5c91e8b8302 diff --git a/metadata/md5-cache/dev-php/PEAR-Crypt_HMAC-1.0.1-r1 b/metadata/md5-cache/dev-php/PEAR-Crypt_HMAC-1.0.1-r1 index 1029cf735495..52187775ff93 100644 --- a/metadata/md5-cache/dev-php/PEAR-Crypt_HMAC-1.0.1-r1 +++ b/metadata/md5-cache/dev-php/PEAR-Crypt_HMAC-1.0.1-r1 @@ -8,5 +8,5 @@ LICENSE=PHP-3 RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Crypt_HMAC-1.0.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=2218c711efa7ca08345588ae70f42aca diff --git a/metadata/md5-cache/dev-php/PEAR-Crypt_HMAC2-1.0.0 b/metadata/md5-cache/dev-php/PEAR-Crypt_HMAC2-1.0.0 index 032ae0f4c3f5..eca8de1bd6bb 100644 --- a/metadata/md5-cache/dev-php/PEAR-Crypt_HMAC2-1.0.0 +++ b/metadata/md5-cache/dev-php/PEAR-Crypt_HMAC2-1.0.0 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Crypt_HMAC2-1.0.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=20364df83f4e1aa6b7f92c3a036d2653 diff --git a/metadata/md5-cache/dev-php/PEAR-Crypt_RC4-1.0.3 b/metadata/md5-cache/dev-php/PEAR-Crypt_RC4-1.0.3 index 63583f9aa46f..694bfc02a12e 100644 --- a/metadata/md5-cache/dev-php/PEAR-Crypt_RC4-1.0.3 +++ b/metadata/md5-cache/dev-php/PEAR-Crypt_RC4-1.0.3 @@ -8,5 +8,5 @@ LICENSE=PHP-2.02 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Crypt_RC4-1.0.3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=13a7aee89cd51ce92421102d79d1bd6e diff --git a/metadata/md5-cache/dev-php/PEAR-DB-1.8.2 b/metadata/md5-cache/dev-php/PEAR-DB-1.8.2 index d5bfb8386082..6d9d8c31ee61 100644 --- a/metadata/md5-cache/dev-php/PEAR-DB-1.8.2 +++ b/metadata/md5-cache/dev-php/PEAR-DB-1.8.2 @@ -8,5 +8,5 @@ LICENSE=PHP-3 RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/DB-1.8.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=91283a8c19485200171b8d4d48feecef diff --git a/metadata/md5-cache/dev-php/PEAR-DB-1.9.2 b/metadata/md5-cache/dev-php/PEAR-DB-1.9.2 index 72fa04be7bd0..621df2b6dfe0 100644 --- a/metadata/md5-cache/dev-php/PEAR-DB-1.9.2 +++ b/metadata/md5-cache/dev-php/PEAR-DB-1.9.2 @@ -9,5 +9,5 @@ LICENSE=PHP-3 RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/DB-1.9.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=24d97145a4d0b7d61f1fb2f00f70e9d0 diff --git a/metadata/md5-cache/dev-php/PEAR-DB_DataObject-1.11.3 b/metadata/md5-cache/dev-php/PEAR-DB_DataObject-1.11.3 index 20497e8d4e58..0bb9f3fd6a83 100644 --- a/metadata/md5-cache/dev-php/PEAR-DB_DataObject-1.11.3 +++ b/metadata/md5-cache/dev-php/PEAR-DB_DataObject-1.11.3 @@ -9,5 +9,5 @@ LICENSE=PHP-2.02 PHP-3 RDEPEND=|| ( >=dev-php/PEAR-DB-1.7.6-r1 >=dev-php/PEAR-MDB2-2.0.0_rc1 ) >=dev-php/PEAR-Date-1.4.3-r1 !minimal? ( >=dev-php/PEAR-Validate-0.5.0-r1 ) dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/DB_DataObject-1.11.3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=7a83153ddb97b56708a880fbbdae2a88 diff --git a/metadata/md5-cache/dev-php/PEAR-DB_DataObject-1.11.5 b/metadata/md5-cache/dev-php/PEAR-DB_DataObject-1.11.5 new file mode 100644 index 000000000000..66777e9c0a5a --- /dev/null +++ b/metadata/md5-cache/dev-php/PEAR-DB_DataObject-1.11.5 @@ -0,0 +1,13 @@ +DEFINED_PHASES=install prepare setup +DEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 +DESCRIPTION=SQL builder and data modeling layer +EAPI=6 +HOMEPAGE=http://pear.php.net/DB_DataObject +IUSE=minimal +KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=PHP-3.01 +RDEPEND=|| ( dev-php/PEAR-MDB2 dev-php/PEAR-DB ) dev-php/PEAR-Date !minimal? ( dev-php/PEAR-Validate ) dev-lang/php:* >=dev-php/pear-1.8.1 +SLOT=0 +SRC_URI=http://pear.php.net/get/DB_DataObject-1.11.5.tgz +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_md5_=e2e81080c3549d789ccde2a0b98a4d90 diff --git a/metadata/md5-cache/dev-php/PEAR-Date-1.4.7 b/metadata/md5-cache/dev-php/PEAR-Date-1.4.7 index 137ce67d081b..3a4b881d5961 100644 --- a/metadata/md5-cache/dev-php/PEAR-Date-1.4.7 +++ b/metadata/md5-cache/dev-php/PEAR-Date-1.4.7 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Date-1.4.7.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=09f6e7e88d8d0219a2ccac37287fdea2 diff --git a/metadata/md5-cache/dev-php/PEAR-Date-1.5.0_alpha1 b/metadata/md5-cache/dev-php/PEAR-Date-1.5.0_alpha1 index 6494757244de..9c9b727001a1 100644 --- a/metadata/md5-cache/dev-php/PEAR-Date-1.5.0_alpha1 +++ b/metadata/md5-cache/dev-php/PEAR-Date-1.5.0_alpha1 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Date-1.5.0a1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=11aaf27126b4b495dc1d5bf6d3cceb3d diff --git a/metadata/md5-cache/dev-php/PEAR-Date-1.5.0_alpha4 b/metadata/md5-cache/dev-php/PEAR-Date-1.5.0_alpha4 index 9dbdd483fc2c..77d455d5ec49 100644 --- a/metadata/md5-cache/dev-php/PEAR-Date-1.5.0_alpha4 +++ b/metadata/md5-cache/dev-php/PEAR-Date-1.5.0_alpha4 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Date-1.5.0a4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=11aaf27126b4b495dc1d5bf6d3cceb3d diff --git a/metadata/md5-cache/dev-php/PEAR-File-1.4.1 b/metadata/md5-cache/dev-php/PEAR-File-1.4.1 index 07b2e5eb82ea..64ce3a0a5704 100644 --- a/metadata/md5-cache/dev-php/PEAR-File-1.4.1 +++ b/metadata/md5-cache/dev-php/PEAR-File-1.4.1 @@ -8,5 +8,5 @@ LICENSE=PHP-3 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/File-1.4.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=ed830f8c996559ba86f8457d36d510a9 diff --git a/metadata/md5-cache/dev-php/PEAR-File_Archive-1.5.4-r1 b/metadata/md5-cache/dev-php/PEAR-File_Archive-1.5.4-r1 index 2463290a097b..b1a43906a347 100644 --- a/metadata/md5-cache/dev-php/PEAR-File_Archive-1.5.4-r1 +++ b/metadata/md5-cache/dev-php/PEAR-File_Archive-1.5.4-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-lang/php[bzip2,zlib] dev-php/PEAR-MIME_Type !minimal? ( dev-php/PEAR-Mail_Mime dev-php/PEAR-Mail >=dev-php/PEAR-Cache_Lite-1.5.0 ) dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/File_Archive-1.5.4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=91246cc83be35a9572df37ce82623066 diff --git a/metadata/md5-cache/dev-php/PEAR-File_Archive-1.5.5 b/metadata/md5-cache/dev-php/PEAR-File_Archive-1.5.5 index e496a12c67f9..e81329dde569 100644 --- a/metadata/md5-cache/dev-php/PEAR-File_Archive-1.5.5 +++ b/metadata/md5-cache/dev-php/PEAR-File_Archive-1.5.5 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-lang/php[bzip2,zlib] dev-php/PEAR-MIME_Type !minimal? ( dev-php/PEAR-Mail_Mime dev-php/PEAR-Mail >=dev-php/PEAR-Cache_Lite-1.5.0 ) dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/File_Archive-1.5.5.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=91246cc83be35a9572df37ce82623066 diff --git a/metadata/md5-cache/dev-php/PEAR-File_Find-1.3.2 b/metadata/md5-cache/dev-php/PEAR-File_Find-1.3.2 index 6fe3b542548a..f2faf3fd84f0 100644 --- a/metadata/md5-cache/dev-php/PEAR-File_Find-1.3.2 +++ b/metadata/md5-cache/dev-php/PEAR-File_Find-1.3.2 @@ -8,5 +8,5 @@ LICENSE=PHP-2.02 RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/File_Find-1.3.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=ae993b0724653bc603432b0089192483 diff --git a/metadata/md5-cache/dev-php/PEAR-File_Fortune-1.0.0 b/metadata/md5-cache/dev-php/PEAR-File_Fortune-1.0.0 index 048d80d32974..be4be6d28615 100644 --- a/metadata/md5-cache/dev-php/PEAR-File_Fortune-1.0.0 +++ b/metadata/md5-cache/dev-php/PEAR-File_Fortune-1.0.0 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-lang/php-5.1.4:* dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/File_Fortune-1.0.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=2a3a2d19b9fc5c9a916dbf7fd4c58f2c diff --git a/metadata/md5-cache/dev-php/PEAR-File_Gettext-0.4.2 b/metadata/md5-cache/dev-php/PEAR-File_Gettext-0.4.2 index 942cc4f5f9e5..7b3c3a9e75db 100644 --- a/metadata/md5-cache/dev-php/PEAR-File_Gettext-0.4.2 +++ b/metadata/md5-cache/dev-php/PEAR-File_Gettext-0.4.2 @@ -8,5 +8,5 @@ LICENSE=PHP-3 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/File_Gettext-0.4.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=7def7578d87b2fd52be61010a7ade427 diff --git a/metadata/md5-cache/dev-php/PEAR-File_Passwd-1.1.7-r3 b/metadata/md5-cache/dev-php/PEAR-File_Passwd-1.1.7-r3 index eae52f7f8df5..d83eb76e4e0a 100644 --- a/metadata/md5-cache/dev-php/PEAR-File_Passwd-1.1.7-r3 +++ b/metadata/md5-cache/dev-php/PEAR-File_Passwd-1.1.7-r3 @@ -8,5 +8,5 @@ LICENSE=PHP-3 RDEPEND=dev-lang/php:*[pcre(+)] dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/File_Passwd-1.1.7.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=30e8a62b639f484f21e1ba6dc0b50458 diff --git a/metadata/md5-cache/dev-php/PEAR-File_SMBPasswd-1.0.3 b/metadata/md5-cache/dev-php/PEAR-File_SMBPasswd-1.0.3 index eb51580f5c5f..90c80adf0f00 100644 --- a/metadata/md5-cache/dev-php/PEAR-File_SMBPasswd-1.0.3 +++ b/metadata/md5-cache/dev-php/PEAR-File_SMBPasswd-1.0.3 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=|| ( =dev-lang/php-5.3 ) >=dev-php/PEAR-Crypt_CHAP-1.0.0 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/File_SMBPasswd-1.0.3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=5e64f8986a3a96798c5470b8f0a3760a diff --git a/metadata/md5-cache/dev-php/PEAR-HTML_AJAX-0.5.7 b/metadata/md5-cache/dev-php/PEAR-HTML_AJAX-0.5.7 index cc96c773c93a..4052f623a6fd 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTML_AJAX-0.5.7 +++ b/metadata/md5-cache/dev-php/PEAR-HTML_AJAX-0.5.7 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTML_AJAX-0.5.7.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=1ea926c36e96dbd1a6a542ff4eeaa756 diff --git a/metadata/md5-cache/dev-php/PEAR-HTML_CSS-1.5.4-r1 b/metadata/md5-cache/dev-php/PEAR-HTML_CSS-1.5.4-r1 index 9248f9265f55..7d40fd1167b3 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTML_CSS-1.5.4-r1 +++ b/metadata/md5-cache/dev-php/PEAR-HTML_CSS-1.5.4-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=dev-php/PEAR-HTML_Common-1.2.4 !minimal? ( >=dev-php/PEAR-Services_W3C_CSSValidator-0.1.0 >=dev-php/phpunit-3.2.0 ) dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTML_CSS-1.5.4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=3fc034b88642c6fd520346b1b45efb7e diff --git a/metadata/md5-cache/dev-php/PEAR-HTML_Common-1.2.5 b/metadata/md5-cache/dev-php/PEAR-HTML_Common-1.2.5 index ecf2bff1c757..580c7f6c6a8a 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTML_Common-1.2.5 +++ b/metadata/md5-cache/dev-php/PEAR-HTML_Common-1.2.5 @@ -8,5 +8,5 @@ LICENSE=PHP-3.01 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTML_Common-1.2.5.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=f60ba1823341ca27492cae8ab14568aa diff --git a/metadata/md5-cache/dev-php/PEAR-HTML_Common2-2.1.0 b/metadata/md5-cache/dev-php/PEAR-HTML_Common2-2.1.0 index 26fff40516be..69906f757728 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTML_Common2-2.1.0 +++ b/metadata/md5-cache/dev-php/PEAR-HTML_Common2-2.1.0 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTML_Common2-2.1.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=132b9ae3a566fcb571c471c93b2f8d9f diff --git a/metadata/md5-cache/dev-php/PEAR-HTML_Javascript-1.1.1 b/metadata/md5-cache/dev-php/PEAR-HTML_Javascript-1.1.1 index f2530bfe4f73..9337abc40902 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTML_Javascript-1.1.1 +++ b/metadata/md5-cache/dev-php/PEAR-HTML_Javascript-1.1.1 @@ -8,5 +8,5 @@ LICENSE=PHP-3 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTML_Javascript-1.1.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=66675c2df9a929f5460bfcfd0efa25a8 diff --git a/metadata/md5-cache/dev-php/PEAR-HTML_Javascript-1.1.2 b/metadata/md5-cache/dev-php/PEAR-HTML_Javascript-1.1.2 index a89ef5b632b7..b24da7428f5b 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTML_Javascript-1.1.2 +++ b/metadata/md5-cache/dev-php/PEAR-HTML_Javascript-1.1.2 @@ -8,5 +8,5 @@ LICENSE=PHP-3 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTML_Javascript-1.1.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=97a82f17dcbb29b6dc51a75104512ae0 diff --git a/metadata/md5-cache/dev-php/PEAR-HTML_QuickForm-3.2.13 b/metadata/md5-cache/dev-php/PEAR-HTML_QuickForm-3.2.13 index fc3b604e2217..abcab56d7262 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTML_QuickForm-3.2.13 +++ b/metadata/md5-cache/dev-php/PEAR-HTML_QuickForm-3.2.13 @@ -8,5 +8,5 @@ LICENSE=PHP-3.01 RDEPEND=>=dev-php/PEAR-HTML_Common-1.2.1-r1 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTML_QuickForm-3.2.13.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=d02dc32cc580ad79e4d3d08a85b9298a diff --git a/metadata/md5-cache/dev-php/PEAR-HTML_QuickForm2-2.0.2 b/metadata/md5-cache/dev-php/PEAR-HTML_QuickForm2-2.0.2 index f323819a5a58..26b3dca8f1b6 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTML_QuickForm2-2.0.2 +++ b/metadata/md5-cache/dev-php/PEAR-HTML_QuickForm2-2.0.2 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-lang/php-5.2.0:* >=dev-php/PEAR-HTML_Common2-2.0.0 dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTML_QuickForm2-2.0.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=bb987b27bcaaf0b43cd4c29faf2ea411 diff --git a/metadata/md5-cache/dev-php/PEAR-HTML_QuickForm_Controller-1.0.10-r1 b/metadata/md5-cache/dev-php/PEAR-HTML_QuickForm_Controller-1.0.10-r1 index e1dcabef852a..10f9d58dbb22 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTML_QuickForm_Controller-1.0.10-r1 +++ b/metadata/md5-cache/dev-php/PEAR-HTML_QuickForm_Controller-1.0.10-r1 @@ -8,5 +8,5 @@ LICENSE=PHP-3.01 RDEPEND=>=dev-php/PEAR-HTML_QuickForm-3.2.5 dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTML_QuickForm_Controller-1.0.10.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=c003aae272ee9302773bff76b615d580 diff --git a/metadata/md5-cache/dev-php/PEAR-HTML_QuickForm_advmultiselect-1.5.1 b/metadata/md5-cache/dev-php/PEAR-HTML_QuickForm_advmultiselect-1.5.1 index 180d209077ee..9acd3c996867 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTML_QuickForm_advmultiselect-1.5.1 +++ b/metadata/md5-cache/dev-php/PEAR-HTML_QuickForm_advmultiselect-1.5.1 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-php/PEAR-HTML_QuickForm-3.2.10 >=dev-php/PEAR-HTML_Common-1.2.5 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTML_QuickForm_advmultiselect-1.5.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=0e392f7befcbaff2481bb6415f8b97a1 diff --git a/metadata/md5-cache/dev-php/PEAR-HTML_Select-1.3.1-r1 b/metadata/md5-cache/dev-php/PEAR-HTML_Select-1.3.1-r1 index c1103fbdc133..8eea6e9e1e37 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTML_Select-1.3.1-r1 +++ b/metadata/md5-cache/dev-php/PEAR-HTML_Select-1.3.1-r1 @@ -8,5 +8,5 @@ LICENSE=PHP-3.01 RDEPEND=dev-php/PEAR-HTML_Common dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTML_Select-1.3.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=f41b50d12257647ebb9001260e7bbe87 diff --git a/metadata/md5-cache/dev-php/PEAR-HTML_Table-1.8.3 b/metadata/md5-cache/dev-php/PEAR-HTML_Table-1.8.3 index a91fce2bfa32..cc4fc290af40 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTML_Table-1.8.3 +++ b/metadata/md5-cache/dev-php/PEAR-HTML_Table-1.8.3 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-php/PEAR-HTML_Common-1.2.3 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTML_Table-1.8.3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=98535fed5cdab5006ba20c864abb2d84 diff --git a/metadata/md5-cache/dev-php/PEAR-HTML_Table_Matrix-1.0.10 b/metadata/md5-cache/dev-php/PEAR-HTML_Table_Matrix-1.0.10 index c4c39888b4b2..83bdbe59bbe7 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTML_Table_Matrix-1.0.10 +++ b/metadata/md5-cache/dev-php/PEAR-HTML_Table_Matrix-1.0.10 @@ -8,5 +8,5 @@ LICENSE=PHP-3 RDEPEND=>=dev-php/PEAR-HTML_Table-1.5-r1 >=dev-php/PEAR-Numbers_Words-0.13.1-r1 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTML_Table_Matrix-1.0.10.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=9115722b241c4efa353cc20795dcbab6 diff --git a/metadata/md5-cache/dev-php/PEAR-HTML_Table_Matrix-1.0.9 b/metadata/md5-cache/dev-php/PEAR-HTML_Table_Matrix-1.0.9 index 6af9defdb5ae..08aae64950b6 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTML_Table_Matrix-1.0.9 +++ b/metadata/md5-cache/dev-php/PEAR-HTML_Table_Matrix-1.0.9 @@ -8,5 +8,5 @@ LICENSE=PHP-3 RDEPEND=>=dev-php/PEAR-HTML_Table-1.5-r1 >=dev-php/PEAR-Numbers_Words-0.13.1-r1 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTML_Table_Matrix-1.0.9.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=1c7aa172ba150ef6ff15db62b7951ae1 diff --git a/metadata/md5-cache/dev-php/PEAR-HTML_Template_Flexy-1.3.12 b/metadata/md5-cache/dev-php/PEAR-HTML_Template_Flexy-1.3.12 index 45ac9cc364e4..5cc408bd5793 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTML_Template_Flexy-1.3.12 +++ b/metadata/md5-cache/dev-php/PEAR-HTML_Template_Flexy-1.3.12 @@ -9,5 +9,5 @@ LICENSE=PHP-2.02 RDEPEND=!minimal? ( >=dev-php/PEAR-HTML_Javascript-1.1.0-r1 dev-php/PEAR-File_Gettext dev-php/PEAR-Translation2 ) dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTML_Template_Flexy-1.3.12.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=8827d2a885b6b6f99a6995572fa3092d diff --git a/metadata/md5-cache/dev-php/PEAR-HTML_Template_IT-1.3.0 b/metadata/md5-cache/dev-php/PEAR-HTML_Template_IT-1.3.0 index ce28334a5b77..90ad45fbc7c9 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTML_Template_IT-1.3.0 +++ b/metadata/md5-cache/dev-php/PEAR-HTML_Template_IT-1.3.0 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTML_Template_IT-1.3.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=1fa7246fe637e7ad5703673b79a722fc diff --git a/metadata/md5-cache/dev-php/PEAR-HTML_Template_Sigma-1.2.0-r1 b/metadata/md5-cache/dev-php/PEAR-HTML_Template_Sigma-1.2.0-r1 index 35e88ffb25b6..b7a6ee2c4d87 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTML_Template_Sigma-1.2.0-r1 +++ b/metadata/md5-cache/dev-php/PEAR-HTML_Template_Sigma-1.2.0-r1 @@ -8,5 +8,5 @@ LICENSE=PHP-3.01 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTML_Template_Sigma-1.2.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=37807f1e27f18b06d49cdb804a186a14 diff --git a/metadata/md5-cache/dev-php/PEAR-HTML_Template_Sigma-1.3.0 b/metadata/md5-cache/dev-php/PEAR-HTML_Template_Sigma-1.3.0 index 3f0887eb5645..6c80121f2685 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTML_Template_Sigma-1.3.0 +++ b/metadata/md5-cache/dev-php/PEAR-HTML_Template_Sigma-1.3.0 @@ -8,5 +8,5 @@ LICENSE=PHP-3.01 RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTML_Template_Sigma-1.3.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=5a9a9db4beefcda5f75fcebc65684278 diff --git a/metadata/md5-cache/dev-php/PEAR-HTML_TreeMenu-1.2.2 b/metadata/md5-cache/dev-php/PEAR-HTML_TreeMenu-1.2.2 index 5ae2d9291231..0ca950571b17 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTML_TreeMenu-1.2.2 +++ b/metadata/md5-cache/dev-php/PEAR-HTML_TreeMenu-1.2.2 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTML_TreeMenu-1.2.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=1bed880001c41461f73a45e37d7e0259 diff --git a/metadata/md5-cache/dev-php/PEAR-HTTP-1.4.1-r2 b/metadata/md5-cache/dev-php/PEAR-HTTP-1.4.1-r2 index 98be347e825f..81266be9104f 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTTP-1.4.1-r2 +++ b/metadata/md5-cache/dev-php/PEAR-HTTP-1.4.1-r2 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTTP-1.4.1.tgz -_eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=557659ff5dbe3afcd535b24bfd515aea diff --git a/metadata/md5-cache/dev-php/PEAR-HTTP_Client-1.2.1 b/metadata/md5-cache/dev-php/PEAR-HTTP_Client-1.2.1 index dfe7fc5746a9..ada797f07506 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTTP_Client-1.2.1 +++ b/metadata/md5-cache/dev-php/PEAR-HTTP_Client-1.2.1 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-php/PEAR-HTTP_Request-1.2 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTTP_Client-1.2.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=3185e1128ead7e37e4297d604d48e5d0 diff --git a/metadata/md5-cache/dev-php/PEAR-HTTP_Download-1.1.4 b/metadata/md5-cache/dev-php/PEAR-HTTP_Download-1.1.4 index 7dcc35eda24a..20dbf41d0b5b 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTTP_Download-1.1.4 +++ b/metadata/md5-cache/dev-php/PEAR-HTTP_Download-1.1.4 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=dev-lang/php[postgres?] dev-php/PEAR-HTTP_Header !minimal? ( dev-php/PEAR-MIME_Type dev-php/PEAR-Archive_Tar ) dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTTP_Download-1.1.4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=8be1730074076d7b3c3fceea175c2ccb diff --git a/metadata/md5-cache/dev-php/PEAR-HTTP_Header-1.2.1-r1 b/metadata/md5-cache/dev-php/PEAR-HTTP_Header-1.2.1-r1 index ad6f4c4f9bd2..a19099e917fc 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTTP_Header-1.2.1-r1 +++ b/metadata/md5-cache/dev-php/PEAR-HTTP_Header-1.2.1-r1 @@ -8,5 +8,5 @@ LICENSE=BSD-2 RDEPEND=dev-php/PEAR-HTTP dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTTP_Header-1.2.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=516366676af92adcbfc11d707e12e535 diff --git a/metadata/md5-cache/dev-php/PEAR-HTTP_Request-1.4.4 b/metadata/md5-cache/dev-php/PEAR-HTTP_Request-1.4.4 index ec11bb25d9a4..948222fc79f0 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTTP_Request-1.4.4 +++ b/metadata/md5-cache/dev-php/PEAR-HTTP_Request-1.4.4 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-php/PEAR-Net_URL-1.0.14-r1 >=dev-php/PEAR-Net_Socket-1.0.7 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTTP_Request-1.4.4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=a13556e3c97c2ebb41d75ee6d6b9153e diff --git a/metadata/md5-cache/dev-php/PEAR-HTTP_Request2-2.0.0 b/metadata/md5-cache/dev-php/PEAR-HTTP_Request2-2.0.0 index bc1909df41cd..3a290a67aa6d 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTTP_Request2-2.0.0 +++ b/metadata/md5-cache/dev-php/PEAR-HTTP_Request2-2.0.0 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-lang/php[curl?,fileinfo?,ssl?,zlib?] >=dev-php/PEAR-Net_URL2-0.3.0 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTTP_Request2-2.0.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=551aa710d13bae66e17bed4c00acabd2 diff --git a/metadata/md5-cache/dev-php/PEAR-HTTP_Request2-2.1.1 b/metadata/md5-cache/dev-php/PEAR-HTTP_Request2-2.1.1 index 84348e927c68..bb2badf1c35e 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTTP_Request2-2.1.1 +++ b/metadata/md5-cache/dev-php/PEAR-HTTP_Request2-2.1.1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-lang/php[curl?,fileinfo?,ssl?,zlib?] >=dev-php/PEAR-Net_URL2-0.3.0 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTTP_Request2-2.1.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=bccc4d5be277f1cd9b1c935fea8fa1aa diff --git a/metadata/md5-cache/dev-php/PEAR-HTTP_Request2-2.2.1 b/metadata/md5-cache/dev-php/PEAR-HTTP_Request2-2.2.1 index 50f40b0534a8..90974be9f337 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTTP_Request2-2.2.1 +++ b/metadata/md5-cache/dev-php/PEAR-HTTP_Request2-2.2.1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-lang/php[curl?,fileinfo?,ssl?,zlib?] >=dev-php/PEAR-Net_URL2-2.0.0 dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTTP_Request2-2.2.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=ccb0e1ba93f61173d23b137182838e3e diff --git a/metadata/md5-cache/dev-php/PEAR-HTTP_Session2-0.7.3-r1 b/metadata/md5-cache/dev-php/PEAR-HTTP_Session2-0.7.3-r1 index 5c9a4a1d2e11..c84dde951b90 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTTP_Session2-0.7.3-r1 +++ b/metadata/md5-cache/dev-php/PEAR-HTTP_Session2-0.7.3-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=!minimal? ( >=dev-php/PEAR-MDB2-2.4.1 >=dev-php/PEAR-DB-1.7.11 ) dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTTP_Session2-0.7.3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=58895c4af2cf378540655d19b9cf54cf diff --git a/metadata/md5-cache/dev-php/PEAR-I18Nv2-0.11.4-r3 b/metadata/md5-cache/dev-php/PEAR-I18Nv2-0.11.4-r3 index 0e7247d8275f..0201c3009e7d 100644 --- a/metadata/md5-cache/dev-php/PEAR-I18Nv2-0.11.4-r3 +++ b/metadata/md5-cache/dev-php/PEAR-I18Nv2-0.11.4-r3 @@ -8,5 +8,5 @@ LICENSE=PHP-3 RDEPEND=dev-lang/php:*[iconv,pcre(+)] dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/I18Nv2-0.11.4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=a3a3a28381c2d8e2438791ab14eda81b diff --git a/metadata/md5-cache/dev-php/PEAR-Image_Color2-0.1.5 b/metadata/md5-cache/dev-php/PEAR-Image_Color2-0.1.5 index df2ab9169655..9d26d44d2e73 100644 --- a/metadata/md5-cache/dev-php/PEAR-Image_Color2-0.1.5 +++ b/metadata/md5-cache/dev-php/PEAR-Image_Color2-0.1.5 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Image_Color2-0.1.5.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=de498fc762af4d9626e0704c45768712 diff --git a/metadata/md5-cache/dev-php/PEAR-Image_GraphViz-1.3.0-r1 b/metadata/md5-cache/dev-php/PEAR-Image_GraphViz-1.3.0-r1 index 98d93bf04b3f..fb23cb2c2a90 100644 --- a/metadata/md5-cache/dev-php/PEAR-Image_GraphViz-1.3.0-r1 +++ b/metadata/md5-cache/dev-php/PEAR-Image_GraphViz-1.3.0-r1 @@ -8,5 +8,5 @@ LICENSE=PHP-3 RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Image_GraphViz-1.3.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=dd356e916e10c52eb9948958e7325a2f diff --git a/metadata/md5-cache/dev-php/PEAR-Image_IPTC-1.0.2-r1 b/metadata/md5-cache/dev-php/PEAR-Image_IPTC-1.0.2-r1 index 60079c3cd049..8303e49581e8 100644 --- a/metadata/md5-cache/dev-php/PEAR-Image_IPTC-1.0.2-r1 +++ b/metadata/md5-cache/dev-php/PEAR-Image_IPTC-1.0.2-r1 @@ -8,5 +8,5 @@ LICENSE=PHP-2.02 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Image_IPTC-1.0.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=47abda717d65b472a1d63ec7298c73eb diff --git a/metadata/md5-cache/dev-php/PEAR-Image_Text-0.6.1 b/metadata/md5-cache/dev-php/PEAR-Image_Text-0.6.1 index 34202a30add3..274897525405 100644 --- a/metadata/md5-cache/dev-php/PEAR-Image_Text-0.6.1 +++ b/metadata/md5-cache/dev-php/PEAR-Image_Text-0.6.1 @@ -8,5 +8,5 @@ LICENSE=PHP-3 RDEPEND=dev-lang/php[gd] dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Image_Text-0.6.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=5407d9cb732e1a9df223520f35e02f5f diff --git a/metadata/md5-cache/dev-php/PEAR-Image_Text-0.7.0 b/metadata/md5-cache/dev-php/PEAR-Image_Text-0.7.0 index ae6b9d858def..468dfa12553d 100644 --- a/metadata/md5-cache/dev-php/PEAR-Image_Text-0.7.0 +++ b/metadata/md5-cache/dev-php/PEAR-Image_Text-0.7.0 @@ -8,5 +8,5 @@ LICENSE=PHP-3 RDEPEND=dev-lang/php[gd] dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Image_Text-0.7.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=af2cdc3616645122dcc2ccf47707ce7d diff --git a/metadata/md5-cache/dev-php/PEAR-Log-1.12.7-r1 b/metadata/md5-cache/dev-php/PEAR-Log-1.12.7-r1 index e25424707f89..59c3a58f0c43 100644 --- a/metadata/md5-cache/dev-php/PEAR-Log-1.12.7-r1 +++ b/metadata/md5-cache/dev-php/PEAR-Log-1.12.7-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=!minimal? ( >=dev-php/PEAR-DB-1.7.6-r1 dev-php/PEAR-Mail >=dev-php/PEAR-MDB2-2.0.0_rc1 ) dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Log-1.12.7.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=97ca9b92db06eae4bc5d17d9bf9e4b9c diff --git a/metadata/md5-cache/dev-php/PEAR-Log-1.12.8 b/metadata/md5-cache/dev-php/PEAR-Log-1.12.8 index d05a64bbdf1a..51eeab1598bd 100644 --- a/metadata/md5-cache/dev-php/PEAR-Log-1.12.8 +++ b/metadata/md5-cache/dev-php/PEAR-Log-1.12.8 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=!minimal? ( >=dev-php/PEAR-DB-1.7.6-r1 dev-php/PEAR-Mail >=dev-php/PEAR-MDB2-2.0.0_rc1 ) dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Log-1.12.8.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=99c7b8cd861975791dc5a193471d499d diff --git a/metadata/md5-cache/dev-php/PEAR-MDB-1.3.0-r1 b/metadata/md5-cache/dev-php/PEAR-MDB-1.3.0-r1 index 78e03fc93dfc..5f0053a15dfe 100644 --- a/metadata/md5-cache/dev-php/PEAR-MDB-1.3.0-r1 +++ b/metadata/md5-cache/dev-php/PEAR-MDB-1.3.0-r1 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-php/PEAR-XML_Parser dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/MDB-1.3.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=30466b09847db19d0a0dae5d0d5190f4 diff --git a/metadata/md5-cache/dev-php/PEAR-MDB2-2.5.0_beta3 b/metadata/md5-cache/dev-php/PEAR-MDB2-2.5.0_beta3 index c852ca3f71a0..b9cd12805793 100644 --- a/metadata/md5-cache/dev-php/PEAR-MDB2-2.5.0_beta3 +++ b/metadata/md5-cache/dev-php/PEAR-MDB2-2.5.0_beta3 @@ -10,5 +10,5 @@ PDEPEND=firebird? ( >=dev-php/PEAR-MDB2_Driver_ibase-1.5.0_beta3 ) mssql? ( >=de RDEPEND=>=dev-php/pear-1.9.1 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/MDB2-2.5.0b3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=2ad30b79787faeaf96402a118c7b8a02 diff --git a/metadata/md5-cache/dev-php/PEAR-MDB2-2.5.0_beta5 b/metadata/md5-cache/dev-php/PEAR-MDB2-2.5.0_beta5 index 425fe6645abf..c88621e1137b 100644 --- a/metadata/md5-cache/dev-php/PEAR-MDB2-2.5.0_beta5 +++ b/metadata/md5-cache/dev-php/PEAR-MDB2-2.5.0_beta5 @@ -10,5 +10,5 @@ PDEPEND=mssql? ( >=dev-php/PEAR-MDB2_Driver_mssql-1.3.0_beta4 ) mysql? ( >=dev-p RDEPEND=>=dev-php/pear-1.9.1 dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/MDB2-2.5.0b5.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=6350c22a9d50b5c95fa7a5c8f58d9718 diff --git a/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mssql-1.5.0_beta3 b/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mssql-1.5.0_beta3 index 735e733d6489..df3ff5100f91 100644 --- a/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mssql-1.5.0_beta3 +++ b/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mssql-1.5.0_beta3 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-php/PEAR-MDB2-2.5.0_beta3 dev-lang/php[mssql] dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/MDB2_Driver_mssql-1.5.0b3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=a63053089d4fe423819a472415c7ae20 diff --git a/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mssql-1.5.0_beta4 b/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mssql-1.5.0_beta4 index 8714443ec2b3..e517c0c22fc2 100644 --- a/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mssql-1.5.0_beta4 +++ b/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mssql-1.5.0_beta4 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-php/PEAR-MDB2-2.5.0_beta3 dev-lang/php[mssql] dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/MDB2_Driver_mssql-1.5.0b4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=f0298eca64c66995b48034687e090f5f diff --git a/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mysql-1.5.0_beta3 b/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mysql-1.5.0_beta3 index 43583d6b87ef..b66035fa15bd 100644 --- a/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mysql-1.5.0_beta3 +++ b/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mysql-1.5.0_beta3 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-php/PEAR-MDB2-2.5.0_beta3 dev-lang/php[mysql] dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/MDB2_Driver_mysql-1.5.0b3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=5ecd8b9e1cb538578ef16596d0f232b5 diff --git a/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mysql-1.5.0_beta4 b/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mysql-1.5.0_beta4 index df14496463fc..d513e4c06cb9 100644 --- a/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mysql-1.5.0_beta4 +++ b/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mysql-1.5.0_beta4 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-php/PEAR-MDB2-2.5.0_beta3 dev-lang/php:*[mysql] dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/MDB2_Driver_mysql-1.5.0b4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=a713e97eec189a10004fa1376bf958fc diff --git a/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mysqli-1.5.0_beta3 b/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mysqli-1.5.0_beta3 index ccfa872b66d9..c323d189fdda 100644 --- a/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mysqli-1.5.0_beta3 +++ b/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mysqli-1.5.0_beta3 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-php/PEAR-MDB2-2.5.0_beta3 dev-lang/php[mysqli] dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/MDB2_Driver_mysqli-1.5.0b3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=19edec335f7bc9bbd0ed03b43df4a21d diff --git a/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mysqli-1.5.0_beta4 b/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mysqli-1.5.0_beta4 index 56494d5e2a26..5139277da895 100644 --- a/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mysqli-1.5.0_beta4 +++ b/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_mysqli-1.5.0_beta4 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-php/PEAR-MDB2-2.5.0_beta3 dev-lang/php:*[mysqli] dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/MDB2_Driver_mysqli-1.5.0b4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=f61f26912aa7a557b24cf6467ba49b7b diff --git a/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_oci8-1.5.0_beta3 b/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_oci8-1.5.0_beta3 index b4f2bfefbf98..0fb56432de3e 100644 --- a/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_oci8-1.5.0_beta3 +++ b/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_oci8-1.5.0_beta3 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-php/PEAR-MDB2-2.5.0_beta3 || ( dev-lang/php[oci8] dev-lang/php[oci8-instant-client] ) dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/MDB2_Driver_oci8-1.5.0b3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=4efbe098577746e34f04ea52257e8c9f diff --git a/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_oci8-1.5.0_beta4 b/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_oci8-1.5.0_beta4 index a74012929ae8..8116083792eb 100644 --- a/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_oci8-1.5.0_beta4 +++ b/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_oci8-1.5.0_beta4 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-php/PEAR-MDB2-2.5.0_beta3 || ( dev-lang/php[oci8] dev-lang/php[oci8-instant-client] ) dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/MDB2_Driver_oci8-1.5.0b4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=fe98306cb4d2bbbb83b3e0e54b6eef02 diff --git a/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_pgsql-1.5.0_beta3 b/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_pgsql-1.5.0_beta3 index a2079242d026..b8a3bbdda18c 100644 --- a/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_pgsql-1.5.0_beta3 +++ b/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_pgsql-1.5.0_beta3 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-php/PEAR-MDB2-2.5.0_beta3 dev-lang/php[postgres] dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/MDB2_Driver_pgsql-1.5.0b3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=b2724da957e323bf707579d53e5dbb79 diff --git a/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_pgsql-1.5.0_beta4 b/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_pgsql-1.5.0_beta4 index 35b89e045fc0..4b854e16f6a5 100644 --- a/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_pgsql-1.5.0_beta4 +++ b/metadata/md5-cache/dev-php/PEAR-MDB2_Driver_pgsql-1.5.0_beta4 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-php/PEAR-MDB2-2.5.0_beta3 dev-lang/php:*[postgres] dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/MDB2_Driver_pgsql-1.5.0b4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=788db36f69d213426e61d80cb28ba6dd diff --git a/metadata/md5-cache/dev-php/PEAR-MIME_Type-1.3.1 b/metadata/md5-cache/dev-php/PEAR-MIME_Type-1.3.1 index bd809d324ab1..2abfbcc15e77 100644 --- a/metadata/md5-cache/dev-php/PEAR-MIME_Type-1.3.1 +++ b/metadata/md5-cache/dev-php/PEAR-MIME_Type-1.3.1 @@ -8,5 +8,5 @@ LICENSE=LGPL-3 RDEPEND=dev-php/PEAR-System_Command dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/MIME_Type-1.3.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=961ceeeecb13b86f5e77da6495dafbe3 diff --git a/metadata/md5-cache/dev-php/PEAR-MIME_Type-1.3.3 b/metadata/md5-cache/dev-php/PEAR-MIME_Type-1.3.3 index 77dc4f37e7f7..bcca9573c137 100644 --- a/metadata/md5-cache/dev-php/PEAR-MIME_Type-1.3.3 +++ b/metadata/md5-cache/dev-php/PEAR-MIME_Type-1.3.3 @@ -8,5 +8,5 @@ LICENSE=LGPL-3 RDEPEND=dev-php/PEAR-System_Command dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/MIME_Type-1.3.3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=d91e8e8713c864a8922c2f2e3eecc28a diff --git a/metadata/md5-cache/dev-php/PEAR-Mail-1.2.0 b/metadata/md5-cache/dev-php/PEAR-Mail-1.2.0 index 64f80e5101a6..1a4b1382f617 100644 --- a/metadata/md5-cache/dev-php/PEAR-Mail-1.2.0 +++ b/metadata/md5-cache/dev-php/PEAR-Mail-1.2.0 @@ -8,5 +8,5 @@ LICENSE=PHP-2.02 BSD RDEPEND=>=dev-php/PEAR-Net_SMTP-1.4.1 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Mail-1.2.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=edc5c5cd58d59c675cad8bd3e0577407 diff --git a/metadata/md5-cache/dev-php/PEAR-Mail_Mime-1.10.0 b/metadata/md5-cache/dev-php/PEAR-Mail_Mime-1.10.0 index 129650eecc35..5a5752cf99dc 100644 --- a/metadata/md5-cache/dev-php/PEAR-Mail_Mime-1.10.0 +++ b/metadata/md5-cache/dev-php/PEAR-Mail_Mime-1.10.0 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Mail_Mime-1.10.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=8af48fea3a06be9414ce67d23059ba78 diff --git a/metadata/md5-cache/dev-php/PEAR-Mail_Mime-1.8.8 b/metadata/md5-cache/dev-php/PEAR-Mail_Mime-1.8.8 index 2e658bfa48c3..5cf3acb3d4c2 100644 --- a/metadata/md5-cache/dev-php/PEAR-Mail_Mime-1.8.8 +++ b/metadata/md5-cache/dev-php/PEAR-Mail_Mime-1.8.8 @@ -9,5 +9,5 @@ PDEPEND=dev-php/PEAR-Mail_mimeDecode RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Mail_Mime-1.8.8.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=89ca3bbdbf7324516227560fc0605577 diff --git a/metadata/md5-cache/dev-php/PEAR-Mail_Mime-1.9.0 b/metadata/md5-cache/dev-php/PEAR-Mail_Mime-1.9.0 index 9e601e4507c9..65aac6f40141 100644 --- a/metadata/md5-cache/dev-php/PEAR-Mail_Mime-1.9.0 +++ b/metadata/md5-cache/dev-php/PEAR-Mail_Mime-1.9.0 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-lang/php-5.0:* dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Mail_Mime-1.9.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=4461d5774fb5ae9b2e8add3da2dd1e0e diff --git a/metadata/md5-cache/dev-php/PEAR-Mail_mimeDecode-1.5.5 b/metadata/md5-cache/dev-php/PEAR-Mail_mimeDecode-1.5.5 index 2ab236608428..935cb17ad378 100644 --- a/metadata/md5-cache/dev-php/PEAR-Mail_mimeDecode-1.5.5 +++ b/metadata/md5-cache/dev-php/PEAR-Mail_mimeDecode-1.5.5 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Mail_mimeDecode-1.5.5.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=8446a016a9e42929b02977421cb3a6c7 diff --git a/metadata/md5-cache/dev-php/PEAR-Math_BigInteger-1.0.2 b/metadata/md5-cache/dev-php/PEAR-Math_BigInteger-1.0.2 index 8fea2aab194d..ef3453a3b5d8 100644 --- a/metadata/md5-cache/dev-php/PEAR-Math_BigInteger-1.0.2 +++ b/metadata/md5-cache/dev-php/PEAR-Math_BigInteger-1.0.2 @@ -8,5 +8,5 @@ LICENSE=MIT RDEPEND=>=dev-lang/php-5.3.0 dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Math_BigInteger-1.0.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=17f72eca720a787bd185ff4b6052a752 diff --git a/metadata/md5-cache/dev-php/PEAR-Math_Stats-0.9.1 b/metadata/md5-cache/dev-php/PEAR-Math_Stats-0.9.1 index abb390ae7568..bd58440d57ab 100644 --- a/metadata/md5-cache/dev-php/PEAR-Math_Stats-0.9.1 +++ b/metadata/md5-cache/dev-php/PEAR-Math_Stats-0.9.1 @@ -8,5 +8,5 @@ LICENSE=PHP-2.02 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Math_Stats-0.9.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=0a0823311fb4f6a20fe762b2b6418aa3 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_CheckIP-1.2.2 b/metadata/md5-cache/dev-php/PEAR-Net_CheckIP-1.2.2 index a174a7870bea..a62415fcb6f2 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_CheckIP-1.2.2 +++ b/metadata/md5-cache/dev-php/PEAR-Net_CheckIP-1.2.2 @@ -8,5 +8,5 @@ LICENSE=MIT RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_CheckIP-1.2.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=5d8fe9b1d55e56ed9f70b448532745d5 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_DIME-1.0.2 b/metadata/md5-cache/dev-php/PEAR-Net_DIME-1.0.2 index 09bcd0c7301f..451c3c24491c 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_DIME-1.0.2 +++ b/metadata/md5-cache/dev-php/PEAR-Net_DIME-1.0.2 @@ -8,5 +8,5 @@ LICENSE=PHP-2.02 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_DIME-1.0.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=317a65c5f54bf03506b33b05712e9a1d diff --git a/metadata/md5-cache/dev-php/PEAR-Net_DNS-1.0.7 b/metadata/md5-cache/dev-php/PEAR-Net_DNS-1.0.7 index 75c2aa53b6ee..5445af324155 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_DNS-1.0.7 +++ b/metadata/md5-cache/dev-php/PEAR-Net_DNS-1.0.7 @@ -8,5 +8,5 @@ LICENSE=PHP-3.01 || ( LGPL-2.1 LGPL-3 ) RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_DNS-1.0.7.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=0b75189750adc5b9ce5cef53590b8713 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_DNS2-1.2.5 b/metadata/md5-cache/dev-php/PEAR-Net_DNS2-1.2.5 index 6256021df3fa..1ab7bd268e30 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_DNS2-1.2.5 +++ b/metadata/md5-cache/dev-php/PEAR-Net_DNS2-1.2.5 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php[sockets] dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_DNS2-1.2.5.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=adbaa148d15c411bd584ccd0fc85aec2 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_DNS2-1.3.1 b/metadata/md5-cache/dev-php/PEAR-Net_DNS2-1.3.1 index 5b7496d39242..44e72f771f84 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_DNS2-1.3.1 +++ b/metadata/md5-cache/dev-php/PEAR-Net_DNS2-1.3.1 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php[sockets] dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_DNS2-1.3.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=9e33cad37717009ac4194270105b33aa diff --git a/metadata/md5-cache/dev-php/PEAR-Net_DNSBL-1.3.7 b/metadata/md5-cache/dev-php/PEAR-Net_DNSBL-1.3.7 index 3946718e895b..a650aa9fa4c5 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_DNSBL-1.3.7 +++ b/metadata/md5-cache/dev-php/PEAR-Net_DNSBL-1.3.7 @@ -8,5 +8,5 @@ LICENSE=PHP-3.01 RDEPEND=>=dev-php/PEAR-Cache_Lite-1.5.2-r1 >=dev-php/PEAR-Net_CheckIP-1.1-r1 >=dev-php/PEAR-HTTP_Request2-2.0.0 >=dev-php/PEAR-Net_DNS-1.0.0 dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_DNSBL-1.3.7.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=ed329ee2c9560f180e565f8f10d2c226 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_FTP-1.3.7-r1 b/metadata/md5-cache/dev-php/PEAR-Net_FTP-1.3.7-r1 index 5fd40e55a8bf..c11558c5a414 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_FTP-1.3.7-r1 +++ b/metadata/md5-cache/dev-php/PEAR-Net_FTP-1.3.7-r1 @@ -8,5 +8,5 @@ LICENSE=PHP-3 RDEPEND=dev-lang/php[ftp] dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_FTP-1.3.7.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=0558235484c3e510f09ea4b2dcd4010f diff --git a/metadata/md5-cache/dev-php/PEAR-Net_FTP-1.4.0_alpha3 b/metadata/md5-cache/dev-php/PEAR-Net_FTP-1.4.0_alpha3 index 389430cbdecc..9aabb8c0aa27 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_FTP-1.4.0_alpha3 +++ b/metadata/md5-cache/dev-php/PEAR-Net_FTP-1.4.0_alpha3 @@ -8,5 +8,5 @@ LICENSE=PHP-3 RDEPEND=dev-lang/php[ftp] dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_FTP-1.4.0a3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=fef9416fb8a0b3fe1e42624b567f6cc7 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_IDNA2-0.1.1 b/metadata/md5-cache/dev-php/PEAR-Net_IDNA2-0.1.1 index d579c2330b62..86e662d450c7 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_IDNA2-0.1.1 +++ b/metadata/md5-cache/dev-php/PEAR-Net_IDNA2-0.1.1 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_IDNA2-0.1.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=03d7a2e43e6c30c09dca29b2b20d2b9c diff --git a/metadata/md5-cache/dev-php/PEAR-Net_IMAP-1.1.1 b/metadata/md5-cache/dev-php/PEAR-Net_IMAP-1.1.1 index 90296dad5bb3..703e2e648ef8 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_IMAP-1.1.1 +++ b/metadata/md5-cache/dev-php/PEAR-Net_IMAP-1.1.1 @@ -9,5 +9,5 @@ LICENSE=PHP-3.01 RDEPEND=>=dev-php/PEAR-Net_Socket-1.0.8 !sasl? ( >=dev-php/PEAR-Auth_SASL-1.0.2 ) dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_IMAP-1.1.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=4966ef63fd9715a548ce7ae4e8258dec diff --git a/metadata/md5-cache/dev-php/PEAR-Net_IMAP-1.1.3 b/metadata/md5-cache/dev-php/PEAR-Net_IMAP-1.1.3 index ffb62ca6b65b..6220009926ee 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_IMAP-1.1.3 +++ b/metadata/md5-cache/dev-php/PEAR-Net_IMAP-1.1.3 @@ -9,5 +9,5 @@ LICENSE=PHP-3.01 RDEPEND=>=dev-php/PEAR-Net_Socket-1.0.8 sasl? ( >=dev-php/PEAR-Auth_SASL-1.0.2 ) dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_IMAP-1.1.3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=3b9ccd3eeb3cffea1a922b03fd0dc04b diff --git a/metadata/md5-cache/dev-php/PEAR-Net_IPv4-1.3.4 b/metadata/md5-cache/dev-php/PEAR-Net_IPv4-1.3.4 index fbeb6ebad571..f404e8893051 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_IPv4-1.3.4 +++ b/metadata/md5-cache/dev-php/PEAR-Net_IPv4-1.3.4 @@ -8,5 +8,5 @@ LICENSE=PHP-3.01 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_IPv4-1.3.4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=9ec8ae892864f3ea94b614234352fe64 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_IPv6-1.2.1-r1 b/metadata/md5-cache/dev-php/PEAR-Net_IPv6-1.2.1-r1 index 7c4f92fc2d5b..e1864e57a967 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_IPv6-1.2.1-r1 +++ b/metadata/md5-cache/dev-php/PEAR-Net_IPv6-1.2.1-r1 @@ -8,5 +8,5 @@ LICENSE=PHP-3.01 RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_IPv6-1.2.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=55fccdbf8c098af1ae1c039238219417 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_LDAP-1.1.5 b/metadata/md5-cache/dev-php/PEAR-Net_LDAP-1.1.5 index eaba47da54bc..67e0aaded51f 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_LDAP-1.1.5 +++ b/metadata/md5-cache/dev-php/PEAR-Net_LDAP-1.1.5 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-lang/php[ldap] dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_LDAP-1.1.5.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=093f09d594a8c280b25924a6e09a968c diff --git a/metadata/md5-cache/dev-php/PEAR-Net_LDAP2-2.0.12 b/metadata/md5-cache/dev-php/PEAR-Net_LDAP2-2.0.12 index ed7b0c3d67a0..59d8f33f7df0 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_LDAP2-2.0.12 +++ b/metadata/md5-cache/dev-php/PEAR-Net_LDAP2-2.0.12 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-lang/php[ldap] dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_LDAP2-2.0.12.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=0344cbd4a3f0a4c2ebb7c7461be5842d diff --git a/metadata/md5-cache/dev-php/PEAR-Net_LDAP2-2.1.0 b/metadata/md5-cache/dev-php/PEAR-Net_LDAP2-2.1.0 index 66440effd2ae..2b49365d3596 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_LDAP2-2.1.0 +++ b/metadata/md5-cache/dev-php/PEAR-Net_LDAP2-2.1.0 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-lang/php[ldap] dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_LDAP2-2.1.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=534e9053236510016174c5aa9bbae29c diff --git a/metadata/md5-cache/dev-php/PEAR-Net_LMTP-1.0.2 b/metadata/md5-cache/dev-php/PEAR-Net_LMTP-1.0.2 index 40de7de837dc..809e664a7586 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_LMTP-1.0.2 +++ b/metadata/md5-cache/dev-php/PEAR-Net_LMTP-1.0.2 @@ -8,5 +8,5 @@ LICENSE=PHP-2.02 RDEPEND=>=dev-php/PEAR-Net_Socket-1.0.6-r1 dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_LMTP-1.0.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=e046b0e2939c449e247576aba3a185f6 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_POP3-1.3.8 b/metadata/md5-cache/dev-php/PEAR-Net_POP3-1.3.8 index 962ca69301c5..e8ed15272669 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_POP3-1.3.8 +++ b/metadata/md5-cache/dev-php/PEAR-Net_POP3-1.3.8 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=dev-php/PEAR-Net_Socket-1.0.6-r1 !sasl? ( >=dev-php/PEAR-Auth_SASL-1.0.2 ) dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_POP3-1.3.8.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=6515102d70eba9049834fcd9720b0cd7 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_Ping-2.4.5-r1 b/metadata/md5-cache/dev-php/PEAR-Net_Ping-2.4.5-r1 index 4efbaa4b7f60..ae49599aa09b 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_Ping-2.4.5-r1 +++ b/metadata/md5-cache/dev-php/PEAR-Net_Ping-2.4.5-r1 @@ -8,5 +8,5 @@ LICENSE=PHP-2.02 RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_Ping-2.4.5.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=b47f04979014af18706feacc3ff87542 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_SMTP-1.6.2 b/metadata/md5-cache/dev-php/PEAR-Net_SMTP-1.6.2 index dfdcd6de5bf2..f8453c55bde4 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_SMTP-1.6.2 +++ b/metadata/md5-cache/dev-php/PEAR-Net_SMTP-1.6.2 @@ -9,5 +9,5 @@ LICENSE=PHP-2.02 RDEPEND=>=dev-php/PEAR-Net_Socket-1.0.7 sasl? ( >=dev-php/PEAR-Auth_SASL-1.0.1-r1 ) dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_SMTP-1.6.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=b27651bab77e5731e3825bc4fa910d19 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_SMTP-1.7.1 b/metadata/md5-cache/dev-php/PEAR-Net_SMTP-1.7.1 index e9f870018a53..c6236fb77d2e 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_SMTP-1.7.1 +++ b/metadata/md5-cache/dev-php/PEAR-Net_SMTP-1.7.1 @@ -9,5 +9,5 @@ LICENSE=PHP-3.01 RDEPEND=dev-php/PEAR-Net_Socket sasl? ( dev-php/PEAR-Auth_SASL ) dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_SMTP-1.7.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=c280a651dc5ceb7a05f64932554b3424 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_Server-1.0.2-r1 b/metadata/md5-cache/dev-php/PEAR-Net_Server-1.0.2-r1 index 1716f920877b..d7582b403e8f 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_Server-1.0.2-r1 +++ b/metadata/md5-cache/dev-php/PEAR-Net_Server-1.0.2-r1 @@ -8,5 +8,5 @@ LICENSE=PHP-3.01 RDEPEND=dev-lang/php[sockets] dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_Server-1.0.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=c780bac2d501472953e6aa606e2a2bb2 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_Server-1.0.3 b/metadata/md5-cache/dev-php/PEAR-Net_Server-1.0.3 index 36a703f82db3..f9f2f0152950 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_Server-1.0.3 +++ b/metadata/md5-cache/dev-php/PEAR-Net_Server-1.0.3 @@ -8,5 +8,5 @@ LICENSE=PHP-3.01 RDEPEND=dev-lang/php[sockets] dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_Server-1.0.3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=c780bac2d501472953e6aa606e2a2bb2 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_Sieve-1.3.2 b/metadata/md5-cache/dev-php/PEAR-Net_Sieve-1.3.2 index 5a96b3d8ca5e..41507fc61c4b 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_Sieve-1.3.2 +++ b/metadata/md5-cache/dev-php/PEAR-Net_Sieve-1.3.2 @@ -8,5 +8,5 @@ LICENSE=BSD BSD-2 RDEPEND=>=dev-php/PEAR-Net_Socket-1.0.6-r1 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_Sieve-1.3.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=adaa5db08e33bc0690074c3f8fc32d61 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_Sieve-1.3.3 b/metadata/md5-cache/dev-php/PEAR-Net_Sieve-1.3.3 index b14ede84266c..1df0b93ab0d8 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_Sieve-1.3.3 +++ b/metadata/md5-cache/dev-php/PEAR-Net_Sieve-1.3.3 @@ -9,5 +9,5 @@ LICENSE=BSD BSD-2 RDEPEND=>=dev-php/PEAR-Net_Socket-1.0.6-r1 sasl? ( >=dev-php/PEAR-Auth_SASL-1.0 ) dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_Sieve-1.3.3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=7501c56f13693afc87d6ce7ed31970f2 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_SmartIRC-1.1.4 b/metadata/md5-cache/dev-php/PEAR-Net_SmartIRC-1.1.4 index 1417f7c6f7b0..13afe335214e 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_SmartIRC-1.1.4 +++ b/metadata/md5-cache/dev-php/PEAR-Net_SmartIRC-1.1.4 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-lang/php-5.3 dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_SmartIRC-1.1.4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=6114b0a688e69a7e5dab83b39e15cf31 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_Socket-1.0.14 b/metadata/md5-cache/dev-php/PEAR-Net_Socket-1.0.14 index f2695f6d8707..620e6423065b 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_Socket-1.0.14 +++ b/metadata/md5-cache/dev-php/PEAR-Net_Socket-1.0.14 @@ -8,5 +8,5 @@ LICENSE=PHP-2.02 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_Socket-1.0.14.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=37495c5227b25fd7fb3c6fa8b785b09e diff --git a/metadata/md5-cache/dev-php/PEAR-Net_Traceroute-0.21.3 b/metadata/md5-cache/dev-php/PEAR-Net_Traceroute-0.21.3 index 66cca4e7cc29..ed5e23921e2e 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_Traceroute-0.21.3 +++ b/metadata/md5-cache/dev-php/PEAR-Net_Traceroute-0.21.3 @@ -8,5 +8,5 @@ LICENSE=PHP-3.01 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_Traceroute-0.21.3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=c6f725cdff917faafe13961afe6e85d5 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_URL-1.0.15 b/metadata/md5-cache/dev-php/PEAR-Net_URL-1.0.15 index b605b5726b0b..7c4758c6a67e 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_URL-1.0.15 +++ b/metadata/md5-cache/dev-php/PEAR-Net_URL-1.0.15 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_URL-1.0.15.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=0052e48ac33ae1c5e09e1111cebc29ef diff --git a/metadata/md5-cache/dev-php/PEAR-Net_URL2-2.0.0 b/metadata/md5-cache/dev-php/PEAR-Net_URL2-2.0.0 index 643311bab8f2..46a4f4d50d14 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_URL2-2.0.0 +++ b/metadata/md5-cache/dev-php/PEAR-Net_URL2-2.0.0 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_URL2-2.0.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=020c096b6e21141b77b269ad74e27c72 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_URL2-2.0.5 b/metadata/md5-cache/dev-php/PEAR-Net_URL2-2.0.5 index a8788f40c4f0..10f7bb7e0e1b 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_URL2-2.0.5 +++ b/metadata/md5-cache/dev-php/PEAR-Net_URL2-2.0.5 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_URL2-2.0.5.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=6d78877305215ded7acb80ab254372cc diff --git a/metadata/md5-cache/dev-php/PEAR-Net_UserAgent_Detect-2.5.2 b/metadata/md5-cache/dev-php/PEAR-Net_UserAgent_Detect-2.5.2 index 0c504b0dd1bf..4da2f1b92786 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_UserAgent_Detect-2.5.2 +++ b/metadata/md5-cache/dev-php/PEAR-Net_UserAgent_Detect-2.5.2 @@ -8,5 +8,5 @@ LICENSE=PHP-2.02 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_UserAgent_Detect-2.5.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=dd7815c759e0f76070948f61d2087f09 diff --git a/metadata/md5-cache/dev-php/PEAR-Numbers_Roman-1.0.2 b/metadata/md5-cache/dev-php/PEAR-Numbers_Roman-1.0.2 index 832e8a888dea..beaddc4d9418 100644 --- a/metadata/md5-cache/dev-php/PEAR-Numbers_Roman-1.0.2 +++ b/metadata/md5-cache/dev-php/PEAR-Numbers_Roman-1.0.2 @@ -8,5 +8,5 @@ LICENSE=PHP-2.02 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Numbers_Roman-1.0.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=8e2a300403d8a31afa6b55091ddeccff diff --git a/metadata/md5-cache/dev-php/PEAR-Numbers_Words-0.16.4 b/metadata/md5-cache/dev-php/PEAR-Numbers_Words-0.16.4 index 011d41ef2cd0..159ecc183e69 100644 --- a/metadata/md5-cache/dev-php/PEAR-Numbers_Words-0.16.4 +++ b/metadata/md5-cache/dev-php/PEAR-Numbers_Words-0.16.4 @@ -8,5 +8,5 @@ LICENSE=PHP-3.01 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Numbers_Words-0.16.4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=66e0e4853527fd2b7f9991978e53e15b diff --git a/metadata/md5-cache/dev-php/PEAR-Numbers_Words-0.18.1 b/metadata/md5-cache/dev-php/PEAR-Numbers_Words-0.18.1 index 457bb237de24..8885605f2299 100644 --- a/metadata/md5-cache/dev-php/PEAR-Numbers_Words-0.18.1 +++ b/metadata/md5-cache/dev-php/PEAR-Numbers_Words-0.18.1 @@ -8,5 +8,5 @@ LICENSE=PHP-3.01 RDEPEND=>=dev-lang/php-5.3.2 dev-php/PEAR-Math_BigInteger dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Numbers_Words-0.18.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=0537fd5abdf2a7efa62d882d18b37d58 diff --git a/metadata/md5-cache/dev-php/PEAR-OLE-0.6.1 b/metadata/md5-cache/dev-php/PEAR-OLE-0.6.1 index 41474bf9958b..a0c059815b2d 100644 --- a/metadata/md5-cache/dev-php/PEAR-OLE-0.6.1 +++ b/metadata/md5-cache/dev-php/PEAR-OLE-0.6.1 @@ -8,5 +8,5 @@ LICENSE=PHP-2.02 PHP-3 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/OLE-0.6.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=cd3752f1e63b9fe874b4ad84f6320daa diff --git a/metadata/md5-cache/dev-php/PEAR-OLE-1.0.0_rc2 b/metadata/md5-cache/dev-php/PEAR-OLE-1.0.0_rc2 index a8ab234ad6b7..fcc917b33601 100644 --- a/metadata/md5-cache/dev-php/PEAR-OLE-1.0.0_rc2 +++ b/metadata/md5-cache/dev-php/PEAR-OLE-1.0.0_rc2 @@ -8,5 +8,5 @@ LICENSE=PHP-2.02 PHP-3 RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/OLE-1.0.0RC2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=ea3bd9a5aa9ce9ef5a249de4601d598c diff --git a/metadata/md5-cache/dev-php/PEAR-PEAR_Info-1.7.0 b/metadata/md5-cache/dev-php/PEAR-PEAR_Info-1.7.0 index 66cec6492e3b..1560a4674c20 100644 --- a/metadata/md5-cache/dev-php/PEAR-PEAR_Info-1.7.0 +++ b/metadata/md5-cache/dev-php/PEAR-PEAR_Info-1.7.0 @@ -8,5 +8,5 @@ LICENSE=PHP-3 BSD RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/PEAR_Info-1.7.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=9eb315a4593b6102c133fa6748cab792 diff --git a/metadata/md5-cache/dev-php/PEAR-PEAR_Info-1.9.2-r3 b/metadata/md5-cache/dev-php/PEAR-PEAR_Info-1.9.2-r3 index 8aee4e5591c4..9ae5afb33f47 100644 --- a/metadata/md5-cache/dev-php/PEAR-PEAR_Info-1.9.2-r3 +++ b/metadata/md5-cache/dev-php/PEAR-PEAR_Info-1.9.2-r3 @@ -9,5 +9,5 @@ LICENSE=PHP-3.01 RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/PEAR_Info-1.9.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=b0bad44f55663db2d509ba38b4a480c6 diff --git a/metadata/md5-cache/dev-php/PEAR-PEAR_PackageFileManager-1.6.3 b/metadata/md5-cache/dev-php/PEAR-PEAR_PackageFileManager-1.6.3 index c487a70f7ff4..7f6330d9ad3f 100644 --- a/metadata/md5-cache/dev-php/PEAR-PEAR_PackageFileManager-1.6.3 +++ b/metadata/md5-cache/dev-php/PEAR-PEAR_PackageFileManager-1.6.3 @@ -9,5 +9,5 @@ LICENSE=PHP-3.01 RDEPEND=dev-lang/php[xml,simplexml] !minimal? ( >=dev-php/PEAR-PHP_CompatInfo-1.4.0 ) dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/PEAR_PackageFileManager-1.6.3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=d2825da4cab546c71eb73062152f3b25 diff --git a/metadata/md5-cache/dev-php/PEAR-PEAR_PackageFileManager-1.7.0 b/metadata/md5-cache/dev-php/PEAR-PEAR_PackageFileManager-1.7.0 index 5cf59a1f9356..8cac753fe5d7 100644 --- a/metadata/md5-cache/dev-php/PEAR-PEAR_PackageFileManager-1.7.0 +++ b/metadata/md5-cache/dev-php/PEAR-PEAR_PackageFileManager-1.7.0 @@ -9,5 +9,5 @@ LICENSE=PHP-3.01 RDEPEND=dev-lang/php[xml,simplexml] !minimal? ( >=dev-php/PEAR-PHP_CompatInfo-1.4.0 ) dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/PEAR_PackageFileManager-1.7.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=398a8b5497fad30e7a3a03ee4ed854fc diff --git a/metadata/md5-cache/dev-php/PEAR-PHP_Beautifier-0.1.15-r1 b/metadata/md5-cache/dev-php/PEAR-PHP_Beautifier-0.1.15-r1 index bb74897fba94..b64a8b6a2c79 100644 --- a/metadata/md5-cache/dev-php/PEAR-PHP_Beautifier-0.1.15-r1 +++ b/metadata/md5-cache/dev-php/PEAR-PHP_Beautifier-0.1.15-r1 @@ -8,5 +8,5 @@ LICENSE=PHP-3 RDEPEND=dev-lang/php[tokenizer] >=dev-php/PEAR-Log-1.8 dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/PHP_Beautifier-0.1.15.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=8f180cee6ffc6010469d3b5e56b8d2c7 diff --git a/metadata/md5-cache/dev-php/PEAR-PHP_CodeSniffer-1.3.5 b/metadata/md5-cache/dev-php/PEAR-PHP_CodeSniffer-1.3.5 index 4cc922ba40cc..652c590589f0 100644 --- a/metadata/md5-cache/dev-php/PEAR-PHP_CodeSniffer-1.3.5 +++ b/metadata/md5-cache/dev-php/PEAR-PHP_CodeSniffer-1.3.5 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/PHP_CodeSniffer-1.3.5.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=4eb7a46b7e9d50102e0f3000030d4692 diff --git a/metadata/md5-cache/dev-php/PEAR-PHP_CodeSniffer-1.4.7 b/metadata/md5-cache/dev-php/PEAR-PHP_CodeSniffer-1.4.7 index a6b83c961037..863f036a73ea 100644 --- a/metadata/md5-cache/dev-php/PEAR-PHP_CodeSniffer-1.4.7 +++ b/metadata/md5-cache/dev-php/PEAR-PHP_CodeSniffer-1.4.7 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/PHP_CodeSniffer-1.4.7.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=4eb7a46b7e9d50102e0f3000030d4692 diff --git a/metadata/md5-cache/dev-php/PEAR-PHP_CodeSniffer-1.5.0_rc4 b/metadata/md5-cache/dev-php/PEAR-PHP_CodeSniffer-1.5.0_rc4 index 9e6ae785ef4a..c4c765dbd2b2 100644 --- a/metadata/md5-cache/dev-php/PEAR-PHP_CodeSniffer-1.5.0_rc4 +++ b/metadata/md5-cache/dev-php/PEAR-PHP_CodeSniffer-1.5.0_rc4 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/PHP_CodeSniffer-1.5.0RC4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=d99f9b00edc3c103d365dde7540d7be8 diff --git a/metadata/md5-cache/dev-php/PEAR-PHP_CodeSniffer-2.3.0 b/metadata/md5-cache/dev-php/PEAR-PHP_CodeSniffer-2.3.0 index 1850b64f820c..d6cbd4268358 100644 --- a/metadata/md5-cache/dev-php/PEAR-PHP_CodeSniffer-2.3.0 +++ b/metadata/md5-cache/dev-php/PEAR-PHP_CodeSniffer-2.3.0 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-lang/php-5.1.2:*[cli] dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/PHP_CodeSniffer-2.3.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=9d9f7877e88f115d1eb99b7d8c97ad43 diff --git a/metadata/md5-cache/dev-php/PEAR-PHP_CompatInfo-1.9.0 b/metadata/md5-cache/dev-php/PEAR-PHP_CompatInfo-1.9.0 index 3ac1d434a9a5..4f5e2fe346d5 100644 --- a/metadata/md5-cache/dev-php/PEAR-PHP_CompatInfo-1.9.0 +++ b/metadata/md5-cache/dev-php/PEAR-PHP_CompatInfo-1.9.0 @@ -9,5 +9,5 @@ LICENSE=PHP-3.01 RDEPEND=dev-lang/php[tokenizer] !minimal? ( >=dev-php/PEAR-Console_Table-1.0.5 >=dev-php/PEAR-Console_Getargs-1.3.3 >=dev-php/PEAR-XML_Util-1.1.4 >=dev-php/phpunit-3.2.0 ) dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/PHP_CompatInfo-1.9.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=bb09a4510a2494c9876fd1ba9c9bafab diff --git a/metadata/md5-cache/dev-php/PEAR-PHP_Debug-1.0.3-r1 b/metadata/md5-cache/dev-php/PEAR-PHP_Debug-1.0.3-r1 index cc231927b2ee..e6f10a0ccbfc 100644 --- a/metadata/md5-cache/dev-php/PEAR-PHP_Debug-1.0.3-r1 +++ b/metadata/md5-cache/dev-php/PEAR-PHP_Debug-1.0.3-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=!minimal? ( dev-php/PEAR-Text_Highlighter dev-php/PEAR-Services_W3C_HTMLValidator ) dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/PHP_Debug-1.0.3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=7df26ca5e6797a23edafe62befb86bd2 diff --git a/metadata/md5-cache/dev-php/PEAR-PHP_Shell-0.3.2 b/metadata/md5-cache/dev-php/PEAR-PHP_Shell-0.3.2 index e6327b4abbb5..6f0e211f41f7 100644 --- a/metadata/md5-cache/dev-php/PEAR-PHP_Shell-0.3.2 +++ b/metadata/md5-cache/dev-php/PEAR-PHP_Shell-0.3.2 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=dev-lang/php-5.3[tokenizer] auto-completion? ( dev-lang/php[readline] ) dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/PHP_Shell-0.3.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=04ea5666264046e3b0278416e3808cdb diff --git a/metadata/md5-cache/dev-php/PEAR-Pager-2.4.8 b/metadata/md5-cache/dev-php/PEAR-Pager-2.4.8 index 45bfde8bdcdd..521decaeccac 100644 --- a/metadata/md5-cache/dev-php/PEAR-Pager-2.4.8 +++ b/metadata/md5-cache/dev-php/PEAR-Pager-2.4.8 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Pager-2.4.8.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=5bb588db7da2d0f3913a3ac592f7e536 diff --git a/metadata/md5-cache/dev-php/PEAR-Pager-2.4.9 b/metadata/md5-cache/dev-php/PEAR-Pager-2.4.9 index ce6e4256b21e..997fd6e04705 100644 --- a/metadata/md5-cache/dev-php/PEAR-Pager-2.4.9 +++ b/metadata/md5-cache/dev-php/PEAR-Pager-2.4.9 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Pager-2.4.9.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=600e2734d10825fd226bef2f665c75f5 diff --git a/metadata/md5-cache/dev-php/PEAR-PhpDocumentor-1.4.3-r1 b/metadata/md5-cache/dev-php/PEAR-PhpDocumentor-1.4.3-r1 index 5a099f5b7653..2cde1cf88b16 100644 --- a/metadata/md5-cache/dev-php/PEAR-PhpDocumentor-1.4.3-r1 +++ b/metadata/md5-cache/dev-php/PEAR-PhpDocumentor-1.4.3-r1 @@ -9,5 +9,5 @@ LICENSE=PHP-2.02 PHP-3 LGPL-2.1 public-domain Apache-2.0 BSD RDEPEND=!minimal? ( >=dev-php/PEAR-XML_Beautifier-1.1-r1 ) >=dev-php/smarty-2.6.0 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/PhpDocumentor-1.4.3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=42b346ef61cec0239170c150cc4ee445 diff --git a/metadata/md5-cache/dev-php/PEAR-SOAP-0.13.0 b/metadata/md5-cache/dev-php/PEAR-SOAP-0.13.0 index 49afd6a46b2c..3310ed2807ba 100644 --- a/metadata/md5-cache/dev-php/PEAR-SOAP-0.13.0 +++ b/metadata/md5-cache/dev-php/PEAR-SOAP-0.13.0 @@ -9,5 +9,5 @@ LICENSE=PHP-2.02 RDEPEND=>=dev-php/PEAR-HTTP_Request-1.2.4-r1 !minimal? ( dev-php/PEAR-Mail >=dev-php/PEAR-Mail_Mime-1.3.1-r1 >=dev-php/PEAR-Net_DIME-0.3-r1 ) dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/SOAP-0.13.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=3482fd344ee423e5b76cf2fdb302778f diff --git a/metadata/md5-cache/dev-php/PEAR-Services_Amazon-0.8.0 b/metadata/md5-cache/dev-php/PEAR-Services_Amazon-0.8.0 index d79e8169195a..99d399f57b64 100644 --- a/metadata/md5-cache/dev-php/PEAR-Services_Amazon-0.8.0 +++ b/metadata/md5-cache/dev-php/PEAR-Services_Amazon-0.8.0 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=>=dev-php/PEAR-HTTP_Request-1.2.4-r1 >=dev-php/PEAR-XML_Serializer-0.17.0 !minimal? ( dev-php/PEAR-Cache ) dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Services_Amazon-0.8.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=356b1836d3a7ca3eb8601cdf47a2a7e8 diff --git a/metadata/md5-cache/dev-php/PEAR-Services_JSON-1.0.3 b/metadata/md5-cache/dev-php/PEAR-Services_JSON-1.0.3 index 2d34961ee4bb..4ca2a06001d8 100644 --- a/metadata/md5-cache/dev-php/PEAR-Services_JSON-1.0.3 +++ b/metadata/md5-cache/dev-php/PEAR-Services_JSON-1.0.3 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Services_JSON-1.0.3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=85e17506bfd307720f96bc57d6e40bd0 diff --git a/metadata/md5-cache/dev-php/PEAR-Services_TinyURL-0.1.2 b/metadata/md5-cache/dev-php/PEAR-Services_TinyURL-0.1.2 index 127a46837a08..02ba7fccbf1b 100644 --- a/metadata/md5-cache/dev-php/PEAR-Services_TinyURL-0.1.2 +++ b/metadata/md5-cache/dev-php/PEAR-Services_TinyURL-0.1.2 @@ -8,5 +8,5 @@ LICENSE=BSD-2 RDEPEND=dev-lang/php[curl] dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Services_TinyURL-0.1.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=5dc9f8241fadb0d163aaf58da0663c7e diff --git a/metadata/md5-cache/dev-php/PEAR-Services_W3C_CSSValidator-0.2.2-r1 b/metadata/md5-cache/dev-php/PEAR-Services_W3C_CSSValidator-0.2.2-r1 index 2b3733022842..907be41ba751 100644 --- a/metadata/md5-cache/dev-php/PEAR-Services_W3C_CSSValidator-0.2.2-r1 +++ b/metadata/md5-cache/dev-php/PEAR-Services_W3C_CSSValidator-0.2.2-r1 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-php/PEAR-HTTP_Request2-0.2.0 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Services_W3C_CSSValidator-0.2.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=1fb0bcde48903f244d0cdc45e2c8c1b8 diff --git a/metadata/md5-cache/dev-php/PEAR-Services_W3C_HTMLValidator-1.0.0-r1 b/metadata/md5-cache/dev-php/PEAR-Services_W3C_HTMLValidator-1.0.0-r1 index ce13cb87913f..38534b83265e 100644 --- a/metadata/md5-cache/dev-php/PEAR-Services_W3C_HTMLValidator-1.0.0-r1 +++ b/metadata/md5-cache/dev-php/PEAR-Services_W3C_HTMLValidator-1.0.0-r1 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-php/PEAR-HTTP_Request2-0.2.0 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Services_W3C_HTMLValidator-1.0.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=8a512c2b2a4b081efbcbeebd8c888c26 diff --git a/metadata/md5-cache/dev-php/PEAR-Services_Weather-1.4.6 b/metadata/md5-cache/dev-php/PEAR-Services_Weather-1.4.6 index ee87585793ad..ef1c34d411bb 100644 --- a/metadata/md5-cache/dev-php/PEAR-Services_Weather-1.4.6 +++ b/metadata/md5-cache/dev-php/PEAR-Services_Weather-1.4.6 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-lang/php[ctype] >=dev-php/PEAR-HTTP_Request-1.2.4-r1 !minimal? ( >=dev-php/PEAR-Cache-1.5.4-r1 >=dev-php/PEAR-DB-1.7.6-r1 >=dev-php/PEAR-SOAP-0.8.1-r1 >=dev-php/PEAR-XML_Serializer-0.15.0-r1 >=dev-php/PEAR-Net_FTP-1.3.1 ) dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Services_Weather-1.4.6.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=e91bea27e48a34a22fa66ee53b926468 diff --git a/metadata/md5-cache/dev-php/PEAR-Spreadsheet_Excel_Writer-0.9.3 b/metadata/md5-cache/dev-php/PEAR-Spreadsheet_Excel_Writer-0.9.3 index 5e79584347fb..8652dd7159e5 100644 --- a/metadata/md5-cache/dev-php/PEAR-Spreadsheet_Excel_Writer-0.9.3 +++ b/metadata/md5-cache/dev-php/PEAR-Spreadsheet_Excel_Writer-0.9.3 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-lang/php[iconv] >=dev-php/PEAR-OLE-0.5-r1 dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Spreadsheet_Excel_Writer-0.9.3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=6027b7ed47866f5576b7d4473810c45c diff --git a/metadata/md5-cache/dev-php/PEAR-Structures_DataGrid-0.9.3 b/metadata/md5-cache/dev-php/PEAR-Structures_DataGrid-0.9.3 index 6cae3459f277..f447ee8726a1 100644 --- a/metadata/md5-cache/dev-php/PEAR-Structures_DataGrid-0.9.3 +++ b/metadata/md5-cache/dev-php/PEAR-Structures_DataGrid-0.9.3 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Structures_DataGrid-0.9.3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=b52d5dd312709305209371b9fd1432b2 diff --git a/metadata/md5-cache/dev-php/PEAR-System_Command-1.0.8 b/metadata/md5-cache/dev-php/PEAR-System_Command-1.0.8 index fdb8dcf6e67d..fed8cc325c78 100644 --- a/metadata/md5-cache/dev-php/PEAR-System_Command-1.0.8 +++ b/metadata/md5-cache/dev-php/PEAR-System_Command-1.0.8 @@ -8,5 +8,5 @@ LICENSE=PHP-2.02 RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/System_Command-1.0.8.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=fcdc2010c7458703747d05343c90ff41 diff --git a/metadata/md5-cache/dev-php/PEAR-Testing_Selenium-0.4.4-r1 b/metadata/md5-cache/dev-php/PEAR-Testing_Selenium-0.4.4-r1 index 61231e3d5b38..fd9bbce82d01 100644 --- a/metadata/md5-cache/dev-php/PEAR-Testing_Selenium-0.4.4-r1 +++ b/metadata/md5-cache/dev-php/PEAR-Testing_Selenium-0.4.4-r1 @@ -8,5 +8,5 @@ LICENSE=PHP-3 RDEPEND=>=dev-lang/php-5.1.0 dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Testing_Selenium-0.4.4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=351fcd8de8415cab9decdab24f262cf3 diff --git a/metadata/md5-cache/dev-php/PEAR-Text_CAPTCHA-0.5.0 b/metadata/md5-cache/dev-php/PEAR-Text_CAPTCHA-0.5.0 index 8c62a75d7af0..e26eec67f5ef 100644 --- a/metadata/md5-cache/dev-php/PEAR-Text_CAPTCHA-0.5.0 +++ b/metadata/md5-cache/dev-php/PEAR-Text_CAPTCHA-0.5.0 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=dev-php/PEAR-Text_Password-1.1.1 dev-lang/php[gd,truetype] !minimal? ( dev-php/PEAR-Numbers_Words dev-php/PEAR-Text_Figlet >=dev-php/PEAR-Image_Text-0.7.0 ) dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Text_CAPTCHA-0.5.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=b0897737c5245e55b97b9081ee03bda6 diff --git a/metadata/md5-cache/dev-php/PEAR-Text_CAPTCHA_Numeral-1.3.2 b/metadata/md5-cache/dev-php/PEAR-Text_CAPTCHA_Numeral-1.3.2 index 849716f045ed..b5718b5dc7d9 100644 --- a/metadata/md5-cache/dev-php/PEAR-Text_CAPTCHA_Numeral-1.3.2 +++ b/metadata/md5-cache/dev-php/PEAR-Text_CAPTCHA_Numeral-1.3.2 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Text_CAPTCHA_Numeral-1.3.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=54bb525ebfbec4b9dff13ad0559e06d4 diff --git a/metadata/md5-cache/dev-php/PEAR-Text_Figlet-1.0.2 b/metadata/md5-cache/dev-php/PEAR-Text_Figlet-1.0.2 index af31294767a2..eab11a232b36 100644 --- a/metadata/md5-cache/dev-php/PEAR-Text_Figlet-1.0.2 +++ b/metadata/md5-cache/dev-php/PEAR-Text_Figlet-1.0.2 @@ -8,5 +8,5 @@ LICENSE=PHP-2.02 GPL-2+ OFL-1.1 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Text_Figlet-1.0.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=d6ef78a21ff518742d58847cd2617102 diff --git a/metadata/md5-cache/dev-php/PEAR-Text_Highlighter-0.7.3 b/metadata/md5-cache/dev-php/PEAR-Text_Highlighter-0.7.3 index e5cc8141cbcc..de3ccf2fa1c6 100644 --- a/metadata/md5-cache/dev-php/PEAR-Text_Highlighter-0.7.3 +++ b/metadata/md5-cache/dev-php/PEAR-Text_Highlighter-0.7.3 @@ -8,5 +8,5 @@ LICENSE=PHP-3 RDEPEND=dev-php/PEAR-XML_Parser dev-php/PEAR-Console_Getopt dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Text_Highlighter-0.7.3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=f7502c1f35343e658f1c65b943ebba5d diff --git a/metadata/md5-cache/dev-php/PEAR-Text_Password-1.1.1 b/metadata/md5-cache/dev-php/PEAR-Text_Password-1.1.1 index 2f4687f8a2d7..ca4dda6c4aa5 100644 --- a/metadata/md5-cache/dev-php/PEAR-Text_Password-1.1.1 +++ b/metadata/md5-cache/dev-php/PEAR-Text_Password-1.1.1 @@ -8,5 +8,5 @@ LICENSE=PHP-3 RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Text_Password-1.1.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=7d3bb35504208b64124ef5d98e051201 diff --git a/metadata/md5-cache/dev-php/PEAR-Text_Wiki-1.2.2 b/metadata/md5-cache/dev-php/PEAR-Text_Wiki-1.2.2 index d76dfb2b04d1..bfed7400c583 100644 --- a/metadata/md5-cache/dev-php/PEAR-Text_Wiki-1.2.2 +++ b/metadata/md5-cache/dev-php/PEAR-Text_Wiki-1.2.2 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1 PHP-2.02 RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=https://github.com/pear/Text_Wiki/archive/1.2.2.tar.gz -> PEAR-Text_Wiki-1.2.2.tar.gz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=ca4a1b93ab22f88165ac54155c876f85 diff --git a/metadata/md5-cache/dev-php/PEAR-Text_Wiki_BBCode-0.0.4-r2 b/metadata/md5-cache/dev-php/PEAR-Text_Wiki_BBCode-0.0.4-r2 index 05f8256f0deb..26d6ab1d2c18 100644 --- a/metadata/md5-cache/dev-php/PEAR-Text_Wiki_BBCode-0.0.4-r2 +++ b/metadata/md5-cache/dev-php/PEAR-Text_Wiki_BBCode-0.0.4-r2 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1 PHP-3 RDEPEND=>=dev-php/PEAR-Text_Wiki-1.0.3 dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Text_Wiki_BBCode-0.0.4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=39ec96434ef6a0228b9ad175609abf8d diff --git a/metadata/md5-cache/dev-php/PEAR-Text_Wiki_Mediawiki-0.2.0-r1 b/metadata/md5-cache/dev-php/PEAR-Text_Wiki_Mediawiki-0.2.0-r1 index 3374ff1a0cf7..718c41aad831 100644 --- a/metadata/md5-cache/dev-php/PEAR-Text_Wiki_Mediawiki-0.2.0-r1 +++ b/metadata/md5-cache/dev-php/PEAR-Text_Wiki_Mediawiki-0.2.0-r1 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-php/PEAR-Text_Wiki-1.1.0 dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Text_Wiki_Mediawiki-0.2.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=ad2aa8fe6dce5a7f9b4f0b8233503ebe diff --git a/metadata/md5-cache/dev-php/PEAR-Translation2-2.0.4 b/metadata/md5-cache/dev-php/PEAR-Translation2-2.0.4 index c996a83288fa..a4ad5a77c345 100644 --- a/metadata/md5-cache/dev-php/PEAR-Translation2-2.0.4 +++ b/metadata/md5-cache/dev-php/PEAR-Translation2-2.0.4 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-lang/php[nls] !minimal? ( dev-php/PEAR-Cache_Lite dev-php/PEAR-DB dev-php/PEAR-DB_DataObject dev-php/PEAR-MDB dev-php/PEAR-MDB2 dev-php/PEAR-File_Gettext >=dev-php/PEAR-I18Nv2-0.9.1 ) xml? ( >=dev-php/PEAR-XML_Serializer-0.13.0 ) dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Translation2-2.0.4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=40a8267b7b27af3b6f75c3a52d39c3b9 diff --git a/metadata/md5-cache/dev-php/PEAR-Validate-0.8.5 b/metadata/md5-cache/dev-php/PEAR-Validate-0.8.5 index 59018487ccd6..f4ee9c82c2cd 100644 --- a/metadata/md5-cache/dev-php/PEAR-Validate-0.8.5 +++ b/metadata/md5-cache/dev-php/PEAR-Validate-0.8.5 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Validate-0.8.5.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=1a70373d1073e40cc3c1be0c364dc910 diff --git a/metadata/md5-cache/dev-php/PEAR-Var_Dump-1.0.4-r1 b/metadata/md5-cache/dev-php/PEAR-Var_Dump-1.0.4-r1 index 0b8de77acea5..6b4981d4e817 100644 --- a/metadata/md5-cache/dev-php/PEAR-Var_Dump-1.0.4-r1 +++ b/metadata/md5-cache/dev-php/PEAR-Var_Dump-1.0.4-r1 @@ -8,5 +8,5 @@ LICENSE=PHP-3.01 RDEPEND=>=dev-lang/php-5.3 dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Var_Dump-1.0.4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=9b2cb109c6dd2c4800ef3a77b9b8f136 diff --git a/metadata/md5-cache/dev-php/PEAR-VersionControl_SVN-0.5.1 b/metadata/md5-cache/dev-php/PEAR-VersionControl_SVN-0.5.1 index 8d331e554f45..b7e1d33ce3e9 100644 --- a/metadata/md5-cache/dev-php/PEAR-VersionControl_SVN-0.5.1 +++ b/metadata/md5-cache/dev-php/PEAR-VersionControl_SVN-0.5.1 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/VersionControl_SVN-0.5.1.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=8f40d7a180162888aff4e6687b1868b8 diff --git a/metadata/md5-cache/dev-php/PEAR-VersionControl_SVN-0.5.2 b/metadata/md5-cache/dev-php/PEAR-VersionControl_SVN-0.5.2 index fe3612d9ea9f..256402724d23 100644 --- a/metadata/md5-cache/dev-php/PEAR-VersionControl_SVN-0.5.2 +++ b/metadata/md5-cache/dev-php/PEAR-VersionControl_SVN-0.5.2 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/VersionControl_SVN-0.5.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=aa75d424d7b4861b8ba19540a978d50d diff --git a/metadata/md5-cache/dev-php/PEAR-XML_Beautifier-1.2.2-r1 b/metadata/md5-cache/dev-php/PEAR-XML_Beautifier-1.2.2-r1 index eeb04a0e32d5..cb3120cac6b0 100644 --- a/metadata/md5-cache/dev-php/PEAR-XML_Beautifier-1.2.2-r1 +++ b/metadata/md5-cache/dev-php/PEAR-XML_Beautifier-1.2.2-r1 @@ -8,5 +8,5 @@ LICENSE=PHP-2.02 RDEPEND=dev-php/PEAR-XML_Util dev-php/PEAR-XML_Parser dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/XML_Beautifier-1.2.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=5c348e124fdf00e25e70fddf2193b27e diff --git a/metadata/md5-cache/dev-php/PEAR-XML_Feed_Parser-1.0.5-r1 b/metadata/md5-cache/dev-php/PEAR-XML_Feed_Parser-1.0.5-r1 index a893a48994a3..8de2139fec44 100644 --- a/metadata/md5-cache/dev-php/PEAR-XML_Feed_Parser-1.0.5-r1 +++ b/metadata/md5-cache/dev-php/PEAR-XML_Feed_Parser-1.0.5-r1 @@ -8,5 +8,5 @@ LICENSE=LGPL-3 RDEPEND=dev-php/PEAR-Log dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/XML_Feed_Parser-1.0.5.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=05556d5f7aed8c7031e9a9ea6d3003a6 diff --git a/metadata/md5-cache/dev-php/PEAR-XML_Parser-1.3.4-r1 b/metadata/md5-cache/dev-php/PEAR-XML_Parser-1.3.4-r1 index 393d48274561..535ff6c83506 100644 --- a/metadata/md5-cache/dev-php/PEAR-XML_Parser-1.3.4-r1 +++ b/metadata/md5-cache/dev-php/PEAR-XML_Parser-1.3.4-r1 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/XML_Parser-1.3.4.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=2087d7fdf2b9ccecde5a70c7356c64b9 diff --git a/metadata/md5-cache/dev-php/PEAR-XML_RSS-1.0.2 b/metadata/md5-cache/dev-php/PEAR-XML_RSS-1.0.2 index ca2a9d3b12b3..ee4ba7a56e3f 100644 --- a/metadata/md5-cache/dev-php/PEAR-XML_RSS-1.0.2 +++ b/metadata/md5-cache/dev-php/PEAR-XML_RSS-1.0.2 @@ -8,5 +8,5 @@ LICENSE=PHP-2.02 PHP-3 RDEPEND=dev-php/PEAR-XML_Parser dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/XML_RSS-1.0.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=c36fd230620ff5a5b073ca66936b117c diff --git a/metadata/md5-cache/dev-php/PEAR-XML_Serializer-0.20.2 b/metadata/md5-cache/dev-php/PEAR-XML_Serializer-0.20.2 index 2353bfd919af..f7649722e42c 100644 --- a/metadata/md5-cache/dev-php/PEAR-XML_Serializer-0.20.2 +++ b/metadata/md5-cache/dev-php/PEAR-XML_Serializer-0.20.2 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php[xml] >=dev-php/PEAR-XML_Parser-1.2.7 >=dev-php/PEAR-XML_Util-1.1.1-r1 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/XML_Serializer-0.20.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=3c9b00cea7f10d193605af5a5bca2c21 diff --git a/metadata/md5-cache/dev-php/PHP_CodeCoverage-1.1.2 b/metadata/md5-cache/dev-php/PHP_CodeCoverage-1.1.2 index 9e2eb515cc18..123bb8e5e9d3 100644 --- a/metadata/md5-cache/dev-php/PHP_CodeCoverage-1.1.2 +++ b/metadata/md5-cache/dev-php/PHP_CodeCoverage-1.1.2 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-php/pear-1.9.4 >=dev-php/File_Iterator-1.3.0 >=dev-php/PHP_TokenStream-1.1.0 >=dev-php/Text_Template-1.1.1 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.phpunit.de/get/PHP_CodeCoverage-1.1.2.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=b674909265f1109e693405f5d091e668 diff --git a/metadata/md5-cache/dev-php/PHP_CodeCoverage-1.2.13 b/metadata/md5-cache/dev-php/PHP_CodeCoverage-1.2.13 index d84631939852..e1e655cd5b33 100644 --- a/metadata/md5-cache/dev-php/PHP_CodeCoverage-1.2.13 +++ b/metadata/md5-cache/dev-php/PHP_CodeCoverage-1.2.13 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-php/pear-1.9.4 >=dev-php/File_Iterator-1.3.0 >=dev-php/PHP_TokenStream-1.1.3 >=dev-php/Text_Template-1.1.1 dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.phpunit.de/get/PHP_CodeCoverage-1.2.13.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=37df99710a9ce8693e06aa4c475d79d7 diff --git a/metadata/md5-cache/dev-php/PHP_TokenStream-1.1.3 b/metadata/md5-cache/dev-php/PHP_TokenStream-1.1.3 index 572f3c3a0793..892d0c9f2e8b 100644 --- a/metadata/md5-cache/dev-php/PHP_TokenStream-1.1.3 +++ b/metadata/md5-cache/dev-php/PHP_TokenStream-1.1.3 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php[tokenizer] >=dev-php/pear-1.9.4 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.phpunit.de/get/PHP_TokenStream-1.1.3.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=c2c77a3b0820e2004fa18143a8ffdf2a diff --git a/metadata/md5-cache/dev-php/PHPonTrax-0.18.0 b/metadata/md5-cache/dev-php/PHPonTrax-0.18.0 index e4aed2fd45a7..5428113a25d7 100644 --- a/metadata/md5-cache/dev-php/PHPonTrax-0.18.0 +++ b/metadata/md5-cache/dev-php/PHPonTrax-0.18.0 @@ -10,5 +10,5 @@ RDEPEND=virtual/httpd-php:* dev-lang/php:*[session,imap] dev-php/PEAR-MDB2 dev-p REQUIRED_USE=|| ( mysql postgres ) SLOT=0 SRC_URI=http://pear.phpontrax.com/get/PHPonTrax-0.18.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=0cf5f6ebdef7f3e8f1744af3c3377be7 diff --git a/metadata/md5-cache/dev-php/SabreAMF-1.3.234 b/metadata/md5-cache/dev-php/SabreAMF-1.3.234 index 0b862c4adab2..80f3d57cf329 100644 --- a/metadata/md5-cache/dev-php/SabreAMF-1.3.234 +++ b/metadata/md5-cache/dev-php/SabreAMF-1.3.234 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=https://sabreamf.googlecode.com/files/SabreAMF-1.3.234.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=350d1e380f98a2cbfa2ca3b439bbd212 diff --git a/metadata/md5-cache/dev-php/phpDocumentor-2.3.0 b/metadata/md5-cache/dev-php/phpDocumentor-2.3.0 index 56d14ccd7326..e26218481436 100644 --- a/metadata/md5-cache/dev-php/phpDocumentor-2.3.0 +++ b/metadata/md5-cache/dev-php/phpDocumentor-2.3.0 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=media-gfx/graphviz dev-lang/php[iconv,intl,xslt] dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.phpdoc.org/get/phpDocumentor-2.3.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=be8a995b5274f0b11577312fca7c0162 diff --git a/metadata/md5-cache/dev-php/phpDocumentor-2.7.0 b/metadata/md5-cache/dev-php/phpDocumentor-2.7.0 index 78ca45fdbe32..dc4ebe659e9a 100644 --- a/metadata/md5-cache/dev-php/phpDocumentor-2.7.0 +++ b/metadata/md5-cache/dev-php/phpDocumentor-2.7.0 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=media-gfx/graphviz dev-lang/php[iconv,intl,xmlreader,xslt] dev-lang/php:* >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.phpdoc.org/get/phpDocumentor-2.7.0.tgz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 a9c774888f87b59856e139e796fa7501 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 php-pear-r1 7d1434952f2d1483feac6ad812d605dd toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=6cc6fba9013891b9c355a76989c6421c diff --git a/metadata/md5-cache/dev-python/numpy-1.10.4 b/metadata/md5-cache/dev-python/numpy-1.10.4 index cd5ab2cf9df7..ae30c018bd7f 100644 --- a/metadata/md5-cache/dev-python/numpy-1.10.4 +++ b/metadata/md5-cache/dev-python/numpy-1.10.4 @@ -4,11 +4,11 @@ DESCRIPTION=Fast array and numerical python library EAPI=5 HOMEPAGE=http://www.numpy.org/ IUSE=doc lapack test python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=BSD RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] lapack? ( virtual/cblas virtual/lapack ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+)] ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[threads(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[threads(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] lapack? ( virtual/fortran ) REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/n/numpy/numpy-1.10.4.tar.gz doc? ( http://docs.scipy.org/doc/numpy-1.10.1/numpy-html-1.10.1.zip http://docs.scipy.org/doc/numpy-1.10.1/numpy-ref-1.10.1.pdf http://docs.scipy.org/doc/numpy-1.10.1/numpy-user-1.10.1.pdf ) _eclasses_=distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c eutils 28fb3e5852485af1c348d446b0b98389 flag-o-matic d270fa247153df66074f795fa42dba3e fortran-2 49cf4293404403fe100eafdd9b84c940 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 30887c5e8630bbf27b5cf0fd74564323 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=b5cbb682de6e5e388489310d57c5c7e3 +_md5_=bb0a1283e8c701168fecfebf6d09011b diff --git a/metadata/md5-cache/dev-python/pyopenssl-0.15.1-r1 b/metadata/md5-cache/dev-python/pyopenssl-0.15.1-r1 index e5d5c041a118..2baeeae548f4 100644 --- a/metadata/md5-cache/dev-python/pyopenssl-0.15.1-r1 +++ b/metadata/md5-cache/dev-python/pyopenssl-0.15.1-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Python interface to the OpenSSL library EAPI=5 HOMEPAGE=http://pyopenssl.sourceforge.net/ https://launchpad.net/pyopenssl https://pypi.python.org/pypi/pyOpenSSL IUSE=doc examples python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_python3_5 python_targets_pypy -KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris +KEYWORDS=alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris LICENSE=Apache-2.0 RDEPEND=>=dev-python/six-1.5.2[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_pypy(-)] >=dev-python/cryptography-0.7[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_pypy(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+)] ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[threads(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[threads(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[threads(+)] ) python_targets_pypy? ( virtual/pypy:0=[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_pypy(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_python3_5 python_targets_pypy ) SLOT=0 SRC_URI=mirror://pypi/p/pyOpenSSL/pyOpenSSL-0.15.1.tar.gz _eclasses_=distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c eutils 28fb3e5852485af1c348d446b0b98389 flag-o-matic d270fa247153df66074f795fa42dba3e multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 30887c5e8630bbf27b5cf0fd74564323 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=8a948b87fafef7567b5a96a0fa92806a +_md5_=504f14730d1c06585cb1cfe5d3011e4b diff --git a/metadata/md5-cache/dev-qt/qtchooser-0_p20151008 b/metadata/md5-cache/dev-qt/qtchooser-0_p20151008 index b8e121581e7f..f1b0c5ea3c0b 100644 --- a/metadata/md5-cache/dev-qt/qtchooser-0_p20151008 +++ b/metadata/md5-cache/dev-qt/qtchooser-0_p20151008 @@ -4,10 +4,10 @@ DESCRIPTION=Qt4/Qt5 version chooser EAPI=5 HOMEPAGE=https://code.qt.io/cgit/qt/qtchooser.git/ IUSE=test -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd +KEYWORDS=alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd LICENSE=|| ( LGPL-2.1 GPL-3 ) RDEPEND=!=dev-ruby/activesupport-3.0:*[ruby_targets_ruby20] =dev-ruby/actionpack-3.0:*[ruby_targets_ruby20] =dev-ruby/railties-3.0:*[ruby_targets_ruby20] =dev-ruby/activesupport-3.0:*[ruby_targets_ruby21] =dev-ruby/actionpack-3.0:*[ruby_targets_ruby21] =dev-ruby/railties-3.0:*[ruby_targets_ruby21] =dev-ruby/capybara-2.0.0[ruby_targets_ruby20] >=dev-ruby/ammeter-1.1.2[ruby_targets_ruby20] ~dev-ruby/rspec-rails-3.4.2[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( =dev-ruby/mocha-0.10*[ruby_targets_ruby21] >=dev-ruby/capybara-2.0.0[ruby_targets_ruby21] >=dev-ruby/ammeter-1.1.2[ruby_targets_ruby21] ~dev-ruby/rspec-rails-3.4.2[ruby_targets_ruby21] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby21] ) ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) +DESCRIPTION=RSpec's official Ruby on Rails plugin +EAPI=5 +HOMEPAGE=http://rspec.info/ +IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 test test +KEYWORDS=~amd64 +LICENSE=MIT +RDEPEND=ruby_targets_ruby20? ( >=dev-ruby/activesupport-3.0:*[ruby_targets_ruby20] =dev-ruby/actionpack-3.0:*[ruby_targets_ruby20] =dev-ruby/railties-3.0:*[ruby_targets_ruby20] =dev-ruby/activesupport-3.0:*[ruby_targets_ruby21] =dev-ruby/actionpack-3.0:*[ruby_targets_ruby21] =dev-ruby/railties-3.0:*[ruby_targets_ruby21] rspec-rails-3.4.2.tar.gz +_eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 java-utils-2 5f1bd1f8baff3ee957cb72c75c3949f2 multilib 3972ca401cf7dbb430df9995f5d8d580 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=ba4eb22ac0fd4742ad850ac2d945f3f8 diff --git a/metadata/md5-cache/dev-ruby/shoulda-2.11.3-r1 b/metadata/md5-cache/dev-ruby/shoulda-2.11.3-r1 deleted file mode 100644 index 3af4bde84077..000000000000 --- a/metadata/md5-cache/dev-ruby/shoulda-2.11.3-r1 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ) -DESCRIPTION=Making tests easy on the fingers and eyes -EAPI=5 -HOMEPAGE=http://thoughtbot.com/projects/shoulda -IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 doc test test -KEYWORDS=~alpha amd64 ~arm ~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_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ) -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/thoughtbot/shoulda/tarball/v2.11.3 -> shoulda-2.11.3.tar.gz -_eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 java-utils-2 5f1bd1f8baff3ee957cb72c75c3949f2 multilib 3972ca401cf7dbb430df9995f5d8d580 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=3b16295d36fa835ca9e8871ec1d9a20b diff --git a/metadata/md5-cache/dev-ruby/shoulda-3.5.0-r1 b/metadata/md5-cache/dev-ruby/shoulda-3.5.0-r1 deleted file mode 100644 index bc84511451fe..000000000000 --- a/metadata/md5-cache/dev-ruby/shoulda-3.5.0-r1 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby19? ( >=dev-ruby/shoulda-context-1.0.1[ruby_targets_ruby19] >=dev-ruby/shoulda-matchers-1.4.1[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/shoulda-context-1.0.1[ruby_targets_ruby20] >=dev-ruby/shoulda-matchers-1.4.1[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/shoulda-context-1.0.1[ruby_targets_ruby21] >=dev-ruby/shoulda-matchers-1.4.1[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) -DESCRIPTION=Making tests easy on the fingers and eyes -EAPI=5 -HOMEPAGE=http://thoughtbot.com/projects/shoulda -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 test test -KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 -LICENSE=MIT -RDEPEND=ruby_targets_ruby19? ( >=dev-ruby/shoulda-context-1.0.1[ruby_targets_ruby19] >=dev-ruby/shoulda-matchers-1.4.1[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/shoulda-context-1.0.1[ruby_targets_ruby20] >=dev-ruby/shoulda-matchers-1.4.1[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/shoulda-context-1.0.1[ruby_targets_ruby21] >=dev-ruby/shoulda-matchers-1.4.1[ruby_targets_ruby21] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) -RESTRICT=test -SLOT=3 -SRC_URI=https://github.com/thoughtbot/shoulda/archive/v3.5.0.tar.gz -> shoulda-3.5.0.tar.gz -_eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 java-utils-2 5f1bd1f8baff3ee957cb72c75c3949f2 multilib 3972ca401cf7dbb430df9995f5d8d580 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=efff7a3bb94fb7b623815817e64192f5 diff --git a/metadata/md5-cache/dev-ruby/unf_ext-0.0.6-r1 b/metadata/md5-cache/dev-ruby/unf_ext-0.0.6-r1 deleted file mode 100644 index 37f6eb0d59b2..000000000000 --- a/metadata/md5-cache/dev-ruby/unf_ext-0.0.6-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( test? ( >=dev-ruby/test-unit-2.5.1-r1[ruby_targets_ruby19] dev-ruby/shoulda[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( >=dev-ruby/test-unit-2.5.1-r1[ruby_targets_ruby20] dev-ruby/shoulda[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ) -DESCRIPTION=Unicode Normalization Form support library for CRuby -EAPI=5 -HOMEPAGE=http://sourceforge.jp/projects/unf/ -IUSE=doc test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 doc test -KEYWORDS=amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ) -SLOT=0 -SRC_URI=mirror://rubygems/unf_ext-0.0.6.gem -_eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 java-utils-2 5f1bd1f8baff3ee957cb72c75c3949f2 multilib 3972ca401cf7dbb430df9995f5d8d580 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=ff939659dd302e7a479715c1e2fb3a77 diff --git a/metadata/md5-cache/dev-ruby/unf_ext-0.0.6-r2 b/metadata/md5-cache/dev-ruby/unf_ext-0.0.6-r2 deleted file mode 100644 index 8b33da5e4cfc..000000000000 --- a/metadata/md5-cache/dev-ruby/unf_ext-0.0.6-r2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( test? ( >=dev-ruby/test-unit-2.5.1-r1[ruby_targets_ruby19] dev-ruby/shoulda[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( >=dev-ruby/test-unit-2.5.1-r1[ruby_targets_ruby20] dev-ruby/shoulda[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( >=dev-ruby/test-unit-2.5.1-r1[ruby_targets_ruby21] dev-ruby/shoulda[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( >=dev-ruby/test-unit-2.5.1-r1[ruby_targets_ruby22] dev-ruby/shoulda[ruby_targets_ruby22] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby22] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) -DESCRIPTION=Unicode Normalization Form support library for CRuby -EAPI=5 -HOMEPAGE=http://sourceforge.jp/projects/unf/ -IUSE=doc test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 doc test -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://rubygems/unf_ext-0.0.6.gem -_eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 java-utils-2 5f1bd1f8baff3ee957cb72c75c3949f2 multilib 3972ca401cf7dbb430df9995f5d8d580 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=c55489036361e7e8633e0d9f0de61c97 diff --git a/metadata/md5-cache/dev-ruby/unf_ext-0.0.7.2 b/metadata/md5-cache/dev-ruby/unf_ext-0.0.7.2 new file mode 100644 index 000000000000..7a043f0fa7ce --- /dev/null +++ b/metadata/md5-cache/dev-ruby/unf_ext-0.0.7.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby20? ( test? ( >=dev-ruby/test-unit-2.5.1-r1[ruby_targets_ruby20] dev-ruby/shoulda[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( >=dev-ruby/test-unit-2.5.1-r1[ruby_targets_ruby21] dev-ruby/shoulda[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( >=dev-ruby/test-unit-2.5.1-r1[ruby_targets_ruby22] dev-ruby/shoulda[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) +DESCRIPTION=Unicode Normalization Form support library for CRuby +EAPI=5 +HOMEPAGE=http://sourceforge.jp/projects/unf/ +IUSE=doc test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 doc test +KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris +LICENSE=MIT +RDEPEND=ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) +REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) +SLOT=0 +SRC_URI=mirror://rubygems/unf_ext-0.0.7.2.gem +_eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 java-utils-2 5f1bd1f8baff3ee957cb72c75c3949f2 multilib 3972ca401cf7dbb430df9995f5d8d580 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=08623f75838bdacb163226ae83ffe384 diff --git a/metadata/md5-cache/dev-tex/latexdiff-1.1.0 b/metadata/md5-cache/dev-tex/latexdiff-1.1.0 index 415a37fdb35a..423fbea713c9 100644 --- a/metadata/md5-cache/dev-tex/latexdiff-1.1.0 +++ b/metadata/md5-cache/dev-tex/latexdiff-1.1.0 @@ -3,9 +3,9 @@ DEPEND=>=dev-lang/perl-5.8 dev-perl/Algorithm-Diff app-arch/unzip DESCRIPTION=Compare two latex files and mark up significant differences EAPI=5 HOMEPAGE=http://www.ctan.org/tex-archive/support/latexdiff/ https://github.com/ftilmann/latexdiff/ -KEYWORDS=alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos +KEYWORDS=alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=GPL-2 RDEPEND=>=dev-lang/perl-5.8 dev-perl/Algorithm-Diff SLOT=0 SRC_URI=http://mirror.ctan.org/support/latexdiff.zip -> latexdiff-1.1.0.zip -_md5_=4a08c6da6f419f83f2230d37fb513a30 +_md5_=dba0918f941515a55ef798062e1dc029 diff --git a/metadata/md5-cache/dev-vcs/mercurial-3.7 b/metadata/md5-cache/dev-vcs/mercurial-3.7.1 similarity index 96% rename from metadata/md5-cache/dev-vcs/mercurial-3.7 rename to metadata/md5-cache/dev-vcs/mercurial-3.7.1 index 7b59a6250dc8..e6ac7f5b83c0 100644 --- a/metadata/md5-cache/dev-vcs/mercurial-3.7 +++ b/metadata/md5-cache/dev-vcs/mercurial-3.7.1 @@ -9,6 +9,6 @@ LICENSE=GPL-2 RDEPEND=bugzilla? ( dev-python/mysql-python[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) gpg? ( app-crypt/gnupg ) tk? ( dev-lang/tk ) app-misc/ca-certificates python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 -SRC_URI=http://mercurial.selenic.com/release/mercurial-3.7.tar.gz +SRC_URI=http://mercurial.selenic.com/release/mercurial-3.7.1.tar.gz _eclasses_=bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c elisp-common 9f56c4e9bf1282dbfc2a5a09e1124e74 eutils 28fb3e5852485af1c348d446b0b98389 flag-o-matic d270fa247153df66074f795fa42dba3e multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 30887c5e8630bbf27b5cf0fd74564323 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=41a85d9d072dcb75333b9deebd7d5a44 diff --git a/metadata/md5-cache/dev-vcs/tortoisehg-3.6.2 b/metadata/md5-cache/dev-vcs/tortoisehg-3.7.1 similarity index 89% rename from metadata/md5-cache/dev-vcs/tortoisehg-3.6.2 rename to metadata/md5-cache/dev-vcs/tortoisehg-3.7.1 index 7e39a8efe368..2356372b5a92 100644 --- a/metadata/md5-cache/dev-vcs/tortoisehg-3.6.2 +++ b/metadata/md5-cache/dev-vcs/tortoisehg-3.7.1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst prepare test -DEPEND=>=dev-vcs/mercurial-3.5 =dev-python/sphinx-1.0.3 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DEPEND=>=dev-vcs/mercurial-3.6 =dev-python/sphinx-1.0.3 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] DESCRIPTION=Set of graphical tools for Mercurial -EAPI=5 +EAPI=6 HOMEPAGE=https://tortoisehg.bitbucket.org IUSE=doc python_targets_python2_7 KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=>=dev-vcs/mercurial-3.5 =dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +RDEPEND=>=dev-vcs/mercurial-3.6 =dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 -SRC_URI=https://www.bitbucket.org/tortoisehg/targz/downloads/tortoisehg-3.6.2.tar.gz +SRC_URI=https://www.bitbucket.org/tortoisehg/targz/downloads/tortoisehg-3.7.1.tar.gz _eclasses_=distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c eutils 28fb3e5852485af1c348d446b0b98389 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 30887c5e8630bbf27b5cf0fd74564323 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=4fc031be77f051c5f2606ec44df10c97 +_md5_=38f39dccbf386ef67e4f24b009b5ffb0 diff --git a/metadata/md5-cache/media-libs/imlib2-1.4.7 b/metadata/md5-cache/media-libs/imlib2-1.4.7 index 86cf76e7cdcc..98395d2a8671 100644 --- a/metadata/md5-cache/media-libs/imlib2-1.4.7 +++ b/metadata/md5-cache/media-libs/imlib2-1.4.7 @@ -4,10 +4,10 @@ DESCRIPTION=Version 2 of an advanced replacement library for libraries like libX EAPI=4 HOMEPAGE=https://www.enlightenment.org/ IUSE=bzip2 gif jpeg cpu_flags_x86_mmx mp3 png static-libs tiff X zlib nls doc abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=BSD RDEPEND==media-libs/freetype-2*[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] bzip2? ( >=app-arch/bzip2-1.0.6-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gif? ( >=media-libs/giflib-4.1.6-r3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) png? ( >=media-libs/libpng-1.6.10:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg? ( >=virtual/jpeg-0-r2:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tiff? ( >=media-libs/tiff-4.0.3-r6:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mp3? ( >=media-libs/libid3tag-0.15.1b-r3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext ) SLOT=0 SRC_URI=mirror://sourceforge/enlightenment/imlib2-1.4.7.tar.gz _eclasses_=enlightenment c185b1fa0d87798fd07fb1cd85866b23 eutils 28fb3e5852485af1c348d446b0b98389 libtool b75230758539a7da029e24afdb693960 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=17ecf49d68df37f173a3f67dd343f0ac +_md5_=89778b26602336815b8ff0cf88392c46 diff --git a/metadata/md5-cache/media-libs/x265-1.8-r3 b/metadata/md5-cache/media-libs/x265-1.8-r3 index e3a87bff3ee0..d1148ebcc09a 100644 --- a/metadata/md5-cache/media-libs/x265-1.8-r3 +++ b/metadata/md5-cache/media-libs/x265-1.8-r3 @@ -4,10 +4,10 @@ DESCRIPTION=Library for encoding video streams into the H.265/HEVC format EAPI=5 HOMEPAGE=http://x265.org/ IUSE=+10bit 12bit numa pic test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=amd64 ~arm hppa ~ppc ppc64 x86 +KEYWORDS=amd64 arm hppa ~ppc ppc64 x86 LICENSE=GPL-2 RDEPEND=numa? ( >=sys-process/numactl-2.0.10-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0/68 SRC_URI=https://bitbucket.org/multicoreware/x265/downloads/x265_1.8.tar.gz http://ftp.videolan.org/pub/videolan/x265/x265_1.8.tar.gz _eclasses_=cmake-utils 3443785f3176b7cfdf7bd1f2c403bd9f eutils 28fb3e5852485af1c348d446b0b98389 flag-o-matic d270fa247153df66074f795fa42dba3e multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=7752871e753bf93359e09703e8b7a83e +_md5_=3ab591e0f4123377faab20bbab0f4cfe diff --git a/metadata/md5-cache/media-sound/ncmpcpp-0.6.7 b/metadata/md5-cache/media-sound/ncmpcpp-0.6.7 deleted file mode 100644 index fc9bb4822026..000000000000 --- a/metadata/md5-cache/media-sound/ncmpcpp-0.6.7 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install postinst prepare -DEPEND=>=media-libs/libmpdclient-2.1 curl? ( net-misc/curl ) dev-libs/boost:=[nls,threads] sys-libs/ncurses[unicode?] sys-libs/readline:* taglib? ( media-libs/taglib ) visualizer? ( sci-libs/fftw:3.0 ) virtual/pkgconfig -DESCRIPTION=featureful ncurses based MPD client inspired by ncmpc -EAPI=5 -HOMEPAGE=http://ncmpcpp.rybczak.net/ -IUSE=clock curl outputs taglib unicode visualizer -KEYWORDS=amd64 arm hppa ppc ppc64 sparc x86 -LICENSE=GPL-2 -RDEPEND=>=media-libs/libmpdclient-2.1 curl? ( net-misc/curl ) dev-libs/boost:=[nls,threads] sys-libs/ncurses[unicode?] sys-libs/readline:* taglib? ( media-libs/taglib ) visualizer? ( sci-libs/fftw:3.0 ) -SLOT=0 -SRC_URI=http://ncmpcpp.rybczak.net/stable/ncmpcpp-0.6.7.tar.bz2 -_eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=feaeebc2b19e1d0abc09c7d1fcc14bfa diff --git a/metadata/md5-cache/media-sound/ncmpcpp-0.6.8 b/metadata/md5-cache/media-sound/ncmpcpp-0.6.8 deleted file mode 100644 index 052587ab4ce2..000000000000 --- a/metadata/md5-cache/media-sound/ncmpcpp-0.6.8 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install postinst prepare -DEPEND=>=media-libs/libmpdclient-2.1 curl? ( net-misc/curl ) dev-libs/boost:=[nls,threads] sys-libs/ncurses:=[unicode?] sys-libs/readline:* taglib? ( media-libs/taglib ) visualizer? ( sci-libs/fftw:3.0 ) virtual/pkgconfig -DESCRIPTION=featureful ncurses based MPD client inspired by ncmpc -EAPI=5 -HOMEPAGE=http://ncmpcpp.rybczak.net/ -IUSE=clock curl outputs taglib unicode visualizer -KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=>=media-libs/libmpdclient-2.1 curl? ( net-misc/curl ) dev-libs/boost:=[nls,threads] sys-libs/ncurses:=[unicode?] sys-libs/readline:* taglib? ( media-libs/taglib ) visualizer? ( sci-libs/fftw:3.0 ) -SLOT=0 -SRC_URI=http://ncmpcpp.rybczak.net/stable/ncmpcpp-0.6.8.tar.bz2 -_eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=0bcdf9cf4e72979b0e26c8286fc064e9 diff --git a/metadata/md5-cache/media-sound/ncmpcpp-0.7 b/metadata/md5-cache/media-sound/ncmpcpp-0.7 index 22bacaf56890..624c6aa7206a 100644 --- a/metadata/md5-cache/media-sound/ncmpcpp-0.7 +++ b/metadata/md5-cache/media-sound/ncmpcpp-0.7 @@ -4,10 +4,10 @@ DESCRIPTION=featureful ncurses based MPD client inspired by ncmpc EAPI=5 HOMEPAGE=http://ncmpcpp.rybczak.net/ IUSE=clock curl outputs taglib unicode visualizer -KEYWORDS=amd64 ~arm hppa ppc ppc64 sparc x86 +KEYWORDS=amd64 arm hppa ppc ppc64 sparc x86 LICENSE=GPL-2 RDEPEND=!dev-libs/boost:0/1.57.0 >=media-libs/libmpdclient-2.1 dev-libs/boost:=[nls,threads] sys-libs/ncurses:=[unicode?] sys-libs/readline:* curl? ( net-misc/curl ) taglib? ( media-libs/taglib ) unicode? ( dev-libs/boost:=[icu] ) visualizer? ( sci-libs/fftw:3.0 ) SLOT=0 SRC_URI=http://ncmpcpp.rybczak.net/stable/ncmpcpp-0.7.tar.bz2 _eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=88f3edf74059719a025939c9a558a6a7 +_md5_=e853ea50153fe94f3d7b71d5efe29b4d diff --git a/metadata/md5-cache/media-video/ffmpeg-2.8.5 b/metadata/md5-cache/media-video/ffmpeg-2.8.5 index 1215d52e1ff3..a6ba903317fd 100644 --- a/metadata/md5-cache/media-video/ffmpeg-2.8.5 +++ b/metadata/md5-cache/media-video/ffmpeg-2.8.5 @@ -4,7 +4,7 @@ DESCRIPTION=Complete solution to record, convert and stream audio and video. Inc EAPI=5 HOMEPAGE=http://ffmpeg.org/ IUSE=alsa +encode examples jack libressl oss pic static-libs test v4l +bzip2 cpudetection debug doc gnutls +gpl +hardcoded-tables +iconv lzma +network openssl +postproc samba sdl sdl vaapi vdpau X xcb xcb xcb +zlib cdio iec61883 ieee1394 libcaca openal opengl libv4l pulseaudio amr amr fdk jpeg2k bluray celt gme gsm modplug opus quvi librtmp ssh schroedinger speex vorbis vpx zvbi bs2b flite frei0r fribidi fontconfig ladspa libass truetype libsoxr +threads aac amrenc mp3 aacplus faac snappy theora twolame wavpack webp x264 x265 xvid armv5te armv6 armv6t2 neon armvfp mipsdspr1 mipsdspr2 mipsfpu altivec cpu_flags_x86_3dnow cpu_flags_x86_3dnowext cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_fma3 cpu_flags_x86_fma4 cpu_flags_x86_mmx cpu_flags_x86_mmxext cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_ssse3 cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 cpu_flags_x86_xop +fftools_aviocat +fftools_cws2fws +fftools_ffescape +fftools_ffeval +fftools_ffhash +fftools_fourcc2pixfmt +fftools_graph2dot +fftools_ismindex +fftools_pktdumper +fftools_qt-faststart +fftools_sidxindex +fftools_trasher abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux +KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux LICENSE=!gpl? ( LGPL-2.1 ) gpl? ( GPL-2 ) amr? ( gpl? ( GPL-3 ) !gpl? ( LGPL-3 ) ) encode? ( aac? ( gpl? ( GPL-3 ) !gpl? ( LGPL-3 ) ) amrenc? ( gpl? ( GPL-3 ) !gpl? ( LGPL-3 ) ) ) samba? ( GPL-3 ) RDEPEND=alsa? ( >=media-libs/alsa-lib-1.0.27.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amr? ( >=media-libs/opencore-amr-0.1.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bluray? ( >=media-libs/libbluray-0.3.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bs2b? ( >=media-libs/libbs2b-3.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bzip2? ( >=app-arch/bzip2-1.0.6-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cdio? ( >=dev-libs/libcdio-paranoia-0.90_p1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) celt? ( >=media-libs/celt-0.11.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) encode? ( aac? ( >=media-libs/vo-aacenc-0.1.3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) aacplus? ( >=media-libs/libaacplus-2.0.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amrenc? ( >=media-libs/vo-amrwbenc-0.1.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) faac? ( >=media-libs/faac-1.28-r3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mp3? ( >=media-sound/lame-3.99.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) snappy? ( >=app-arch/snappy-1.1.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) theora? ( >=media-libs/libtheora-1.1.1[encode,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libogg-1.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) twolame? ( >=media-sound/twolame-0.3.13-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) wavpack? ( >=media-sound/wavpack-4.60.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) webp? ( >=media-libs/libwebp-0.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x264? ( >=media-libs/x264-0.0.20130506:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x265? ( >=media-libs/x265-1.6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xvid? ( >=media-libs/xvid-1.3.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) fdk? ( >=media-libs/fdk-aac-0.1.3:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) flite? ( >=app-accessibility/flite-1.4-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( >=media-libs/fontconfig-2.10.92[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) frei0r? ( media-plugins/frei0r-plugins ) fribidi? ( >=dev-libs/fribidi-0.19.6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gme? ( >=media-libs/game-music-emu-0.6.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( >=net-libs/gnutls-2.12.23-r6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gsm? ( >=media-sound/gsm-1.0.13-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iconv? ( >=virtual/libiconv-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iec61883? ( >=media-libs/libiec61883-1.2.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libavc1394-0.5.4-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ieee1394? ( >=media-libs/libdc1394-2.2.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jack? ( >=media-sound/jack-audio-connection-kit-0.121.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg2k? ( >=media-libs/openjpeg-1.5.0:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libass? ( >=media-libs/libass-0.10.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libcaca? ( >=media-libs/libcaca-0.99_beta18-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libsoxr? ( >=media-libs/soxr-0.1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libv4l? ( >=media-libs/libv4l-0.9.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) modplug? ( >=media-libs/libmodplug-0.8.8.4-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( >=media-libs/openal-1.15.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( >=virtual/opengl-7.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openssl? ( !libressl? ( >=dev-libs/openssl-1.0.1h-r2:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libressl? ( dev-libs/libressl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) opus? ( >=media-libs/opus-1.0.2-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) quvi? ( media-libs/libquvi:0.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) librtmp? ( >=media-video/rtmpdump-2.4_p20131018[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) samba? ( >=net-fs/samba-3.6.23-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) schroedinger? ( >=media-libs/schroedinger-1.0.11-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( >=media-libs/libsdl-1.2.15-r4[sound,video,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) speex? ( >=media-libs/speex-1.2_rc1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssh? ( >=net-libs/libssh-0.5.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.5.0.1:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vaapi? ( >=x11-libs/libva-1.2.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vdpau? ( >=x11-libs/libvdpau-0.7[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vorbis? ( >=media-libs/libvorbis-1.3.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libogg-1.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vpx? ( >=media-libs/libvpx-1.4.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !xcb? ( >=x11-libs/libXfixes-5.0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) >=x11-libs/libXv-1.0.10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcb? ( >=x11-libs/libxcb-1.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zvbi? ( >=media-libs/zvbi-0.2.35[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !media-video/qt-faststart postproc? ( !media-libs/libpostproc ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20140508-r3 !app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)] ) REQUIRED_USE=libv4l? ( v4l ) fftools_cws2fws? ( zlib ) test? ( encode ) postproc? ( gpl ) frei0r? ( gpl ) cdio? ( gpl ) samba? ( gpl ) zvbi? ( gpl ) encode? ( x264? ( gpl ) x265? ( gpl ) xvid? ( gpl ) X? ( !xcb? ( gpl ) ) ) cpu_flags_x86_avx2? ( cpu_flags_x86_avx ) cpu_flags_x86_fma4? ( cpu_flags_x86_avx ) cpu_flags_x86_fma3? ( cpu_flags_x86_avx ) cpu_flags_x86_xop? ( cpu_flags_x86_avx ) cpu_flags_x86_avx? ( cpu_flags_x86_sse4_2 ) cpu_flags_x86_sse4_2? ( cpu_flags_x86_sse4_1 ) cpu_flags_x86_sse4_1? ( cpu_flags_x86_ssse3 ) cpu_flags_x86_ssse3? ( cpu_flags_x86_sse3 ) cpu_flags_x86_sse3? ( cpu_flags_x86_sse2 ) cpu_flags_x86_sse2? ( cpu_flags_x86_sse ) cpu_flags_x86_sse? ( cpu_flags_x86_mmxext ) cpu_flags_x86_mmxext? ( cpu_flags_x86_mmx ) cpu_flags_x86_3dnowext? ( cpu_flags_x86_3dnow ) cpu_flags_x86_3dnow? ( cpu_flags_x86_mmx ) @@ -12,4 +12,4 @@ RESTRICT=encode? ( faac? ( bindist ) aacplus? ( bindist ) ) gpl? ( openssl? ( bi SLOT=0/54.56.56 SRC_URI=http://ffmpeg.org/releases/ffmpeg-2.8.5.tar.bz2 _eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 flag-o-matic d270fa247153df66074f795fa42dba3e multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=58a9c01d8f25f6449a64d282aa06a7ab +_md5_=f2927a65dffdaa43816c3debe468b5f3 diff --git a/metadata/md5-cache/media-video/mpv-0.14.0-r1 b/metadata/md5-cache/media-video/mpv-0.14.0-r1 index a0ae8cc13a8b..958aaa4b15cd 100644 --- a/metadata/md5-cache/media-video/mpv-0.14.0-r1 +++ b/metadata/md5-cache/media-video/mpv-0.14.0-r1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test -DEPEND=!libav? ( >=media-video/ffmpeg-2.4:0=[encode?,threads,vaapi?,vdpau?] ) libav? ( >=media-video/libav-11:0=[encode?,threads,vaapi?,vdpau?] ) sys-libs/zlib alsa? ( >=media-libs/alsa-lib-1.0.18 ) archive? ( >=app-arch/libarchive-3.0.0:= ) bluray? ( >=media-libs/libbluray-0.3.0 ) cdda? ( dev-libs/libcdio-paranoia ) drm? ( x11-libs/libdrm ) dvb? ( virtual/linuxtv-dvb-headers ) dvd? ( >=media-libs/libdvdnav-4.2.0 >=media-libs/libdvdread-4.1.0 ) egl? ( media-libs/mesa[egl,gbm(-)?,wayland(-)?] ) iconv? ( virtual/libiconv enca? ( app-i18n/enca ) libguess? ( >=app-i18n/libguess-1.0 ) uchardet? ( dev-libs/uchardet ) ) jack? ( media-sound/jack-audio-connection-kit ) jpeg? ( virtual/jpeg:0 ) lcms? ( >=media-libs/lcms-2.6:2 ) libass? ( >=media-libs/libass-0.12.1:=[fontconfig,harfbuzz] virtual/ttf-fonts ) libcaca? ( >=media-libs/libcaca-0.99_beta18 ) lua? ( !luajit? ( || ( =dev-lang/lua-5.1*:= =dev-lang/lua-5.2*:= ) ) luajit? ( dev-lang/luajit:2 ) ) openal? ( >=media-libs/openal-1.13 ) pulseaudio? ( media-sound/pulseaudio ) rubberband? ( >=media-libs/rubberband-1.8.0 ) samba? ( net-fs/samba ) sdl? ( media-libs/libsdl2[sound,threads,video,X?,wayland?] ) v4l? ( media-libs/libv4l ) vaapi? ( >=x11-libs/libva-1.4.0[X?,wayland?] ) wayland? ( >=dev-libs/wayland-1.6.0 >=x11-libs/libxkbcommon-0.3.0 ) X? ( x11-libs/libX11 x11-libs/libXext >=x11-libs/libXrandr-1.2.0 opengl? ( x11-libs/libXdamage virtual/opengl ) vdpau? ( >=x11-libs/libvdpau-0.2 ) xinerama? ( x11-libs/libXinerama ) xscreensaver? ( x11-libs/libXScrnSaver ) xv? ( x11-libs/libXv ) ) || ( dev-lang/python:3.4[threads(+)] >=dev-lang/python-3.3.2-r2:3.3[threads(+)] >=dev-lang/python-2.7.5-r2:2.7[threads(+)] ) >=dev-lang/perl-5.8 dev-python/docutils virtual/pkgconfig doc? ( dev-python/rst2pdf ) test? ( >=dev-util/cmocka-1.0.0 ) >=sys-apps/sed-4 dev-lang/python !dev-lang/python[-threads] +DEPEND=!libav? ( >=media-video/ffmpeg-2.4:0=[encode?,threads,vaapi?,vdpau?] ) libav? ( >=media-video/libav-11:0=[encode?,threads,vaapi?,vdpau?] ) sys-libs/zlib alsa? ( >=media-libs/alsa-lib-1.0.18 ) archive? ( >=app-arch/libarchive-3.0.0:= ) bluray? ( >=media-libs/libbluray-0.3.0 ) cdda? ( dev-libs/libcdio-paranoia ) drm? ( x11-libs/libdrm ) dvb? ( virtual/linuxtv-dvb-headers ) dvd? ( >=media-libs/libdvdnav-4.2.0 >=media-libs/libdvdread-4.1.0 ) egl? ( media-libs/mesa[egl,gbm(-)?,wayland(-)?] ) iconv? ( virtual/libiconv enca? ( app-i18n/enca ) libguess? ( >=app-i18n/libguess-1.0 ) uchardet? ( dev-libs/uchardet ) ) jack? ( media-sound/jack-audio-connection-kit ) jpeg? ( virtual/jpeg:0 ) lcms? ( >=media-libs/lcms-2.6:2 ) libass? ( >=media-libs/libass-0.12.1:=[fontconfig,harfbuzz] virtual/ttf-fonts ) libcaca? ( >=media-libs/libcaca-0.99_beta18 ) lua? ( !luajit? ( || ( =dev-lang/lua-5.1*:= =dev-lang/lua-5.2*:= ) ) luajit? ( dev-lang/luajit:2 ) ) openal? ( >=media-libs/openal-1.13 ) pulseaudio? ( media-sound/pulseaudio ) rubberband? ( >=media-libs/rubberband-1.8.0 ) samba? ( net-fs/samba ) sdl? ( media-libs/libsdl2[sound,threads,video,X?,wayland?] ) v4l? ( media-libs/libv4l ) vaapi? ( >=x11-libs/libva-1.4.0[X?,wayland?] ) wayland? ( >=dev-libs/wayland-1.6.0 >=x11-libs/libxkbcommon-0.3.0 ) X? ( x11-libs/libX11 x11-libs/libXext >=x11-libs/libXrandr-1.2.0 opengl? ( x11-libs/libXdamage virtual/opengl ) vdpau? ( >=x11-libs/libvdpau-0.2 ) xinerama? ( x11-libs/libXinerama ) xscreensaver? ( x11-libs/libXScrnSaver ) xv? ( x11-libs/libXv ) ) || ( dev-lang/python:3.5[threads(+)] dev-lang/python:3.4[threads(+)] >=dev-lang/python-3.3.2-r2:3.3[threads(+)] >=dev-lang/python-2.7.5-r2:2.7[threads(+)] ) >=dev-lang/perl-5.8 dev-python/docutils virtual/pkgconfig doc? ( dev-python/rst2pdf ) test? ( >=dev-util/cmocka-1.0.0 ) >=sys-apps/sed-4 dev-lang/python !dev-lang/python[-threads] DESCRIPTION=Media player based on MPlayer and mplayer2 EAPI=5 HOMEPAGE=https://mpv.io/ @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( cli libmpv ) egl? ( || ( gbm X wayland ) ) enca? ( iconv ) gbm SLOT=0 SRC_URI=https://github.com/mpv-player/mpv/archive/v0.14.0.tar.gz -> mpv-0.14.0.tar.gz https://waf.io/waf-1.8.12 _eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d gnome2-utils d19e7813f27c8f982134d657889b13cf multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 pax-utils ecf634cba91bb9591a8fdb6f6145f1bb python-any-r1 8eb13cdf35f6e43c48107b911900b2cc python-utils-r1 30887c5e8630bbf27b5cf0fd74564323 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 waf-utils ad1dd5b59c523843eebd3a9934c509ca xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=a2e3fd599c69d28730bea5f6a0943393 +_md5_=3dedfebc11256d4fa7d1ea831716b45f diff --git a/metadata/md5-cache/net-ftp/lftp-4.6.5 b/metadata/md5-cache/net-ftp/lftp-4.6.5 index 565c6a755a01..657dff0913c0 100644 --- a/metadata/md5-cache/net-ftp/lftp-4.6.5 +++ b/metadata/md5-cache/net-ftp/lftp-4.6.5 @@ -4,11 +4,11 @@ DESCRIPTION=A sophisticated ftp/sftp/http/https/torrent client and file transfer EAPI=5 HOMEPAGE=http://lftp.yar.ru/ IUSE=convert-mozilla-cookies +gnutls idn ipv6 nls openssl socks5 +ssl verify-file linguas_cs linguas_de linguas_es linguas_fr linguas_it linguas_ja linguas_ko linguas_pl linguas_pt_BR linguas_ru linguas_uk linguas_zh_CN linguas_zh_HK linguas_zh_TW -KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris LICENSE=GPL-3 RDEPEND=>=sys-libs/ncurses-5.1:= >=sys-libs/readline-5.1:= dev-libs/expat sys-libs/zlib convert-mozilla-cookies? ( dev-perl/DBI ) idn? ( net-dns/libidn ) socks5? ( >=net-proxy/dante-1.1.12 virtual/pam ) ssl? ( gnutls? ( >=net-libs/gnutls-1.2.3 ) openssl? ( dev-libs/openssl:0 ) ) verify-file? ( dev-perl/string-crc32 virtual/perl-Digest-MD5 ) REQUIRED_USE=ssl? ( ^^ ( openssl gnutls ) ) SLOT=0 SRC_URI=http://lftp.yar.ru/ftp/lftp-4.6.5.tar.xz _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils 28fb3e5852485af1c348d446b0b98389 libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=94dc00648677a7a16e56e41014e0f7b8 +_md5_=f50e30552663f5d55ac1da95bc0a1cb6 diff --git a/metadata/md5-cache/net-libs/gnutls-3.3.21 b/metadata/md5-cache/net-libs/gnutls-3.3.21 new file mode 100644 index 000000000000..c998464631d4 --- /dev/null +++ b/metadata/md5-cache/net-libs/gnutls-3.3.21 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=>=dev-libs/libtasn1-4.3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/nettle-2.7:=[gmp,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/gmp-5.1.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-devel/autogen crywrap? ( net-dns/libidn ) dane? ( >=net-dns/unbound-1.4.20[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) guile? ( >=dev-scheme/guile-1.8:*[networking] ) nls? ( >=virtual/libintl-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pkcs11? ( >=app-crypt/p11-kit-0.20.7[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20140508 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) >=sys-devel/automake-1.11.6 >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] doc? ( sys-apps/texinfo dev-util/gtk-doc ) nls? ( sys-devel/gettext ) test? ( app-misc/datefudge ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=A TLS 1.2 and SSL 3.0 implementation for the GNU project +EAPI=6 +HOMEPAGE=http://www.gnutls.org/ +IUSE=+cxx +crywrap dane doc examples guile nls +openssl pkcs11 static-libs test zlib linguas_en linguas_cs linguas_de linguas_fi linguas_fr linguas_it linguas_ms linguas_nl linguas_pl linguas_sv linguas_uk linguas_vi linguas_zh_CN abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +LICENSE=GPL-3 LGPL-3 +RDEPEND=>=dev-libs/libtasn1-4.3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/nettle-2.7:=[gmp,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/gmp-5.1.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-devel/autogen crywrap? ( net-dns/libidn ) dane? ( >=net-dns/unbound-1.4.20[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) guile? ( >=dev-scheme/guile-1.8:*[networking] ) nls? ( >=virtual/libintl-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pkcs11? ( >=app-crypt/p11-kit-0.20.7[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20140508 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) +SLOT=0 +SRC_URI=mirror://gnupg/gnutls/v3.3/gnutls-3.3.21.tar.xz +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils 28fb3e5852485af1c348d446b0b98389 libtool b75230758539a7da029e24afdb693960 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=527b4909ba7693986d35159210985cc8 diff --git a/metadata/md5-cache/net-libs/gnutls-3.4.9 b/metadata/md5-cache/net-libs/gnutls-3.4.9 new file mode 100644 index 000000000000..2695bfe860d8 --- /dev/null +++ b/metadata/md5-cache/net-libs/gnutls-3.4.9 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=>=dev-libs/libtasn1-4.3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/nettle-3.1:=[gmp,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/gmp-5.1.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] tools? ( sys-devel/autogen ) crywrap? ( net-dns/libidn ) dane? ( >=net-dns/unbound-1.4.20[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) guile? ( >=dev-scheme/guile-1.8:*[networking] ) nls? ( >=virtual/libintl-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pkcs11? ( >=app-crypt/p11-kit-0.23.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20140508 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) >=sys-devel/automake-1.11.6 >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] doc? ( sys-apps/texinfo dev-util/gtk-doc ) nls? ( sys-devel/gettext ) test? ( app-misc/datefudge ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=A TLS 1.2 and SSL 3.0 implementation for the GNU project +EAPI=6 +HOMEPAGE=http://www.gnutls.org/ +IUSE=+cxx +crywrap dane doc examples guile nls +openssl pkcs11 static-libs test +tools zlib linguas_en linguas_cs linguas_de linguas_fi linguas_fr linguas_it linguas_ms linguas_nl linguas_pl linguas_sv linguas_uk linguas_vi linguas_zh_CN abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +LICENSE=GPL-3 LGPL-3 +RDEPEND=>=dev-libs/libtasn1-4.3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/nettle-3.1:=[gmp,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/gmp-5.1.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] tools? ( sys-devel/autogen ) crywrap? ( net-dns/libidn ) dane? ( >=net-dns/unbound-1.4.20[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) guile? ( >=dev-scheme/guile-1.8:*[networking] ) nls? ( >=virtual/libintl-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pkcs11? ( >=app-crypt/p11-kit-0.23.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20140508 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) +SLOT=0/30 +SRC_URI=mirror://gnupg/gnutls/v3.4/gnutls-3.4.9.tar.xz +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils 28fb3e5852485af1c348d446b0b98389 libtool b75230758539a7da029e24afdb693960 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=cfadac2e28b86e49e900cfe75d5a2b54 diff --git a/metadata/md5-cache/net-libs/libbtbb-9999 b/metadata/md5-cache/net-libs/libbtbb-9999 index 84db1bba0bb1..1940dc6a5cce 100644 --- a/metadata/md5-cache/net-libs/libbtbb-9999 +++ b/metadata/md5-cache/net-libs/libbtbb-9999 @@ -1,11 +1,11 @@ DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=pcap? ( net-libs/libpcap ) wireshark-plugins? ( >=net-analyzer/wireshark-1.8.3-r1:= ) wireshark-plugins? ( dev-libs/glib virtual/pkgconfig ) sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) >=dev-vcs/git-1.8.2.1 +DEPEND=pcap? ( net-libs/libpcap[static-libs?] ) wireshark-plugins? ( >=net-analyzer/wireshark-1.8.3-r1:= ) wireshark-plugins? ( dev-libs/glib virtual/pkgconfig ) sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) >=dev-vcs/git-1.8.2.1 DESCRIPTION=A library to decode Bluetooth baseband packets EAPI=5 HOMEPAGE=http://libbtbb.sourceforge.net/ IUSE=+pcap static-libs +wireshark-plugins LICENSE=GPL-2 -RDEPEND=pcap? ( net-libs/libpcap ) wireshark-plugins? ( >=net-analyzer/wireshark-1.8.3-r1:= ) +RDEPEND=pcap? ( net-libs/libpcap[static-libs?] ) wireshark-plugins? ( >=net-analyzer/wireshark-1.8.3-r1:= ) SLOT=0/9999 _eclasses_=cmake-utils 3443785f3176b7cfdf7bd1f2c403bd9f eutils 28fb3e5852485af1c348d446b0b98389 flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 0961ca04f93a7ae0e4c4a0b2b8c3be99 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=ef1700fe1176ebc1c4c4fe090af158d8 +_md5_=655edc93335ab5cabf5fdfa9166832a5 diff --git a/metadata/md5-cache/net-misc/ntp-4.2.8_p6 b/metadata/md5-cache/net-misc/ntp-4.2.8_p6 index f50ea8c3a15e..86279ac8543f 100644 --- a/metadata/md5-cache/net-misc/ntp-4.2.8_p6 +++ b/metadata/md5-cache/net-misc/ntp-4.2.8_p6 @@ -4,11 +4,11 @@ DESCRIPTION=Network Time Protocol suite/programs EAPI=5 HOMEPAGE=http://www.ntp.org/ IUSE=caps debug ipv6 libressl openntpd parse-clocks readline samba selinux snmp ssl +threads vim-syntax zeroconf -KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~m68k-mint +KEYWORDS=alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~m68k-mint LICENSE=HPND BSD ISC PDEPEND=openntpd? ( net-misc/openntpd ) RDEPEND=readline? ( >=sys-libs/readline-4.1:0= ) >=dev-libs/libevent-2.0.9[threads?] kernel_linux? ( caps? ( sys-libs/libcap ) ) zeroconf? ( net-dns/avahi[mdnsresponder-compat] ) !openntpd? ( !net-misc/openntpd ) snmp? ( net-analyzer/net-snmp ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl ) ) parse-clocks? ( net-misc/pps-tools ) selinux? ( sec-policy/selinux-ntp ) vim-syntax? ( app-vim/ntp-syntax ) SLOT=0 SRC_URI=http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-4.2.8p6.tar.gz https://dev.gentoo.org/~polynomial-c/ntp-4.2.8p6-manpages.tar.bz2 _eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 user 906f3c8eb3a2350a4f1191a89baa3e46 -_md5_=f6c6c0c1f99dbe74b43aa6fe2ede9a75 +_md5_=12cdcb807eceedee69711b8e08d25a39 diff --git a/metadata/md5-cache/net-wireless/ubertooth-2015.09.2 b/metadata/md5-cache/net-wireless/ubertooth-2015.09.2 deleted file mode 100644 index 5c0b390fa714..000000000000 --- a/metadata/md5-cache/net-wireless/ubertooth-2015.09.2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=bluez? ( net-wireless/bluez:= ) >=net-libs/libbtbb-2015.09.2:= pcap? ( net-libs/libbtbb[pcap] ) specan? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) virtual/libusb:1= sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) virtual/pkgconfig -DESCRIPTION=An open source wireless development platform suitable for Bluetooth experimentation -EAPI=5 -HOMEPAGE=http://ubertooth.sourceforge.net/ -IUSE=+bluez +specan +pcap +ubertooth1-firmware +udev python_targets_python2_7 -KEYWORDS=~amd64 ~arm ~x86 -LICENSE=GPL-2 -RDEPEND=bluez? ( net-wireless/bluez:= ) >=net-libs/libbtbb-2015.09.2:= pcap? ( net-libs/libbtbb[pcap] ) specan? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) virtual/libusb:1= specan? ( >=dev-qt/qtgui-4.7.2:4 >=dev-python/pyside-1.0.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/numpy-1.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) udev? ( virtual/udev ) -REQUIRED_USE=specan? ( || ( python_targets_python2_7 ) ) -SLOT=0 -SRC_URI=https://github.com/greatscottgadgets/ubertooth/releases/download/2015-09-R2/ubertooth-2015-09-R2.tar.xz https://github.com/greatscottgadgets/ubertooth/releases/download/2015-09-R2/ubertooth_one_rx_only.dfu -_eclasses_=cmake-utils 3443785f3176b7cfdf7bd1f2c403bd9f distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c eutils 28fb3e5852485af1c348d446b0b98389 flag-o-matic d270fa247153df66074f795fa42dba3e multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 30887c5e8630bbf27b5cf0fd74564323 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 37ef89be271b9ae8aa64be024ddb39b5 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=e947e4081859c107f50a609442359959 diff --git a/metadata/md5-cache/net-wireless/ubertooth-2015.10.1 b/metadata/md5-cache/net-wireless/ubertooth-2015.10.1 index 4cf3450f4f17..9d077416a2f9 100644 --- a/metadata/md5-cache/net-wireless/ubertooth-2015.10.1 +++ b/metadata/md5-cache/net-wireless/ubertooth-2015.10.1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=bluez? ( net-wireless/bluez:= ) >=net-libs/libbtbb-2015.10.1:= pcap? ( net-libs/libbtbb[pcap] ) specan? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) virtual/libusb:1= sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) virtual/pkgconfig -DESCRIPTION=An open source wireless development platform suitable for Bluetooth experimentation +DESCRIPTION=open source wireless development platform suitable for Bluetooth experimentation EAPI=5 HOMEPAGE=http://ubertooth.sourceforge.net/ IUSE=+bluez +specan +pcap +ubertooth1-firmware +udev python_targets_python2_7 @@ -11,4 +11,4 @@ REQUIRED_USE=specan? ( || ( python_targets_python2_7 ) ) SLOT=0 SRC_URI=https://github.com/greatscottgadgets/ubertooth/releases/download/2015-10-R1/ubertooth-2015-10-R1.tar.xz _eclasses_=cmake-utils 3443785f3176b7cfdf7bd1f2c403bd9f distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c eutils 28fb3e5852485af1c348d446b0b98389 flag-o-matic d270fa247153df66074f795fa42dba3e multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 30887c5e8630bbf27b5cf0fd74564323 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 37ef89be271b9ae8aa64be024ddb39b5 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=78d544b5b459685327234ed680bc4de4 +_md5_=7c82b8d581e39dafc7dd545994d9f6f6 diff --git a/metadata/md5-cache/net-wireless/ubertooth-9999 b/metadata/md5-cache/net-wireless/ubertooth-9999 index c9301fd27f60..f7437eb2534e 100644 --- a/metadata/md5-cache/net-wireless/ubertooth-9999 +++ b/metadata/md5-cache/net-wireless/ubertooth-9999 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=bluez? ( net-wireless/bluez:= ) >=net-libs/libbtbb-9999:= pcap? ( net-libs/libbtbb[pcap] ) specan? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) virtual/libusb:1= sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) virtual/pkgconfig >=dev-vcs/git-1.8.2.1 -DESCRIPTION=An open source wireless development platform suitable for Bluetooth experimentation +DEPEND=bluez? ( net-wireless/bluez:= ) >=net-libs/libbtbb-9999:=[static-libs?] pcap? ( net-libs/libbtbb[pcap] ) specan? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) static-libs? ( dev-libs/libusb[static-libs] ) virtual/libusb:1= sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) virtual/pkgconfig >=dev-vcs/git-1.8.2.1 +DESCRIPTION=open source wireless development platform suitable for Bluetooth experimentation EAPI=5 HOMEPAGE=http://ubertooth.sourceforge.net/ -IUSE=+bluez +specan +pcap +ubertooth1-firmware +udev python_targets_python2_7 +IUSE=+bluez +specan static-libs +pcap +ubertooth1-firmware +udev python_targets_python2_7 LICENSE=GPL-2 -RDEPEND=bluez? ( net-wireless/bluez:= ) >=net-libs/libbtbb-9999:= pcap? ( net-libs/libbtbb[pcap] ) specan? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) virtual/libusb:1= specan? ( >=dev-qt/qtgui-4.7.2:4 >=dev-python/pyside-1.0.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/numpy-1.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) udev? ( virtual/udev ) +RDEPEND=bluez? ( net-wireless/bluez:= ) >=net-libs/libbtbb-9999:=[static-libs?] pcap? ( net-libs/libbtbb[pcap] ) specan? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) static-libs? ( dev-libs/libusb[static-libs] ) virtual/libusb:1= specan? ( >=dev-qt/qtgui-4.7.2:4 >=dev-python/pyside-1.0.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/numpy-1.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) udev? ( virtual/udev ) REQUIRED_USE=specan? ( || ( python_targets_python2_7 ) ) SLOT=0 _eclasses_=cmake-utils 3443785f3176b7cfdf7bd1f2c403bd9f distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c eutils 28fb3e5852485af1c348d446b0b98389 flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 0961ca04f93a7ae0e4c4a0b2b8c3be99 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 30887c5e8630bbf27b5cf0fd74564323 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 37ef89be271b9ae8aa64be024ddb39b5 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=78d544b5b459685327234ed680bc4de4 +_md5_=18c449d15fe6415c51d07ddfa1461607 diff --git a/metadata/md5-cache/www-client/google-chrome-48.0.2564.97_p1 b/metadata/md5-cache/www-client/google-chrome-48.0.2564.103_p1 similarity index 91% rename from metadata/md5-cache/www-client/google-chrome-48.0.2564.97_p1 rename to metadata/md5-cache/www-client/google-chrome-48.0.2564.103_p1 index a77d53642622..d84091aa34a8 100644 --- a/metadata/md5-cache/www-client/google-chrome-48.0.2564.97_p1 +++ b/metadata/md5-cache/www-client/google-chrome-48.0.2564.103_p1 @@ -9,6 +9,6 @@ LICENSE=google-chrome RDEPEND=app-arch/bzip2 app-misc/ca-certificates dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss gnome-base/gconf:2 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype:2 net-print/cups sys-apps/dbus sys-libs/libcap x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 >=x11-libs/libX11-1.5.0 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst x11-libs/pango x11-misc/xdg-utils RESTRICT=bindist mirror strip SLOT=0 -SRC_URI=amd64? ( https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_48.0.2564.97-1_amd64.deb ) x86? ( https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_48.0.2564.97-1_i386.deb ) +SRC_URI=amd64? ( https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_48.0.2564.103-1_amd64.deb ) x86? ( https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_48.0.2564.103-1_i386.deb ) _eclasses_=chromium e6257bd55bfdac1269e99d4d7ed21cda eutils 28fb3e5852485af1c348d446b0b98389 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d gnome2-utils d19e7813f27c8f982134d657889b13cf linux-info fd1e29abbb02cbc49f1a14299846e9c4 multilib 3972ca401cf7dbb430df9995f5d8d580 pax-utils ecf634cba91bb9591a8fdb6f6145f1bb readme.gentoo df3fc8fdaf5a519e7d48c83e7592c95f toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 _md5_=990a917ea8f90445a510123739ba2895 diff --git a/metadata/md5-cache/www-client/vivaldi-1.0.385.5_p1 b/metadata/md5-cache/www-client/vivaldi-1.0.385.5_p1 new file mode 100644 index 000000000000..bf149aa86945 --- /dev/null +++ b/metadata/md5-cache/www-client/vivaldi-1.0.385.5_p1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=install postinst postrm preinst prepare setup unpack +DEPEND=>=sys-apps/sed-4 +DESCRIPTION=A new browser for our friends +EAPI=5 +HOMEPAGE=http://vivaldi.com/ +IUSE=+linguas_am +linguas_ar +linguas_bg +linguas_bn +linguas_ca +linguas_cs +linguas_da +linguas_de +linguas_el +linguas_en_GB +linguas_en_US +linguas_es_419 +linguas_es +linguas_et +linguas_fa +linguas_fil +linguas_fi +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=Vivaldi +RDEPEND=dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss >=dev-libs/openssl-1.0.1:0 gnome-base/gconf:2 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype net-misc/curl net-print/cups sys-apps/dbus sys-libs/libcap x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/pango[X] +RESTRICT=bindist mirror +SLOT=0 +SRC_URI=amd64? ( http://vivaldi.com/download/snapshot/vivaldi-snapshot_1.0.385.5-1_amd64.deb -> vivaldi-1.0.385.5_p1-amd64.deb ) x86? ( http://vivaldi.com/download/snapshot/vivaldi-snapshot_1.0.385.5-1_i386.deb -> vivaldi-1.0.385.5_p1-i386.deb ) +_eclasses_=chromium e6257bd55bfdac1269e99d4d7ed21cda eutils 28fb3e5852485af1c348d446b0b98389 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d gnome2-utils d19e7813f27c8f982134d657889b13cf linux-info fd1e29abbb02cbc49f1a14299846e9c4 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=745c5f961ffb94ce5d6d849de85c8148 diff --git a/metadata/md5-cache/www-plugins/chrome-binary-plugins-48.0.2564.97_p1 b/metadata/md5-cache/www-plugins/chrome-binary-plugins-48.0.2564.103_p1 similarity index 75% rename from metadata/md5-cache/www-plugins/chrome-binary-plugins-48.0.2564.97_p1 rename to metadata/md5-cache/www-plugins/chrome-binary-plugins-48.0.2564.103_p1 index 1f9aa39b5bd3..3f44e0f91355 100644 --- a/metadata/md5-cache/www-plugins/chrome-binary-plugins-48.0.2564.97_p1 +++ b/metadata/md5-cache/www-plugins/chrome-binary-plugins-48.0.2564.103_p1 @@ -8,6 +8,6 @@ LICENSE=google-chrome RDEPEND=!www-plugins/chrome-binary-plugins:0 !www-plugins/chrome-binary-plugins:beta !www-plugins/chrome-binary-plugins:unstable RESTRICT=bindist mirror strip SLOT=stable -SRC_URI=amd64? ( https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_48.0.2564.97-1_amd64.deb ) x86? ( https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_48.0.2564.97-1_i386.deb ) +SRC_URI=amd64? ( https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_48.0.2564.103-1_amd64.deb ) x86? ( https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_48.0.2564.103-1_i386.deb ) _eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 _md5_=2120e87afcef9e45ad79c54439d3ced7 diff --git a/metadata/md5-cache/www-servers/nginx-1.8.0 b/metadata/md5-cache/www-servers/nginx-1.8.0 deleted file mode 100644 index e1207518247f..000000000000 --- a/metadata/md5-cache/www-servers/nginx-1.8.0 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup test unpack -DEPEND=pcre? ( >=dev-libs/libpcre-4.2 ) pcre-jit? ( >=dev-libs/libpcre-8.20[jit] ) ssl? ( dev-libs/openssl:0= ) http-cache? ( userland_GNU? ( dev-libs/openssl:0= ) ) nginx_modules_http_geoip? ( dev-libs/geoip ) nginx_modules_http_gunzip? ( sys-libs/zlib ) nginx_modules_http_gzip? ( sys-libs/zlib ) nginx_modules_http_gzip_static? ( sys-libs/zlib ) nginx_modules_http_image_filter? ( media-libs/gd[jpeg,png] ) nginx_modules_http_perl? ( >=dev-lang/perl-5.8 ) nginx_modules_http_rewrite? ( >=dev-libs/libpcre-4.2 ) nginx_modules_http_secure_link? ( userland_GNU? ( dev-libs/openssl:0= ) ) nginx_modules_http_spdy? ( >=dev-libs/openssl-1.0.1c:0= ) nginx_modules_http_xslt? ( dev-libs/libxml2 dev-libs/libxslt ) nginx_modules_http_lua? ( !luajit? ( dev-lang/lua:0= ) luajit? ( dev-lang/luajit:2= ) ) nginx_modules_http_auth_pam? ( virtual/pam ) nginx_modules_http_metrics? ( dev-libs/yajl ) nginx_modules_http_dav_ext? ( dev-libs/expat ) nginx_modules_http_security? ( >=dev-libs/libxml2-2.7.8 dev-libs/apr-util www-servers/apache ) arm? ( dev-libs/libatomic_ops ) libatomic? ( dev-libs/libatomic_ops ) ssl? ( dev-libs/openssl ) virtual/pkgconfig -DESCRIPTION=Robust, small and high performance http and reverse proxy server -EAPI=5 -HOMEPAGE=http://nginx.org -IUSE=aio debug +http +http-cache ipv6 libatomic luajit +pcre pcre-jit rtmp selinux ssl userland_GNU vim-syntax +nginx_modules_http_access +nginx_modules_http_auth_basic +nginx_modules_http_autoindex +nginx_modules_http_browser +nginx_modules_http_charset +nginx_modules_http_empty_gif +nginx_modules_http_fastcgi +nginx_modules_http_geo +nginx_modules_http_gzip +nginx_modules_http_limit_req +nginx_modules_http_limit_conn +nginx_modules_http_map +nginx_modules_http_memcached +nginx_modules_http_proxy +nginx_modules_http_referer +nginx_modules_http_rewrite +nginx_modules_http_scgi +nginx_modules_http_ssi +nginx_modules_http_split_clients +nginx_modules_http_upstream_ip_hash +nginx_modules_http_userid +nginx_modules_http_uwsgi nginx_modules_http_addition nginx_modules_http_auth_request nginx_modules_http_dav nginx_modules_http_degradation nginx_modules_http_flv nginx_modules_http_geoip nginx_modules_http_gunzip nginx_modules_http_gzip_static nginx_modules_http_image_filter nginx_modules_http_mp4 nginx_modules_http_perl nginx_modules_http_random_index nginx_modules_http_realip nginx_modules_http_secure_link nginx_modules_http_spdy nginx_modules_http_stub_status nginx_modules_http_sub nginx_modules_http_xslt nginx_modules_mail_imap nginx_modules_mail_pop3 nginx_modules_mail_smtp nginx_modules_http_upload_progress nginx_modules_http_headers_more nginx_modules_http_cache_purge nginx_modules_http_slowfs_cache nginx_modules_http_fancyindex nginx_modules_http_lua nginx_modules_http_auth_pam nginx_modules_http_upstream_check nginx_modules_http_metrics nginx_modules_http_naxsi nginx_modules_http_dav_ext nginx_modules_http_echo nginx_modules_http_security nginx_modules_http_push_stream nginx_modules_http_sticky nginx_modules_http_ajp nginx_modules_http_mogilefs ssl -KEYWORDS=amd64 ~arm ~arm64 ~ppc x86 ~x86-fbsd ~amd64-linux ~x86-linux -LICENSE=BSD-2 BSD SSLeay MIT GPL-2 GPL-2+ nginx_modules_http_security? ( Apache-2.0 ) nginx_modules_http_push_stream? ( GPL-3 ) -PDEPEND=vim-syntax? ( app-vim/nginx-syntax ) -RDEPEND=pcre? ( >=dev-libs/libpcre-4.2 ) pcre-jit? ( >=dev-libs/libpcre-8.20[jit] ) ssl? ( dev-libs/openssl:0= ) http-cache? ( userland_GNU? ( dev-libs/openssl:0= ) ) nginx_modules_http_geoip? ( dev-libs/geoip ) nginx_modules_http_gunzip? ( sys-libs/zlib ) nginx_modules_http_gzip? ( sys-libs/zlib ) nginx_modules_http_gzip_static? ( sys-libs/zlib ) nginx_modules_http_image_filter? ( media-libs/gd[jpeg,png] ) nginx_modules_http_perl? ( >=dev-lang/perl-5.8 ) nginx_modules_http_rewrite? ( >=dev-libs/libpcre-4.2 ) nginx_modules_http_secure_link? ( userland_GNU? ( dev-libs/openssl:0= ) ) nginx_modules_http_spdy? ( >=dev-libs/openssl-1.0.1c:0= ) nginx_modules_http_xslt? ( dev-libs/libxml2 dev-libs/libxslt ) nginx_modules_http_lua? ( !luajit? ( dev-lang/lua:0= ) luajit? ( dev-lang/luajit:2= ) ) nginx_modules_http_auth_pam? ( virtual/pam ) nginx_modules_http_metrics? ( dev-libs/yajl ) nginx_modules_http_dav_ext? ( dev-libs/expat ) nginx_modules_http_security? ( >=dev-libs/libxml2-2.7.8 dev-libs/apr-util www-servers/apache ) selinux? ( sec-policy/selinux-nginx ) -REQUIRED_USE=pcre-jit? ( pcre ) nginx_modules_http_lua? ( nginx_modules_http_rewrite ) nginx_modules_http_naxsi? ( pcre ) nginx_modules_http_dav_ext? ( nginx_modules_http_dav ) nginx_modules_http_metrics? ( nginx_modules_http_stub_status ) nginx_modules_http_security? ( pcre ) nginx_modules_http_push_stream? ( ssl ) -SLOT=0 -SRC_URI=http://nginx.org/download/nginx-1.8.0.tar.gz https://github.com/simpl/ngx_devel_kit/archive/v0.2.19.tar.gz -> ngx_devel_kit-0.2.19-r1.tar.gz nginx_modules_http_upload_progress? ( https://github.com/masterzen/nginx-upload-progress-module/archive/v0.9.1.tar.gz -> ngx_http_upload_progress-0.9.1-r1.tar.gz ) nginx_modules_http_headers_more? ( https://github.com/agentzh/headers-more-nginx-module/archive/v0.26.tar.gz -> ngx_http_headers_more-0.26.tar.gz ) nginx_modules_http_cache_purge? ( http://labs.frickle.com/files/ngx_cache_purge-2.3.tar.gz -> ngx_http_cache_purge-2.3.tar.gz ) nginx_modules_http_slowfs_cache? ( http://labs.frickle.com/files/ngx_slowfs_cache-1.10.tar.gz -> ngx_http_slowfs_cache-1.10.tar.gz ) nginx_modules_http_fancyindex? ( https://github.com/aperezdc/ngx-fancyindex/archive/v0.3.5.tar.gz -> ngx_http_fancyindex-0.3.5.tar.gz ) nginx_modules_http_lua? ( https://github.com/openresty/lua-nginx-module/archive/v0.9.15.tar.gz -> ngx_http_lua-0.9.15.tar.gz ) nginx_modules_http_auth_pam? ( https://github.com/stogh/ngx_http_auth_pam_module/archive/v1.4.tar.gz -> ngx_http_auth_pam-1.4.tar.gz ) nginx_modules_http_upstream_check? ( https://github.com/yaoweibin/nginx_upstream_check_module/archive/v0.3.0.tar.gz -> ngx_http_upstream_check-0.3.0.tar.gz ) nginx_modules_http_metrics? ( https://github.com/madvertise/ngx_metrics/archive/v0.1.1.tar.gz -> ngx_metrics-0.1.1.tar.gz ) nginx_modules_http_naxsi? ( https://github.com/nbs-system/naxsi/archive/0.53-2.tar.gz -> ngx_http_naxsi-0.53-2.tar.gz ) rtmp? ( https://github.com/arut/nginx-rtmp-module/archive/v1.1.7.tar.gz -> ngx_rtmp-1.1.7.tar.gz ) nginx_modules_http_dav_ext? ( https://github.com/arut/nginx-dav-ext-module/archive/v0.0.3.tar.gz -> ngx_http_dav_ext-0.0.3.tar.gz ) nginx_modules_http_echo? ( https://github.com/agentzh/echo-nginx-module/archive/v0.57.tar.gz -> ngx_http_echo-0.57.tar.gz ) nginx_modules_http_security? ( https://www.modsecurity.org/tarball/2.9.0/modsecurity-2.9.0.tar.gz -> modsecurity-2.9.0.tar.gz ) nginx_modules_http_push_stream? ( https://github.com/wandenberg/nginx-push-stream-module/archive/0.4.1.tar.gz -> ngx_http_push_stream-0.4.1.tar.gz ) nginx_modules_http_sticky? ( https://bitbucket.org/nginx-goodies/nginx-sticky-module-ng/get/1.2.5.tar.bz2 -> nginx_http_sticky_module_ng-1.2.5.tar.bz2 ) nginx_modules_http_mogilefs? ( http://www.grid.net.ru/nginx/download/nginx_mogilefs_module-1.0.4.tar.gz -> ngx_mogilefs_module-1.0.4.tar.gz ) -_eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c ssl-cert e90a74de57c48ea6c058b1cb3a735907 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 user 906f3c8eb3a2350a4f1191a89baa3e46 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=5640d03c076cfa5cf9329e7357306e58 diff --git a/metadata/md5-cache/www-servers/nginx-1.9.7 b/metadata/md5-cache/www-servers/nginx-1.9.10 similarity index 67% rename from metadata/md5-cache/www-servers/nginx-1.9.7 rename to metadata/md5-cache/www-servers/nginx-1.9.10 index 5f8f7ba458ce..0c39d878d227 100644 --- a/metadata/md5-cache/www-servers/nginx-1.9.7 +++ b/metadata/md5-cache/www-servers/nginx-1.9.10 @@ -10,6 +10,6 @@ PDEPEND=vim-syntax? ( app-vim/nginx-syntax ) RDEPEND=pcre? ( >=dev-libs/libpcre-4.2 ) pcre-jit? ( >=dev-libs/libpcre-8.20[jit] ) ssl? ( dev-libs/openssl:0= ) http2? ( >=dev-libs/openssl-1.0.1c:0= ) http-cache? ( userland_GNU? ( dev-libs/openssl:0= ) ) nginx_modules_http_geoip? ( dev-libs/geoip ) nginx_modules_http_gunzip? ( sys-libs/zlib ) nginx_modules_http_gzip? ( sys-libs/zlib ) nginx_modules_http_gzip_static? ( sys-libs/zlib ) nginx_modules_http_image_filter? ( media-libs/gd[jpeg,png] ) nginx_modules_http_perl? ( >=dev-lang/perl-5.8 ) nginx_modules_http_rewrite? ( >=dev-libs/libpcre-4.2 ) nginx_modules_http_secure_link? ( userland_GNU? ( dev-libs/openssl:0= ) ) nginx_modules_http_xslt? ( dev-libs/libxml2 dev-libs/libxslt ) nginx_modules_http_lua? ( !luajit? ( dev-lang/lua:0= ) luajit? ( dev-lang/luajit:2= ) ) nginx_modules_http_auth_pam? ( virtual/pam ) nginx_modules_http_metrics? ( dev-libs/yajl ) nginx_modules_http_dav_ext? ( dev-libs/expat ) nginx_modules_http_security? ( >=dev-libs/libxml2-2.7.8 dev-libs/apr-util www-servers/apache ) selinux? ( sec-policy/selinux-nginx ) !www-servers/nginx:0 REQUIRED_USE=pcre-jit? ( pcre ) nginx_modules_http_lua? ( nginx_modules_http_rewrite ) nginx_modules_http_naxsi? ( pcre ) nginx_modules_http_dav_ext? ( nginx_modules_http_dav ) nginx_modules_http_metrics? ( nginx_modules_http_stub_status ) nginx_modules_http_security? ( pcre ) nginx_modules_http_push_stream? ( ssl ) SLOT=mainline -SRC_URI=http://nginx.org/download/nginx-1.9.7.tar.gz https://github.com/simpl/ngx_devel_kit/archive/v0.2.19.tar.gz -> ngx_devel_kit-0.2.19-r1.tar.gz nginx_modules_http_upload_progress? ( https://github.com/masterzen/nginx-upload-progress-module/archive/v0.9.1.tar.gz -> ngx_http_upload_progress-0.9.1-r1.tar.gz ) nginx_modules_http_headers_more? ( https://github.com/agentzh/headers-more-nginx-module/archive/v0.28.tar.gz -> ngx_http_headers_more-0.28.tar.gz ) nginx_modules_http_cache_purge? ( http://labs.frickle.com/files/ngx_cache_purge-2.3.tar.gz -> ngx_http_cache_purge-2.3.tar.gz ) nginx_modules_http_slowfs_cache? ( http://labs.frickle.com/files/ngx_slowfs_cache-1.10.tar.gz -> ngx_http_slowfs_cache-1.10.tar.gz ) nginx_modules_http_fancyindex? ( https://github.com/aperezdc/ngx-fancyindex/archive/v0.3.5.tar.gz -> ngx_http_fancyindex-0.3.5.tar.gz ) nginx_modules_http_lua? ( https://github.com/openresty/lua-nginx-module/archive/v0.9.19.tar.gz -> ngx_http_lua-0.9.19.tar.gz ) nginx_modules_http_auth_pam? ( https://github.com/stogh/ngx_http_auth_pam_module/archive/v1.4.tar.gz -> ngx_http_auth_pam-1.4.tar.gz ) nginx_modules_http_upstream_check? ( https://github.com/yaoweibin/nginx_upstream_check_module/archive/v0.3.0.tar.gz -> ngx_http_upstream_check-0.3.0.tar.gz ) nginx_modules_http_metrics? ( https://github.com/madvertise/ngx_metrics/archive/v0.1.1.tar.gz -> ngx_metrics-0.1.1.tar.gz ) nginx_modules_http_naxsi? ( https://github.com/nbs-system/naxsi/archive/0.54.tar.gz -> ngx_http_naxsi-0.54.tar.gz ) rtmp? ( https://github.com/arut/nginx-rtmp-module/archive/v1.1.7.tar.gz -> ngx_rtmp-1.1.7.tar.gz ) nginx_modules_http_dav_ext? ( https://github.com/arut/nginx-dav-ext-module/archive/v0.0.3.tar.gz -> ngx_http_dav_ext-0.0.3.tar.gz ) nginx_modules_http_echo? ( https://github.com/agentzh/echo-nginx-module/archive/v0.58.tar.gz -> ngx_http_echo-0.58.tar.gz ) nginx_modules_http_security? ( https://www.modsecurity.org/tarball/2.9.0/modsecurity-2.9.0.tar.gz -> modsecurity-2.9.0.tar.gz ) nginx_modules_http_push_stream? ( https://github.com/wandenberg/nginx-push-stream-module/archive/0.5.1.tar.gz -> ngx_http_push_stream-0.5.1.tar.gz ) nginx_modules_http_sticky? ( https://bitbucket.org/nginx-goodies/nginx-sticky-module-ng/get/1.2.6.tar.bz2 -> nginx_http_sticky_module_ng-1.2.6.tar.bz2 ) nginx_modules_http_mogilefs? ( http://www.grid.net.ru/nginx/download/nginx_mogilefs_module-1.0.4.tar.gz -> ngx_mogilefs_module-1.0.4.tar.gz ) nginx_modules_http_memc? ( https://github.com/openresty/memc-nginx-module/archive/v0.16.tar.gz -> ngx_memc_module-0.16.tar.gz ) +SRC_URI=http://nginx.org/download/nginx-1.9.10.tar.gz https://github.com/simpl/ngx_devel_kit/archive/v0.2.19.tar.gz -> ngx_devel_kit-0.2.19-r1.tar.gz nginx_modules_http_upload_progress? ( https://github.com/masterzen/nginx-upload-progress-module/archive/v0.9.1.tar.gz -> ngx_http_upload_progress-0.9.1-r1.tar.gz ) nginx_modules_http_headers_more? ( https://github.com/agentzh/headers-more-nginx-module/archive/v0.28.tar.gz -> ngx_http_headers_more-0.28.tar.gz ) nginx_modules_http_cache_purge? ( http://labs.frickle.com/files/ngx_cache_purge-2.3.tar.gz -> ngx_http_cache_purge-2.3.tar.gz ) nginx_modules_http_slowfs_cache? ( http://labs.frickle.com/files/ngx_slowfs_cache-1.10.tar.gz -> ngx_http_slowfs_cache-1.10.tar.gz ) nginx_modules_http_fancyindex? ( https://github.com/aperezdc/ngx-fancyindex/archive/v0.3.5.tar.gz -> ngx_http_fancyindex-0.3.5.tar.gz ) nginx_modules_http_lua? ( https://github.com/openresty/lua-nginx-module/archive/v0.9.19.tar.gz -> ngx_http_lua-0.9.19.tar.gz ) nginx_modules_http_auth_pam? ( https://github.com/stogh/ngx_http_auth_pam_module/archive/v1.4.tar.gz -> ngx_http_auth_pam-1.4.tar.gz ) nginx_modules_http_upstream_check? ( https://github.com/yaoweibin/nginx_upstream_check_module/archive/v0.3.0.tar.gz -> ngx_http_upstream_check-0.3.0.tar.gz ) nginx_modules_http_metrics? ( https://github.com/madvertise/ngx_metrics/archive/v0.1.1.tar.gz -> ngx_metrics-0.1.1.tar.gz ) nginx_modules_http_naxsi? ( https://github.com/nbs-system/naxsi/archive/0.54.tar.gz -> ngx_http_naxsi-0.54.tar.gz ) rtmp? ( https://github.com/arut/nginx-rtmp-module/archive/v1.1.7.tar.gz -> ngx_rtmp-1.1.7.tar.gz ) nginx_modules_http_dav_ext? ( https://github.com/arut/nginx-dav-ext-module/archive/v0.0.3.tar.gz -> ngx_http_dav_ext-0.0.3.tar.gz ) nginx_modules_http_echo? ( https://github.com/agentzh/echo-nginx-module/archive/v0.58.tar.gz -> ngx_http_echo-0.58.tar.gz ) nginx_modules_http_security? ( https://www.modsecurity.org/tarball/2.9.0/modsecurity-2.9.0.tar.gz -> modsecurity-2.9.0.tar.gz ) nginx_modules_http_push_stream? ( https://github.com/wandenberg/nginx-push-stream-module/archive/0.5.1.tar.gz -> ngx_http_push_stream-0.5.1.tar.gz ) nginx_modules_http_sticky? ( https://bitbucket.org/nginx-goodies/nginx-sticky-module-ng/get/1.2.6.tar.bz2 -> nginx_http_sticky_module_ng-1.2.6.tar.bz2 ) nginx_modules_http_mogilefs? ( http://www.grid.net.ru/nginx/download/nginx_mogilefs_module-1.0.4.tar.gz -> ngx_mogilefs_module-1.0.4.tar.gz ) nginx_modules_http_memc? ( https://github.com/openresty/memc-nginx-module/archive/v0.16.tar.gz -> ngx_memc_module-0.16.tar.gz ) _eclasses_=eutils 28fb3e5852485af1c348d446b0b98389 flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c ssl-cert e90a74de57c48ea6c058b1cb3a735907 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 user 906f3c8eb3a2350a4f1191a89baa3e46 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=3f39d54c2af6a93f38b3f8df16510516 +_md5_=8c37f533b61fc7ea0fd6689802f96493 diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index c49c7e64b6c3..e3ebffe7fc7d 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Wed, 03 Feb 2016 19:08:20 +0000 +Thu, 04 Feb 2016 09:38:16 +0000 diff --git a/metadata/projects.xml b/metadata/projects.xml index eed052093712..8617153aa16c 100644 --- a/metadata/projects.xml +++ b/metadata/projects.xml @@ -2644,11 +2644,6 @@ The Portage Development Project is devoted to maintaining and updating Portages core functionality and utilities. - - antarus@gentoo.org - Alec Warner - Code Reviews, on leave. - bernalex@gentoo.org Alexander Berntsen diff --git a/metadata/timestamp b/metadata/timestamp index 5d34651db893..ad8fdeb55401 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Wed Feb 3 19:07:30 UTC 2016 +Thu Feb 4 09:37:24 UTC 2016 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 7e95cd7ee638..472388886c83 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Wed, 03 Feb 2016 19:30:02 +0000 +Thu, 04 Feb 2016 10:00:01 +0000 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index 36c54f8bba5c..d5cd4886416c 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1454526301 Wed 03 Feb 2016 07:05:01 PM UTC +1454578501 Thu 04 Feb 2016 09:35:01 AM UTC diff --git a/net-ftp/lftp/lftp-4.6.5.ebuild b/net-ftp/lftp/lftp-4.6.5.ebuild index 00c0427d4e25..914a38819c29 100644 --- a/net-ftp/lftp/lftp-4.6.5.ebuild +++ b/net-ftp/lftp/lftp-4.6.5.ebuild @@ -11,7 +11,7 @@ SRC_URI="${HOMEPAGE}ftp/${P}.tar.xz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="convert-mozilla-cookies +gnutls idn ipv6 nls openssl socks5 +ssl verify-file" LFTP_LINGUAS=( cs de es fr it ja ko pl pt_BR ru uk zh_CN zh_HK zh_TW ) diff --git a/net-libs/gnutls/Manifest b/net-libs/gnutls/Manifest index 340cac079671..f0f319a476d9 100644 --- a/net-libs/gnutls/Manifest +++ b/net-libs/gnutls/Manifest @@ -2,7 +2,9 @@ DIST gnutls-3.3.17.1.tar.xz 6339588 SHA256 b40f158030a92f450a07b20300a3996710ca1 DIST gnutls-3.3.18.tar.xz 6275948 SHA256 7a87e7f486d1ada10007356917a412cde6c6114dac018e3569e3aa09e9f29395 SHA512 e7c972458ad0af401121c705ebe86aafa46c02743d963b1b67ca09192c746a9193c73d28501b6c046435259b40ac0f8d201860cd6cf6240a7783b6c01b64286c WHIRLPOOL ce2134515d234d6dbceebefd5602bc7f0d96faff839055fd401149c6969a245f5284d7e29ae2eca810fa6039d7184477b9fda2ae0faa379262434927320ebde3 DIST gnutls-3.3.19.tar.xz 6280376 SHA256 888d8779b48f21959b33d4d9ad0b546e5ec3dea20abf0d9bb03869d56b1f44cf SHA512 d204ba16d5806d8a19df1825ceee49583b0d34ea212fe40e8d81a28f8843e18b211af5b8455fc0c84c0643fc23b12bd6434e6174170382d8e732e32f0d1f2fa2 WHIRLPOOL 7b68978de61edef731268a9ed7405735e589e1f6180a05e5f7b5466f1fde898da42ab9116242f2b210571c60c7f7ea1a4136323fd2dd305ebe442ec066092ee4 DIST gnutls-3.3.20.tar.xz 6281012 SHA256 4c903e5cde7a8f15318af9a7a6c9b7fc8348594b0a1e9ac767636ef2187399ea SHA512 83059242a01a700abbca7f400712127ac3664e56e839929d1fe8571c2296b63f3c18f3fed04b5445973f4658b6b70ede85fadcc129a848a2fbbdac83437b97d1 WHIRLPOOL 32c7145a14e953ee348d8ae649236bb70fe7afd61f200fed067192d7851d4501d9d70e19a615f71de026852e2a3c8b9acde1dc8c3a0ac445d9f32da5784b2351 +DIST gnutls-3.3.21.tar.xz 6284464 SHA256 885ccb46e52f5a9f5aed3edf8aae4d67aa85e41b72471bed93e84fe3f7df3e5e SHA512 5161b036b3c55fec920e859b6e19aca8e7b667e53fa33666a2a28a16a6ff71b78da051798a36f09413f69c4d88ac5e48da9b2135751e78e9a7bed8d7a8c9cd19 WHIRLPOOL 104a129f8147386707e1a6ad690e1f6c27e2c8f09b05e16fc4ff191dfe6d6452213d3151645885b33daf45bbbd3c9d0ee521e5ea50dba752bcb1cc7616e01fc4 DIST gnutls-3.4.5.tar.xz 6552036 SHA256 af88b8e0460728d034ff3f454f7851a09b7f0959a93531b6f8d35658ef0f7aae SHA512 16dfdaecbcc0b02ea762def35724a3433063136429d0eb67d9e009ced14a6ddddfa567f41e03a4fda9c4f68e3625bac41e8966882257099413c9500e33171a2f WHIRLPOOL 9274ae5660ac3f6da839f6a7fe3df4042155259170b069b8b54772d77b18564cc5f5337acc475d0936afe855fe9e046a1fb167bbd6842063c9c0335d218f4393 DIST gnutls-3.4.6.tar.xz 6591628 SHA256 feb559ed7fffa24d5aa40527054fae5cb7f7b66e9f2bebc2383a781dfa4d20ec SHA512 c81da5bba3b28ab17ef762d8c6a6607745f1fa7177e0fdaacd374ac0ee64c14cd804e048aeb965383fafaa677ba2ed256c709a117f8a95012f8494c650d29c81 WHIRLPOOL c1c6a3a7ad3d046058d2fbc0d380d453e35567eed7f602184b577dea215ee8018f82a76684646513926473f4a504348390912ab3cd7ce5f3c1c5e11cf869f09b DIST gnutls-3.4.7.tar.xz 6613096 SHA256 c1be9e4b30295d7b5f96fa332c6a908e6fa2254377b67811301fca92eb882e5a SHA512 fdfca4c37292ee07d2d1e398380afe79a20f56040a7c84deb7a5b5221f3bcb4080471b9644c7f2bacb42247c3cc62e32a511f1e2ec6e31c15d9b08b20e8050b6 WHIRLPOOL b56e54c13c33fd74076caf29062cb0c6b38afecfe044a6d7db9b3eef3379a133fb327527ddf07c333783266f00b970aec33b2bb2a21e8b35ceaee0d934456aee DIST gnutls-3.4.8.tar.xz 6631528 SHA256 e07c05dea525c6bf0dd8017fc5b89d886954f04fedf457ecd1ce488ac3b86ab7 SHA512 b3b445ecbd8eae312183eee4f5087a33011236061fe1fe1f0db20239c4e281f5cacd818d62a992ef3011eb9fdc8459d0ed6faca6ea55012b152b5ac5907648bc WHIRLPOOL 97fc97a9f15b51ca91a06cc745397447a7f6b1d986f44f227d0e1aa970f48ca269c8527ff7320f072f555fcd7a1b34dfe115123e96bf45884c2e5357e02c9021 +DIST gnutls-3.4.9.tar.xz 6627640 SHA256 48594fadba33d450f796ec69526cf2bce6ff9bc3dc90fbd7bf38dc3601f57c3f SHA512 3ec5349f1418bf9f8ac492e93d2e8967c2011f9aaea262e0acb40db124ec19c269a9de49b1c9c994e9039929cd03d75f77a40580a1d7eb4b3db0e1d2b9d40f86 WHIRLPOOL 9b440e33a20e76c5fa9d9252136c5667562681d6e28e0c182d3befdf49abb753b9aab2193774334b5570aec0b58961193f27f2395898ba6664cb2749dd8c344e diff --git a/net-libs/gnutls/gnutls-3.3.21.ebuild b/net-libs/gnutls/gnutls-3.3.21.ebuild new file mode 100644 index 000000000000..41ffb01ff69b --- /dev/null +++ b/net-libs/gnutls/gnutls-3.3.21.ebuild @@ -0,0 +1,177 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools libtool eutils multilib-minimal versionator + +DESCRIPTION="A TLS 1.2 and SSL 3.0 implementation for the GNU project" +HOMEPAGE="http://www.gnutls.org/" +SRC_URI="mirror://gnupg/gnutls/v$(get_version_component_range 1-2)/${P}.tar.xz" + +# LGPL-3 for libgnutls library and GPL-3 for libgnutls-extra library. +# soon to be relicensed as LGPL-2.1 unless heartbeat extension enabled. +LICENSE="GPL-3 LGPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE_LINGUAS=" en cs de fi fr it ms nl pl sv uk vi zh_CN" +IUSE="+cxx +crywrap dane doc examples guile nls +openssl pkcs11 static-libs test zlib ${IUSE_LINGUAS// / linguas_}" +# heartbeat support is not disabled until re-licensing happens fullyf + +# NOTICE: sys-devel/autogen is required at runtime as we +# use system libopts +RDEPEND=">=dev-libs/libtasn1-4.3[${MULTILIB_USEDEP}] + >=dev-libs/nettle-2.7:=[gmp,${MULTILIB_USEDEP}] + >=dev-libs/gmp-5.1.3-r1[${MULTILIB_USEDEP}] + sys-devel/autogen + crywrap? ( net-dns/libidn ) + dane? ( >=net-dns/unbound-1.4.20[${MULTILIB_USEDEP}] ) + guile? ( >=dev-scheme/guile-1.8:*[networking] ) + nls? ( >=virtual/libintl-0-r1[${MULTILIB_USEDEP}] ) + pkcs11? ( >=app-crypt/p11-kit-0.20.7[${MULTILIB_USEDEP}] ) + zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] ) + abi_x86_32? ( + !<=app-emulation/emul-linux-x86-baselibs-20140508 + !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] + )" +DEPEND="${RDEPEND} + >=sys-devel/automake-1.11.6 + >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] + doc? ( + sys-apps/texinfo + dev-util/gtk-doc + ) + nls? ( sys-devel/gettext ) + test? ( app-misc/datefudge )" + +DOCS=( AUTHORS ChangeLog NEWS README THANKS doc/TODO ) + +PATCHES=( + "${FILESDIR}/${PN}-3.3.19-build-allow-installing-man-1-even-with-disable-doc.patch" +) + +pkg_setup() { + # bug#520818 + export TZ=UTC +} + +src_prepare() { + default + + sed -i \ + -e 's/imagesdir = $(infodir)/imagesdir = $(htmldir)/' \ + doc/Makefile.am || die + + # force regeneration of autogen-ed files + local file + for file in $(grep -l AutoGen-ed src/*.c) ; do + rm src/$(basename ${file} .c).{c,h} || die + done + + # force regeneration of makeinfo files + # have no idea why on some system these files are not + # accepted as-is, see bug#520818 + for file in $(grep -l "produced by makeinfo" doc/*.info) ; do + rm "${file}" || die + done + + eautoreconf + + # Use sane .so versioning on FreeBSD. + elibtoolize + + # bug 497472 + use cxx || epunt_cxx +} + +multilib_src_configure() { + LINGUAS="${LINGUAS//en/en@boldquot en@quot}" + + # TPM needs to be tested before being enabled + # hardware-accell is disabled on OSX because the asm files force + # GNU-stack (as doesn't support that) and when that's removed ld + # complains about duplicate symbols + ECONF_SOURCE=${S} \ + econf \ + --disable-valgrind-tests \ + --without-included-libtasn1 \ + --enable-heartbeat-support \ + $(use_enable cxx) \ + $(use_enable dane libdane) \ + $(multilib_native_enable manpages) \ + $(multilib_native_use_enable doc) \ + $(multilib_native_use_enable doc gtk-doc) \ + $(multilib_native_use_enable guile) \ + $(multilib_native_use_enable crywrap) \ + $(use_enable nls) \ + $(use_enable openssl openssl-compatibility) \ + $(use_enable static-libs static) \ + $(use_with pkcs11 p11-kit) \ + $(use_with zlib) \ + --without-tpm \ + --with-unbound-root-key-file=/etc/dnssec/root-anchors.txt \ + $([[ ${CHOST} == *-darwin* ]] && echo --disable-hardware-acceleration) + + if multilib_is_native_abi; then + ln -s "${S}"/doc/reference/html doc/reference/html || die + fi +} + +multilib_src_compile() { + if multilib_is_native_abi; then + default + + # symlink certtool for use in other ABIs + if use test; then + ln -s "${BUILD_DIR}"/src "${T}"/native-tools || die + fi + else + emake -C gl + emake -C lib + emake -C extra + use dane && emake -C libdane + fi +} + +multilib_src_test() { + if multilib_is_native_abi; then + # parallel testing often fails + emake -j1 check + else + # use native ABI tools + ln -s "${T}"/native-tools/{certtool,gnutls-{serv,cli}} \ + "${BUILD_DIR}"/src/ || die + + emake -C gl -j1 check + emake -C tests -j1 check + fi +} + +multilib_src_install() { + if multilib_is_native_abi; then + emake DESTDIR="${D}" install + else + emake -C lib DESTDIR="${D}" install + emake -C extra DESTDIR="${D}" install + use dane && emake -C libdane DESTDIR="${D}" install + fi +} + +multilib_src_install_all() { + einstalldocs + prune_libtool_files --all + + dodoc doc/certtool.cfg + + if use doc; then + dohtml doc/gnutls.html + else + rm -fr "${ED}/usr/share/doc/${PF}/html" + fi + + if use examples; then + docinto examples + dodoc doc/examples/*.c + fi +} diff --git a/net-libs/gnutls/gnutls-3.4.9.ebuild b/net-libs/gnutls/gnutls-3.4.9.ebuild new file mode 100644 index 000000000000..ed0dc898806e --- /dev/null +++ b/net-libs/gnutls/gnutls-3.4.9.ebuild @@ -0,0 +1,135 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools libtool eutils multilib-minimal versionator + +DESCRIPTION="A TLS 1.2 and SSL 3.0 implementation for the GNU project" +HOMEPAGE="http://www.gnutls.org/" +SRC_URI="mirror://gnupg/gnutls/v$(get_version_component_range 1-2)/${P}.tar.xz" + +# LGPL-3 for libgnutls library and GPL-3 for libgnutls-extra library. +# soon to be relicensed as LGPL-2.1 unless heartbeat extension enabled. +LICENSE="GPL-3 LGPL-3" +SLOT="0/30" # libgnutls.so number +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE_LINGUAS=" en cs de fi fr it ms nl pl sv uk vi zh_CN" +IUSE="+cxx +crywrap dane doc examples guile nls +openssl pkcs11 static-libs test +tools zlib ${IUSE_LINGUAS// / linguas_}" +# heartbeat support is not disabled until re-licensing happens fullyf + +# NOTICE: sys-devel/autogen is required at runtime as we +# use system libopts +RDEPEND=">=dev-libs/libtasn1-4.3[${MULTILIB_USEDEP}] + >=dev-libs/nettle-3.1:=[gmp,${MULTILIB_USEDEP}] + >=dev-libs/gmp-5.1.3-r1[${MULTILIB_USEDEP}] + tools? ( sys-devel/autogen ) + crywrap? ( net-dns/libidn ) + dane? ( >=net-dns/unbound-1.4.20[${MULTILIB_USEDEP}] ) + guile? ( >=dev-scheme/guile-1.8:*[networking] ) + nls? ( >=virtual/libintl-0-r1[${MULTILIB_USEDEP}] ) + pkcs11? ( >=app-crypt/p11-kit-0.23.1[${MULTILIB_USEDEP}] ) + zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] ) + abi_x86_32? ( + !<=app-emulation/emul-linux-x86-baselibs-20140508 + !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] + )" +DEPEND="${RDEPEND} + >=sys-devel/automake-1.11.6 + >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] + doc? ( + sys-apps/texinfo + dev-util/gtk-doc + ) + nls? ( sys-devel/gettext ) + test? ( app-misc/datefudge )" + +DOCS=( AUTHORS ChangeLog NEWS README THANKS doc/TODO ) + +PATCHES=( + "${FILESDIR}/${PN}-3.4.7-build-allow-installing-man-1-even-with-disable-doc.patch" +) + +pkg_setup() { + # bug#520818 + export TZ=UTC +} + +src_prepare() { + default + + sed -i \ + -e 's/imagesdir = $(infodir)/imagesdir = $(htmldir)/' \ + doc/Makefile.am || die + + # force regeneration of autogen-ed files + local file + for file in $(grep -l AutoGen-ed src/*.c) ; do + rm src/$(basename ${file} .c).{c,h} || die + done + + # force regeneration of makeinfo files + # have no idea why on some system these files are not + # accepted as-is, see bug#520818 + for file in $(grep -l "produced by makeinfo" doc/*.info) ; do + rm "${file}" || die + done + + eautoreconf + + # Use sane .so versioning on FreeBSD. + elibtoolize + + # bug 497472 + use cxx || epunt_cxx +} + +multilib_src_configure() { + LINGUAS="${LINGUAS//en/en@boldquot en@quot}" + + # TPM needs to be tested before being enabled + # hardware-accell is disabled on OSX because the asm files force + # GNU-stack (as doesn't support that) and when that's removed ld + # complains about duplicate symbols + ECONF_SOURCE=${S} \ + econf \ + --disable-valgrind-tests \ + --without-included-libtasn1 \ + --enable-heartbeat-support \ + $(use_enable cxx) \ + $(use_enable dane libdane) \ + $(multilib_native_enable manpages) \ + $(multilib_native_use_enable tools) \ + $(multilib_native_use_enable doc) \ + $(multilib_native_use_enable doc gtk-doc) \ + $(multilib_native_use_enable guile) \ + $(multilib_native_use_enable crywrap) \ + $(multilib_native_use_enable test tests) \ + $(use_enable nls) \ + $(use_enable openssl openssl-compatibility) \ + $(use_enable static-libs static) \ + $(use_with pkcs11 p11-kit) \ + $(use_with zlib) \ + --without-tpm \ + --with-unbound-root-key-file=/etc/dnssec/root-anchors.txt \ + $([[ ${CHOST} == *-darwin* ]] && echo --disable-hardware-acceleration) +} + +multilib_src_install_all() { + einstalldocs + prune_libtool_files --all + + dodoc doc/certtool.cfg + + if use doc; then + dohtml doc/gnutls.html + else + rm -fr "${ED}/usr/share/doc/${PF}/html" + fi + + if use examples; then + docinto examples + dodoc doc/examples/*.c + fi +} diff --git a/net-libs/libbtbb/libbtbb-9999.ebuild b/net-libs/libbtbb/libbtbb-9999.ebuild index d010cc009e89..a64a283dd3ab 100644 --- a/net-libs/libbtbb/libbtbb-9999.ebuild +++ b/net-libs/libbtbb/libbtbb-9999.ebuild @@ -26,7 +26,7 @@ SLOT="0/${PV}" IUSE="+pcap static-libs +wireshark-plugins" RDEPEND=" - pcap? ( net-libs/libpcap ) + pcap? ( net-libs/libpcap[static-libs?] ) wireshark-plugins? ( >=net-analyzer/wireshark-1.8.3-r1:= ) @@ -70,11 +70,11 @@ src_configure() { CMAKE_USE_DIR="${S}" BUILD_DIR="${S}"_build local mycmakeargs=( - -DDISABLE_PYTHON=true + -DENABLE_PYTHON=false -DPACKAGE_MANAGER=true $(cmake-utils_use pcap PCAPDUMP) $(cmake-utils_use pcap USE_PCAP) - $(cmake-utils_use static-libs BUILD_STATIC) + $(cmake-utils_use static-libs BUILD_STATIC_LIB) ) cmake-utils_src_configure diff --git a/net-misc/ntp/ntp-4.2.8_p6.ebuild b/net-misc/ntp/ntp-4.2.8_p6.ebuild index 4e8f00953b2f..f47d8fe80f87 100644 --- a/net-misc/ntp/ntp-4.2.8_p6.ebuild +++ b/net-misc/ntp/ntp-4.2.8_p6.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-${PV:0:3}/${MY_P}.tar LICENSE="HPND BSD ISC" SLOT="0" -KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~m68k-mint" +KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~m68k-mint" IUSE="caps debug ipv6 libressl openntpd parse-clocks readline samba selinux snmp ssl +threads vim-syntax zeroconf" CDEPEND="readline? ( >=sys-libs/readline-4.1:0= ) diff --git a/net-wireless/ubertooth/Manifest b/net-wireless/ubertooth/Manifest index 40da1f62471c..7fccdf3cd35c 100644 --- a/net-wireless/ubertooth/Manifest +++ b/net-wireless/ubertooth/Manifest @@ -1,3 +1 @@ -DIST ubertooth-2015-09-R2.tar.xz 1706712 SHA256 f2088c8c0e754df47dd8dbf604d5822bf5894b91e4505276c6f9e26b6a23b56d SHA512 240f6d682fe0addc05bb8ccf7eec931534449adfa9c1369b484aeac73d9bcaf75c211aeede21c6c219e363773ce3d63e4aa0ee6b662acc83409587bd7ac7e4da WHIRLPOOL 9fba78d1740efd342f3892ffc3cf914d1919ef1c7d282786a64afb72d6ed306dec3600363e3f85f2f70d9ccfba6b62f826a72942cb7c9316d151dd2718f79b09 DIST ubertooth-2015-10-R1.tar.xz 1716840 SHA256 bc37e7978d137a64d918d7c8f1e7ca9cff093f9921d805e9809b12e5ab12ae35 SHA512 ad7229c9509db4b4230ec28d1c16200f0780dd7ce55224528ced6d8969f342a79b7317b69e7b9e49d03e93f973203801f4f703dd80dc115400366b0984c965b1 WHIRLPOOL 5f46bdc8746481d68fd5c8e3ce04aadbcc1bc704c95b1b5a3d389376704a2a3e702faf819c749f98cb737578e9ccfa3ac01887081bceeceed2e4804493b2c2a8 -DIST ubertooth_one_rx_only.dfu 32060 SHA256 fefc034ff19fa8b4b307d77c875bfeaa639e2aa0ecf8b8337e6424618480b1b5 SHA512 daeaeae90cb2aa591db2787466cbdc7365ce4e74ce5f7af4f61c9c1a22af93e846ea9230acca64f88a85a959d0db447b19da4dc4d213601db8dd1ad3d9978fa7 WHIRLPOOL 3069bf540c87d317e4f612b25ef4af10c3a9197ec9ead69082021442e0cc70d4b381488ba4bd509f75535a43f8f7b5fcebae313b96623513de846edb51cf63a0 diff --git a/net-wireless/ubertooth/ubertooth-2015.09.2.ebuild b/net-wireless/ubertooth/ubertooth-2015.09.2.ebuild deleted file mode 100644 index efbfbb07c093..000000000000 --- a/net-wireless/ubertooth/ubertooth-2015.09.2.ebuild +++ /dev/null @@ -1,104 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -PYTHON_COMPAT=( python2_7 ) -DISTUTILS_OPTIONAL=1 - -inherit multilib distutils-r1 cmake-utils udev - -HOMEPAGE="http://ubertooth.sourceforge.net/" - -LICENSE="GPL-2" -SLOT="0" -IUSE="+bluez +specan +pcap +ubertooth1-firmware +udev" -REQUIRED_USE=" specan? ( ${PYTHON_REQUIRED_USE} )" -DEPEND="bluez? ( net-wireless/bluez:= ) - >=net-libs/libbtbb-${PV}:= - pcap? ( net-libs/libbtbb[pcap] ) - specan? ( ${PYTHON_DEPS} ) - virtual/libusb:1=" -RDEPEND="${DEPEND} - specan? ( >=dev-qt/qtgui-4.7.2:4 - >=dev-python/pyside-1.0.2[${PYTHON_USEDEP}] - >=dev-python/numpy-1.3[${PYTHON_USEDEP}] ) - udev? ( virtual/udev )" - -MY_PV=${PV/\./-} -MY_PV=${MY_PV/./-R} -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="https://github.com/greatscottgadgets/ubertooth.git" - inherit git-r3 - KEYWORDS="" - S="${WORKDIR}/${P}/host" -else - S="${WORKDIR}/${PN}-${MY_PV}/host" - SRC_URI="https://github.com/greatscottgadgets/${PN}/releases/download/${MY_PV}/${PN}-${MY_PV}.tar.xz - https://github.com/greatscottgadgets/${PN}/releases/download/${MY_PV}/${PN}_one_rx_only.dfu" - KEYWORDS="~amd64 ~arm ~x86" -fi -DESCRIPTION="An open source wireless development platform suitable for Bluetooth experimentation" - -#readd firmware building, but do it right -#USE="-fortran -mudflap -nls -openmp -multilib" crossdev --without-headers --genv 'EXTRA_ECONF="--with-mode=thumb --with-cpu=cortex-m3 --with-float=soft"' -s4 -t arm-cortexm3-eabi - -src_prepare() { - cmake-utils_src_prepare - if use specan; then - pushd python/specan_ui || die - distutils-r1_src_prepare - popd - fi -} - -src_configure() { - mycmakeargs=( - $(cmake-utils_use_enable bluez USE_BLUEZ) - $(cmake-utils_use pcap USE_PCAP) - $(cmake-utils_use_enable udev INSTALL_UDEV_RULES) - -DDISABLE_PYTHON=true - ) - if use udev; then - mycmakeargs+=( - -DUDEV_RULES_GROUP=usb - -DUDEV_RULES_PATH="$(get_udevdir)/rules.d" - ) - fi - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile - - if use specan; then - pushd python/specan_ui || die - distutils-r1_src_compile - popd - fi -} - -src_install() { - cmake-utils_src_install - - insinto /usr/share/${PN} - pushd "${WORKDIR}/${PN}-${MY_PV}" || die - if [[ ${PV} == "9999" ]] ; then - ewarn "Firmware isn't available for git releases, we assume you are already" - ewarn "on the latest and/or can build your own." - else - use ubertooth1-firmware && newins ubertooth-one-firmware-bin/bluetooth_rxtx.dfu ${PN}-one-${PV}-bluetooth_rxtx.dfu - use ubertooth1-firmware && newins "${DISTDIR}"/${PN}_one_rx_only.dfu ${PN}-one-${PV}-bluetooth_rx_only.dfu - fi - popd - - if use specan; then - pushd python/specan_ui || die - distutils-r1_src_install - popd - fi - - elog "Everyone can read from the ubertooth, but to talk to it" - elog "your user needs to be in the usb group." -} diff --git a/net-wireless/ubertooth/ubertooth-2015.10.1.ebuild b/net-wireless/ubertooth/ubertooth-2015.10.1.ebuild index c35791d555cb..a6a694975e83 100644 --- a/net-wireless/ubertooth/ubertooth-2015.10.1.ebuild +++ b/net-wireless/ubertooth/ubertooth-2015.10.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -38,7 +38,7 @@ else SRC_URI="https://github.com/greatscottgadgets/${PN}/releases/download/${MY_PV}/${PN}-${MY_PV}.tar.xz" KEYWORDS="~amd64 ~arm ~x86" fi -DESCRIPTION="An open source wireless development platform suitable for Bluetooth experimentation" +DESCRIPTION="open source wireless development platform suitable for Bluetooth experimentation" #readd firmware building, but do it right #USE="-fortran -mudflap -nls -openmp -multilib" crossdev --without-headers --genv 'EXTRA_ECONF="--with-mode=thumb --with-cpu=cortex-m3 --with-float=soft"' -s4 -t arm-cortexm3-eabi diff --git a/net-wireless/ubertooth/ubertooth-9999.ebuild b/net-wireless/ubertooth/ubertooth-9999.ebuild index c35791d555cb..fe19effa879b 100644 --- a/net-wireless/ubertooth/ubertooth-9999.ebuild +++ b/net-wireless/ubertooth/ubertooth-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -13,12 +13,13 @@ HOMEPAGE="http://ubertooth.sourceforge.net/" LICENSE="GPL-2" SLOT="0" -IUSE="+bluez +specan +pcap +ubertooth1-firmware +udev" -REQUIRED_USE=" specan? ( ${PYTHON_REQUIRED_USE} )" +IUSE="+bluez +specan static-libs +pcap +ubertooth1-firmware +udev" +REQUIRED_USE="specan? ( ${PYTHON_REQUIRED_USE} )" DEPEND="bluez? ( net-wireless/bluez:= ) - >=net-libs/libbtbb-${PV}:= + >=net-libs/libbtbb-${PV}:=[static-libs?] pcap? ( net-libs/libbtbb[pcap] ) specan? ( ${PYTHON_DEPS} ) + static-libs? ( dev-libs/libusb[static-libs] ) virtual/libusb:1=" RDEPEND="${DEPEND} specan? ( >=dev-qt/qtgui-4.7.2:4 @@ -38,7 +39,7 @@ else SRC_URI="https://github.com/greatscottgadgets/${PN}/releases/download/${MY_PV}/${PN}-${MY_PV}.tar.xz" KEYWORDS="~amd64 ~arm ~x86" fi -DESCRIPTION="An open source wireless development platform suitable for Bluetooth experimentation" +DESCRIPTION="open source wireless development platform suitable for Bluetooth experimentation" #readd firmware building, but do it right #USE="-fortran -mudflap -nls -openmp -multilib" crossdev --without-headers --genv 'EXTRA_ECONF="--with-mode=thumb --with-cpu=cortex-m3 --with-float=soft"' -s4 -t arm-cortexm3-eabi @@ -56,8 +57,9 @@ src_configure() { mycmakeargs=( $(cmake-utils_use_enable bluez USE_BLUEZ) $(cmake-utils_use pcap USE_PCAP) + $(cmake-utils_use static-libs BUILD_STATIC_LIB) $(cmake-utils_use_enable udev INSTALL_UDEV_RULES) - -DDISABLE_PYTHON=true + -DENABLE_PYTHON=false ) if use udev; then mycmakeargs+=( diff --git a/profiles/package.mask b/profiles/package.mask index 2e12463bab06..5e8f95c015e2 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -30,6 +30,17 @@ #--- END OF EXAMPLES --- +# James Le Cuirot (03 Feb 2016) +# Built into Java since 1.5. Ancient and doesn't build with +# Java 8. Removal in 30 days. See bug #544038. +dev-java/concurrent-util + +# James Le Cuirot (03 Feb 2016) +# Old, unused, broken on Java 7 and up. These are still alive upstream +# but bumping is likely non-trivial. Removal in 30 days. +dev-java/dsiutils +dev-java/sux4j + # Bernard Cafarelli (27 Jan 2016) # New llvm version, masked for testing =sys-devel/llvm-3.8.0* diff --git a/profiles/use.local.desc b/profiles/use.local.desc index 0aa92f31a512..b547a7501821 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -1106,6 +1106,7 @@ app-pda/barry:gui - Install the GUI backup tool app-pda/gtkpod:clutter - Enable clutter support for displaying coverart app-pda/gtkpod:webkit - Enable webkit support for finding coverart app-portage/conf-update:colordiff - Use colors when displaying diffs (app-misc/colordiff) +app-portage/conf-update:libressl - Enable SSL connections and crypto functions using dev-libs/libressl app-portage/eix:debug - Build with upstream's CXXFLAGS/LDFLAGS for debugging support; not recommended for normal use. app-portage/eix:dep - Make DEP=true the default which enables support for {,R,P}DEPEND but requires roughly double disk and memory. app-portage/eix:doc - Create description of the eix cache file additionally in html format diff --git a/www-client/google-chrome/Manifest b/www-client/google-chrome/Manifest index 384851784d43..8ba186a5ed41 100644 --- a/www-client/google-chrome/Manifest +++ b/www-client/google-chrome/Manifest @@ -1,2 +1,2 @@ -DIST google-chrome-stable_48.0.2564.97-1_amd64.deb 48240000 SHA256 a26418953bcb76900a6c64de6891fa178c8f98244923d65cdf4606dcde09bcf2 SHA512 e9b8b11411cd27fa81a617ff5dfe69503e6d463f970f66c747867d521d6b767262eaf7648438853ca0fce9b575c052280e24069ee380c4ad2c7f33edd4306342 WHIRLPOOL 35c66bfb68296a3eeefca939792b68809dd812e47a1da908754975591fe7b1fd9be1dcb86ab572377cfe702a6dd9a7fa7da58771dfc3b585e034b6348f05c773 -DIST google-chrome-stable_48.0.2564.97-1_i386.deb 47294044 SHA256 5448419fff33b01456d609ce0f1981fdd07f9c3d55d70156e13d6aa7f34cad3d SHA512 cd1c8a93073009da25765e22a7319c5717b029a3767c79b45f936dbdda27f2225045639883b203f0a5f21cd3647b45cf5d98f378386288851af6a62d7fe60ed2 WHIRLPOOL 8d9de90fe35930c89b59c35c0dfa2eb3c5da3adc80af20883e7547930793748d02cdca0ea4dba8268248df074d126945ba44b456093ea430656187a92c902b41 +DIST google-chrome-stable_48.0.2564.103-1_amd64.deb 48238376 SHA256 425178e641bab0d5f49b23bbe221eef8e2590424c6026c8f9b18a4ca96c0a7a3 SHA512 8e57a3d74f3f5336cc4419a01aebfbaf601c46b4996327335a5f27d56315a749e0ab2bf8abe50d2edbe05921704b9a3cc20543d8baaf869bdaaa0e93bf88b26b WHIRLPOOL e58cae07164f115c422a4e3728c091aa568ae041f4f5cabbd57cc2f7d55bb7f4489ee8c6e208ecd67b078e8fd6a39b86228540c855ef8eb96b19f7877ef8235f +DIST google-chrome-stable_48.0.2564.103-1_i386.deb 47451856 SHA256 8150047cf15b487307a889eaf7a298de9622ce11c3fe9ec94aef0a56bcad90c5 SHA512 ffbae565b00a4123c1d31aa98a7a532c11a7bc59f1a440c4c737d86d9719c91c52837b3188b0da309cffc7544e98990672143f9d08a9bb88d16a6b1a4b195ea0 WHIRLPOOL 9b2f32c0e854c7654966465a7aff307912dce5524da2af876420333182ba4a4b6cb81d2aa5044c2a963eb736b54673787fb520104538927e69ef3a200d925bfc diff --git a/www-client/google-chrome/google-chrome-48.0.2564.97_p1.ebuild b/www-client/google-chrome/google-chrome-48.0.2564.103_p1.ebuild similarity index 100% rename from www-client/google-chrome/google-chrome-48.0.2564.97_p1.ebuild rename to www-client/google-chrome/google-chrome-48.0.2564.103_p1.ebuild diff --git a/www-client/vivaldi/Manifest b/www-client/vivaldi/Manifest index 1014c7c22f2a..6c249eebe14d 100644 --- a/www-client/vivaldi/Manifest +++ b/www-client/vivaldi/Manifest @@ -2,3 +2,5 @@ DIST vivaldi-1.0.377.10_p1-amd64.deb 44007696 SHA256 01f3994438454e951bbde79bf33 DIST vivaldi-1.0.377.10_p1-i386.deb 44514502 SHA256 9bc9ff3de9c761c7011575831339a2463678cec605425e5f11aad22bf8f6234e SHA512 0203b8ba3c3b2b06d2b42fbc01dd2498bd3a7e8f55bbbba3f2476e4adfd2d436a7be4ba75db3df3aab2765a812b4544087e731100e54f337169341589d779e53 WHIRLPOOL d69fa5273b8fe65b4aba7b651e0b0f255b810e5941e86e771b8cbb195df1ba78c1e5257b6c7fcb867127ddcdb8989fe16d149f5ef1f1967845795c449407069a DIST vivaldi-1.0.380.2_p1-amd64.deb 43968718 SHA256 395a1dde2110beaddc84e7cdd499a755221a77659fdd37880b46b61c40efbb61 SHA512 27be054bffb0cff5e3b4f3e7628184c2cb3a3ac3943287256c2881a9069dcb39578d4e724367365cb105f7fffa40a89634f8c3613a9fc6ea7265ee406148e17e WHIRLPOOL bdf9c530737e9c301afb0534427c090cef35a192ba3deba36205ca819d964c819f7c93b1061c2a2167a9166fcb19931e7cdd8e13dbbf01f93d3a84987910477a DIST vivaldi-1.0.380.2_p1-i386.deb 44523458 SHA256 21c1fd9e8608d8fed7aa0cc227239d61f95d6c6c27330bc2b9ca6a72de7ce87a SHA512 86c4af19eec49e880ae6e549c7ad9d26859965ee9c75d81b95e5df6ab35fa6c42b03d90d5263e21957d76e9f5a56ee80f0a100d688cbde0de86432f990581a55 WHIRLPOOL 73a6397d706841fa8d7fce7077b48797ddb1339c30d15429c5375cbe38cca35e42537603981f42a1a95591192af886b9b921eefa9f6a6afcd1f3c0956d6c3b13 +DIST vivaldi-1.0.385.5_p1-amd64.deb 44038492 SHA256 c1971b557d8df405517895552c2e18f545b006e80aa0df799a4ce04852275df0 SHA512 cca114da8c0eb9a1eef9d0eb02eba61365c6772fbbad9d6bb5dde6e81ca08a92a6a356d61e16dd3df7d731c53cf26de70ff8ff09ec09d45b550e5ce7232d64a7 WHIRLPOOL 5f0dfd61b493361f05d52e9443c1830e5710a1d892da6cc5d8f167ba24a062faaa8bd75795cb48b3fdf884b04b49a4e6fb9678a9cd9a88d21a0f13f0a0ff2c1d +DIST vivaldi-1.0.385.5_p1-i386.deb 44479030 SHA256 8179ead698d0bfbec096b720e9e490fa4ca9f9f42c3e34804474ff528c5fb2bf SHA512 1acce87c41d11de388118825bc72bc24fe7e1881bb642dc4b0ea5086e65ef530da4ad218dbcd4e6d69e26bb77612583f66be7f8e127a29b098fe239f0db1d337 WHIRLPOOL 8db8eec5adb632f8975b9ac2992845e57ad8d743c3cf14c0f570e133b514b4a1515d666f5127b7a29076a395d5153f5a5da2889d022a18d236df6916af55979d diff --git a/www-client/vivaldi/vivaldi-1.0.385.5_p1.ebuild b/www-client/vivaldi/vivaldi-1.0.385.5_p1.ebuild new file mode 100644 index 000000000000..f985379c7cbb --- /dev/null +++ b/www-client/vivaldi/vivaldi-1.0.385.5_p1.ebuild @@ -0,0 +1,109 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +CHROMIUM_LANGS=" + am ar bg bn ca cs da de el en_GB en_US es_419 es et fa fil fi 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 multilib unpacker toolchain-funcs + +DESCRIPTION="A new browser for our friends" +HOMEPAGE="http://vivaldi.com/" +VIVALDI_BASE_URI="${HOMEPAGE}download/snapshot/${PN}-snapshot_${PV/_p/-}_" +SRC_URI=" + amd64? ( ${VIVALDI_BASE_URI}amd64.deb -> ${P}-amd64.deb ) + x86? ( ${VIVALDI_BASE_URI}i386.deb -> ${P}-i386.deb ) +" + +LICENSE="Vivaldi" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RESTRICT="bindist mirror" + +S=${WORKDIR} + +RDEPEND=" + dev-libs/expat + dev-libs/glib:2 + dev-libs/nspr + dev-libs/nss + >=dev-libs/openssl-1.0.1:0 + gnome-base/gconf:2 + media-libs/alsa-lib + media-libs/fontconfig + media-libs/freetype + net-misc/curl + net-print/cups + sys-apps/dbus + sys-libs/libcap + x11-libs/cairo + x11-libs/gdk-pixbuf + x11-libs/gtk+:2 + x11-libs/libX11 + x11-libs/libXScrnSaver + x11-libs/libXcomposite + x11-libs/libXcursor + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXi + x11-libs/libXrandr + x11-libs/libXrender + x11-libs/libXtst + x11-libs/pango[X] +" + +QA_PREBUILT="*" +S=${WORKDIR} +VIVALDI_HOME="opt/${PN}-snapshot" + +src_unpack() { + unpack_deb ${A} +} + +src_prepare() { + sed -i \ + -e "s|@LIBDIR@|$(get_libdir)|g" \ + opt/vivaldi-snapshot/vivaldi-snapshot || die + + sed -i \ + -e 's|vivaldi-snapshot|vivaldi|g' \ + usr/share/applications/${PN}-snapshot.desktop \ + usr/share/xfce4/helpers/${PN}-snapshot.desktop || die + + mv usr/share/doc/${PN}-snapshot usr/share/doc/${PF} || die + + rm \ + _gpgbuilder \ + etc/cron.daily/${PN}-snapshot \ + usr/bin/${PN}-snapshot \ + || die + rmdir \ + etc/cron.daily/ \ + etc/ \ + || die + + local c d + for d in 16 22 24 32 48 64 128 256; do + mkdir -p usr/share/icons/hicolor/${d}x${d}/apps || die + cp \ + ${VIVALDI_HOME}/product_logo_${d}.png \ + usr/share/icons/hicolor/${d}x${d}/apps/vivaldi.png || die + done + + pushd "${VIVALDI_HOME}/locales" > /dev/null || die + chromium_remove_language_paks + popd > /dev/null || die + +} + +src_install() { + mv * "${D}" || die + dosym /${VIVALDI_HOME}/${PN}-snapshot /usr/bin/${PN} + + fperms 4711 /${VIVALDI_HOME}/${PN}-sandbox +} diff --git a/www-plugins/chrome-binary-plugins/Manifest b/www-plugins/chrome-binary-plugins/Manifest index 8e837de49c8d..ffae7eba831e 100644 --- a/www-plugins/chrome-binary-plugins/Manifest +++ b/www-plugins/chrome-binary-plugins/Manifest @@ -1,5 +1,5 @@ DIST google-chrome-beta_49.0.2623.28-1_amd64.deb 48899410 SHA256 1e8dd09ec05dc1e8ae171998a5854429360e12452ca3b53e65fad93c36904672 SHA512 3c7689f1a196e7a18073e2e1744564e78d5a1e0ebde6fb054247f6036258bf8aba22f9cec21e8bb42ad95d685a8ca1f8e2faf0d9ee540180f5504c25136bcc76 WHIRLPOOL 057b9b9f1192c117316b5e58d41dc58c1186502629cb2542fd369e8dafa1e7b599ef87659ed192715b4fd57c3de198a3b9987fd27a0ced9eace6be3ac001f7e8 DIST google-chrome-beta_49.0.2623.28-1_i386.deb 47715208 SHA256 23041ca05c134d8715b54143759b237647fa0a95d94e9c5b80458c1eb692905b SHA512 a0b7b671c2de68858350bd15cd7a868ff321a1bd7b3b3318b6a3f64fbc20a7b64f7ba985908122751c31a3b7e135d96858feae9803c9f634780e2a2e2cca02bc WHIRLPOOL 2feea85dcc78284ec03ce5043e2a46117965722623f4b4ba44838c4522a29fe5fc5beb01eae1490b40dde5fc0a10b862c485125a8ed4d0791c644f189ff2f046 -DIST google-chrome-stable_48.0.2564.97-1_amd64.deb 48240000 SHA256 a26418953bcb76900a6c64de6891fa178c8f98244923d65cdf4606dcde09bcf2 SHA512 e9b8b11411cd27fa81a617ff5dfe69503e6d463f970f66c747867d521d6b767262eaf7648438853ca0fce9b575c052280e24069ee380c4ad2c7f33edd4306342 WHIRLPOOL 35c66bfb68296a3eeefca939792b68809dd812e47a1da908754975591fe7b1fd9be1dcb86ab572377cfe702a6dd9a7fa7da58771dfc3b585e034b6348f05c773 -DIST google-chrome-stable_48.0.2564.97-1_i386.deb 47294044 SHA256 5448419fff33b01456d609ce0f1981fdd07f9c3d55d70156e13d6aa7f34cad3d SHA512 cd1c8a93073009da25765e22a7319c5717b029a3767c79b45f936dbdda27f2225045639883b203f0a5f21cd3647b45cf5d98f378386288851af6a62d7fe60ed2 WHIRLPOOL 8d9de90fe35930c89b59c35c0dfa2eb3c5da3adc80af20883e7547930793748d02cdca0ea4dba8268248df074d126945ba44b456093ea430656187a92c902b41 +DIST google-chrome-stable_48.0.2564.103-1_amd64.deb 48238376 SHA256 425178e641bab0d5f49b23bbe221eef8e2590424c6026c8f9b18a4ca96c0a7a3 SHA512 8e57a3d74f3f5336cc4419a01aebfbaf601c46b4996327335a5f27d56315a749e0ab2bf8abe50d2edbe05921704b9a3cc20543d8baaf869bdaaa0e93bf88b26b WHIRLPOOL e58cae07164f115c422a4e3728c091aa568ae041f4f5cabbd57cc2f7d55bb7f4489ee8c6e208ecd67b078e8fd6a39b86228540c855ef8eb96b19f7877ef8235f +DIST google-chrome-stable_48.0.2564.103-1_i386.deb 47451856 SHA256 8150047cf15b487307a889eaf7a298de9622ce11c3fe9ec94aef0a56bcad90c5 SHA512 ffbae565b00a4123c1d31aa98a7a532c11a7bc59f1a440c4c737d86d9719c91c52837b3188b0da309cffc7544e98990672143f9d08a9bb88d16a6b1a4b195ea0 WHIRLPOOL 9b2f32c0e854c7654966465a7aff307912dce5524da2af876420333182ba4a4b6cb81d2aa5044c2a963eb736b54673787fb520104538927e69ef3a200d925bfc DIST google-chrome-unstable_50.0.2638.0-1_amd64.deb 48485834 SHA256 013a1fd1ab35db0b9e27965cf838e80a642ceb87f95fd1c75144071bc969b941 SHA512 688883ee5b4459b6c532c7dab630fbd6781a0604de23ae293ba9fbc1656c2bbcbf20a9dabafd6f66117ad2d516232a69a7e986e0d7eb0c24d52f08388f979bd4 WHIRLPOOL 943e52d51f6c6856f2d531b6fa6e0aa25a0ed67d5f95ffefa48d96417bcb2ed386a1d63e27ad3e6aa6fef2176a3456398dce8614113d2e077f3e86296f941db2 diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-48.0.2564.97_p1.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-48.0.2564.103_p1.ebuild similarity index 100% rename from www-plugins/chrome-binary-plugins/chrome-binary-plugins-48.0.2564.97_p1.ebuild rename to www-plugins/chrome-binary-plugins/chrome-binary-plugins-48.0.2564.103_p1.ebuild diff --git a/www-servers/nginx/Manifest b/www-servers/nginx/Manifest index 9631b0767b4b..d1766ab34a73 100644 --- a/www-servers/nginx/Manifest +++ b/www-servers/nginx/Manifest @@ -1,7 +1,6 @@ DIST modsecurity-2.9.0.tar.gz 4246467 SHA256 e2bbf789966c1f80094d88d9085a81bde082b2054f8e38e0db571ca49208f434 SHA512 1af04f29bf23c51d03cdd3795c530f88b523a645aa02d776a6b23dcbc31decec7cd574919e5c7c7cf82684df2774062de5e465bddbbaf4c01a442c6d49401d3d WHIRLPOOL 1167ba6048a3ca05dcdabf03c67ae12720cca0cec74547fc223ee92ff76b6d5131785fa77b5f16da180e56590c851c192eaf02817b798e4d6f41fa6bfb2735a6 -DIST nginx-1.8.0.tar.gz 832104 SHA256 23cca1239990c818d8f6da118320c4979aadf5386deda691b1b7c2c96b9df3d5 SHA512 3e5d7e1b01839b2638251c47046149450b9b65985e611ef55e5953846e9eb0128c3708c695540ad4dfd0ce5e3060dfecb51213403048fab1a99dd5cea94f0038 WHIRLPOOL e4619e0e0454b86d725a21abe9300ad33ad700c4d577b33f1762b5af796093abd3c7b6afed38301dd0b2a235d6ff47db189b24fd19a5cbc777398bc237ae8534 DIST nginx-1.8.1.tar.gz 833473 SHA256 8f4b3c630966c044ec72715754334d1fdf741caa1d5795fb4646c27d09f797b7 SHA512 546eba1749af0034cb8b924d2432be2f0e82a75c545aa929391ef7234103c3f29376235a2ef1363b120e1825cda15aeb085a05f9ce3596c88466e112e82aa882 WHIRLPOOL cd399083fb14bdb3498f1cd91a1cb59a73d37f323ce7c2a32500c9443f654cb5449137708cf149a0126aedb77abec9d1eb3dce3121f0b378d7d70e8eb18062af -DIST nginx-1.9.7.tar.gz 885562 SHA256 794bd217affdfce1c6263d9199c3961f387a2df9d57dcb42876faaf41c1748d5 SHA512 a3fa097164954b10120a0e7dca4b877da17c237f1e3ca47365aedf55ade2fe55b0f072404dcb909636b3afaa2b51f5c45b002b54424bd6b80ab76b835bbcc7de WHIRLPOOL 09a0b002d3cfc4650461c187d9192305208e38d738b2499109c3969c05aa8fb56d60730ab0a207bb64ffad5c450fb994b91a9a3ca1178633901ed236a4f3a245 +DIST nginx-1.9.10.tar.gz 889267 SHA256 fb14d76844cab0a5a0880768be28965e74f9956790f618c454ef6098e26631d9 SHA512 60a736afe98e46abeb572c938702b09b0098164584bf8b5c1978c2b83269b6c2b99a60b7c8c9482230c26eebaeeb684f3aa7db52af4d7a3c18434542730873e0 WHIRLPOOL 8f285f6d4c4f7e312791d7dc6fc072dbb1207315fcb7facac0ce958389473641de2f2c2cd03cfd11c0df3a16abd84522bb150090b561a46752e8b6317363fbeb DIST nginx_http_sticky_module_ng-1.2.5.tar.bz2 124072 SHA256 f975c033eb3c342f7247f6524774bbb727aaf630ed984576dbafe5de7a790c58 SHA512 d6ae723f739efb2f0548461931b1c395801684759962beda08067111426b1c9787ceaede91b0e984c023108fd17864c53c53925506f7e8e25ec8d2fc065585f6 WHIRLPOOL 1013c6a51f5989c8131392b3d9704d42c99f9727a673f6205878d0b7dfd265bb6042c1d30089603c9b38e339d48302e6873e77fe380b7e8edba25b71e9e84ba6 DIST nginx_http_sticky_module_ng-1.2.6.tar.bz2 124089 SHA256 e47b9fd435d7a5a3200f945a9745aaa7b9446495bda76df48f211129f88d6b26 SHA512 2632b04c94f523aa7c9726db182cba11d83e642c2db5798274e67fbef30de95d02e4e95cbfb98bc429d4244d630b5d9617405b43f728ae0117a5c134940c0ded WHIRLPOOL 1b754c02f834c6b4d4930e9c46b8c5accb6c9663718fb9296c92d79bc33206e66e49e4234ca4db9a5afcd42fa23273bdf0e675aa7b38927c4e46a85318c189eb DIST ngx_devel_kit-0.2.19-r1.tar.gz 65029 SHA256 501f299abdb81b992a980bda182e5de5a4b2b3e275fbf72ee34dd7ae84c4b679 SHA512 915954acf16a27fbd3c93c154012d38e864f1d8dfd51cde401bba26e46eb3e3c778ec4c92f4f8ed83ac001e96cee72765554d0e4da06acf6a4be5184b23b3657 WHIRLPOOL 0ce6bffc0fe2cef28ee74f5862ca6d914ed18fdee18d900608ff2a9983594c707aab3e335957b79dd7e77ae1beed054d8f71965ca0f57fc5f1d41ac06106c5a4 diff --git a/www-servers/nginx/nginx-1.8.0.ebuild b/www-servers/nginx/nginx-1.8.0.ebuild deleted file mode 100644 index fca2b1018df8..000000000000 --- a/www-servers/nginx/nginx-1.8.0.ebuild +++ /dev/null @@ -1,667 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -# Maintainer notes: -# - http_rewrite-independent pcre-support makes sense for matching locations without an actual rewrite -# - any http-module activates the main http-functionality and overrides USE=-http -# - keep the following requirements in mind before adding external modules: -# * alive upstream -# * sane packaging -# * builds cleanly -# * does not need a patch for nginx core -# - TODO: test the google-perftools module (included in vanilla tarball) - -# prevent perl-module from adding automagic perl DEPENDs -GENTOO_DEPEND_ON_PERL="no" - -# devel_kit (https://github.com/simpl/ngx_devel_kit, BSD license) -DEVEL_KIT_MODULE_PV="0.2.19" -DEVEL_KIT_MODULE_P="ngx_devel_kit-${DEVEL_KIT_MODULE_PV}-r1" -DEVEL_KIT_MODULE_URI="https://github.com/simpl/ngx_devel_kit/archive/v${DEVEL_KIT_MODULE_PV}.tar.gz" -DEVEL_KIT_MODULE_WD="${WORKDIR}/ngx_devel_kit-${DEVEL_KIT_MODULE_PV}" - -# http_uploadprogress (https://github.com/masterzen/nginx-upload-progress-module, BSD-2 license) -HTTP_UPLOAD_PROGRESS_MODULE_PV="0.9.1" -HTTP_UPLOAD_PROGRESS_MODULE_P="ngx_http_upload_progress-${HTTP_UPLOAD_PROGRESS_MODULE_PV}-r1" -HTTP_UPLOAD_PROGRESS_MODULE_URI="https://github.com/masterzen/nginx-upload-progress-module/archive/v${HTTP_UPLOAD_PROGRESS_MODULE_PV}.tar.gz" -HTTP_UPLOAD_PROGRESS_MODULE_WD="${WORKDIR}/nginx-upload-progress-module-${HTTP_UPLOAD_PROGRESS_MODULE_PV}" - -# http_headers_more (https://github.com/agentzh/headers-more-nginx-module, BSD license) -HTTP_HEADERS_MORE_MODULE_PV="0.26" -HTTP_HEADERS_MORE_MODULE_P="ngx_http_headers_more-${HTTP_HEADERS_MORE_MODULE_PV}" -HTTP_HEADERS_MORE_MODULE_URI="https://github.com/agentzh/headers-more-nginx-module/archive/v${HTTP_HEADERS_MORE_MODULE_PV}.tar.gz" -HTTP_HEADERS_MORE_MODULE_WD="${WORKDIR}/headers-more-nginx-module-${HTTP_HEADERS_MORE_MODULE_PV}" - -# http_cache_purge (http://labs.frickle.com/nginx_ngx_cache_purge/, BSD-2 license) -HTTP_CACHE_PURGE_MODULE_PV="2.3" -HTTP_CACHE_PURGE_MODULE_P="ngx_http_cache_purge-${HTTP_CACHE_PURGE_MODULE_PV}" -HTTP_CACHE_PURGE_MODULE_URI="http://labs.frickle.com/files/ngx_cache_purge-${HTTP_CACHE_PURGE_MODULE_PV}.tar.gz" -HTTP_CACHE_PURGE_MODULE_WD="${WORKDIR}/ngx_cache_purge-${HTTP_CACHE_PURGE_MODULE_PV}" - -# http_slowfs_cache (http://labs.frickle.com/nginx_ngx_slowfs_cache/, BSD-2 license) -HTTP_SLOWFS_CACHE_MODULE_PV="1.10" -HTTP_SLOWFS_CACHE_MODULE_P="ngx_http_slowfs_cache-${HTTP_SLOWFS_CACHE_MODULE_PV}" -HTTP_SLOWFS_CACHE_MODULE_URI="http://labs.frickle.com/files/ngx_slowfs_cache-${HTTP_SLOWFS_CACHE_MODULE_PV}.tar.gz" -HTTP_SLOWFS_CACHE_MODULE_WD="${WORKDIR}/ngx_slowfs_cache-${HTTP_SLOWFS_CACHE_MODULE_PV}" - -# http_fancyindex (https://github.com/aperezdc/ngx-fancyindex, BSD license) -HTTP_FANCYINDEX_MODULE_PV="0.3.5" -HTTP_FANCYINDEX_MODULE_P="ngx_http_fancyindex-${HTTP_FANCYINDEX_MODULE_PV}" -HTTP_FANCYINDEX_MODULE_URI="https://github.com/aperezdc/ngx-fancyindex/archive/v${HTTP_FANCYINDEX_MODULE_PV}.tar.gz" -HTTP_FANCYINDEX_MODULE_WD="${WORKDIR}/ngx-fancyindex-${HTTP_FANCYINDEX_MODULE_PV}" - -# http_lua (https://github.com/openresty/lua-nginx-module, BSD license) -HTTP_LUA_MODULE_PV="0.9.15" -HTTP_LUA_MODULE_P="ngx_http_lua-${HTTP_LUA_MODULE_PV}" -HTTP_LUA_MODULE_URI="https://github.com/openresty/lua-nginx-module/archive/v${HTTP_LUA_MODULE_PV}.tar.gz" -HTTP_LUA_MODULE_WD="${WORKDIR}/lua-nginx-module-${HTTP_LUA_MODULE_PV}" - -# http_auth_pam (http://web.iti.upv.es/~sto/nginx/, BSD-2 license) -HTTP_AUTH_PAM_MODULE_PV="1.4" -HTTP_AUTH_PAM_MODULE_P="ngx_http_auth_pam-${HTTP_AUTH_PAM_MODULE_PV}" -HTTP_AUTH_PAM_MODULE_URI="https://github.com/stogh/ngx_http_auth_pam_module/archive/v${HTTP_AUTH_PAM_MODULE_PV}.tar.gz" -HTTP_AUTH_PAM_MODULE_WD="${WORKDIR}/ngx_http_auth_pam_module-${HTTP_AUTH_PAM_MODULE_PV}" - -# http_upstream_check (https://github.com/yaoweibin/nginx_upstream_check_module, BSD license) -HTTP_UPSTREAM_CHECK_MODULE_PV="0.3.0" -HTTP_UPSTREAM_CHECK_MODULE_P="ngx_http_upstream_check-${HTTP_UPSTREAM_CHECK_MODULE_PV}" -HTTP_UPSTREAM_CHECK_MODULE_URI="https://github.com/yaoweibin/nginx_upstream_check_module/archive/v${HTTP_UPSTREAM_CHECK_MODULE_PV}.tar.gz" -HTTP_UPSTREAM_CHECK_MODULE_WD="${WORKDIR}/nginx_upstream_check_module-${HTTP_UPSTREAM_CHECK_MODULE_PV}" - -# http_metrics (https://github.com/zenops/ngx_metrics, BSD license) -HTTP_METRICS_MODULE_PV="0.1.1" -HTTP_METRICS_MODULE_P="ngx_metrics-${HTTP_METRICS_MODULE_PV}" -HTTP_METRICS_MODULE_URI="https://github.com/madvertise/ngx_metrics/archive/v${HTTP_METRICS_MODULE_PV}.tar.gz" -HTTP_METRICS_MODULE_WD="${WORKDIR}/ngx_metrics-${HTTP_METRICS_MODULE_PV}" - -# naxsi-core (https://github.com/nbs-system/naxsi, GPLv2+) -HTTP_NAXSI_MODULE_PV="0.53-2" -HTTP_NAXSI_MODULE_P="ngx_http_naxsi-${HTTP_NAXSI_MODULE_PV}" -HTTP_NAXSI_MODULE_URI="https://github.com/nbs-system/naxsi/archive/${HTTP_NAXSI_MODULE_PV}.tar.gz" -HTTP_NAXSI_MODULE_WD="${WORKDIR}/naxsi-${HTTP_NAXSI_MODULE_PV}/naxsi_src" - -# nginx-rtmp-module (https://github.com/arut/nginx-rtmp-module, BSD license) -RTMP_MODULE_PV="1.1.7" -RTMP_MODULE_P="ngx_rtmp-${RTMP_MODULE_PV}" -RTMP_MODULE_URI="https://github.com/arut/nginx-rtmp-module/archive/v${RTMP_MODULE_PV}.tar.gz" -RTMP_MODULE_WD="${WORKDIR}/nginx-rtmp-module-${RTMP_MODULE_PV}" - -# nginx-dav-ext-module (https://github.com/arut/nginx-dav-ext-module, BSD license) -HTTP_DAV_EXT_MODULE_PV="0.0.3" -HTTP_DAV_EXT_MODULE_P="ngx_http_dav_ext-${HTTP_DAV_EXT_MODULE_PV}" -HTTP_DAV_EXT_MODULE_URI="https://github.com/arut/nginx-dav-ext-module/archive/v${HTTP_DAV_EXT_MODULE_PV}.tar.gz" -HTTP_DAV_EXT_MODULE_WD="${WORKDIR}/nginx-dav-ext-module-${HTTP_DAV_EXT_MODULE_PV}" - -# echo-nginx-module (https://github.com/agentzh/echo-nginx-module, BSD license) -HTTP_ECHO_MODULE_PV="0.57" -HTTP_ECHO_MODULE_P="ngx_http_echo-${HTTP_ECHO_MODULE_PV}" -HTTP_ECHO_MODULE_URI="https://github.com/agentzh/echo-nginx-module/archive/v${HTTP_ECHO_MODULE_PV}.tar.gz" -HTTP_ECHO_MODULE_WD="${WORKDIR}/echo-nginx-module-${HTTP_ECHO_MODULE_PV}" - -# mod_security for nginx (https://modsecurity.org/, Apache-2.0) -# keep the MODULE_P here consistent with upstream to avoid tarball duplication -HTTP_SECURITY_MODULE_PV="2.9.0" -HTTP_SECURITY_MODULE_P="modsecurity-${HTTP_SECURITY_MODULE_PV}" -HTTP_SECURITY_MODULE_URI="https://www.modsecurity.org/tarball/${HTTP_SECURITY_MODULE_PV}/${HTTP_SECURITY_MODULE_P}.tar.gz" -HTTP_SECURITY_MODULE_WD="${WORKDIR}/${HTTP_SECURITY_MODULE_P}" - -# push-stream-module (http://www.nginxpushstream.com, https://github.com/wandenberg/nginx-push-stream-module, GPL-3) -HTTP_PUSH_STREAM_MODULE_PV="0.4.1" -HTTP_PUSH_STREAM_MODULE_P="ngx_http_push_stream-${HTTP_PUSH_STREAM_MODULE_PV}" -HTTP_PUSH_STREAM_MODULE_URI="https://github.com/wandenberg/nginx-push-stream-module/archive/${HTTP_PUSH_STREAM_MODULE_PV}.tar.gz" -HTTP_PUSH_STREAM_MODULE_WD="${WORKDIR}/nginx-push-stream-module-${HTTP_PUSH_STREAM_MODULE_PV}" - -# sticky-module (https://bitbucket.org/nginx-goodies/nginx-sticky-module-ng, BSD-2) -HTTP_STICKY_MODULE_PV="1.2.5" -HTTP_STICKY_MODULE_P="nginx_http_sticky_module_ng-${HTTP_STICKY_MODULE_PV}" -HTTP_STICKY_MODULE_URI="https://bitbucket.org/nginx-goodies/nginx-sticky-module-ng/get/${HTTP_STICKY_MODULE_PV}.tar.bz2" -HTTP_STICKY_MODULE_WD="${WORKDIR}/nginx-goodies-nginx-sticky-module-ng-bd312d586752" - -# mogilefs-module (http://www.grid.net.ru/nginx/mogilefs.en.html, BSD-2) -HTTP_MOGILEFS_MODULE_PV="1.0.4" -HTTP_MOGILEFS_MODULE_P="ngx_mogilefs_module-${HTTP_MOGILEFS_MODULE_PV}" -HTTP_MOGILEFS_MODULE_URI="http://www.grid.net.ru/nginx/download/nginx_mogilefs_module-${HTTP_MOGILEFS_MODULE_PV}.tar.gz" -HTTP_MOGILEFS_MODULE_WD="${WORKDIR}/nginx_mogilefs_module-${HTTP_MOGILEFS_MODULE_PV}" - -inherit eutils ssl-cert toolchain-funcs perl-module flag-o-matic user systemd versionator multilib - -DESCRIPTION="Robust, small and high performance http and reverse proxy server" -HOMEPAGE="http://nginx.org" -SRC_URI="http://nginx.org/download/${P}.tar.gz - ${DEVEL_KIT_MODULE_URI} -> ${DEVEL_KIT_MODULE_P}.tar.gz - nginx_modules_http_upload_progress? ( ${HTTP_UPLOAD_PROGRESS_MODULE_URI} -> ${HTTP_UPLOAD_PROGRESS_MODULE_P}.tar.gz ) - nginx_modules_http_headers_more? ( ${HTTP_HEADERS_MORE_MODULE_URI} -> ${HTTP_HEADERS_MORE_MODULE_P}.tar.gz ) - nginx_modules_http_cache_purge? ( ${HTTP_CACHE_PURGE_MODULE_URI} -> ${HTTP_CACHE_PURGE_MODULE_P}.tar.gz ) - nginx_modules_http_slowfs_cache? ( ${HTTP_SLOWFS_CACHE_MODULE_URI} -> ${HTTP_SLOWFS_CACHE_MODULE_P}.tar.gz ) - nginx_modules_http_fancyindex? ( ${HTTP_FANCYINDEX_MODULE_URI} -> ${HTTP_FANCYINDEX_MODULE_P}.tar.gz ) - nginx_modules_http_lua? ( ${HTTP_LUA_MODULE_URI} -> ${HTTP_LUA_MODULE_P}.tar.gz ) - nginx_modules_http_auth_pam? ( ${HTTP_AUTH_PAM_MODULE_URI} -> ${HTTP_AUTH_PAM_MODULE_P}.tar.gz ) - nginx_modules_http_upstream_check? ( ${HTTP_UPSTREAM_CHECK_MODULE_URI} -> ${HTTP_UPSTREAM_CHECK_MODULE_P}.tar.gz ) - nginx_modules_http_metrics? ( ${HTTP_METRICS_MODULE_URI} -> ${HTTP_METRICS_MODULE_P}.tar.gz ) - nginx_modules_http_naxsi? ( ${HTTP_NAXSI_MODULE_URI} -> ${HTTP_NAXSI_MODULE_P}.tar.gz ) - rtmp? ( ${RTMP_MODULE_URI} -> ${RTMP_MODULE_P}.tar.gz ) - nginx_modules_http_dav_ext? ( ${HTTP_DAV_EXT_MODULE_URI} -> ${HTTP_DAV_EXT_MODULE_P}.tar.gz ) - nginx_modules_http_echo? ( ${HTTP_ECHO_MODULE_URI} -> ${HTTP_ECHO_MODULE_P}.tar.gz ) - nginx_modules_http_security? ( ${HTTP_SECURITY_MODULE_URI} -> ${HTTP_SECURITY_MODULE_P}.tar.gz ) - nginx_modules_http_push_stream? ( ${HTTP_PUSH_STREAM_MODULE_URI} -> ${HTTP_PUSH_STREAM_MODULE_P}.tar.gz ) - nginx_modules_http_sticky? ( ${HTTP_STICKY_MODULE_URI} -> ${HTTP_STICKY_MODULE_P}.tar.bz2 ) - nginx_modules_http_mogilefs? ( ${HTTP_MOGILEFS_MODULE_URI} -> ${HTTP_MOGILEFS_MODULE_P}.tar.gz )" - -LICENSE="BSD-2 BSD SSLeay MIT GPL-2 GPL-2+ - nginx_modules_http_security? ( Apache-2.0 ) - nginx_modules_http_push_stream? ( GPL-3 )" - -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc x86 ~x86-fbsd ~amd64-linux ~x86-linux" - -NGINX_MODULES_STD="access auth_basic autoindex browser charset empty_gif fastcgi -geo gzip limit_req limit_conn map memcached proxy referer rewrite scgi ssi -split_clients upstream_ip_hash userid uwsgi" -NGINX_MODULES_OPT="addition auth_request dav degradation flv geoip gunzip gzip_static -image_filter mp4 perl random_index realip secure_link spdy stub_status sub xslt" -NGINX_MODULES_MAIL="imap pop3 smtp" -NGINX_MODULES_3RD=" - http_upload_progress - http_headers_more - http_cache_purge - http_slowfs_cache - http_fancyindex - http_lua - http_auth_pam - http_upstream_check - http_metrics - http_naxsi - http_dav_ext - http_echo - http_security - http_push_stream - http_sticky - http_ajp - http_mogilefs" - -IUSE="aio debug +http +http-cache ipv6 libatomic luajit +pcre pcre-jit rtmp -selinux ssl userland_GNU vim-syntax" - -for mod in $NGINX_MODULES_STD; do - IUSE="${IUSE} +nginx_modules_http_${mod}" -done - -for mod in $NGINX_MODULES_OPT; do - IUSE="${IUSE} nginx_modules_http_${mod}" -done - -for mod in $NGINX_MODULES_MAIL; do - IUSE="${IUSE} nginx_modules_mail_${mod}" -done - -for mod in $NGINX_MODULES_3RD; do - IUSE="${IUSE} nginx_modules_${mod}" -done - -CDEPEND=" - pcre? ( >=dev-libs/libpcre-4.2 ) - pcre-jit? ( >=dev-libs/libpcre-8.20[jit] ) - ssl? ( dev-libs/openssl:0= ) - http-cache? ( userland_GNU? ( dev-libs/openssl:0= ) ) - nginx_modules_http_geoip? ( dev-libs/geoip ) - nginx_modules_http_gunzip? ( sys-libs/zlib ) - nginx_modules_http_gzip? ( sys-libs/zlib ) - nginx_modules_http_gzip_static? ( sys-libs/zlib ) - nginx_modules_http_image_filter? ( media-libs/gd[jpeg,png] ) - nginx_modules_http_perl? ( >=dev-lang/perl-5.8 ) - nginx_modules_http_rewrite? ( >=dev-libs/libpcre-4.2 ) - nginx_modules_http_secure_link? ( userland_GNU? ( dev-libs/openssl:0= ) ) - nginx_modules_http_spdy? ( >=dev-libs/openssl-1.0.1c:0= ) - nginx_modules_http_xslt? ( dev-libs/libxml2 dev-libs/libxslt ) - nginx_modules_http_lua? ( !luajit? ( dev-lang/lua:0= ) luajit? ( dev-lang/luajit:2= ) ) - nginx_modules_http_auth_pam? ( virtual/pam ) - nginx_modules_http_metrics? ( dev-libs/yajl ) - nginx_modules_http_dav_ext? ( dev-libs/expat ) - nginx_modules_http_security? ( >=dev-libs/libxml2-2.7.8 dev-libs/apr-util www-servers/apache )" -RDEPEND="${CDEPEND} - selinux? ( sec-policy/selinux-nginx ) -" -DEPEND="${CDEPEND} - arm? ( dev-libs/libatomic_ops ) - libatomic? ( dev-libs/libatomic_ops )" -PDEPEND="vim-syntax? ( app-vim/nginx-syntax )" - -REQUIRED_USE="pcre-jit? ( pcre ) - nginx_modules_http_lua? ( nginx_modules_http_rewrite ) - nginx_modules_http_naxsi? ( pcre ) - nginx_modules_http_dav_ext? ( nginx_modules_http_dav ) - nginx_modules_http_metrics? ( nginx_modules_http_stub_status ) - nginx_modules_http_security? ( pcre ) - nginx_modules_http_push_stream? ( ssl )" - -pkg_setup() { - NGINX_HOME="/var/lib/nginx" - NGINX_HOME_TMP="${NGINX_HOME}/tmp" - - ebegin "Creating nginx user and group" - enewgroup ${PN} - enewuser ${PN} -1 -1 "${NGINX_HOME}" ${PN} - eend $? - - if use libatomic; then - ewarn "GCC 4.1+ features built-in atomic operations." - ewarn "Using libatomic_ops is only needed if using" - ewarn "a different compiler or a GCC prior to 4.1" - fi - - if [[ -n $NGINX_ADD_MODULES ]]; then - ewarn "You are building custom modules via \$NGINX_ADD_MODULES!" - ewarn "This nginx installation is not supported!" - ewarn "Make sure you can reproduce the bug without those modules" - ewarn "_before_ reporting bugs." - fi - - if use !http; then - ewarn "To actually disable all http-functionality you also have to disable" - ewarn "all nginx http modules." - fi - - if use nginx_modules_http_ajp; then - eerror "The AJP module currently doesn't build for nginx >1.8." - eerror "It will be reintroduced with the 1.9 series when proven stable." - eerror "Either disable it or stick with nginx 1.7.x." - die "AJP module not supported" - fi -} - -src_prepare() { - epatch "${FILESDIR}/${PN}-1.4.1-fix-perl-install-path.patch" - - if use nginx_modules_http_upstream_check; then - epatch "${FILESDIR}"/check_1.7.2+.patch - fi - - if use nginx_modules_http_lua; then - sed -i -e 's/-llua5.1/-llua/' "${HTTP_LUA_MODULE_WD}/config" || die - fi - - find auto/ -type f -print0 | xargs -0 sed -i 's:\&\& make:\&\& \\$(MAKE):' || die - # We have config protection, don't rename etc files - sed -i 's:.default::' auto/install || die - # remove useless files - sed -i -e '/koi-/d' -e '/win-/d' auto/install || die - - # don't install to /etc/nginx/ if not in use - local module - for module in fastcgi scgi uwsgi ; do - if ! use nginx_modules_http_${module}; then - sed -i -e "/${module}/d" auto/install || die - fi - done - - epatch_user -} - -src_configure() { - # mod_security needs to generate nginx/modsecurity/config before including it - if use nginx_modules_http_security; then - cd "${HTTP_SECURITY_MODULE_WD}" - if use luajit ; then - sed -i \ - -e 's|^\(LUA_PKGNAMES\)=.*|\1="luajit"|' \ - configure || die - fi - ./configure \ - --enable-standalone-module \ - $(use_enable pcre-jit) \ - $(use_with nginx_modules_http_lua lua) || die "configure failed for mod_security" - fi - - cd "${S}" - - local myconf= http_enabled= mail_enabled= - - use aio && myconf+=" --with-file-aio --with-aio_module" - use debug && myconf+=" --with-debug" - use ipv6 && myconf+=" --with-ipv6" - use libatomic && myconf+=" --with-libatomic" - use pcre && myconf+=" --with-pcre" - use pcre-jit && myconf+=" --with-pcre-jit" - - # HTTP modules - for mod in $NGINX_MODULES_STD; do - if use nginx_modules_http_${mod}; then - http_enabled=1 - else - myconf+=" --without-http_${mod}_module" - fi - done - - for mod in $NGINX_MODULES_OPT; do - if use nginx_modules_http_${mod}; then - http_enabled=1 - myconf+=" --with-http_${mod}_module" - fi - done - - if use nginx_modules_http_fastcgi; then - myconf+=" --with-http_realip_module" - fi - - # third-party modules - if use nginx_modules_http_upload_progress; then - http_enabled=1 - myconf+=" --add-module=${HTTP_UPLOAD_PROGRESS_MODULE_WD}" - fi - - if use nginx_modules_http_headers_more; then - http_enabled=1 - myconf+=" --add-module=${HTTP_HEADERS_MORE_MODULE_WD}" - fi - - if use nginx_modules_http_cache_purge; then - http_enabled=1 - myconf+=" --add-module=${HTTP_CACHE_PURGE_MODULE_WD}" - fi - - if use nginx_modules_http_slowfs_cache; then - http_enabled=1 - myconf+=" --add-module=${HTTP_SLOWFS_CACHE_MODULE_WD}" - fi - - if use nginx_modules_http_fancyindex; then - http_enabled=1 - myconf+=" --add-module=${HTTP_FANCYINDEX_MODULE_WD}" - fi - - if use nginx_modules_http_lua; then - http_enabled=1 - if use luajit; then - export LUAJIT_LIB=$(pkg-config --variable libdir luajit) - export LUAJIT_INC=$(pkg-config --variable includedir luajit) - else - export LUA_LIB=$(pkg-config --variable libdir lua) - export LUA_INC=$(pkg-config --variable includedir lua) - fi - myconf+=" --add-module=${DEVEL_KIT_MODULE_WD}" - myconf+=" --add-module=${HTTP_LUA_MODULE_WD}" - fi - - if use nginx_modules_http_auth_pam; then - http_enabled=1 - myconf+=" --add-module=${HTTP_AUTH_PAM_MODULE_WD}" - fi - - if use nginx_modules_http_upstream_check; then - http_enabled=1 - myconf+=" --add-module=${HTTP_UPSTREAM_CHECK_MODULE_WD}" - fi - - if use nginx_modules_http_metrics; then - http_enabled=1 - myconf+=" --add-module=${HTTP_METRICS_MODULE_WD}" - fi - - if use nginx_modules_http_naxsi ; then - http_enabled=1 - myconf+=" --add-module=${HTTP_NAXSI_MODULE_WD}" - fi - - if use rtmp ; then - http_enabled=1 - myconf+=" --add-module=${RTMP_MODULE_WD}" - fi - - if use nginx_modules_http_dav_ext ; then - http_enabled=1 - myconf+=" --add-module=${HTTP_DAV_EXT_MODULE_WD}" - fi - - if use nginx_modules_http_echo ; then - http_enabled=1 - myconf+=" --add-module=${HTTP_ECHO_MODULE_WD}" - fi - - if use nginx_modules_http_security ; then - http_enabled=1 - myconf+=" --add-module=${HTTP_SECURITY_MODULE_WD}/nginx/modsecurity" - fi - - if use nginx_modules_http_push_stream ; then - http_enabled=1 - myconf+=" --add-module=${HTTP_PUSH_STREAM_MODULE_WD}" - fi - - if use nginx_modules_http_sticky ; then - http_enabled=1 - myconf+=" --add-module=${HTTP_STICKY_MODULE_WD}" - fi - - if use nginx_modules_http_mogilefs ; then - http_enabled=1 - myconf+=" --add-module=${HTTP_MOGILEFS_MODULE_WD}" - fi - - if use http || use http-cache; then - http_enabled=1 - fi - - if [ $http_enabled ]; then - use http-cache || myconf+=" --without-http-cache" - use ssl && myconf+=" --with-http_ssl_module" - else - myconf+=" --without-http --without-http-cache" - fi - - # MAIL modules - for mod in $NGINX_MODULES_MAIL; do - if use nginx_modules_mail_${mod}; then - mail_enabled=1 - else - myconf+=" --without-mail_${mod}_module" - fi - done - - if [ $mail_enabled ]; then - myconf+=" --with-mail" - use ssl && myconf+=" --with-mail_ssl_module" - fi - - # custom modules - for mod in $NGINX_ADD_MODULES; do - myconf+=" --add-module=${mod}" - done - - # https://bugs.gentoo.org/286772 - export LANG=C LC_ALL=C - tc-export CC - - if ! use prefix; then - myconf+=" --user=${PN} --group=${PN}" - fi - - ./configure \ - --prefix="${EPREFIX}"/usr \ - --conf-path="${EPREFIX}"/etc/${PN}/${PN}.conf \ - --error-log-path="${EPREFIX}"/var/log/${PN}/error_log \ - --pid-path="${EPREFIX}"/run/${PN}.pid \ - --lock-path="${EPREFIX}"/run/lock/${PN}.lock \ - --with-cc-opt="-I${EROOT}usr/include" \ - --with-ld-opt="-L${EROOT}usr/$(get_libdir)" \ - --http-log-path="${EPREFIX}"/var/log/${PN}/access_log \ - --http-client-body-temp-path="${EPREFIX}${NGINX_HOME_TMP}"/client \ - --http-proxy-temp-path="${EPREFIX}${NGINX_HOME_TMP}"/proxy \ - --http-fastcgi-temp-path="${EPREFIX}${NGINX_HOME_TMP}"/fastcgi \ - --http-scgi-temp-path="${EPREFIX}${NGINX_HOME_TMP}"/scgi \ - --http-uwsgi-temp-path="${EPREFIX}${NGINX_HOME_TMP}"/uwsgi \ - ${myconf} || die "configure failed" - - # A purely cosmetic change that makes nginx -V more readable. This can be - # good if people outside the gentoo community would troubleshoot and - # question the users setup. - sed -i -e "s|${WORKDIR}|external_module|g" objs/ngx_auto_config.h || die -} - -src_compile() { - use nginx_modules_http_security && emake -C "${HTTP_SECURITY_MODULE_WD}" - - # https://bugs.gentoo.org/286772 - export LANG=C LC_ALL=C - emake LINK="${CC} ${LDFLAGS}" OTHERLDFLAGS="${LDFLAGS}" -} - -src_install() { - emake DESTDIR="${D%/}" install - - cp "${FILESDIR}"/nginx.conf "${ED}"etc/nginx/nginx.conf || die - - newinitd "${FILESDIR}"/nginx.initd-r2 nginx - - systemd_newunit "${FILESDIR}"/nginx.service-r1 nginx.service - - doman man/nginx.8 - dodoc CHANGES* README - - # just keepdir. do not copy the default htdocs files (bug #449136) - keepdir /var/www/localhost - rm -rf "${D}"usr/html || die - - # set up a list of directories to keep - local keepdir_list="${NGINX_HOME_TMP}"/client - local module - for module in proxy fastcgi scgi uwsgi; do - use nginx_modules_http_${module} && keepdir_list+=" ${NGINX_HOME_TMP}/${module}" - done - - keepdir /var/log/nginx ${keepdir_list} - - # this solves a problem with SELinux where nginx doesn't see the directories - # as root and tries to create them as nginx - fperms 0750 "${NGINX_HOME_TMP}" - fowners ${PN}:0 "${NGINX_HOME_TMP}" - - fperms 0700 /var/log/nginx ${keepdir_list} - fowners ${PN}:${PN} /var/log/nginx ${keepdir_list} - - # logrotate - insinto /etc/logrotate.d - newins "${FILESDIR}"/nginx.logrotate-r1 nginx - - if use nginx_modules_http_perl; then - cd "${S}"/objs/src/http/modules/perl/ - emake DESTDIR="${D}" INSTALLDIRS=vendor - perl_delete_localpod - fi - - if use nginx_modules_http_cache_purge; then - docinto ${HTTP_CACHE_PURGE_MODULE_P} - dodoc "${HTTP_CACHE_PURGE_MODULE_WD}"/{CHANGES,README.md,TODO.md} - fi - - if use nginx_modules_http_slowfs_cache; then - docinto ${HTTP_SLOWFS_CACHE_MODULE_P} - dodoc "${HTTP_SLOWFS_CACHE_MODULE_WD}"/{CHANGES,README.md} - fi - - if use nginx_modules_http_fancyindex; then - docinto ${HTTP_FANCYINDEX_MODULE_P} - dodoc "${HTTP_FANCYINDEX_MODULE_WD}"/README.rst - fi - - if use nginx_modules_http_lua; then - docinto ${HTTP_LUA_MODULE_P} - dodoc "${HTTP_LUA_MODULE_WD}"/{Changes,README.markdown} - fi - - if use nginx_modules_http_auth_pam; then - docinto ${HTTP_AUTH_PAM_MODULE_P} - dodoc "${HTTP_AUTH_PAM_MODULE_WD}"/{README.md,ChangeLog} - fi - - if use nginx_modules_http_upstream_check; then - docinto ${HTTP_UPSTREAM_CHECK_MODULE_P} - dodoc "${HTTP_UPSTREAM_CHECK_MODULE_WD}"/{README,CHANGES} - fi - -# README.md is still empty -# if use nginx_modules_http_metrics; then -# docinto ${HTTP_METRICS_MODULE_P} -# dodoc "${HTTP_METRICS_MODULE_WD}"/README.md -# fi - - if use nginx_modules_http_naxsi; then - insinto /etc/nginx - doins "${HTTP_NAXSI_MODULE_WD}"/../naxsi_config/naxsi_core.rules - fi - - if use rtmp; then - docinto ${RTMP_MODULE_P} - dodoc "${RTMP_MODULE_WD}"/{AUTHORS,README.md,stat.xsl} - fi - - if use nginx_modules_http_dav_ext; then - docinto ${HTTP_DAV_EXT_MODULE_P} - dodoc "${HTTP_DAV_EXT_MODULE_WD}"/README - fi - - if use nginx_modules_http_echo; then - docinto ${HTTP_ECHO_MODULE_P} - dodoc "${HTTP_ECHO_MODULE_WD}"/{README.markdown,doc/HttpEchoModule.wiki} - fi - - if use nginx_modules_http_security; then - docinto ${HTTP_SECURITY_MODULE_P} - dodoc "${HTTP_SECURITY_MODULE_WD}"/{CHANGES,README.TXT,authors.txt} - fi - - if use nginx_modules_http_push_stream; then - docinto ${HTTP_PUSH_STREAM_MODULE_P} - dodoc "${HTTP_PUSH_STREAM_MODULE_WD}"/{AUTHORS,CHANGELOG.textile,README.textile} - fi - - if use nginx_modules_http_sticky; then - docinto ${HTTP_STICKY_MODULE_P} - dodoc "${HTTP_STICKY_MODULE_WD}"/{README.md,Changelog.txt,docs/sticky.pdf} - fi -} - -pkg_postinst() { - if use ssl; then - if [ ! -f "${EROOT}"etc/ssl/${PN}/${PN}.key ]; then - install_cert /etc/ssl/${PN}/${PN} - use prefix || chown ${PN}:${PN} "${EROOT}"etc/ssl/${PN}/${PN}.{crt,csr,key,pem} - fi - fi - - if use nginx_modules_http_lua && use nginx_modules_http_spdy; then - ewarn "Lua 3rd party module author warns against using ${P} with" - ewarn "NGINX_MODULES_HTTP=\"lua spdy\". For more info, see http://git.io/OldLsg" - fi - - # This is the proper fix for bug #458726/#469094, resp. CVE-2013-0337 for - # existing installations - local fix_perms=0 - - for rv in ${REPLACING_VERSIONS} ; do - version_compare ${rv} 1.4.1-r2 - [[ $? -eq 1 ]] && fix_perms=1 - done - - if [[ $fix_perms -eq 1 ]] ; then - ewarn "To fix a security bug (CVE-2013-0337, bug #458726) had the following" - ewarn "directories the world-readable bit removed (if set):" - ewarn " ${EPREFIX}/var/log/nginx" - ewarn " ${EPREFIX}${NGINX_HOME_TMP}/{,client,proxy,fastcgi,scgi,uwsgi}" - ewarn "Check if this is correct for your setup before restarting nginx!" - ewarn "This is a one-time change and will not happen on subsequent updates." - ewarn "Furthermore nginx' temp directories got moved to ${NGINX_HOME_TMP}" - chmod -f o-rwx "${EPREFIX}"/var/log/nginx "${EPREFIX}${NGINX_HOME_TMP}"/{,client,proxy,fastcgi,scgi,uwsgi} - fi - - # If the nginx user can't change into or read the dir, display a warning. - # If su is not available we display the warning nevertheless since we can't check properly - su -s /bin/sh -c 'cd /var/log/nginx/ && ls' nginx >&/dev/null - if [ $? -ne 0 ] ; then - ewarn "Please make sure that the nginx user or group has at least" - ewarn "'rx' permissions on /var/log/nginx (default on a fresh install)" - ewarn "Otherwise you end up with empty log files after a logrotate." - fi -} diff --git a/www-servers/nginx/nginx-1.9.7.ebuild b/www-servers/nginx/nginx-1.9.10.ebuild similarity index 99% rename from www-servers/nginx/nginx-1.9.7.ebuild rename to www-servers/nginx/nginx-1.9.10.ebuild index f13c837b9747..6c88b32e49d6 100644 --- a/www-servers/nginx/nginx-1.9.7.ebuild +++ b/www-servers/nginx/nginx-1.9.10.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$