diff --git a/app-admin/logrotate/Manifest b/app-admin/logrotate/Manifest index d4275529c9f6..25d4efc6ab46 100644 --- a/app-admin/logrotate/Manifest +++ b/app-admin/logrotate/Manifest @@ -1,3 +1,2 @@ -DIST logrotate-3.8.8.tar.gz 72014 SHA256 46a1510ef4a1f4359edd5f361112cfd1523942e85ff28e6cbb0c81bad1829d0f SHA512 2b7b5fe587b3a5cbe98b8035a541b5e272e6e4c40669f65ff6c43d1524b686eca9abc0b93bc00c8eb6da4d189f14a9b79905fcc0fadb914276d884ad7493bb4b WHIRLPOOL b145d51cdcf0214e4f4b6a97aed7b9e1375c2848efecbc16181eaa6e1105ac8892c57248c89b92eb080d6cd6b23958085f39a894df7f5dce0bea6516e2d583c4 DIST logrotate-3.8.9.tar.gz 77408 SHA256 700ed7ce9072a1cca324779a74797dfaefdae37ac50a817134b947c4ded1dfa7 SHA512 342533f321a1d77c0ca389fd0a393377ba73f10654aae163cbd35f8d5df25673f1aa6e44d0af42be5419d152a7dae11024d9005076bce0a3b3dad1f0e12b9c0d WHIRLPOOL 005621b5dc7f6954e505876eece76e3adf03b9b89b724e5c28b845c8af3ebb8e978d20e3a82c8a503c32bfd8758517625207e23518d6d08068e237c22fe7212d DIST logrotate-3.9.1.tar.gz 79061 SHA256 022769e3288c80981559a8421703c88e8438b447235e36dd3c8e97cd94c52545 SHA512 e6da7c7f067befaf2441e9c6ce77e53cf5ddb4f56cc3304c3e50873b6f20c68520f4a0e50ec466cbebcbed20bfd77bf6dfc489975a8131e9573fb19856c0fe28 WHIRLPOOL 9b3558bb03c6c95f8f386ea75ca09bfda802ae4c45b9ef8408692e3aa7a2ee57447cf15ce04d0289946b9cae2266acb5509d8151d15ac6ea0ad9113aeb32dc17 diff --git a/app-admin/logrotate/files/logrotate-3.8.8-Werror.patch b/app-admin/logrotate/files/logrotate-3.8.8-Werror.patch deleted file mode 100644 index db965296d9e4..000000000000 --- a/app-admin/logrotate/files/logrotate-3.8.8-Werror.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/Makefile.am -+++ b/Makefile.am -@@ -1,7 +1,7 @@ - MAN = logrotate.8 - MAN5 = logrotate.conf.5 - --AM_CFLAGS = -Wall -Werror -+AM_CFLAGS = -Wall - sbin_PROGRAMS = logrotate - logrotate_SOURCES = logrotate.c log.c config.c basenames.c - diff --git a/app-admin/logrotate/files/logrotate-3.8.8-atomic-create.patch b/app-admin/logrotate/files/logrotate-3.8.8-atomic-create.patch deleted file mode 100644 index 281612531262..000000000000 --- a/app-admin/logrotate/files/logrotate-3.8.8-atomic-create.patch +++ /dev/null @@ -1,45 +0,0 @@ -diff -Nuar a/logrotate.c b/logrotate.c ---- a/logrotate.c 2014-10-16 13:12:35.000000000 +0200 -+++ b/logrotate.c 2014-11-04 20:26:46.080067315 +0100 -@@ -359,15 +359,20 @@ - int createOutputFile(char *fileName, int flags, struct stat *sb, acl_type acl, int force_mode) - { - int fd; -- struct stat sb_create; -- int acl_set = 0; -- -- fd = open(fileName, (flags | O_EXCL | O_NOFOLLOW), -- (S_IRUSR | S_IWUSR) & sb->st_mode); -+ int acl_set = 0; -+ struct stat sb_create; -+ char template[PATH_MAX + 1]; -+ char *fname; -+ mode_t umask_value; -+ snprintf(template, PATH_MAX, "%s/logrotate_temp.XXXXXX", ourDirName(fileName)); -+ umask_value = umask(0000); -+ fname = mktemp(template); -+ fd = open(fname, (flags | O_EXCL | O_NOFOLLOW), (S_IRUSR | S_IWUSR) & sb->st_mode); -+ umask(umask_value); - - if (fd < 0) { -- message(MESS_ERROR, "error creating output file %s: %s\n", -- fileName, strerror(errno)); -+ message(MESS_ERROR, "error creating unique temp file: %s\n", -+ strerror(errno)); - return -1; - } - if (fchmod(fd, (S_IRUSR | S_IWUSR) & sb->st_mode)) { -@@ -418,6 +423,13 @@ - } - } - -+ if (rename(template, fileName)) { -+ message(MESS_ERROR, "error renaming temp file to %s: %s\n", -+ fileName, strerror(errno)); -+ close(fd); -+ return -1; -+ } -+ - return fd; - } - diff --git a/app-admin/logrotate/files/logrotate-3.8.8-fbsd.patch b/app-admin/logrotate/files/logrotate-3.8.8-fbsd.patch deleted file mode 100644 index ff10211de83a..000000000000 --- a/app-admin/logrotate/files/logrotate-3.8.8-fbsd.patch +++ /dev/null @@ -1,57 +0,0 @@ -diff -Nuar a/config.c b/config.c ---- a/config.c 2014-10-16 13:12:35.000000000 +0200 -+++ b/config.c 2014-11-04 19:22:31.750055957 +0100 -@@ -1,6 +1,6 @@ - #include - /* Alloca is defined in stdlib.h in NetBSD */ --#ifndef __NetBSD__ -+#if !defined(__NetBSD__) && !defined(__FreeBSD__) - #include - #endif - #include -@@ -24,6 +24,10 @@ - #include - #include - -+#if !defined(PATH_MAX) && defined(__FreeBSD__) -+#include -+#endif -+ - #include "basenames.h" - #include "log.h" - #include "logrotate.h" -diff -Nuar a/logrotate.c b/logrotate.c ---- a/logrotate.c 2014-10-16 13:12:35.000000000 +0200 -+++ b/logrotate.c 2014-11-04 19:25:35.440056498 +0100 -@@ -1,6 +1,6 @@ - #include - /* alloca() is defined in stdlib.h in NetBSD */ --#ifndef __NetBSD__ -+#if !defined(__NetBSD__) && !defined(__FreeBSD__) - #include - #endif - #include -@@ -25,6 +25,10 @@ - #include - #endif - -+#if !defined(PATH_MAX) && defined(__FreeBSD__) -+#include -+#endif -+ - #include "basenames.h" - #include "log.h" - #include "logrotate.h" -diff -Nuar a/Makefile b/Makefile ---- a/Makefile 2014-10-16 13:12:35.000000000 +0200 -+++ b/Makefile 2014-11-04 19:26:07.850056594 +0100 -@@ -22,7 +22,9 @@ - - ifeq ($(WITH_ACL),yes) - CFLAGS += -DWITH_ACL -+ifneq ($(OS_NAME),FreeBSD) - LOADLIBES += -lacl -+endif - # See pretest - TEST_ACL=1 - else diff --git a/app-admin/logrotate/files/logrotate-3.8.8-ignore-hidden.patch b/app-admin/logrotate/files/logrotate-3.8.8-ignore-hidden.patch deleted file mode 100644 index bdd0fbd9f553..000000000000 --- a/app-admin/logrotate/files/logrotate-3.8.8-ignore-hidden.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff -Nuar a/config.c b/config.c ---- a/config.c 2014-10-16 13:12:35.000000000 +0200 -+++ b/config.c 2014-11-04 19:19:55.200055496 +0100 -@@ -255,7 +255,9 @@ - char *pattern; - - /* Check if fname is '.' or '..'; if so, return false */ -- if (fname[0] == '.' && (!fname[1] || (fname[1] == '.' && !fname[2]))) -+ /* Don't include 'hidden' files either; this breaks Gentoo -+ portage config file management http://bugs.gentoo.org/87683 */ -+ if (fname[0] == '.') - return 0; - - /* Check if fname is ending in a taboo-extension; if so, return false */ diff --git a/app-admin/logrotate/files/logrotate-3.8.8-noasprintf.patch b/app-admin/logrotate/files/logrotate-3.8.8-noasprintf.patch deleted file mode 100644 index 31ad70717bb9..000000000000 --- a/app-admin/logrotate/files/logrotate-3.8.8-noasprintf.patch +++ /dev/null @@ -1,55 +0,0 @@ -diff -Nuar a/config.c b/config.c ---- a/config.c 2014-10-16 13:12:35.000000000 +0200 -+++ b/config.c 2014-11-04 19:28:58.110057096 +0100 -@@ -45,39 +45,6 @@ - #include "asprintf.c" - #endif - --#if !defined(asprintf) && !defined(_FORTIFY_SOURCE) --#include -- --int asprintf(char **string_ptr, const char *format, ...) --{ -- va_list arg; -- char *str; -- int size; -- int rv; -- -- va_start(arg, format); -- size = vsnprintf(NULL, 0, format, arg); -- size++; -- va_start(arg, format); -- str = malloc(size); -- if (str == NULL) { -- va_end(arg); -- /* -- * Strictly speaking, GNU asprintf doesn't do this, -- * but the caller isn't checking the return value. -- */ -- fprintf(stderr, "failed to allocate memory\\n"); -- exit(1); -- } -- rv = vsnprintf(str, size, format, arg); -- va_end(arg); -- -- *string_ptr = str; -- return (rv); --} -- --#endif -- - #if !defined(strndup) - char *strndup(const char *s, size_t n) - { -diff -Nuar a/logrotate.h b/logrotate.h ---- a/logrotate.h 2014-10-16 13:12:35.000000000 +0200 -+++ b/logrotate.h 2014-11-04 19:29:15.610057147 +0100 -@@ -75,8 +75,5 @@ - extern int debug; - - int readAllConfigPaths(const char **paths); --#if !defined(asprintf) && !defined(_FORTIFY_SOURCE) --int asprintf(char **string_ptr, const char *format, ...); --#endif - - #endif diff --git a/app-admin/logrotate/logrotate-3.8.8.ebuild b/app-admin/logrotate/logrotate-3.8.8.ebuild deleted file mode 100644 index 1085ce9e4978..000000000000 --- a/app-admin/logrotate/logrotate-3.8.8.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit autotools eutils toolchain-funcs flag-o-matic - -DESCRIPTION="Rotates, compresses, and mails system logs" -HOMEPAGE="https://fedorahosted.org/logrotate/" -SRC_URI="https://fedorahosted.org/releases/l/o/logrotate/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ~ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd" -IUSE="acl selinux" - -CDEPEND=" - >=dev-libs/popt-1.5 - selinux? ( - sys-libs/libselinux - ) - acl? ( virtual/acl )" - -DEPEND="${CDEPEND} - >=sys-apps/sed-4 -" -RDEPEND="${CDEPEND} - selinux? ( sec-policy/selinux-logrotate ) -" - -src_prepare() { - epatch \ - "${FILESDIR}"/${P}-ignore-hidden.patch \ - "${FILESDIR}"/${P}-fbsd.patch \ - "${FILESDIR}"/${P}-noasprintf.patch \ - "${FILESDIR}"/${P}-atomic-create.patch \ - "${FILESDIR}"/${P}-Werror.patch - eautoreconf -} - -src_compile() { - local myconf - myconf="CC=$(tc-getCC)" - use selinux && myconf="${myconf} WITH_SELINUX=yes" - use acl && myconf="${myconf} WITH_ACL=yes" - emake ${myconf} RPM_OPT_FLAGS="${CFLAGS}" -} - -src_install() { - insinto /usr - dosbin logrotate - doman logrotate.8 - dodoc CHANGES examples/logrotate* - - exeinto /etc/cron.daily - newexe "${S}"/examples/logrotate.cron "${PN}" - - insinto /etc - doins "${FILESDIR}"/logrotate.conf - - keepdir /etc/logrotate.d -} - -pkg_postinst() { - if [[ -z ${REPLACING_VERSIONS} ]] ; then - elog "If you wish to have logrotate e-mail you updates, please" - elog "emerge virtual/mailx and configure logrotate in" - elog "/etc/logrotate.conf appropriately" - elog - elog "Additionally, /etc/logrotate.conf may need to be modified" - elog "for your particular needs. See man logrotate for details." - fi -} diff --git a/app-arch/snappy/snappy-1.1.3.ebuild b/app-arch/snappy/snappy-1.1.3.ebuild index f1b28cee0f18..89fab9fcc3f9 100644 --- a/app-arch/snappy/snappy-1.1.3.ebuild +++ b/app-arch/snappy/snappy-1.1.3.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/google/${PN}/releases/download/${PV}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux" IUSE="static-libs" src_prepare() { diff --git a/app-editors/xemacs/xemacs-21.4.24.ebuild b/app-editors/xemacs/xemacs-21.4.24.ebuild index 31b88c591801..bfc36b12684f 100644 --- a/app-editors/xemacs/xemacs-21.4.24.ebuild +++ b/app-editors/xemacs/xemacs-21.4.24.ebuild @@ -18,7 +18,7 @@ SRC_URI="http://ftp.xemacs.org/xemacs-21.4/${P}.tar.gz LICENSE="GPL-2+" SLOT="0" -KEYWORDS="alpha amd64 hppa ppc ppc64 sparc ~x86" +KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86" IUSE="eolconv gif gpm pop postgres ldap xface nas dnd X jpeg tiff png mule motif freewnn canna xim athena neXt Xaw3d gdbm berkdb" X_DEPEND="x11-libs/libXt x11-libs/libXmu x11-libs/libXext x11-misc/xbitmaps" diff --git a/app-emulation/virtualbox/virtualbox-5.0.6-r1.ebuild b/app-emulation/virtualbox/virtualbox-5.0.6-r1.ebuild new file mode 100644 index 000000000000..7619b88beb11 --- /dev/null +++ b/app-emulation/virtualbox/virtualbox-5.0.6-r1.ebuild @@ -0,0 +1,432 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) +inherit eutils fdo-mime flag-o-matic java-pkg-opt-2 linux-info multilib pax-utils python-single-r1 qt4-r2 toolchain-funcs udev + +MY_PV="${PV/beta/BETA}" +MY_PV="${MY_PV/rc/RC}" +MY_P=VirtualBox-${MY_PV} +SRC_URI="http://download.virtualbox.org/virtualbox/${MY_PV}/${MY_P}.tar.bz2 + https://dev.gentoo.org/~polynomial-c/${PN}/patchsets/${PN}-5.0.2-patches-01.tar.xz" +S="${WORKDIR}/${MY_P}" + +DESCRIPTION="Family of powerful x86 virtualization products for enterprise as well as home use" +HOMEPAGE="http://www.virtualbox.org/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="alsa doc headless java libressl pam pulseaudio +opengl python +qt4 +sdk +udev vboxwebsrv vnc" + +RDEPEND="!app-emulation/virtualbox-bin + ~app-emulation/virtualbox-modules-${PV} + dev-libs/libIDL + >=dev-libs/libxslt-1.1.19 + net-misc/curl + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:= ) + dev-libs/libxml2 + media-libs/libpng:0= + media-libs/libvpx + sys-libs/zlib + !headless? ( + qt4? ( + dev-qt/qtgui:4 + dev-qt/qtcore:4 + opengl? ( dev-qt/qtopengl:4 ) + x11-libs/libXinerama + ) + opengl? ( virtual/opengl media-libs/freeglut ) + x11-libs/libX11 + x11-libs/libXcursor + x11-libs/libXext + x11-libs/libXmu + x11-libs/libXt + media-libs/libsdl:0[X,video] + ) + + java? ( >=virtual/jre-1.6:= ) + udev? ( >=virtual/udev-171 ) + vnc? ( >=net-libs/libvncserver-0.9.9 )" +DEPEND="${RDEPEND} + >=dev-util/kbuild-0.1.9998_pre20131130 + >=dev-lang/yasm-0.6.2 + sys-devel/bin86 + sys-power/iasl + pam? ( sys-libs/pam ) + sys-libs/libcap + doc? ( + dev-texlive/texlive-basic + dev-texlive/texlive-latex + dev-texlive/texlive-latexrecommended + dev-texlive/texlive-latexextra + dev-texlive/texlive-fontsrecommended + dev-texlive/texlive-fontsextra + ) + java? ( >=virtual/jre-1.6:= ) + virtual/pkgconfig + alsa? ( >=media-libs/alsa-lib-1.0.13 ) + !headless? ( x11-libs/libXinerama ) + pulseaudio? ( media-sound/pulseaudio ) + vboxwebsrv? ( net-libs/gsoap[-gnutls(-)] ) + ${PYTHON_DEPS}" + +QA_TEXTRELS_x86="usr/lib/virtualbox-ose/VBoxGuestPropSvc.so + usr/lib/virtualbox/VBoxSDL.so + usr/lib/virtualbox/VBoxSharedFolders.so + usr/lib/virtualbox/VBoxDD2.so + usr/lib/virtualbox/VBoxOGLrenderspu.so + usr/lib/virtualbox/VBoxPython.so + usr/lib/virtualbox/VBoxDD.so + usr/lib/virtualbox/VBoxDDU.so + usr/lib/virtualbox/VBoxREM64.so + usr/lib/virtualbox/VBoxSharedClipboard.so + usr/lib/virtualbox/VBoxHeadless.so + usr/lib/virtualbox/VBoxRT.so + usr/lib/virtualbox/VBoxREM.so + usr/lib/virtualbox/VBoxSettings.so + usr/lib/virtualbox/VBoxKeyboard.so + usr/lib/virtualbox/VBoxSharedCrOpenGL.so + usr/lib/virtualbox/VBoxVMM.so + usr/lib/virtualbox/VirtualBox.so + usr/lib/virtualbox/VBoxOGLhosterrorspu.so + usr/lib/virtualbox/components/VBoxC.so + usr/lib/virtualbox/components/VBoxSVCM.so + usr/lib/virtualbox/components/VBoxDDU.so + usr/lib/virtualbox/components/VBoxRT.so + usr/lib/virtualbox/components/VBoxREM.so + usr/lib/virtualbox/components/VBoxVMM.so + usr/lib/virtualbox/VBoxREM32.so + usr/lib/virtualbox/VBoxPython2_4.so + usr/lib/virtualbox/VBoxPython2_5.so + usr/lib/virtualbox/VBoxPython2_6.so + usr/lib/virtualbox/VBoxPython2_7.so + usr/lib/virtualbox/VBoxXPCOMC.so + usr/lib/virtualbox/VBoxOGLhostcrutil.so + usr/lib/virtualbox/VBoxNetDHCP.so + usr/lib/virtualbox/VBoxNetNAT.so" + +REQUIRED_USE=" + java? ( sdk ) + python? ( + ( sdk ) + ) + vboxwebsrv? ( java ) + ${PYTHON_REQUIRED_USE} +" + +pkg_setup() { + if ! use headless && ! use qt4 ; then + einfo "No USE=\"qt4\" selected, this build will not include" + einfo "any Qt frontend." + elif use headless && use qt4 ; then + einfo "You selected USE=\"headless qt4\", defaulting to" + einfo "USE=\"headless\", this build will not include any X11/Qt frontend." + fi + + if ! use opengl ; then + einfo "No USE=\"opengl\" selected, this build will lack" + einfo "the OpenGL feature." + fi + if ! use python ; then + einfo "You have disabled the \"python\" USE flag. This will only" + einfo "disable the python bindings being installed." + fi + java-pkg-opt-2_pkg_setup + python-single-r1_pkg_setup +} + +src_prepare() { + # Remove shipped binaries (kBuild,yasm), see bug #232775 + rm -rf kBuild/bin tools + + # Disable things unused or split into separate ebuilds + sed -e "s@MY_LIBDIR@$(get_libdir)@" \ + "${FILESDIR}"/${PN}-5-localconfig > LocalConfig.kmk || die + + # Respect LDFLAGS + sed -e "s@_LDFLAGS\.${ARCH}*.*=@& ${LDFLAGS}@g" \ + -i Config.kmk src/libs/xpcom18a4/Config.kmk || die + + # Use PAM only when pam USE flag is enbaled (bug #376531) + if ! use pam ; then + elog "Disabling PAM removes the possibility to use the VRDP features." + sed -i 's@^.*VBOX_WITH_PAM@#VBOX_WITH_PAM@' Config.kmk || die + sed -i 's@\(.*/auth/Makefile.kmk.*\)@#\1@' \ + src/VBox/HostServices/Makefile.kmk || die + fi + + # add correct java path + if use java ; then + sed "s@/usr/lib/jvm/java-6-sun@$(java-config -O)@" \ + -i "${S}"/Config.kmk || die + java-pkg-opt-2_src_prepare + fi + + if ! gcc-specs-pie ; then + EPATCH_EXCLUDE="050_${PN}-5.0.2-nopie.patch" + fi + + EPATCH_SUFFIX="patch" \ + EPATCH_FORCE="yes" \ + epatch "${WORKDIR}/patches" + + epatch_user +} + +src_configure() { + local myconf + use alsa || myconf+=" --disable-alsa" + use doc || myconf+=" --disable-docs" + use java || myconf+=" --disable-java" + use opengl || myconf+=" --disable-opengl" + use pulseaudio || myconf+=" --disable-pulse" + use python || myconf+=" --disable-python" + use vboxwebsrv && myconf+=" --enable-webservice" + use vnc && myconf+=" --enable-vnc" + if ! use headless ; then + use qt4 || myconf+=" --disable-qt4" + else + myconf+=" --build-headless --disable-opengl" + fi + if use amd64 && ! has_multilib_profile ; then + myconf+=" --disable-vmmraw" + fi + # not an autoconf script + ./configure \ + --with-gcc="$(tc-getCC)" \ + --with-g++="$(tc-getCXX)" \ + --disable-kmods \ + --disable-dbus \ + --disable-devmapper \ + ${myconf} \ + || die "configure failed" +} + +src_compile() { + source ./env.sh + + # Force kBuild to respect C[XX]FLAGS and MAKEOPTS (bug #178529) + # and strip all flags + # strip-flags + + MAKEJOBS=$(echo ${MAKEOPTS} | egrep -o '(\-j|\-\-jobs)(=?|[[:space:]]*)[[:digit:]]+') + MAKELOAD=$(echo ${MAKEOPTS} | egrep -o '(\-l|\-\-load-average)(=?|[[:space:]]*)[[:digit:]]+') + MAKEOPTS="${MAKEJOBS} ${MAKELOAD}" + MAKE="kmk" emake \ + VBOX_BUILD_PUBLISHER=_Gentoo \ + TOOL_GCC3_CC="$(tc-getCC)" TOOL_GCC3_CXX="$(tc-getCXX)" \ + TOOL_GCC3_AS="$(tc-getCC)" TOOL_GCC3_AR="$(tc-getAR)" \ + TOOL_GCC3_LD="$(tc-getCXX)" TOOL_GCC3_LD_SYSMOD="$(tc-getLD)" \ + TOOL_GCC3_CFLAGS="${CFLAGS}" TOOL_GCC3_CXXFLAGS="${CXXFLAGS}" \ + VBOX_GCC_OPT="${CXXFLAGS}" \ + TOOL_YASM_AS=yasm KBUILD_VERBOSE=2 \ + all +} + +src_install() { + cd "${S}"/out/linux.${ARCH}/release/bin || die + + # Create configuration files + insinto /etc/vbox + newins "${FILESDIR}/${PN}-4-config" vbox.cfg + + # Set the right libdir + sed -i \ + -e "s@MY_LIBDIR@$(get_libdir)@" \ + "${D}"/etc/vbox/vbox.cfg || die "vbox.cfg sed failed" + + # Symlink binaries to the shipped wrapper + exeinto /usr/$(get_libdir)/${PN} + newexe "${FILESDIR}/${PN}-ose-3-wrapper" "VBox" + fowners root:vboxusers /usr/$(get_libdir)/${PN}/VBox + fperms 0750 /usr/$(get_libdir)/${PN}/VBox + + dosym /usr/$(get_libdir)/${PN}/VBox /usr/bin/VBoxManage + dosym /usr/$(get_libdir)/${PN}/VBox /usr/bin/VBoxVRDP + dosym /usr/$(get_libdir)/${PN}/VBox /usr/bin/VBoxHeadless + dosym /usr/$(get_libdir)/${PN}/VBoxTunctl /usr/bin/VBoxTunctl + + # Install binaries and libraries + insinto /usr/$(get_libdir)/${PN} + doins -r components + + if use sdk ; then + doins -r sdk + fi + + if use vboxwebsrv ; then + doins vboxwebsrv + fowners root:vboxusers /usr/$(get_libdir)/${PN}/vboxwebsrv + fperms 0750 /usr/$(get_libdir)/${PN}/vboxwebsrv + dosym /usr/$(get_libdir)/${PN}/VBox /usr/bin/vboxwebsrv + newinitd "${FILESDIR}"/vboxwebsrv-initd vboxwebsrv + newconfd "${FILESDIR}"/vboxwebsrv-confd vboxwebsrv + fi + + local rcfiles="*.rc" + if use amd64 && ! has_multilib_profile ; then + rcfiles="" + fi + + for each in VBox{Manage,SVC,XPCOMIPCD,Tunctl,ExtPackHelperApp} *so *r0 ${rcfiles} ; do + doins ${each} + fowners root:vboxusers /usr/$(get_libdir)/${PN}/${each} + fperms 0750 /usr/$(get_libdir)/${PN}/${each} + done + + # VBoxNetAdpCtl and VBoxNetDHCP binaries need to be suid root in any case.. + for each in VBoxNet{AdpCtl,DHCP,NAT} ; do + doins ${each} + fowners root:vboxusers /usr/$(get_libdir)/${PN}/${each} + fperms 4750 /usr/$(get_libdir)/${PN}/${each} + done + + # VBoxSVC and VBoxManage need to be pax-marked (bug #403453) + # VBoxXPCOMIPCD (bug #524202) + for each in VBox{Manage,SVC,XPCOMIPCD} ; do + if ! pax-mark -m "${D}"/usr/$(get_libdir)/${PN}/${each} ; then + ewarn "Couldn't pax-mark /usr/$(get_libdir)/${PN}/${each}" + fi + done + + if ! use headless ; then + doins VBoxSDL + fowners root:vboxusers /usr/$(get_libdir)/${PN}/VBoxSDL + fperms 4750 /usr/$(get_libdir)/${PN}/VBoxSDL + if ! pax-mark -m "${D}"/usr/$(get_libdir)/${PN}/VBoxSDL ; then + ewarn "Couldn't pax-mark /usr/$(get_libdir)/${PN}/VBoxSDL" + fi + + if use opengl && use qt4 ; then + doins VBoxTestOGL + fowners root:vboxusers /usr/$(get_libdir)/${PN}/VBoxTestOGL + fperms 0750 /usr/$(get_libdir)/${PN}/VBoxTestOGL + if ! pax-mark -m "${D}"/usr/$(get_libdir)/${PN}/VBoxTestOGL ; then + ewarn "Couldn't pax-mark /usr/$(get_libdir)/${PN}/VBoxTestOGL" + fi + fi + + dosym /usr/$(get_libdir)/${PN}/VBox /usr/bin/VBoxSDL + + if use qt4 ; then + doins VirtualBox + fowners root:vboxusers /usr/$(get_libdir)/${PN}/VirtualBox + fperms 4750 /usr/$(get_libdir)/${PN}/VirtualBox + if ! pax-mark -m "${D}"/usr/$(get_libdir)/${PN}/VirtualBox ; then + ewarn "Couldn't pax-mark /usr/$(get_libdir)/${PN}/VirtualBox" + fi + + dosym /usr/$(get_libdir)/${PN}/VBox /usr/bin/VirtualBox + + newmenu "${FILESDIR}"/${PN}-ose.desktop-2 ${PN}.desktop + fi + + pushd "${S}"/src/VBox/Artwork/OSE &>/dev/null || die + for size in 16 32 48 64 128 ; do + newicon -s ${size} ${PN}-${size}px.png ${PN}.png + done + newicon ${PN}-48px.png ${PN}.png + doicon -s scalable ${PN}.svg + popd &>/dev/null || die + fi + + doins VBoxHeadless + fowners root:vboxusers /usr/$(get_libdir)/${PN}/VBoxHeadless + fperms 4750 /usr/$(get_libdir)/${PN}/VBoxHeadless + if ! pax-mark -m "${D}"/usr/$(get_libdir)/${PN}/VBoxHeadless ; then + ewarn "Couldn't pax-mark /usr/$(get_libdir)/${PN}/VBoxHeadless" + fi + + insinto /usr/$(get_libdir)/${PN} + # Install EFI Firmware files (bug #320757) + pushd "${S}"/src/VBox/Devices/EFI/FirmwareBin &>/dev/null || die + for fwfile in VBoxEFI{32,64}.fd ; do + doins ${fwfile} + fowners root:vboxusers /usr/$(get_libdir)/${PN}/${fwfile} + done + popd &>/dev/null || die + + if use udev ; then + # New way of handling USB device nodes for VBox (bug #356215) + local udevdir="$(get_udevdir)" + insinto ${udevdir} + doins VBoxCreateUSBNode.sh + fowners root:vboxusers ${udevdir}/VBoxCreateUSBNode.sh + fperms 0750 ${udevdir}/VBoxCreateUSBNode.sh + insinto ${udevdir}/rules.d + doins "${FILESDIR}"/10-virtualbox.rules + sed "s@%UDEVDIR%@${udevdir}@" \ + -i "${D}"${udevdir}/rules.d/10-virtualbox.rules || die + fi + + insinto /usr/share/${PN} + if ! use headless && use qt4 ; then + doins -r nls + fi + + # VRDPAuth only works with this (bug #351949) + dosym VBoxAuth.so /usr/$(get_libdir)/${PN}/VRDPAuth.so + + # set an env-variable for 3rd party tools + echo -n "VBOX_APP_HOME=/usr/$(get_libdir)/${PN}" > "${T}/90virtualbox" + doenvd "${T}/90virtualbox" + + if use java ; then + java-pkg_regjar "${D}/usr/$(get_libdir)/${PN}/sdk/bindings/xpcom/java/vboxjxpcom.jar" + java-pkg_regso "${D}/usr/$(get_libdir)/${PN}/libvboxjxpcom.so" + fi +} + +pkg_postinst() { + fdo-mime_desktop_database_update + + if use udev ; then + udevadm control --reload-rules \ + && udevadm trigger --subsystem-match=usb + fi + + if ! use headless && use qt4 ; then + elog "To launch VirtualBox just type: \"VirtualBox\"." + fi + elog "You must be in the vboxusers group to use VirtualBox." + elog "" + elog "The latest user manual is available for download at:" + elog "http://download.virtualbox.org/virtualbox/${PV}/UserManual.pdf" + elog "" + elog "For advanced networking setups you should emerge:" + elog "net-misc/bridge-utils and sys-apps/usermode-utilities" + elog "" + elog "IMPORTANT!" + elog "If you upgrade from app-emulation/virtualbox-ose make sure to run" + elog "\"env-update\" as root and logout and relogin as the user you wish" + elog "to run ${PN} as." + elog "" + elog "Starting with version 4.0.0, ${PN} has USB-1 support." + elog "For USB-2 support, PXE-boot ability and VRDP support please emerge" + elog " app-emulation/virtualbox-extpack-oracle" + elog "package." + elog "Starting with version 5.0.0, ${PN} no longer has the \"additions\" and" + elog "the \"extension\" USE flag. For installation of the guest additions ISO" + elog "image, please emerge" + elog " app-emulation/virtualbox-additions" + elog "and for the USB2, USB3, VRDP and PXE boot ROM modules, please emerge" + elog " app-emulation/virtualbox-extpack-oracle" + if ! use udev ; then + elog "" + elog "WARNING!" + elog "Without USE=udev, USB devices will likely not work in ${PN}." + elif [ -e "${ROOT}/etc/udev/rules.d/10-virtualbox.rules" ] ; then + elog "" + elog "Please remove \"${ROOT}/etc/udev/rules.d/10-virtualbox.rules\"" + elog "or else USB in ${PN} won't work." + fi +} + +pkg_postrm() { + fdo-mime_desktop_database_update +} diff --git a/app-misc/tmux/tmux-1.9a.ebuild b/app-misc/tmux/tmux-1.9a.ebuild index df654947cb46..6f015ef3e5ed 100644 --- a/app-misc/tmux/tmux-1.9a.ebuild +++ b/app-misc/tmux/tmux-1.9a.ebuild @@ -18,6 +18,7 @@ IUSE="debug selinux vim-syntax" COMMON_DEPEND=" >=dev-libs/libevent-2.0.10 + "s", short => "P" } - ]; - $global->{backend} = "linuxdoc"; -- $global->{papersize} = "a4"; -+ $global->{papersize} = "letter"; - $global->{language} = "en"; - $global->{charset} = "ascii"; - $global->{style} = ""; ---- linuxdoc-tools-0.9.68/man/linuxdoc.1.letter Mon Nov 26 16:10:04 2001 -+++ linuxdoc-tools-0.9.68/man/linuxdoc.1 Mon Nov 26 16:10:42 2001 -@@ -46,8 +46,8 @@ - format, but just output the usage of this suites. - Available formats are: html, info, latex, lyx, rtf, tex, check. - .IP "--papersize=\fIsize\fR, -p --Set the paper size. Default is ``a4'' (European 297x210mm paper). --You may also specify ``letter'' size. -+Set the paper size. Default is ``letter''. -+You may also specify ``a4'' size (European 297x210mm paper). - .IP "--language=\fIlang\fR, -l" - Specify the language of the document (this may change which style - files are used for formatting by a back end). The default language is diff --git a/app-text/linuxdoc-tools/files/linuxdoc-tools-0.9.68-lex.patch b/app-text/linuxdoc-tools/files/linuxdoc-tools-0.9.68-lex.patch deleted file mode 100644 index 9ee97432fdc9..000000000000 --- a/app-text/linuxdoc-tools/files/linuxdoc-tools-0.9.68-lex.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- rtf-fix/rtf2rtf.l.orig 2013-03-20 13:14:06.146829954 +0400 -+++ rtf-fix/rtf2rtf.l 2013-03-20 13:14:28.193830654 +0400 -@@ -72,7 +72,7 @@ - int skipnewline = 0; - - extern char *yytext; --extern int yyleng; -+extern yy_size_t yyleng; - - #define CHAPTER 1 - #define SECTION 2 diff --git a/app-text/linuxdoc-tools/linuxdoc-tools-0.9.68-r1.ebuild b/app-text/linuxdoc-tools/linuxdoc-tools-0.9.68-r1.ebuild deleted file mode 100644 index 0a5eaa449dcd..000000000000 --- a/app-text/linuxdoc-tools/linuxdoc-tools-0.9.68-r1.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit eutils sgml-catalog toolchain-funcs - -DESCRIPTION="A toolset for processing LinuxDoc DTD SGML files" -HOMEPAGE="http://packages.qa.debian.org/l/linuxdoc-tools.html" -SRC_URI="mirror://debian/pool/main/l/${PN}/${PN}_${PV}.tar.gz" - -LICENSE="MIT SGMLUG" -SLOT="0" -KEYWORDS="amd64 ~ia64 ppc x86 ~x86-fbsd" - -DEPEND="app-text/openjade - app-text/opensp - app-text/sgml-common - dev-texlive/texlive-fontsrecommended - dev-lang/perl - sys-apps/gawk - sys-apps/groff - virtual/latex-base" - -RDEPEND="${DEPEND}" - -sgml-catalog_cat_include "/etc/sgml/linuxdoc.cat" \ - "/usr/share/linuxdoc-tools/linuxdoc-tools.catalog" - -src_prepare() { - epatch \ - "${FILESDIR}/${P}-letter.patch" \ - "${FILESDIR}/${PN}-0.9.21-malloc.patch" \ - "${FILESDIR}/${P}-compiler.patch" \ - "${FILESDIR}/${P}-lex.patch" - - # Wrong path for the catalog. - sed -i -e \ - 's,/iso-entities-8879.1986/iso-entities.cat,/sgml-iso-entities-8879.1986/catalog,' \ - perl5lib/LinuxDocTools.pm || die 'sed failed' - - # Fix incorrect version string in upstream tarball - sed -i -e "s/0.9.66/${PV}/" VERSION || die 'sed on VERSION failed' - - epatch_user -} - -src_configure() { - tc-export CC - econf --with-installed-iso-entities -} - -src_compile() { - emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" -} - -src_install() { - # Else fails with sandbox violations - export VARTEXFONTS="${T}/fonts" - - # Besides the path being wrong, in changing perl5libdir, it cannot find the - # catalog. - export SGML_CATALOG_FILES="/usr/share/sgml/sgml-iso-entities-8879.1986/catalog" - - eval `perl -V:installvendorarch` - emake \ - DESTDIR="${D}" \ - perl5libdir="${installvendorarch}" \ - LINUXDOCDOC="/usr/share/doc/${PF}/guide" \ - install - - insinto /usr/share/texmf/tex/latex/misc - doins tex/*.sty - - dodoc ChangeLog README -} diff --git a/app-text/linuxdoc-tools/linuxdoc-tools-0.9.69.ebuild b/app-text/linuxdoc-tools/linuxdoc-tools-0.9.69.ebuild index 7728bbba395c..ccc6cc82e815 100644 --- a/app-text/linuxdoc-tools/linuxdoc-tools-0.9.69.ebuild +++ b/app-text/linuxdoc-tools/linuxdoc-tools-0.9.69.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://debian/pool/main/l/${PN}/${PN}_${PV}.orig.tar.gz" LICENSE="MIT SGMLUG" SLOT="0" -KEYWORDS="~amd64 ~ia64 ~ppc ~x86 ~x86-fbsd" +KEYWORDS="amd64 ~ia64 ppc x86 ~x86-fbsd" IUSE="doc" DEPEND=" diff --git a/dev-db/mysql-connector-c++/mysql-connector-c++-1.1.6.ebuild b/dev-db/mysql-connector-c++/mysql-connector-c++-1.1.6.ebuild index 7d2d763b3b14..3d90b402d33b 100644 --- a/dev-db/mysql-connector-c++/mysql-connector-c++-1.1.6.ebuild +++ b/dev-db/mysql-connector-c++/mysql-connector-c++-1.1.6.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://mysql/Downloads/${URI_DIR}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc x86" +KEYWORDS="amd64 ~arm ~ppc ppc64 ~sparc x86" IUSE="debug examples gcov static-libs" DEPEND="virtual/libmysqlclient:= diff --git a/dev-db/redis/Manifest b/dev-db/redis/Manifest index b1dbd9c322ce..f9258d114888 100644 --- a/dev-db/redis/Manifest +++ b/dev-db/redis/Manifest @@ -4,3 +4,4 @@ DIST redis-2.8.17.tar.gz 1234543 SHA256 53c7cc639571729fa57d7baa7f81aec1d5886f86 DIST redis-2.8.19.tar.gz 1254857 SHA256 29bb08abfc3d392b2f0c3e7f48ec46dd09ab1023f9a5575fc2a93546f4ca5145 SHA512 34997b45815cfdec9fbb06cd6664ed6ddf71baf064fd9ac155b7b969fd5945f78927cd5dfde83b043dc8ff1d7e35b172b9403cdf6115b8ca7bdf80c581ee9cdd WHIRLPOOL df3408de1e53a8a13c0b645054ce944453f3a812c264b168b797519a6d8536e0a60095fbd314f591ba21f0532be5b6b37e1ec8b11e928cdd6447ab70dfb8be33 DIST redis-2.8.21.tar.gz 1260030 SHA256 3da371693bb54c22da04d86cab1b871072c8d19bdfbc4f811469b7b53384c563 SHA512 8be68e949e08fc1d143c2fd7bbd123d0c3618d8ac9333bd9ef691384364d307c85f9222b7a607668cf667e5c2193ef40d0c7167fa15b981c6ffcfe5f2e6120d8 WHIRLPOOL d548a7aff0c84c2eb0fbf4c33436a0e46b7f6150f83e768e634441003974715b31c755d658fbc7f2fb5635511232e50c8ad2f7dce10a196bcc7b3da9193c3224 DIST redis-3.0.3.tar.gz 1360959 SHA256 1d08fa665b16d0950274dfbd47fbbcf3485e43e901021338640a0334666e9da5 SHA512 68b2d85341487efed26c92cd7925b4e9d889b5a19f08f4695ffd07087c01ae0c872086575744636513b01720829002c8d5c7bf43b20ee2c561599fa8d1c475f5 WHIRLPOOL 32d543454cda029259d8719f5696f3e16d40c489c0d44a8475bf65a7b26b9f6df74f5cdbfac2b5d44bea97844b68ae49d8656c8668fdf6ce6102cb482c200a29 +DIST redis-3.0.4.tar.gz 1364993 SHA256 a35e90ad581925134aa0fc92e969cc825f5cdee8e13c36a87d4d6995316112cf SHA512 7d8d681222892c759e7c3809203522a96a547457e0ff123cca296bac911395c7d8c1ded06331ae5cb487b87d0adcbaa02aa12c2dd724196a7b86111e236b023a WHIRLPOOL e12f7751e3e25068a25c02990d0e8416cedc152f66b5e9e1e47ae91f10a0d543b96ad456a4eb7fe16cb92ed46a0cc2fee65954207b354b9c211f425191a6c388 diff --git a/dev-db/redis/redis-3.0.4.ebuild b/dev-db/redis/redis-3.0.4.ebuild new file mode 100644 index 000000000000..328adcbb44f8 --- /dev/null +++ b/dev-db/redis/redis-3.0.4.ebuild @@ -0,0 +1,116 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit autotools eutils flag-o-matic systemd toolchain-funcs user + +DESCRIPTION="A persistent caching system, key-value and data structures database" +HOMEPAGE="http://redis.io/" +SRC_URI="http://download.redis.io/releases/${P}.tar.gz" + +LICENSE="BSD" +KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris" +IUSE="+jemalloc tcmalloc test" +SLOT="0" + +RDEPEND=">=dev-lang/lua-5.1:* + tcmalloc? ( dev-util/google-perftools ) + jemalloc? ( >=dev-libs/jemalloc-3.2 )" +DEPEND="virtual/pkgconfig + >=sys-devel/autoconf-2.63 + test? ( dev-lang/tcl:0= ) + ${RDEPEND}" +REQUIRED_USE="?? ( tcmalloc jemalloc )" + +S="${WORKDIR}/${PN}-${PV/_/-}" + +pkg_setup() { + enewgroup redis 75 + enewuser redis 75 -1 /var/lib/redis redis +} + +src_prepare() { + epatch "${FILESDIR}"/${PN}-2.8.3-shared.patch + epatch "${FILESDIR}"/${PN}-2.8.17-config.patch + epatch "${FILESDIR}"/${PN}-3.0.0-sharedlua.patch + + # Copy lua modules into build dir + cp "${S}"/deps/lua/src/{fpconv,lua_bit,lua_cjson,lua_cmsgpack,lua_struct,strbuf}.c "${S}"/src || die + cp "${S}"/deps/lua/src/{fpconv,strbuf}.h "${S}"/src || die + # Append cflag for lua_cjson + # https://github.com/antirez/redis/commit/4fdcd213#diff-3ba529ae517f6b57803af0502f52a40bL61 + append-cflags "-DENABLE_CJSON_GLOBAL" + + # now we will rewrite present Makefiles + local makefiles="" + for MKF in $(find -name 'Makefile' | cut -b 3-); do + mv "${MKF}" "${MKF}.in" + sed -i -e 's:$(CC):@CC@:g' \ + -e 's:$(CFLAGS):@AM_CFLAGS@:g' \ + -e 's: $(DEBUG)::g' \ + -e 's:$(OBJARCH)::g' \ + -e 's:ARCH:TARCH:g' \ + -e '/^CCOPT=/s:$: $(LDFLAGS):g' \ + "${MKF}.in" \ + || die "Sed failed for ${MKF}" + makefiles+=" ${MKF}" + done + # autodetection of compiler and settings; generates the modified Makefiles + cp "${FILESDIR}"/configure.ac-2.2 configure.ac + sed -i -e "s:AC_CONFIG_FILES(\[Makefile\]):AC_CONFIG_FILES([${makefiles}]):g" \ + configure.ac || die "Sed failed for configure.ac" + eautoconf +} + +src_configure() { + econf + + # Linenoise can't be built with -std=c99, see https://bugs.gentoo.org/451164 + # also, don't define ANSI/c99 for lua twice + sed -i -e "s:-std=c99::g" deps/linenoise/Makefile deps/Makefile || die +} + +src_compile() { + tc-export CC AR RANLIB + + local myconf="" + + if use tcmalloc ; then + myconf="${myconf} USE_TCMALLOC=yes" + elif use jemalloc ; then + myconf="${myconf} JEMALLOC_SHARED=yes" + else + myconf="${myconf} MALLOC=yes" + fi + + emake ${myconf} V=1 CC="${CC}" AR="${AR} rcu" RANLIB="${RANLIB}" +} + +src_install() { + insinto /etc/ + doins redis.conf sentinel.conf + use prefix || fowners redis:redis /etc/{redis,sentinel}.conf + fperms 0644 /etc/{redis,sentinel}.conf + + newconfd "${FILESDIR}/redis.confd" redis + newinitd "${FILESDIR}/redis.initd-4" redis + + systemd_newunit "${FILESDIR}/redis.service-2" redis.service + systemd_newtmpfilesd "${FILESDIR}/redis.tmpfiles" redis.conf + + dodoc 00-RELEASENOTES BUGS CONTRIBUTING MANIFESTO README + + dobin src/redis-cli + dosbin src/redis-benchmark src/redis-server src/redis-check-aof src/redis-check-dump + fperms 0750 /usr/sbin/redis-benchmark + dosym /usr/sbin/redis-server /usr/sbin/redis-sentinel + + if use prefix; then + diropts -m0750 + else + diropts -m0750 -o redis -g redis + fi + keepdir /var/{log,lib}/redis +} diff --git a/dev-haskell/hsopenssl/hsopenssl-0.11.1.1-r1.ebuild b/dev-haskell/hsopenssl/hsopenssl-0.11.1.1-r1.ebuild new file mode 100644 index 000000000000..1f9732af5fa9 --- /dev/null +++ b/dev-haskell/hsopenssl/hsopenssl-0.11.1.1-r1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +# ebuild generated by hackport 0.4.4.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +MY_PN="HsOpenSSL" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Partial OpenSSL binding for Haskell" +HOMEPAGE="https://github.com/phonohawk/HsOpenSSL" +SRC_URI="mirror://hackage/packages/archive/${MY_PN}/${PV}/${MY_P}.tar.gz" + +LICENSE="public-domain" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="+fast-bignum libressl" + +RESTRICT=test # whoops, not good + +RDEPEND=">=dev-haskell/network-2.1:=[profile?] =dev-haskell/old-locale-1.0:=[profile?] =dev-lang/ghc-7.4.1:= + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:= ) +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.8 + test? ( >=dev-haskell/hunit-1.0 =dev-haskell/test-framework-0.8 =dev-haskell/test-framework-hunit-0.3 - - -- -+ - - - diff --git a/dev-java/commons-dbutils/files/commons-dbutils-1.6-build.xml b/dev-java/commons-dbutils/files/commons-dbutils-1.6-build.xml new file mode 100644 index 000000000000..725d4eaca036 --- /dev/null +++ b/dev-java/commons-dbutils/files/commons-dbutils-1.6-build.xml @@ -0,0 +1,263 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + =================================== WARNING =================================== + JUnit is not present in the test classpath or your $ANT_HOME/lib directory. Tests not executed. + =============================================================================== + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dev-java/commons-graph/Manifest b/dev-java/commons-graph/Manifest index e8bbd79bd05a..674c558fec1f 100644 --- a/dev-java/commons-graph/Manifest +++ b/dev-java/commons-graph/Manifest @@ -1 +1 @@ -DIST graph2-0.8.1.cvs20040118.tar.gz 42653 SHA256 916e3ca83376acd9ca64ee87988c8a19dc86c6468d087ede82d1e05c14a5a142 SHA512 110f2365b9568a4059233c6c6e75aec1a52b4fdd9110d55f0a6b79df324f047bde87d49134d8ba73417223919ddce972dd4a3c86841f843dd0109ebb17177083 WHIRLPOOL e3cd70bc98187a4f581bfa60125cfbfd0490264582d8fe4f536f7ecfd12a2f8228b1ff64db5414f8fa95ea976be5db08a054eecbb86e098cba62cc8cedd6f4c1 +DIST commons-graph-0.1.tar.gz 96009 SHA256 b68f5c7132e9eea4872dfc0d5fd74c138d2489355540dff752a91311cbac040d SHA512 7214fd60eb348a7feee9c194f562e5a7cf1f211ba589d2a85eaae52ed3ced7089842405dfbd99413b1f06f87ea1a19d244989daa1e0f6fb857fa752647d52b16 WHIRLPOOL 90c014761b2a1f8572eba4339f2ea81ec34666a83c21ea27326b366f0089cc5f20a5d6bc53aefa1d09019114b34f424496af95a604c1b55b5bdfec879ab51a0b diff --git a/dev-java/commons-graph/commons-graph-0.1.ebuild b/dev-java/commons-graph/commons-graph-0.1.ebuild new file mode 100644 index 000000000000..2d7af9bab4a2 --- /dev/null +++ b/dev-java/commons-graph/commons-graph-0.1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +JAVA_PKG_IUSE="doc source test" + +inherit java-pkg-2 java-ant-2 + +DESCRIPTION="A toolkit for managing graphs and graph based data structures" +HOMEPAGE="https://commons.apache.org/sandbox/commons-graph/" +SRC_URI="http://dev.gentoo.org/~monsieurp/packages/${P}.tar.gz" + +DEPEND=">=virtual/jdk-1.6 + test? ( + dev-java/ant-junit:0 + )" + +RDEPEND=">=virtual/jre-1.6 + ${CDEPEND}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +JAVA_ANT_REWRITE_CLASSPATH="yes" +EANT_TEST_TARGET="test" + +# Dubious tests. +JAVA_RM_FILES=( + src/test/java/org/apache/commons/graph/coloring/GraphColoringTestCase.java + src/test/java/org/apache/commons/graph/spanning/KruskalTestCase.java + src/test/java/org/apache/commons/graph/scc/TarjanTestCase.java +) + +java_prepare() { + cp "${FILESDIR}"/"${P}-build.xml" build.xml || die +} + +src_test() { + java-pkg-2_src_test +} + +src_install() { + java-pkg_newjar target/${P}.jar + use doc && java-pkg_dojavadoc target/site/apidocs + use source && java-pkg_dosrc src/main/java +} diff --git a/dev-java/commons-graph/commons-graph-0.8.1_p20040118-r2.ebuild b/dev-java/commons-graph/commons-graph-0.8.1_p20040118-r2.ebuild deleted file mode 100644 index 7a80de01da26..000000000000 --- a/dev-java/commons-graph/commons-graph-0.8.1_p20040118-r2.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -JAVA_PKG_IUSE="doc source test" - -inherit java-pkg-2 java-ant-2 eutils -MY_PN=graph2 -MY_PV=${PV%%_*}.cvs${PV##*_p} -MY_P=${MY_PN}-${MY_PV} -API_PV=${PV%%_*} -DESCRIPTION="A toolkit for managing graphs and graph based data structures" -# There doesn't seem to be a real home page, so we'll point to a viewcvs -HOMEPAGE="http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/graph2/" -# this was extracted from a source rpm at jpackage -SRC_URI="mirror://gentoo/distfiles/${MY_P}.tar.gz" -COMMON_DEP=" - dev-java/commons-collections - dev-java/jdepend" -DEPEND=">=virtual/jdk-1.3 - test? ( dev-java/ant-junit ) - ${COMMON_DEP}" -RDEPEND=">=virtual/jre-1.3 - ${COMMON_DEP}" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" -S=${WORKDIR}/${MY_P} - -src_unpack(){ - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}-gentoo.diff" - mkdir -p target/lib - cd target/lib - java-pkg_jar-from commons-collections - java-pkg_jar-from jdepend -} - -src_install(){ - java-pkg_newjar target/${PN}-${API_PV}.jar ${PN}.jar - use doc && java-pkg_dojavadoc dist/docs/api - use source && java-pkg_dosrc src/java/* -} - -src_test() { - cd "${S}/target/lib" - java-pkg_jar-from junit - cd "${S}" - ANT_TASKS="ant-junit" eant test -} diff --git a/dev-java/commons-graph/files/commons-graph-0.1-build.xml b/dev-java/commons-graph/files/commons-graph-0.1-build.xml new file mode 100644 index 000000000000..5c3a9c19cdd4 --- /dev/null +++ b/dev-java/commons-graph/files/commons-graph-0.1-build.xml @@ -0,0 +1,258 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + =================================== WARNING =================================== + JUnit is not present in the test classpath or your $ANT_HOME/lib directory. Tests not executed. + =============================================================================== + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dev-java/commons-graph/files/commons-graph-0.8.1_p20040118-gentoo.diff b/dev-java/commons-graph/files/commons-graph-0.8.1_p20040118-gentoo.diff deleted file mode 100644 index c7ffe457a11e..000000000000 --- a/dev-java/commons-graph/files/commons-graph-0.8.1_p20040118-gentoo.diff +++ /dev/null @@ -1,19 +0,0 @@ -diff -ru graph2-0.8.1.cvs20040118/build.xml graph2-0.8.1.cvs20040118-patched/build.xml ---- graph2-0.8.1.cvs20040118/build.xml 2003-02-18 09:45:49.000000000 -0500 -+++ graph2-0.8.1.cvs20040118-patched/build.xml 2005-09-04 22:44:31.000000000 -0400 -@@ -46,7 +47,7 @@ - - - -- -+ - - - -@@ -162,4 +163,4 @@ - - - -- -\ No newline at end of file -+ diff --git a/dev-java/commons-jelly/commons-jelly-1.0-r5.ebuild b/dev-java/commons-jelly/commons-jelly-1.0-r5.ebuild deleted file mode 100644 index cefc4203e371..000000000000 --- a/dev-java/commons-jelly/commons-jelly-1.0-r5.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -JAVA_PKG_IUSE="doc source test" - -inherit java-pkg-2 java-ant-2 eutils - -MY_P="${P}-src" -DESCRIPTION="A Java and XML based scripting and processing engine" -HOMEPAGE="http://commons.apache.org/jelly/" -SRC_URI="mirror://apache/jakarta/commons/jelly/source/${MY_P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="1" -KEYWORDS="amd64 x86" -IUSE="" - -COMMON_DEP=" - dev-java/commons-beanutils:1.7 - dev-java/commons-cli:1 - dev-java/commons-collections:0 - dev-java/commons-discovery:0 - dev-java/commons-jexl:1.0 - dev-java/commons-lang:0 - dev-java/commons-logging:0 - dev-java/dom4j:1 - dev-java/jakarta-jstl:0 - dev-java/jaxen:1.1 - dev-java/junit:0 - java-virtuals/servlet-api:2.5" -RDEPEND="${COMMON_DEP} - >=virtual/jre-1.4" -DEPEND="${COMMON_DEP} - >=virtual/jdk-1.4 - test? ( dev-java/ant-junit:0 )" - -S=${WORKDIR}/${MY_P} - -java_prepare() { - # disables dependency fetching, and remove tests as a dependency of jar - epatch "${FILESDIR}/${P}-gentoo.patch" -} - -JAVA_ANT_REWRITE_CLASSPATH="yes" - -EANT_EXTRA_ARGS="-Dlibdir=." -EANT_GENTOO_CLASSPATH=" - commons-beanutils-1.7,commons-cli-1,commons-collections,commons-discovery - commons-jexl-1.0,commons-lang,commons-logging,dom4j-1,jakarta-jstl - jaxen-1.1,junit,servlet-api-2.5" - -src_test() { - java-pkg-2_src_test -} - -src_install() { - java-pkg_newjar target/${P}.jar ${PN}.jar - - dodoc NOTICE.txt README.txt RELEASE-NOTES.txt || die - - use doc && java-pkg_dojavadoc dist/docs/api - use source && java-pkg_dosrc src/java/* -} diff --git a/dev-java/commons-jelly/commons-jelly-1.0-r6.ebuild b/dev-java/commons-jelly/commons-jelly-1.0-r7.ebuild similarity index 86% rename from dev-java/commons-jelly/commons-jelly-1.0-r6.ebuild rename to dev-java/commons-jelly/commons-jelly-1.0-r7.ebuild index 0aca10135cfe..1442a6288470 100644 --- a/dev-java/commons-jelly/commons-jelly-1.0-r6.ebuild +++ b/dev-java/commons-jelly/commons-jelly-1.0-r7.ebuild @@ -2,11 +2,11 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=4 +EAPI=5 JAVA_PKG_IUSE="doc source test" -inherit java-pkg-2 java-ant-2 eutils +inherit java-pkg-2 java-ant-2 MY_P="${P}-src" DESCRIPTION="A Java and XML based scripting and processing engine" @@ -18,23 +18,23 @@ SLOT="1" KEYWORDS="~amd64 ~x86" IUSE="" -COMMON_DEP=" - dev-java/commons-beanutils:1.7 +CDEPEND=" + dev-java/dom4j:1 + dev-java/junit:0 + dev-java/jaxen:1.1 dev-java/commons-cli:1 - dev-java/commons-collections:0 - dev-java/commons-discovery:0 - dev-java/commons-jexl:1.0 dev-java/commons-lang:0 + dev-java/commons-jexl:1.0 dev-java/commons-logging:0 - dev-java/dom4j:1 + dev-java/commons-discovery:0 + dev-java/commons-collections:0 + dev-java/commons-beanutils:1.7 dev-java/tomcat-jstl-spec:1.2.5 - dev-java/jaxen:1.1 - dev-java/junit:0 - java-virtuals/servlet-api:2.5" -RDEPEND="${COMMON_DEP} - >=virtual/jre-1.4" -DEPEND="${COMMON_DEP} - >=virtual/jdk-1.4 + java-virtuals/servlet-api:3.0" +RDEPEND="${CDEPEND} + >=virtual/jre-1.6" +DEPEND="${CDEPEND} + >=virtual/jdk-1.6 test? ( dev-java/ant-junit:0 )" S=${WORKDIR}/${MY_P} @@ -50,7 +50,7 @@ EANT_EXTRA_ARGS="-Dlibdir=." EANT_GENTOO_CLASSPATH=" commons-beanutils-1.7,commons-cli-1,commons-collections,commons-discovery commons-jexl-1.0,commons-lang,commons-logging,dom4j-1,tomcat-jstl-spec-1.2.5 - jaxen-1.1,junit,servlet-api-2.5" + jaxen-1.1,junit,servlet-api-3.0" src_test() { java-pkg-2_src_test @@ -58,9 +58,7 @@ src_test() { src_install() { java-pkg_newjar target/${P}.jar ${PN}.jar - dodoc NOTICE.txt README.txt RELEASE-NOTES.txt || die - use doc && java-pkg_dojavadoc dist/docs/api use source && java-pkg_dosrc src/java/* } diff --git a/dev-java/commons-jexl/commons-jexl-1.1.ebuild b/dev-java/commons-jexl/commons-jexl-1.1-r1.ebuild similarity index 78% rename from dev-java/commons-jexl/commons-jexl-1.1.ebuild rename to dev-java/commons-jexl/commons-jexl-1.1-r1.ebuild index 8f01544149cb..424d1f51257f 100644 --- a/dev-java/commons-jexl/commons-jexl-1.1.ebuild +++ b/dev-java/commons-jexl/commons-jexl-1.1-r1.ebuild @@ -1,21 +1,23 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ +EAPI=5 + JAVA_PKG_IUSE="doc source test" -inherit eutils java-pkg-2 java-ant-2 +inherit java-pkg-2 java-ant-2 DESCRIPTION="Expression language engine, can be embedded in applications and frameworks" HOMEPAGE="http://commons.apache.org/jexl/" SRC_URI="mirror://apache/jakarta/commons/jexl/source/${P}-src.tar.gz" CDEPEND="dev-java/commons-logging - =dev-java/junit-3*" + dev-java/junit:0" -RDEPEND=">=virtual/jre-1.4 +RDEPEND=">=virtual/jre-1.6 ${CDEPEND}" -DEPEND=">=virtual/jdk-1.4 +DEPEND=">=virtual/jdk-1.6 test? ( dev-java/ant-junit ) ${CDEPEND}" @@ -26,12 +28,9 @@ IUSE="" S="${WORKDIR}/${P}-src" -src_unpack() { - unpack ${A} - cd "${S}" - +java_prepare() { # https://issues.apache.org/jira/browse/JEXL-31 - epatch "${FILESDIR}/1.1-test-target.patch" + epatch "${FILESDIR}/${PV}-test-target.patch" mkdir -p target/lib && cd target/lib java-pkg_jar-from junit junit.jar @@ -44,9 +43,7 @@ src_test() { src_install() { java-pkg_newjar target/${P}*.jar - dodoc RELEASE-NOTES.txt || die - use doc && java-pkg_dojavadoc dist/docs/api use source && java-pkg_dosrc "${S}"/src/java/* } diff --git a/dev-java/commons-jexl/commons-jexl-2.1.1.ebuild b/dev-java/commons-jexl/commons-jexl-2.1.1.ebuild index b38d155d2ab1..22b774f20d92 100644 --- a/dev-java/commons-jexl/commons-jexl-2.1.1.ebuild +++ b/dev-java/commons-jexl/commons-jexl-2.1.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -14,23 +14,28 @@ SRC_URI="mirror://apache/commons/jexl/source/${P}-src.tar.gz" CDEPEND="dev-java/commons-logging:0" -RDEPEND=">=virtual/jre-1.5 +RDEPEND=">=virtual/jre-1.6 ${CDEPEND}" -DEPEND=">=virtual/jdk-1.5 +DEPEND=">=virtual/jdk-1.6 >=dev-java/javacc-5 test? ( dev-java/ant-junit:0 ) ${CDEPEND}" LICENSE="Apache-2.0" SLOT="2" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" S="${WORKDIR}/${P}-src" JAVA_ANT_REWRITE_CLASSPATH="true" EANT_GENTOO_CLASSPATH="commons-logging" +# Dubious tests. +JAVA_RM_FILES=( + src/test/java/org/apache/commons/jexl2/ArithmeticTest.java +) + java_prepare() { cp "${FILESDIR}"/${PV}-build.xml build.xml || die @@ -43,15 +48,13 @@ java_prepare() { || die "Parser.java code generation via javacc failed" } +src_test() { + java-pkg-2_src_test +} + src_install() { java-pkg_dojar target/${PN}.jar - dodoc RELEASE-NOTES.txt NOTICE.txt - use doc && java-pkg_dojavadoc "${S}"/target/site/apidocs use source && java-pkg_dosrc "${S}"/src/main/java/* } - -src_test() { - java-pkg-2_src_test -} diff --git a/dev-java/constantine/Manifest b/dev-java/constantine/Manifest index a49d39b2ef5a..38ecc1857bf1 100644 --- a/dev-java/constantine/Manifest +++ b/dev-java/constantine/Manifest @@ -1,2 +1 @@ -DIST constantine-0.6.tar.bz2 35684 SHA256 1d4cf61f15d508de1f5f4058a12529cfbe60f4056f167056f24e515695d39733 SHA512 16063f59a868ca6f629dcf9e42957edaebc9c5db21a6d856040420b943a127c89e7b1979e5ba051b26eabfb67fb70abd0ab6d2f5f6109d0fefbffbe716c0c980 WHIRLPOOL 42a4ac393889eab46ba133e86afd19ad90d3921abbe4c2c6871480d1747429f5bde46ec3d0a08ee3e1ffa885e3c4e40cf06b787b47976b56c7fc46124d62dcf2 DIST constantine-0.7.tar.gz 65563 SHA256 5600c264d3f32a48342e4b00643a8a8a543f15c6107a1c1be024e328a74e59b1 SHA512 2694caae29bae1a3e1d765ac02c4014bc6fd3dac8370feb5d12f43119c057fc2a2e75b0aa37eec0164bf8a82a1bafb0f41565f397b956ae53a52f7cb803508c7 WHIRLPOOL 6a7c3ae5b0423690005656c69897d82244d05ea27056c4dbe4229390b648bce23775b699e8d719f347ea602e76313af5e19d47e932637fd919fb2fa2b64142d6 diff --git a/dev-java/constantine/constantine-0.6.ebuild b/dev-java/constantine/constantine-0.6.ebuild deleted file mode 100644 index b22a2a7156d9..000000000000 --- a/dev-java/constantine/constantine-0.6.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -JAVA_PKG_IUSE="source test" -inherit base java-pkg-2 java-ant-2 - -DESCRIPTION="Provides Java values for common platform C constants" -HOMEPAGE="http://kenai.com/projects/constantine" -SRC_URI="mirror://gentoo/${P}.tar.bz2" -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~x86-solaris" -IUSE="" - -RDEPEND=">=virtual/jre-1.5" - -DEPEND=">=virtual/jdk-1.5 - test? ( dev-java/ant-junit4 )" - -src_compile() { - # ecj doesn't like some cast for some reason - java-pkg_force-compiler javac - java-pkg-2_src_compile -} - -src_install() { - java-pkg_dojar dist/${PN}.jar - use source && java-pkg_dosrc src/* -} - -src_test() { - ANT_TASKS="ant-junit4" eant test -Dlibs.junit_4.classpath="$(java-pkg_getjars --with-dependencies junit-4)" -} diff --git a/dev-java/constantine/constantine-0.7.ebuild b/dev-java/constantine/constantine-0.7-r1.ebuild similarity index 72% rename from dev-java/constantine/constantine-0.7.ebuild rename to dev-java/constantine/constantine-0.7-r1.ebuild index 9b5555de66ec..b1e08eb8b8c8 100644 --- a/dev-java/constantine/constantine-0.7.ebuild +++ b/dev-java/constantine/constantine-0.7-r1.ebuild @@ -1,22 +1,27 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ +EAPI=5 + JAVA_PKG_IUSE="source test" -inherit base java-pkg-2 java-ant-2 + +inherit java-pkg-2 java-ant-2 DESCRIPTION="Provides Java values for common platform C constants" HOMEPAGE="https://github.com/wmeissner/jnr-constants" SRC_URI="mirror://gentoo/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux ~x86-solaris" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris" IUSE="" -RDEPEND=">=virtual/jre-1.5" +RDEPEND=">=virtual/jre-1.6" -DEPEND=">=virtual/jdk-1.5 - test? ( dev-java/ant-junit4 )" +DEPEND=">=virtual/jdk-1.6 + test? ( + dev-java/ant-junit:0 + )" src_compile() { # ecj doesn't like some cast for some reason @@ -24,11 +29,11 @@ src_compile() { java-pkg-2_src_compile } +src_test() { + ANT_TASKS="ant-junit4" eant test -Dlibs.junit_4.classpath="$(java-pkg_getjars --with-dependencies junit-4)" +} + src_install() { java-pkg_dojar dist/${PN}.jar use source && java-pkg_dosrc src/* } - -src_test() { - ANT_TASKS="ant-junit4" eant test -Dlibs.junit_4.classpath="$(java-pkg_getjars --with-dependencies junit-4)" -} diff --git a/dev-libs/json-c/json-c-0.12.ebuild b/dev-libs/json-c/json-c-0.12.ebuild index e01bc4881690..ed1c33c40cdd 100644 --- a/dev-libs/json-c/json-c-0.12.ebuild +++ b/dev-libs/json-c/json-c-0.12.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://s3.amazonaws.com/json-c_releases/releases/${P}.tar.gz" LICENSE="MIT" SLOT="0/0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos" IUSE="doc static-libs" RDEPEND=" diff --git a/dev-libs/leveldb/leveldb-1.18-r1.ebuild b/dev-libs/leveldb/leveldb-1.18-r1.ebuild index d50d0bedf217..e31c42c6746a 100644 --- a/dev-libs/leveldb/leveldb-1.18-r1.ebuild +++ b/dev-libs/leveldb/leveldb-1.18-r1.ebuild @@ -12,8 +12,8 @@ SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 arm ~arm64 ~mips ~ppc ppc64 x86 ~amd64-linux ~x86-linux" -IUSE="+snappy static-libs +tcmalloc" +KEYWORDS="amd64 arm ~arm64 ~mips ~ppc ppc64 x86 ~amd64-fbsd ~amd64-linux ~x86-linux" +IUSE="+snappy static-libs +tcmalloc kernel_FreeBSD" DEPEND="tcmalloc? ( dev-util/google-perftools ) snappy? ( @@ -38,8 +38,14 @@ src_configure() { # which the Makefile runs for us automatically. tc-export AR CC CXX export OPT="-DNDEBUG ${CPPFLAGS}" + local targetos + if use kernel_FreeBSD; then + targetos="FreeBSD" + else + targetos="Linux" + fi - TARGET_OS="Linux" \ + TARGET_OS=${targetos} \ USE_SNAPPY=$(usex snappy) \ USE_TCMALLOC=no \ TMPDIR=${T} \ diff --git a/dev-libs/ppl/ppl-1.1.ebuild b/dev-libs/ppl/ppl-1.1.ebuild index d29fad31a1d6..f56deffdd363 100644 --- a/dev-libs/ppl/ppl-1.1.ebuild +++ b/dev-libs/ppl/ppl-1.1.ebuild @@ -10,7 +10,7 @@ SRC_URI="http://bugseng.com/products/ppl/download/ftp/releases/${PV}/${P}.tar.xz LICENSE="GPL-3" SLOT="0/4.13" # SONAMEs -KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~sparc-solaris" +KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~sparc-solaris" IUSE="+cxx doc lpsol pch static-libs test" RDEPEND=">=dev-libs/gmp-6[cxx] diff --git a/dev-lua/lua-openssl/Manifest b/dev-lua/lua-openssl/Manifest new file mode 100644 index 000000000000..1b7e99dfdf8b --- /dev/null +++ b/dev-lua/lua-openssl/Manifest @@ -0,0 +1 @@ +DIST lua-openssl-0.4.1.tar.gz 363525 SHA256 cce51e33b07b6450854d2e57e129b5f369b749a780d58c44719c834f198ee340 SHA512 c6deda86f77f9d6de1863611db9eb82506ea9789ec0425cb40cdb7d142d53aa633d53e1446b7eeb464636261385822d9cedc841bd35163931cc3758e7c3a308d WHIRLPOOL cbb5367bc7b716bcde731340339e7dafc3b4c5a542e1cf30e4fcf1d6c720e4f49676afe33f77860ab1da0a55b6dde434d0c312ae42c96765512494c6e8bbeb49 diff --git a/dev-lua/lua-openssl/files/lua-openssl-0.4.1-Makefile.patch b/dev-lua/lua-openssl/files/lua-openssl-0.4.1-Makefile.patch new file mode 100644 index 000000000000..bf5374ee90cd --- /dev/null +++ b/dev-lua/lua-openssl/files/lua-openssl-0.4.1-Makefile.patch @@ -0,0 +1,86 @@ +From: Jakub Jirutka + +Fix Makefile to respect system CFLAGS, LDFLAGS, and CC provided by environment. +Allow to specify pkg-config command using variable, to be friendly with +cross-compiling etc. + +diff --git a/Makefile b/Makefile +index 195ef6b..375fb65 100644 +--- a/Makefile ++++ b/Makefile +@@ -2,9 +2,10 @@ T=openssl + + PREFIX ?=/usr/local + LIB_OPTION ?= -shared ++PKG_CONFIG ?= pkg-config + + #Lua auto detect +-LUA_VERSION ?= $(shell pkg-config luajit --print-provides) ++LUA_VERSION ?= $(shell $(PKG_CONFIG) luajit --print-provides) + ifeq ($(LUA_VERSION),) ############ Not use luajit + LUAV ?= $(shell lua -e "_,_,v=string.find(_VERSION,'Lua (.+)');print(v)") + LUA_CFLAGS ?= -I$(PREFIX)/include/lua$(LUAV) +@@ -12,8 +13,8 @@ LUA_LIBS ?= -L$(PREFIX)/lib + LUA_LIBDIR ?= $(PREFIX)/lib/lua/$(LUAV) + else + LUAV ?= $(shell lua -e "_,_,v=string.find(_VERSION,'Lua (.+)');print(v)") +-LUA_CFLAGS ?= $(shell pkg-config luajit --cflags) +-LUA_LIBS ?= $(shell pkg-config luajit --libs) ++LUA_CFLAGS ?= $(shell $(PKG_CONFIG) luajit --cflags) ++LUA_LIBS ?= $(shell $(PKG_CONFIG) luajit --libs) + LUA_LIBDIR ?= $(PREFIX)/lib/lua/$(LUAV) + endif + +@@ -22,30 +23,30 @@ SYS := $(shell gcc -dumpmachine) + + ifneq (, $(findstring linux, $(SYS))) + # Do linux things +-LDFLAGS = -fPIC -lrt -ldl +-OPENSSL_LIBS ?= $(shell pkg-config openssl --libs) +-OPENSSL_CFLAGS ?= $(shell pkg-config openssl --cflags) +-CFLAGS = -fPIC $(OPENSSL_CFLAGS) $(LUA_CFLAGS) ++LDFLAGS += -fPIC -lrt -ldl ++OPENSSL_LIBS ?= $(shell $(PKG_CONFIG) openssl --libs) ++OPENSSL_CFLAGS ?= $(shell $(PKG_CONFIG) openssl --cflags) ++CFLAGS += -fPIC $(OPENSSL_CFLAGS) $(LUA_CFLAGS) + endif + ifneq (, $(findstring apple, $(SYS))) + # Do darwin things +-LDFLAGS = -fPIC -lrt -ldl +-OPENSSL_LIBS ?= $(shell pkg-config openssl --libs) +-OPENSSL_CFLAGS ?= $(shell pkg-config openssl --cflags) +-CFLAGS = -fPIC $(OPENSSL_CFLAGS) $(LUA_CFLAGS) ++LDFLAGS += -fPIC -lrt -ldl ++OPENSSL_LIBS ?= $(shell $(PKG_CONFIG) openssl --libs) ++OPENSSL_CFLAGS ?= $(shell $(PKG_CONFIG) openssl --cflags) ++CFLAGS += -fPIC $(OPENSSL_CFLAGS) $(LUA_CFLAGS) + endif + ifneq (, $(findstring mingw, $(SYS))) + # Do mingw things + V = $(shell lua -e "v=string.gsub('$(LUAV)','%.','');print(v)") +-LDFLAGS = -mwindows -lcrypt32 -lssl -lcrypto -lws2_32 $(PREFIX)/bin/lua$(V).dll ++LDFLAGS += -mwindows -lcrypt32 -lssl -lcrypto -lws2_32 $(PREFIX)/bin/lua$(V).dll + LUA_CFLAGS = -DLUA_LIB -DLUA_BUILD_AS_DLL -I$(PREFIX)/include/ +-CFLAGS = $(OPENSSL_CFLAGS) $(LUA_CFLAGS) ++CFLAGS += $(OPENSSL_CFLAGS) $(LUA_CFLAGS) + endif + ifneq (, $(findstring cygwin, $(SYS))) + # Do cygwin things +-OPENSSL_LIBS ?= $(shell pkg-config openssl --libs) +-OPENSSL_CFLAGS ?= $(shell pkg-config openssl --cflags) +-CFLAGS = -fPIC $(OPENSSL_CFLAGS) $(LUA_CFLAGS) ++OPENSSL_LIBS ?= $(shell $(PKG_CONFIG) openssl --libs) ++OPENSSL_CFLAGS ?= $(shell $(PKG_CONFIG) openssl --cflags) ++CFLAGS += -fPIC $(OPENSSL_CFLAGS) $(LUA_CFLAGS) + endif + #custome config + ifeq (.config, $(wildcard .config)) +@@ -61,7 +62,7 @@ WARN_MOST = -Wall -W -Waggregate-return -Wcast-align -Wmissing-prototypes -Wnest + WARN = -Wall -Wno-unused-value + WARN_MIN = + CFLAGS += $(WARN_MIN) -DPTHREADS +-CC= gcc -g $(CFLAGS) -Ideps ++CC ?= gcc -g $(CFLAGS) -Ideps + + + OBJS=src/asn1.o src/auxiliar.o src/bio.o src/cipher.o src/cms.o src/compat.o src/crl.o src/csr.o src/dh.o src/digest.o src/dsa.o \ diff --git a/dev-lua/lua-openssl/lua-openssl-0.4.1.ebuild b/dev-lua/lua-openssl/lua-openssl-0.4.1.ebuild new file mode 100644 index 000000000000..94b2ce6f3183 --- /dev/null +++ b/dev-lua/lua-openssl/lua-openssl-0.4.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils toolchain-funcs + +DESCRIPTION="OpenSSL binding for Lua" +HOMEPAGE="https://github.com/zhaozg/lua-openssl" +SRC_URI="https://github.com/zhaozg/lua-openssl/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT openssl PHP-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="luajit" + +RDEPEND=" + luajit? ( dev-lang/luajit:2 ) + !luajit? ( >=dev-lang/lua-5.1:0 ) + dev-libs/openssl:0" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + epatch "${FILESDIR}/${P}-Makefile.patch" + use luajit && LUAV=luajit || LUAV=lua +} + +src_compile() { + local pkgconfig=$(tc-getPKG_CONFIG) + emake \ + CC="$(tc-getCC) \$(CFLAGS) -Ideps" \ + PKG_CONFIG="$pkgconfig" \ + LUA_CFLAGS="$($pkgconfig --cflags $LUAV)" \ + LUA_LIBS="$($pkgconfig --libs $LUAV)" \ + LUA_LIBDIR="$($pkgconfig --variable INSTALL_CMOD $LUAV)" +} + +src_install() { + emake \ + LUA_LIBDIR="${D}$($(tc-getPKG_CONFIG) --variable INSTALL_CMOD $LUAV)" \ + install + einstalldocs +} diff --git a/dev-lua/lua-openssl/metadata.xml b/dev-lua/lua-openssl/metadata.xml new file mode 100644 index 000000000000..ea456936e173 --- /dev/null +++ b/dev-lua/lua-openssl/metadata.xml @@ -0,0 +1,16 @@ + + + + proxy-maintainers + + jakub@jirutka.cz + Jakub Jirutka + + + Use dev-lang/luajit instead of + dev-lang/lua + + + zhaozg/lua-openssl + + diff --git a/dev-ml/menhir/Manifest b/dev-ml/menhir/Manifest index 8a457939a8ae..ce0c8dfacfd7 100644 --- a/dev-ml/menhir/Manifest +++ b/dev-ml/menhir/Manifest @@ -1,3 +1,4 @@ DIST menhir-20141215.tar.gz 556231 SHA256 2592967c123a31e1b6566ab9f6034e7a0a709d57d547097f05693baf96a46fa4 SHA512 1fff6b987016be37eaca0bb3fea7ec0c498c1448d076e991e1555718cf760318a8d710622af930175f234f49f8dd767ce62cc880c33458958ceeb1bda4817243 WHIRLPOOL 28e6018ce127b28e362aaf1fe030240253cb2ffb0a52d9b34e81c71882ae517376aa3df6c5d19c6db13819260f667f5708522486a74bc498bad3dac11378b56c DIST menhir-20150914.tar.gz 626388 SHA256 a3057ec0867377ceaf9caecf69d331440d9c0fb70e39ade619a7856aa67d535d SHA512 7717fcc63ae938eb7c8ae3a5e7d279a357735c0e3b062d9060cc70d3016640e1427d25ee8182e3e034c678d9b0e706fe219f707dd4d14689457f321b135b1fef WHIRLPOOL d66204d753d0677f9eb51d09641f9148077e62caa7ae042665697036457724040950bbb190df6bd029224a0607a67cac8f4597927b4f667ca09091e07d09f7bd DIST menhir-20150921.tar.gz 627213 SHA256 4d8588dc847ef33f3af64d30e19bc791a57f61cda2b7086267bc8743ea4a2622 SHA512 a3100819cef6577c2806ebab765c966c11acd9fc9de061e64ef1bf4ca8b0076b0b878f12abf951a3c5882216f173936f2899444ca4126c477fa9cbef231c6b4e WHIRLPOOL cec19d79e7b79ea3dc2159673082931c8c360a865078d0af0bdd152fd1e481adb7218caf7f404005e6653493d04fda7659c1aa3b7527bbf8e0b75f284ff676d0 +DIST menhir-20151005.tar.gz 627178 SHA256 154f2537472c65e3e395de87484020cc9aedee5898b9c8756cd02245b3a568b0 SHA512 5275732b7d8699b23a470716900a9c28f4123bd85f18d582bf69a839009009782a680bb65fd7e543515898ea5899fd2b1c8eca5c776067b70ef450093d437f82 WHIRLPOOL b500268821f8b14c7cd46447c84c73d72a12365e1d991babf037746fbf76b18f41bdb0ed812d469ef7de7c2e8966f4151272773d2cd3b3fce250bc21b506dee0 diff --git a/dev-ml/menhir/menhir-20151005.ebuild b/dev-ml/menhir/menhir-20151005.ebuild new file mode 100644 index 000000000000..a8d4107fe611 --- /dev/null +++ b/dev-ml/menhir/menhir-20151005.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit findlib + +DESCRIPTION="LR(1) parser generator for the OCaml language" +HOMEPAGE="http://gallium.inria.fr/~fpottier/menhir/" +SRC_URI="http://gallium.inria.fr/~fpottier/menhir/${P}.tar.gz" + +LICENSE="QPL-1.0 LGPL-2-with-linking-exception" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="examples +ocamlopt" + +DEPEND=">=dev-lang/ocaml-4.02:=[ocamlopt?]" +RDEPEND="${DEPEND}" + +src_configure() { + if ! use ocamlopt ; then + export TARGET=byte + fi +} + +src_compile() { + emake PREFIX="${EPREFIX}"/usr -j1 +} + +src_install() { + findlib_src_preinst + emake PREFIX="${ED}"/usr docdir="${ED}"/usr/share/doc/"${PF}" $(use examples || echo "DOCS=manual.pdf") install + use examples && docompress -x /usr/share/doc/${PF}/demos + dodoc AUTHORS CHANGES +} diff --git a/dev-php/PEAR-File_Passwd/PEAR-File_Passwd-1.1.7-r1.ebuild b/dev-php/PEAR-File_Passwd/PEAR-File_Passwd-1.1.7-r1.ebuild deleted file mode 100644 index 63a1db7dad9b..000000000000 --- a/dev-php/PEAR-File_Passwd/PEAR-File_Passwd-1.1.7-r1.ebuild +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="2" - -inherit php-pear-r1 - -DESCRIPTION="Manipulate many kinds of password files" - -LICENSE="PHP-3" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86" -IUSE="" - -DEPEND="|| ( =dev-lang/php-5.3 )" diff --git a/dev-php/PEAR-File_Passwd/PEAR-File_Passwd-1.1.7-r3.ebuild b/dev-php/PEAR-File_Passwd/PEAR-File_Passwd-1.1.7-r3.ebuild index 70953d838b3c..ad8146bb48cd 100644 --- a/dev-php/PEAR-File_Passwd/PEAR-File_Passwd-1.1.7-r3.ebuild +++ b/dev-php/PEAR-File_Passwd/PEAR-File_Passwd-1.1.7-r3.ebuild @@ -10,7 +10,7 @@ DESCRIPTION="Manipulate many kinds of password files" LICENSE="PHP-3" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86" IUSE="" DEPEND="dev-lang/php:*[pcre(+)]" diff --git a/dev-php/PEAR-I18Nv2/PEAR-I18Nv2-0.11.4-r1.ebuild b/dev-php/PEAR-I18Nv2/PEAR-I18Nv2-0.11.4-r1.ebuild deleted file mode 100644 index 8c818cf6040a..000000000000 --- a/dev-php/PEAR-I18Nv2/PEAR-I18Nv2-0.11.4-r1.ebuild +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="2" - -inherit php-pear-r1 - -DESCRIPTION="Internationalization - basic support to localize your application" -LICENSE="PHP-3" -SLOT="0" -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86" -IUSE="" -DEPEND="|| ( =dev-lang/php-5.3[iconv] )" diff --git a/dev-php/PEAR-I18Nv2/PEAR-I18Nv2-0.11.4-r3.ebuild b/dev-php/PEAR-I18Nv2/PEAR-I18Nv2-0.11.4-r3.ebuild index e27ac6ece06d..c75e2fc7f364 100644 --- a/dev-php/PEAR-I18Nv2/PEAR-I18Nv2-0.11.4-r3.ebuild +++ b/dev-php/PEAR-I18Nv2/PEAR-I18Nv2-0.11.4-r3.ebuild @@ -9,7 +9,7 @@ inherit php-pear-r1 DESCRIPTION="Internationalization - basic support to localize your application" LICENSE="PHP-3" SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86" IUSE="" DEPEND="dev-lang/php:*[iconv,pcre(+)]" RDEPEND="${DEPEND}" diff --git a/dev-php/PEAR-Structures_Graph/PEAR-Structures_Graph-1.0.4-r2.ebuild b/dev-php/PEAR-Structures_Graph/PEAR-Structures_Graph-1.0.4-r2.ebuild index eabc826e9662..6597ad55eef8 100644 --- a/dev-php/PEAR-Structures_Graph/PEAR-Structures_Graph-1.0.4-r2.ebuild +++ b/dev-php/PEAR-Structures_Graph/PEAR-Structures_Graph-1.0.4-r2.ebuild @@ -15,7 +15,7 @@ DESCRIPTION="Graph datastructure manipulation library" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86" IUSE="" SRC_URI="http://pear.php.net/get/${MY_P}.tgz" DEPEND="dev-lang/php:*[pcre(+)] diff --git a/dev-php/PEAR-Structures_Graph/PEAR-Structures_Graph-1.0.4.ebuild b/dev-php/PEAR-Structures_Graph/PEAR-Structures_Graph-1.0.4.ebuild deleted file mode 100644 index 58101dec70d7..000000000000 --- a/dev-php/PEAR-Structures_Graph/PEAR-Structures_Graph-1.0.4.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -# BIG FAT WARNING! -# Do not use any pear eclass here since pear itself depends on this package. -# Using the pear eclass will thus create a circular dependency - -EAPI="2" - -MY_PN="${PN/PEAR-/}" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="Graph datastructure manipulation library" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86" -IUSE="" -SRC_URI="http://pear.php.net/get/${MY_P}.tgz" -DEPEND="|| ( =dev-lang/php-5.3 ) - >=dev-php/PEAR-PEAR-1.8.1" -PDEPEND="dev-php/pear" -HOMEPAGE="http://pear.php.net/package/Structures_Graph" - -S="${WORKDIR}/${MY_P}" - -src_install() { - insinto /usr/share/php - doins -r Structures - - dohtml -r docs/html/* -} diff --git a/dev-php/pecl-ncurses/pecl-ncurses-1.0.2-r1.ebuild b/dev-php/pecl-ncurses/pecl-ncurses-1.0.2-r2.ebuild similarity index 81% rename from dev-php/pecl-ncurses/pecl-ncurses-1.0.2-r1.ebuild rename to dev-php/pecl-ncurses/pecl-ncurses-1.0.2-r2.ebuild index 4afaa9553cea..9ecc1879034b 100644 --- a/dev-php/pecl-ncurses/pecl-ncurses-1.0.2-r1.ebuild +++ b/dev-php/pecl-ncurses/pecl-ncurses-1.0.2-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -15,7 +15,7 @@ SLOT="0" KEYWORDS="~amd64" IUSE="" -DEPEND="sys-libs/ncurses" +DEPEND="sys-libs/ncurses:0=" RDEPEND="${DEPEND}" my_conf="--enable-ncursesw" diff --git a/dev-python/keystonemiddleware/Manifest b/dev-python/keystonemiddleware/Manifest index 9b65ac96b1a2..16fa7643ea86 100644 --- a/dev-python/keystonemiddleware/Manifest +++ b/dev-python/keystonemiddleware/Manifest @@ -1,3 +1,4 @@ DIST keystonemiddleware-1.5.0.tar.gz 176315 SHA256 73e98aab8bceb7843b6cc8aba2cbff824a379428519e2f9ffbb8e32578b38fe8 SHA512 365643f7eba633587d8055204df04cfb40bdcc28c57d7ecf8c4ed67803b9b027b6334f868a1bc634d9beefd7410d74da08a7ed599637ec1656e6ef6196043dab WHIRLPOOL da7014869d3fc1ac5339671344542e33c22ac07adfb76ad00144cdcf4e1e26c60eea7ca7867cea6c6e105af1d05be64eff7d55ae1b3cf5114597da966b756b55 DIST keystonemiddleware-1.5.2.tar.gz 176172 SHA256 5f443162157946d2f33c4729d0bde55291f12963b0f1ee553984aedd8a509d51 SHA512 172143f2e80860de3d89f53667bf670c1986cfc63a21392bf977b3beaa5669db76f46997d6939952856cb4abc970b57920810980d00db7e7cd711bdbede5908e WHIRLPOOL 99a4553778b5dae07a710e78f816c8b30def42bfc7024cac7d6be8d8b6f76326383ed72935c6526758ac65fb26945937869985cba167d8804fe3a7cf2e3c4208 DIST keystonemiddleware-2.2.0.tar.gz 179743 SHA256 e3fca3fdc093d7fd3817bbd767faca7f0aa221b54155808694eb1286fae469f9 SHA512 9aa498aa0bceec1774c70dc7fc4ce8c398e72721d33e715594b3396e160f9b60dfc3533687f0706eb272abd812b44d31b2a76fece739a2ccad33039b37f3fca5 WHIRLPOOL a1b348e3e2f004038afa6b2b06d018d2e1130af1b2eb0e5740ea6a716dabaa98fe7a58cfd6e5100e5cdd6c7297fb150f4d9cc45dd8c831b7ca54a265b0d56662 +DIST keystonemiddleware-2.3.1.tar.gz 181764 SHA256 9970f8187cb0a91cb2d78ef9a088147b2c9457653e95caa7b8bcd11bd450bec1 SHA512 976aece1d308607eec6f406bb94f1e6dddc27edebc8d99bd7bc00dfbc1f21479da2c76404a99eb677e6647afd42f68b82d6f519659d7483db6fa9d68f839cf5f WHIRLPOOL e6a568e7c96886907eaeba9bc843833ffece8f441bfbe760b77c597c38a5a2720b702a527830d61f07bf0e3adbe4a90d6198b97b487ca08c3e4829058f7e0ef4 diff --git a/dev-python/keystonemiddleware/keystonemiddleware-2.3.1.ebuild b/dev-python/keystonemiddleware/keystonemiddleware-2.3.1.ebuild new file mode 100644 index 000000000000..18bd9b765417 --- /dev/null +++ b/dev-python/keystonemiddleware/keystonemiddleware-2.3.1.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +#PYTHON_COMPAT=( python2_7 python3_3 python3_4 ) +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="A middleware for the OpenStack Keystone API" +HOMEPAGE="https://github.com/openstack/keystonemiddleware" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc examples test" + +CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + ${CDEPEND} + test? ( + >=dev-python/coverage-3.6[${PYTHON_USEDEP}] + >=dev-python/fixtures-1.3.1[${PYTHON_USEDEP}] + >=dev-python/mock-1.2[${PYTHON_USEDEP}] + >=dev-python/pycrypto-2.6[${PYTHON_USEDEP}] + >=dev-python/oslo-sphinx-2.5.0[${PYTHON_USEDEP}] + >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}] + >=dev-python/oslo-messaging-1.16.0[${PYTHON_USEDEP}] + !~dev-python/oslo-messaging-1.17.0[${PYTHON_USEDEP}] + !~dev-python/oslo-messaging-1.17.1[${PYTHON_USEDEP}] + >=dev-python/requests-mock-0.6.0[${PYTHON_USEDEP}] + >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}] + !~dev-python/sphinx-1.2.0[${PYTHON_USEDEP}] + =dev-python/stevedore-1.5.0[${PYTHON_USEDEP}] + >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}] + >=dev-python/testresources-0.2.4[${PYTHON_USEDEP}] + >=dev-python/testtools-1.4.0[${PYTHON_USEDEP}] + >=dev-python/python-memcached-1.56[${PYTHON_USEDEP}] + >=dev-python/bandit-0.13.2[${PYTHON_USEDEP}] + )" + +RDEPEND=" + ${CDEPEND} + >=dev-python/Babel-1.3[${PYTHON_USEDEP}] + >=dev-python/oslo-config-2.3.0[${PYTHON_USEDEP}] + >=dev-python/oslo-context-0.2.0[${PYTHON_USEDEP}] + >=dev-python/oslo-i18n-1.5.0[${PYTHON_USEDEP}] + >=dev-python/oslo-serialization-1.4.0[${PYTHON_USEDEP}] + >=dev-python/oslo-utils-2.0.0[${PYTHON_USEDEP}] + >=dev-python/pycadf-1.1.0[${PYTHON_USEDEP}] + >=dev-python/python-keystoneclient-1.6.0[${PYTHON_USEDEP}] + >=dev-python/requests-2.5.2[${PYTHON_USEDEP}] + >=dev-python/six-1.9.0[${PYTHON_USEDEP}] + >=dev-python/webob-1.2.3[${PYTHON_USEDEP}]" + +PATCHES=( +) + +python_prepare_all() { + sed -i '/^hacking/d' test-requirements.txt || die + distutils-r1_python_prepare_all +} + +python_compile_all() { + use doc && emake -C doc html +} + +python_test() { + testr init + testr run || die "testsuite failed under python2.7" + flake8 ${PN/python-/}/tests || die "run over tests folder by flake8 drew error" +} + +python_install_all() { + use doc && local HTML_DOCS=( doc/build/html/. ) + use examples && local EXAMPLES=( examples/.) + distutils-r1_python_install_all +} diff --git a/dev-python/lxml/lxml-3.4.4.ebuild b/dev-python/lxml/lxml-3.4.4.ebuild index 4726c4eadf91..c36166cc02f1 100644 --- a/dev-python/lxml/lxml-3.4.4.ebuild +++ b/dev-python/lxml/lxml-3.4.4.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD ElementTree GPL-2 PSF-2" SLOT="0" -KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="doc examples +threads test" # Note: lib{xml2,xslt} are used as C libraries, not Python modules. diff --git a/dev-python/pycadf/Manifest b/dev-python/pycadf/Manifest index d2b6570c50a0..4c6cecf54fc7 100644 --- a/dev-python/pycadf/Manifest +++ b/dev-python/pycadf/Manifest @@ -1,3 +1,4 @@ DIST pycadf-0.6.0.tar.gz 277434 SHA256 9ba1e9ac52ee2a2d6d9cc89847323559cc2ffe7b4d80b703944a0a1f75c7093f SHA512 97e223296e5cf77bbc2f7f8b2caba70f76d418ccd476bbc07462dac2c01399f920ae7801f1e30ef91ac6dbfe340b8b45dff2426bf457c1239f54293dbadeef61 WHIRLPOOL 96644ae4b82352cd0a296f3a9adf161b8500d043d8d2bce239c23473a53e1a2feb43f60d92c67bf1543b3b101bbf722bf9104b2c6b16fa7240b94e86cc6a2aa1 DIST pycadf-0.8.0.tar.gz 255774 SHA256 240d7775682a0f49fb580310dd6459e8a8b5f5619dfdc687f043c3fe21b48ba1 SHA512 3b8446c33f0bf740b0f2384bb9e4c5ab5d960690e50bd52cf2217eb184f9f8061dfe39da9b21ef275a7c66ba4e35b912bfd9476469b28c3c2cd6f33d912ac6f7 WHIRLPOOL bf28052eee894a1a986c1903f44f2f800f096979188a6b0ff502b7316d38ce7c43197405e635da097de038e24c1d870140a4ddd1c0eaa543841b3073055f1c19 DIST pycadf-1.0.0.tar.gz 247178 SHA256 8278865dba0c6d7d2c83f51629c0f215393e8cbc36719c845b591f40dd80609f SHA512 7f7a4bb1d89ee3a63c9c74980995864b6e80a4e7df2111b4bafb42ba977ab2b86aac5e288d930068789cae9cabee13300ede7ae3c520440cc5fdfdac057085c0 WHIRLPOOL 68eab74a8e7a727d178dfdaa7cef27d0a41538540c450446a768775de61854eb82ca070792e694bad422ccacfae894b73226ab9224d82f742fdcd037ebd2c725 +DIST pycadf-1.1.0.tar.gz 248161 SHA256 af114ba08d535ad9600e961c1048e1c7214c669a7ee3611f46ea06b917b46953 SHA512 f3215fda9c76422ffdaa65d11c65c3835562539f61f02c91e167433c8e65a55b81290792ae827a8b4e7c497878322b802e42c666658a3cf11682e2a72002c8cf WHIRLPOOL d75adc656d344a667ff1b5d3063f300be8fe57d9e5fd32b86bfa242d132e3ee587f72aa4d1eb104c468c71005e3b9825581c145dc7c8b64b7c701274016004da diff --git a/dev-python/pycadf/pycadf-1.1.0.ebuild b/dev-python/pycadf/pycadf-1.1.0.ebuild new file mode 100644 index 000000000000..bee046c66377 --- /dev/null +++ b/dev-python/pycadf/pycadf-1.1.0.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="python implementation of DMTF Cloud Audit (CADF) data model" +HOMEPAGE="https://pypi.python.org/pypi/pycadf" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/pbr[${PYTHON_USEDEP}] + test? ( + >=dev-python/coverage-3.6[${PYTHON_USEDEP}] + >=dev-python/fixtures-1.3.1[${PYTHON_USEDEP}] + >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}] + >=dev-python/subunit-0.0.18[${PYTHON_USEDEP}] + >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}] + >=dev-python/testtools-1.4.0[${PYTHON_USEDEP}] + >=dev-python/oslo-sphinx-2.5.0[${PYTHON_USEDEP}] + >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}] + =dev-python/oslo-sphinx-2.5.0[${PYTHON_USEDEP}] + >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}] + /dev/null + if [[ "${EPYTHON}" == python3* ]]; then + 2to3 --no-diffs -w test + fi + DB_PORT2=$(( DB_PORT + 1 )) DB_PORT3=$(( DB_PORT + 2 )) esetup.py test || failed=1 + + mongod --dbpath "${dbpath}" --shutdown + + [[ ${failed} ]] && die "Tests fail with ${EPYTHON}" + + rm -rf "${dbpath}" +} + +python_install_all() { + use doc && local HTML_DOCS=( html/. ) + + distutils-r1_python_install_all +} diff --git a/dev-python/pyspf/pyspf-2.0.11.ebuild b/dev-python/pyspf/pyspf-2.0.11.ebuild index 716992e19abd..834057103c4e 100644 --- a/dev-python/pyspf/pyspf-2.0.11.ebuild +++ b/dev-python/pyspf/pyspf-2.0.11.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="PSF-2" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="ipv6 test" # >=python-3.3 comes with the built-in ipaddress module diff --git a/dev-python/python-keystoneclient/Manifest b/dev-python/python-keystoneclient/Manifest index c6dd85e82996..de943c72d744 100644 --- a/dev-python/python-keystoneclient/Manifest +++ b/dev-python/python-keystoneclient/Manifest @@ -1,3 +1,3 @@ DIST python-keystoneclient-1.3.1.tar.gz 338187 SHA256 8a421dbdf01251119164bf6baa0ef78b261e5dd4d3508748e47b77d7652e7e92 SHA512 d11825b717d0aeec67d4dfb0382173ee834fe3dea2097b8ff9505b86bb08a5579d6fe87509d65022d4436a3a1b4d20f2a877ece3160b53979999495b77df0f08 WHIRLPOOL 9aa0af722f56eb4d98d7efb8a35b1db95207970fba0b32496a9ae4593a16471f976efe1e9bb3690106ec0f5a76b5a744e9177cc7c03d9ffe9ed54111e3bb138c DIST python-keystoneclient-1.3.2.tar.gz 342434 SHA256 1b2fd5ceeefd8d75ee749acd2c3dd8805c833c89828075b814392069cd5ae1eb SHA512 4cd986c42256fbc366b81c07ab637fe81358dde530a8e9a5b3f59f4deef5d56fb1799fc82d35a3f04d3e3b810c94bfc21235e93a77c925d235322aeaa20e420c WHIRLPOOL 65b776c928126f92108c1585658a10b89e6563ff8e71f8f249fdb86e11b29811de12b17ddddb39845d66ff9533ae44d93148bd811d1e31577092c3b598348c03 -DIST python-keystoneclient-1.7.1.tar.gz 354799 SHA256 8457fb65cc88ce009bf757643a27ac00fd5805c7f42d56743d1b6dfc26861e79 SHA512 f70d2055ff0b2d30ffe8d45bcc3218170c38b681993c984d3165427acadbe1101288e4fe863fb29e4541c33c00784bed880ed739049de0412725ccdd9afa657b WHIRLPOOL 20135eb7bd7bc6346fb7635c47080f06c00afd781c8cfa8710f7ff163f622edee1c1506f6a06ed3628446748f4fd6f67e74b7dd4b52381cc8a6aa03ba1811fcd +DIST python-keystoneclient-1.7.2.tar.gz 356107 SHA256 d862183e0e53e7d0696a71ad9b6a9ff9f96b7f445564357de722604ca14fd6d2 SHA512 9a3f3205549f54dea73dc499d65613816f10fc2b5773734b6762db95965ef7192e3ca052748a3258925a5e120ccc6ed8d55b8860dfae94c6503d38b871039942 WHIRLPOOL cf0e0a9e1344cdbafea479be99aa25c40c0a32ccbfa05533aa957fe5003316d940c859caa74c4b9fa0495661d472913af48c666489ae392ad547e5ceb4cc5501 diff --git a/dev-python/python-keystoneclient/python-keystoneclient-1.7.1.ebuild b/dev-python/python-keystoneclient/python-keystoneclient-1.7.2.ebuild similarity index 94% rename from dev-python/python-keystoneclient/python-keystoneclient-1.7.1.ebuild rename to dev-python/python-keystoneclient/python-keystoneclient-1.7.2.ebuild index d695353603a9..29dfb2568712 100644 --- a/dev-python/python-keystoneclient/python-keystoneclient-1.7.1.ebuild +++ b/dev-python/python-keystoneclient/python-keystoneclient-1.7.2.ebuild @@ -20,8 +20,7 @@ IUSE="doc examples test" #doc? ( !~dev-python/sphinx-1.3_preb1[${PYTHON_USEDEP}] ) CDEPEND=" - >=dev-python/pbr-1.6[${PYTHON_USEDEP}] - =dev-python/pbr-1.6[${PYTHON_USEDEP}]" TCDEPEND=" >=dev-python/lxml-2.3[${PYTHON_USEDEP}] >=dev-python/mock-1.2[${PYTHON_USEDEP}] @@ -41,7 +40,6 @@ DEPEND=" >=dev-python/oauthlib-0.6[${PYTHON_USEDEP}] >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}] >=dev-python/pycrypto-2.6[${PYTHON_USEDEP}] - >=dev-python/requests-mock-0.6.0[${PYTHON_USEDEP}] >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}] >=dev-python/testtools-1.4.0[${PYTHON_USEDEP}] ) @@ -58,7 +56,7 @@ RDEPEND=" ${CDEPEND} >=dev-python/Babel-1.3[${PYTHON_USEDEP}] >=dev-python/iso8601-0.1.9[${PYTHON_USEDEP}] - >=dev-python/debtcollector-0.3.0 + >=dev-python/debtcollector-0.3.0[${PYTHON_USEDEP}] >=dev-python/netaddr-0.7.12[${PYTHON_USEDEP}] !~dev-python/netaddr-0.7.16[${PYTHON_USEDEP}] >=dev-python/oslo-config-2.3.0[${PYTHON_USEDEP}] diff --git a/dev-python/python-sipsimple/python-sipsimple-2.5.1-r1.ebuild b/dev-python/python-sipsimple/python-sipsimple-2.5.1-r2.ebuild similarity index 96% rename from dev-python/python-sipsimple/python-sipsimple-2.5.1-r1.ebuild rename to dev-python/python-sipsimple/python-sipsimple-2.5.1-r2.ebuild index f3e5e3ceee29..855904f594f1 100644 --- a/dev-python/python-sipsimple/python-sipsimple-2.5.1-r1.ebuild +++ b/dev-python/python-sipsimple/python-sipsimple-2.5.1-r2.ebuild @@ -20,7 +20,7 @@ KEYWORDS="~amd64 ~x86" CDEPEND=" dev-db/sqlite:3 - !libressl? ( dev-libs/openssl:0 ) + !libressl? ( dev-libs/openssl:0[-bindist] ) libressl? ( dev-libs/libressl ) dev-python/python-application[${PYTHON_USEDEP}] media-libs/alsa-lib diff --git a/dev-python/vulture/Manifest b/dev-python/vulture/Manifest new file mode 100644 index 000000000000..1aa33195f8ce --- /dev/null +++ b/dev-python/vulture/Manifest @@ -0,0 +1 @@ +DIST vulture-0.8.1.tar.gz 18708 SHA256 3d5567f7300707a7e340fffd0fd1ebfc8d717114944c03c842b8b6c26e2d365a SHA512 b9ca6fd67dfca4ac9d98f25425401ef6edb80426fb483c2fbe7797c3991a58fe67bd8abc4c77b1e4615cfb81ddd786eab669b6d4b48f505563c29597664f1950 WHIRLPOOL a1b094f2d47acf158edd3fe525fc885e3dcee11e246ddb5aa7625afb74db4093e26a40e37780513a8c2a9fe56dafad10ca2e33cd4ff0c654364448c87ebd2481 diff --git a/dev-python/vulture/metadata.xml b/dev-python/vulture/metadata.xml new file mode 100644 index 000000000000..905ae2277298 --- /dev/null +++ b/dev-python/vulture/metadata.xml @@ -0,0 +1,9 @@ + + + +python + + vulture + jendrikseipp/vulture + + diff --git a/dev-python/vulture/vulture-0.8.1.ebuild b/dev-python/vulture/vulture-0.8.1.ebuild new file mode 100644 index 000000000000..581c9396e489 --- /dev/null +++ b/dev-python/vulture/vulture-0.8.1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) + +inherit distutils-r1 + +DESCRIPTION="find unused classes, functions and variables in your code" +HOMEPAGE="https://bitbucket.org/jendrikseipp/vulture https://pypi.python.org/pypi/vulture" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DOCS=( README.txt NEWS.txt ) diff --git a/dev-qt/qtchooser/qtchooser-0_p20150102.ebuild b/dev-qt/qtchooser/qtchooser-0_p20150102.ebuild index 41ffb2b9308d..530ac05e4045 100644 --- a/dev-qt/qtchooser/qtchooser-0_p20150102.ebuild +++ b/dev-qt/qtchooser/qtchooser-0_p20150102.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" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd" IUSE="qt5 test" DEPEND="qt5? ( test? ( diff --git a/dev-ros/audio_capture/Manifest b/dev-ros/audio_capture/Manifest index aec3da0b587f..3a2fcd27aca0 100644 --- a/dev-ros/audio_capture/Manifest +++ b/dev-ros/audio_capture/Manifest @@ -1 +1,2 @@ DIST audio_common-0.2.7.tar.gz 173982 SHA256 bdffab26cd837b6db65d275dd14de143d1cf056167fc121b213b7403142195c4 SHA512 f765422bdb641e87132e1c9c56ca742d6830fed1d7414b337b61aa242f9955e4138ab13ee4a7786c78ff73f5824748ceb38f98612a7f12dab4dcdc97efa289e3 WHIRLPOOL d1bf17f8bd0e8346d2fff48982c402b0eaa2ea4365b3195e3dd0c4943c93cf1935fdff85a0d2018e43e5074640692c3d72dc72887c86d955dc02c60800e3725b +DIST audio_common-0.2.8.tar.gz 175497 SHA256 459ce6d834026969b3bec3fc9d59c446d8bd433661138464b90b9f2df38e6f1c SHA512 9a676be8c3c2240c3580facc9cf0e97080e42bfc53651af1308584b6aed32e33d0a4e7457c303290446fe200b2ff366a6136be2b9021e791bd54d81c0a739706 WHIRLPOOL 998e3bd28e18cdbde96693c3715a4eeea80c3d9b0aa4fbaaebaa6ddd926569e800e3e436153aa0854753da00c9bd7c1262d4cd3a04f1298aac05329dd1c6df0d diff --git a/dev-ros/audio_capture/audio_capture-0.2.8.ebuild b/dev-ros/audio_capture/audio_capture-0.2.8.ebuild new file mode 100644 index 000000000000..dd65eace76e5 --- /dev/null +++ b/dev-ros/audio_capture/audio_capture-0.2.8.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +ROS_REPO_URI="https://github.com/ros-drivers/audio_common" +KEYWORDS="~amd64 ~arm" +ROS_SUBDIR=${PN} + +inherit ros-catkin + +DESCRIPTION="Transports audio from a source to a destination" +LICENSE="BSD" +SLOT="0" +IUSE="" + +RDEPEND=" + dev-ros/audio_common_msgs[${CATKIN_MESSAGES_CXX_USEDEP}] + dev-ros/roscpp + dev-libs/boost:=[threads] + media-libs/gstreamer:0.10 +" +DEPEND="${RDEPEND} + virtual/pkgconfig" +RDEPEND="${RDEPEND} + media-plugins/gst-plugins-lame:0.10 + media-libs/gst-plugins-good:0.10 + media-libs/gst-plugins-base:0.10 +" diff --git a/dev-ros/audio_common_msgs/Manifest b/dev-ros/audio_common_msgs/Manifest index aec3da0b587f..3a2fcd27aca0 100644 --- a/dev-ros/audio_common_msgs/Manifest +++ b/dev-ros/audio_common_msgs/Manifest @@ -1 +1,2 @@ DIST audio_common-0.2.7.tar.gz 173982 SHA256 bdffab26cd837b6db65d275dd14de143d1cf056167fc121b213b7403142195c4 SHA512 f765422bdb641e87132e1c9c56ca742d6830fed1d7414b337b61aa242f9955e4138ab13ee4a7786c78ff73f5824748ceb38f98612a7f12dab4dcdc97efa289e3 WHIRLPOOL d1bf17f8bd0e8346d2fff48982c402b0eaa2ea4365b3195e3dd0c4943c93cf1935fdff85a0d2018e43e5074640692c3d72dc72887c86d955dc02c60800e3725b +DIST audio_common-0.2.8.tar.gz 175497 SHA256 459ce6d834026969b3bec3fc9d59c446d8bd433661138464b90b9f2df38e6f1c SHA512 9a676be8c3c2240c3580facc9cf0e97080e42bfc53651af1308584b6aed32e33d0a4e7457c303290446fe200b2ff366a6136be2b9021e791bd54d81c0a739706 WHIRLPOOL 998e3bd28e18cdbde96693c3715a4eeea80c3d9b0aa4fbaaebaa6ddd926569e800e3e436153aa0854753da00c9bd7c1262d4cd3a04f1298aac05329dd1c6df0d diff --git a/dev-ros/audio_common_msgs/audio_common_msgs-0.2.8.ebuild b/dev-ros/audio_common_msgs/audio_common_msgs-0.2.8.ebuild new file mode 100644 index 000000000000..e872a7e500db --- /dev/null +++ b/dev-ros/audio_common_msgs/audio_common_msgs-0.2.8.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +ROS_REPO_URI="https://github.com/ros-drivers/audio_common" +KEYWORDS="~amd64 ~arm" +ROS_SUBDIR=${PN} +CATKIN_HAS_MESSAGES=yes +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) + +inherit ros-catkin + +DESCRIPTION="Messages for transmitting audio via ROS" +LICENSE="BSD" +SLOT="0" +IUSE="" + +RDEPEND="" +DEPEND="${RDEPEND}" diff --git a/dev-ros/audio_play/Manifest b/dev-ros/audio_play/Manifest index aec3da0b587f..3a2fcd27aca0 100644 --- a/dev-ros/audio_play/Manifest +++ b/dev-ros/audio_play/Manifest @@ -1 +1,2 @@ DIST audio_common-0.2.7.tar.gz 173982 SHA256 bdffab26cd837b6db65d275dd14de143d1cf056167fc121b213b7403142195c4 SHA512 f765422bdb641e87132e1c9c56ca742d6830fed1d7414b337b61aa242f9955e4138ab13ee4a7786c78ff73f5824748ceb38f98612a7f12dab4dcdc97efa289e3 WHIRLPOOL d1bf17f8bd0e8346d2fff48982c402b0eaa2ea4365b3195e3dd0c4943c93cf1935fdff85a0d2018e43e5074640692c3d72dc72887c86d955dc02c60800e3725b +DIST audio_common-0.2.8.tar.gz 175497 SHA256 459ce6d834026969b3bec3fc9d59c446d8bd433661138464b90b9f2df38e6f1c SHA512 9a676be8c3c2240c3580facc9cf0e97080e42bfc53651af1308584b6aed32e33d0a4e7457c303290446fe200b2ff366a6136be2b9021e791bd54d81c0a739706 WHIRLPOOL 998e3bd28e18cdbde96693c3715a4eeea80c3d9b0aa4fbaaebaa6ddd926569e800e3e436153aa0854753da00c9bd7c1262d4cd3a04f1298aac05329dd1c6df0d diff --git a/dev-ros/audio_play/audio_play-0.2.8.ebuild b/dev-ros/audio_play/audio_play-0.2.8.ebuild new file mode 100644 index 000000000000..d8c67040ec3b --- /dev/null +++ b/dev-ros/audio_play/audio_play-0.2.8.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +ROS_REPO_URI="https://github.com/ros-drivers/audio_common" +KEYWORDS="~amd64 ~arm" +ROS_SUBDIR=${PN} + +inherit ros-catkin + +DESCRIPTION="Outputs audio to a speaker from a source node" +LICENSE="BSD" +SLOT="0" +IUSE="" + +RDEPEND=" + dev-ros/audio_common_msgs[${CATKIN_MESSAGES_CXX_USEDEP}] + dev-ros/roscpp + dev-libs/boost:=[threads] + media-libs/gstreamer:0.10 +" +DEPEND="${RDEPEND} + virtual/pkgconfig" +RDEPEND="${RDEPEND} + media-plugins/gst-plugins-alsa:0.10 + media-libs/gst-plugins-good:0.10 + media-libs/gst-plugins-base:0.10 +" diff --git a/dev-ros/move_base/move_base-1.13.0.ebuild b/dev-ros/move_base/move_base-1.13.0.ebuild index c8fbfbde4434..3a687a8c2c2e 100644 --- a/dev-ros/move_base/move_base-1.13.0.ebuild +++ b/dev-ros/move_base/move_base-1.13.0.ebuild @@ -23,6 +23,7 @@ RDEPEND=" dev-ros/nav_core dev-ros/tf dev-ros/move_base_msgs[${CATKIN_MESSAGES_CXX_USEDEP}] + dev-ros/std_srvs[${CATKIN_MESSAGES_CXX_USEDEP}] dev-cpp/eigen:3 " DEPEND="${RDEPEND} diff --git a/dev-ros/move_base/move_base-9999.ebuild b/dev-ros/move_base/move_base-9999.ebuild index c8fbfbde4434..3a687a8c2c2e 100644 --- a/dev-ros/move_base/move_base-9999.ebuild +++ b/dev-ros/move_base/move_base-9999.ebuild @@ -23,6 +23,7 @@ RDEPEND=" dev-ros/nav_core dev-ros/tf dev-ros/move_base_msgs[${CATKIN_MESSAGES_CXX_USEDEP}] + dev-ros/std_srvs[${CATKIN_MESSAGES_CXX_USEDEP}] dev-cpp/eigen:3 " DEPEND="${RDEPEND} diff --git a/dev-ros/sound_play/Manifest b/dev-ros/sound_play/Manifest index aec3da0b587f..3a2fcd27aca0 100644 --- a/dev-ros/sound_play/Manifest +++ b/dev-ros/sound_play/Manifest @@ -1 +1,2 @@ DIST audio_common-0.2.7.tar.gz 173982 SHA256 bdffab26cd837b6db65d275dd14de143d1cf056167fc121b213b7403142195c4 SHA512 f765422bdb641e87132e1c9c56ca742d6830fed1d7414b337b61aa242f9955e4138ab13ee4a7786c78ff73f5824748ceb38f98612a7f12dab4dcdc97efa289e3 WHIRLPOOL d1bf17f8bd0e8346d2fff48982c402b0eaa2ea4365b3195e3dd0c4943c93cf1935fdff85a0d2018e43e5074640692c3d72dc72887c86d955dc02c60800e3725b +DIST audio_common-0.2.8.tar.gz 175497 SHA256 459ce6d834026969b3bec3fc9d59c446d8bd433661138464b90b9f2df38e6f1c SHA512 9a676be8c3c2240c3580facc9cf0e97080e42bfc53651af1308584b6aed32e33d0a4e7457c303290446fe200b2ff366a6136be2b9021e791bd54d81c0a739706 WHIRLPOOL 998e3bd28e18cdbde96693c3715a4eeea80c3d9b0aa4fbaaebaa6ddd926569e800e3e436153aa0854753da00c9bd7c1262d4cd3a04f1298aac05329dd1c6df0d diff --git a/dev-ros/sound_play/sound_play-0.2.8.ebuild b/dev-ros/sound_play/sound_play-0.2.8.ebuild new file mode 100644 index 000000000000..c4b4cb101276 --- /dev/null +++ b/dev-ros/sound_play/sound_play-0.2.8.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +ROS_REPO_URI="https://github.com/ros-drivers/audio_common" +KEYWORDS="~amd64 ~arm" +ROS_SUBDIR=${PN} +CATKIN_HAS_MESSAGES=yes +PYTHON_COMPAT=( python2_7 ) +CATKIN_MESSAGES_TRANSITIVE_DEPS="dev-ros/actionlib_msgs" + +inherit ros-catkin + +DESCRIPTION="ROS node that translates commands on a ROS topic (robotsound) into sounds" +LICENSE="BSD" +SLOT="0" +IUSE="" + +RDEPEND=" + dev-ros/roscpp + dev-ros/rospy[${PYTHON_USEDEP}] + dev-ros/roslib + media-libs/gstreamer:0.10 + dev-ros/audio_common_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP}] + dev-ros/diagnostic_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + virtual/pkgconfig" +RDEPEND="${RDEPEND} + dev-python/gst-python[${PYTHON_USEDEP}] + app-accessibility/festival + media-libs/gst-plugins-good:0.10 + media-libs/gst-plugins-base:0.10 +" diff --git a/dev-util/rosdep/Manifest b/dev-util/rosdep/Manifest index 3b5b02d03632..ff2b584c115e 100644 --- a/dev-util/rosdep/Manifest +++ b/dev-util/rosdep/Manifest @@ -1,2 +1 @@ -DIST rosdep-0.11.2.tar.gz 106456 SHA256 89da05bdc082005815a9679dc34509a16647374d746a9e636c4238dd8f7aed9e SHA512 55057bb478dce1a7be3025d52fa6fb616b2de95017981ead934d7965282fa6ceb81780b7825d914531f87af492f3b5ce91ecf2607e6bddb65e13744e8a8d6743 WHIRLPOOL 37407d99d58f62c00a54b94a5820cab599c7700be355132e5d7b9d277faa220f89d68c9950cd386e984c64a1f0c493d53db15b31082f485d4786aff232f73d34 DIST rosdep-0.11.4.tar.gz 108842 SHA256 ded28bbf4821564feb8b62174f4ecac0031335c8357230e618a224b9ae1e8081 SHA512 0bffe2731e1039da63231bd57a98aa132a22fccfa6a8c3ed1553d51b0cf217d35eaaed524607f76132bd75332aae79187eb69d57ba1df8134159ede0a427953c WHIRLPOOL 4293a4d50d95882dd441e9d94eefc1c42ccb4195ba7faf1acb5081d7f7cae1ffde11842919ee45d7110e04f3a63b1ad4699fc9c768788aa1fe4afe35030c7192 diff --git a/dev-util/rosdep/rosdep-0.11.2.ebuild b/dev-util/rosdep/rosdep-0.11.2.ebuild deleted file mode 100644 index 7e6194f79a44..000000000000 --- a/dev-util/rosdep/rosdep-0.11.2.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -PYTHON_COMPAT=( python{2_7,3_3,3_4} ) - -SCM="" -if [ "${PV#9999}" != "${PV}" ] ; then - SCM="git-r3" - EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdep" -fi - -inherit ${SCM} distutils-r1 - -DESCRIPTION="Command-line tool for installing ROS system dependencies" -HOMEPAGE="http://wiki.ros.org/rosdep" -if [ "${PV#9999}" != "${PV}" ] ; then - SRC_URI="" - KEYWORDS="" -else - SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz - http://github.com/ros-infrastructure/rosdep/archive/${PV}.tar.gz -> ${P}.tar.gz - " - KEYWORDS="~amd64 ~arm" -fi - -LICENSE="BSD" -SLOT="0" -IUSE="test" - -RDEPEND=" - dev-python/catkin_pkg[${PYTHON_USEDEP}] - dev-python/rospkg[${PYTHON_USEDEP}] - dev-python/rosdistro[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - test? ( - dev-python/nose[${PYTHON_USEDEP}] - dev-python/coverage[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] - ) -" - -python_test() { - nosetests --with-coverage --cover-package=rosdep2 --with-xunit test || die -} - -pkg_postrm() { - if [ "${ROOT:-/}" = "/" ] ; then - einfo "Removing rosdep default sources list." - rm -f "${EPREFIX}/etc/ros/rosdep/sources.list.d/20-default.list" - fi -} - -pkg_postinst() { - if [ "${ROOT:-/}" = "/" -a ! -f "${EPREFIX}/etc/ros/rosdep/sources.list.d/20-default.list" ] ; then - einfo "Initializing rosdep" - rosdep init - fi -} diff --git a/dev-util/rosdep/rosdep-0.11.4.ebuild b/dev-util/rosdep/rosdep-0.11.4.ebuild index 7e6194f79a44..e72467b55d07 100644 --- a/dev-util/rosdep/rosdep-0.11.4.ebuild +++ b/dev-util/rosdep/rosdep-0.11.4.ebuild @@ -35,8 +35,8 @@ RDEPEND=" dev-python/rosdistro[${PYTHON_USEDEP}] dev-python/pyyaml[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} + dev-python/nose[${PYTHON_USEDEP}] test? ( - dev-python/nose[${PYTHON_USEDEP}] dev-python/coverage[${PYTHON_USEDEP}] dev-python/mock[${PYTHON_USEDEP}] ) diff --git a/dev-util/rosdep/rosdep-9999.ebuild b/dev-util/rosdep/rosdep-9999.ebuild index 7e6194f79a44..e72467b55d07 100644 --- a/dev-util/rosdep/rosdep-9999.ebuild +++ b/dev-util/rosdep/rosdep-9999.ebuild @@ -35,8 +35,8 @@ RDEPEND=" dev-python/rosdistro[${PYTHON_USEDEP}] dev-python/pyyaml[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} + dev-python/nose[${PYTHON_USEDEP}] test? ( - dev-python/nose[${PYTHON_USEDEP}] dev-python/coverage[${PYTHON_USEDEP}] dev-python/mock[${PYTHON_USEDEP}] ) diff --git a/dev-vcs/git/Manifest b/dev-vcs/git/Manifest index affb40195991..71dafc08c324 100644 --- a/dev-vcs/git/Manifest +++ b/dev-vcs/git/Manifest @@ -3,31 +3,43 @@ DIST git-1.9.5.tar.gz 4851532 SHA256 44efbc76edb50103e0d1b549dac006ee6f275fbd624 DIST git-2.0.5.tar.xz 3437996 SHA256 f5a63f5073c7f10d0676d0dabb46df48f2af77624fe24e1c6047b0e047af8ca1 SHA512 a2de101462cb7cf79ae596a5c7a77746fca430d6ae819731eb025a784b38b48b98964aca3db251e1a598ff17ff26b3711b044bd9c579d01346a8e1e77f7aa6de WHIRLPOOL b317f7b57a8a568b8a63ddbb44d6734dce01034c1b50491e3aedbb8a4ad2dc0f781b9edfad07e73ff050684f05734ee5f8b5483646967cbcd0a3cf7c600394eb DIST git-2.1.4.tar.xz 3544804 SHA256 a04968b9b10cbcb31a7054aa3a0d11ac47c83556ecd270ddef1987df5d3d053e SHA512 17333eda9600287be1f366271f314619354f6bc9b7f867d59a9493441e71a963340cedf728b5954ac6311f5426a928a2beacfa7775e1a4d439b58e0dcf310a0b WHIRLPOOL fc20c64e0d494a13834c71ffa5c727018fc3940f4dc65ae4eda6ba14af2faf2864d779e706b503c69a16858ca051878e27bcfe1883c3c206dda6129a1bc5aceb DIST git-2.2.3.tar.xz 3592292 SHA256 d56ba6a2b9ef51ec165b98b1894a36fbb635c6abb22674fd61ffc80603b967d9 SHA512 772466ccbbe06d83a03b244dd157c30f51e0fb06995a55070b262f8dd67ced454013fdc86690210c54db914252439be0bfccabbbfffddebb6bc047db946e9b92 WHIRLPOOL 2b60036db65cbcb1c2c2db68ec1747f6c309f9368c4f879c8b91964e16708c641e5a8b7d7b79431193b8d78d1c73e8e694ffe5f407701d7d7719f2d568bff180 +DIST git-2.3.10.tar.xz 3625052 SHA256 8d1eba6e4ad4ef57f87d25535956b5752c341f222407329025f8704537219ed8 SHA512 23cd192bf19be648377767c0b45e895e5284b5fc7558be566ce5f59516d94921212f4944daad5ab650c99c10a58628626bd3d8f23d3b4c9d0d3fa4ce17a8eb9f WHIRLPOOL f6ff0675e75ac0dad5af264f9bcb18d29b6e615d73b68ad97caf1efce353ddb96c51c8e3c6bb633e00a961b757e3bbf55a7a5e130f707696f81324ee8b16ba44 DIST git-2.3.8.tar.xz 3622512 SHA256 cb4d9228f63b7a9500d55383878bb4bbb60b80deb7ae1a5858c7103ba14de5a6 SHA512 bf693fbe7fc16a240470501af2a7736ebfdbf027c0cc8adbd601d2b1c98ec7d968959e06dd8a3d0e206dc351e83a161475191d59d76f9e2da3e13b4de8716fb4 WHIRLPOOL 93aa2d832e57181de25035952a566c9d3330105e277930f088eb10e2073120c296b6dd87375437c9e9b7880c9b56e2c0de0fda5f77f0da9d2f96840c2fe8eda8 DIST git-2.3.9.tar.xz 3622952 SHA256 90c2b4bc8cb081115d34269b2d061fb8c7961cf08406c345b278c43d7dcd25f7 SHA512 e02565b9b0176158418358a811735dde0e630adae1cc8401a3a578fdce69efb6d8893815ee749820ade8b8aa0f3b8b42ff85322bf98dad55de77298eeca50510 WHIRLPOOL 451717d03304ba38f964801be909f0265b03adef8cacd62dd1bb1af34e1c6cc4caef064f784e34984cdb9f1f8f7e3f9b93ab67c116f63a1c9486b96a5bde3e91 +DIST git-2.4.10.tar.xz 3695176 SHA256 b631b2b26f5593833a29cd833b8071b4eaf7b212fba180e587b526f51c2331df SHA512 08f7f63fd4820f155aec08373fd4f5abbe5a4c8f98a73a824897ba68901fb274b4cf47b8751cd2bea358cbb9c09934f7857aa440de69b46ee88a4bba852f5ced WHIRLPOOL 3ec53b7355f1895c95b91e1fa85f185801acdb0317384099e4d7914208c3d762d536ed83e099c96a168d696e37e3f8a491459de59c7dd59dce9c49fb75af836b DIST git-2.4.6.tar.xz 3690432 SHA256 bdd944571c03474517b6c9941d6f1fd735eccbb164e59fd133d38644b69453b6 SHA512 2c95a00af81d6fbd8f4984e89d7cb23396caacadd684466aeb5a11f1b3acfbc625f832060cbef5aee0748e36c1fddcd88b3b9c26c4d7aec1d185e5f7311346ef WHIRLPOOL 1ae191666bf27a7e18686b910cbe610f85b5b7a43266232359615fa2a22b80bc659277b71b21394eab53df0c912d9ad911c7793c2a041cd6c7d768a5f0416f5b DIST git-2.4.9.tar.xz 3692824 SHA256 0f5fba41639d3224fee02f40393e2053ee9468fa7b88d64c5b97f7e65667bd2b SHA512 d5df1f725d5af8449e091ee50f6c4371c2b1699d80d499321a751ecf6c61d75c6c3a286ea60661ae1608bf92c94e2c8977ad08731e153830bd5c5b4587d8ba82 WHIRLPOOL a670eeb5abbcf844324b2444d87ecc9eb8c2899d6f37da6aef9f27edbe53d90086907642aac14536396b61d4520cd4e7b77124f4d54cc7f9f9e5a769741e4d03 DIST git-2.5.3.tar.xz 3745096 SHA256 124d29d857a1282fd2111cf4a021f156e8bae917f455b4551b2aea87f0453a1a SHA512 ab73d67f76ec8a6350995c692eefa7ab60ae13590d5d7c2fbd3ec1105a8d435ec1b156106fd6c3d6b51080a27f3ebd66bbf0a85042b697bc835143d9f625474e WHIRLPOOL e0c0fde0b263fd4847c21353ec81449baf6f1d5631aed4fdaa41dab2665159b528d7c477dacaef4efb2786ecaf3c0bd44ef3a589765543eee9726e70c5207d66 +DIST git-2.5.4.tar.xz 3747552 SHA256 e08d2d384e1c8c474d336c3583ed5cd396c76455155a4e65bfa97699fc38472a SHA512 25964bc59301b11994c94bab618613bc87ef788d356af55a26c77861a939f2b67cf37be98199e81d5c2a63e8d9c043b4fc6fb481316cc4d8bb6a1f382eddf33e WHIRLPOOL e62efd86c5e0d1b040816978cc28a41d00a7c095513482b0df1d4addc87bd89ce20dbb1b77e3ec3d9bd0722de3237e451b05f687fdb6419fa419708921049222 DIST git-2.6.0.tar.xz 3808872 SHA256 211beb96ff41a83727e39704431ac388ecb1cebb5219cda067999bce4e1e15a6 SHA512 efcde5fa3ac56d577e25259e74f19026438ccf8888b79429eec2f141bb2a63bb83e73f65b1ea96bcc1f9f894fb90ec1b5ea81b9f0c1806d25352f6b266e7202a WHIRLPOOL de703ba5d4024a6205bb795330b1ed06c70b01fad311739c59d837e7b2c7cad27bfbcd7cae0ac18378a8baa9d0fc0a5341665c312d7749cbb488b14456745ad1 +DIST git-2.6.1.tar.xz 3811268 SHA256 fc7c727745d5eb0d796a16dc7c4b999c184830110e0aeb592c788597cc8e9ccd SHA512 55516aeaa73baf180135a0812bfcb35e26699db034688049a11b4ec98faa6c23582e78a1a72a87332116bb88a2d7e9565ccc7891de883b82ad7524ee2809a25e WHIRLPOOL d25217692cd428fa1d436fa16e8b7d8996377fe4af1a0b4ea29faf8ed85115c7a3fcfe359949ebfbfdac1630f5af43cb894d26d31f7e0984dfab422d6651a2ae DIST git-htmldocs-1.8.5.6.tar.gz 2242475 SHA256 7c8e955d0798686fa030ba7b7b384a2eab2b74d5bd695d82faecac2e247bd211 SHA512 c9b2752bcdd7f8f817b14e99ab2743d153e3e7549bffb2aa98999e46d1e965d045850ec6a3e9f6bc83e6e4820ce20f281c33f946ebd2be16d275b85a5ddaee36 WHIRLPOOL 7db3fb74e6b51618890acfef8fb89ab09adf653d3196e82624671194bdb2b564b903429ffecf68b28faf96ce3ebb83b534459738d48ace048d873c158621d31c DIST git-htmldocs-1.9.5.tar.gz 2262251 SHA256 4fa289e259d6b922a51d11a687203612aa1aad5696eb83b4e67c0de8a785700f SHA512 2df975c33d3411a97ab5a684b03998b7cd188d05bae6813c753fe2092b0acf463dec49a7a546d315f520fd9c71281da41998d0f36f64f48d4f95507a034a083b WHIRLPOOL edc252ce58b31f001c0d225f0b40b3689028bd34b1cbbdd889d645d37a2931e9039f76f12e5a0f918579a0b9c5dd1f3171af2bb58ee42972411ca33ec0ebe8f2 DIST git-htmldocs-2.0.5.tar.xz 944792 SHA256 90eaf745d6ee197718fdde9c98919918ad1e4e3576608e4522b84c612cd9ef2a SHA512 e9b3d92d466762c9c7e164e9c30ff0046b262bf4707ea057e3a682f7b15a4f8149a9aaf2630f117dc3b508744cd688c6c0087cc94ff3477e7f3b85513160d7f3 WHIRLPOOL 35970d099304a5ab174fc93f8496a0c651a259dcaa3d23a2dd0233f8db214ae94a26e28044a87460d4654e61440427d331ceeac290335d6ae3fcf0423175bba9 DIST git-htmldocs-2.1.4.tar.xz 959144 SHA256 7665daecd77c2f9be8b316eb69a1fda3f383f759e71d346a137c8cf39501d886 SHA512 7734d671ab6ca8374f54546b0987821d0c66d136d50f9cbb1ff7c06da25330e46a10ede41d10a60c80847afa68999298c2f90dfe99d51bd862590f02344e1cbd WHIRLPOOL 97326a00a1f613cf95dbeaf8938842855299d21e6963e2040b3bf9ee02a745c8156ea552e2b87248a98d5f0ecd6560a546a4a49b6635ca034ff2e92504bbb00a DIST git-htmldocs-2.2.3.tar.xz 976124 SHA256 1e979c86d5447a4a4965de6a1a532e30ae6337e886a2d8fc61749806b2bf024d SHA512 3fe7f70b1ea4bbd60d64928802de1ea4eb35a305cbd243933876d89dfe05901cea71e3811bedb28e8ac0f0f1409afbf31884a78a8be0648b3666a0c7fcee8212 WHIRLPOOL b5348b121b9e3a11fe120ed8a379b99bba42711ea185aaf956c58d92fe3cb96969e0b60cb7c483cc5e39711a965b6a7eaa0b931477229faffff8e3326d5bf0aa +DIST git-htmldocs-2.3.10.tar.xz 988072 SHA256 628ef79383039db857aab6ad4cb627573104e618461c2c6ee58fa39a3512d115 SHA512 cd8b050979cc13aab6e9b74d7a8042f33decaea639a1fc57ea4a5839563202fecfda95295e38404a825c05d393458aebf592bfd9b0c75eae44638a2bc9e33535 WHIRLPOOL a21430705753b533ba03696b80fb210fec4b8869821cbd940d3881c080f12816d161c05d8e483764d79c337ce7fe93f741b6a3b35afe2cc69bd9e4d7a1c8de51 DIST git-htmldocs-2.3.8.tar.xz 987840 SHA256 54b8d98e34bceeac906ffa8b7c93e8a2cd2cf3c7f4d0c0334e9d5e0c704ca23f SHA512 7aa72d55a6a2687a3ecb26f9db76f69e4003c87864b8239068b029a9d63f99a023bf76ec3ea60952ecf11608d2d684f4ad1b2ac76942cd44ec67bdf8f497330f WHIRLPOOL 60145b5a48a6780b0edb3a7ef50b3649193818e3aa8199de94dd9bf1cca110d7411902c8e7e3df881eec77aa59208780b60b946aeb5f13960de954af6fd88fbe DIST git-htmldocs-2.3.9.tar.xz 987824 SHA256 bd2921280fafca0ef051baf407aa561f80c2bf51c69115aa3cfd48d4b50ef9f9 SHA512 c239cfbd1601ec38bc37a95834d5840fdb83362ea6ca2f8c0f48a5b3f0beed73aef47736e1b5e65a77a4fe1aec3e1b48807437a600fb36c7b2553194f4824daa WHIRLPOOL fef5ce4447d10d6f116bb425d678af53f9e8c8a3238153d241afd6109647f04045c0bc4782afda63e3d43df89cc864dc3d7d01cddbf9a71de566d7cbc1508e7e +DIST git-htmldocs-2.4.10.tar.xz 996588 SHA256 f2c523ea114caac7c5cf51a20a420a215411762fabff2da9febfc2917af835ef SHA512 60fc5a2b6665ec7fc10680608b5689a24fa211fe7393f010a8099c6fb0a9582f20cebc7cad0653b62750677d79a80fcd6e8e96fb440acb3fc7c7c0ffc00779d3 WHIRLPOOL 30585753a7b08dfa812c74832d35168d3615d8bf71c3c853efb125348538b5fb7cc4b3f1cfef725082ade144b5362394991186967f6026cee8c91dd41e30290e DIST git-htmldocs-2.4.6.tar.xz 994712 SHA256 5213e8b882293ec3cda247dabbc75c6ee5243b9d330a8fafec004952fae91a88 SHA512 782fbc38a611380c0af2631bd6123d568b02159fb46159c763d97d75bd84debe43105d83ac3f321cd8383e1334806857bce1a48563fd0c19b43f527fe18615a8 WHIRLPOOL 170e4ecc8255e6d5d562274e6e3fb75c2fc62e415586d61498b680a076c74248664fca35bb7c532009f7f22be4ad14d1fe047e14791991fa32373bd7053e0396 DIST git-htmldocs-2.4.9.tar.xz 995724 SHA256 6000eb00fee2adc4d5a8fd8ace857049e6fb623aa7ec9087d983c29953319cd6 SHA512 42905ae5383e5f0444ec868a1d742bada31cf25eac582b95ab6e6334a3dfefd05d2e08a1c2f7c0354a841703cbac2c6dc25437ca9f681a5bb0a121dc94d2d938 WHIRLPOOL 9791ab122cf680f060d274c6a7bcdd1aaf0660f83ed4e91073fed1dd2f2b16e96e938fcbf04e03373768b8036e3f8dd0be54639f8d24bce59501c970e4225d73 DIST git-htmldocs-2.5.3.tar.xz 1009248 SHA256 f87465b5f6d01ceccb314b3e0a3749d642bea1007b0bc78afba868d75413d85e SHA512 7e5bcb85c270c740aa619d3cedd81e4f9bab989a8785512faab70cbd5029c021972b0574083272bed85324bf9372bf52f7b52827030133e09618731bf927f36f WHIRLPOOL f17c063c5b6e2a3cb7d25810b26f909bd09e281963e56029290c754b8f38bf7dba446405e96e4c49244db0bb60176b34852ac3f9a5b1d61c886eb90c2391efd8 +DIST git-htmldocs-2.5.4.tar.xz 1009820 SHA256 cb36b3b7198a3fa49f2677bba83f1e57a1a40250a181d9e86232cb8febcc8053 SHA512 af833635632ba5c65524bfef00f291a41fd37ba7bd9ca4b65b4c0eb9329b888d2e8757fe29f33bd25a75e1841d67a20dff49f43d35a502ef3b29599d073dcd6a WHIRLPOOL e5f55c3dbdf69d946295c5c19b95a79168d34645ced8e6a837ec8b5dd948008487288159f63a2f81a36fbdf3f413d3fdefd008b0157785df37431ccb9127284e DIST git-htmldocs-2.6.0.tar.xz 1016192 SHA256 0ba5d5d630e3235b74bcfb4ea2e9bbda8a3e619aaaf9e1f56e12dec5d8dc1d87 SHA512 11d17ee8fe6537efba323887ccb64fe9c905b293d3d06f4c0f0b3da4283a7ac5b5bf840055bb9f96d28121aecce074d86feebaa2a407291ec812246308aefa1e WHIRLPOOL 7e08864790a3e5c584e85acd6aca15bfddea846df9ca423c2dfe1332da2283b8fb9ee462639733f35e4842d27a895b59db0e29e3e4636d525131b47c2851b139 +DIST git-htmldocs-2.6.1.tar.xz 1016516 SHA256 791487ebd5a25456d41d8825ef450fdf3214898a328028d01acdb21a668052da SHA512 da0500da633deb185c59c45296ca9ffa631f0e1fc2e8bb5163b4c1913cc21610dc723aa415706e7433246b2604fa2e84222a25f97987f55a9d544d9c2ddac300 WHIRLPOOL 3f31ed5b0d7b78851fdc21c3e885ac34d2901381a9d845f534708b94040b3728ad58c47dae24d1a9ce8a5778d6cd9983815746f4a9c5eaca0ee4f2279da37cd6 DIST git-manpages-1.8.5.6.tar.gz 569061 SHA256 58ef7cb3121639b8d78e2e4c4f7f886bab57af9e9e137b10f372dfad573872c1 SHA512 a524a1c7e8bdc73ffe04bebb5c7050a18c8649b98714bf255c8e3c32a2443d8d5abf33e3ca2eb108d601f01e0bda50fed1e134ffdae87bcf6f551cbbd250c4ba WHIRLPOOL 2db62b96e972dbcbec1ac59d7244bf2c2ff7140c941d1d3c6b9062bd79b80541d7fa3982c5a3bc55a18fc9112ab3fa648966be5c3e1135ab7b5c89080bee82b6 DIST git-manpages-1.9.5.tar.gz 571625 SHA256 37cc735c4ced6574e8e93349d52d30372fc6f9fe3de3d6b9934a14857d6aade8 SHA512 e3df3e933fed6ff2845989a0146b28789452e9583bc19dd4a9ad335f64b15feffbdc4dd7cdb9d6b5216f7f85837318cf9b10df033f8022777f91c2b0894fb231 WHIRLPOOL e25d77fd8d9cacb92d45fd50640bc65189d02d7e23b276ccaf3b35ba1fe64ab0c49045d1fb8983b7b2b5bd996e767508446ac76506b074ded10feef1f9256918 DIST git-manpages-2.0.5.tar.xz 359000 SHA256 3cf1581da2a19c0651df445ee5f801e108619befe8965e01d61faa46ca57b642 SHA512 b3981565a34a203283801b86717386971ef53c2f5c47bdde290aa0df4d62045ecbcab1ff1b4d1d8ddf7d489e74d65b0208d87ace7ca8c8be9525be548e445425 WHIRLPOOL e8c78eb38cb3192455ccb991a4ce5cd3988d06f1f06cdf0722e4ce6fb1d4e57f618058cf07d312bcab4f5821a1b1dfc016c03626d4f3429d3e5ef089607a2801 DIST git-manpages-2.1.4.tar.xz 361252 SHA256 01070bc96e88231f6f279b031fed2919efea8b442fe724f37349ad951d010b04 SHA512 35fe0dd9e0fe9547362abc0e9c5b066abc13a4137b4ea62569fa5b1ae93831da0686e8783be946a9b87274fbc2322ef93425b9d3fc1257023176c772b21b79b2 WHIRLPOOL 9f199eb94657149b51cb20fb55878cb1cf83fa3741906ce37a66b0157df9ca4dae66754fe264019e6bd8e7d286040fec718b89ca4b40b803c059c46521a5cc61 DIST git-manpages-2.2.3.tar.xz 369884 SHA256 bf6a4b5ae1267a252b93079e9b7fec2dc6f0a179ac05b9d7f351d183d354164c SHA512 499493956b2a0634e3d5b4f3904a37b6dda1985ceb388eead4701365081605df6cc0c3db79e0aa0bf32d2fa201fd94201d66d5ee487fceaaa0fa4409a17eb6ad WHIRLPOOL 0abf61527dcf71ed0e6dfbccf67d77ecc674122765adca584e38aa70ba7103b8d6ac6173c0383c4c964acbd603391e687809457320640461bc29a336c4fe7932 +DIST git-manpages-2.3.10.tar.xz 371884 SHA256 dd7f92d9f23f6293c18a0859208b7f236e71e6fe09f041c98f8b4b9ee7f913ed SHA512 324d5541d331708f9e0407becc378f955a44423e526502b04ba665596c1803e966a65d60bad21ae43320fb5b9616d8150c3b23095f1f47dfaf94e8ce0e2ad31e WHIRLPOOL 41d6427b39b7c6e3c7e2d6d9997285806059ea746b81047083d3610ba661fbb51ebd100b68cb5ff2015b245a723a3f070e52ffb4bb38e2b9a132cee80ccebd3a DIST git-manpages-2.3.8.tar.xz 371528 SHA256 4d38de9decf80864480fcd5cc58783e3bff4e22383b281193acd82ffa3751fe2 SHA512 8c6aaf60e4b6505ae6789fa658ff15534cf5dfa51c03fdf47a624723b75a8448d71faa9f4ee61c5c243b775c4047dd2ffffc664b37e7f38b60c90fc56252ed93 WHIRLPOOL c6068de21f53e20ec17cd724059d91781e81abf617c2169c1099997afdeac371a59927d9db0b98c1f64c66b3de016b351b08a2f37a43038a924137f6f139a72e DIST git-manpages-2.3.9.tar.xz 371580 SHA256 132cd914bf57ab66d75a72001b6defa514181fab3f4555f8d6933a7efe987530 SHA512 76100ba16f2fb5dc2e85a49d46ba420c52920f38f7f1feb2589c2bdc76100929badd147324a0f563d0280724f06a95929caa8e85336987783493d3a02db0ed28 WHIRLPOOL 24f5279122b74da69f366e5aec35029b6322891b5c670067b2cfc76696257d1c9bc2e6d674f2b2d740d4a27a439b89c3186e8bc41cdc8912e29635c4b3575929 +DIST git-manpages-2.4.10.tar.xz 373968 SHA256 da712c07d84bb3da10be9fb56c15289c77828d3011179ab71f090e77e52a03d9 SHA512 d5a978109db70f3d50d02ad17c93229206f2d5a2dd3dd7e9fb266ca7b76b85ad92f63120df885b88b5a33fe1dce0686ae92fc50749cb3b6275cb48812eb031a9 WHIRLPOOL decb0b5bf81b25e4562f639e03c2b60b0c470338be0ac298f3d62deb54538de0961a81c6a8ced17ef5877df6de5c17b49fe96e77f00dd2038d2d1189c8f48e7c DIST git-manpages-2.4.6.tar.xz 373408 SHA256 f32d267bdaab75812dbd116d2b329d6dc7287a974e929e380e8cbf96e3822b8e SHA512 fa0562b8cc3e0421f7b45940f8cd4b58a5e58a1eb8571e2de85babf8ffd932fd210baa82aefe3c6090cb7dc51f64f299143be51beaacb37be97832b4a8e2a869 WHIRLPOOL 595beed93c621ffd9b7e0b507fc2941156975190eca8b638826ac32b6ea761bbb08f05e152dc88a7a3dbd168ab083a0128d61e72fae51cd0e94a8c91a1adb3ee DIST git-manpages-2.4.9.tar.xz 373644 SHA256 0adc425adb13d669fcc90fa28d5fff3e64d8c9feb49d0565ec031b7bddcc4e02 SHA512 0df6359b8119b023b2d375bba08539cad4c0718184c5027b99827490fc17bbcff5da227a9b13bbdb5a82a45567cb83984dab050faafea1b7939532397f6688a0 WHIRLPOOL 20b8e34bfa4c5c20cf92368676f3a98949ed8c12a9c5b90f7cd052387492afb0e1521bf328e4bff43c4e8aeff8784d88b79498e47bffd093bc751e49046034e9 DIST git-manpages-2.5.3.tar.xz 378000 SHA256 c5d8e9036be741924cf2614f0178a10f0c7d7b1d3efef96c1a08c751596cae3a SHA512 ed5a736b6ad22469ff7677434d046f331b0b4f7bbab8d14baa7a376bf44b384ffcc37ce1a99278d0fa69d8a058df21de1f8300a72cb2ad4b781543aac5100752 WHIRLPOOL f914d116e8aafd76a5decbfc945a6a3826814cda04d471716aeede4923eda79da61e809d888890b545b78811afd9b85c354540d9af06206e9402f1815c19e914 +DIST git-manpages-2.5.4.tar.xz 378296 SHA256 bdd8db3b8cd35d01b2631d1f3c1174e5bc1b62b3e0177ae1954d83743aa93ea9 SHA512 ccd675d8d9c117042083800fa4ae7a876a7873cf13844c92f731e46553d316a949d445c80e4b57824792a6b369623085053d25baeb4f8b79801b5849f06eb084 WHIRLPOOL a2149da3217826c1c4951aa0fa0900e388ea806511559d0e01c4e17a565470048e55e988b12e6da3d7b52b11d410d27b4da0cac4d2d88e3f6860f22664cd8ac9 DIST git-manpages-2.6.0.tar.xz 380940 SHA256 94c45cf2353f8e1bbb6b56b6f54289203319db4cc38d94f53fcfb8dc3b669615 SHA512 3173f77da6fab0f5ac5d46a206b18fe69083ee74288326af63bc3938fb359e16a0cf5490f71ea8b11ba54117871caff7b4022e698ecd328c028b27eebc711724 WHIRLPOOL c76454026f747a5e68c3a195b99471b2f012013ccd6b305a7ac4c396dd463476a8fff68017dc631198e2fc309c3f28a2373883b6b376166168e57ceff624dba5 +DIST git-manpages-2.6.1.tar.xz 381288 SHA256 e4cf64edcecd284d9ef4e6ca7fa0e8556d2414b5d9881a9abfe477f95b416391 SHA512 513a0692ef2b7db12c8eddcd69e6cb465d39138a5d7a6703458f262c8623fdf6324da64f434fef6f1bb7cf3705c9e17ed4555394a609aa4f8ae24c205dadc3a6 WHIRLPOOL 4a4058d6e0c6d0ccdf256b0e9faa31d49579a97f6268f7ae0cfcd0559152eb665e2d827295b3160f8e08c2a3240c3a0b2e51f6350a393a74ed64d3a4ebd473c8 diff --git a/dev-vcs/git/files/git-2.6.0-am_configure_gpg_at_startup.patch b/dev-vcs/git/files/git-2.6.0-am_configure_gpg_at_startup.patch new file mode 100644 index 000000000000..bc60708b1d25 --- /dev/null +++ b/dev-vcs/git/files/git-2.6.0-am_configure_gpg_at_startup.patch @@ -0,0 +1,52 @@ +From: Renee Margaret McConahy gmail.com> +Subject: [PATCH v2] am: configure gpg at startup +Newsgroups: gmane.comp.version-control.git +Date: 2015-09-30 17:49:44 GMT (5 days, 14 hours and 45 minutes ago) +The new builtin am ignores the user.signingkey variable: gpg is being +called with the committer details as the key ID, which may not be +correct. git_gpg_config is responsible for handling that variable and is +expected to be called on initialization by any modules that use gpg. + +Perhaps git_gpg_config's functionality ought to be merged into +git_default_config, but this is simpler and in keeping with the current +practice. + +Signed-off-by: Renee Margaret McConahy gmail.com> +--- + + builtin/am.c | 13 ++++++++++++- + 1 file changed, 12 insertions(+), 1 deletion(-) + +diff --git a/builtin/am.c b/builtin/am.c +index 4f77e07..3bd4fd7 100644 +--- a/builtin/am.c ++++ b/builtin/am.c + -2208,6 +2208,17 enum resume_mode { + RESUME_ABORT + }; + ++static int git_am_config(const char *k, const char *v, void *cb) ++{ ++ int status; ++ ++ status = git_gpg_config(k, v, NULL); ++ if (status) ++ return status; ++ ++ return git_default_config(k, v, NULL); ++} ++ + int cmd_am(int argc, const char **argv, const char *prefix) + { + struct am_state state; + -2308,7 +2319,7 int cmd_am(int argc, const char **argv, const char *prefix) + OPT_END() + }; + +- git_config(git_default_config, NULL); ++ git_config(git_am_config, NULL); + + am_state_init(&state, git_path("rebase-apply")); + +-- +2.5.3 diff --git a/dev-vcs/git/git-2.3.10.ebuild b/dev-vcs/git/git-2.3.10.ebuild new file mode 100644 index 000000000000..552e9597982c --- /dev/null +++ b/dev-vcs/git/git-2.3.10.ebuild @@ -0,0 +1,636 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +GENTOO_DEPEND_ON_PERL=no + +# bug #329479: git-remote-testgit is not multiple-version aware +PYTHON_COMPAT=( python2_7 ) +[[ ${PV} == *9999 ]] && SCM="git-2" +EGIT_REPO_URI="git://git.kernel.org/pub/scm/git/git.git" +EGIT_MASTER=pu + +inherit toolchain-funcs eutils elisp-common perl-module bash-completion-r1 python-single-r1 systemd ${SCM} + +MY_PV="${PV/_rc/.rc}" +MY_P="${PN}-${MY_PV}" + +DOC_VER=${MY_PV} + +DESCRIPTION="GIT - the stupid content tracker, the revision control system heavily used by the Linux kernel team" +HOMEPAGE="http://www.git-scm.com/" +if [[ ${PV} != *9999 ]]; then + SRC_URI_SUFFIX="xz" + SRC_URI_GOOG="https://git-core.googlecode.com/files" + SRC_URI_KORG="mirror://kernel/software/scm/git" + SRC_URI="${SRC_URI_GOOG}/${MY_P}.tar.${SRC_URI_SUFFIX} + ${SRC_URI_KORG}/${MY_P}.tar.${SRC_URI_SUFFIX} + ${SRC_URI_GOOG}/${PN}-manpages-${DOC_VER}.tar.${SRC_URI_SUFFIX} + ${SRC_URI_KORG}/${PN}-manpages-${DOC_VER}.tar.${SRC_URI_SUFFIX} + doc? ( + ${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} + ${SRC_URI_GOOG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} + )" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +fi + +LICENSE="GPL-2" +SLOT="0" +IUSE="+blksha1 +curl cgi doc emacs gnome-keyring +gpg gtk highlight +iconv mediawiki +nls +pcre +perl +python ppcsha1 tk +threads +webdav xinetd cvs subversion test" + +# Common to both DEPEND and RDEPEND +CDEPEND=" + dev-libs/openssl:0= + sys-libs/zlib + pcre? ( dev-libs/libpcre ) + perl? ( dev-lang/perl:=[-build(-)] ) + tk? ( dev-lang/tk:0= ) + curl? ( + net-misc/curl + webdav? ( dev-libs/expat ) + ) + emacs? ( virtual/emacs ) + gnome-keyring? ( gnome-base/libgnome-keyring )" + +RDEPEND="${CDEPEND} + gpg? ( app-crypt/gnupg ) + mediawiki? ( + dev-perl/HTML-Tree + dev-perl/MediaWiki-API + ) + perl? ( dev-perl/Error + dev-perl/Net-SMTP-SSL + dev-perl/Authen-SASL + cgi? ( dev-perl/CGI highlight? ( app-text/highlight ) ) + cvs? ( >=dev-vcs/cvsps-2.1:0 dev-perl/DBI dev-perl/DBD-SQLite ) + subversion? ( dev-vcs/subversion[-dso,perl] dev-perl/libwww-perl dev-perl/TermReadKey ) + ) + python? ( gtk? + ( + >=dev-python/pygtk-2.8[${PYTHON_USEDEP}] + >=dev-python/pygtksourceview-2.10.1-r1:2[${PYTHON_USEDEP}] + ) + ${PYTHON_DEPS} )" + +# This is how info docs are created with Git: +# .txt/asciidoc --(asciidoc)---------> .xml/docbook +# .xml/docbook --(docbook2texi.pl)--> .texi +# .texi --(makeinfo)---------> .info +DEPEND="${CDEPEND} + doc? ( + app-text/asciidoc + app-text/docbook2X + sys-apps/texinfo + app-text/xmlto + ) + nls? ( sys-devel/gettext ) + test? ( app-crypt/gnupg )" + +# Live ebuild builds man pages and HTML docs, additionally +if [[ ${PV} == *9999 ]]; then + DEPEND="${DEPEND} + app-text/asciidoc" +fi + +SITEFILE=50${PN}-gentoo.el +S="${WORKDIR}/${MY_P}" + +REQUIRED_USE=" + cgi? ( perl ) + cvs? ( perl ) + mediawiki? ( perl ) + subversion? ( perl ) + webdav? ( curl ) + gtk? ( python ) + python? ( ${PYTHON_REQUIRED_USE} ) +" + +pkg_setup() { + if use subversion && has_version "dev-vcs/subversion[dso]"; then + ewarn "Per Gentoo bugs #223747, #238586, when subversion is built" + ewarn "with USE=dso, there may be weird crashes in git-svn. You" + ewarn "have been warned." + fi + if use python ; then + python-single-r1_pkg_setup + fi +} + +# This is needed because for some obscure reasons future calls to make don't +# pick up these exports if we export them in src_unpack() +exportmakeopts() { + local myopts + + if use blksha1 ; then + myopts+=" BLK_SHA1=YesPlease" + elif use ppcsha1 ; then + myopts+=" PPC_SHA1=YesPlease" + fi + + if use curl ; then + use webdav || myopts+=" NO_EXPAT=YesPlease" + else + myopts+=" NO_CURL=YesPlease" + fi + + # broken assumptions, because of broken build system ... + myopts+=" NO_FINK=YesPlease NO_DARWIN_PORTS=YesPlease" + myopts+=" INSTALL=install TAR=tar" + myopts+=" SHELL_PATH=${EPREFIX}/bin/sh" + myopts+=" SANE_TOOL_PATH=" + myopts+=" OLD_ICONV=" + myopts+=" NO_EXTERNAL_GREP=" + + # For svn-fe + extlibs="-lz -lssl ${S}/xdiff/lib.a $(usex threads -lpthread '')" + + # can't define this to null, since the entire makefile depends on it + sed -i -e '/\/usr\/local/s/BASIC_/#BASIC_/' Makefile + + use iconv \ + || myopts+=" NO_ICONV=YesPlease" + use nls \ + || myopts+=" NO_GETTEXT=YesPlease" + use tk \ + || myopts+=" NO_TCLTK=YesPlease" + use pcre \ + && myopts+=" USE_LIBPCRE=yes" \ + && extlibs+=" -lpcre" + use perl \ + && myopts+=" INSTALLDIRS=vendor" \ + || myopts+=" NO_PERL=YesPlease" + use python \ + || myopts+=" NO_PYTHON=YesPlease" + use subversion \ + || myopts+=" NO_SVN_TESTS=YesPlease" + use threads \ + && myopts+=" THREADED_DELTA_SEARCH=YesPlease" \ + || myopts+=" NO_PTHREADS=YesPlease" + use cvs \ + || myopts+=" NO_CVS=YesPlease" +# Disabled until ~m68k-mint can be keyworded again +# if [[ ${CHOST} == *-mint* ]] ; then +# myopts+=" NO_MMAP=YesPlease" +# myopts+=" NO_IPV6=YesPlease" +# myopts+=" NO_STRLCPY=YesPlease" +# myopts+=" NO_MEMMEM=YesPlease" +# myopts+=" NO_MKDTEMP=YesPlease" +# myopts+=" NO_MKSTEMPS=YesPlease" +# fi + if [[ ${CHOST} == ia64-*-hpux* ]]; then + myopts+=" NO_NSEC=YesPlease" + fi + if [[ ${CHOST} == *-*-aix* ]]; then + myopts+=" NO_FNMATCH_CASEFOLD=YesPlease" + fi + if [[ ${CHOST} == *-solaris* ]]; then + myopts+=" NEEDS_LIBICONV=YesPlease" + fi + + has_version '>=app-text/asciidoc-8.0' \ + && myopts+=" ASCIIDOC8=YesPlease" + myopts+=" ASCIIDOC_NO_ROFF=YesPlease" + + # Bug 290465: + # builtin-fetch-pack.c:816: error: 'struct stat' has no member named 'st_mtim' + [[ "${CHOST}" == *-uclibc* ]] && \ + myopts+=" NO_NSEC=YesPlease" + + export MY_MAKEOPTS="${myopts}" + export EXTLIBS="${extlibs}" +} + +src_unpack() { + if [[ ${PV} != *9999 ]]; then + unpack ${MY_P}.tar.${SRC_URI_SUFFIX} + cd "${S}" + unpack ${PN}-manpages-${DOC_VER}.tar.${SRC_URI_SUFFIX} + use doc && \ + cd "${S}"/Documentation && \ + unpack ${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} + cd "${S}" + else + git-2_src_unpack + cd "${S}" + #cp "${FILESDIR}"/GIT-VERSION-GEN . + fi + +} + +src_prepare() { + # bug #350330 - automagic CVS when we don't want it is bad. + epatch "${FILESDIR}"/git-2.2.2-optional-cvs.patch + + # install mediawiki perl modules also in vendor_dir + # hack, needs better upstream solution + epatch "${FILESDIR}"/git-1.8.5-mw-vendor.patch + + epatch "${FILESDIR}"/git-2.2.0-svn-fe-linking.patch + + epatch_user + + sed -i \ + -e 's:^\(CFLAGS[[:space:]]*=\).*$:\1 $(OPTCFLAGS) -Wall:' \ + -e 's:^\(LDFLAGS[[:space:]]*=\).*$:\1 $(OPTLDFLAGS):' \ + -e 's:^\(CC[[:space:]]* =\).*$:\1$(OPTCC):' \ + -e 's:^\(AR[[:space:]]* =\).*$:\1$(OPTAR):' \ + -e "s:\(PYTHON_PATH[[:space:]]\+=[[:space:]]\+\)\(.*\)$:\1${EPREFIX}\2:" \ + -e "s:\(PERL_PATH[[:space:]]\+=[[:space:]]\+\)\(.*\)$:\1${EPREFIX}\2:" \ + Makefile contrib/svn-fe/Makefile || die "sed failed" + + # Never install the private copy of Error.pm (bug #296310) + sed -i \ + -e '/private-Error.pm/s,^,#,' \ + perl/Makefile.PL + + # Fix docbook2texi command + sed -r -i 's/DOCBOOK2X_TEXI[[:space:]]*=[[:space:]]*docbook2x-texi/DOCBOOK2X_TEXI = docbook2texi.pl/' \ + Documentation/Makefile || die "sed failed" + + # Fix git-subtree missing DESTDIR + sed -i \ + -e '/$(INSTALL)/s/ $(libexecdir)/ $(DESTDIR)$(libexecdir)/g' \ + -e '/$(INSTALL)/s/ $(man1dir)/ $(DESTDIR)$(man1dir)/g' \ + contrib/subtree/Makefile +} + +git_emake() { + # bug #326625: PERL_PATH, PERL_MM_OPT + # bug #320647: PYTHON_PATH + PYTHON_PATH="" + use python && PYTHON_PATH="${PYTHON}" + emake ${MY_MAKEOPTS} \ + DESTDIR="${D}" \ + OPTCFLAGS="${CFLAGS}" \ + OPTLDFLAGS="${LDFLAGS}" \ + OPTCC="$(tc-getCC)" \ + OPTAR="$(tc-getAR)" \ + prefix="${EPREFIX}"/usr \ + htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \ + sysconfdir="${EPREFIX}"/etc \ + PYTHON_PATH="${PYTHON_PATH}" \ + PERL_MM_OPT="" \ + GIT_TEST_OPTS="--no-color" \ + V=1 \ + "$@" + # This is the fix for bug #326625, but it also causes breakage, see bug + # #352693. + # PERL_PATH="${EPREFIX}/usr/bin/env perl" \ +} + +src_configure() { + exportmakeopts +} + +src_compile() { + if use perl ; then + git_emake perl/PM.stamp || die "emake perl/PM.stamp failed" + git_emake perl/perl.mak || die "emake perl/perl.mak failed" + fi + git_emake || die "emake failed" + + if use emacs ; then + elisp-compile contrib/emacs/git{,-blame}.el + fi + + if use perl && use cgi ; then + git_emake \ + gitweb/gitweb.cgi \ + || die "emake gitweb/gitweb.cgi failed" + fi + + if [[ ${CHOST} == *-darwin* ]]; then + cd "${S}"/contrib/credential/osxkeychain || die "cd credential/osxkeychain" + git_emake || die "emake credential-osxkeychain" + fi + + cd "${S}"/Documentation + if [[ ${PV} == *9999 ]] ; then + git_emake man \ + || die "emake man failed" + if use doc ; then + git_emake info html \ + || die "emake info html failed" + fi + else + if use doc ; then + git_emake info \ + || die "emake info html failed" + fi + fi + + if use subversion ; then + cd "${S}"/contrib/svn-fe + # by defining EXTLIBS we override the detection for libintl and + # libiconv, bug #516168 + local nlsiconv= + use nls && use !elibc_glibc && nlsiconv+=" -lintl" + use iconv && use !elibc_glibc && nlsiconv+=" -liconv" + git_emake EXTLIBS="${EXTLIBS} ${nlsiconv}" || die "emake svn-fe failed" + if use doc ; then + git_emake svn-fe.{1,html} || die "emake svn-fe.1 svn-fe.html failed" + fi + cd "${S}" + fi + + if use gnome-keyring ; then + cd "${S}"/contrib/credential/gnome-keyring + git_emake || die "emake git-credential-gnome-keyring failed" + fi + + cd "${S}"/contrib/subtree + git_emake + use doc && git_emake doc + + if use mediawiki ; then + cd "${S}"/contrib/mw-to-git + git_emake + fi +} + +src_install() { + git_emake \ + install || \ + die "make install failed" + + if [[ ${CHOST} == *-darwin* ]]; then + dobin contrib/credential/osxkeychain/git-credential-osxkeychain + fi + + # Depending on the tarball and manual rebuild of the documentation, the + # manpages may exist in either OR both of these directories. + find man?/*.[157] >/dev/null 2>&1 && doman man?/*.[157] + find Documentation/*.[157] >/dev/null 2>&1 && doman Documentation/*.[157] + + dodoc README Documentation/{SubmittingPatches,CodingGuidelines} + use doc && dodir /usr/share/doc/${PF}/html + for d in / /howto/ /technical/ ; do + docinto ${d} + dodoc Documentation${d}*.txt + use doc && dohtml -p ${d} Documentation${d}*.html + done + docinto / + # Upstream does not ship this pre-built :-( + use doc && doinfo Documentation/{git,gitman}.info + + newbashcomp contrib/completion/git-completion.bash ${PN} + bashcomp_alias git gitk + # Not really a bash-completion file (bug #477920) + # but still needed uncompressed (bug #507480) + insinto /usr/share/${PN} + doins contrib/completion/git-prompt.sh + + if use emacs ; then + elisp-install ${PN} contrib/emacs/git.{el,elc} + elisp-install ${PN} contrib/emacs/git-blame.{el,elc} + #elisp-install ${PN}/compat contrib/emacs/vc-git.{el,elc} + # don't add automatically to the load-path, so the sitefile + # can do a conditional loading + touch "${ED}${SITELISP}/${PN}/compat/.nosearch" + elisp-site-file-install "${FILESDIR}"/${SITEFILE} + fi + + if use python && use gtk ; then + python_doscript "${S}"/contrib/gitview/gitview + dodoc "${S}"/contrib/gitview/gitview.txt + fi + + #dobin contrib/fast-import/git-p4 # Moved upstream + #dodoc contrib/fast-import/git-p4.txt # Moved upstream + newbin contrib/fast-import/import-tars.perl import-tars + exeinto /usr/libexec/git-core/ + newexe contrib/git-resurrect.sh git-resurrect + + # git-subtree + cd "${S}"/contrib/subtree + git_emake install || die "Failed to emake install git-subtree" + if use doc ; then + git_emake install-man install-doc || die "Failed to emake install-doc install-mangit-subtree" + fi + newdoc README README.git-subtree + dodoc git-subtree.txt + cd "${S}" + + if use mediawiki ; then + cd "${S}"/contrib/mw-to-git + git_emake install + cd "${S}" + fi + + # diff-highlight + dobin contrib/diff-highlight/diff-highlight + newdoc contrib/diff-highlight/README README.diff-highlight + + # git-jump + exeinto /usr/libexec/git-core/ + doexe contrib/git-jump/git-jump + newdoc contrib/git-jump/README git-jump.txt + + # git-contacts + exeinto /usr/libexec/git-core/ + doexe contrib/contacts/git-contacts + dodoc contrib/contacts/git-contacts.txt + + if use gnome-keyring ; then + cd "${S}"/contrib/credential/gnome-keyring + dobin git-credential-gnome-keyring + fi + + if use subversion ; then + cd "${S}"/contrib/svn-fe + dobin svn-fe + dodoc svn-fe.txt + use doc && doman svn-fe.1 && dohtml svn-fe.html + cd "${S}" + fi + + dodir /usr/share/${PN}/contrib + # The following are excluded: + # completion - installed above + # credential/gnome-keyring TODO + # diff-highlight - done above + # emacs - installed above + # examples - these are stuff that is not used in Git anymore actually + # git-jump - done above + # gitview - installed above + # p4import - excluded because fast-import has a better one + # patches - stuff the Git guys made to go upstream to other places + # persistent-https - TODO + # mw-to-git - TODO + # subtree - build seperately + # svnimport - use git-svn + # thunderbird-patch-inline - fixes thunderbird + for i in \ + buildsystems convert-objects fast-import \ + hg-to-git hooks remotes2config.sh rerere-train.sh \ + stats workdir \ + ; do + cp -rf \ + "${S}"/contrib/${i} \ + "${ED}"/usr/share/${PN}/contrib \ + || die "Failed contrib ${i}" + done + + if use perl && use cgi ; then + # We used to install in /usr/share/${PN}/gitweb + # but upstream installs in /usr/share/gitweb + # so we will install a symlink and use their location for compat with other + # distros + dosym /usr/share/gitweb /usr/share/${PN}/gitweb + + # INSTALL discusses configuration issues, not just installation + docinto / + newdoc "${S}"/gitweb/INSTALL INSTALL.gitweb + newdoc "${S}"/gitweb/README README.gitweb + + find "${ED}"/usr/lib64/perl5/ \ + -name .packlist \ + -exec rm \{\} \; + else + rm -rf "${ED}"/usr/share/gitweb + fi + + if ! use subversion ; then + rm -f "${ED}"/usr/libexec/git-core/git-svn \ + "${ED}"/usr/share/man/man1/git-svn.1* + fi + + if use xinetd ; then + insinto /etc/xinetd.d + newins "${FILESDIR}"/git-daemon.xinetd git-daemon + fi + + if use !prefix ; then + newinitd "${FILESDIR}"/git-daemon-r1.initd git-daemon + newconfd "${FILESDIR}"/git-daemon.confd git-daemon + systemd_newunit "${FILESDIR}/git-daemon_at.service" "git-daemon@.service" + systemd_dounit "${FILESDIR}/git-daemon.socket" + fi + + perl_delete_localpod +} + +src_test() { + local disabled="" #t7004-tag.sh" #520270 + local tests_cvs="t9200-git-cvsexportcommit.sh \ + t9400-git-cvsserver-server.sh \ + t9401-git-cvsserver-crlf.sh \ + t9402-git-cvsserver-refs.sh \ + t9600-cvsimport.sh \ + t9601-cvsimport-vendor-branch.sh \ + t9602-cvsimport-branches-tags.sh \ + t9603-cvsimport-patchsets.sh \ + t9604-cvsimport-timestamps.sh" + local tests_perl="t3701-add-interactive.sh \ + t5502-quickfetch.sh \ + t5512-ls-remote.sh \ + t5520-pull.sh \ + t7106-reset-unborn-branch.sh \ + t7501-commit.sh" + # Bug #225601 - t0004 is not suitable for root perm + # Bug #219839 - t1004 is not suitable for root perm + # t0001-init.sh - check for init notices EPERM* fails + local tests_nonroot="t0001-init.sh \ + t0004-unwritable.sh \ + t0070-fundamental.sh \ + t1004-read-tree-m-u-wf.sh \ + t3700-add.sh \ + t7300-clean.sh" + # t9100 still fails with symlinks in SVN 1.7 + local test_svn="t9100-git-svn-basic.sh" + + # Unzip is used only for the testcase code, not by any normal parts of Git. + if ! has_version app-arch/unzip ; then + einfo "Disabling tar-tree tests" + disabled="${disabled} t5000-tar-tree.sh" + fi + + cvs=0 + use cvs && let cvs=$cvs+1 + if [[ ${EUID} -eq 0 ]]; then + if [[ $cvs -eq 1 ]]; then + ewarn "Skipping CVS tests because CVS does not work as root!" + ewarn "You should retest with FEATURES=userpriv!" + disabled="${disabled} ${tests_cvs}" + fi + einfo "Skipping other tests that require being non-root" + disabled="${disabled} ${tests_nonroot}" + else + [[ $cvs -gt 0 ]] && \ + has_version dev-vcs/cvs && \ + let cvs=$cvs+1 + [[ $cvs -gt 1 ]] && \ + has_version "dev-vcs/cvs[server]" && \ + let cvs=$cvs+1 + if [[ $cvs -lt 3 ]]; then + einfo "Disabling CVS tests (needs dev-vcs/cvs[USE=server])" + disabled="${disabled} ${tests_cvs}" + fi + fi + + if ! use perl ; then + einfo "Disabling tests that need Perl" + disabled="${disabled} ${tests_perl}" + fi + + einfo "Disabling tests that fail with SVN 1.7" + disabled="${disabled} ${test_svn}" + + # Reset all previously disabled tests + cd "${S}/t" + for i in *.sh.DISABLED ; do + [[ -f "${i}" ]] && mv -f "${i}" "${i%.DISABLED}" + done + einfo "Disabled tests:" + for i in ${disabled} ; do + [[ -f "${i}" ]] && mv -f "${i}" "${i}.DISABLED" && einfo "Disabled $i" + done + + # Avoid the test system removing the results because we want them ourselves + sed -e '/^[[:space:]]*$(MAKE) clean/s,^,#,g' \ + -i "${S}"/t/Makefile + + # Clean old results first, must always run + cd "${S}/t" + nonfatal git_emake clean + + # Now run the tests, keep going if we hit an error, and don't terminate on + # failure + cd "${S}" + einfo "Start test run" + #MAKEOPTS=-j1 + nonfatal git_emake --keep-going test + rc=$? + + # Display nice results, now print the results + cd "${S}/t" + nonfatal git_emake aggregate-results + + # And bail if there was a problem + [ $rc -eq 0 ] || die "tests failed. Please file a bug." +} + +showpkgdeps() { + local pkg=$1 + shift + elog " $(printf "%-17s:" ${pkg}) ${@}" +} + +pkg_postinst() { + use emacs && elisp-site-regen + einfo "Please read /usr/share/bash-completion/git for Git bash command completion" + einfo "Please read /usr/share/git/git-prompt.sh for Git bash prompt" + einfo "Note that the prompt bash code is now in that separate script" + elog "These additional scripts need some dependencies:" + echo + showpkgdeps git-quiltimport "dev-util/quilt" + showpkgdeps git-instaweb \ + "|| ( www-servers/lighttpd www-servers/apache www-servers/nginx )" + echo +} + +pkg_postrm() { + use emacs && elisp-site-regen +} diff --git a/dev-vcs/git/git-2.4.10.ebuild b/dev-vcs/git/git-2.4.10.ebuild new file mode 100644 index 000000000000..352b93a6807b --- /dev/null +++ b/dev-vcs/git/git-2.4.10.ebuild @@ -0,0 +1,636 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +GENTOO_DEPEND_ON_PERL=no + +# bug #329479: git-remote-testgit is not multiple-version aware +PYTHON_COMPAT=( python2_7 ) +[[ ${PV} == *9999 ]] && SCM="git-2" +EGIT_REPO_URI="git://git.kernel.org/pub/scm/git/git.git" +EGIT_MASTER=pu + +inherit toolchain-funcs eutils elisp-common perl-module bash-completion-r1 python-single-r1 systemd ${SCM} + +MY_PV="${PV/_rc/.rc}" +MY_P="${PN}-${MY_PV}" + +DOC_VER=${MY_PV} + +DESCRIPTION="GIT - the stupid content tracker, the revision control system heavily used by the Linux kernel team" +HOMEPAGE="http://www.git-scm.com/" +if [[ ${PV} != *9999 ]]; then + SRC_URI_SUFFIX="xz" + SRC_URI_GOOG="https://git-core.googlecode.com/files" + SRC_URI_KORG="mirror://kernel/software/scm/git" + SRC_URI="${SRC_URI_GOOG}/${MY_P}.tar.${SRC_URI_SUFFIX} + ${SRC_URI_KORG}/${MY_P}.tar.${SRC_URI_SUFFIX} + ${SRC_URI_GOOG}/${PN}-manpages-${DOC_VER}.tar.${SRC_URI_SUFFIX} + ${SRC_URI_KORG}/${PN}-manpages-${DOC_VER}.tar.${SRC_URI_SUFFIX} + doc? ( + ${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} + ${SRC_URI_GOOG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} + )" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +fi + +LICENSE="GPL-2" +SLOT="0" +IUSE="+blksha1 +curl cgi doc emacs gnome-keyring +gpg gtk highlight +iconv mediawiki +nls +pcre +perl +python ppcsha1 tk +threads +webdav xinetd cvs subversion test" + +# Common to both DEPEND and RDEPEND +CDEPEND=" + dev-libs/openssl:0= + sys-libs/zlib + pcre? ( dev-libs/libpcre ) + perl? ( dev-lang/perl:=[-build(-)] ) + tk? ( dev-lang/tk:0= ) + curl? ( + net-misc/curl + webdav? ( dev-libs/expat ) + ) + emacs? ( virtual/emacs ) + gnome-keyring? ( gnome-base/libgnome-keyring )" + +RDEPEND="${CDEPEND} + gpg? ( app-crypt/gnupg ) + mediawiki? ( + dev-perl/HTML-Tree + dev-perl/MediaWiki-API + ) + perl? ( dev-perl/Error + dev-perl/Net-SMTP-SSL + dev-perl/Authen-SASL + cgi? ( dev-perl/CGI highlight? ( app-text/highlight ) ) + cvs? ( >=dev-vcs/cvsps-2.1:0 dev-perl/DBI dev-perl/DBD-SQLite ) + subversion? ( dev-vcs/subversion[-dso,perl] dev-perl/libwww-perl dev-perl/TermReadKey ) + ) + python? ( gtk? + ( + >=dev-python/pygtk-2.8[${PYTHON_USEDEP}] + >=dev-python/pygtksourceview-2.10.1-r1:2[${PYTHON_USEDEP}] + ) + ${PYTHON_DEPS} )" + +# This is how info docs are created with Git: +# .txt/asciidoc --(asciidoc)---------> .xml/docbook +# .xml/docbook --(docbook2texi.pl)--> .texi +# .texi --(makeinfo)---------> .info +DEPEND="${CDEPEND} + doc? ( + app-text/asciidoc + app-text/docbook2X + sys-apps/texinfo + app-text/xmlto + ) + nls? ( sys-devel/gettext ) + test? ( app-crypt/gnupg )" + +# Live ebuild builds man pages and HTML docs, additionally +if [[ ${PV} == *9999 ]]; then + DEPEND="${DEPEND} + app-text/asciidoc" +fi + +SITEFILE=50${PN}-gentoo.el +S="${WORKDIR}/${MY_P}" + +REQUIRED_USE=" + cgi? ( perl ) + cvs? ( perl ) + mediawiki? ( perl ) + subversion? ( perl ) + webdav? ( curl ) + gtk? ( python ) + python? ( ${PYTHON_REQUIRED_USE} ) +" + +pkg_setup() { + if use subversion && has_version "dev-vcs/subversion[dso]"; then + ewarn "Per Gentoo bugs #223747, #238586, when subversion is built" + ewarn "with USE=dso, there may be weird crashes in git-svn. You" + ewarn "have been warned." + fi + if use python ; then + python-single-r1_pkg_setup + fi +} + +# This is needed because for some obscure reasons future calls to make don't +# pick up these exports if we export them in src_unpack() +exportmakeopts() { + local myopts + + if use blksha1 ; then + myopts+=" BLK_SHA1=YesPlease" + elif use ppcsha1 ; then + myopts+=" PPC_SHA1=YesPlease" + fi + + if use curl ; then + use webdav || myopts+=" NO_EXPAT=YesPlease" + else + myopts+=" NO_CURL=YesPlease" + fi + + # broken assumptions, because of broken build system ... + myopts+=" NO_FINK=YesPlease NO_DARWIN_PORTS=YesPlease" + myopts+=" INSTALL=install TAR=tar" + myopts+=" SHELL_PATH=${EPREFIX}/bin/sh" + myopts+=" SANE_TOOL_PATH=" + myopts+=" OLD_ICONV=" + myopts+=" NO_EXTERNAL_GREP=" + + # For svn-fe + extlibs="-lz -lssl ${S}/xdiff/lib.a $(usex threads -lpthread '')" + + # can't define this to null, since the entire makefile depends on it + sed -i -e '/\/usr\/local/s/BASIC_/#BASIC_/' Makefile + + use iconv \ + || myopts+=" NO_ICONV=YesPlease" + use nls \ + || myopts+=" NO_GETTEXT=YesPlease" + use tk \ + || myopts+=" NO_TCLTK=YesPlease" + use pcre \ + && myopts+=" USE_LIBPCRE=yes" \ + && extlibs+=" -lpcre" + use perl \ + && myopts+=" INSTALLDIRS=vendor" \ + || myopts+=" NO_PERL=YesPlease" + use python \ + || myopts+=" NO_PYTHON=YesPlease" + use subversion \ + || myopts+=" NO_SVN_TESTS=YesPlease" + use threads \ + && myopts+=" THREADED_DELTA_SEARCH=YesPlease" \ + || myopts+=" NO_PTHREADS=YesPlease" + use cvs \ + || myopts+=" NO_CVS=YesPlease" +# Disabled until ~m68k-mint can be keyworded again +# if [[ ${CHOST} == *-mint* ]] ; then +# myopts+=" NO_MMAP=YesPlease" +# myopts+=" NO_IPV6=YesPlease" +# myopts+=" NO_STRLCPY=YesPlease" +# myopts+=" NO_MEMMEM=YesPlease" +# myopts+=" NO_MKDTEMP=YesPlease" +# myopts+=" NO_MKSTEMPS=YesPlease" +# fi + if [[ ${CHOST} == ia64-*-hpux* ]]; then + myopts+=" NO_NSEC=YesPlease" + fi + if [[ ${CHOST} == *-*-aix* ]]; then + myopts+=" NO_FNMATCH_CASEFOLD=YesPlease" + fi + if [[ ${CHOST} == *-solaris* ]]; then + myopts+=" NEEDS_LIBICONV=YesPlease" + fi + + has_version '>=app-text/asciidoc-8.0' \ + && myopts+=" ASCIIDOC8=YesPlease" + myopts+=" ASCIIDOC_NO_ROFF=YesPlease" + + # Bug 290465: + # builtin-fetch-pack.c:816: error: 'struct stat' has no member named 'st_mtim' + [[ "${CHOST}" == *-uclibc* ]] && \ + myopts+=" NO_NSEC=YesPlease" + + export MY_MAKEOPTS="${myopts}" + export EXTLIBS="${extlibs}" +} + +src_unpack() { + if [[ ${PV} != *9999 ]]; then + unpack ${MY_P}.tar.${SRC_URI_SUFFIX} + cd "${S}" + unpack ${PN}-manpages-${DOC_VER}.tar.${SRC_URI_SUFFIX} + use doc && \ + cd "${S}"/Documentation && \ + unpack ${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} + cd "${S}" + else + git-2_src_unpack + cd "${S}" + #cp "${FILESDIR}"/GIT-VERSION-GEN . + fi + +} + +src_prepare() { + # bug #350330 - automagic CVS when we don't want it is bad. + epatch "${FILESDIR}"/git-2.2.2-optional-cvs.patch + + # install mediawiki perl modules also in vendor_dir + # hack, needs better upstream solution + epatch "${FILESDIR}"/git-1.8.5-mw-vendor.patch + + epatch "${FILESDIR}"/git-2.2.0-svn-fe-linking.patch + + epatch_user + + sed -i \ + -e 's:^\(CFLAGS[[:space:]]*=\).*$:\1 $(OPTCFLAGS) -Wall:' \ + -e 's:^\(LDFLAGS[[:space:]]*=\).*$:\1 $(OPTLDFLAGS):' \ + -e 's:^\(CC[[:space:]]* =\).*$:\1$(OPTCC):' \ + -e 's:^\(AR[[:space:]]* =\).*$:\1$(OPTAR):' \ + -e "s:\(PYTHON_PATH[[:space:]]\+=[[:space:]]\+\)\(.*\)$:\1${EPREFIX}\2:" \ + -e "s:\(PERL_PATH[[:space:]]\+=[[:space:]]\+\)\(.*\)$:\1${EPREFIX}\2:" \ + Makefile contrib/svn-fe/Makefile || die "sed failed" + + # Never install the private copy of Error.pm (bug #296310) + sed -i \ + -e '/private-Error.pm/s,^,#,' \ + perl/Makefile.PL + + # Fix docbook2texi command + sed -r -i 's/DOCBOOK2X_TEXI[[:space:]]*=[[:space:]]*docbook2x-texi/DOCBOOK2X_TEXI = docbook2texi.pl/' \ + Documentation/Makefile || die "sed failed" + + # Fix git-subtree missing DESTDIR + sed -i \ + -e '/$(INSTALL)/s/ $(libexecdir)/ $(DESTDIR)$(libexecdir)/g' \ + -e '/$(INSTALL)/s/ $(man1dir)/ $(DESTDIR)$(man1dir)/g' \ + contrib/subtree/Makefile +} + +git_emake() { + # bug #326625: PERL_PATH, PERL_MM_OPT + # bug #320647: PYTHON_PATH + PYTHON_PATH="" + use python && PYTHON_PATH="${PYTHON}" + emake ${MY_MAKEOPTS} \ + DESTDIR="${D}" \ + OPTCFLAGS="${CFLAGS}" \ + OPTLDFLAGS="${LDFLAGS}" \ + OPTCC="$(tc-getCC)" \ + OPTAR="$(tc-getAR)" \ + prefix="${EPREFIX}"/usr \ + htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \ + sysconfdir="${EPREFIX}"/etc \ + PYTHON_PATH="${PYTHON_PATH}" \ + PERL_MM_OPT="" \ + GIT_TEST_OPTS="--no-color" \ + V=1 \ + "$@" + # This is the fix for bug #326625, but it also causes breakage, see bug + # #352693. + # PERL_PATH="${EPREFIX}/usr/bin/env perl" \ +} + +src_configure() { + exportmakeopts +} + +src_compile() { + if use perl ; then + git_emake perl/PM.stamp || die "emake perl/PM.stamp failed" + git_emake perl/perl.mak || die "emake perl/perl.mak failed" + fi + git_emake || die "emake failed" + + if use emacs ; then + elisp-compile contrib/emacs/git{,-blame}.el + fi + + if use perl && use cgi ; then + git_emake \ + gitweb \ + || die "emake gitweb (cgi) failed" + fi + + if [[ ${CHOST} == *-darwin* ]]; then + cd "${S}"/contrib/credential/osxkeychain || die "cd credential/osxkeychain" + git_emake || die "emake credential-osxkeychain" + fi + + cd "${S}"/Documentation + if [[ ${PV} == *9999 ]] ; then + git_emake man \ + || die "emake man failed" + if use doc ; then + git_emake info html \ + || die "emake info html failed" + fi + else + if use doc ; then + git_emake info \ + || die "emake info html failed" + fi + fi + + if use subversion ; then + cd "${S}"/contrib/svn-fe + # by defining EXTLIBS we override the detection for libintl and + # libiconv, bug #516168 + local nlsiconv= + use nls && use !elibc_glibc && nlsiconv+=" -lintl" + use iconv && use !elibc_glibc && nlsiconv+=" -liconv" + git_emake EXTLIBS="${EXTLIBS} ${nlsiconv}" || die "emake svn-fe failed" + if use doc ; then + git_emake svn-fe.{1,html} || die "emake svn-fe.1 svn-fe.html failed" + fi + cd "${S}" + fi + + if use gnome-keyring ; then + cd "${S}"/contrib/credential/gnome-keyring + git_emake || die "emake git-credential-gnome-keyring failed" + fi + + cd "${S}"/contrib/subtree + git_emake + use doc && git_emake doc + + if use mediawiki ; then + cd "${S}"/contrib/mw-to-git + git_emake + fi +} + +src_install() { + git_emake \ + install || \ + die "make install failed" + + if [[ ${CHOST} == *-darwin* ]]; then + dobin contrib/credential/osxkeychain/git-credential-osxkeychain + fi + + # Depending on the tarball and manual rebuild of the documentation, the + # manpages may exist in either OR both of these directories. + find man?/*.[157] >/dev/null 2>&1 && doman man?/*.[157] + find Documentation/*.[157] >/dev/null 2>&1 && doman Documentation/*.[157] + + dodoc README Documentation/{SubmittingPatches,CodingGuidelines} + use doc && dodir /usr/share/doc/${PF}/html + for d in / /howto/ /technical/ ; do + docinto ${d} + dodoc Documentation${d}*.txt + use doc && dohtml -p ${d} Documentation${d}*.html + done + docinto / + # Upstream does not ship this pre-built :-( + use doc && doinfo Documentation/{git,gitman}.info + + newbashcomp contrib/completion/git-completion.bash ${PN} + bashcomp_alias git gitk + # Not really a bash-completion file (bug #477920) + # but still needed uncompressed (bug #507480) + insinto /usr/share/${PN} + doins contrib/completion/git-prompt.sh + + if use emacs ; then + elisp-install ${PN} contrib/emacs/git.{el,elc} + elisp-install ${PN} contrib/emacs/git-blame.{el,elc} + #elisp-install ${PN}/compat contrib/emacs/vc-git.{el,elc} + # don't add automatically to the load-path, so the sitefile + # can do a conditional loading + touch "${ED}${SITELISP}/${PN}/compat/.nosearch" + elisp-site-file-install "${FILESDIR}"/${SITEFILE} + fi + + if use python && use gtk ; then + python_doscript "${S}"/contrib/gitview/gitview + dodoc "${S}"/contrib/gitview/gitview.txt + fi + + #dobin contrib/fast-import/git-p4 # Moved upstream + #dodoc contrib/fast-import/git-p4.txt # Moved upstream + newbin contrib/fast-import/import-tars.perl import-tars + exeinto /usr/libexec/git-core/ + newexe contrib/git-resurrect.sh git-resurrect + + # git-subtree + cd "${S}"/contrib/subtree + git_emake install || die "Failed to emake install git-subtree" + if use doc ; then + git_emake install-man install-doc || die "Failed to emake install-doc install-mangit-subtree" + fi + newdoc README README.git-subtree + dodoc git-subtree.txt + cd "${S}" + + if use mediawiki ; then + cd "${S}"/contrib/mw-to-git + git_emake install + cd "${S}" + fi + + # diff-highlight + dobin contrib/diff-highlight/diff-highlight + newdoc contrib/diff-highlight/README README.diff-highlight + + # git-jump + exeinto /usr/libexec/git-core/ + doexe contrib/git-jump/git-jump + newdoc contrib/git-jump/README git-jump.txt + + # git-contacts + exeinto /usr/libexec/git-core/ + doexe contrib/contacts/git-contacts + dodoc contrib/contacts/git-contacts.txt + + if use gnome-keyring ; then + cd "${S}"/contrib/credential/gnome-keyring + dobin git-credential-gnome-keyring + fi + + if use subversion ; then + cd "${S}"/contrib/svn-fe + dobin svn-fe + dodoc svn-fe.txt + use doc && doman svn-fe.1 && dohtml svn-fe.html + cd "${S}" + fi + + dodir /usr/share/${PN}/contrib + # The following are excluded: + # completion - installed above + # credential/gnome-keyring TODO + # diff-highlight - done above + # emacs - installed above + # examples - these are stuff that is not used in Git anymore actually + # git-jump - done above + # gitview - installed above + # p4import - excluded because fast-import has a better one + # patches - stuff the Git guys made to go upstream to other places + # persistent-https - TODO + # mw-to-git - TODO + # subtree - build seperately + # svnimport - use git-svn + # thunderbird-patch-inline - fixes thunderbird + for i in \ + buildsystems convert-objects fast-import \ + hg-to-git hooks remotes2config.sh rerere-train.sh \ + stats workdir \ + ; do + cp -rf \ + "${S}"/contrib/${i} \ + "${ED}"/usr/share/${PN}/contrib \ + || die "Failed contrib ${i}" + done + + if use perl && use cgi ; then + # We used to install in /usr/share/${PN}/gitweb + # but upstream installs in /usr/share/gitweb + # so we will install a symlink and use their location for compat with other + # distros + dosym /usr/share/gitweb /usr/share/${PN}/gitweb + + # INSTALL discusses configuration issues, not just installation + docinto / + newdoc "${S}"/gitweb/INSTALL INSTALL.gitweb + newdoc "${S}"/gitweb/README README.gitweb + + find "${ED}"/usr/lib64/perl5/ \ + -name .packlist \ + -exec rm \{\} \; + else + rm -rf "${ED}"/usr/share/gitweb + fi + + if ! use subversion ; then + rm -f "${ED}"/usr/libexec/git-core/git-svn \ + "${ED}"/usr/share/man/man1/git-svn.1* + fi + + if use xinetd ; then + insinto /etc/xinetd.d + newins "${FILESDIR}"/git-daemon.xinetd git-daemon + fi + + if use !prefix ; then + newinitd "${FILESDIR}"/git-daemon-r1.initd git-daemon + newconfd "${FILESDIR}"/git-daemon.confd git-daemon + systemd_newunit "${FILESDIR}/git-daemon_at.service" "git-daemon@.service" + systemd_dounit "${FILESDIR}/git-daemon.socket" + fi + + perl_delete_localpod +} + +src_test() { + local disabled="" #t7004-tag.sh" #520270 + local tests_cvs="t9200-git-cvsexportcommit.sh \ + t9400-git-cvsserver-server.sh \ + t9401-git-cvsserver-crlf.sh \ + t9402-git-cvsserver-refs.sh \ + t9600-cvsimport.sh \ + t9601-cvsimport-vendor-branch.sh \ + t9602-cvsimport-branches-tags.sh \ + t9603-cvsimport-patchsets.sh \ + t9604-cvsimport-timestamps.sh" + local tests_perl="t3701-add-interactive.sh \ + t5502-quickfetch.sh \ + t5512-ls-remote.sh \ + t5520-pull.sh \ + t7106-reset-unborn-branch.sh \ + t7501-commit.sh" + # Bug #225601 - t0004 is not suitable for root perm + # Bug #219839 - t1004 is not suitable for root perm + # t0001-init.sh - check for init notices EPERM* fails + local tests_nonroot="t0001-init.sh \ + t0004-unwritable.sh \ + t0070-fundamental.sh \ + t1004-read-tree-m-u-wf.sh \ + t3700-add.sh \ + t7300-clean.sh" + # t9100 still fails with symlinks in SVN 1.7 + local test_svn="t9100-git-svn-basic.sh" + + # Unzip is used only for the testcase code, not by any normal parts of Git. + if ! has_version app-arch/unzip ; then + einfo "Disabling tar-tree tests" + disabled="${disabled} t5000-tar-tree.sh" + fi + + cvs=0 + use cvs && let cvs=$cvs+1 + if [[ ${EUID} -eq 0 ]]; then + if [[ $cvs -eq 1 ]]; then + ewarn "Skipping CVS tests because CVS does not work as root!" + ewarn "You should retest with FEATURES=userpriv!" + disabled="${disabled} ${tests_cvs}" + fi + einfo "Skipping other tests that require being non-root" + disabled="${disabled} ${tests_nonroot}" + else + [[ $cvs -gt 0 ]] && \ + has_version dev-vcs/cvs && \ + let cvs=$cvs+1 + [[ $cvs -gt 1 ]] && \ + has_version "dev-vcs/cvs[server]" && \ + let cvs=$cvs+1 + if [[ $cvs -lt 3 ]]; then + einfo "Disabling CVS tests (needs dev-vcs/cvs[USE=server])" + disabled="${disabled} ${tests_cvs}" + fi + fi + + if ! use perl ; then + einfo "Disabling tests that need Perl" + disabled="${disabled} ${tests_perl}" + fi + + einfo "Disabling tests that fail with SVN 1.7" + disabled="${disabled} ${test_svn}" + + # Reset all previously disabled tests + cd "${S}/t" + for i in *.sh.DISABLED ; do + [[ -f "${i}" ]] && mv -f "${i}" "${i%.DISABLED}" + done + einfo "Disabled tests:" + for i in ${disabled} ; do + [[ -f "${i}" ]] && mv -f "${i}" "${i}.DISABLED" && einfo "Disabled $i" + done + + # Avoid the test system removing the results because we want them ourselves + sed -e '/^[[:space:]]*$(MAKE) clean/s,^,#,g' \ + -i "${S}"/t/Makefile + + # Clean old results first, must always run + cd "${S}/t" + nonfatal git_emake clean + + # Now run the tests, keep going if we hit an error, and don't terminate on + # failure + cd "${S}" + einfo "Start test run" + #MAKEOPTS=-j1 + nonfatal git_emake --keep-going test + rc=$? + + # Display nice results, now print the results + cd "${S}/t" + nonfatal git_emake aggregate-results + + # And bail if there was a problem + [ $rc -eq 0 ] || die "tests failed. Please file a bug." +} + +showpkgdeps() { + local pkg=$1 + shift + elog " $(printf "%-17s:" ${pkg}) ${@}" +} + +pkg_postinst() { + use emacs && elisp-site-regen + einfo "Please read /usr/share/bash-completion/git for Git bash command completion" + einfo "Please read /usr/share/git/git-prompt.sh for Git bash prompt" + einfo "Note that the prompt bash code is now in that separate script" + elog "These additional scripts need some dependencies:" + echo + showpkgdeps git-quiltimport "dev-util/quilt" + showpkgdeps git-instaweb \ + "|| ( www-servers/lighttpd www-servers/apache www-servers/nginx )" + echo +} + +pkg_postrm() { + use emacs && elisp-site-regen +} diff --git a/dev-vcs/git/git-2.6.0.ebuild b/dev-vcs/git/git-2.5.4.ebuild similarity index 100% rename from dev-vcs/git/git-2.6.0.ebuild rename to dev-vcs/git/git-2.5.4.ebuild diff --git a/dev-vcs/git/git-2.6.1-r1.ebuild b/dev-vcs/git/git-2.6.1-r1.ebuild new file mode 100644 index 000000000000..b7cc65b3d621 --- /dev/null +++ b/dev-vcs/git/git-2.6.1-r1.ebuild @@ -0,0 +1,643 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +GENTOO_DEPEND_ON_PERL=no + +# bug #329479: git-remote-testgit is not multiple-version aware +PYTHON_COMPAT=( python2_7 ) +[[ ${PV} == *9999 ]] && SCM="git-2" +EGIT_REPO_URI="git://git.kernel.org/pub/scm/git/git.git" +EGIT_MASTER=pu + +inherit toolchain-funcs eutils elisp-common perl-module bash-completion-r1 python-single-r1 systemd ${SCM} + +MY_PV="${PV/_rc/.rc}" +MY_P="${PN}-${MY_PV}" + +DOC_VER=${MY_PV} + +DESCRIPTION="GIT - the stupid content tracker, the revision control system heavily used by the Linux kernel team" +HOMEPAGE="http://www.git-scm.com/" +if [[ ${PV} != *9999 ]]; then + SRC_URI_SUFFIX="xz" + SRC_URI_GOOG="https://git-core.googlecode.com/files" + SRC_URI_KORG="mirror://kernel/software/scm/git" + SRC_URI="${SRC_URI_GOOG}/${MY_P}.tar.${SRC_URI_SUFFIX} + ${SRC_URI_KORG}/${MY_P}.tar.${SRC_URI_SUFFIX} + ${SRC_URI_GOOG}/${PN}-manpages-${DOC_VER}.tar.${SRC_URI_SUFFIX} + ${SRC_URI_KORG}/${PN}-manpages-${DOC_VER}.tar.${SRC_URI_SUFFIX} + doc? ( + ${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} + ${SRC_URI_GOOG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} + )" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +fi + +LICENSE="GPL-2" +SLOT="0" +IUSE="+blksha1 +curl cgi doc emacs gnome-keyring +gpg gtk highlight +iconv libressl mediawiki +nls +pcre +perl +python ppcsha1 tk +threads +webdav xinetd cvs subversion test" + +# Common to both DEPEND and RDEPEND +CDEPEND=" + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:= ) + sys-libs/zlib + pcre? ( dev-libs/libpcre ) + perl? ( dev-lang/perl:=[-build(-)] ) + tk? ( dev-lang/tk:0= ) + curl? ( + net-misc/curl + webdav? ( dev-libs/expat ) + ) + emacs? ( virtual/emacs ) + gnome-keyring? ( gnome-base/libgnome-keyring )" + +RDEPEND="${CDEPEND} + gpg? ( app-crypt/gnupg ) + mediawiki? ( + dev-perl/HTML-Tree + dev-perl/MediaWiki-API + ) + perl? ( dev-perl/Error + dev-perl/Net-SMTP-SSL + dev-perl/Authen-SASL + cgi? ( dev-perl/CGI highlight? ( app-text/highlight ) ) + cvs? ( >=dev-vcs/cvsps-2.1:0 dev-perl/DBI dev-perl/DBD-SQLite ) + subversion? ( dev-vcs/subversion[-dso,perl] dev-perl/libwww-perl dev-perl/TermReadKey ) + ) + python? ( gtk? + ( + >=dev-python/pygtk-2.8[${PYTHON_USEDEP}] + >=dev-python/pygtksourceview-2.10.1-r1:2[${PYTHON_USEDEP}] + ) + ${PYTHON_DEPS} )" + +# This is how info docs are created with Git: +# .txt/asciidoc --(asciidoc)---------> .xml/docbook +# .xml/docbook --(docbook2texi.pl)--> .texi +# .texi --(makeinfo)---------> .info +DEPEND="${CDEPEND} + doc? ( + app-text/asciidoc + app-text/docbook2X + sys-apps/texinfo + app-text/xmlto + ) + nls? ( sys-devel/gettext ) + test? ( app-crypt/gnupg )" + +# Live ebuild builds man pages and HTML docs, additionally +if [[ ${PV} == *9999 ]]; then + DEPEND="${DEPEND} + app-text/asciidoc" +fi + +SITEFILE=50${PN}-gentoo.el +S="${WORKDIR}/${MY_P}" + +REQUIRED_USE=" + cgi? ( perl ) + cvs? ( perl ) + mediawiki? ( perl ) + subversion? ( perl ) + webdav? ( curl ) + gtk? ( python ) + python? ( ${PYTHON_REQUIRED_USE} ) +" + +pkg_setup() { + if use subversion && has_version "dev-vcs/subversion[dso]"; then + ewarn "Per Gentoo bugs #223747, #238586, when subversion is built" + ewarn "with USE=dso, there may be weird crashes in git-svn. You" + ewarn "have been warned." + fi + if use python ; then + python-single-r1_pkg_setup + fi +} + +# This is needed because for some obscure reasons future calls to make don't +# pick up these exports if we export them in src_unpack() +exportmakeopts() { + local myopts + + if use blksha1 ; then + myopts+=" BLK_SHA1=YesPlease" + elif use ppcsha1 ; then + myopts+=" PPC_SHA1=YesPlease" + fi + + if use curl ; then + use webdav || myopts+=" NO_EXPAT=YesPlease" + else + myopts+=" NO_CURL=YesPlease" + fi + + # broken assumptions, because of broken build system ... + myopts+=" NO_FINK=YesPlease NO_DARWIN_PORTS=YesPlease" + myopts+=" INSTALL=install TAR=tar" + myopts+=" SHELL_PATH=${EPREFIX}/bin/sh" + myopts+=" SANE_TOOL_PATH=" + myopts+=" OLD_ICONV=" + myopts+=" NO_EXTERNAL_GREP=" + + # For svn-fe + extlibs="-lz -lssl ${S}/xdiff/lib.a $(usex threads -lpthread '')" + + # can't define this to null, since the entire makefile depends on it + sed -i -e '/\/usr\/local/s/BASIC_/#BASIC_/' Makefile + + use iconv \ + || myopts+=" NO_ICONV=YesPlease" + use nls \ + || myopts+=" NO_GETTEXT=YesPlease" + use tk \ + || myopts+=" NO_TCLTK=YesPlease" + use pcre \ + && myopts+=" USE_LIBPCRE=yes" \ + && extlibs+=" -lpcre" + use perl \ + && myopts+=" INSTALLDIRS=vendor" \ + || myopts+=" NO_PERL=YesPlease" + use python \ + || myopts+=" NO_PYTHON=YesPlease" + use subversion \ + || myopts+=" NO_SVN_TESTS=YesPlease" + use threads \ + && myopts+=" THREADED_DELTA_SEARCH=YesPlease" \ + || myopts+=" NO_PTHREADS=YesPlease" + use cvs \ + || myopts+=" NO_CVS=YesPlease" +# Disabled until ~m68k-mint can be keyworded again +# if [[ ${CHOST} == *-mint* ]] ; then +# myopts+=" NO_MMAP=YesPlease" +# myopts+=" NO_IPV6=YesPlease" +# myopts+=" NO_STRLCPY=YesPlease" +# myopts+=" NO_MEMMEM=YesPlease" +# myopts+=" NO_MKDTEMP=YesPlease" +# myopts+=" NO_MKSTEMPS=YesPlease" +# fi + if [[ ${CHOST} == ia64-*-hpux* ]]; then + myopts+=" NO_NSEC=YesPlease" + fi + if [[ ${CHOST} == *-*-aix* ]]; then + myopts+=" NO_FNMATCH_CASEFOLD=YesPlease" + fi + if [[ ${CHOST} == *-solaris* ]]; then + myopts+=" NEEDS_LIBICONV=YesPlease" + fi + + has_version '>=app-text/asciidoc-8.0' \ + && myopts+=" ASCIIDOC8=YesPlease" + myopts+=" ASCIIDOC_NO_ROFF=YesPlease" + + # Bug 290465: + # builtin-fetch-pack.c:816: error: 'struct stat' has no member named 'st_mtim' + [[ "${CHOST}" == *-uclibc* ]] && \ + myopts+=" NO_NSEC=YesPlease" + + export MY_MAKEOPTS="${myopts}" + export EXTLIBS="${extlibs}" +} + +src_unpack() { + if [[ ${PV} != *9999 ]]; then + unpack ${MY_P}.tar.${SRC_URI_SUFFIX} + cd "${S}" + unpack ${PN}-manpages-${DOC_VER}.tar.${SRC_URI_SUFFIX} + use doc && \ + cd "${S}"/Documentation && \ + unpack ${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} + cd "${S}" + else + git-2_src_unpack + cd "${S}" + #cp "${FILESDIR}"/GIT-VERSION-GEN . + fi + +} + +src_prepare() { + # bug #350330 - automagic CVS when we don't want it is bad. + epatch "${FILESDIR}"/git-2.2.2-optional-cvs.patch + + # install mediawiki perl modules also in vendor_dir + # hack, needs better upstream solution + epatch "${FILESDIR}"/git-1.8.5-mw-vendor.patch + + epatch "${FILESDIR}"/git-2.2.0-svn-fe-linking.patch + + # Bug #493306, where FreeBSD 10.x merged libiconv into its libc. + epatch "${FILESDIR}"/git-2.5.1-freebsd-10.x-no-iconv.patch + + epatch "${FILESDIR}"/${PN}-2.6.0-send-email_connection_closed_fix.patch + epatch "${FILESDIR}"/${PN}-2.6.0-am_configure_gpg_at_startup.patch #561796 + + epatch_user + + sed -i \ + -e 's:^\(CFLAGS[[:space:]]*=\).*$:\1 $(OPTCFLAGS) -Wall:' \ + -e 's:^\(LDFLAGS[[:space:]]*=\).*$:\1 $(OPTLDFLAGS):' \ + -e 's:^\(CC[[:space:]]* =\).*$:\1$(OPTCC):' \ + -e 's:^\(AR[[:space:]]* =\).*$:\1$(OPTAR):' \ + -e "s:\(PYTHON_PATH[[:space:]]\+=[[:space:]]\+\)\(.*\)$:\1${EPREFIX}\2:" \ + -e "s:\(PERL_PATH[[:space:]]\+=[[:space:]]\+\)\(.*\)$:\1${EPREFIX}\2:" \ + Makefile contrib/svn-fe/Makefile || die "sed failed" + + # Never install the private copy of Error.pm (bug #296310) + sed -i \ + -e '/private-Error.pm/s,^,#,' \ + perl/Makefile.PL + + # Fix docbook2texi command + sed -r -i 's/DOCBOOK2X_TEXI[[:space:]]*=[[:space:]]*docbook2x-texi/DOCBOOK2X_TEXI = docbook2texi.pl/' \ + Documentation/Makefile || die "sed failed" + + # Fix git-subtree missing DESTDIR + sed -i \ + -e '/$(INSTALL)/s/ $(libexecdir)/ $(DESTDIR)$(libexecdir)/g' \ + -e '/$(INSTALL)/s/ $(man1dir)/ $(DESTDIR)$(man1dir)/g' \ + contrib/subtree/Makefile +} + +git_emake() { + # bug #326625: PERL_PATH, PERL_MM_OPT + # bug #320647: PYTHON_PATH + PYTHON_PATH="" + use python && PYTHON_PATH="${PYTHON}" + emake ${MY_MAKEOPTS} \ + DESTDIR="${D}" \ + OPTCFLAGS="${CFLAGS}" \ + OPTLDFLAGS="${LDFLAGS}" \ + OPTCC="$(tc-getCC)" \ + OPTAR="$(tc-getAR)" \ + prefix="${EPREFIX}"/usr \ + htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \ + sysconfdir="${EPREFIX}"/etc \ + PYTHON_PATH="${PYTHON_PATH}" \ + PERL_MM_OPT="" \ + GIT_TEST_OPTS="--no-color" \ + V=1 \ + "$@" + # This is the fix for bug #326625, but it also causes breakage, see bug + # #352693. + # PERL_PATH="${EPREFIX}/usr/bin/env perl" \ +} + +src_configure() { + exportmakeopts +} + +src_compile() { + if use perl ; then + git_emake perl/PM.stamp || die "emake perl/PM.stamp failed" + git_emake perl/perl.mak || die "emake perl/perl.mak failed" + fi + git_emake || die "emake failed" + + if use emacs ; then + elisp-compile contrib/emacs/git{,-blame}.el + fi + + if use perl && use cgi ; then + git_emake \ + gitweb \ + || die "emake gitweb (cgi) failed" + fi + + if [[ ${CHOST} == *-darwin* ]]; then + cd "${S}"/contrib/credential/osxkeychain || die "cd credential/osxkeychain" + git_emake || die "emake credential-osxkeychain" + fi + + cd "${S}"/Documentation + if [[ ${PV} == *9999 ]] ; then + git_emake man \ + || die "emake man failed" + if use doc ; then + git_emake info html \ + || die "emake info html failed" + fi + else + if use doc ; then + git_emake info \ + || die "emake info html failed" + fi + fi + + if use subversion ; then + cd "${S}"/contrib/svn-fe + # by defining EXTLIBS we override the detection for libintl and + # libiconv, bug #516168 + local nlsiconv= + use nls && use !elibc_glibc && nlsiconv+=" -lintl" + use iconv && use !elibc_glibc && nlsiconv+=" -liconv" + git_emake EXTLIBS="${EXTLIBS} ${nlsiconv}" || die "emake svn-fe failed" + if use doc ; then + git_emake svn-fe.{1,html} || die "emake svn-fe.1 svn-fe.html failed" + fi + cd "${S}" + fi + + if use gnome-keyring ; then + cd "${S}"/contrib/credential/gnome-keyring + git_emake || die "emake git-credential-gnome-keyring failed" + fi + + cd "${S}"/contrib/subtree + git_emake + use doc && git_emake doc + + if use mediawiki ; then + cd "${S}"/contrib/mw-to-git + git_emake + fi +} + +src_install() { + git_emake \ + install || \ + die "make install failed" + + if [[ ${CHOST} == *-darwin* ]]; then + dobin contrib/credential/osxkeychain/git-credential-osxkeychain + fi + + # Depending on the tarball and manual rebuild of the documentation, the + # manpages may exist in either OR both of these directories. + find man?/*.[157] >/dev/null 2>&1 && doman man?/*.[157] + find Documentation/*.[157] >/dev/null 2>&1 && doman Documentation/*.[157] + + dodoc README Documentation/{SubmittingPatches,CodingGuidelines} + use doc && dodir /usr/share/doc/${PF}/html + for d in / /howto/ /technical/ ; do + docinto ${d} + dodoc Documentation${d}*.txt + use doc && dohtml -p ${d} Documentation${d}*.html + done + docinto / + # Upstream does not ship this pre-built :-( + use doc && doinfo Documentation/{git,gitman}.info + + newbashcomp contrib/completion/git-completion.bash ${PN} + bashcomp_alias git gitk + # Not really a bash-completion file (bug #477920) + # but still needed uncompressed (bug #507480) + insinto /usr/share/${PN} + doins contrib/completion/git-prompt.sh + + if use emacs ; then + elisp-install ${PN} contrib/emacs/git.{el,elc} + elisp-install ${PN} contrib/emacs/git-blame.{el,elc} + #elisp-install ${PN}/compat contrib/emacs/vc-git.{el,elc} + # don't add automatically to the load-path, so the sitefile + # can do a conditional loading + touch "${ED}${SITELISP}/${PN}/compat/.nosearch" + elisp-site-file-install "${FILESDIR}"/${SITEFILE} + fi + + if use python && use gtk ; then + python_doscript "${S}"/contrib/gitview/gitview + dodoc "${S}"/contrib/gitview/gitview.txt + fi + + #dobin contrib/fast-import/git-p4 # Moved upstream + #dodoc contrib/fast-import/git-p4.txt # Moved upstream + newbin contrib/fast-import/import-tars.perl import-tars + exeinto /usr/libexec/git-core/ + newexe contrib/git-resurrect.sh git-resurrect + + # git-subtree + cd "${S}"/contrib/subtree + git_emake install || die "Failed to emake install git-subtree" + if use doc ; then + git_emake install-man install-doc || die "Failed to emake install-doc install-mangit-subtree" + fi + newdoc README README.git-subtree + dodoc git-subtree.txt + cd "${S}" + + if use mediawiki ; then + cd "${S}"/contrib/mw-to-git + git_emake install + cd "${S}" + fi + + # diff-highlight + dobin contrib/diff-highlight/diff-highlight + newdoc contrib/diff-highlight/README README.diff-highlight + + # git-jump + exeinto /usr/libexec/git-core/ + doexe contrib/git-jump/git-jump + newdoc contrib/git-jump/README git-jump.txt + + # git-contacts + exeinto /usr/libexec/git-core/ + doexe contrib/contacts/git-contacts + dodoc contrib/contacts/git-contacts.txt + + if use gnome-keyring ; then + cd "${S}"/contrib/credential/gnome-keyring + dobin git-credential-gnome-keyring + fi + + if use subversion ; then + cd "${S}"/contrib/svn-fe + dobin svn-fe + dodoc svn-fe.txt + use doc && doman svn-fe.1 && dohtml svn-fe.html + cd "${S}" + fi + + dodir /usr/share/${PN}/contrib + # The following are excluded: + # completion - installed above + # credential/gnome-keyring TODO + # diff-highlight - done above + # emacs - installed above + # examples - these are stuff that is not used in Git anymore actually + # git-jump - done above + # gitview - installed above + # p4import - excluded because fast-import has a better one + # patches - stuff the Git guys made to go upstream to other places + # persistent-https - TODO + # mw-to-git - TODO + # subtree - build seperately + # svnimport - use git-svn + # thunderbird-patch-inline - fixes thunderbird + for i in \ + buildsystems convert-objects fast-import \ + hg-to-git hooks remotes2config.sh rerere-train.sh \ + stats workdir \ + ; do + cp -rf \ + "${S}"/contrib/${i} \ + "${ED}"/usr/share/${PN}/contrib \ + || die "Failed contrib ${i}" + done + + if use perl && use cgi ; then + # We used to install in /usr/share/${PN}/gitweb + # but upstream installs in /usr/share/gitweb + # so we will install a symlink and use their location for compat with other + # distros + dosym /usr/share/gitweb /usr/share/${PN}/gitweb + + # INSTALL discusses configuration issues, not just installation + docinto / + newdoc "${S}"/gitweb/INSTALL INSTALL.gitweb + newdoc "${S}"/gitweb/README README.gitweb + + find "${ED}"/usr/lib64/perl5/ \ + -name .packlist \ + -exec rm \{\} \; + else + rm -rf "${ED}"/usr/share/gitweb + fi + + if ! use subversion ; then + rm -f "${ED}"/usr/libexec/git-core/git-svn \ + "${ED}"/usr/share/man/man1/git-svn.1* + fi + + if use xinetd ; then + insinto /etc/xinetd.d + newins "${FILESDIR}"/git-daemon.xinetd git-daemon + fi + + if use !prefix ; then + newinitd "${FILESDIR}"/git-daemon-r1.initd git-daemon + newconfd "${FILESDIR}"/git-daemon.confd git-daemon + systemd_newunit "${FILESDIR}/git-daemon_at.service" "git-daemon@.service" + systemd_dounit "${FILESDIR}/git-daemon.socket" + fi + + perl_delete_localpod +} + +src_test() { + local disabled="" #t7004-tag.sh" #520270 + local tests_cvs="t9200-git-cvsexportcommit.sh \ + t9400-git-cvsserver-server.sh \ + t9401-git-cvsserver-crlf.sh \ + t9402-git-cvsserver-refs.sh \ + t9600-cvsimport.sh \ + t9601-cvsimport-vendor-branch.sh \ + t9602-cvsimport-branches-tags.sh \ + t9603-cvsimport-patchsets.sh \ + t9604-cvsimport-timestamps.sh" + local tests_perl="t3701-add-interactive.sh \ + t5502-quickfetch.sh \ + t5512-ls-remote.sh \ + t5520-pull.sh \ + t7106-reset-unborn-branch.sh \ + t7501-commit.sh" + # Bug #225601 - t0004 is not suitable for root perm + # Bug #219839 - t1004 is not suitable for root perm + # t0001-init.sh - check for init notices EPERM* fails + local tests_nonroot="t0001-init.sh \ + t0004-unwritable.sh \ + t0070-fundamental.sh \ + t1004-read-tree-m-u-wf.sh \ + t3700-add.sh \ + t7300-clean.sh" + # t9100 still fails with symlinks in SVN 1.7 + local test_svn="t9100-git-svn-basic.sh" + + # Unzip is used only for the testcase code, not by any normal parts of Git. + if ! has_version app-arch/unzip ; then + einfo "Disabling tar-tree tests" + disabled="${disabled} t5000-tar-tree.sh" + fi + + cvs=0 + use cvs && let cvs=$cvs+1 + if [[ ${EUID} -eq 0 ]]; then + if [[ $cvs -eq 1 ]]; then + ewarn "Skipping CVS tests because CVS does not work as root!" + ewarn "You should retest with FEATURES=userpriv!" + disabled="${disabled} ${tests_cvs}" + fi + einfo "Skipping other tests that require being non-root" + disabled="${disabled} ${tests_nonroot}" + else + [[ $cvs -gt 0 ]] && \ + has_version dev-vcs/cvs && \ + let cvs=$cvs+1 + [[ $cvs -gt 1 ]] && \ + has_version "dev-vcs/cvs[server]" && \ + let cvs=$cvs+1 + if [[ $cvs -lt 3 ]]; then + einfo "Disabling CVS tests (needs dev-vcs/cvs[USE=server])" + disabled="${disabled} ${tests_cvs}" + fi + fi + + if ! use perl ; then + einfo "Disabling tests that need Perl" + disabled="${disabled} ${tests_perl}" + fi + + einfo "Disabling tests that fail with SVN 1.7" + disabled="${disabled} ${test_svn}" + + # Reset all previously disabled tests + cd "${S}/t" + for i in *.sh.DISABLED ; do + [[ -f "${i}" ]] && mv -f "${i}" "${i%.DISABLED}" + done + einfo "Disabled tests:" + for i in ${disabled} ; do + [[ -f "${i}" ]] && mv -f "${i}" "${i}.DISABLED" && einfo "Disabled $i" + done + + # Avoid the test system removing the results because we want them ourselves + sed -e '/^[[:space:]]*$(MAKE) clean/s,^,#,g' \ + -i "${S}"/t/Makefile + + # Clean old results first, must always run + cd "${S}/t" + nonfatal git_emake clean + + # Now run the tests, keep going if we hit an error, and don't terminate on + # failure + cd "${S}" + einfo "Start test run" + #MAKEOPTS=-j1 + nonfatal git_emake --keep-going test + rc=$? + + # Display nice results, now print the results + cd "${S}/t" + nonfatal git_emake aggregate-results + + # And bail if there was a problem + [ $rc -eq 0 ] || die "tests failed. Please file a bug." +} + +showpkgdeps() { + local pkg=$1 + shift + elog " $(printf "%-17s:" ${pkg}) ${@}" +} + +pkg_postinst() { + use emacs && elisp-site-regen + einfo "Please read /usr/share/bash-completion/git for Git bash command completion" + einfo "Please read /usr/share/git/git-prompt.sh for Git bash prompt" + einfo "Note that the prompt bash code is now in that separate script" + elog "These additional scripts need some dependencies:" + echo + showpkgdeps git-quiltimport "dev-util/quilt" + showpkgdeps git-instaweb \ + "|| ( www-servers/lighttpd www-servers/apache www-servers/nginx )" + echo +} + +pkg_postrm() { + use emacs && elisp-site-regen +} diff --git a/games-engines/love/files/love-0.8.0-freetype2.patch b/games-engines/love/files/love-0.8.0-freetype2.patch index 64e42c5f2840..07c655c41203 100644 --- a/games-engines/love/files/love-0.8.0-freetype2.patch +++ b/games-engines/love/files/love-0.8.0-freetype2.patch @@ -1,48 +1,34 @@ ---- src/modules/font/freetype/TrueTypeRasterizer.h.old 2015-01-07 09:49:39.394000727 +0100 -+++ src/modules/font/freetype/TrueTypeRasterizer.h 2015-01-07 09:50:28.846065847 +0100 -@@ -27,10 +27,10 @@ - - // TrueType2 +--- love-0.8.0/src/modules/font/freetype/Font.h ++++ love-0.8.0/src/modules/font/freetype/Font.h +@@ -30,10 +30,10 @@ + #else #include + #endif -#include -#include -#include -#include -+#include -+#include -+#include -+#include ++#include FT_FREETYPE_H ++#include FT_GLYPH_H ++#include FT_OUTLINE_H ++#include FT_TRIGONOMETRY_H namespace love { -@@ -67,4 +67,4 @@ - } // font - } // love +--- love-0.8.0/src/modules/font/freetype/TrueTypeRasterizer.h ++++ love-0.8.0/src/modules/font/freetype/TrueTypeRasterizer.h +@@ -27,10 +27,10 @@ --#endif // LOVE_FONT_FREETYPE_TRUE_TYPE_RASTERIZER_H -\ No newline at end of file -+#endif // LOVE_FONT_FREETYPE_TRUE_TYPE_RASTERIZER_H ---- src/modules/font/freetype/Font.h.old 2015-01-07 09:49:20.421359400 +0100 -+++ src/modules/font/freetype/Font.h 2015-01-07 09:50:02.076571918 +0100 -@@ -30,10 +30,10 @@ - #else + // TrueType2 #include - #endif -#include -#include -#include -#include -+#include -+#include -+#include -+#include ++#include FT_FREETYPE_H ++#include FT_GLYPH_H ++#include FT_OUTLINE_H ++#include FT_TRIGONOMETRY_H namespace love { -@@ -73,4 +73,4 @@ - } // font - } // love - --#endif // LOVE_FONT_FREETYPE_FONT_H -\ No newline at end of file -+#endif // LOVE_FONT_FREETYPE_FONT_H diff --git a/games-strategy/s25rttr/files/s25rttr-0.8.1-fpic.patch b/games-strategy/s25rttr/files/s25rttr-0.8.1-fpic.patch new file mode 100644 index 000000000000..4a1d11ef1704 --- /dev/null +++ b/games-strategy/s25rttr/files/s25rttr-0.8.1-fpic.patch @@ -0,0 +1,38 @@ +From 2b4f956263864cebb1b9c5ce120c7cd30f512bdb Mon Sep 17 00:00:00 2001 +From: nE0sIghT +Date: Sat, 18 Jul 2015 19:03:05 +0300 +Subject: [PATCH] Fixed build of sdl drivers + +--- + driver/audio/SDL/src/CMakeLists.txt | 1 + + driver/video/SDL/src/CMakeLists.txt | 1 + + 2 files changed, 2 insertions(+) + +diff --git a/driver/audio/SDL/src/CMakeLists.txt b/driver/audio/SDL/src/CMakeLists.txt +index 5ad3f02..5a91cd5 100644 +--- a/driver/audio/SDL/src/CMakeLists.txt ++++ b/driver/audio/SDL/src/CMakeLists.txt +@@ -20,6 +20,7 @@ IF (SDL_FOUND) + + ADD_LIBRARY(audioSDL SHARED SDL.cpp SDL.h main.h SoundSDL_Music.cpp SoundSDL_Music.h SoundSDL_Effect.cpp SoundSDL_Effect.h ${PROJECT_SOURCE_DIR}/build_version.cpp ../../../src/DriverInterface.cpp ../../../src/tempname.cpp ../../../src/tempname.h) + ++ ADD_DEFINITIONS(-fPIC) + ADD_FLAGS(CMAKE_C_FLAGS -I${SDL_INCLUDE_DIR} -I${SDLMIXER_INCLUDE_DIR}) + ADD_FLAGS(CMAKE_CXX_FLAGS -I${SDL_INCLUDE_DIR} -I${SDLMIXER_INCLUDE_DIR}) + +diff --git a/driver/video/SDL/src/CMakeLists.txt b/driver/video/SDL/src/CMakeLists.txt +index 83d10cf..ca67573 100644 +--- a/driver/video/SDL/src/CMakeLists.txt ++++ b/driver/video/SDL/src/CMakeLists.txt +@@ -16,6 +16,7 @@ IF (SDL_FOUND) + + ADD_LIBRARY(videoSDL SHARED SDL.cpp SDL.h main.h ../../../../build_version.cpp ../../../src/DriverInterface.cpp) + ++ ADD_DEFINITIONS(-fPIC) + ADD_FLAGS(CMAKE_C_FLAGS -I${SDL_INCLUDE_DIR}) + ADD_FLAGS(CMAKE_CXX_FLAGS -I${SDL_INCLUDE_DIR}) + +-- +2.3.6 + + diff --git a/games-strategy/s25rttr/s25rttr-0.8.1.ebuild b/games-strategy/s25rttr/s25rttr-0.8.1.ebuild index 0643f3aa723a..202ecbc53324 100644 --- a/games-strategy/s25rttr/s25rttr-0.8.1.ebuild +++ b/games-strategy/s25rttr/s25rttr-0.8.1.ebuild @@ -30,7 +30,8 @@ DEPEND="${RDEPEND} src_prepare() { epatch "${FILESDIR}"/${P}-cmake.patch \ - "${FILESDIR}"/${P}-soundconverter.patch + "${FILESDIR}"/${P}-soundconverter.patch \ + "${FILESDIR}"/${P}-fpic.patch } src_configure() { diff --git a/games-util/pyfa/files/configforced-1.15.1.py b/games-util/pyfa/files/configforced-1.15.1.py new file mode 100644 index 000000000000..51fcb958cedc --- /dev/null +++ b/games-util/pyfa/files/configforced-1.15.1.py @@ -0,0 +1,4 @@ +# Gentoo-specific settings +pyfaPath = u'%%SITEDIR%%/pyfa' +gameDB = u'%%EPREFIX%%/usr/share/pyfa/eve.db' +imgsZIP = u'%%EPREFIX%%/usr/share/pyfa/imgs.zip' diff --git a/games-util/pyfa/files/pyfa-1.15.1-import-pyfa.patch b/games-util/pyfa/files/pyfa-1.15.1-import-pyfa.patch new file mode 100644 index 000000000000..f29b75d7fea0 --- /dev/null +++ b/games-util/pyfa/files/pyfa-1.15.1-import-pyfa.patch @@ -0,0 +1,27 @@ +From 6c7b6ab7d1aae47d3a3f72a7951c7de294be2917 Mon Sep 17 00:00:00 2001 +From: Alexandre Rostovtsev +Date: Tue, 6 Oct 2015 22:16:38 -0400 +Subject: [PATCH] Append $(python_get_sitedir)/pyfa to import path + +Ensures that pyfa's import statements continue to work for systemwide +installation. +--- + pyfa.py | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/pyfa.py b/pyfa.py +index 8189918..7b81f10 100755 +--- a/pyfa.py ++++ b/pyfa.py +@@ -20,6 +20,8 @@ + + import sys + import re ++import os ++sys.path.append(os.path.join("%%SITEDIR%%", "pyfa")) + import config + + +-- +2.6.0 + diff --git a/games-util/pyfa/files/pyfa-1.15.1-staticdata.patch b/games-util/pyfa/files/pyfa-1.15.1-staticdata.patch new file mode 100644 index 000000000000..8b8fa913070a --- /dev/null +++ b/games-util/pyfa/files/pyfa-1.15.1-staticdata.patch @@ -0,0 +1,61 @@ +From c7bb5210ce9feebb753734b5c581acca9f5c9d06 Mon Sep 17 00:00:00 2001 +From: Alexandre Rostovtsev +Date: Tue, 6 Oct 2015 21:37:44 -0400 +Subject: [PATCH] make gameDB and imgs.zip paths settable from configforced + +--- + config.py | 10 +++++++++- + gui/bitmapLoader.py | 2 +- + 2 files changed, 10 insertions(+), 2 deletions(-) + +diff --git a/config.py b/config.py +index 4072236..a9e71ee 100644 +--- a/config.py ++++ b/config.py +@@ -28,6 +28,7 @@ pyfaPath = None + savePath = None + saveDB = None + gameDB = None ++imgsZIP = None + + + class StreamToLogger(object): +@@ -66,6 +67,7 @@ def defPaths(): + global savePath + global saveDB + global gameDB ++ global imgsZIP + global saveInRoot + + if debug: +@@ -117,7 +119,13 @@ def defPaths(): + # The database where the static EVE data from the datadump is kept. + # This is not the standard sqlite datadump but a modified version created by eos + # maintenance script +- gameDB = os.path.join(pyfaPath, "eve.db") ++ gameDB = getattr(configforced, "gameDB", None) ++ if gameDB is None: ++ gameDB = os.path.join(pyfaPath, "eve.db") ++ ++ imgsZIP = getattr(configforced, "imgsZIP", None) ++ if imgsZIP is None: ++ imgsZIP = os.path.join(pyfaPath, "imgs.zip") + + ## DON'T MODIFY ANYTHING BELOW ## + import eos.config +diff --git a/gui/bitmapLoader.py b/gui/bitmapLoader.py +index 45026be..02985c1 100644 +--- a/gui/bitmapLoader.py ++++ b/gui/bitmapLoader.py +@@ -31,7 +31,7 @@ except ImportError: + class BitmapLoader(): + + try: +- archive = zipfile.ZipFile(os.path.join(config.pyfaPath, 'imgs.zip'), 'r') ++ archive = zipfile.ZipFile(config.imgsZIP, 'r') + except IOError: + archive = None + +-- +2.6.0 + diff --git a/games-util/pyfa/pyfa-9999.ebuild b/games-util/pyfa/pyfa-9999.ebuild index 76dac888c189..5e11d005abf5 100644 --- a/games-util/pyfa/pyfa-9999.ebuild +++ b/games-util/pyfa/pyfa-9999.ebuild @@ -15,7 +15,7 @@ LICENSE="GPL-3+ LGPL-2.1+ CC-BY-2.5 free-noncomm" SLOT="0" if [[ ${PV} = 9999 ]]; then EGIT_REPO_URI="https://github.com/DarkFenX/Pyfa.git" - inherit git-2 + inherit git-r3 KEYWORDS="" else SRC_URI="https://github.com/DarkFenX/Pyfa/archive/v${PV}.tar.gz -> pyfa-${PV}.tar.gz" @@ -25,34 +25,34 @@ IUSE="+graph" RDEPEND="dev-python/python-dateutil[${PYTHON_USEDEP}] dev-python/sqlalchemy[${PYTHON_USEDEP}] - dev-python/wxpython:2.8[${PYTHON_USEDEP}] + dev-python/wxpython:3.0[${PYTHON_USEDEP}] graph? ( dev-python/matplotlib[wxwidgets,${PYTHON_USEDEP}] dev-python/numpy[${PYTHON_USEDEP}] ) ${PYTHON_DEPS}" -DEPEND="app-arch/unzip" +DEPEND="app-arch/zip" -S=${WORKDIR}/Pyfa-${PV} +[[ ${PV} = 9999 ]] || S=${WORKDIR}/Pyfa-${PV} src_prepare() { # get rid of CRLF line endings introduced in 1.1.10 so patches work edos2unix config.py pyfa.py service/settings.py - # make staticPath settable from configforced again - epatch "${FILESDIR}/${PN}-1.1.20-staticPath.patch" + # load gameDB and images from separate staticdata directory + epatch "${FILESDIR}/${PN}-1.15.1-staticdata.patch" # do not try to save exported html to python sitedir epatch "${FILESDIR}/${PN}-1.1.8-html-export-path.patch" # fix import path in the main script for systemwide installation - epatch "${FILESDIR}/${PN}-1.1.11-import-pyfa.patch" + epatch "${FILESDIR}/${PN}-1.15.1-import-pyfa.patch" touch __init__.py pyfa_make_configforced() { mkdir -p "${BUILD_DIR}" || die sed -e "s:%%SITEDIR%%:$(python_get_sitedir):" \ -e "s:%%EPREFIX%%:${EPREFIX}:" \ - "${FILESDIR}/configforced.py" > "${BUILD_DIR}/configforced.py" + "${FILESDIR}/configforced-1.15.1.py" > "${BUILD_DIR}/configforced.py" sed -e "s:%%SITEDIR%%:$(python_get_sitedir):" \ pyfa.py > "${BUILD_DIR}/pyfa" } @@ -63,7 +63,7 @@ src_install() { pyfa_py_install() { local packagedir=$(python_get_sitedir)/${PN} insinto "${packagedir}" - doins -r eos gui icons service utils config*.py __init__.py gpl.txt + doins -r eos gui service utils config*.py __init__.py [[ -e info.py ]] && doins info.py # only in zip releases doins "${BUILD_DIR}/configforced.py" python_doscript "${BUILD_DIR}/pyfa" @@ -72,12 +72,19 @@ src_install() { python_foreach_impl pyfa_py_install insinto /usr/share/${PN} - doins -r staticdata + doins eve.db + + einfo "Compressing images ..." + pushd imgs > /dev/null || die + zip -r imgs.zip * || die "zip failed" + doins imgs.zip + popd > /dev/null || die + dodoc README.md insinto /usr/share/icons/hicolor/32x32/apps - doins icons/pyfa.png + doins imgs/gui/pyfa.png insinto /usr/share/icons/hicolor/64x64/apps - newins icons/pyfa64.png pyfa.png + newins imgs/gui/pyfa64.png pyfa.png domenu "${FILESDIR}/${PN}.desktop" } diff --git a/mail-client/thunderbird/Manifest b/mail-client/thunderbird/Manifest index bde4de1cccee..9c901033152f 100644 --- a/mail-client/thunderbird/Manifest +++ b/mail-client/thunderbird/Manifest @@ -3,13 +3,12 @@ DIST enigmail-1.8.1.tar.gz 1592706 SHA256 15b621455fb945b0ff1a55b50bd75e8bacee86 DIST enigmail-1.8.2.tar.gz 1604159 SHA256 1d2700799bc52aaa8e8c9f7a0f5111281ff9fbdffc093cdff070657d574eb2a6 SHA512 51eece988f466aeb4a343719a86dc7d95ec41dfc3ec7e3d8d2f360528675c605f8f2154f10aeea6ef82ed87c784f1d13bfc978e052a9ede0072b5137f6294b11 WHIRLPOOL e12a703899e0e4c98adc58b5f4bf1f74e24a2cf09c1a706a6edca6aca06140041b293f23e6e5b05c507177b4148533ebc3431fb75592aae07d791a899ba2c45c DIST firefox-24.0-patches-0.9.tar.xz 6576 SHA256 615b47ed076ead8f6fe8a9cc8b51ae7615bb8fb404a3e7254190e73c6669479f SHA512 caf76c23e3ad4ae0fd9d240d4ee61c289bfc727ae8117a17c27396d32ab9e06512cfa53da86c99e6c2d941eca96e18c41775473f3c4a16cf8c91a2e8dbe144ad WHIRLPOOL c0104c84c20a28b945ce2fe5a22e00ccd412d00bc38e4d51583fb47765bd639808db1a1bb52be9b7515423437ae131e12dd5f837b35d8e2e50dfb86341446396 DIST firefox-31.0-patches-0.3.tar.xz 6004 SHA256 1ca282d9b58e611c395fcda508bf0ddfebfc91ea6a6132b59f1acf90566f663c SHA512 4469ccc3200955bb790a177352ebdbfa5c2299581bbbd0d83be4e2e0ccd5cb850c5023f3784dfbb3cd5d0dbed9bea4b533bdbe1627e42ba60437b4743a0e8fae WHIRLPOOL 86b2da659dcb11f34cbb6bc966d7f7ab79fb3f8f3584f929ea50f7893bf84b01ece435c4598c05b538d0719fb0426fca51a1cc9f9abdecd8b8e8beb5109cc899 -DIST firefox-38.0-patches-0.3.tar.xz 4796 SHA256 bfbef81748f76f5f80c3ce6e6b810b65f6266f71da02722b1e8c9fad865b02bd SHA512 a974e33759246153db7d83488f1326275efd12c44a6c8c539cbc35709b4dbd27e848bda32f302ac2baa5d8729ba20579ebc7f643419757f542972ca1a264d520 WHIRLPOOL 3549239db380c02a1575ff407ea684a14827f2250d991b5eb6c8a341ceebaca57cd2cc422e160f00dfab933385d677574cd84947da07bd282c68bb84c40fa42b +DIST firefox-38.0-patches-04.tar.xz 5572 SHA256 501bd1cbd0ac7239674df4f7424e0dd57cab9ede47e18af0c99a8b8e04aa5ccc SHA512 311d494ba2a4219c88eea651e617aa776d6aa8ff68092302b76e9ff4e3e348c7197ec583923188e39973b7bd14f94df19756daf2495d9b0fe44aeaa3dcd19100 WHIRLPOOL 6605eaa0b80c97d2d5d23a23f7b8d92e7ed875787b932adf14622eb3fb5f5ccdebe8a094d78b3518d874b8819724af94100fd1728074ba4a5c426bbd91eeb722 DIST gdata-provider-1.0.3.tar.xz 55860 SHA256 2a6b8c1bed9c32dbb91bceadaf36986bffab4379ebf8ab1af83f9321b38f9cdd SHA512 d1a99e179f4bc57c98beef80c27c5f774dffdd177a0ee0adf27441aaea27f96d61e723e592f9fa813b943acb34f572d5769622e2dd45c5befec762e0cbe013fb WHIRLPOOL 2d896ae041ec8e6bd6f9474bf01ccc43925d89254cd6c719dfb70e1a5677f21fcc9536c2595f6b1b5823607d69248512d6dc9f5a1f208bd2e25a59f30a0c8c3f DIST gdata-provider-1.9.tar.xz 80812 SHA256 8e60960999c752c49d6414d14c35c2d0cc474d4a199ec99e531453d4d60bc5a3 SHA512 b1411b0a8614eb5e9fbdc0a41eb5ed38e8d4c90832e2a356fd0412b554af46bde4b766b213d9da3cafd85206da44d333354c9f6b469c95ddb190fa04fe14a54a WHIRLPOOL df7451e55f937c604d92faed82a16bddd6ca87a7c03981324c5409ab5824ac1c631ec767f10eaedc6f7128cd1f9001eca599c848d39e116d9722f26811b01092 DIST gdata-provider-2.6.3.xpi 115020 SHA256 008a302410b152e956cf56fc0abe4f6cc191ae51ab367abb7e0467ee65d44093 SHA512 38d2a581842de0937a96b7498db06aca120b8cd6b9de96a0285e90f57c28118193a24f32c9fdbee72233db0675a35c7bc51fd3ba6ec41bcf4521adf48107624e WHIRLPOOL 70d87e73d355559879daf4a00c9ff45c24a455af5fb2f93e8034811b0c444799bd754cb00ef63c321c3f7d85e98a62148fd0e9524fcc07edccb5c02772d7b515 DIST lightning-2.6.5.xpi 3645840 SHA256 c4bc84f7e21148d6d06f4f61de70c7b4e331b53dce12979309e91294d4289b31 SHA512 880002e1c01a06b22ca20a120a5e4d893c364b058d7d52d12dddcdd3f4215652ae2c20332c3ca29fa6c5012df71330abda05bf3b862485043ddd481628ef801b WHIRLPOOL 5003a341a174cbe7da8b069d9f5d6ade0a7c0e8d842a0c25f74702e997942b3ea43be1e0eb6913d75bc78ef23fb2ee57551860d02b331db039cd6adbfcfa1f5c DIST lightning-3.3.xpi 4226096 SHA256 eedaf565bc253a6bc21618dcc95eb2cef121745c249734514bf37ebd6abb3e5a SHA512 c0ae9d259ec28eb6d7335426cbaeaf2701b4a1230de203a5bcccb86937cadca6622031e7a7de11fa5a733631d20a2362fbdc04a1ab649a9383a2ae9114ab9c34 WHIRLPOOL abebc35ca3eaddd50e8660e647c6382943327237375e1c31c567d03b4a91ced37c55d3e5e41b88d252d5fa025c56147ecb53e20dba98c08a2134b38848ffe98a -DIST lightning-4.0.1.xpi 6637522 SHA256 a93af3b8548a82e5709ed1c0d06d0a103e3fcdd5e554b1124e42166a814be3a6 SHA512 ed8ae62eb6b339a4108756934142dbc2aeb7e039d6fd856067bf3f24ce5a2450336e281dd018b5a14c359c5f58fc20668e5cad4b3929955572f44002be1a940c WHIRLPOOL caa23550eab6cc8f4b8ec63dd6c34282944cb9f150885ab2120d315db0910b640fab3fdb466d97cc7e15364e88bdc09c7041f107d11bf508f361979de1bf2722 DIST lightning-4.0.2.xpi 6637618 SHA256 d2d4985058dc2755243fb60a7869cf07e835f871fb098ccc2c7faa5d07f63ea6 SHA512 f73afe1e4ee0e822102226a39f657fdcc397dd4bdd3824d9b793f6fab667fc70eb5bbee48cf088a5c1efe229ac8d564bf36c8998c2e10210f70612d380b7e2c9 WHIRLPOOL 7488b49ba36f385552951eb34c36098af522161ec9784cc10db5659efe002d415e5df13ae11b9eba06a1fa329e85f75adb0a025b8cbc71814f3f7195e6b4ad77 DIST thunderbird-24.0-patches-0.1.tar.xz 1056 SHA256 2a4e128a6f5c35c865fbef77c006e6b24b98f89ceee5de6cfbf572e2c5fdca70 SHA512 aa411270fa4b6ffebbbb210a57a4b5c900ae5a696b7d6050dab2ee439365f3fc7e348c5c45b7632279d6f3c54009e7b29f1acb42501960489157875d79891361 WHIRLPOOL b7e7329d1eb78b222cc18c7b1750e737706e66f64b31ccd94ddf27733d0b8c651d001798d2319e544ac558affe76f69be71a225e246b99a36cee4fd0808dcf5f DIST thunderbird-24.8.0-ar.xpi 457862 SHA256 e954ec8c64356b82006b01f3bb30d247994ce81f37a7e96de93c606b464c55cc SHA512 f8267f4ef885d900e15bc8609503ea6da37dde39b17362b0e35d384ec51416847c4c898a638708dcbc792bfb1a819bacc1b1f9f8bbff45623ea521c902929cce WHIRLPOOL 8116a679e37eae740e880fcadb48ade6d49cb96732a4f4212038f1ed03c15288219fc7be9a308709a658882872dc79aa794907643df7ab2c139358192635eb98 @@ -124,63 +123,6 @@ DIST thunderbird-31.8.0-zh-CN.xpi 462668 SHA256 09116541b41128d53caa6c14c6c66078 DIST thunderbird-31.8.0-zh-TW.xpi 463408 SHA256 2bfd0efd2a0695733bf59d0a8f2c184c4798cc1f3589672f3095a77217d9bbe5 SHA512 cd71d2e4a08ec157b95e70a2ff7acdd62c4c21ac93040b6183be55a14d6b3a4fdf5f9915078ce2487d544d3a2dde3954d5aed40ab3276f72615fb4462e4974a8 WHIRLPOOL 8939d94d9d5ca7ed72fe9e05ebbde37090410ed9b3d1d7d2a8f5495d718e2904f516a5bc123580c87d84baba01bde6c359c66ee371c003fbfc5f65a02111c6b1 DIST thunderbird-31.8.0.source.tar.bz2 171428094 SHA256 16731f49640e01b908d704e7477b4d9628cb2af9c2a492e5b996adf5218112df SHA512 a37133ca0764df44cde41429b5165e53496d58db1168529388d565c8169b2078492241bf9c95c864b76b226e7b2ec95ac1c121561bc0a87bd5faa8b94a1862d0 WHIRLPOOL 47a8fc9c9828a785e660dbf4e2313be46a6a53d290f489334b7cf2d9bb78129e6a7dd3b9f22f0a1bbbc3bc18145d78751a272190f3e0a503b40962ccee542b08 DIST thunderbird-38.0-patches-0.1.tar.xz 684 SHA256 cd2a347b72a104e72d38e56bb92df3464e8820485119b4114dbd0bbda131a808 SHA512 52c83af301be959e861dfec55b3c4bc60035387c606976bd29232c4cba077230edcadef242491e699fba10027d0408dd4f33fa320bcf96727afe149166ca02de WHIRLPOOL a378a0fa1b152f17681a5e389662fedfacd45a137b224f038d3c98ab4a024bcf9e753fb2fe018cdb7126fb710ee8baabdf7882540450ead2985070d0d1f12eb0 -DIST thunderbird-38.1.0-ar.xpi 475295 SHA256 8bc4384ede05efcb02e67a8888651a81f22cbaea3bbf6072e156d707e2a9ad49 SHA512 cb8fa60dd8531d6ae4c8015d41568dedab74a83eaa742ea714224f276a8a3d4d71e1cd84e6f4d4e17e4b09a6fcca8b94d2b885c4323776bdd037922b6b38ae31 WHIRLPOOL 37767cc83500f47b40f554cdbc298de10eca85887b80800678a4ac4cfe2afce7d026c52d3dbf45449b81300c407883f1aafc863c1dcc7a25cfbb8e1555c2ab96 -DIST thunderbird-38.1.0-ast.xpi 405893 SHA256 2a8b35fb65014cc2789e38a396a9c153b8726f5cc5c50ec042e29d9c7972b4fb SHA512 9de891efb22720b9c0b71d9290e4643528b269eb595e6f3d1ebcbebda05d061b6db4b49ba934c49039dcbb424db10dd72baf748469387fcbf7726f91b852cbd2 WHIRLPOOL 9782a065f54b748f259a9fd365b9b652b29c8d670552239d319981205a15ff911a7296eb24225bb93c2f987c05feac29fe06861313ae904887e469ff98a2c53a -DIST thunderbird-38.1.0-be.xpi 442473 SHA256 0bd3e4dcc65e44d62127fb1832803f75a0bad4cd179135375460327363e81864 SHA512 3a51c25cd27432d64b5980378019f6c5e455c657f3c72a0b72b11fde8cd04d51d9a09f1199e6539c7531aaebc85bc1016fff4e11cd19c98c2810e07a00c38c3a WHIRLPOOL ce6386e21ac5eaf9c8b199699d9d44daaa04aaf142436070824d6b90625c5ac410cf36a99e6241f84f0da2592e3fe420ee920997ddcdc2dbf096495133d3acd4 -DIST thunderbird-38.1.0-bg.xpi 506149 SHA256 806a7f2d151db0f5334b2791dbd708b3f631b2ec214b2f6edfa7aa95abe0b59a SHA512 6fc098efa1c66d3b847ba30e92c41bbe386d83bb2f3d9506e0555aff4a226f082962c5d377074c470b31aee20b917567d0e4816bdf94093abd4754830efbde69 WHIRLPOOL 5d51780c129379203f6796a2054e7ff4ae1d81dfdc7f6234840024591028f98cdfac9df7398d67a66f521f9a7d1273fe2240f33df6ada62ef9e92c9ec4adbfda -DIST thunderbird-38.1.0-bn-BD.xpi 560648 SHA256 5f16873ea47e84fb01a263f7ab59a90188ad6c5b57ab13b90c925b4a8d0bf06a SHA512 902bd6c4e55876ee2af76b8b4b60a1c4dae7a76a436e46bbfaf3cd9ead59a631871e6de561cc85e0c0e6953209f11719376a8aedb95bea911f89d0bcb48487f9 WHIRLPOOL 0bb2d627bdbe4566b3bcab6499fe3e0582a63060d0d9faaaa2545b0b1b7977744172af0b3ac8df4dc275ab5ae149ac0b0d733971c7fd76be74cd75afbebcb536 -DIST thunderbird-38.1.0-br.xpi 449788 SHA256 c976d2fdb520e178df568a5824f4416b043f9ebbe436ddbfb81ef5b5f972d6e9 SHA512 6f65a0df88c83068746a74a0730cc306c8679efc3aab8db17a7baae90b289022743134b08db3941fe62a0bc573f372e41ed24771dd88d957ee99f57278444f85 WHIRLPOOL bc673bd36d1925e5b7ecd176a74481ba1c3cb7ee2957c9920dfdee870977b420e7b179a05c02cb51942a3695857d674ba03e5593ffeb21ab2def602a4f67eb73 -DIST thunderbird-38.1.0-ca.xpi 450347 SHA256 82a2eef48fefe335f1f8d53d21861a45f7b73b4ad8b65c912f9820bf69273309 SHA512 914cc04784793762392010bde0a32228720a4ad76b9381e63717d32012b0b49b69cbd26b2616a14ba4cd057e1d70a9489890ee7f7e3f6bea85bb9874ddba4715 WHIRLPOOL 1cf1d2e27daa1fd9205e68bd7910c91fb0b999ca3aa3f515c8091b5cf038d935769a8b143e505efaca2f7d9cac2d673401fb94aedde31a9bb1c2c0c67ce61bfa -DIST thunderbird-38.1.0-cs.xpi 448723 SHA256 a1e0b882b599705e1150a66139fee97dc009be2a8e64e6a7c2b1158373bfd3ca SHA512 268171ca2a3401ae13e711e5decf1bcd3e2c1b76eeee39390b155e73165a7b05f95910a65fc69005dc347abab3dca37177b067589cfad1e5928cc15aa45d17cb WHIRLPOOL 21f010619c319c46f988f01900969f48e6d7cc8e2be92803714644d23b4540a25f727f0bf866ba177400d16d5a614f9f91e580bed68c1abb84beaa7978d50b7e -DIST thunderbird-38.1.0-cy.xpi 434848 SHA256 877cbe5d9dba3f90c2754788baaa137fb45bf9e2d071a50df69e970f341a6365 SHA512 acd4c4e811792d68e2a1f58517f9a9b07976354630f396ea994b9be43bca616bee05edf998347e87f542b85eadaf9a0dfe866a9e08a4f2854e29a8267a7a724d WHIRLPOOL aba90842e54b2636c7a5e8d599087b21672fcf4e8ea0e8123302ad8566e859fd8abd6afac258630938a08e0ca2e0d49c47bb52d535634e39f546aff1f6cc0928 -DIST thunderbird-38.1.0-da.xpi 425828 SHA256 fad0fc825311a1b546eb117c8cc838f542485ff87cb71c5a656c449366a71526 SHA512 ae0f931ca42143ea154b0a5c8442f3cc7ea7c2684f90ead32f8f61ba520367ace19293eba21c6eb2f17a7f600bd75262098a972356ef3efaada8a40180327831 WHIRLPOOL 3dffc0d259e0877c085bc34eeb827808dc7496f97283c6fd9c5d82f20ab7fff6d0916da528e999ac7d00d0c89fded72ab14c2d523bab6f9e4060daed3bf5c053 -DIST thunderbird-38.1.0-de.xpi 429876 SHA256 bc900b8f0f2db4c0e5527780db826789d61bf5b265ccf62033909fbb4f21e12e SHA512 9e6d9eb4f537d03627f5f9566a5c1c78b80e34706fac60ed7fdd32f071d574b9590df89751b1d0257fc8495fcea78682f11ced2130163151945014cab5a56568 WHIRLPOOL 2d19fcf7698e16588f929b54a9665f6cf71a7457d54dd331a8fcc5767aacbd0d6e0e7eed515362484fed2d1bbdb078be6928b6263242685b9b7cc1c6a20fe61d -DIST thunderbird-38.1.0-el.xpi 493511 SHA256 d6df1e34d17723f2b52aecea1fab9af964bd936816f51e5dc0f335bbf59a9a6c SHA512 768a6ca1c5611a1cb712cced47f6678bf5c85182929a198a4885ad8cfa9359aa906d290b3de93e8dabaa2cfd1f809bff9601d12abcd3feece5b0c0e429a30f21 WHIRLPOOL caec8f093ff178aa212b8907ebc8f8e9cbeb66bab9e14e914ec5c81da9cfca6fc53f67a2ad6203ad49fc99e3e1ff62be8e4f2bef79e1d0ae9f9336b18c5584a2 -DIST thunderbird-38.1.0-en-GB.xpi 416571 SHA256 07e443159860c85c82f01dbc57e0c83904fa7788dd69fb234970ef0484afdc81 SHA512 b60b0b2410f0e61d491db9538530e6eca40f43801e33b75ee4fcc94808893b81186cd7d759549fbb0abfad38c5d03c38a358a2314c48558b43164d1b62b6687a WHIRLPOOL d0e6237a104ac78e85a20e0fed5109d3a36ae0d2920af72c01f457b5c13b8b4a457c727b00512bf73d87d96c68d645678097c3e99eb0790465795262431bd294 -DIST thunderbird-38.1.0-es-AR.xpi 442640 SHA256 c5b0d927e51ef06414cc14a64ab84d0d4e3b86f2833dd0bc1211a056507d425d SHA512 9110f799b42ef8fc629f15849588b60fc3cde6e58286cb61f17b26b0b5c7174bdd25ad324badc1909f6329000ef987dedbb485e2a7e42cdf9563229ef4a562fb WHIRLPOOL 37a08ffde4646e5e34b9e9d0de912271815ee85fefa7325db9df7cf7f40ac0856cf751534a8b6f25c45c06453f2cd188a75d5b0b32275120229e28f7fffd4de7 -DIST thunderbird-38.1.0-es-ES.xpi 376066 SHA256 79bb32e02108f6f8971c6504adc39ff45a202cb91b6e7daca286a3b0aaa6e1b0 SHA512 388f5b8d4713efd92cec581fded9a90a6bbf80958f77fc1b40e533851ecb2bb5d3c16a3ec74fe448d2a2db613d08bf5ffb42d150426dc846d34694208d274dff WHIRLPOOL ce5757a6dc4698cc5942da060b2d5dcfc73469a9a38a7d60890bf37a5c16f462ce3454599de88f1b6dbd82418cb0f5a7987eb3d24d3deaf787de08c96d1112c8 -DIST thunderbird-38.1.0-et.xpi 438262 SHA256 9fe401fa441232dd29fee49d26fcb65af34ccffc2666bf2fb09546a947d91e9d SHA512 56cf66e23983983535d86b1d772ba133b93b6d45e05768780ad0b471b9c284c9a0bee466dfc162fa8d53e83b87bcb86027e23b9bf4491df072d5b18e3d91c86c WHIRLPOOL 3211c433fe48be15600c60b6c9b9d186dd740c858d0204a647d16d17d6ab7942191bc7e33aa04ab8271b906048f8c5c0f9c648e4859f118282e01b744ab5a382 -DIST thunderbird-38.1.0-eu.xpi 434837 SHA256 0d54de9beec9e2f232a016d93d0b626bf8be86a1966ad6fb02c8d1cfe531a3f0 SHA512 55f2202ae4a3d52944a71c06a9faaa9c6be9ddddcffe6f8116dbc8283dfec24d5cf0f6dfc28f1c2af2381ddab5427bdb1e4a821356f13ae54268e35084bcee14 WHIRLPOOL fabcca0cc70d928a203af9498bde229ede4d75bea39020a3baed86595f59169a787659dde6aa9a8266c5ede06b4e4f93a2f3dfeb546dc5420a320b919bdf5f2c -DIST thunderbird-38.1.0-fi.xpi 438889 SHA256 cc7bf6325bf7d4c914cb7958687c776db8e2444cd969ac16e91d6a67be0ab729 SHA512 5e7ea275f05dcec6e4786aa2861e6944f2e80ed6f36cfaeab42484ad11e218be620ba9e72fe1271f304b3c9bcc2eaf08b5e1f5ae9f64fc0440622f16fd139d61 WHIRLPOOL c8d5cc80a791828e8e1881dfc72633373742960874a0b63aae4504c2db35a1e172808077e8b295e001414707a43c3eb9590a23c64261e79ba68971f181b76c49 -DIST thunderbird-38.1.0-fr.xpi 448227 SHA256 56dbffbc5e1286f71eeb33961e209a6c6a9dd3916c4b3432733baf8f10c10e77 SHA512 7c38d209a3be6a49e0777df74e56107d149bb28a8071db146556c0aaf9f3dfa5dd34839cd64311d2db3f543706820cc3058d9c14e3ca216d9ed5339d147fd113 WHIRLPOOL 70ba05665af63341fb4ae510c5959bf861b9b146bd675a2d9ebe6b2e19fb3562f805df4281ac6de4a863ac2f1782d307a403012838ef3c77ddaf82e6de81b0cb -DIST thunderbird-38.1.0-fy-NL.xpi 442161 SHA256 00ec21c0bab139981ab81902051d7c59a5fa3a6ae7865e9613ebd95c0fe1bf87 SHA512 2797c569cb1466e65b090975fd01db88065ea4631c740ea37cc2ca2aff3fe31fe746cc463738440618decd8899192839c3cfb8e826ae73b7a8d3ebedfca881b2 WHIRLPOOL d8d44b1b8c38da2cf336b3b3ef127d54c67295cd061be38a2443abac18594fa3cee668d62d044f720985e9ce96bd5ad8a69aa7fd4522d0f19ff0366737cc2a5d -DIST thunderbird-38.1.0-ga-IE.xpi 457412 SHA256 76384620c71115c8ebb3afcc4b30de9de45d1230e44983b4bd3d1473bb9c144e SHA512 e4334a33f704de6e1e51a342b165b42c7a2c5fbbb1f74ed4532fba20098adc9b23a8b4e65f48bb995117d8e8c59a9b4938b83af4ec1683d2ddf471365eee7c26 WHIRLPOOL 0a3b1cfc1bed92403e37117944070972ec7732c7593239dfb8554ef779aed600dd0b7c0f1f276706d61659a31d63ab70be58a89a0c5a24570d6a894f1087467c -DIST thunderbird-38.1.0-gd.xpi 456317 SHA256 1da8565cafbb009abb0b0424fc15e0dc2bcf2c3048e14f7e1cf5e62bb5618835 SHA512 37948f8d660f71f4bc8cfeee8fd57b8e904bf0d82844940389bdd92647743861c6b55b755d38be43c0e17a19c80963bcd19f66b7a924ec1e1482d654f392809e WHIRLPOOL 5bdacf218b791809ac28b936a5809cad9737873e325d63ed4eb4f6137fddd28912854bbfc802c9916d58304ad2d9c5c547fc9bef2886015138358fed846c29ac -DIST thunderbird-38.1.0-gl.xpi 457860 SHA256 ff3d29d1a050b74e64e0a4450b65edb247a5eb36a1b8df6b57dc3851b1658fd3 SHA512 56bb87f1df17f25d5067c8c0c2d450066970d316d0cd67d3e8b51916f999c0b25e7fe5d15de506a01622095d724b1492d760d1d1c3259a0b16b59628019dc116 WHIRLPOOL 9395bdf33dd6c634bb9727442e13ffbfb41cb145ba17f04387798770ff561a04a5bcbd470dbc4830b07323d5a6c334240b8923db900746c1cd65a21517f72dc8 -DIST thunderbird-38.1.0-he.xpi 485888 SHA256 aab3240dca233f9e6ec9077be40a3d0033d75ccbd196a9ccce2726261c9d4c41 SHA512 9c42ac8fe730ec61adf3304281d49757a47dce6e9ffc9c233368d5c4187e9314e943f167435b5077285b1b4f647a2b13f4d1c691c738f74635b225c9d389a940 WHIRLPOOL 2ff8a0c59153cc288389ee777716afea3313402a2815dd18e8caaa9bbb0a8d48a6c6e911aa7d3b0bd298e6cabd9052fe067c507f1d1cc458f28b89a944b0c34c -DIST thunderbird-38.1.0-hr.xpi 440419 SHA256 f368ccd53d7d405c07149b351f56d391142b40e8774d9d7fa623ff3318428b6a SHA512 193270f7567d3c44d27e04a9ae8aade37ddef7c38f26965bd2aedda8a6803f9f6d69a5899f8de7cefbc7ebd4ad1aa54a840df21ed51dc2485669e2c0339d6d2e WHIRLPOOL 530087456acef4d1f2d4d8174a826fe1533a8ac121377099993301f9c373a2b421fb9508ebe34de90b5594d81cc928a8f48bf04886180eaddf111aa396962837 -DIST thunderbird-38.1.0-hsb.xpi 456454 SHA256 f47a8a2ff662acef03541ead6caf3e900706ce348b7577cd656222e9dcc2c47a SHA512 734ce7c3e0bf0f030da540f5acb1ae586c27a41474c718ecb911b03449130c6753a0c37202b232b83c9b6943bcf49f1f8e57bb945e580b15c09ed50becc5157d WHIRLPOOL 8f712f5f7202991dd22262b4a5406d04b20f764d661552e30b43cb561c06217c2ceb4819574b7071c4b67f7ca53d22323064300a97152323415a2827bbb8d4d4 -DIST thunderbird-38.1.0-hu.xpi 457987 SHA256 c8393cb2f5c8aab62fec71e53f19791e7ce4d3acc37814a4796e7b390a4e1fcf SHA512 84743fc8e8f272eec14a9341f08688c07c36730813f832e27811e9cfa34b30b13c5bf197b1ac41005724ff71ef2c9d87384066de385a60c888f794859e8b0547 WHIRLPOOL 562822eb2fa08d3323a51c2da47f3756941f0b0851bd191c54ea50ea58058fee04ea331ab7bfdf8d32547f2b43498abdb5d8bc047247736ede03130c5c33040c -DIST thunderbird-38.1.0-hy-AM.xpi 500379 SHA256 56454db77528fd2bc02abd4f4ecde69adbe278cbe807842e3e92d709d5df526c SHA512 57fcfe8abfa0d7e3c109bbbd54d6e7d87affbee17bff3e0c4054790a8d80400686f785b0bd02197b8845a12d71be59e03ca09ca9c0f6ad2228ca4cebb2ae2583 WHIRLPOOL 0ae42cc1d667776453b110c0d9e21f1e8c80af7cf1d0e4b9a9786d072d707cabea398223588eb120d9d6a0ddacead7586082cf26d3c26162eb365d0250b062b3 -DIST thunderbird-38.1.0-id.xpi 483209 SHA256 913db42b7530f55a8f3836d4dd493cf45df86509c77cfc64aca28c4bf60c6321 SHA512 921e941c2ba48f71d0051f64337dae777ece1b4c431c770ffb59dda77d3d6affdab5e1325d3735f185c2e6036a8bcf4654669dfb5e45223752b5182042293f96 WHIRLPOOL e93b6acd424ca87c91c3172b19e654a5bd97f0fc1502cd0cbe8baa4fec68a9933c0bff37e99d1090211bfa7da97aa21763b5374be6756ae8a2187c0ae7c9dc2a -DIST thunderbird-38.1.0-is.xpi 443008 SHA256 0a0194046282ea36e3c48238f08bfa9ffff07531d473b9a800628b6fb22b4970 SHA512 ed917f0509eeec67a02c633551c1eb0480f6b4b9ce4448869bd99d9269979a52ac1c450bd8b8b27338f481c0a46dada125474e0b0d27f04c2ff0320488fb8e86 WHIRLPOOL 99f202a528e2aefbbfaf963448f846afab231c9bd1c9ab100f658636594633df5c344b0c5f6f106ea80d557588c640b661a054c6734f8456ea1864ea59de9656 -DIST thunderbird-38.1.0-it.xpi 369023 SHA256 2b7659c9a0c57e608d05f64bff90b3f6e631ce089ed1135465e89a133482fca7 SHA512 1ab2b5255fd9e5a5b8040d72a690ad7d3d92189f0f55ea175e0b6982dd4f14dc754129821c9f208979ee33286509fda1343e51474ad259fc078acedb3c91b246 WHIRLPOOL 49046c224a488b5f967aa4161d5a7c6aeaac42531ec4a6297cd37805de5288f8b6bad06522ebeaac4358fea5d6fc9533e223ba22a79920f27a2e1c587ab132d0 -DIST thunderbird-38.1.0-ja.xpi 492860 SHA256 c790816d9a735d0ff3e3d82516b6c10076a94c6e278fdea05f04d52615984257 SHA512 4b14e14e3be3d7d4839c52617200d7c2d9dac3f7e7f4e9e69657f51b42750a1e9aa1b23a47b361fdfe959f66e6adf5fee9fed73f3f80588de77c532376ca69ff WHIRLPOOL d6ae239e45c3646748315aecea853407f75bec6b155a0985d93236209167dfde2462d5aa8d7c3b113ae43a0119ee49da527f9423629a9ef720885c61ce8e6b53 -DIST thunderbird-38.1.0-ko.xpi 454852 SHA256 42a147ac06a0cd7995a78f014259464db2e51391aec4ea16a548e0d5f156d951 SHA512 f85cf05450159b0680463f64e0aef47fb1c257d96d7edf69bb30cb1085d4cb2791054ff1d3e8e1c457bdc495ab3400b1fb87441b632518fad2d75b96f6c9a479 WHIRLPOOL 2980c6214cafec7d72adfe415ffaa7073a50b3fd4cf850646476745a972ecea8921205ef5ec36442687b77a9b3066ae42fe9baf2830db7193627e8d3e1e0421d -DIST thunderbird-38.1.0-lt.xpi 454571 SHA256 bbdb182ae21c8b8da1175b5a936e8563250838e538004a45b7847d27a0b192ad SHA512 48105894bab38f2172f8f2d0c827f602ec64c0bdba1b42d118605fc24f08e1389a19fd02bbfd5d87144a952622a4c1cbacad4e7ebeb7c4ee61e012981cb3fa55 WHIRLPOOL b2c300b0e4cbb4ad295862a385c14b7f650c2af612629fab7254010cb3fdbc8ea94e3bf7bf618ba3793e3dc97ce585f320e2dcd5ee9d3980a27454c51d6e0d1e -DIST thunderbird-38.1.0-nb-NO.xpi 434340 SHA256 e4b10c9cfd80c6f9b683880e454cc3dcd2e9eb01acdc0090e73b6c6b6b71a7d3 SHA512 45cd2f27ed20fc4dd9524637b23dda1540436f6c1907593a542f534c5cbba0b550fbaa8fd392f253a43be9e1e7f44e5e4efe3173448c0c474993df99a05d0f34 WHIRLPOOL 51a7bbe055d4362ac957cc003e1fae5d695e2e1795b57b9d18ec370f174e183e3c49de12b459e6541f34f5552981a17883fca022655c0487c8e782dbab8ae980 -DIST thunderbird-38.1.0-nl.xpi 435107 SHA256 032f473e1fce313d8d9cdcc49cdaf390711c266069c45df4dbee2e9c81e19b0d SHA512 109d4350fffd9fd2f67785ca1714ca5f31059d1c123b58fac167f25326d360a7119b52acc5ad414d9b5d130437ee6410d3f114a2672d9be72e00829dac6d9b7a WHIRLPOOL 2e7d7f16c7ffe06e94b6c43db8861a166239b2900721167703a8091dea8960a6de9680c70590b8b22f4fc785d53e84bf067cc91aee0d5dd5fcd5725fa4c01995 -DIST thunderbird-38.1.0-nn-NO.xpi 436622 SHA256 361710679e3229b98aa5785b1cf36afa493e5ded84353a69574e4cbe7f5bbe29 SHA512 b76a3a779dcdc0239a4af5cf05edf522392a67824d756708dfe9d4e9e7def38ea07e4e2ec622bb7fd44c57bb91e88136c978e2c215f9e03d1babaa84d5203bec WHIRLPOOL 5d05d6c8bf9e2213994504720434e7781618da2904299d3e9b9ae45a897a67cba0a41e9577ddc0b9ae2dea1b5b3990e01596cdb5097bf34d754d1207cd030b61 -DIST thunderbird-38.1.0-pa-IN.xpi 530483 SHA256 53afb6a6ff09df13b97ffc88f95a527d860e751fd79e873a78be2e7bd977a15e SHA512 36d63c933d5d37a4108158a12a9010eb90f62c3c7f0dc3fe30c9e114ef6b8c858d0a72f5020f177d4c8b71391f419ddff67fc071c04a08cfbca2383f940fbbdf WHIRLPOOL 8c0e41dd39c0229a8ea70d256a176bc3bd31a79e071b6afd08ba7403627ba8b02ff47fcd7277a97bcc2a06990be6bbb6f785675944815360e9dd0a2715c295dc -DIST thunderbird-38.1.0-pl.xpi 411508 SHA256 d9c770408d6b8cc52df4113ccfeb339fc7e34ca45a62df49ee5f24e70a5e3503 SHA512 0a1ab6513a3ab150d0a249e61027edca34bfb42c0c6ad3480f2c9b43493f37610f0ebf503d06e3d069207a491d42d9aca544afb54ca2f2f3fc78e48171b82979 WHIRLPOOL 59c4bda706c1bf5b9599c4567339bb5f95d461dccec4d51ac8be98ae8104e7962033c99018bfec375d7773ebacfe2d8c1fd6bbb7caeebe09b51fdc095a8ac2bd -DIST thunderbird-38.1.0-pt-BR.xpi 443773 SHA256 8160379e9ff6319939e7a9e2d37c0a7f66f436796f16c0c3ef8a70f1a2e17ea0 SHA512 d36e43092058e352a0c6c3d605cd48c80d62266fe5ff6870a8032b3ae8aa7c5c779896a65db22a4c331adfe3b31669f160ed33602cd6d0e1635442580105f5b0 WHIRLPOOL a6439044cc8b936d32f113d93b305424c7c3a1e5fe6954291e08f932275d1afbfa9ebe9e7428971768d1294d51a69cd0e5db743316c70a6cc8a81a2b4048ddd8 -DIST thunderbird-38.1.0-pt-PT.xpi 442063 SHA256 d6354d745df58c48d15792c35aa8f4874d11bff0980df6b567de58f659357efe SHA512 451c6221d5a1acac6c2b68f2be0a833486904cc8236d1cf68000b4ef2c2e3bab1ddf623c21c67f6335bfd7003a92e1efc84f5961e452907ab39d934d4bdb0316 WHIRLPOOL c93e1c58e8ddbf7c3adcfc4d92037ecaee99f24ef3f32a35b51e4f9f59698f1865dfaff9290e613867ec391c5f46a6a84914722724f326529577b892ec1f2882 -DIST thunderbird-38.1.0-rm.xpi 442112 SHA256 fbc4bb3603cd5927c98e82ca83e830bd0c0807cc63ee0215f60e1cea66cc4400 SHA512 b5a9435a3de499154b5113f48b59c7caba6d216bd17d74d41abf9cd308f7262392cbdc9647d4df4958d9a8c770cc6a0325ee50b6f5a7a9c2bbfdac25cf414e10 WHIRLPOOL d3c671ad440b88bf6de4009bc86994ab959f5106629a13c071566fd79e748b2a63ac0add8789950545619bd29f5627f0bac2f57d7104d3c004e89c0cd727e245 -DIST thunderbird-38.1.0-ro.xpi 448347 SHA256 2e768e1a2e9ae04bafea1948c19b2b6e83f436f3a2841a94550f95bde7b30b42 SHA512 4c8d92655e25e3aa897d6ee82ab603867ce5ff94cfa3a9905752406b01c4e21f3555d3925398d36927bb03b409f963484303ae281f1865fd8c43a4dcc3943b68 WHIRLPOOL efc5fd7df29e3b76ccd17730dc5161c9f208d386e8e32fe2cbd7a6c07d51ce4ace8bf74d457feaa86a3a19899b0ae5338f0144981cb726ec96dfe06fcfdaf477 -DIST thunderbird-38.1.0-ru.xpi 437591 SHA256 85ab5454186b1a35c1268a8854b2407f1a260857a092de2cdc1c0fb84e278104 SHA512 0af66f2923376e8aa3d646923347538451ef8239933052a5f6b984e7b805e2d664881613ffb805b000d04b02c54f8e59ff7138f9f0d68f7c327ed5657df21805 WHIRLPOOL 6ef4ceab17f8ec824f38c7eb3b41bc5f998239928ec1aa4796f296d03639f2780927366ae715459b2d43ab30550f8a9f78e723dafa25f04654f423baca845b05 -DIST thunderbird-38.1.0-si.xpi 535362 SHA256 8df4c4ca6dbb901f419b69b37da8b0762483e080513b6cebe0d4424444f6ce25 SHA512 ceaaff93b4b55961d5d6a30aa801d16487193bde9c42b5b58a57cbbbd3476aee8c3955a90c353f30121480d738d2b8bf0ed40cb6132be3f5d0ddadb47bc088c0 WHIRLPOOL 3e65b4a10d0d948b3ccb1b8728c730c797486505b2a5557cbc14e0adb1fa8f60c8638161ad94bd5818db291190c06b4ceb3222445ff66360e7e502957bdb4fbe -DIST thunderbird-38.1.0-sk.xpi 456606 SHA256 8b34d932a49e56cc47b9dae57f7a515b40bcc1ae4efa50f1dd275855abb30659 SHA512 d4078fe186924846b3f98b76518bb3aa1075b7ad023060ab42f680d0058a5f5496958b2e6038cb8f52174cefba7951d3608b40d806a978363bbd9a212e4d1327 WHIRLPOOL 27ade9ad8d1b9e6524b4dd5b6f5d354b28f1af4c72136569c1127a0edfcb256c6ccda33a2dd6fbc32350d1dd15e9e5843a45b67f82be81eab633ebd48332f446 -DIST thunderbird-38.1.0-sl.xpi 437847 SHA256 7d2bbe2b04052165bde61b4e24f2c928460f914a57c8bec36d3496de67d5dd66 SHA512 bf5f55c46957297d56d3c061552c18ef42e5c39376d2a69340e052a6cb4f9be1685a3631263102444317e3e3d74a83e16498619439a8bb2f79bc64187c84c683 WHIRLPOOL af214ee8d40ba59535047d6cebea0135f52df57ab3d28f17e2f7e665c22408b858f37d41579fbbb20b098da649a46ab687ffe087d8ab1e5197f12db961b95431 -DIST thunderbird-38.1.0-sq.xpi 446896 SHA256 0e41b9ab3ec7853e3c8d19ad6380598ccc4d04884426f64be577a045f876cdd6 SHA512 41daf3b6c0b30d171017d9ac929de4d31ad1e9966509f319a2ab998865e699c7c433f8a6158cedf93d06e376b78ccb4d20081d7de50023590670ff18e21d8f94 WHIRLPOOL a1c6a72faaa7d9be63cf0bb30ac131207f3d1af1f8c21c5d18662141a6b44d20a9046ad73a7dd8829aca9f89fd01ec56db55c8e55e04d29844728ed8410d5ace -DIST thunderbird-38.1.0-sr.xpi 543336 SHA256 c2d6d4a751580f2107aaeec7f23584ca7a8803cd15289fbf863d124a1801ffee SHA512 bcea2e30e0cd9a2327913fb472537fbbbf40e179270859cb3739bebbb14bc91c15566de46d0dd3a2f867944c68fd06243f5d2530d7da1b70b1e14186db5e46ce WHIRLPOOL d3725d45a9d8e811c956f584603299819a719b371dfd5d69d7e4692d106379078b2f33d6581e37f61097196e52797639dba8a4b9d48becf114976765b27baf33 -DIST thunderbird-38.1.0-sv-SE.xpi 439633 SHA256 59cfe9b9ee411b92e288d0050ba3baddd5bc7bb779ed4fbff7681ae252053133 SHA512 455ac778423c502dc3b7512312c7838b03175fa46c541a28ef0228735a8e13fa4e3f0cdeb1d1b4fa5b147515d2789278d3f9504f86143d99fa444febcc90ed66 WHIRLPOOL a5399a91265c8bcd9042cff5884673bbbd0d1205b32e70e9f7d4efcaa55b08a1ce9053a177bade67ab30f0853172ebcc2c7d979756c752cdfbb2c669f953d19c -DIST thunderbird-38.1.0-ta-LK.xpi 558759 SHA256 891b12e9f7722c570189c0c47a814e96ac3ef9e16b2d50625a4766085649d16f SHA512 eb9fce88f57b0b2ea2ff79968a502dadf757483688d498bdeeb64a2a1a5d5d33918adab3af5aef53dd15fbf9c18b4f6196a64580b089d8fe84f9d9180146ed92 WHIRLPOOL 494e95f5ebc90872c340b65bf6b65b7640863c6033dd36f5ef84fb729031ad485a7fa9b8b16b536800c959b80da024aa6563507c09c95daad5df6ffba407ede0 -DIST thunderbird-38.1.0-tr.xpi 447799 SHA256 5b42a203b0a6938a9967ce982fb800bd4db8ef0d2def1b9966e1352e843729fc SHA512 8be8b566c9c53f3bd3ab4f6121bc0b4f5c8c718d2ec52e4ed7bf673844668cfd35b44c99a7a96703fb7f7dc26c8eb26ed50cce5428fc4bbc2735d57709dbe8e0 WHIRLPOOL 5359fa06fa12527a9f718c6a35be88eb874f41206269ee4e71b2ff5d96285a62c030d041eb3284cd12e9d32bb1563277c36233c3fa46eeb18de5d8bde673b974 -DIST thunderbird-38.1.0-uk.xpi 509621 SHA256 e32214709147900c4336af83dce5445614b72d4059dad67b6f703a0853ec2ad1 SHA512 53ee0b14851faf57127bd84aa2a9113b05ada16a85b81f589786f264819e79c93e0e250ed46405cb94c2cc7b509a5b85ab92071fb8876fd03e3362cd613869ac WHIRLPOOL 78e834301e45df4940c1f1d9109fd629d32c1ed1120365297f709019c294d6e20cd75edbbce318e435ff7dcbd1fb1273cd318e25b8f05868adc64325dea916b4 -DIST thunderbird-38.1.0-vi.xpi 519864 SHA256 6d9b056f1d13e7dd95b79780c65e202c5c428f87e206370a5264644579a41626 SHA512 baf9551168ad25f6fe07be1798bf9256313211d3722a18e49ac8f6d4f266ea9379be1561ac5a4e798ac8c908cdd143e5423e3f81e57d7ad074577ec191df5c12 WHIRLPOOL 067a004abf19e12b6e17d1e2d7b54d19037ed53906e2c1fa655c5b10ba5474d71926d566a7254cf870a1cd2e3e8e6b286f176b09c971bee75ef493d26320a883 -DIST thunderbird-38.1.0-zh-CN.xpi 466411 SHA256 9d00bbc2f01c6974877923f9d770e16112b5e859788a728a7244052361f1ea7b SHA512 f6b42fc98b12bb821ac86c1e860e4191636d67b1647810fef45804fe4530131531a1b5e3a0212fa8a97d53c2d89611fa3f316517f3f1dcb12f8ebd4f52c3225d WHIRLPOOL d8e4e527a19883aa64fc19b55761fd2506464c3223f1ead63943c3564bf5228542d2639c52446a738ca538a13e913707ca0ade4500b4e5e500ab06f713182903 -DIST thunderbird-38.1.0-zh-TW.xpi 466660 SHA256 65dd33db3a18a4f8eeb54b953650a3a592a8821765e44888849f15531bcf88ca SHA512 9cc890a50c5ba199e0a1fea9b9245895b1bda8f9a73e38c60191536113a960f8eef9c0d9c46bbf6b06451109fe60dee4e88136520291581229b8b302dfaee4a8 WHIRLPOOL 9e47e59b80ab8e947e8ecf8f0a02e76a9b1b92916701582e9c2995bf1eba8063497f05abb2ea75df05cff7181970357db24908e43fcad003e19138aca7a5a939 -DIST thunderbird-38.1.0.source.tar.bz2 204161689 SHA256 ddf1fd6048f07370bb0375eac76e687c19d29100c19e9f86fc04bb88d4409787 SHA512 9b83873a06ac9d6c01222e9079b8c1b6dbd25594cd1c134b20ba44d06d209a764ff8a1549b5a6f2c53b27cb3779374dd95c6c8f51f415a07b45b7dcf5dfd576f WHIRLPOOL ecf40449657f91175316020dcc3d74f5e57350ad28fe50137872ea5671088110a0033b51a73fafb28f9c131193583688c03cae17ccd45e9628020648773757b0 DIST thunderbird-38.2.0-ar.xpi 475296 SHA256 9098f6665f740fc371a5bf4dcdd04f729f30a7d52354a210e691292d09c9c748 SHA512 108f023f773f6845bddae8ffaa5a7aecf5d46960d433567c5dc81ec7be308796c99848eedcec552471b1fb2c6a33ac6e0ef47087cc5ae0c823af9e6f4e94064a WHIRLPOOL b5b81f3b4df6f53594ac442f60a3cc0259b1719967b1d0b354b4e6e727143a22186c007502f192cb313565bfbe4ed486a77c53577563ee82529fef729737aab6 DIST thunderbird-38.2.0-ast.xpi 405894 SHA256 d84deb50ad04d47895ef48496da0c8f06442575b16500eec79a57e42cb470219 SHA512 dac004afbe52c34cdb5ff4937950c235c04c345295b713750b2ef28cfa6ce60c58025773aa522ea8fab28c793be715d7a6e4b672c781ba94a5f8260d85ceb29d WHIRLPOOL aa465a441d0cf752d14de33793135fd0310843340ce92935addf209dfe0673915b35c3c2bf5a1f47900856c4be86c7f92df3b46886a9e3b2bebe5f6433d22a51 DIST thunderbird-38.2.0-be.xpi 442474 SHA256 2144494aa25681d9dd6fe123615d5b2abf3c6aeb76e9885d2a3eb05557958a22 SHA512 a65919652c75879e1a9da19041b10b8066d37a757134f7ea66b171ce69e4b6005e7ea0ce605d40e793662fd0501ca6fd9dbc5010c6c917ffe6a85b0f66625716 WHIRLPOOL cd561f3ad87d14625e951c2ef691408c6a0a2bc61f0b2a9e3b75b2f7112f6cd69a4c6f3680a8552dd8768fc51e1bc70197ea35c4010f383f478188059418564d diff --git a/mail-client/thunderbird/thunderbird-38.1.0.ebuild b/mail-client/thunderbird/thunderbird-38.1.0.ebuild deleted file mode 100644 index f7dfc3a71b3b..000000000000 --- a/mail-client/thunderbird/thunderbird-38.1.0.ebuild +++ /dev/null @@ -1,369 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -WANT_AUTOCONF="2.1" -MOZ_ESR="" -MOZ_LIGHTNING_VER="4.0.1" -MOZ_LIGHTNING_GDATA_VER="1.9" - -# This list can be updated using scripts/get_langs.sh from the mozilla overlay -MOZ_LANGS=(ar ast be bg bn-BD br ca cs cy da de el en en-GB en-US es-AR -es-ES et eu fi fr fy-NL ga-IE gd gl he hr hsb hu hy-AM id is it ja ko lt -nb-NO nl nn-NO pa-IN pl pt-BR pt-PT rm ro ru si sk sl sq sr sv-SE ta-LK tr -uk vi zh-CN zh-TW ) - -# Convert the ebuild version to the upstream mozilla version, used by mozlinguas -MOZ_PV="${PV/_beta/b}" -# ESR releases have slightly version numbers -if [[ ${MOZ_ESR} == 1 ]]; then - MOZ_PV="${MOZ_PV}esr" -fi -MOZ_P="${PN}-${MOZ_PV}" - -# Enigmail version -EMVER="1.8.2" - -# Patches -PATCH="thunderbird-38.0-patches-0.1" -PATCHFF="firefox-38.0-patches-0.3" - -MOZ_HTTP_URI="http://ftp.mozilla.org/pub/${PN}/releases" - -MOZCONFIG_OPTIONAL_JIT="enabled" -inherit flag-o-matic toolchain-funcs mozconfig-v6.38 makeedit multilib autotools pax-utils check-reqs nsplugins mozlinguas - -DESCRIPTION="Thunderbird Mail Client" -HOMEPAGE="http://www.mozilla.com/en-US/thunderbird/" - -KEYWORDS="~alpha amd64 ~arm ~ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux" -SLOT="0" -LICENSE="MPL-2.0 GPL-2 LGPL-2.1" -IUSE="bindist crypt hardened ldap lightning +minimal mozdom selinux" -RESTRICT="!bindist? ( bindist )" - -PATCH_URIS=( https://dev.gentoo.org/~{anarchy,axs,polynomial-c}/mozilla/patchsets/{${PATCH},${PATCHFF}}.tar.xz ) -SRC_URI="${SRC_URI} - ${MOZ_HTTP_URI}/${MOZ_PV}/source/${MOZ_P}.source.tar.bz2 - ${MOZ_HTTP_URI/${PN}/calendar/lightning}/${MOZ_LIGHTNING_VER}/linux/lightning.xpi -> lightning-${MOZ_LIGHTNING_VER}.xpi - lightning? ( https://dev.gentoo.org/~axs/distfiles/gdata-provider-${MOZ_LIGHTNING_GDATA_VER}.tar.xz ) - crypt? ( http://www.enigmail.net/download/source/enigmail-${EMVER}.tar.gz ) - ${PATCH_URIS[@]}" - -ASM_DEPEND=">=dev-lang/yasm-1.1" - -CDEPEND=" - >=dev-libs/nss-3.19.2 - >=dev-libs/nspr-4.10.8 - !x11-plugins/enigmail - crypt? ( || ( - ( >=app-crypt/gnupg-2.0 - || ( - app-crypt/pinentry[gtk] - app-crypt/pinentry[qt4] - ) - ) - =app-crypt/gnupg-1.4* - ) )" - -DEPEND="${CDEPEND} - amd64? ( ${ASM_DEPEND} - virtual/opengl ) - x86? ( ${ASM_DEPEND} - virtual/opengl )" - -RDEPEND="${CDEPEND} - selinux? ( sec-policy/selinux-thunderbird ) -" - -if [[ ${PV} =~ beta ]]; then - S="${WORKDIR}/comm-beta" -else - S="${WORKDIR}/comm-esr${PV%%.*}" -fi - -BUILD_OBJ_DIR="${S}/tbird" - -pkg_setup() { - moz_pkgsetup - - export MOZILLA_DIR="${S}/mozilla" - - if ! use bindist ; then - elog "You are enabling official branding. You may not redistribute this build" - elog "to any users on your network or the internet. Doing so puts yourself into" - elog "a legal problem with Mozilla Foundation" - elog "You can disable it by emerging ${PN} _with_ the bindist USE-flag" - elog - fi -} - -pkg_pretend() { - # Ensure we have enough disk space to compile - CHECKREQS_DISK_BUILD="4G" - check-reqs_pkg_setup - - if use jit && [[ -n ${PROFILE_IS_HARDENED} ]]; then - ewarn "You are emerging this package on a hardened profile with USE=jit enabled." - ewarn "This is horribly insecure as it disables all PAGEEXEC restrictions." - ewarn "Please ensure you know what you are doing. If you don't, please consider" - ewarn "emerging the package with USE=-jit" - fi -} - -src_unpack() { - unpack ${A} - - # Unpack language packs - mozlinguas_src_unpack - - xpi_unpack lightning-${MOZ_LIGHTNING_VER}.xpi - # this version of gdata-provider is a .tar.xz , no xpi needed - #use lightning && xpi_unpack gdata-provider-${MOZ_LIGHTNING_GDATA_VER}.xpi -} - -src_prepare() { - # Apply our Thunderbird patchset - EPATCH_SUFFIX="patch" \ - EPATCH_FORCE="yes" \ - epatch "${WORKDIR}/thunderbird" - - # Apply our patchset from firefox to thunderbird as well - pushd "${S}"/mozilla &>/dev/null || die - EPATCH_SUFFIX="patch" \ - EPATCH_FORCE="yes" \ - epatch "${WORKDIR}/firefox" - popd &>/dev/null || die - - # Ensure that are plugins dir is enabled as default - sed -i -e "s:/usr/lib/mozilla/plugins:/usr/lib/nsbrowser/plugins:" \ - "${S}"/mozilla/xpcom/io/nsAppFileLocationProvider.cpp || die "sed failed to replace plugin path for 32bit!" - sed -i -e "s:/usr/lib64/mozilla/plugins:/usr/lib64/nsbrowser/plugins:" \ - "${S}"/mozilla/xpcom/io/nsAppFileLocationProvider.cpp || die "sed failed to replace plugin path for 64bit!" - - # Don't exit with error when some libs are missing which we have in - # system. - sed '/^MOZ_PKG_FATAL_WARNINGS/s@= 1@= 0@' \ - -i "${S}"/mail/installer/Makefile.in || die - - # Don't error out when there's no files to be removed: - sed 's@\(xargs rm\)$@\1 -f@' \ - -i "${S}"/mozilla/toolkit/mozapps/installer/packager.mk || die - - # Shell scripts sometimes contain DOS line endings; bug 391889 - grep -rlZ --include="*.sh" $'\r$' . | - while read -r -d $'\0' file ; do - einfo edos2unix "${file}" - edos2unix "${file}" - done - - # Allow user to apply any additional patches without modifing ebuild - epatch_user - - # Confirm the version of lightning being grabbed for langpacks is the same - # as that used in thunderbird - local THIS_MOZ_LIGHTNING_VER=$(python "${S}"/calendar/lightning/build/makeversion.py ${PV}) - if [[ ${MOZ_LIGHTNING_VER} != ${THIS_MOZ_LIGHTNING_VER} ]]; then - eqawarn "The version of lightning used for localization differs from the version" - eqawarn "in thunderbird. Please update MOZ_LIGHTNING_VER in the ebuild from ${MOZ_LIGHTNING_VER}" - eqawarn "to ${THIS_MOZ_LIGHTNING_VER}" - fi - - eautoreconf - # Ensure we run eautoreconf in mozilla to regenerate configure - cd "${S}"/mozilla || die - eautoconf - cd "${S}"/mozilla/js/src || die - eautoconf -} - -src_configure() { - declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}" - MEXTENSIONS="default" - - #################################### - # - # mozconfig, CFLAGS and CXXFLAGS setup - # - #################################### - - mozconfig_init - mozconfig_config - - # It doesn't compile on alpha without this LDFLAGS - use alpha && append-ldflags "-Wl,--no-relax" - - # Add full relro support for hardened - use hardened && append-ldflags "-Wl,-z,relro,-z,now" - - mozconfig_annotate '' --enable-extensions="${MEXTENSIONS}" - mozconfig_annotate '' --disable-mailnews - mozconfig_annotate '' --enable-calendar - - # Other tb-specific settings - mozconfig_annotate '' --with-default-mozilla-five-home=${MOZILLA_FIVE_HOME} - mozconfig_annotate '' --with-user-appdir=.thunderbird - - mozconfig_use_enable ldap - - mozlinguas_mozconfig - - # Bug #72667 - if use mozdom; then - MEXTENSIONS="${MEXTENSIONS},inspector" - fi - - # Use an objdir to keep things organized. - echo "mk_add_options MOZ_OBJDIR=${BUILD_OBJ_DIR}" >> "${S}"/.mozconfig - - # Finalize and report settings - mozconfig_final - - #################################### - # - # Configure and build - # - #################################### - - # Disable no-print-directory - MAKEOPTS=${MAKEOPTS/--no-print-directory/} - - if [[ $(gcc-major-version) -lt 4 ]]; then - append-cxxflags -fno-stack-protector - fi - - if use crypt; then - pushd "${WORKDIR}"/enigmail &>/dev/null ||die - econf - popd &>/dev/null ||die - fi -} - -src_compile() { - mkdir -p "${BUILD_OBJ_DIR}" && cd "${BUILD_OBJ_DIR}" || die - - CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getLD)" \ - MOZ_MAKE_FLAGS="${MAKEOPTS}" SHELL="${SHELL}" \ - emake -f "${S}"/client.mk - - # Only build enigmail extension if crypt enabled. - if use crypt ; then - einfo "Building enigmail" - pushd "${WORKDIR}"/enigmail &>/dev/null || die - emake -j1 - emake -j1 xpi - popd &>/dev/null || die - fi -} - -src_install() { - declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}" - DICTPATH="\"${EPREFIX}/usr/share/myspell\"" - - declare emid - cd "${BUILD_OBJ_DIR}" || die - - # Copy our preference before omnijar is created. - cp "${FILESDIR}"/thunderbird-gentoo-default-prefs-1.js-1 \ - "${BUILD_OBJ_DIR}/dist/bin/defaults/pref/all-gentoo.js" \ - || die - - # Set default path to search for dictionaries. - echo "pref(\"spellchecker.dictionary_path\", ${DICTPATH});" \ - >> "${BUILD_OBJ_DIR}/dist/bin/defaults/pref/all-gentoo.js" \ - || die - - # Pax mark xpcshell for hardened support, only used for startupcache creation. - pax-mark m "${BUILD_OBJ_DIR}"/mozilla/dist/bin/xpcshell - - MOZ_MAKE_FLAGS="${MAKEOPTS}" \ - emake DESTDIR="${D}" install - - # Install language packs - mozlinguas_src_install - - if ! use bindist; then - newicon "${S}"/other-licenses/branding/thunderbird/content/icon48.png thunderbird-icon.png - domenu "${FILESDIR}"/icon/${PN}.desktop - else - newicon "${S}"/mail/branding/aurora/content/icon48.png thunderbird-icon-unbranded.png - newmenu "${FILESDIR}"/icon/${PN}-unbranded.desktop \ - ${PN}.desktop - - sed -i -e "s:Mozilla\ Thunderbird:EarlyBird:g" \ - "${ED}"/usr/share/applications/${PN}.desktop - fi - - local emid - # stage extra locales for lightning and install over existing - mozlinguas_xpistage_langpacks "${BUILD_OBJ_DIR}"/dist/xpi-stage/lightning \ - "${WORKDIR}"/lightning-${MOZ_LIGHTNING_VER} lightning calendar - - emid='{e2fda1a4-762b-4020-b5ad-a41df1933103}' - mkdir -p "${T}/${emid}" || die - cp -RLp -t "${T}/${emid}" "${BUILD_OBJ_DIR}"/dist/xpi-stage/lightning/* || die - insinto ${MOZILLA_FIVE_HOME}/distribution/extensions - doins -r "${T}/${emid}" - - if use lightning; then - # move lightning out of distribution/extensions and into extensions for app-global install - mv "${ED}"/${MOZILLA_FIVE_HOME}/{distribution,}/extensions/${emid} || die - - # stage extra locales for gdata-provider and install app-global - mozlinguas_xpistage_langpacks "${BUILD_OBJ_DIR}"/dist/xpi-stage/gdata-provider \ - "${WORKDIR}"/gdata-provider-${MOZ_LIGHTNING_GDATA_VER} - emid='{a62ef8ec-5fdc-40c2-873c-223b8a6925cc}' - mkdir -p "${T}/${emid}" || die - cp -RLp -t "${T}/${emid}" "${BUILD_OBJ_DIR}"/dist/xpi-stage/gdata-provider/* || die - insinto ${MOZILLA_FIVE_HOME}/extensions - doins -r "${T}/${emid}" - fi - - if use crypt ; then - local enigmail_xpipath="${WORKDIR}/enigmail/build" - cd "${T}" || die - unzip "${enigmail_xpipath}"/enigmail*.xpi install.rdf || die - emid=$(sed -n '//!d; s/.*\({.*}\).*/\1/; p; q' install.rdf) - - dodir ${MOZILLA_FIVE_HOME}/extensions/${emid} || die - cd "${ED}"${MOZILLA_FIVE_HOME}/extensions/${emid} || die - unzip "${enigmail_xpipath}"/enigmail*.xpi || die - fi - - # Required in order for jit to work on hardened, for mozilla-31 and above - use jit && pax-mark pm "${ED}"${MOZILLA_FIVE_HOME}/{thunderbird,thunderbird-bin} - - # Plugin-container needs to be pax-marked for hardened to ensure plugins such as flash - # continue to work as expected. - pax-mark m "${ED}"${MOZILLA_FIVE_HOME}/plugin-container - - if use minimal; then - rm -r "${ED}"/usr/include "${ED}"${MOZILLA_FIVE_HOME}/{idl,include,lib,sdk} || \ - die "Failed to remove sdk and headers" - fi -} - -pkg_postinst() { - if use crypt; then - local peimpl=$(eselect --brief --colour=no pinentry show) - case "${peimpl}" in - *gtk*|*qt*) ;; - *) ewarn "The pinentry front-end currently selected is not one supported by thunderbird." - ewarn "You may be prompted for your password in an inaccessible shell!!" - ewarn "Please use 'eselect pinentry' to select either the gtk or qt front-end" - ;; - esac - fi - elog - elog "If you experience problems with plugins please issue the" - elog "following command : rm \${HOME}/.thunderbird/*/extensions.sqlite ," - elog "then restart thunderbird" - if ! use lightning; then - elog - elog "If calendar fails to show up in extensions please open config editor" - elog "and set extensions.lastAppVersion to 38.0.0 to force a reload. If this" - elog "fails to show the calendar extension after restarting with above change" - elog "please file a bug report." - fi -} diff --git a/mail-client/thunderbird/thunderbird-38.2.0.ebuild b/mail-client/thunderbird/thunderbird-38.2.0.ebuild index c7a4cf98c7a7..eeda8df91ea0 100644 --- a/mail-client/thunderbird/thunderbird-38.2.0.ebuild +++ b/mail-client/thunderbird/thunderbird-38.2.0.ebuild @@ -27,7 +27,7 @@ EMVER="1.8.2" # Patches PATCH="thunderbird-38.0-patches-0.1" -PATCHFF="firefox-38.0-patches-0.3" +PATCHFF="firefox-38.0-patches-04" MOZ_HTTP_URI="http://ftp.mozilla.org/pub/${PN}/releases" diff --git a/mail-client/thunderbird/thunderbird-38.3.0.ebuild b/mail-client/thunderbird/thunderbird-38.3.0.ebuild index 1bcb09928000..293537747d80 100644 --- a/mail-client/thunderbird/thunderbird-38.3.0.ebuild +++ b/mail-client/thunderbird/thunderbird-38.3.0.ebuild @@ -27,7 +27,7 @@ EMVER="1.8.2" # Patches PATCH="thunderbird-38.0-patches-0.1" -PATCHFF="firefox-38.0-patches-0.3" +PATCHFF="firefox-38.0-patches-04" MOZ_HTTP_URI="http://ftp.mozilla.org/pub/${PN}/releases" diff --git a/media-gfx/feh/Manifest b/media-gfx/feh/Manifest index d9d7747ce34b..3a80460ca7c7 100644 --- a/media-gfx/feh/Manifest +++ b/media-gfx/feh/Manifest @@ -3,4 +3,5 @@ DIST feh-2.11.tar.bz2 2083324 SHA256 9dcc3612d33196cdfa9b3a0513e7048c22f1c243d04 DIST feh-2.12.1.tar.bz2 2116784 SHA256 9026ece01d79560e1eff9715fa1765eef82e22c766da5994ee787984a6f466a1 SHA512 4afde8ed5e5bc3e44f1989aeafd26d10042e2064f1bf6edd9a01f075a42cfcdd83d6fa5f5698a2e43138b9a3c553a5604748b6b807eba25f83971f645269d993 WHIRLPOOL 1b380bff5f92c843337cde85c567df45c913f9e84dfbdcfb34f46e2e667fb4fef2705b2d3ebbcd80effe44a337bfa9df0426cbfb7d7d32ce13112f9ec45b6c1c DIST feh-2.12.tar.bz2 2090538 SHA256 60e07a0f545f6fb7af7b6c0d2ce1ba6bacfa65380e83cbbc2c54e8aa6b8b7032 SHA512 4d24c293ef062eb91dfd009b45f5362bccae26ebb93519f6e324b9c34b3fba4ec1ffda6c01ee71dca4f55e08d6f5101f0f9c3cbf577814eedca956790e745872 WHIRLPOOL b0b647e6785124fdaf4a36615bae081ffcc1b349739da750c6c8c1be2442050344e1bc5b65d3edfd2c6f220ae356321c9a346f5c8e9e4ecb0083fe65de24f359 DIST feh-2.13.1.tar.bz2 2117354 SHA256 865088d0481f6862d79d7c08d7b6cf1d25058a74a5784e511a1422fea8aba980 SHA512 60f2d691c24495fc126f868d3a4b3e43c7a41d0a3ff9ecfcec66a26b62012ef68bbbab897398c1d054d8eaa747baa180c8a41ed77e750071fde4e57a058b179b WHIRLPOOL 2259b2a2b704dcc27ddb0dd8d879be1445151fc5d0b6d0155df7dd0d1376f54f7a8766f08c68fcffabb10826d8f359a092376e51b316713ff9ff31c9d055afcd +DIST feh-2.14.tar.bz2 2118007 SHA256 3829cd8995ec7cc08095a2b22a6c98d1e2638bd87c8b4f0e85a059c6f0edbc48 SHA512 6a50ff787d4eecbfa830da7d7c6eec6feffbe883d48fb52b2a08471c8e1b5f0952e5c316ae67aad2b4feaa517bcb16ab8d5a19bd02832f33933dfd78f3a16243 WHIRLPOOL 0e3ed2614ac1a311a6fe73f9cf6e27b99d4c7ef17f69e9ff72cdf8d31bd8fa66308ebd954c6226415fd5103bd4405b49bb07038008a7ea44f724c83723374e35 DIST feh-2.9.3.tar.bz2 2082188 SHA256 b4e8d603033af12afa77ae8020bcf4ff51c6950b9a6880a0fe32b04fdf7290f2 SHA512 9a0194d43037b1f1b1bd19dc4a9a1c6073504622283c466de1d1952798f37db21b5f2f61c14eeb732c49cc22707a5b47c7009fdaec6141eb3e1b936e2b7b038d WHIRLPOOL e77bd586e26b6ad1e2fb4189fdd33a19e7b45347417223ed65669955903b4ee5efbfa9fd52763b0724efc3bd9f490fa62c77323b5ee3f89445a0338e5fb2eed5 diff --git a/media-gfx/feh/feh-2.14.ebuild b/media-gfx/feh/feh-2.14.ebuild new file mode 100644 index 000000000000..e5b2f3fb5085 --- /dev/null +++ b/media-gfx/feh/feh-2.14.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils toolchain-funcs + +DESCRIPTION="A fast, lightweight imageviewer using imlib2" +HOMEPAGE="http://feh.finalrewind.org/" +SRC_URI="http://feh.finalrewind.org/${P}.tar.bz2" + +LICENSE="feh" +SLOT="0" +KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86" +IUSE="debug curl exif test xinerama" + +COMMON_DEPEND="media-libs/imlib2[X] + >=media-libs/libpng-1.2:0= + x11-libs/libX11 + curl? ( net-misc/curl ) + exif? ( media-libs/libexif ) + xinerama? ( x11-libs/libXinerama )" +RDEPEND="${COMMON_DEPEND} + virtual/jpeg:0" +DEPEND="${COMMON_DEPEND} + x11-libs/libXt + x11-proto/xproto + test? ( + >=dev-lang/perl-5.10 + dev-perl/Test-Command + )" + +pkg_setup() { + use_feh() { usex $1 1 0; } + + fehopts=( + DESTDIR="${D}" + PREFIX=/usr + doc_dir='${main_dir}'/share/doc/${PF} + example_dir='${main_dir}'/share/doc/${PF}/examples + curl=$(use_feh curl) + debug=$(use_feh debug) + xinerama=$(use_feh xinerama) + exif=$(use_feh exif) + ) +} + +src_prepare() { + epatch "${FILESDIR}"/${PN}-2.6.2-debug-cflags.patch + # fix desktop file + sed -i -e "s:^Icon=.*:Icon=/usr/share/feh/images/logo.svg:" \ + share/applications/${PN}.pre || die +} + +src_compile() { + tc-export CC + emake "${fehopts[@]}" +} + +src_install() { + emake "${fehopts[@]}" install +} diff --git a/media-gfx/graphviz/graphviz-2.38.0-r1.ebuild b/media-gfx/graphviz/graphviz-2.38.0-r1.ebuild index 141e214f9fba..5d2ed4dcd6f0 100644 --- a/media-gfx/graphviz/graphviz-2.38.0-r1.ebuild +++ b/media-gfx/graphviz/graphviz-2.38.0-r1.ebuild @@ -13,7 +13,7 @@ SRC_URI="http://www.graphviz.org/pub/graphviz/stable/SOURCES/${P}.tar.gz" LICENSE="CPL-1.0" SLOT="0" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris" +KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris" IUSE="+cairo devil doc examples gdk-pixbuf gtk gts guile java lasi nls pdf perl postscript python qt4 ruby svg static-libs tcl X elibc_FreeBSD" # Requires ksh diff --git a/media-libs/devil/devil-1.7.8-r2.ebuild b/media-libs/devil/devil-1.7.8-r2.ebuild index c20974c63f48..43a592eb2b16 100644 --- a/media-libs/devil/devil-1.7.8-r2.ebuild +++ b/media-libs/devil/devil-1.7.8-r2.ebuild @@ -38,7 +38,7 @@ DEPEND="${RDEPEND} X? ( x11-proto/xextproto )" src_prepare() { - epatch "${FILESDIR}"/${P}-{CVE-2009-3994,libpng14,nvtt-glut,ILUT,restrict}.patch + epatch "${FILESDIR}"/${P}-{CVE-2009-3994,libpng14,nvtt-glut,ILUT,restrict,fix-test}.patch eautoreconf } diff --git a/media-libs/devil/files/devil-1.7.8-fix-test.patch b/media-libs/devil/files/devil-1.7.8-fix-test.patch new file mode 100644 index 000000000000..44af2fc71d64 --- /dev/null +++ b/media-libs/devil/files/devil-1.7.8-fix-test.patch @@ -0,0 +1,10 @@ +--- a/devil-1.7.8/test/Makefile.am ++++ b/devil-1.7.8/test/Makefile.am +@@ -12,5 +12,6 @@ else + testil_LDADD += ../lib/libIL.la + endif + +-TESTS_ENVIRONMENT = /bin/bash ++TESTS_ENVIRONMENT = + TESTS = $(check_SCRIPTS) ++LOG_COMPILER = $(SHELL) diff --git a/media-libs/freetype/freetype-2.6.1.ebuild b/media-libs/freetype/freetype-2.6.1.ebuild index 7635cb446e15..d971b51c5f3c 100644 --- a/media-libs/freetype/freetype-2.6.1.ebuild +++ b/media-libs/freetype/freetype-2.6.1.ebuild @@ -58,7 +58,7 @@ src_prepare() { epatch "${FILESDIR}"/${PN}-2.3.2-enable-valid.patch if use infinality; then - epatch ${WORKDIR}/${INFINALITY_PATCH} + epatch "${WORKDIR}/${INFINALITY_PATCH}" # FT_CONFIG_OPTION_SUBPIXEL_RENDERING is already enabled in freetype-2.4.11 enable_option TT_CONFIG_OPTION_SUBPIXEL_HINTING diff --git a/media-libs/libass/Manifest b/media-libs/libass/Manifest index 3f59e6db7626..1642a54228b4 100644 --- a/media-libs/libass/Manifest +++ b/media-libs/libass/Manifest @@ -1,9 +1,3 @@ -DIST libass-0.10.1.tar.xz 257792 SHA256 fbf287ac6d0dbdf015783b7354280ad8371c106326ad3f77a99471bc5aa18210 SHA512 3990886b9e708bf29f48921f65f99cee85031e299065860bce4f3e626970f82e60130b7525c1aaaf40e02c7b49d7003378724dbcf72db5894ab79768776694cf WHIRLPOOL 7278b893a047f8d0709e0b644495e2f42e4a10aea3174a91eea055501d66ad70f3bc7e924c49aaa9f8de3ddadc564aefbb6f35a0158ed714bf1486e275e1706b -DIST libass-0.10.2.tar.xz 278244 SHA256 f02afcc6410b800f0007dc7c282e897dab64f817c23b37d171fd6ff7fc4ca1d8 SHA512 50e77a488bc47d03a8cfca49cd7d26b702f88f649640cc63b40eb288c0f2771a6db5656e77fb8ab072a2a0b10dadf4a21e375ed831605c6de37466003f36bfd7 WHIRLPOOL d0884a663a86c33696f0909b1be09fad213ed972ec908d5dfc25fa13ed85fa48a6d4fabfe99efbf03939d5af7d0323969e06ee185c762914594e3b4ee78f0b03 -DIST libass-0.11.1.tar.xz 297016 SHA256 9d773a2880114ae4edc4b7686ed67219348d932c24e322ffd7d4c1d97e8813ac SHA512 16b047f688c9d9804d402e7a30377bc98ddadb5d464d621e6e035521532b9ff1e86d0e144e7c5089782afc6ac42ab934b03d75c1c4972fbaea7d8949f732ff62 WHIRLPOOL d89e1eea227cccf09f5267dcd853d07c5981359d8714aa541c3bd03a4e1b438fec4162c0a5fd0fe14cde9d8774f12a0473e24f62e3100fd880259c9248b04055 DIST libass-0.11.2.tar.xz 297172 SHA256 499dbaf14d7743e5899c9ca918988e81a9894f674b22d4682922f2e5d095ff9e SHA512 93e7b9ce328fc8ac7555c49015baf89c2f07957e501e3ea9ee5a2a7750c1454891a202a92f1348aef27c877bf01674bb7958b7e500c59538b67fe68a89315540 WHIRLPOOL 9c0e0b869efc815e9ecd0e0dfa0488b9643404bd8fc33fe4be2cbf7c026989b27ee7eeb6d8f11218d903881629d864b52bdb0f3a7433325f03b0a6c5a21d1d23 -DIST libass-0.12.0.tar.xz 310412 SHA256 0f34e9b4d1badbe85f2865e308d191b311f12266f9612a0fbf995ea8436bae29 SHA512 329727064ac1c90f1bfe449548a2b4d9e5b02346eb43c69b4e9623227efc19e91690950540fac7465aa44bd351103f17fa075f71836a1aa3400ee0647995a197 WHIRLPOOL 51aa187e10916c9d21902dbc1cd3418209f3df181b99392a2cd5271cc3d1eead09321240b3edd2e1a45c5658b6333afca2a8b9dba97c8bb32ea62d903920e764 -DIST libass-0.12.1.tar.xz 312020 SHA256 87864517e482e94130864ad9e4217c3925119e8cc0c1509133989997a61592d7 SHA512 ace022b214cdbd0f043037a6be25c2b58e12630717fe839f3a896462e3c7b0ccbb1e33c0128a09bbd416ec6e1e30230d514341a5c5c9190058fdedcf95082c91 WHIRLPOOL b351344437c1d3c780b84dd98c02c786216226019879186c3da659e690e27e23a49be38fb8e302551978fa5e02dcfed13c3ff057ce778757ee04af5433f06f4e -DIST libass-0.12.2.tar.xz 313208 SHA256 673c1b15bde182168b17e17ee1c8d9e01173f20af352134216135b5bf15bf1e3 SHA512 7cdbb6514c17eafebcc5e558d96ac06f301fa2d7658275379b8598b71b1e10c5dee4d91ebce5181ee3f16f4fe4e1afa9bb9942fa81c38babdcad7de05b59d35f WHIRLPOOL 7990731baa4ee55060dc86fd8fb240ae5fe4a7305aebdab3d434846fda7ed616b7247283b3f65de6db56e102965eb7cd21c9cee59c94f6b5b6a53068d01e11f3 DIST libass-0.12.3.tar.xz 313852 SHA256 a67c54ebaf5ec19ae72e86259ee6ab6adfe2e64ed9f9149db03dc863360ea38c SHA512 84931e89f02487ff01bfe24be3d90b1db8599ab2a5ec2277824b4330cd9219189a54f19d2d83f223d2d6f973b5e7474f2691905091749a776147669b72754be2 WHIRLPOOL 7187d678dfec621d5736ecb4d9dbf6559c74d6c1b4dfcdd7bc4f78313e8f10f73d3cefd33bfa9a1ceed87cb00767e4235b95e144c527e74746e680b6bb12c719 -DIST libass-0.9.13.tar.xz 250536 SHA256 eef55595355cd4dd14b88b61d4e34c7bcfb6060a6b28f5a9ebc7dd5a72b69cc8 SHA512 82c1a280b5cff9dd09f015562db420295a465ce7e80ad51b2f879e347c3a675ea05ac2beaa106c178aa57a390a19eb1ffb90771689e76e2b0619e75673631e0d WHIRLPOOL b1769d3a5b9a14d43447ddaa8c459b5fda4c857abdee270d022cced3d5db93a25059ef4291c0fe27cf235c20507f6c77fdc9c3037d032bad57e1971eaa8436c9 +DIST libass-0.13.0.tar.xz 336128 SHA256 e0071a3b2e95411c8d474014678368e3f0b852f7d663e0564b344e7335eb0671 SHA512 0253d0cd306603b2721bd128ad6eb050c74f1ee415145f238f3a10c4041b054bf94857f4c0043a6578c4fd0865e809e25fa9f61071631ba647c731c13418627f WHIRLPOOL 7ccf4df975a07e94cdc85b4436b08eae1a6ce60d027d0db21855bbdfd21e4770a5e21cae90ce7646b477094241df3b36c247f043f347f2f1494f3d6a02e91f28 diff --git a/media-libs/libass/libass-0.10.1.ebuild b/media-libs/libass/libass-0.10.1.ebuild deleted file mode 100644 index e6036f24ea35..000000000000 --- a/media-libs/libass/libass-0.10.1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -DESCRIPTION="Library for SSA/ASS subtitles rendering" -HOMEPAGE="https://code.google.com/p/libass/" -SRC_URI="https://libass.googlecode.com/files/${P}.tar.xz" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" -IUSE="+enca +fontconfig +harfbuzz static-libs" - -RDEPEND="fontconfig? ( >=media-libs/fontconfig-2.4.2 ) - >=media-libs/freetype-2.4:2 - virtual/libiconv - >=dev-libs/fribidi-0.19.0 - harfbuzz? ( >=media-libs/harfbuzz-0.9.11 ) - enca? ( app-i18n/enca )" - -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS="Changelog" - -src_configure() { - econf \ - $(use_enable enca) \ - $(use_enable fontconfig) \ - $(use_enable harfbuzz) \ - $(use_enable static-libs static) -} - -src_install() { - default - - find "${ED}" -name '*.la' -delete -} diff --git a/media-libs/libass/libass-0.10.2.ebuild b/media-libs/libass/libass-0.10.2.ebuild deleted file mode 100644 index 834b66454252..000000000000 --- a/media-libs/libass/libass-0.10.2.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -inherit eutils - -DESCRIPTION="Library for SSA/ASS subtitles rendering" -HOMEPAGE="https://code.google.com/p/libass/" -SRC_URI="https://libass.googlecode.com/files/${P}.tar.xz" - -LICENSE="ISC" -SLOT="0/5" # subslot = libass soname version -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" -IUSE="+enca +fontconfig +harfbuzz static-libs" - -RDEPEND="fontconfig? ( >=media-libs/fontconfig-2.4.2 ) - >=media-libs/freetype-2.4:2 - virtual/libiconv - >=dev-libs/fribidi-0.19.0 - harfbuzz? ( >=media-libs/harfbuzz-0.9.11[truetype] ) - enca? ( app-i18n/enca )" - -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS="Changelog" - -src_configure() { - econf \ - $(use_enable enca) \ - $(use_enable fontconfig) \ - $(use_enable harfbuzz) \ - $(use_enable static-libs static) -} - -src_install() { - default - prune_libtool_files -} diff --git a/media-libs/libass/libass-0.11.1.ebuild b/media-libs/libass/libass-0.11.1.ebuild deleted file mode 100644 index db78473d3fa2..000000000000 --- a/media-libs/libass/libass-0.11.1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -inherit eutils multilib-minimal - -DESCRIPTION="Library for SSA/ASS subtitles rendering" -HOMEPAGE="https://github.com/libass/libass" -SRC_URI="https://github.com/libass/libass/releases/download/${PV}/${P}.tar.xz" - -LICENSE="ISC" -SLOT="0/5" # subslot = libass soname version -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" -IUSE="+enca +fontconfig +harfbuzz static-libs" - -RDEPEND="fontconfig? ( >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}] ) - >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}] - >=virtual/libiconv-0-r1[${MULTILIB_USEDEP}] - >=dev-libs/fribidi-0.19.5-r1[${MULTILIB_USEDEP}] - harfbuzz? ( >=media-libs/harfbuzz-0.9.12[truetype,${MULTILIB_USEDEP}] ) - enca? ( >=app-i18n/enca-1.14-r1[${MULTILIB_USEDEP}] )" - -DEPEND="${RDEPEND} - virtual/pkgconfig" - -X86_CPU_OPTS="abi_x86_32 abi_x86_64" -for i in ${X86_CPU_OPTS} ; do - DEPEND="${DEPEND} - ${i}? ( dev-lang/yasm )" -done - -DOCS="Changelog" - -multilib_src_configure() { - ECONF_SOURCE="${S}" econf \ - $(use_enable enca) \ - $(use_enable fontconfig) \ - $(use_enable harfbuzz) \ - $(use_enable static-libs static) -} - -multilib_src_install_all() { - einstalldocs - prune_libtool_files -} diff --git a/media-libs/libass/libass-0.12.0.ebuild b/media-libs/libass/libass-0.12.0.ebuild deleted file mode 100644 index db78473d3fa2..000000000000 --- a/media-libs/libass/libass-0.12.0.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -inherit eutils multilib-minimal - -DESCRIPTION="Library for SSA/ASS subtitles rendering" -HOMEPAGE="https://github.com/libass/libass" -SRC_URI="https://github.com/libass/libass/releases/download/${PV}/${P}.tar.xz" - -LICENSE="ISC" -SLOT="0/5" # subslot = libass soname version -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" -IUSE="+enca +fontconfig +harfbuzz static-libs" - -RDEPEND="fontconfig? ( >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}] ) - >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}] - >=virtual/libiconv-0-r1[${MULTILIB_USEDEP}] - >=dev-libs/fribidi-0.19.5-r1[${MULTILIB_USEDEP}] - harfbuzz? ( >=media-libs/harfbuzz-0.9.12[truetype,${MULTILIB_USEDEP}] ) - enca? ( >=app-i18n/enca-1.14-r1[${MULTILIB_USEDEP}] )" - -DEPEND="${RDEPEND} - virtual/pkgconfig" - -X86_CPU_OPTS="abi_x86_32 abi_x86_64" -for i in ${X86_CPU_OPTS} ; do - DEPEND="${DEPEND} - ${i}? ( dev-lang/yasm )" -done - -DOCS="Changelog" - -multilib_src_configure() { - ECONF_SOURCE="${S}" econf \ - $(use_enable enca) \ - $(use_enable fontconfig) \ - $(use_enable harfbuzz) \ - $(use_enable static-libs static) -} - -multilib_src_install_all() { - einstalldocs - prune_libtool_files -} diff --git a/media-libs/libass/libass-0.12.2.ebuild b/media-libs/libass/libass-0.12.2.ebuild deleted file mode 100644 index de9132e95cf5..000000000000 --- a/media-libs/libass/libass-0.12.2.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -inherit eutils multilib-minimal - -DESCRIPTION="Library for SSA/ASS subtitles rendering" -HOMEPAGE="https://github.com/libass/libass" -SRC_URI="https://github.com/libass/libass/releases/download/${PV}/${P}.tar.xz" - -LICENSE="ISC" -SLOT="0/5" # subslot = libass soname version -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" -IUSE="+enca +fontconfig +harfbuzz static-libs" - -RDEPEND="fontconfig? ( >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}] ) - >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}] - >=virtual/libiconv-0-r1[${MULTILIB_USEDEP}] - >=dev-libs/fribidi-0.19.5-r1[${MULTILIB_USEDEP}] - harfbuzz? ( >=media-libs/harfbuzz-0.9.12[truetype,${MULTILIB_USEDEP}] ) - enca? ( >=app-i18n/enca-1.14-r1[${MULTILIB_USEDEP}] )" - -DEPEND="${RDEPEND} - virtual/pkgconfig" - -X86_CPU_OPTS="abi_x86_32 abi_x86_64" -for i in ${X86_CPU_OPTS} ; do - DEPEND="${DEPEND} - ${i}? ( dev-lang/yasm )" -done - -DOCS="Changelog" - -multilib_src_configure() { - ECONF_SOURCE="${S}" econf \ - $(use_enable enca) \ - $(use_enable fontconfig) \ - $(use_enable harfbuzz) \ - $(use_enable static-libs static) -} - -multilib_src_install_all() { - einstalldocs - prune_libtool_files -} diff --git a/media-libs/libass/libass-0.12.1.ebuild b/media-libs/libass/libass-0.13.0.ebuild similarity index 87% rename from media-libs/libass/libass-0.12.1.ebuild rename to media-libs/libass/libass-0.13.0.ebuild index de9132e95cf5..20df06146ee7 100644 --- a/media-libs/libass/libass-0.12.1.ebuild +++ b/media-libs/libass/libass-0.13.0.ebuild @@ -12,14 +12,13 @@ SRC_URI="https://github.com/libass/libass/releases/download/${PV}/${P}.tar.xz" LICENSE="ISC" SLOT="0/5" # subslot = libass soname version KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" -IUSE="+enca +fontconfig +harfbuzz static-libs" +IUSE="+fontconfig +harfbuzz static-libs" RDEPEND="fontconfig? ( >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}] ) >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}] >=virtual/libiconv-0-r1[${MULTILIB_USEDEP}] >=dev-libs/fribidi-0.19.5-r1[${MULTILIB_USEDEP}] - harfbuzz? ( >=media-libs/harfbuzz-0.9.12[truetype,${MULTILIB_USEDEP}] ) - enca? ( >=app-i18n/enca-1.14-r1[${MULTILIB_USEDEP}] )" + harfbuzz? ( >=media-libs/harfbuzz-0.9.12[truetype,${MULTILIB_USEDEP}] )" DEPEND="${RDEPEND} virtual/pkgconfig" @@ -34,10 +33,10 @@ DOCS="Changelog" multilib_src_configure() { ECONF_SOURCE="${S}" econf \ - $(use_enable enca) \ $(use_enable fontconfig) \ $(use_enable harfbuzz) \ - $(use_enable static-libs static) + $(use_enable static-libs static) \ + --disable-require-system-font-provider } multilib_src_install_all() { diff --git a/media-libs/libass/libass-0.9.13.ebuild b/media-libs/libass/libass-0.9.13.ebuild deleted file mode 100644 index 01c4f968a97a..000000000000 --- a/media-libs/libass/libass-0.9.13.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -DESCRIPTION="Library for SSA/ASS subtitles rendering" -HOMEPAGE="https://code.google.com/p/libass/" -SRC_URI="https://libass.googlecode.com/files/${P}.tar.xz" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" -IUSE="+enca +fontconfig static-libs" - -RDEPEND="fontconfig? ( >=media-libs/fontconfig-2.4.2 ) - >=media-libs/freetype-2.2.1:2 - virtual/libiconv - enca? ( app-i18n/enca )" - -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS="Changelog" - -src_configure() { - econf \ - $(use_enable enca) \ - $(use_enable fontconfig) \ - $(use_enable static-libs static) -} - -src_install() { - default - - find "${ED}" -name '*.la' -delete -} diff --git a/media-libs/libbluray/Manifest b/media-libs/libbluray/Manifest index b9ab7eedaa47..5fad57fc6f7a 100644 --- a/media-libs/libbluray/Manifest +++ b/media-libs/libbluray/Manifest @@ -1,6 +1,3 @@ -DIST libbluray-0.5.0.tar.bz2 559639 SHA256 19213e193e1abc5ed2de65edfb539deda1dbf6cc64dfef03e405524c9c6f7216 SHA512 bd709a01689bbb03ac291a2544eee93b47d72e065c8ccf825f9fb568ddb339a75a18c721b3c59fd4a8214a0f9b652cbd845bccd9de08248dd4cf61616a77e1dd WHIRLPOOL ab6b422889e6469053f567a489afe6c4cbf79cc1e56461ccad3eec948be819748da7760377686430db212a249b450da8fe5a9c914828f13354135dcf2e314add -DIST libbluray-0.6.1.tar.bz2 586646 SHA256 bf51c4fb65f4d8b02e9b2708017ecd829c8d0dfa9239bca011e67a2a6e368b3f SHA512 f32f5ce238955efd8d9f34d488d89ca1f52b4dd1f63334ade92dc8e053b15e180549fc5f83f4b7d532c145acb1b8ddfca2230df65451bfb0f77bf6aa2c3806ec WHIRLPOOL bed882bef96effc81241eab736b6be4caa098fdb1e9e2c50bdb70ebfdf0ee53490aed6697bc298c5a8271547113e9c0de151b95198ca2db90733ea70adc4ad44 DIST libbluray-0.6.2.tar.bz2 582227 SHA256 8ca410c8a4a1e2e8344014a67e2c908182cff3e04ece4e3b9ef196cf6bca5cd0 SHA512 20fbc5f34d7d025efaac1b6398c18b94b603a52bfb6dd0f021059d3bd4c3cf785e715698cd09e5d1c97a7ed11bbd146b29aa363650620eef1efca08053fc033a WHIRLPOOL 5e69fe4042d709677635fdc6569a2b14a34ff93ef672b3138bffde3a492ca5b38d960ed3bec814444b5dc4b4491f108ed50d64c2c8d956164dfedd0a43b8f506 -DIST libbluray-0.7.0.tar.bz2 597266 SHA256 f79beb9fbb24117cbb1264c919e686ae9e6349c0ad08b48c4b6233b2887eb68d SHA512 2bf73398003e5a6b12ffdf44ec5716c18da4a176328b4eac52adb3337d09fcb4e5b553362cb67d70506fb0b2cd60e2e59ccc398104630554f41f0b095fc4703f WHIRLPOOL 28f9422704230cfe2fea3c84d0c7c3ae06495b07fdc22c33937d2cb4a0087be4af4364d219ab38e0ee94cf5c14826f7f2a1750da6d5c8f7e71178dbdfb1fc1e5 -DIST libbluray-0.8.0.tar.bz2 621606 SHA256 7b80208b2af54313fedbb49f54b7e13ff7f86f1843a81dddd5e17aa9575bfd08 SHA512 1928ed86a39f3846014f3c5083e78aaf87366fb4589a48a1a87ad053fc32edafe6e89d382c44cffc5f27610d4d3ccf17bf2ef79982e3e39a0ada6895defe5bfe WHIRLPOOL d72b50920e8f0b994cc543d3efbc6b7e4849a1dcda1774e1eda85e527a36a8382c3e273fb45309776c696bb7b215271cfb822f04c02a4133c5ee5687ea8805f5 DIST libbluray-0.8.1.tar.bz2 623402 SHA256 cdbec680c5bbc2251de6ccd109cf5f798ea51db6fcb938df39283be1799efb8f SHA512 6618e01a567f0dc5d21302fc771d4155589c81703028b76f6090a2d12ef1c7e9d08d9c79312a7c8b2ca0d6c63ce980195f0866509a4f8f05f64ed6650c7f78dc WHIRLPOOL 899ffe320997d245ed76987993d7d7e1697fcea61474ad7fb664c0c519d2c6578344986e22a9fe7d23d7c458525f6effff68718619334916fbe42cccb6c5c801 +DIST libbluray-0.9.0.tar.bz2 624614 SHA256 84b61da9202fa724a76ac885af69df16a5583eb11d43e940dc201833bbfd694d SHA512 12db8b9ace0629158c1ce0e5447fc154609e9f78c55ff7d830c7ee38ccafa9824bfcdbe622d7e13e8c6d74205ae648ccf2e7c7b756692acc27e48fe9e2cc95ec WHIRLPOOL 7b8191bf0adcd1c612662a9bf66d2f94ba43bda1bd5a23425aee85b486aced4c0edf0f720a17361640f7982e5794bd531bfc9efa45e883495be4acd9ae42b8cc diff --git a/media-libs/libbluray/libbluray-0.5.0-r1.ebuild b/media-libs/libbluray/libbluray-0.5.0-r1.ebuild deleted file mode 100644 index 357e82fc701f..000000000000 --- a/media-libs/libbluray/libbluray-0.5.0-r1.ebuild +++ /dev/null @@ -1,92 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit autotools java-pkg-opt-2 flag-o-matic eutils multilib-minimal - -DESCRIPTION="Blu-ray playback libraries" -HOMEPAGE="http://www.videolan.org/developers/libbluray.html" -SRC_URI="http://ftp.videolan.org/pub/videolan/libbluray/${PV}/${P}.tar.bz2" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" -IUSE="aacs java static-libs +truetype utils +xml" - -COMMON_DEPEND=" - xml? ( >=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}] ) - truetype? ( >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}] ) -" -RDEPEND=" - ${COMMON_DEPEND} - aacs? ( >=media-libs/libaacs-0.6.0[${MULTILIB_USEDEP}] ) - java? ( >=virtual/jre-1.6 ) -" -DEPEND=" - ${COMMON_DEPEND} - java? ( - >=virtual/jdk-1.6 - dev-java/ant-core - ) - virtual/pkgconfig -" - -DOCS=( ChangeLog README.txt ) - -src_prepare() { - if use java ; then - export JDK_HOME="$(java-config -g JAVA_HOME)" - - # don't install a duplicate jar file - sed -i '/^jar_DATA/d' src/Makefile.am || die - - eautoreconf - - java-pkg-opt-2_src_prepare - fi -} - -multilib_src_configure() { - local myconf - if multilib_is_native_abi && use java; then - export JAVACFLAGS="$(java-pkg_javac-args)" - append-cflags "$(java-pkg_get-jni-cflags)" - myconf="--enable-bdjava" - else - myconf="--disable-bdjava" - fi - - ECONF_SOURCE="${S}" econf \ - --disable-optimizations \ - $(multilib_native_use_enable utils examples) \ - $(use_with truetype freetype) \ - $(use_enable static-libs static) \ - $(use_with xml libxml2) \ - ${myconf} -} - -multilib_src_install() { - emake DESTDIR="${D}" install - - if multilib_is_native_abi && use utils; then - cd src - dobin index_dump mobj_dump mpls_dump - cd .libs/ - dobin bd_info bdsplice clpi_dump hdmv_test libbluray_test list_titles sound_dump - if use java; then - dobin bdj_test - fi - fi - - if multilib_is_native_abi && use java; then - java-pkg_dojar "${BUILD_DIR}"/src/.libs/${PN}.jar - doenvd "${FILESDIR}"/90${PN} - fi -} - -multilib_src_install_all() { - einstalldocs - prune_libtool_files -} diff --git a/media-libs/libbluray/libbluray-0.5.0.ebuild b/media-libs/libbluray/libbluray-0.5.0.ebuild deleted file mode 100644 index 5527be37b5e2..000000000000 --- a/media-libs/libbluray/libbluray-0.5.0.ebuild +++ /dev/null @@ -1,90 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit autotools java-pkg-opt-2 flag-o-matic eutils - -DESCRIPTION="Blu-ray playback libraries" -HOMEPAGE="http://www.videolan.org/developers/libbluray.html" -SRC_URI="http://ftp.videolan.org/pub/videolan/libbluray/${PV}/${P}.tar.bz2" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd" -IUSE="aacs java static-libs +truetype utils +xml" - -COMMON_DEPEND=" - xml? ( dev-libs/libxml2 ) -" -RDEPEND=" - ${COMMON_DEPEND} - aacs? ( media-libs/libaacs ) - java? ( - truetype? ( media-libs/freetype:2 ) - >=virtual/jre-1.6 - ) -" -DEPEND=" - ${COMMON_DEPEND} - java? ( - truetype? ( media-libs/freetype:2 ) - >=virtual/jdk-1.6 - dev-java/ant-core - ) - virtual/pkgconfig -" - -DOCS=( ChangeLog README.txt ) - -src_prepare() { - if use java ; then - export JDK_HOME="$(java-config -g JAVA_HOME)" - - # don't install a duplicate jar file - sed -i '/^jar_DATA/d' src/Makefile.am || die - - eautoreconf - - java-pkg-opt-2_src_prepare - fi -} - -src_configure() { - local myconf - if use java; then - export JAVACFLAGS="$(java-pkg_javac-args)" - append-cflags "$(java-pkg_get-jni-cflags)" - myconf="$(use_with truetype freetype)" - fi - - econf \ - --disable-optimizations \ - $(use_enable utils examples) \ - $(use_enable java bdjava) \ - $(use_enable static-libs static) \ - $(use_with xml libxml2) \ - ${myconf} -} - -src_install() { - default - - if use utils; then - cd src - dobin index_dump mobj_dump mpls_dump - cd .libs/ - dobin bd_info bdsplice clpi_dump hdmv_test libbluray_test list_titles sound_dump - if use java; then - dobin bdj_test - fi - fi - - if use java; then - java-pkg_dojar "${S}"/src/.libs/${PN}.jar - doenvd "${FILESDIR}"/90${PN} - fi - - prune_libtool_files -} diff --git a/media-libs/libbluray/libbluray-0.6.1.ebuild b/media-libs/libbluray/libbluray-0.6.1.ebuild deleted file mode 100644 index 54985a27b550..000000000000 --- a/media-libs/libbluray/libbluray-0.6.1.ebuild +++ /dev/null @@ -1,92 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit autotools java-pkg-opt-2 flag-o-matic eutils multilib-minimal - -DESCRIPTION="Blu-ray playback libraries" -HOMEPAGE="http://www.videolan.org/developers/libbluray.html" -SRC_URI="http://ftp.videolan.org/pub/videolan/libbluray/${PV}/${P}.tar.bz2" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" -IUSE="aacs java static-libs +truetype utils +xml" - -COMMON_DEPEND=" - xml? ( >=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}] ) - truetype? ( >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}] ) -" -RDEPEND=" - ${COMMON_DEPEND} - aacs? ( >=media-libs/libaacs-0.6.0[${MULTILIB_USEDEP}] ) - java? ( >=virtual/jre-1.6 ) -" -DEPEND=" - ${COMMON_DEPEND} - java? ( - >=virtual/jdk-1.6 - dev-java/ant-core - ) - virtual/pkgconfig -" - -DOCS=( ChangeLog README.txt ) - -src_prepare() { - if use java ; then - export JDK_HOME="$(java-config -g JAVA_HOME)" - - # don't install a duplicate jar file - sed -i '/^jar_DATA/d' src/Makefile.am || die - - java-pkg-opt-2_src_prepare - fi - - eautoreconf -} - -multilib_src_configure() { - local myconf - if multilib_is_native_abi && use java; then - export JAVACFLAGS="$(java-pkg_javac-args)" - append-cflags "$(java-pkg_get-jni-cflags)" - myconf="--enable-bdjava" - else - myconf="--disable-bdjava" - fi - - ECONF_SOURCE="${S}" econf \ - --disable-optimizations \ - $(multilib_native_use_enable utils examples) \ - $(use_with truetype freetype) \ - $(use_enable static-libs static) \ - $(use_with xml libxml2) \ - ${myconf} -} - -multilib_src_install() { - emake DESTDIR="${D}" install - - if multilib_is_native_abi && use utils; then - cd src - dobin index_dump mobj_dump mpls_dump - cd .libs/ - dobin bd_info bdsplice clpi_dump hdmv_test libbluray_test list_titles sound_dump - if use java; then - dobin bdj_test - fi - fi - - if multilib_is_native_abi && use java; then - java-pkg_dojar "${BUILD_DIR}"/src/.libs/${PN}-j2se-${PV}.jar - doenvd "${FILESDIR}"/90${PN} - fi -} - -multilib_src_install_all() { - einstalldocs - prune_libtool_files -} diff --git a/media-libs/libbluray/libbluray-0.7.0.ebuild b/media-libs/libbluray/libbluray-0.7.0.ebuild deleted file mode 100644 index 0d583a84526f..000000000000 --- a/media-libs/libbluray/libbluray-0.7.0.ebuild +++ /dev/null @@ -1,95 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit autotools java-pkg-opt-2 flag-o-matic eutils multilib-minimal - -DESCRIPTION="Blu-ray playback libraries" -HOMEPAGE="http://www.videolan.org/developers/libbluray.html" -SRC_URI="http://ftp.videolan.org/pub/videolan/libbluray/${PV}/${P}.tar.bz2" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" -IUSE="aacs bdplus +fontconfig java static-libs +truetype utils +xml" - -COMMON_DEPEND=" - xml? ( >=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}] ) - fontconfig? ( >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}] ) - truetype? ( >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}] ) -" -RDEPEND=" - ${COMMON_DEPEND} - aacs? ( >=media-libs/libaacs-0.6.0[${MULTILIB_USEDEP}] ) - bdplus? ( media-libs/libbdplus[${MULTILIB_USEDEP}] ) - java? ( >=virtual/jre-1.6 ) -" -DEPEND=" - ${COMMON_DEPEND} - java? ( - >=virtual/jdk-1.6 - dev-java/ant-core - ) - virtual/pkgconfig -" - -DOCS=( ChangeLog README.txt ) - -src_prepare() { - if use java ; then - export JDK_HOME="$(java-config -g JAVA_HOME)" - - # don't install a duplicate jar file - sed -i '/^jar_DATA/d' src/Makefile.am || die - - java-pkg-opt-2_src_prepare - fi - - eautoreconf -} - -multilib_src_configure() { - local myconf - if multilib_is_native_abi && use java; then - export JAVACFLAGS="$(java-pkg_javac-args)" - append-cflags "$(java-pkg_get-jni-cflags)" - myconf="--enable-bdjava" - else - myconf="--disable-bdjava" - fi - - ECONF_SOURCE="${S}" econf \ - --disable-optimizations \ - $(multilib_native_use_enable utils examples) \ - $(use_with fontconfig) \ - $(use_with truetype freetype) \ - $(use_enable static-libs static) \ - $(use_with xml libxml2) \ - ${myconf} -} - -multilib_src_install() { - emake DESTDIR="${D}" install - - if multilib_is_native_abi && use utils; then - cd src - dobin index_dump mobj_dump mpls_dump - cd .libs/ - dobin bd_info bdsplice clpi_dump hdmv_test libbluray_test list_titles sound_dump - if use java; then - dobin bdj_test - fi - fi - - if multilib_is_native_abi && use java; then - java-pkg_dojar "${BUILD_DIR}"/src/.libs/${PN}-j2se-${PV}.jar - doenvd "${FILESDIR}"/90${PN} - fi -} - -multilib_src_install_all() { - einstalldocs - prune_libtool_files -} diff --git a/media-libs/libbluray/libbluray-0.8.0.ebuild b/media-libs/libbluray/libbluray-0.9.0.ebuild similarity index 100% rename from media-libs/libbluray/libbluray-0.8.0.ebuild rename to media-libs/libbluray/libbluray-0.9.0.ebuild diff --git a/media-sound/pulseaudio/pulseaudio-7.0-r1.ebuild b/media-sound/pulseaudio/pulseaudio-7.0-r1.ebuild index 83140d79436b..284d4f05056d 100644 --- a/media-sound/pulseaudio/pulseaudio-7.0-r1.ebuild +++ b/media-sound/pulseaudio/pulseaudio-7.0-r1.ebuild @@ -16,7 +16,7 @@ SRC_URI="http://freedesktop.org/software/pulseaudio/releases/${P}.tar.xz" LICENSE="!gdbm? ( LGPL-2.1 ) gdbm? ( GPL-2 )" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux" # +alsa-plugin as discussed in bug #519530 IUSE="+alsa +alsa-plugin +asyncns bluetooth +caps dbus doc equalizer +gdbm +glib diff --git a/media-video/dvdstyler/Manifest b/media-video/dvdstyler/Manifest index 9b216a9fc1c4..b5eb37166fa9 100644 --- a/media-video/dvdstyler/Manifest +++ b/media-video/dvdstyler/Manifest @@ -1,3 +1,4 @@ DIST DVDStyler-2.7.2.tar.bz2 5982155 SHA256 b30df3870b9cfcac5bc4387d276aec10e0913ce66c63007f1393123afda180be SHA512 f4913ff5ed11e7cedccb8408bea9adbfae7494afde9062c4acc7e65014af821d4b5acacbce57fd07225cf3af8c21ba552897b50be67f21e242fb6f4baeed000d WHIRLPOOL 070254838db445175401c6d2fb05dc6ee5d79620a598f5a5f0c6d4d8bf9cb5b3ecfc1ad0e708b6289b37b0a5cd0a5c2b0c089c87951b60fe0d48eab85cc9410f DIST DVDStyler-2.9.2.tar.bz2 7861116 SHA256 88abd17b0dcdfccbdfffe6e80bcfa59df023f1ff2eed782e58d1f793a81dbd1f SHA512 5688f383b03cb0ec6c57659494d1f4f98f72c21e3e125e16ec3adfeac20555d6f26a12d3629417b46f833933f504e1d55a7fcdb2c0926643e0bfadcab8c998be WHIRLPOOL cd857c39a5de581b201b2d78d7a676b05f5dbdef3592fe835158cceb05d8b8e37cf5a4f88514469bbfac908f827843718b733566cac6fd86f6c7700bc49e0431 DIST DVDStyler-2.9.3.tar.bz2 7861272 SHA256 ffbc22454e210ba8fcad9a7954b426d9dc5ff933527a6e39391d310101128c39 SHA512 c39a1c08ea5e86e05c25443685524c61c26a5fe11e66240884db6b54c117f1cc446634145bc99673eb7de2ed44e3d03277686470dfde3ab78a5943b2667e7b73 WHIRLPOOL d08202272c5ec9fbaec7b049e854cdb413a929b59ee047a99a4d70699f80a2a0a47786335a9bc05d8d7ca905f9137d4f81bc31fd56a78943c71b169999cc0cd3 +DIST DVDStyler-2.9.4.tar.bz2 7863263 SHA256 8b15ec98e3e5ec8c5a1f23eee316f646476e76b86b80d44b7c842887946a39e0 SHA512 8ef8e0241f31957b6c1695876a2067510750b3e997d57c688ceed640110488c2989af12d23147a5b439625cafc5bf7f2d3a8cdda8304b96555f48b6f5553cde4 WHIRLPOOL 07f3a96f83e0d7bbaea4cf01f9c440d63590f632de3ebbb516d7551ced21c9597790149f252f517f627c5d8800e5a1d8737ad15a015eb1f76e7fef4d7dc15dbf diff --git a/media-video/dvdstyler/dvdstyler-2.9.4.ebuild b/media-video/dvdstyler/dvdstyler-2.9.4.ebuild new file mode 100644 index 000000000000..8587dc494e14 --- /dev/null +++ b/media-video/dvdstyler/dvdstyler-2.9.4.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +MY_P=${P/dvds/DVDS} +WX_GTK_VER=2.8 + +inherit wxwidgets eutils + +DESCRIPTION="A cross-platform free DVD authoring application" +HOMEPAGE="http://www.dvdstyler.org/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug +udev" + +COMMON_DEPEND=">=app-cdr/dvd+rw-tools-7.1 + media-libs/libexif:= + >=media-libs/wxsvg-1.3:= + >=media-video/dvdauthor-0.7.1 + >=media-video/xine-ui-0.99.7 + virtual/cdrtools + >=virtual/ffmpeg-9-r1[encode] + virtual/jpeg:0 + >=x11-libs/wxGTK-2.8.7:2.8=[gstreamer,X] + sys-apps/dbus + udev? ( >=virtual/libudev-215:= )" +RDEPEND="${COMMON_DEPEND} + >=app-cdr/dvdisaster-0.72.4 + media-video/mjpegtools" +DEPEND="${COMMON_DEPEND} + app-arch/zip + app-text/xmlto + sys-devel/gettext + virtual/yacc + virtual/pkgconfig" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + # disable obsolete GNOME 2.x libraries wrt #508854 + sed -i -e '/PKG_CONFIG/s:libgnomeui-2.0:dIsAbLeAuToMaGiC&:' configure || die + # rmdir: failed to remove `tempfoobar': Directory not empty + sed -i -e '/rmdir "$$t"/d' docs/Makefile.in || die + # fix underlinking wrt #367863 + sed -i -e 's:@LIBS@:& -ljpeg:' wxVillaLib/Makefile.in || die + # silence desktop-file-validate QA check + sed -i \ + -e '/Icon/s:.png::' -e '/^Encoding/d' -e '/Categories/s:Application;::' \ + data/dvdstyler.desktop || die + has_version '>=media-video/ffmpeg-2.9' && epatch "${FILESDIR}/ffmpeg29.patch" +} + +src_configure() { + econf \ + --docdir=/usr/share/doc/${PF} \ + $(use_enable debug) \ + --with-wx-config=${WX_CONFIG} +} + +src_install() { + default + rm -f "${ED}"/usr/share/doc/${PF}/{COPYING*,INSTALL*} +} diff --git a/media-video/mkvtoolnix/Manifest b/media-video/mkvtoolnix/Manifest index 65a84e0805cc..b5756928fd57 100644 --- a/media-video/mkvtoolnix/Manifest +++ b/media-video/mkvtoolnix/Manifest @@ -1,3 +1,4 @@ DIST mkvtoolnix-6.6.0.tar.xz 5174424 SHA256 cb1f965617fe064cf78457d3fbd0685eb31ae5b7e205cf4c8e74b6f27f3399e3 SHA512 c86f10a0a919e6d28c2587b60663c38713cfa6ca0a5188524b81af2fd60e4ea626a01431d29c6ae5885eae05d71af93d857986c5008aec4963dacc3ead9dc26f WHIRLPOOL 55a15bb2fdb62af85e189c39b1a1391d33eb08b4ba116fc307965be6817a944b21d18c034b9a3da16a6e84e93544dbd59f3c7fe9406ab454e15cf8ee1eb815c3 DIST mkvtoolnix-8.2.0.tar.xz 5856988 SHA256 eb6d3d7a0254bb4326dccc9983418801783198cdf4a259f31261dab4e843a5c4 SHA512 200fad08f6912081d7aabbae9330dc41b90af8d6fdce592090b9fedf2325a91f70d3a85ff40b03b57b0682a075050b6b73307872c1e716e8261849c3fb97968b WHIRLPOOL 1b25cd8913eb02018d62de369171ee1a48d31cbce6684c0c7febd2f88c3286bbf386c825ddeae54ef411dc14cc128c9e833408f9b0ac9cb1d5e525ba34aaa4ae DIST mkvtoolnix-8.3.0.tar.xz 5863384 SHA256 87bd82222995d35c310a426ed43e0b27cbfefa0caadcbcca8296787314affc37 SHA512 fb3ac11480c20ae360fef9081991876ef2d7a717f24ec631bb8482ee7d22f79164aafeaf561dee503f1c0a83fe3ed6db319b420c34d638450aada762e6eb00c0 WHIRLPOOL b3cd3f4785c891c75eac3754136aa0b709ff0e784eea6d0e915478eea6fbdbe7132c56a997a007ba6d690649b6caaae46a8b45ae055aab7ae557486d99aab417 +DIST mkvtoolnix-8.4.0.tar.xz 3234284 SHA256 f6a5506d14a0b16abb3765d6f78cded0267e01096926b30e8f72df9d30aaf878 SHA512 ab9ab49baf06a8ef713872a09c58fdb1560628dbe3b2b661d809972f56a36c751a390a78ae260624510963b92e177d090088030bb96f9ab9e96e1a372772d22f WHIRLPOOL 811a0466413bdba84959c5ae84d637aba4371018ee3deed70d65f24472c0bf6a714003574efb4e4dcdc3bfb1b3c48595a347ab0bcdd935a9b49e2f1ab4c36c58 diff --git a/media-video/mkvtoolnix/mkvtoolnix-8.4.0.ebuild b/media-video/mkvtoolnix/mkvtoolnix-8.4.0.ebuild new file mode 100644 index 000000000000..6872d50a234e --- /dev/null +++ b/media-video/mkvtoolnix/mkvtoolnix-8.4.0.ebuild @@ -0,0 +1,110 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +WX_GTK_VER="3.0" +inherit eutils multilib toolchain-funcs versionator multiprocessing autotools + +DESCRIPTION="Tools to create, alter, and inspect Matroska files" +HOMEPAGE="http://www.bunkus.org/videotools/mkvtoolnix" +SRC_URI="http://www.bunkus.org/videotools/mkvtoolnix/sources/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" +IUSE="curl debug pch qt5" + +ruby_atom() { + local ruby_slot=${1/ruby/} + ruby_slot="${ruby_slot:0:1}.${ruby_slot:1:2}" + echo "dev-lang/ruby:${ruby_slot}" +} + +# hacks to avoid using the ruby eclasses since this requires something similar +# to the python-any-r1 eclass for ruby which currently doesn't exist +RUBY_IMPLS=( ruby22 ruby21 ruby20 ) +RUBY_BDEPS="$(for ruby_impl in "${RUBY_IMPLS[@]}"; do + echo "( $(ruby_atom ${ruby_impl}) virtual/rubygems[ruby_targets_${ruby_impl}] )"; done)" + +RDEPEND=" + >=dev-libs/boost-1.46.0:= + >=dev-libs/libebml-1.3.1:= + dev-libs/pugixml + media-libs/flac + >=media-libs/libmatroska-1.4.2:= + media-libs/libogg + media-libs/libvorbis + sys-apps/file + sys-libs/zlib + qt5? ( + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtwidgets:5 + ) +" +DEPEND="${RDEPEND} + || ( ${RUBY_BDEPS} ) + sys-devel/gettext + virtual/pkgconfig +" + +pkg_pretend() { + # https://bugs.gentoo.org/419257 + local ver=4.6 + local msg="You need at least GCC ${ver}.x for C++11 range-based 'for' and nullptr support." + if ! version_is_at_least ${ver} $(gcc-version); then + eerror ${msg} + die ${msg} + fi +} + +src_prepare() { + local ruby_impl + for ruby_impl in "${RUBY_IMPLS[@]}"; do + if has_version "$(ruby_atom ${ruby_impl})"; then + export RUBY=${ruby_impl} + break + fi + done + [[ -z ${RUBY} ]] && die "No available ruby implementations to build with" + + epatch_user + eautoreconf +} + +src_configure() { + local myconf + + if use qt5 ; then + # ac/qt5.m4 finds default Qt version set by qtchooser, bug #532600 + myconf+=( + --with-moc=/usr/$(get_libdir)/qt5/bin/moc + --with-uic=/usr/$(get_libdir)/qt5/bin/uic + --with-rcc=/usr/$(get_libdir)/qt5/bin/rcc + ) + fi + + econf \ + $(use_enable debug) \ + $(use_enable qt5 qt) \ + $(use_with curl) \ + $(usex pch "" --disable-precompiled-headers) \ + "${myconf[@]}" \ + --disable-optimization \ + --docdir="${EPREFIX}"/usr/share/doc/${PF} \ + --with-boost="${EPREFIX}"/usr \ + --with-boost-libdir="${EPREFIX}"/usr/$(get_libdir) +} + +src_compile() { + "${RUBY}" ./drake V=1 -j$(makeopts_jobs) || die +} + +src_install() { + DESTDIR="${D}" "${RUBY}" ./drake -j$(makeopts_jobs) install || die + + dodoc AUTHORS ChangeLog README.md + doman doc/man/*.1 +} diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index 6b9cc97d6184..0cc5159c2dbe 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Tue, 06 Oct 2015 05:42:01 +0000 +Wed, 07 Oct 2015 05:41:26 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index cd95b5a1fc1d..0cc5159c2dbe 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Tue, 06 Oct 2015 05:42:02 +0000 +Wed, 07 Oct 2015 05:41:26 +0000 diff --git a/metadata/herds.xml b/metadata/herds.xml index 6845b2d59a27..b71674a6fd61 100644 --- a/metadata/herds.xml +++ b/metadata/herds.xml @@ -2661,34 +2661,48 @@ proxy-maint@gentoo.org Orphaned packages maintained by Gentoo's proxy-maintainers team - pinkbyte@gentoo.org + amynka@gentoo.org + Amy Winston + + + dlan@gentoo.org hwoarang@gentoo.org + Markos Chandros + + + idella4@gentoo.org + Ian Delaney maksbotan@gentoo.org + Maxim Koltsov - titanofold@gentoo.org + monsieurp>@gentoo.org + Partice Clement - qnikst@gentoo.org + mrueg@gentoo.org + Manuel Rüger - yngwin@gentoo.org + qnikst@gentoo.org - xmw@gentoo.org + swift@gentoo.org - mrueg@gentoo.org + titanofold@gentoo.org - tomwij@gentoo.org + xmw@gentoo.org + Michael Weber - idella4@gentoo.org + yngwin@gentoo.org + Ben de Groot zlogene@gentoo.org diff --git a/metadata/md5-cache/app-admin/logrotate-3.8.8 b/metadata/md5-cache/app-admin/logrotate-3.8.8 deleted file mode 100644 index 48860a02bb9e..000000000000 --- a/metadata/md5-cache/app-admin/logrotate-3.8.8 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install postinst prepare -DEPEND=>=dev-libs/popt-1.5 selinux? ( sys-libs/libselinux ) acl? ( virtual/acl ) >=sys-apps/sed-4 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=Rotates, compresses, and mails system logs -EAPI=5 -HOMEPAGE=https://fedorahosted.org/logrotate/ -IUSE=acl selinux -KEYWORDS=alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ~ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd -LICENSE=GPL-2 -RDEPEND=>=dev-libs/popt-1.5 selinux? ( sys-libs/libselinux ) acl? ( virtual/acl ) selinux? ( sec-policy/selinux-logrotate ) -SLOT=0 -SRC_URI=https://fedorahosted.org/releases/l/o/logrotate/logrotate-3.8.8.tar.gz -_eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 libtool 7f78cd7d403808a350c9ae23f5821fb4 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=2ecf4257591e03d6f8750d25432b5758 diff --git a/metadata/md5-cache/app-arch/snappy-1.1.3 b/metadata/md5-cache/app-arch/snappy-1.1.3 index 31481adf6347..9f9401af1e60 100644 --- a/metadata/md5-cache/app-arch/snappy-1.1.3 +++ b/metadata/md5-cache/app-arch/snappy-1.1.3 @@ -4,9 +4,9 @@ DESCRIPTION=A high-speed compression/decompression library by Google EAPI=5 HOMEPAGE=https://github.com/google/snappy IUSE=static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux LICENSE=BSD SLOT=0 SRC_URI=https://github.com/google/snappy/releases/download/1.1.3/snappy-1.1.3.tar.gz _eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff autotools-multilib 0b47cfc5bc6e355200e256e42f54fb09 autotools-utils 0bf099a6e3dfeaf20a7a94504d8dd896 eutils 43da5163ba106e87d22d2e7d6d67537f libtool 7f78cd7d403808a350c9ae23f5821fb4 multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multilib-build c47eec09e82c8a750127ff2abf0745b1 multilib-minimal a93a9b4153a5f1c746bdd3b20ef9d834 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=5ed67cc07a3774f9c43e421a01ca39d1 +_md5_=be5bf3fe631b0a3a8b1884e9c62e91fe diff --git a/metadata/md5-cache/app-editors/xemacs-21.4.24 b/metadata/md5-cache/app-editors/xemacs-21.4.24 index 86aca2b38470..ac90001328ff 100644 --- a/metadata/md5-cache/app-editors/xemacs-21.4.24 +++ b/metadata/md5-cache/app-editors/xemacs-21.4.24 @@ -4,11 +4,11 @@ DESCRIPTION=highly customizable open source text editor and application developm EAPI=5 HOMEPAGE=http://www.xemacs.org/ IUSE=eolconv gif gpm pop postgres ldap xface nas dnd X jpeg tiff png mule motif freewnn canna xim athena neXt Xaw3d gdbm berkdb -KEYWORDS=alpha amd64 hppa ppc ppc64 sparc ~x86 +KEYWORDS=alpha amd64 hppa ppc ppc64 sparc x86 LICENSE=GPL-2+ PDEPEND=app-xemacs/xemacs-base mule? ( app-xemacs/mule-base ) RDEPEND=berkdb? ( sys-libs/db:= ) gdbm? ( >=sys-libs/gdbm-1.8.3 ) >=sys-libs/zlib-1.1.4 >=dev-libs/openssl-0.9.6:0 >=media-libs/audiofile-0.2.3 gpm? ( >=sys-libs/gpm-1.19.6 ) postgres? ( dev-db/postgresql:= ) ldap? ( net-nds/openldap ) nas? ( media-libs/nas ) X? ( x11-libs/libXt x11-libs/libXmu x11-libs/libXext x11-misc/xbitmaps !Xaw3d? ( !neXt? ( x11-libs/libXaw ) ) ) dnd? ( x11-libs/dnd ) motif? ( >=x11-libs/motif-2.3:0 ) athena? ( x11-libs/libXaw ) Xaw3d? ( x11-libs/libXaw3d ) neXt? ( x11-libs/neXtaw ) xface? ( media-libs/compface ) tiff? ( media-libs/tiff:0 ) png? ( >=media-libs/libpng-1.2:0 ) jpeg? ( virtual/jpeg:0 ) canna? ( app-i18n/canna ) !amd64? ( freewnn? ( app-i18n/freewnn ) ) >=sys-libs/ncurses-5.2 >=app-eselect/eselect-emacs-1.15 SLOT=0 SRC_URI=http://ftp.xemacs.org/xemacs-21.4/xemacs-21.4.24.tar.gz http://www.malfunction.de/afterstep/files/NeXT_XEmacs.tar.gz _eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff eutils 43da5163ba106e87d22d2e7d6d67537f libtool 7f78cd7d403808a350c9ae23f5821fb4 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=102c01f098400020ed9105318e272e94 +_md5_=984d3d45900273199161e1fc5831dc15 diff --git a/metadata/md5-cache/app-emulation/virtualbox-5.0.6-r1 b/metadata/md5-cache/app-emulation/virtualbox-5.0.6-r1 new file mode 100644 index 000000000000..cb6ada133eec --- /dev/null +++ b/metadata/md5-cache/app-emulation/virtualbox-5.0.6-r1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack +DEPEND=!app-emulation/virtualbox-bin ~app-emulation/virtualbox-modules-5.0.6 dev-libs/libIDL >=dev-libs/libxslt-1.1.19 net-misc/curl !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) dev-libs/libxml2 media-libs/libpng:0= media-libs/libvpx sys-libs/zlib !headless? ( qt4? ( dev-qt/qtgui:4 dev-qt/qtcore:4 opengl? ( dev-qt/qtopengl:4 ) x11-libs/libXinerama ) opengl? ( virtual/opengl media-libs/freeglut ) x11-libs/libX11 x11-libs/libXcursor x11-libs/libXext x11-libs/libXmu x11-libs/libXt media-libs/libsdl:0[X,video] ) java? ( >=virtual/jre-1.6:= ) udev? ( >=virtual/udev-171 ) vnc? ( >=net-libs/libvncserver-0.9.9 ) >=dev-util/kbuild-0.1.9998_pre20131130 >=dev-lang/yasm-0.6.2 sys-devel/bin86 sys-power/iasl pam? ( sys-libs/pam ) sys-libs/libcap doc? ( dev-texlive/texlive-basic dev-texlive/texlive-latex dev-texlive/texlive-latexrecommended dev-texlive/texlive-latexextra dev-texlive/texlive-fontsrecommended dev-texlive/texlive-fontsextra ) java? ( >=virtual/jre-1.6:= ) virtual/pkgconfig alsa? ( >=media-libs/alsa-lib-1.0.13 ) !headless? ( x11-libs/libXinerama ) pulseaudio? ( media-sound/pulseaudio ) vboxwebsrv? ( net-libs/gsoap[-gnutls(-)] ) >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] java? ( >=dev-java/java-config-2.2.0 ) virtual/pkgconfig +DESCRIPTION=Family of powerful x86 virtualization products for enterprise as well as home use +EAPI=5 +HOMEPAGE=http://www.virtualbox.org/ +IUSE=alsa doc headless java libressl pam pulseaudio +opengl python +qt4 +sdk +udev vboxwebsrv vnc elibc_FreeBSD java python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=!app-emulation/virtualbox-bin ~app-emulation/virtualbox-modules-5.0.6 dev-libs/libIDL >=dev-libs/libxslt-1.1.19 net-misc/curl !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) dev-libs/libxml2 media-libs/libpng:0= media-libs/libvpx sys-libs/zlib !headless? ( qt4? ( dev-qt/qtgui:4 dev-qt/qtcore:4 opengl? ( dev-qt/qtopengl:4 ) x11-libs/libXinerama ) opengl? ( virtual/opengl media-libs/freeglut ) x11-libs/libX11 x11-libs/libXcursor x11-libs/libXext x11-libs/libXmu x11-libs/libXt media-libs/libsdl:0[X,video] ) java? ( >=virtual/jre-1.6:= ) udev? ( >=virtual/udev-171 ) vnc? ( >=net-libs/libvncserver-0.9.9 ) java? ( >=dev-java/java-config-2.2.0 ) +REQUIRED_USE=java? ( sdk ) python? ( ( sdk ) ) vboxwebsrv? ( java ) python_targets_python2_7 +SLOT=0 +SRC_URI=http://download.virtualbox.org/virtualbox/5.0.6/VirtualBox-5.0.6.tar.bz2 https://dev.gentoo.org/~polynomial-c/virtualbox/patchsets/virtualbox-5.0.2-patches-01.tar.xz +_eclasses_=base 84d9f879f57a8316ff02be0373a3d6f9 eutils 43da5163ba106e87d22d2e7d6d67537f fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 85dc1eac3c64d8141374490ed64122e5 java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 c059b30d6a4df7cf32e2c98c1da1c9b5 linux-info 8f92e5ac1a1da684c5450b1b21a1f56a multilib df4e4d5cfd3d137d0c248e1991c0e4d6 pax-utils 4f1280c0d4dcd8340f731827007c0a53 python-single-r1 612c783d1a1a182ad7ea4f2eb0b79e86 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf qmake-utils 05b63bb5c708c5903a9de5c58c8e43c8 qt4-r2 cb2cb5856695b300266b425da70e82d8 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d udev 37ef89be271b9ae8aa64be024ddb39b5 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=b26ee0d845d2108db1b9981be2fa7aa1 diff --git a/metadata/md5-cache/app-misc/tmux-1.9a b/metadata/md5-cache/app-misc/tmux-1.9a index 30fb3ca912e0..2e1b23bf98a6 100644 --- a/metadata/md5-cache/app-misc/tmux-1.9a +++ b/metadata/md5-cache/app-misc/tmux-1.9a @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install prepare setup test -DEPEND=>=dev-libs/libevent-2.0.10 sys-libs/ncurses virtual/pkgconfig !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEPEND=>=dev-libs/libevent-2.0.10 =sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DESCRIPTION=Terminal multiplexer EAPI=5 HOMEPAGE=http://tmux.github.io/ IUSE=debug selinux vim-syntax KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=ISC -RDEPEND=>=dev-libs/libevent-2.0.10 sys-libs/ncurses selinux? ( sec-policy/selinux-screen ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) +RDEPEND=>=dev-libs/libevent-2.0.10 =dev-libs/libevent-2.0.10 !sys-apps/utempter sys-libs/ncurses virtual/pkgconfig !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEPEND=>=dev-libs/libevent-2.0.10 =sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DESCRIPTION=Terminal multiplexer EAPI=5 HOMEPAGE=http://tmux.github.io/ IUSE=debug selinux vim-syntax KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=ISC -RDEPEND=>=dev-libs/libevent-2.0.10 !sys-apps/utempter sys-libs/ncurses selinux? ( sec-policy/selinux-screen ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) +RDEPEND=>=dev-libs/libevent-2.0.10 =app-text/sgml-common-0.6.3-r2 -DESCRIPTION=A toolset for processing LinuxDoc DTD SGML files -EAPI=5 -HOMEPAGE=http://packages.qa.debian.org/l/linuxdoc-tools.html -KEYWORDS=amd64 ~ia64 ppc x86 ~x86-fbsd -LICENSE=MIT SGMLUG -RDEPEND=app-text/openjade app-text/opensp app-text/sgml-common dev-texlive/texlive-fontsrecommended dev-lang/perl sys-apps/gawk sys-apps/groff virtual/latex-base -SLOT=0 -SRC_URI=mirror://debian/pool/main/l/linuxdoc-tools/linuxdoc-tools_0.9.68.tar.gz -_eclasses_=base 84d9f879f57a8316ff02be0373a3d6f9 eutils 43da5163ba106e87d22d2e7d6d67537f multilib df4e4d5cfd3d137d0c248e1991c0e4d6 sgml-catalog b6e9d36507f43d79b6df9cb78d6eb4dd toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=29ef38eeeb092b0d4404d37f223423fa diff --git a/metadata/md5-cache/app-text/linuxdoc-tools-0.9.69 b/metadata/md5-cache/app-text/linuxdoc-tools-0.9.69 index 0b0e732f9fca..dc912e5d1d08 100644 --- a/metadata/md5-cache/app-text/linuxdoc-tools-0.9.69 +++ b/metadata/md5-cache/app-text/linuxdoc-tools-0.9.69 @@ -4,10 +4,10 @@ DESCRIPTION=A toolset for processing LinuxDoc DTD SGML files EAPI=5 HOMEPAGE=https://tracker.debian.org/pkg/linuxdoc-tools IUSE=doc -KEYWORDS=~amd64 ~ia64 ~ppc ~x86 ~x86-fbsd +KEYWORDS=amd64 ~ia64 ppc x86 ~x86-fbsd LICENSE=MIT SGMLUG RDEPEND=|| ( app-text/openjade app-text/opensp ) app-text/sgml-common dev-lang/perl:= || ( sys-apps/gawk sys-apps/mawk ) sys-apps/groff doc? ( dev-texlive/texlive-fontsrecommended virtual/latex-base ) dev-lang/perl:=[-build(-)] SLOT=0 SRC_URI=mirror://debian/pool/main/l/linuxdoc-tools/linuxdoc-tools_0.9.69.orig.tar.gz _eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff autotools-utils 0bf099a6e3dfeaf20a7a94504d8dd896 base 84d9f879f57a8316ff02be0373a3d6f9 eutils 43da5163ba106e87d22d2e7d6d67537f libtool 7f78cd7d403808a350c9ae23f5821fb4 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde perl-module 1cfb38bf68a24c8394e41d2f53003146 sgml-catalog b6e9d36507f43d79b6df9cb78d6eb4dd toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d unpacker 1d149d9bda7723e740cfd28118f27813 -_md5_=db3c1f1eddb8dc8bf1745c365f3f1a32 +_md5_=f9969b54969793ddc07047248ee6d8c4 diff --git a/metadata/md5-cache/dev-db/mysql-connector-c++-1.1.6 b/metadata/md5-cache/dev-db/mysql-connector-c++-1.1.6 index 2c2e601d6fb9..709fec19b90b 100644 --- a/metadata/md5-cache/dev-db/mysql-connector-c++-1.1.6 +++ b/metadata/md5-cache/dev-db/mysql-connector-c++-1.1.6 @@ -4,10 +4,10 @@ DESCRIPTION=MySQL database connector for C++ (mimics JDBC 4.0 API) EAPI=5 HOMEPAGE=http://dev.mysql.com/downloads/connector/cpp/ IUSE=debug examples gcov static-libs -KEYWORDS=amd64 ~arm ~ppc ~ppc64 ~sparc x86 +KEYWORDS=amd64 ~arm ~ppc ppc64 ~sparc x86 LICENSE=GPL-2 RDEPEND=virtual/libmysqlclient:= dev-libs/boost:0= dev-libs/openssl:0= SLOT=0 SRC_URI=mirror://mysql/Downloads/Connector-C++/mysql-connector-c++-1.1.6.tar.gz _eclasses_=cmake-utils f474224ef49d530640a43a04ae94928e eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=2b1a9dc9a6948909f195ffa1dc8f82ee +_md5_=f7490cab27e9ef283280b2a268e2e141 diff --git a/metadata/md5-cache/dev-db/redis-3.0.4 b/metadata/md5-cache/dev-db/redis-3.0.4 new file mode 100644 index 000000000000..d24cb4a5a933 --- /dev/null +++ b/metadata/md5-cache/dev-db/redis-3.0.4 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup +DEPEND=virtual/pkgconfig >=sys-devel/autoconf-2.63 test? ( dev-lang/tcl:0= ) >=dev-lang/lua-5.1:* tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig +DESCRIPTION=A persistent caching system, key-value and data structures database +EAPI=5 +HOMEPAGE=http://redis.io/ +IUSE=+jemalloc tcmalloc test +KEYWORDS=~amd64 ~arm ~hppa ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris +LICENSE=BSD +RDEPEND=>=dev-lang/lua-5.1:* tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) +REQUIRED_USE=?? ( tcmalloc jemalloc ) +SLOT=0 +SRC_URI=http://download.redis.io/releases/redis-3.0.4.tar.gz +_eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 libtool 7f78cd7d403808a350c9ae23f5821fb4 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 systemd 6b4f0cefa642270eded7e6ca816fd181 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d user 906f3c8eb3a2350a4f1191a89baa3e46 +_md5_=a23c498babe40a98ff89ce7ed1f7722a diff --git a/metadata/md5-cache/dev-haskell/hsopenssl-0.11.1.1-r1 b/metadata/md5-cache/dev-haskell/hsopenssl-0.11.1.1-r1 new file mode 100644 index 000000000000..3df020e9226f --- /dev/null +++ b/metadata/md5-cache/dev-haskell/hsopenssl-0.11.1.1-r1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-haskell/network-2.1:=[profile?] =dev-haskell/old-locale-1.0:=[profile?] =dev-lang/ghc-7.4.1:= !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) >=dev-haskell/cabal-1.8 test? ( >=dev-haskell/hunit-1.0 =dev-haskell/test-framework-0.8 =dev-haskell/test-framework-hunit-0.3 =dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) >=dev-haskell/cabal-1.1.4 +DESCRIPTION=Partial OpenSSL binding for Haskell +EAPI=5 +HOMEPAGE=https://github.com/phonohawk/HsOpenSSL +IUSE=+fast-bignum libressl doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=public-domain +RDEPEND=>=dev-haskell/network-2.1:=[profile?] =dev-haskell/old-locale-1.0:=[profile?] =dev-lang/ghc-7.4.1:= !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) +RESTRICT=test +SLOT=0/0.11.1.1 +SRC_URI=mirror://hackage/packages/archive/HsOpenSSL/0.11.1.1/HsOpenSSL-0.11.1.1.tar.gz +_eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f ghc-package 6165faf4ae46df43d5a9b0dd28ec8654 haskell-cabal 5a91bcb951851c3c401505c28526502f multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=7668a0dae08822cb14d6b1edf7c065e5 diff --git a/metadata/md5-cache/dev-java/commons-dbutils-1.1 b/metadata/md5-cache/dev-java/commons-dbutils-1.1 deleted file mode 100644 index c6966dd2fc30..000000000000 --- a/metadata/md5-cache/dev-java/commons-dbutils-1.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install preinst setup unpack -DEPEND=>=virtual/jdk-1.4 test? ( dev-java/ant-junit ) >=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=A small set of classes designed to make working with JDBC easier -HOMEPAGE=http://commons.apache.org/dbutils/ -IUSE=elibc_FreeBSD doc source test elibc_FreeBSD -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=>=virtual/jre-1.4 >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=mirror://apache/commons/dbutils/source/commons-dbutils-1.1-src.tar.gz -_eclasses_=base 84d9f879f57a8316ff02be0373a3d6f9 eutils 43da5163ba106e87d22d2e7d6d67537f java-ant-2 946f77f25d457a91a2188c26f3e50b3e java-pkg-2 b02dc1e46b3648e467b5fbdf7857cf28 java-utils-2 c059b30d6a4df7cf32e2c98c1da1c9b5 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=dacfe927c0e2ae2e977cbd910a6f5af8 diff --git a/metadata/md5-cache/dev-java/commons-dbutils-1.6 b/metadata/md5-cache/dev-java/commons-dbutils-1.6 new file mode 100644 index 000000000000..38be6b378831 --- /dev/null +++ b/metadata/md5-cache/dev-java/commons-dbutils-1.6 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install preinst prepare setup test +DEPEND=>=virtual/jdk-1.6 test? ( dev-java/mockito:0 dev-java/ant-junit:0 dev-java/hamcrest-core:1.3 ) >=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 small set of classes designed to make working with JDBC easier +EAPI=5 +HOMEPAGE=http://commons.apache.org/dbutils/ +IUSE=elibc_FreeBSD doc source test elibc_FreeBSD +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) +SLOT=0 +SRC_URI=mirror://apache/commons/dbutils/source/commons-dbutils-1.6-src.tar.gz +_eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f java-ant-2 946f77f25d457a91a2188c26f3e50b3e java-pkg-2 b02dc1e46b3648e467b5fbdf7857cf28 java-utils-2 c059b30d6a4df7cf32e2c98c1da1c9b5 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=eee36f70b1221238d099d67202ca4c2a diff --git a/metadata/md5-cache/dev-java/commons-graph-0.1 b/metadata/md5-cache/dev-java/commons-graph-0.1 new file mode 100644 index 000000000000..89a778cc9627 --- /dev/null +++ b/metadata/md5-cache/dev-java/commons-graph-0.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install preinst prepare setup test +DEPEND=>=virtual/jdk-1.6 test? ( dev-java/ant-junit:0 ) >=dev-java/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 toolkit for managing graphs and graph based data structures +EAPI=5 +HOMEPAGE=https://commons.apache.org/sandbox/commons-graph/ +IUSE=elibc_FreeBSD doc source test elibc_FreeBSD +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) +SLOT=0 +SRC_URI=http://dev.gentoo.org/~monsieurp/packages/commons-graph-0.1.tar.gz +_eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f java-ant-2 946f77f25d457a91a2188c26f3e50b3e java-pkg-2 b02dc1e46b3648e467b5fbdf7857cf28 java-utils-2 c059b30d6a4df7cf32e2c98c1da1c9b5 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=72fcab65617686849ac97c9def5900a4 diff --git a/metadata/md5-cache/dev-java/commons-graph-0.8.1_p20040118-r2 b/metadata/md5-cache/dev-java/commons-graph-0.8.1_p20040118-r2 deleted file mode 100644 index 12afd7f0753d..000000000000 --- a/metadata/md5-cache/dev-java/commons-graph-0.8.1_p20040118-r2 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install preinst setup test unpack -DEPEND=>=virtual/jdk-1.3 test? ( dev-java/ant-junit ) dev-java/commons-collections dev-java/jdepend >=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=A toolkit for managing graphs and graph based data structures -HOMEPAGE=http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/graph2/ -IUSE=elibc_FreeBSD doc source test elibc_FreeBSD -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=>=virtual/jre-1.3 dev-java/commons-collections dev-java/jdepend >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=mirror://gentoo/distfiles/graph2-0.8.1.cvs20040118.tar.gz -_eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f java-ant-2 946f77f25d457a91a2188c26f3e50b3e java-pkg-2 b02dc1e46b3648e467b5fbdf7857cf28 java-utils-2 c059b30d6a4df7cf32e2c98c1da1c9b5 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=0ab0b35d43634ca6a8ced21e44a1fae0 diff --git a/metadata/md5-cache/dev-java/commons-jelly-1.0-r5 b/metadata/md5-cache/dev-java/commons-jelly-1.0-r5 deleted file mode 100644 index 61e74f5c5135..000000000000 --- a/metadata/md5-cache/dev-java/commons-jelly-1.0-r5 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup test -DEPEND=dev-java/commons-beanutils:1.7 dev-java/commons-cli:1 dev-java/commons-collections:0 dev-java/commons-discovery:0 dev-java/commons-jexl:1.0 dev-java/commons-lang:0 dev-java/commons-logging:0 dev-java/dom4j:1 dev-java/jakarta-jstl:0 dev-java/jaxen:1.1 dev-java/junit:0 java-virtuals/servlet-api:2.5 >=virtual/jdk-1.4 test? ( dev-java/ant-junit: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 Java and XML based scripting and processing engine -EAPI=4 -HOMEPAGE=http://commons.apache.org/jelly/ -IUSE=elibc_FreeBSD doc source test elibc_FreeBSD -KEYWORDS=amd64 x86 -LICENSE=Apache-2.0 -RDEPEND=dev-java/commons-beanutils:1.7 dev-java/commons-cli:1 dev-java/commons-collections:0 dev-java/commons-discovery:0 dev-java/commons-jexl:1.0 dev-java/commons-lang:0 dev-java/commons-logging:0 dev-java/dom4j:1 dev-java/jakarta-jstl:0 dev-java/jaxen:1.1 dev-java/junit:0 java-virtuals/servlet-api:2.5 >=virtual/jre-1.4 >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) -SLOT=1 -SRC_URI=mirror://apache/jakarta/commons/jelly/source/commons-jelly-1.0-src.tar.gz -_eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f java-ant-2 946f77f25d457a91a2188c26f3e50b3e java-pkg-2 b02dc1e46b3648e467b5fbdf7857cf28 java-utils-2 c059b30d6a4df7cf32e2c98c1da1c9b5 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=4efcf88c757615a14298355e5abc4732 diff --git a/metadata/md5-cache/dev-java/commons-jelly-1.0-r6 b/metadata/md5-cache/dev-java/commons-jelly-1.0-r6 deleted file mode 100644 index 8e7c931b9f7b..000000000000 --- a/metadata/md5-cache/dev-java/commons-jelly-1.0-r6 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup test -DEPEND=dev-java/commons-beanutils:1.7 dev-java/commons-cli:1 dev-java/commons-collections:0 dev-java/commons-discovery:0 dev-java/commons-jexl:1.0 dev-java/commons-lang:0 dev-java/commons-logging:0 dev-java/dom4j:1 dev-java/tomcat-jstl-spec:1.2.5 dev-java/jaxen:1.1 dev-java/junit:0 java-virtuals/servlet-api:2.5 >=virtual/jdk-1.4 test? ( dev-java/ant-junit: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 Java and XML based scripting and processing engine -EAPI=4 -HOMEPAGE=http://commons.apache.org/jelly/ -IUSE=elibc_FreeBSD doc source test elibc_FreeBSD -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=dev-java/commons-beanutils:1.7 dev-java/commons-cli:1 dev-java/commons-collections:0 dev-java/commons-discovery:0 dev-java/commons-jexl:1.0 dev-java/commons-lang:0 dev-java/commons-logging:0 dev-java/dom4j:1 dev-java/tomcat-jstl-spec:1.2.5 dev-java/jaxen:1.1 dev-java/junit:0 java-virtuals/servlet-api:2.5 >=virtual/jre-1.4 >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) -SLOT=1 -SRC_URI=mirror://apache/jakarta/commons/jelly/source/commons-jelly-1.0-src.tar.gz -_eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f java-ant-2 946f77f25d457a91a2188c26f3e50b3e java-pkg-2 b02dc1e46b3648e467b5fbdf7857cf28 java-utils-2 c059b30d6a4df7cf32e2c98c1da1c9b5 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=ff9470f8be708af5a1fa9df63491ba49 diff --git a/metadata/md5-cache/dev-java/commons-jelly-1.0-r7 b/metadata/md5-cache/dev-java/commons-jelly-1.0-r7 new file mode 100644 index 000000000000..2239bf5ac7c4 --- /dev/null +++ b/metadata/md5-cache/dev-java/commons-jelly-1.0-r7 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install preinst prepare setup test +DEPEND=dev-java/dom4j:1 dev-java/junit:0 dev-java/jaxen:1.1 dev-java/commons-cli:1 dev-java/commons-lang:0 dev-java/commons-jexl:1.0 dev-java/commons-logging:0 dev-java/commons-discovery:0 dev-java/commons-collections:0 dev-java/commons-beanutils:1.7 dev-java/tomcat-jstl-spec:1.2.5 java-virtuals/servlet-api:3.0 >=virtual/jdk-1.6 test? ( dev-java/ant-junit: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 Java and XML based scripting and processing engine +EAPI=5 +HOMEPAGE=http://commons.apache.org/jelly/ +IUSE=elibc_FreeBSD doc source test elibc_FreeBSD +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=dev-java/dom4j:1 dev-java/junit:0 dev-java/jaxen:1.1 dev-java/commons-cli:1 dev-java/commons-lang:0 dev-java/commons-jexl:1.0 dev-java/commons-logging:0 dev-java/commons-discovery:0 dev-java/commons-collections:0 dev-java/commons-beanutils:1.7 dev-java/tomcat-jstl-spec:1.2.5 java-virtuals/servlet-api:3.0 >=virtual/jre-1.6 >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) +SLOT=1 +SRC_URI=mirror://apache/jakarta/commons/jelly/source/commons-jelly-1.0-src.tar.gz +_eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f java-ant-2 946f77f25d457a91a2188c26f3e50b3e java-pkg-2 b02dc1e46b3648e467b5fbdf7857cf28 java-utils-2 c059b30d6a4df7cf32e2c98c1da1c9b5 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=501d74dc032dd0417ccc2b122002c3fc diff --git a/metadata/md5-cache/dev-java/commons-jexl-1.1 b/metadata/md5-cache/dev-java/commons-jexl-1.1-r1 similarity index 60% rename from metadata/md5-cache/dev-java/commons-jexl-1.1 rename to metadata/md5-cache/dev-java/commons-jexl-1.1-r1 index be26b771c0ec..a275443d3be2 100644 --- a/metadata/md5-cache/dev-java/commons-jexl-1.1 +++ b/metadata/md5-cache/dev-java/commons-jexl-1.1-r1 @@ -1,12 +1,13 @@ -DEFINED_PHASES=compile install preinst setup test unpack -DEPEND=>=virtual/jdk-1.4 test? ( dev-java/ant-junit ) dev-java/commons-logging =dev-java/junit-3* >=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 +DEFINED_PHASES=compile configure install preinst prepare setup test +DEPEND=>=virtual/jdk-1.6 test? ( dev-java/ant-junit ) dev-java/commons-logging dev-java/junit: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=Expression language engine, can be embedded in applications and frameworks +EAPI=5 HOMEPAGE=http://commons.apache.org/jexl/ IUSE=elibc_FreeBSD doc source test elibc_FreeBSD KEYWORDS=amd64 ppc x86 LICENSE=Apache-2.0 -RDEPEND=>=virtual/jre-1.4 dev-java/commons-logging =dev-java/junit-3* >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) +RDEPEND=>=virtual/jre-1.6 dev-java/commons-logging dev-java/junit:0 >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) SLOT=1.0 SRC_URI=mirror://apache/jakarta/commons/jexl/source/commons-jexl-1.1-src.tar.gz _eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f java-ant-2 946f77f25d457a91a2188c26f3e50b3e java-pkg-2 b02dc1e46b3648e467b5fbdf7857cf28 java-utils-2 c059b30d6a4df7cf32e2c98c1da1c9b5 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=3235b96fb61a7734740f682805d1cac4 +_md5_=563087d5b9b5be5a9135a6a5e59b4db9 diff --git a/metadata/md5-cache/dev-java/commons-jexl-2.1.1 b/metadata/md5-cache/dev-java/commons-jexl-2.1.1 index 097cb584c54e..ec316f9492ca 100644 --- a/metadata/md5-cache/dev-java/commons-jexl-2.1.1 +++ b/metadata/md5-cache/dev-java/commons-jexl-2.1.1 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install preinst prepare setup test -DEPEND=>=virtual/jdk-1.5 >=dev-java/javacc-5 test? ( dev-java/ant-junit:0 ) dev-java/commons-logging: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 +DEPEND=>=virtual/jdk-1.6 >=dev-java/javacc-5 test? ( dev-java/ant-junit:0 ) dev-java/commons-logging: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=Expression language engine, can be embedded in applications and frameworks EAPI=5 HOMEPAGE=http://commons.apache.org/jexl/ IUSE=elibc_FreeBSD doc source test elibc_FreeBSD -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=Apache-2.0 -RDEPEND=>=virtual/jre-1.5 dev-java/commons-logging:0 >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) +RDEPEND=>=virtual/jre-1.6 dev-java/commons-logging:0 >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) SLOT=2 SRC_URI=mirror://apache/commons/jexl/source/commons-jexl-2.1.1-src.tar.gz _eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f java-ant-2 946f77f25d457a91a2188c26f3e50b3e java-pkg-2 b02dc1e46b3648e467b5fbdf7857cf28 java-utils-2 c059b30d6a4df7cf32e2c98c1da1c9b5 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=142931776881cef74767cf6cf92cfff3 +_md5_=e2944ae6113284fde474206e69754406 diff --git a/metadata/md5-cache/dev-java/constantine-0.6 b/metadata/md5-cache/dev-java/constantine-0.6 deleted file mode 100644 index 6af94474491c..000000000000 --- a/metadata/md5-cache/dev-java/constantine-0.6 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install preinst setup test unpack -DEPEND=>=virtual/jdk-1.5 test? ( dev-java/ant-junit4 ) >=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 Java values for common platform C constants -HOMEPAGE=http://kenai.com/projects/constantine -IUSE=elibc_FreeBSD source test elibc_FreeBSD -KEYWORDS=amd64 ppc x86 ~amd64-linux ~x86-linux ~x86-solaris -LICENSE=MIT -RDEPEND=>=virtual/jre-1.5 >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=mirror://gentoo/constantine-0.6.tar.bz2 -_eclasses_=base 84d9f879f57a8316ff02be0373a3d6f9 eutils 43da5163ba106e87d22d2e7d6d67537f java-ant-2 946f77f25d457a91a2188c26f3e50b3e java-pkg-2 b02dc1e46b3648e467b5fbdf7857cf28 java-utils-2 c059b30d6a4df7cf32e2c98c1da1c9b5 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=340d99a4cd3d3770e59e3ab47a6ea20d diff --git a/metadata/md5-cache/dev-java/constantine-0.7 b/metadata/md5-cache/dev-java/constantine-0.7 deleted file mode 100644 index 25579f53cae2..000000000000 --- a/metadata/md5-cache/dev-java/constantine-0.7 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install preinst setup test unpack -DEPEND=>=virtual/jdk-1.5 test? ( dev-java/ant-junit4 ) >=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 Java values for common platform C constants -HOMEPAGE=https://github.com/wmeissner/jnr-constants -IUSE=elibc_FreeBSD source test elibc_FreeBSD -KEYWORDS=amd64 ~ppc x86 ~amd64-linux ~x86-linux ~x86-solaris -LICENSE=MIT -RDEPEND=>=virtual/jre-1.5 >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=mirror://gentoo/constantine-0.7.tar.gz -_eclasses_=base 84d9f879f57a8316ff02be0373a3d6f9 eutils 43da5163ba106e87d22d2e7d6d67537f java-ant-2 946f77f25d457a91a2188c26f3e50b3e java-pkg-2 b02dc1e46b3648e467b5fbdf7857cf28 java-utils-2 c059b30d6a4df7cf32e2c98c1da1c9b5 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=f1bf0672c90f7337516e8f22e54d925e diff --git a/metadata/md5-cache/dev-java/constantine-0.7-r1 b/metadata/md5-cache/dev-java/constantine-0.7-r1 new file mode 100644 index 000000000000..15ece948fd49 --- /dev/null +++ b/metadata/md5-cache/dev-java/constantine-0.7-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install preinst prepare setup test +DEPEND=>=virtual/jdk-1.6 test? ( dev-java/ant-junit:0 ) >=dev-java/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=Provides Java values for common platform C constants +EAPI=5 +HOMEPAGE=https://github.com/wmeissner/jnr-constants +IUSE=elibc_FreeBSD source test elibc_FreeBSD +KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris +LICENSE=MIT +RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) +SLOT=0 +SRC_URI=mirror://gentoo/constantine-0.7.tar.gz +_eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f java-ant-2 946f77f25d457a91a2188c26f3e50b3e java-pkg-2 b02dc1e46b3648e467b5fbdf7857cf28 java-utils-2 c059b30d6a4df7cf32e2c98c1da1c9b5 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=6ca3be6b093ba7043135b3658ab63fa8 diff --git a/metadata/md5-cache/dev-libs/json-c-0.12 b/metadata/md5-cache/dev-libs/json-c-0.12 index 036a9aab5dc0..81477271e3b0 100644 --- a/metadata/md5-cache/dev-libs/json-c-0.12 +++ b/metadata/md5-cache/dev-libs/json-c-0.12 @@ -4,10 +4,10 @@ DESCRIPTION=A JSON implementation in C EAPI=5 HOMEPAGE=https://github.com/json-c/json-c/wiki IUSE=doc static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos LICENSE=MIT RDEPEND=abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20140406-r3 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) SLOT=0/0 SRC_URI=https://s3.amazonaws.com/json-c_releases/releases/json-c-0.12.tar.gz _eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff autotools-multilib 0b47cfc5bc6e355200e256e42f54fb09 autotools-utils 0bf099a6e3dfeaf20a7a94504d8dd896 eutils 43da5163ba106e87d22d2e7d6d67537f libtool 7f78cd7d403808a350c9ae23f5821fb4 multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multilib-build c47eec09e82c8a750127ff2abf0745b1 multilib-minimal a93a9b4153a5f1c746bdd3b20ef9d834 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=b3ad455312993c155a3fd44b7cb104ed +_md5_=51b15aa0eb684934e0e2eb2dcc0e2352 diff --git a/metadata/md5-cache/dev-libs/leveldb-1.18-r1 b/metadata/md5-cache/dev-libs/leveldb-1.18-r1 index 598cd2bd8419..935daa0bac6a 100644 --- a/metadata/md5-cache/dev-libs/leveldb-1.18-r1 +++ b/metadata/md5-cache/dev-libs/leveldb-1.18-r1 @@ -3,11 +3,11 @@ DEPEND=tcmalloc? ( dev-util/google-perftools ) snappy? ( app-arch/snappy static- DESCRIPTION=a fast key-value storage library written at Google EAPI=5 HOMEPAGE=http://leveldb.org/ https://github.com/google/leveldb -IUSE=+snappy static-libs +tcmalloc -KEYWORDS=amd64 arm ~arm64 ~mips ~ppc ppc64 x86 ~amd64-linux ~x86-linux +IUSE=+snappy static-libs +tcmalloc kernel_FreeBSD +KEYWORDS=amd64 arm ~arm64 ~mips ~ppc ppc64 x86 ~amd64-fbsd ~amd64-linux ~x86-linux LICENSE=BSD RDEPEND=tcmalloc? ( dev-util/google-perftools ) snappy? ( app-arch/snappy static-libs? ( app-arch/snappy[static-libs] ) ) SLOT=0 SRC_URI=https://github.com/google/leveldb/archive/v1.18.tar.gz -> leveldb-1.18.tar.gz _eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=05f94db504187c5c7d3493136e5600bd +_md5_=4cca5ace0e7aa51ccf26a83c413f77b3 diff --git a/metadata/md5-cache/dev-libs/ppl-1.1 b/metadata/md5-cache/dev-libs/ppl-1.1 index 5e1699b97dbc..f8fa3ae08546 100644 --- a/metadata/md5-cache/dev-libs/ppl-1.1 +++ b/metadata/md5-cache/dev-libs/ppl-1.1 @@ -4,9 +4,9 @@ DESCRIPTION=The Parma Polyhedra Library provides numerical abstractions for anal EAPI=5 HOMEPAGE=http://bugseng.com/products/ppl IUSE=+cxx doc lpsol pch static-libs test -KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~sparc-solaris +KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~sparc-solaris LICENSE=GPL-3 RDEPEND=>=dev-libs/gmp-6[cxx] lpsol? ( sci-mathematics/glpk ) !dev-libs/cloog-ppl SLOT=0/4.13 SRC_URI=http://bugseng.com/products/ppl/download/ftp/releases/1.1/ppl-1.1.tar.xz -_md5_=6d978da4fc2b656b28b6e9ef4850910f +_md5_=25ffd7444f5d630e1f6362834a6241c1 diff --git a/metadata/md5-cache/dev-lua/lua-openssl-0.4.1 b/metadata/md5-cache/dev-lua/lua-openssl-0.4.1 new file mode 100644 index 000000000000..eff57a665654 --- /dev/null +++ b/metadata/md5-cache/dev-lua/lua-openssl-0.4.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install prepare +DEPEND=luajit? ( dev-lang/luajit:2 ) !luajit? ( >=dev-lang/lua-5.1:0 ) dev-libs/openssl:0 virtual/pkgconfig +DESCRIPTION=OpenSSL binding for Lua +EAPI=5 +HOMEPAGE=https://github.com/zhaozg/lua-openssl +IUSE=luajit +KEYWORDS=~amd64 ~x86 +LICENSE=MIT openssl PHP-3 +RDEPEND=luajit? ( dev-lang/luajit:2 ) !luajit? ( >=dev-lang/lua-5.1:0 ) dev-libs/openssl:0 +SLOT=0 +SRC_URI=https://github.com/zhaozg/lua-openssl/archive/0.4.1.tar.gz -> lua-openssl-0.4.1.tar.gz +_eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=4d69e5272a049f27f4eeb3bd6ac41b25 diff --git a/metadata/md5-cache/dev-ml/menhir-20151005 b/metadata/md5-cache/dev-ml/menhir-20151005 new file mode 100644 index 000000000000..f1a824b7c2d5 --- /dev/null +++ b/metadata/md5-cache/dev-ml/menhir-20151005 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install +DEPEND=>=dev-lang/ocaml-4.02:=[ocamlopt?] >=dev-ml/findlib-1.0.4-r1 +DESCRIPTION=LR(1) parser generator for the OCaml language +EAPI=5 +HOMEPAGE=http://gallium.inria.fr/~fpottier/menhir/ +IUSE=examples +ocamlopt +KEYWORDS=~amd64 ~x86 +LICENSE=QPL-1.0 LGPL-2-with-linking-exception +RDEPEND=>=dev-lang/ocaml-4.02:=[ocamlopt?] +SLOT=0/20151005 +SRC_URI=http://gallium.inria.fr/~fpottier/menhir/menhir-20151005.tar.gz +_eclasses_=findlib 9909e5ca0f77ff5b693885a3d7aeadb7 +_md5_=0ed0b785c2b6bce9d22c2b783f2c123f diff --git a/metadata/md5-cache/dev-php/PEAR-File_Passwd-1.1.7-r1 b/metadata/md5-cache/dev-php/PEAR-File_Passwd-1.1.7-r1 deleted file mode 100644 index 1d45cc177d0c..000000000000 --- a/metadata/md5-cache/dev-php/PEAR-File_Passwd-1.1.7-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install setup -DEPEND=|| ( =dev-lang/php-5.3 ) dev-lang/php >=dev-php/pear-1.8.1 -DESCRIPTION=Manipulate many kinds of password files -EAPI=2 -HOMEPAGE=http://pear.php.net/File_Passwd -KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 -LICENSE=PHP-3 -RDEPEND=|| ( =dev-lang/php-5.3 ) 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 df4e4d5cfd3d137d0c248e1991c0e4d6 php-pear-r1 775902054fe3b812a6afa7cdde2e0b40 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=8079ff50df5129dd964c65aeb71b97ea 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 e6155567d30c..2b148f07d198 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 @@ -3,10 +3,10 @@ DEPEND=dev-lang/php:*[pcre(+)] dev-lang/php:* >=dev-php/pear-1.8.1 DESCRIPTION=Manipulate many kinds of password files EAPI=5 HOMEPAGE=http://pear.php.net/File_Passwd -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 LICENSE=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 df4e4d5cfd3d137d0c248e1991c0e4d6 php-pear-r1 775902054fe3b812a6afa7cdde2e0b40 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=7b7ed9f80a2cc300922835f97646cd1c +_md5_=30e8a62b639f484f21e1ba6dc0b50458 diff --git a/metadata/md5-cache/dev-php/PEAR-I18Nv2-0.11.4-r1 b/metadata/md5-cache/dev-php/PEAR-I18Nv2-0.11.4-r1 deleted file mode 100644 index 20fb8f912b08..000000000000 --- a/metadata/md5-cache/dev-php/PEAR-I18Nv2-0.11.4-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install setup -DEPEND=|| ( =dev-lang/php-5.3[iconv] ) dev-lang/php >=dev-php/pear-1.8.1 -DESCRIPTION=Internationalization - basic support to localize your application -EAPI=2 -HOMEPAGE=http://pear.php.net/I18Nv2 -KEYWORDS=alpha amd64 hppa ia64 ppc ppc64 sparc x86 -LICENSE=PHP-3 -RDEPEND=|| ( =dev-lang/php-5.3[iconv] ) 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 df4e4d5cfd3d137d0c248e1991c0e4d6 php-pear-r1 775902054fe3b812a6afa7cdde2e0b40 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=74682555884ae0afc1f80bc1d0d00a8b 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 ba06c11fd825..a649ccadfbe4 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 @@ -3,10 +3,10 @@ DEPEND=dev-lang/php:*[iconv,pcre(+)] dev-lang/php:* >=dev-php/pear-1.8.1 DESCRIPTION=Internationalization - basic support to localize your application EAPI=5 HOMEPAGE=http://pear.php.net/I18Nv2 -KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=alpha amd64 hppa ia64 ppc ppc64 sparc x86 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 df4e4d5cfd3d137d0c248e1991c0e4d6 php-pear-r1 775902054fe3b812a6afa7cdde2e0b40 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=aba71e49a9b08a7736a370647e84679e +_md5_=a3a3a28381c2d8e2438791ab14eda81b diff --git a/metadata/md5-cache/dev-php/PEAR-Structures_Graph-1.0.4 b/metadata/md5-cache/dev-php/PEAR-Structures_Graph-1.0.4 deleted file mode 100644 index 681359c69c73..000000000000 --- a/metadata/md5-cache/dev-php/PEAR-Structures_Graph-1.0.4 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install -DEPEND=|| ( =dev-lang/php-5.3 ) >=dev-php/PEAR-PEAR-1.8.1 -DESCRIPTION=Graph datastructure manipulation library -EAPI=2 -HOMEPAGE=http://pear.php.net/package/Structures_Graph -KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 -LICENSE=LGPL-2.1 -PDEPEND=dev-php/pear -RDEPEND=|| ( =dev-lang/php-5.3 ) >=dev-php/PEAR-PEAR-1.8.1 -SLOT=0 -SRC_URI=http://pear.php.net/get/Structures_Graph-1.0.4.tgz -_md5_=1d668a42ba09c0d36809b44bd773925c diff --git a/metadata/md5-cache/dev-php/PEAR-Structures_Graph-1.0.4-r2 b/metadata/md5-cache/dev-php/PEAR-Structures_Graph-1.0.4-r2 index 98c84cc7f214..bc38b5970faa 100644 --- a/metadata/md5-cache/dev-php/PEAR-Structures_Graph-1.0.4-r2 +++ b/metadata/md5-cache/dev-php/PEAR-Structures_Graph-1.0.4-r2 @@ -3,10 +3,10 @@ DEPEND=dev-lang/php:*[pcre(+)] >=dev-php/PEAR-PEAR-1.8.1 DESCRIPTION=Graph datastructure manipulation library EAPI=5 HOMEPAGE=http://pear.php.net/package/Structures_Graph -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 LICENSE=LGPL-2.1 PDEPEND=dev-php/pear RDEPEND=dev-lang/php:*[pcre(+)] >=dev-php/PEAR-PEAR-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Structures_Graph-1.0.4.tgz -_md5_=7fd14b745eab618b9c44f20f29830ea9 +_md5_=5fef65908ec481d4bf6e7c28c1220e18 diff --git a/metadata/md5-cache/dev-php/pecl-ncurses-1.0.2-r1 b/metadata/md5-cache/dev-php/pecl-ncurses-1.0.2-r2 similarity index 60% rename from metadata/md5-cache/dev-php/pecl-ncurses-1.0.2-r1 rename to metadata/md5-cache/dev-php/pecl-ncurses-1.0.2-r2 index 818941e1a7ef..e33555409b7b 100644 --- a/metadata/md5-cache/dev-php/pecl-ncurses-1.0.2-r1 +++ b/metadata/md5-cache/dev-php/pecl-ncurses-1.0.2-r2 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=sys-libs/ncurses !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 >=sys-devel/m4-1.4.3 >=sys-devel/libtool-1.5.18 php_targets_php5-6? ( dev-lang/php:5.6 ) php_targets_php5-5? ( dev-lang/php:5.5 ) php_targets_php5-4? ( dev-lang/php:5.4 ) +DEPEND=sys-libs/ncurses:0= !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 >=sys-devel/m4-1.4.3 >=sys-devel/libtool-1.5.18 php_targets_php5-6? ( dev-lang/php:5.6 ) php_targets_php5-5? ( dev-lang/php:5.5 ) php_targets_php5-4? ( dev-lang/php:5.4 ) DESCRIPTION=Terminal screen handling and optimization package EAPI=5 HOMEPAGE=http://pecl.php.net/ncurses IUSE=php_targets_php5-6 php_targets_php5-5 php_targets_php5-4 KEYWORDS=~amd64 LICENSE=PHP-3.01 -RDEPEND=sys-libs/ncurses php_targets_php5-6? ( dev-lang/php:5.6 ) php_targets_php5-5? ( dev-lang/php:5.5 ) php_targets_php5-4? ( dev-lang/php:5.4 ) +RDEPEND=sys-libs/ncurses:0= php_targets_php5-6? ( dev-lang/php:5.6 ) php_targets_php5-5? ( dev-lang/php:5.5 ) php_targets_php5-4? ( dev-lang/php:5.4 ) REQUIRED_USE=|| ( php_targets_php5-6 php_targets_php5-5 php_targets_php5-4 ) SLOT=0 SRC_URI=http://pecl.php.net/get/ncurses-1.0.2.tgz _eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 libtool 7f78cd7d403808a350c9ae23f5821fb4 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 php-ext-pecl-r2 738a8315cc641f854af2e615c618e70b php-ext-source-r2 74e9367fec569b8fe0935b103506d117 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=4e2b23b0ad79e5ca97a0c0e3f44bc674 +_md5_=364371d1a55bda96c4a58ec9d4184ea1 diff --git a/metadata/md5-cache/dev-python/keystonemiddleware-2.3.1 b/metadata/md5-cache/dev-python/keystonemiddleware-2.3.1 new file mode 100644 index 000000000000..6855b76c8799 --- /dev/null +++ b/metadata/md5-cache/dev-python/keystonemiddleware-2.3.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pbr-1.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] test? ( >=dev-python/coverage-3.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/fixtures-1.3.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/mock-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pycrypto-2.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-sphinx-2.5.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslotest-1.10.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-messaging-1.16.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/oslo-messaging-1.17.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/oslo-messaging-1.17.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/requests-mock-0.6.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sphinx-1.1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/sphinx-1.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/stevedore-1.5.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/testrepository-0.0.18[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/testresources-0.2.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/testtools-1.4.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-memcached-1.56[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/bandit-0.13.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DESCRIPTION=A middleware for the OpenStack Keystone API +EAPI=5 +HOMEPAGE=https://github.com/openstack/keystonemiddleware +IUSE=doc examples test python_targets_python2_7 +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/Babel-1.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-config-2.3.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-context-0.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-i18n-1.5.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-serialization-1.4.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-utils-2.0.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pycadf-1.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-keystoneclient-1.6.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/requests-2.5.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/webob-1.2.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=mirror://pypi/k/keystonemiddleware/keystonemiddleware-2.3.1.tar.gz +_eclasses_=distutils-r1 46506dd0dd992b3c89b0d00daabfd86c eutils 43da5163ba106e87d22d2e7d6d67537f multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=4bf47b52f2d425e52684589ee2a56ed9 diff --git a/metadata/md5-cache/dev-python/lxml-3.4.4 b/metadata/md5-cache/dev-python/lxml-3.4.4 index 9efdc8d76344..b5e1ef6f9414 100644 --- a/metadata/md5-cache/dev-python/lxml-3.4.4 +++ b/metadata/md5-cache/dev-python/lxml-3.4.4 @@ -4,11 +4,11 @@ DESCRIPTION=A Pythonic binding for the libxml2 and libxslt libraries EAPI=5 HOMEPAGE=http://lxml.de/ https://pypi.python.org/pypi/lxml/ IUSE=doc examples +threads test python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 -KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=BSD ElementTree GPL-2 PSF-2 RDEPEND=>=dev-libs/libxml2-2.7.2 >=dev-libs/libxslt-1.1.23 python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 ) SLOT=0 SRC_URI=mirror://pypi/l/lxml/lxml-3.4.4.tar.gz _eclasses_=distutils-r1 46506dd0dd992b3c89b0d00daabfd86c eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=20f5e7c3348076ddf597f91a0322ee9b +_md5_=bcc07ee101ea965fd2412069d3af93a8 diff --git a/metadata/md5-cache/dev-python/pycadf-1.1.0 b/metadata/md5-cache/dev-python/pycadf-1.1.0 new file mode 100644 index 000000000000..454a7b26f76b --- /dev/null +++ b/metadata/md5-cache/dev-python/pycadf-1.1.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pbr[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] test? ( >=dev-python/coverage-3.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/fixtures-1.3.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslotest-1.10.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/subunit-0.0.18[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/testrepository-0.0.18[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/testtools-1.4.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-sphinx-2.5.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sphinx-1.1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/oslo-sphinx-2.5.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sphinx-1.1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DESCRIPTION=python implementation of DMTF Cloud Audit (CADF) data model +EAPI=5 +HOMEPAGE=https://pypi.python.org/pypi/pycadf +IUSE=doc test python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/oslo-config-2.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-serialization-1.4.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pytz-2013.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=mirror://pypi/p/pycadf/pycadf-1.1.0.tar.gz +_eclasses_=distutils-r1 46506dd0dd992b3c89b0d00daabfd86c eutils 43da5163ba106e87d22d2e7d6d67537f multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=9142300d1cca83b852dd0bb7d25b400e diff --git a/metadata/md5-cache/dev-python/pyftpdlib-1.4.0 b/metadata/md5-cache/dev-python/pyftpdlib-1.4.0 index 242215c8c365..20e1d9ed5cbb 100644 --- a/metadata/md5-cache/dev-python/pyftpdlib-1.4.0 +++ b/metadata/md5-cache/dev-python/pyftpdlib-1.4.0 @@ -4,11 +4,11 @@ DESCRIPTION=Python FTP server library EAPI=5 HOMEPAGE=https://github.com/giampaolo/pyftpdlib https://pypi.python.org/pypi/pyftpdlib IUSE=examples ssl python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris +KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris LICENSE=MIT RDEPEND=ssl? ( dev-python/pyopenssl[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[ssl(+)] ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[ssl(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[ssl(+)] ) python_targets_pypy? ( virtual/pypy:0=[ssl(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy ) SLOT=0 SRC_URI=mirror://pypi/p/pyftpdlib/pyftpdlib-1.4.0.tar.gz _eclasses_=distutils-r1 46506dd0dd992b3c89b0d00daabfd86c eutils 43da5163ba106e87d22d2e7d6d67537f multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=1f3375027f4517552f0f92b89976f37c +_md5_=e59094333e40eb79bc1e604b9fb6fd69 diff --git a/metadata/md5-cache/dev-python/pymongo-2.9 b/metadata/md5-cache/dev-python/pymongo-2.9 new file mode 100644 index 000000000000..030749e22cfd --- /dev/null +++ b/metadata/md5-cache/dev-python/pymongo-2.9 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare pretend setup test +DEPEND=kerberos? ( dev-python/pykerberos ) dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] doc? ( dev-python/sphinx[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] ) test? ( dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] >=dev-db/mongodb-2.6.0 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_pypy? ( virtual/pypy:0= ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] +DESCRIPTION=Python driver for MongoDB +EAPI=5 +HOMEPAGE=https://github.com/mongodb/mongo-python-driver https://pypi.python.org/pypi/pymongo +IUSE=doc kerberos test python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy +KEYWORDS=~amd64 ~hppa ~x86 +LICENSE=Apache-2.0 +RDEPEND=kerberos? ( dev-python/pykerberos ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_pypy? ( virtual/pypy:0= ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy ) +SLOT=0 +SRC_URI=mirror://pypi/p/pymongo/pymongo-2.9.tar.gz +_eclasses_=check-reqs 4f43fb72bc73bd58d75ec601713fae20 distutils-r1 46506dd0dd992b3c89b0d00daabfd86c eutils 43da5163ba106e87d22d2e7d6d67537f multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=0e814ec4698bc176de1805dbd403fddf diff --git a/metadata/md5-cache/dev-python/pyspf-2.0.11 b/metadata/md5-cache/dev-python/pyspf-2.0.11 index efe7d6a57b03..1756f3649595 100644 --- a/metadata/md5-cache/dev-python/pyspf-2.0.11 +++ b/metadata/md5-cache/dev-python/pyspf-2.0.11 @@ -4,11 +4,11 @@ DESCRIPTION=Python implementation of the Sender Policy Framework (SPF) protocol EAPI=5 HOMEPAGE=https://pypi.python.org/pypi/pyspf IUSE=ipv6 test python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=PSF-2 RDEPEND=dev-python/authres[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] python_targets_python2_7? ( >=dev-python/ipaddr-2.1.10[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-python/pydns:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python3_3? ( dev-python/pydns:3[python_targets_python3_3(-)?,-python_single_target_python3_3(-),python_targets_python3_4(-)?,-python_single_target_python3_4(-)] ) python_targets_python3_4? ( dev-python/pydns:3[python_targets_python3_3(-)?,-python_single_target_python3_3(-),python_targets_python3_4(-)?,-python_single_target_python3_4(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[ipv6?] ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[ipv6?] ) python_targets_python3_4? ( dev-lang/python:3.4[ipv6?] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] REQUIRED_USE=test? ( ipv6 ) || ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 ) SLOT=0 SRC_URI=mirror://pypi/p/pyspf/pyspf-2.0.11.tar.gz _eclasses_=distutils-r1 46506dd0dd992b3c89b0d00daabfd86c eutils 43da5163ba106e87d22d2e7d6d67537f multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=f2bf5bb6cfc1a509985a7aeb0a3c3b7b +_md5_=fa7932e1fcd6240a6e314d7cc6935901 diff --git a/metadata/md5-cache/dev-python/python-keystoneclient-1.7.1 b/metadata/md5-cache/dev-python/python-keystoneclient-1.7.1 deleted file mode 100644 index 038632146893..000000000000 --- a/metadata/md5-cache/dev-python/python-keystoneclient-1.7.1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] =dev-python/lxml-2.3[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/mock-1.2[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/requests-mock-0.6.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/tempest-lib-0.6.1[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/testresources-0.2.4[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/webob-1.2.3[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/coverage-3.6[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/keyring-2.1[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] !~dev-python/keyring-3.3[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/oauthlib-0.6[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/oslotest-1.10.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/pycrypto-2.6[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/requests-mock-0.6.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/testrepository-0.0.18[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/testtools-1.4.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) doc? ( >=dev-python/lxml-2.3[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/mock-1.2[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/requests-mock-0.6.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/tempest-lib-0.6.1[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/testresources-0.2.4[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/webob-1.2.3[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/fixtures-1.3.1[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/oslo-sphinx-2.5.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/sphinx-1.1.2[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] !~dev-python/sphinx-1.2.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] =dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] -DESCRIPTION=Client Library for OpenStack Identity -EAPI=5 -HOMEPAGE=http://www.openstack.org/ -IUSE=doc examples test python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 -KEYWORDS=~amd64 ~amd64-linux ~x86 ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] =dev-python/Babel-1.3[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/iso8601-0.1.9[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/debtcollector-0.3.0 >=dev-python/netaddr-0.7.12[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] !~dev-python/netaddr-0.7.16[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/oslo-config-2.3.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/oslo-i18n-1.5.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/oslo-serialization-1.4.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/oslo-utils-2.0.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/prettytable-0.7[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] =dev-python/requests-2.5.2[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/stevedore-1.5.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] -REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 ) -SLOT=0 -SRC_URI=mirror://pypi/p/python-keystoneclient/python-keystoneclient-1.7.1.tar.gz -_eclasses_=distutils-r1 46506dd0dd992b3c89b0d00daabfd86c eutils 43da5163ba106e87d22d2e7d6d67537f multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=7f27ba6dde00343d83c373adb5a572ab diff --git a/metadata/md5-cache/dev-python/python-keystoneclient-1.7.2 b/metadata/md5-cache/dev-python/python-keystoneclient-1.7.2 new file mode 100644 index 000000000000..d06dc4c45906 --- /dev/null +++ b/metadata/md5-cache/dev-python/python-keystoneclient-1.7.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] test? ( >=dev-python/lxml-2.3[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/mock-1.2[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/requests-mock-0.6.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/tempest-lib-0.6.1[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/testresources-0.2.4[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/webob-1.2.3[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/coverage-3.6[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/keyring-2.1[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] !~dev-python/keyring-3.3[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/oauthlib-0.6[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/oslotest-1.10.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/pycrypto-2.6[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/testrepository-0.0.18[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/testtools-1.4.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) doc? ( >=dev-python/lxml-2.3[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/mock-1.2[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/requests-mock-0.6.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/tempest-lib-0.6.1[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/testresources-0.2.4[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/webob-1.2.3[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/fixtures-1.3.1[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/oslo-sphinx-2.5.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/sphinx-1.1.2[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] !~dev-python/sphinx-1.2.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] =dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] +DESCRIPTION=Client Library for OpenStack Identity +EAPI=5 +HOMEPAGE=http://www.openstack.org/ +IUSE=doc examples test python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 +KEYWORDS=~amd64 ~amd64-linux ~x86 ~x86-linux +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/Babel-1.3[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/iso8601-0.1.9[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/debtcollector-0.3.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/netaddr-0.7.12[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] !~dev-python/netaddr-0.7.16[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/oslo-config-2.3.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/oslo-i18n-1.5.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/oslo-serialization-1.4.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/oslo-utils-2.0.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/prettytable-0.7[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] =dev-python/requests-2.5.2[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/stevedore-1.5.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 ) +SLOT=0 +SRC_URI=mirror://pypi/p/python-keystoneclient/python-keystoneclient-1.7.2.tar.gz +_eclasses_=distutils-r1 46506dd0dd992b3c89b0d00daabfd86c eutils 43da5163ba106e87d22d2e7d6d67537f multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=9f9f621e220d10ae4b5ea4155b09e046 diff --git a/metadata/md5-cache/dev-python/python-sipsimple-2.5.1-r1 b/metadata/md5-cache/dev-python/python-sipsimple-2.5.1-r1 deleted file mode 100644 index 39e7367c347d..000000000000 --- a/metadata/md5-cache/dev-python/python-sipsimple-2.5.1-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-db/sqlite:3 !libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) dev-python/python-application[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] media-libs/alsa-lib media-libs/libv4l media-libs/libvpx sys-apps/util-linux virtual/ffmpeg dev-python/cython[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/pkgconfig 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=SIP SIMPLE client SDK is a Software Development Kit -EAPI=5 -HOMEPAGE=http://sipsimpleclient.org -IUSE=libressl python_targets_python2_7 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=dev-db/sqlite:3 !libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) dev-python/python-application[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] media-libs/alsa-lib media-libs/libv4l media-libs/libvpx sys-apps/util-linux virtual/ffmpeg dev-python/dnspython[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-cjson[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-dateutil[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-eventlib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/greenlet[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-gnutls[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/lxml[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-msrplib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-xcaplib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/twisted-core[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/zope-interface[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] -REQUIRED_USE=|| ( python_targets_python2_7 ) -SLOT=0 -SRC_URI=http://download.ag-projects.com/SipClient/python-sipsimple-2.5.1.tar.gz -_eclasses_=distutils-r1 46506dd0dd992b3c89b0d00daabfd86c eutils 43da5163ba106e87d22d2e7d6d67537f multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=fef38cec38612f64ef2d05c78b297539 diff --git a/metadata/md5-cache/dev-python/python-sipsimple-2.5.1-r2 b/metadata/md5-cache/dev-python/python-sipsimple-2.5.1-r2 new file mode 100644 index 000000000000..3745e1c7cdc3 --- /dev/null +++ b/metadata/md5-cache/dev-python/python-sipsimple-2.5.1-r2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-db/sqlite:3 !libressl? ( dev-libs/openssl:0[-bindist] ) libressl? ( dev-libs/libressl ) dev-python/python-application[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] media-libs/alsa-lib media-libs/libv4l media-libs/libvpx sys-apps/util-linux virtual/ffmpeg dev-python/cython[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/pkgconfig 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=SIP SIMPLE client SDK is a Software Development Kit +EAPI=5 +HOMEPAGE=http://sipsimpleclient.org +IUSE=libressl python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=dev-db/sqlite:3 !libressl? ( dev-libs/openssl:0[-bindist] ) libressl? ( dev-libs/libressl ) dev-python/python-application[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] media-libs/alsa-lib media-libs/libv4l media-libs/libvpx sys-apps/util-linux virtual/ffmpeg dev-python/dnspython[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-cjson[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-dateutil[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-eventlib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/greenlet[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-gnutls[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/lxml[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-msrplib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-xcaplib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/twisted-core[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/zope-interface[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=http://download.ag-projects.com/SipClient/python-sipsimple-2.5.1.tar.gz +_eclasses_=distutils-r1 46506dd0dd992b3c89b0d00daabfd86c eutils 43da5163ba106e87d22d2e7d6d67537f multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=00f96b43e50ab6adeb2a992bf1476793 diff --git a/metadata/md5-cache/dev-python/vulture-0.8.1 b/metadata/md5-cache/dev-python/vulture-0.8.1 new file mode 100644 index 000000000000..0b3e6fd87960 --- /dev/null +++ b/metadata/md5-cache/dev-python/vulture-0.8.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] +DESCRIPTION=find unused classes, functions and variables in your code +EAPI=5 +HOMEPAGE=https://bitbucket.org/jendrikseipp/vulture https://pypi.python.org/pypi/vulture +IUSE=python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3+ +RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 ) +SLOT=0 +SRC_URI=mirror://pypi/v/vulture/vulture-0.8.1.tar.gz +_eclasses_=distutils-r1 46506dd0dd992b3c89b0d00daabfd86c eutils 43da5163ba106e87d22d2e7d6d67537f multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=71b78ca3d76bfab615eac66e6797929d diff --git a/metadata/md5-cache/dev-qt/qtchooser-0_p20150102 b/metadata/md5-cache/dev-qt/qtchooser-0_p20150102 index 5b7ba8ad183b..a9c35159b2c6 100644 --- a/metadata/md5-cache/dev-qt/qtchooser-0_p20150102 +++ b/metadata/md5-cache/dev-qt/qtchooser-0_p20150102 @@ -4,10 +4,10 @@ DESCRIPTION=Qt4/Qt5 version chooser EAPI=5 HOMEPAGE=https://qt.gitorious.org/qt/qtchooser IUSE=qt5 test -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 +KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd LICENSE=|| ( LGPL-2.1 GPL-3 ) RDEPEND=!=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/catkin dev-python/empy +DESCRIPTION=Transports audio from a source to a destination +EAPI=5 +HOMEPAGE=http://wiki.ros.org/audio_capture +IUSE=test +KEYWORDS=~amd64 ~arm +LICENSE=BSD +RDEPEND=dev-ros/audio_common_msgs[ros_messages_cxx(-)] dev-ros/roscpp dev-libs/boost:=[threads] media-libs/gstreamer:0.10 media-plugins/gst-plugins-lame:0.10 media-libs/gst-plugins-good:0.10 media-libs/gst-plugins-base:0.10 dev-util/catkin dev-python/empy +SLOT=0 +SRC_URI=https://github.com/ros-drivers/audio_common/archive/0.2.8.tar.gz -> audio_common-0.2.8.tar.gz +_eclasses_=cmake-utils f474224ef49d530640a43a04ae94928e eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 ros-catkin ba27d98abea526cd43db694252eb90a4 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=6cf62e552da9503c9094f0bb755ea4e4 diff --git a/metadata/md5-cache/dev-ros/audio_common_msgs-0.2.8 b/metadata/md5-cache/dev-ros/audio_common_msgs-0.2.8 new file mode 100644 index 000000000000..5148c60b6e34 --- /dev/null +++ b/metadata/md5-cache/dev-ros/audio_common_msgs-0.2.8 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/catkin[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/empy[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-util/catkin[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/empy[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-lang/python-exec:2 ros_messages_cxx? ( dev-ros/gencpp:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) ros_messages_eus? ( dev-ros/geneus:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) ros_messages_python? ( dev-ros/genpy:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) ros_messages_lisp? ( dev-ros/genlisp:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) dev-ros/message_runtime dev-ros/message_generation dev-ros/genmsg[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] +DESCRIPTION=Messages for transmitting audio via ROS +EAPI=5 +HOMEPAGE=http://wiki.ros.org/audio_common_msgs +IUSE=python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 test +ros_messages_python +ros_messages_cxx ros_messages_eus ros_messages_lisp +KEYWORDS=~amd64 ~arm +LICENSE=BSD +RDEPEND=dev-util/catkin[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/empy[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-lang/python-exec:2 ros_messages_cxx? ( dev-ros/gencpp:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) ros_messages_eus? ( dev-ros/geneus:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) ros_messages_python? ( dev-ros/genpy:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) ros_messages_lisp? ( dev-ros/genlisp:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) dev-ros/message_runtime +SLOT=0 +SRC_URI=https://github.com/ros-drivers/audio_common/archive/0.2.8.tar.gz -> audio_common-0.2.8.tar.gz +_eclasses_=cmake-utils f474224ef49d530640a43a04ae94928e eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf ros-catkin ba27d98abea526cd43db694252eb90a4 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=2dbea56187a7ecc5a19d0c788186644c diff --git a/metadata/md5-cache/dev-ros/audio_play-0.2.8 b/metadata/md5-cache/dev-ros/audio_play-0.2.8 new file mode 100644 index 000000000000..a014d24d83d5 --- /dev/null +++ b/metadata/md5-cache/dev-ros/audio_play-0.2.8 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-ros/audio_common_msgs[ros_messages_cxx(-)] dev-ros/roscpp dev-libs/boost:=[threads] media-libs/gstreamer:0.10 virtual/pkgconfig sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/catkin dev-python/empy +DESCRIPTION=Outputs audio to a speaker from a source node +EAPI=5 +HOMEPAGE=http://wiki.ros.org/audio_play +IUSE=test +KEYWORDS=~amd64 ~arm +LICENSE=BSD +RDEPEND=dev-ros/audio_common_msgs[ros_messages_cxx(-)] dev-ros/roscpp dev-libs/boost:=[threads] media-libs/gstreamer:0.10 media-plugins/gst-plugins-alsa:0.10 media-libs/gst-plugins-good:0.10 media-libs/gst-plugins-base:0.10 dev-util/catkin dev-python/empy +SLOT=0 +SRC_URI=https://github.com/ros-drivers/audio_common/archive/0.2.8.tar.gz -> audio_common-0.2.8.tar.gz +_eclasses_=cmake-utils f474224ef49d530640a43a04ae94928e eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 ros-catkin ba27d98abea526cd43db694252eb90a4 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=d02c4ab89c354af74d22fa408bef2735 diff --git a/metadata/md5-cache/dev-ros/move_base-1.13.0 b/metadata/md5-cache/dev-ros/move_base-1.13.0 index 09d918516507..97fdf4796dfc 100644 --- a/metadata/md5-cache/dev-ros/move_base-1.13.0 +++ b/metadata/md5-cache/dev-ros/move_base-1.13.0 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-ros/roscpp dev-ros/pluginlib dev-ros/actionlib dev-ros/dynamic_reconfigure[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-ros/nav_core dev-ros/tf dev-ros/move_base_msgs[ros_messages_cxx(-)] dev-cpp/eigen:3 dev-ros/cmake_modules sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/catkin[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/empy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DEPEND=dev-ros/roscpp dev-ros/pluginlib dev-ros/actionlib dev-ros/dynamic_reconfigure[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-ros/nav_core dev-ros/tf dev-ros/move_base_msgs[ros_messages_cxx(-)] dev-ros/std_srvs[ros_messages_cxx(-)] dev-cpp/eigen:3 dev-ros/cmake_modules sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/catkin[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/empy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] DESCRIPTION=Given a goal in the world, will attempt to reach it with a mobile base EAPI=5 HOMEPAGE=http://wiki.ros.org/move_base IUSE=python_targets_python2_7 test KEYWORDS=~amd64 ~arm LICENSE=BSD -RDEPEND=dev-ros/roscpp dev-ros/pluginlib dev-ros/actionlib dev-ros/dynamic_reconfigure[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-ros/nav_core dev-ros/tf dev-ros/move_base_msgs[ros_messages_cxx(-)] dev-cpp/eigen:3 dev-util/catkin[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/empy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-lang/python-exec:2 +RDEPEND=dev-ros/roscpp dev-ros/pluginlib dev-ros/actionlib dev-ros/dynamic_reconfigure[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-ros/nav_core dev-ros/tf dev-ros/move_base_msgs[ros_messages_cxx(-)] dev-ros/std_srvs[ros_messages_cxx(-)] dev-cpp/eigen:3 dev-util/catkin[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/empy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-lang/python-exec:2 SLOT=0 SRC_URI=https://github.com/ros-planning/navigation/archive/1.13.0.tar.gz -> navigation-1.13.0.tar.gz _eclasses_=cmake-utils f474224ef49d530640a43a04ae94928e eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf ros-catkin ba27d98abea526cd43db694252eb90a4 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=c82485c34ad2ce8c8352dec1cd205435 +_md5_=5ab0d0027ae7b8c918f7004c202c5828 diff --git a/metadata/md5-cache/dev-ros/move_base-9999 b/metadata/md5-cache/dev-ros/move_base-9999 index b686abeb24ba..77e26ff1ec7d 100644 --- a/metadata/md5-cache/dev-ros/move_base-9999 +++ b/metadata/md5-cache/dev-ros/move_base-9999 @@ -1,11 +1,11 @@ DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-ros/roscpp dev-ros/pluginlib dev-ros/actionlib dev-ros/dynamic_reconfigure[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-ros/nav_core dev-ros/tf dev-ros/move_base_msgs[ros_messages_cxx(-)] dev-cpp/eigen:3 dev-ros/cmake_modules >=dev-vcs/git-1.8.2.1 sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/catkin[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/empy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DEPEND=dev-ros/roscpp dev-ros/pluginlib dev-ros/actionlib dev-ros/dynamic_reconfigure[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-ros/nav_core dev-ros/tf dev-ros/move_base_msgs[ros_messages_cxx(-)] dev-ros/std_srvs[ros_messages_cxx(-)] dev-cpp/eigen:3 dev-ros/cmake_modules >=dev-vcs/git-1.8.2.1 sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/catkin[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/empy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] DESCRIPTION=Given a goal in the world, will attempt to reach it with a mobile base EAPI=5 HOMEPAGE=http://wiki.ros.org/move_base IUSE=python_targets_python2_7 test LICENSE=BSD -RDEPEND=dev-ros/roscpp dev-ros/pluginlib dev-ros/actionlib dev-ros/dynamic_reconfigure[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-ros/nav_core dev-ros/tf dev-ros/move_base_msgs[ros_messages_cxx(-)] dev-cpp/eigen:3 dev-util/catkin[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/empy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-lang/python-exec:2 +RDEPEND=dev-ros/roscpp dev-ros/pluginlib dev-ros/actionlib dev-ros/dynamic_reconfigure[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-ros/nav_core dev-ros/tf dev-ros/move_base_msgs[ros_messages_cxx(-)] dev-ros/std_srvs[ros_messages_cxx(-)] dev-cpp/eigen:3 dev-util/catkin[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/empy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-lang/python-exec:2 SLOT=0 _eclasses_=cmake-utils f474224ef49d530640a43a04ae94928e eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 git-r3 1502b9838d043db47700b8120083e637 multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf ros-catkin ba27d98abea526cd43db694252eb90a4 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=c82485c34ad2ce8c8352dec1cd205435 +_md5_=5ab0d0027ae7b8c918f7004c202c5828 diff --git a/metadata/md5-cache/dev-ros/sound_play-0.2.8 b/metadata/md5-cache/dev-ros/sound_play-0.2.8 new file mode 100644 index 000000000000..f741b54ee05a --- /dev/null +++ b/metadata/md5-cache/dev-ros/sound_play-0.2.8 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-ros/roscpp dev-ros/rospy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-ros/roslib media-libs/gstreamer:0.10 dev-ros/audio_common_msgs[ros_messages_python(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-ros/diagnostic_msgs[ros_messages_python(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/pkgconfig sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/catkin[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/empy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-util/catkin[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/empy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-lang/python-exec:2 ros_messages_cxx? ( dev-ros/gencpp:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ros_messages_eus? ( dev-ros/geneus:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ros_messages_python? ( dev-ros/genpy:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ros_messages_lisp? ( dev-ros/genlisp:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) dev-ros/message_runtime dev-ros/message_generation dev-ros/genmsg[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-ros/actionlib_msgs[ros_messages_python(-)?,ros_messages_cxx(-)?,ros_messages_lisp(-)?,ros_messages_eus(-)?] ros_messages_python? ( dev-ros/actionlib_msgs[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) +DESCRIPTION=ROS node that translates commands on a ROS topic (robotsound) into sounds +EAPI=5 +HOMEPAGE=http://wiki.ros.org/sound_play +IUSE=python_targets_python2_7 test +ros_messages_python +ros_messages_cxx ros_messages_eus ros_messages_lisp +KEYWORDS=~amd64 ~arm +LICENSE=BSD +RDEPEND=dev-ros/roscpp dev-ros/rospy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-ros/roslib media-libs/gstreamer:0.10 dev-ros/audio_common_msgs[ros_messages_python(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-ros/diagnostic_msgs[ros_messages_python(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/gst-python[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] app-accessibility/festival media-libs/gst-plugins-good:0.10 media-libs/gst-plugins-base:0.10 dev-util/catkin[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/empy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-lang/python-exec:2 ros_messages_cxx? ( dev-ros/gencpp:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ros_messages_eus? ( dev-ros/geneus:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ros_messages_python? ( dev-ros/genpy:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ros_messages_lisp? ( dev-ros/genlisp:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) dev-ros/message_runtime dev-ros/actionlib_msgs[ros_messages_python(-)?,ros_messages_cxx(-)?,ros_messages_lisp(-)?,ros_messages_eus(-)?] ros_messages_python? ( dev-ros/actionlib_msgs[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) +SLOT=0 +SRC_URI=https://github.com/ros-drivers/audio_common/archive/0.2.8.tar.gz -> audio_common-0.2.8.tar.gz +_eclasses_=cmake-utils f474224ef49d530640a43a04ae94928e eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf ros-catkin ba27d98abea526cd43db694252eb90a4 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=3ce8c3b0c453cfbd25cdebd21e3b6285 diff --git a/metadata/md5-cache/dev-util/rosdep-0.11.2 b/metadata/md5-cache/dev-util/rosdep-0.11.2 deleted file mode 100644 index 821621d41d06..000000000000 --- a/metadata/md5-cache/dev-util/rosdep-0.11.2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm prepare test -DEPEND=dev-python/catkin_pkg[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/rospkg[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/rosdistro[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/pyyaml[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] test? ( dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/coverage[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/mock[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] -DESCRIPTION=Command-line tool for installing ROS system dependencies -EAPI=5 -HOMEPAGE=http://wiki.ros.org/rosdep -IUSE=test python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 -KEYWORDS=~amd64 ~arm -LICENSE=BSD -RDEPEND=dev-python/catkin_pkg[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/rospkg[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/rosdistro[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/pyyaml[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] -REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 ) -SLOT=0 -SRC_URI=http://download.ros.org/downloads/rosdep/rosdep-0.11.2.tar.gz http://github.com/ros-infrastructure/rosdep/archive/0.11.2.tar.gz -> rosdep-0.11.2.tar.gz -_eclasses_=distutils-r1 46506dd0dd992b3c89b0d00daabfd86c eutils 43da5163ba106e87d22d2e7d6d67537f multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=9ddd885cf192ef03a4c23ff968b2cd94 diff --git a/metadata/md5-cache/dev-util/rosdep-0.11.4 b/metadata/md5-cache/dev-util/rosdep-0.11.4 index eb2bdbb90fdb..2d2592264f3e 100644 --- a/metadata/md5-cache/dev-util/rosdep-0.11.4 +++ b/metadata/md5-cache/dev-util/rosdep-0.11.4 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test -DEPEND=dev-python/catkin_pkg[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/rospkg[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/rosdistro[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/pyyaml[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] test? ( dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/coverage[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/mock[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] +DEPEND=dev-python/catkin_pkg[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/rospkg[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/rosdistro[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/pyyaml[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] test? ( dev-python/coverage[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/mock[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] DESCRIPTION=Command-line tool for installing ROS system dependencies EAPI=5 HOMEPAGE=http://wiki.ros.org/rosdep @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targe SLOT=0 SRC_URI=http://download.ros.org/downloads/rosdep/rosdep-0.11.4.tar.gz http://github.com/ros-infrastructure/rosdep/archive/0.11.4.tar.gz -> rosdep-0.11.4.tar.gz _eclasses_=distutils-r1 46506dd0dd992b3c89b0d00daabfd86c eutils 43da5163ba106e87d22d2e7d6d67537f multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=9ddd885cf192ef03a4c23ff968b2cd94 +_md5_=5753d4be50eb49489440ed11669638d5 diff --git a/metadata/md5-cache/dev-util/rosdep-9999 b/metadata/md5-cache/dev-util/rosdep-9999 index 198f8683a4d0..523fa6e54310 100644 --- a/metadata/md5-cache/dev-util/rosdep-9999 +++ b/metadata/md5-cache/dev-util/rosdep-9999 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=dev-python/catkin_pkg[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/rospkg[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/rosdistro[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/pyyaml[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] test? ( dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/coverage[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/mock[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) >=dev-vcs/git-1.8.2.1 python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] +DEPEND=dev-python/catkin_pkg[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/rospkg[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/rosdistro[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/pyyaml[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] test? ( dev-python/coverage[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/mock[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) >=dev-vcs/git-1.8.2.1 python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] DESCRIPTION=Command-line tool for installing ROS system dependencies EAPI=5 HOMEPAGE=http://wiki.ros.org/rosdep @@ -9,4 +9,4 @@ RDEPEND=dev-python/catkin_pkg[python_targets_python2_7(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 ) SLOT=0 _eclasses_=distutils-r1 46506dd0dd992b3c89b0d00daabfd86c eutils 43da5163ba106e87d22d2e7d6d67537f git-r3 1502b9838d043db47700b8120083e637 multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=9ddd885cf192ef03a4c23ff968b2cd94 +_md5_=5753d4be50eb49489440ed11669638d5 diff --git a/metadata/md5-cache/dev-vcs/git-2.3.10 b/metadata/md5-cache/dev-vcs/git-2.3.10 new file mode 100644 index 000000000000..69072e5f3f11 --- /dev/null +++ b/metadata/md5-cache/dev-vcs/git-2.3.10 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack +DEPEND=dev-libs/openssl:0= sys-libs/zlib pcre? ( dev-libs/libpcre ) perl? ( dev-lang/perl:=[-build(-)] ) tk? ( dev-lang/tk:0= ) curl? ( net-misc/curl webdav? ( dev-libs/expat ) ) emacs? ( virtual/emacs ) gnome-keyring? ( gnome-base/libgnome-keyring ) doc? ( app-text/asciidoc app-text/docbook2X sys-apps/texinfo app-text/xmlto ) nls? ( sys-devel/gettext ) test? ( app-crypt/gnupg ) virtual/pkgconfig +DESCRIPTION=GIT - the stupid content tracker, the revision control system heavily used by the Linux kernel team +EAPI=5 +HOMEPAGE=http://www.git-scm.com/ +IUSE=+blksha1 +curl cgi doc emacs gnome-keyring +gpg gtk highlight +iconv mediawiki +nls +pcre +perl +python ppcsha1 tk +threads +webdav xinetd cvs subversion test python_targets_python2_7 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=GPL-2 +RDEPEND=dev-libs/openssl:0= sys-libs/zlib pcre? ( dev-libs/libpcre ) perl? ( dev-lang/perl:=[-build(-)] ) tk? ( dev-lang/tk:0= ) curl? ( net-misc/curl webdav? ( dev-libs/expat ) ) emacs? ( virtual/emacs ) gnome-keyring? ( gnome-base/libgnome-keyring ) gpg? ( app-crypt/gnupg ) mediawiki? ( dev-perl/HTML-Tree dev-perl/MediaWiki-API ) perl? ( dev-perl/Error dev-perl/Net-SMTP-SSL dev-perl/Authen-SASL cgi? ( dev-perl/CGI highlight? ( app-text/highlight ) ) cvs? ( >=dev-vcs/cvsps-2.1:0 dev-perl/DBI dev-perl/DBD-SQLite ) subversion? ( dev-vcs/subversion[-dso,perl] dev-perl/libwww-perl dev-perl/TermReadKey ) ) python? ( gtk? ( >=dev-python/pygtk-2.8[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] >=dev-python/pygtksourceview-2.10.1-r1:2[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] ) >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] ) +REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) subversion? ( perl ) webdav? ( curl ) gtk? ( python ) python? ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=https://git-core.googlecode.com/files/git-2.3.10.tar.xz mirror://kernel/software/scm/git/git-2.3.10.tar.xz https://git-core.googlecode.com/files/git-manpages-2.3.10.tar.xz mirror://kernel/software/scm/git/git-manpages-2.3.10.tar.xz doc? ( mirror://kernel/software/scm/git/git-htmldocs-2.3.10.tar.xz https://git-core.googlecode.com/files/git-htmldocs-2.3.10.tar.xz ) +_eclasses_=bash-completion-r1 b1fc4d30333bb528c8abb4332bb70ea6 elisp-common 73c48c11ad6a6494eda0d0cca848c8fa eutils 43da5163ba106e87d22d2e7d6d67537f multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde perl-module 1cfb38bf68a24c8394e41d2f53003146 python-single-r1 612c783d1a1a182ad7ea4f2eb0b79e86 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf systemd 6b4f0cefa642270eded7e6ca816fd181 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d unpacker 1d149d9bda7723e740cfd28118f27813 +_md5_=169ab54d5555ab661d790b060b1a4e0c diff --git a/metadata/md5-cache/dev-vcs/git-2.4.10 b/metadata/md5-cache/dev-vcs/git-2.4.10 new file mode 100644 index 000000000000..9f2663186de6 --- /dev/null +++ b/metadata/md5-cache/dev-vcs/git-2.4.10 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack +DEPEND=dev-libs/openssl:0= sys-libs/zlib pcre? ( dev-libs/libpcre ) perl? ( dev-lang/perl:=[-build(-)] ) tk? ( dev-lang/tk:0= ) curl? ( net-misc/curl webdav? ( dev-libs/expat ) ) emacs? ( virtual/emacs ) gnome-keyring? ( gnome-base/libgnome-keyring ) doc? ( app-text/asciidoc app-text/docbook2X sys-apps/texinfo app-text/xmlto ) nls? ( sys-devel/gettext ) test? ( app-crypt/gnupg ) virtual/pkgconfig +DESCRIPTION=GIT - the stupid content tracker, the revision control system heavily used by the Linux kernel team +EAPI=5 +HOMEPAGE=http://www.git-scm.com/ +IUSE=+blksha1 +curl cgi doc emacs gnome-keyring +gpg gtk highlight +iconv mediawiki +nls +pcre +perl +python ppcsha1 tk +threads +webdav xinetd cvs subversion test python_targets_python2_7 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=GPL-2 +RDEPEND=dev-libs/openssl:0= sys-libs/zlib pcre? ( dev-libs/libpcre ) perl? ( dev-lang/perl:=[-build(-)] ) tk? ( dev-lang/tk:0= ) curl? ( net-misc/curl webdav? ( dev-libs/expat ) ) emacs? ( virtual/emacs ) gnome-keyring? ( gnome-base/libgnome-keyring ) gpg? ( app-crypt/gnupg ) mediawiki? ( dev-perl/HTML-Tree dev-perl/MediaWiki-API ) perl? ( dev-perl/Error dev-perl/Net-SMTP-SSL dev-perl/Authen-SASL cgi? ( dev-perl/CGI highlight? ( app-text/highlight ) ) cvs? ( >=dev-vcs/cvsps-2.1:0 dev-perl/DBI dev-perl/DBD-SQLite ) subversion? ( dev-vcs/subversion[-dso,perl] dev-perl/libwww-perl dev-perl/TermReadKey ) ) python? ( gtk? ( >=dev-python/pygtk-2.8[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] >=dev-python/pygtksourceview-2.10.1-r1:2[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] ) >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] ) +REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) subversion? ( perl ) webdav? ( curl ) gtk? ( python ) python? ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=https://git-core.googlecode.com/files/git-2.4.10.tar.xz mirror://kernel/software/scm/git/git-2.4.10.tar.xz https://git-core.googlecode.com/files/git-manpages-2.4.10.tar.xz mirror://kernel/software/scm/git/git-manpages-2.4.10.tar.xz doc? ( mirror://kernel/software/scm/git/git-htmldocs-2.4.10.tar.xz https://git-core.googlecode.com/files/git-htmldocs-2.4.10.tar.xz ) +_eclasses_=bash-completion-r1 b1fc4d30333bb528c8abb4332bb70ea6 elisp-common 73c48c11ad6a6494eda0d0cca848c8fa eutils 43da5163ba106e87d22d2e7d6d67537f multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde perl-module 1cfb38bf68a24c8394e41d2f53003146 python-single-r1 612c783d1a1a182ad7ea4f2eb0b79e86 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf systemd 6b4f0cefa642270eded7e6ca816fd181 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d unpacker 1d149d9bda7723e740cfd28118f27813 +_md5_=7877f7dae2fc91331882555864e36606 diff --git a/metadata/md5-cache/dev-vcs/git-2.6.0 b/metadata/md5-cache/dev-vcs/git-2.5.4 similarity index 90% rename from metadata/md5-cache/dev-vcs/git-2.6.0 rename to metadata/md5-cache/dev-vcs/git-2.5.4 index bb7e18c38c8b..65414d2bd278 100644 --- a/metadata/md5-cache/dev-vcs/git-2.6.0 +++ b/metadata/md5-cache/dev-vcs/git-2.5.4 @@ -9,6 +9,6 @@ LICENSE=GPL-2 RDEPEND=!libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) sys-libs/zlib pcre? ( dev-libs/libpcre ) perl? ( dev-lang/perl:=[-build(-)] ) tk? ( dev-lang/tk:0= ) curl? ( net-misc/curl webdav? ( dev-libs/expat ) ) emacs? ( virtual/emacs ) gnome-keyring? ( gnome-base/libgnome-keyring ) gpg? ( app-crypt/gnupg ) mediawiki? ( dev-perl/HTML-Tree dev-perl/MediaWiki-API ) perl? ( dev-perl/Error dev-perl/Net-SMTP-SSL dev-perl/Authen-SASL cgi? ( dev-perl/CGI highlight? ( app-text/highlight ) ) cvs? ( >=dev-vcs/cvsps-2.1:0 dev-perl/DBI dev-perl/DBD-SQLite ) subversion? ( dev-vcs/subversion[-dso,perl] dev-perl/libwww-perl dev-perl/TermReadKey ) ) python? ( gtk? ( >=dev-python/pygtk-2.8[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] >=dev-python/pygtksourceview-2.10.1-r1:2[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] ) >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] ) REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) subversion? ( perl ) webdav? ( curl ) gtk? ( python ) python? ( python_targets_python2_7 ) SLOT=0 -SRC_URI=https://git-core.googlecode.com/files/git-2.6.0.tar.xz mirror://kernel/software/scm/git/git-2.6.0.tar.xz https://git-core.googlecode.com/files/git-manpages-2.6.0.tar.xz mirror://kernel/software/scm/git/git-manpages-2.6.0.tar.xz doc? ( mirror://kernel/software/scm/git/git-htmldocs-2.6.0.tar.xz https://git-core.googlecode.com/files/git-htmldocs-2.6.0.tar.xz ) +SRC_URI=https://git-core.googlecode.com/files/git-2.5.4.tar.xz mirror://kernel/software/scm/git/git-2.5.4.tar.xz https://git-core.googlecode.com/files/git-manpages-2.5.4.tar.xz mirror://kernel/software/scm/git/git-manpages-2.5.4.tar.xz doc? ( mirror://kernel/software/scm/git/git-htmldocs-2.5.4.tar.xz https://git-core.googlecode.com/files/git-htmldocs-2.5.4.tar.xz ) _eclasses_=bash-completion-r1 b1fc4d30333bb528c8abb4332bb70ea6 elisp-common 73c48c11ad6a6494eda0d0cca848c8fa eutils 43da5163ba106e87d22d2e7d6d67537f multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde perl-module 1cfb38bf68a24c8394e41d2f53003146 python-single-r1 612c783d1a1a182ad7ea4f2eb0b79e86 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf systemd 6b4f0cefa642270eded7e6ca816fd181 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d unpacker 1d149d9bda7723e740cfd28118f27813 _md5_=8f6d140c08910dec0d9a6ba1bd4dc2ea diff --git a/metadata/md5-cache/dev-vcs/git-2.6.1-r1 b/metadata/md5-cache/dev-vcs/git-2.6.1-r1 new file mode 100644 index 000000000000..22c337deba2e --- /dev/null +++ b/metadata/md5-cache/dev-vcs/git-2.6.1-r1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack +DEPEND=!libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) sys-libs/zlib pcre? ( dev-libs/libpcre ) perl? ( dev-lang/perl:=[-build(-)] ) tk? ( dev-lang/tk:0= ) curl? ( net-misc/curl webdav? ( dev-libs/expat ) ) emacs? ( virtual/emacs ) gnome-keyring? ( gnome-base/libgnome-keyring ) doc? ( app-text/asciidoc app-text/docbook2X sys-apps/texinfo app-text/xmlto ) nls? ( sys-devel/gettext ) test? ( app-crypt/gnupg ) virtual/pkgconfig +DESCRIPTION=GIT - the stupid content tracker, the revision control system heavily used by the Linux kernel team +EAPI=5 +HOMEPAGE=http://www.git-scm.com/ +IUSE=+blksha1 +curl cgi doc emacs gnome-keyring +gpg gtk highlight +iconv libressl mediawiki +nls +pcre +perl +python ppcsha1 tk +threads +webdav xinetd cvs subversion test python_targets_python2_7 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=GPL-2 +RDEPEND=!libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) sys-libs/zlib pcre? ( dev-libs/libpcre ) perl? ( dev-lang/perl:=[-build(-)] ) tk? ( dev-lang/tk:0= ) curl? ( net-misc/curl webdav? ( dev-libs/expat ) ) emacs? ( virtual/emacs ) gnome-keyring? ( gnome-base/libgnome-keyring ) gpg? ( app-crypt/gnupg ) mediawiki? ( dev-perl/HTML-Tree dev-perl/MediaWiki-API ) perl? ( dev-perl/Error dev-perl/Net-SMTP-SSL dev-perl/Authen-SASL cgi? ( dev-perl/CGI highlight? ( app-text/highlight ) ) cvs? ( >=dev-vcs/cvsps-2.1:0 dev-perl/DBI dev-perl/DBD-SQLite ) subversion? ( dev-vcs/subversion[-dso,perl] dev-perl/libwww-perl dev-perl/TermReadKey ) ) python? ( gtk? ( >=dev-python/pygtk-2.8[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] >=dev-python/pygtksourceview-2.10.1-r1:2[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] ) >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] ) +REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) subversion? ( perl ) webdav? ( curl ) gtk? ( python ) python? ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=https://git-core.googlecode.com/files/git-2.6.1.tar.xz mirror://kernel/software/scm/git/git-2.6.1.tar.xz https://git-core.googlecode.com/files/git-manpages-2.6.1.tar.xz mirror://kernel/software/scm/git/git-manpages-2.6.1.tar.xz doc? ( mirror://kernel/software/scm/git/git-htmldocs-2.6.1.tar.xz https://git-core.googlecode.com/files/git-htmldocs-2.6.1.tar.xz ) +_eclasses_=bash-completion-r1 b1fc4d30333bb528c8abb4332bb70ea6 elisp-common 73c48c11ad6a6494eda0d0cca848c8fa eutils 43da5163ba106e87d22d2e7d6d67537f multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde perl-module 1cfb38bf68a24c8394e41d2f53003146 python-single-r1 612c783d1a1a182ad7ea4f2eb0b79e86 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf systemd 6b4f0cefa642270eded7e6ca816fd181 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d unpacker 1d149d9bda7723e740cfd28118f27813 +_md5_=3f2b34d1df0bf247ba0b2d14336a5594 diff --git a/metadata/md5-cache/games-strategy/s25rttr-0.8.1 b/metadata/md5-cache/games-strategy/s25rttr-0.8.1 index f4b1145e5abf..864ccdbbc1af 100644 --- a/metadata/md5-cache/games-strategy/s25rttr-0.8.1 +++ b/metadata/md5-cache/games-strategy/s25rttr-0.8.1 @@ -10,4 +10,4 @@ RDEPEND=app-arch/bzip2 media-libs/libsamplerate media-libs/libsdl[X,sound,opengl SLOT=0 SRC_URI=https://dev.gentoo.org/~hasufell/distfiles/s25rttr-0.8.1.tar.xz _eclasses_=base 84d9f879f57a8316ff02be0373a3d6f9 cmake-utils f474224ef49d530640a43a04ae94928e eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 games ce18d731b1dfae17561d847a24ca08c2 gnome2-utils 44555579e85afa5c035d2bd5428252da multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d user 906f3c8eb3a2350a4f1191a89baa3e46 -_md5_=3894ab36fc9cfd5c03b28aa7e11bcfe7 +_md5_=e746e18bf315af19178757ae0162581d diff --git a/metadata/md5-cache/games-util/pyfa-9999 b/metadata/md5-cache/games-util/pyfa-9999 index 84128286de1c..07a619a32683 100644 --- a/metadata/md5-cache/games-util/pyfa-9999 +++ b/metadata/md5-cache/games-util/pyfa-9999 @@ -1,11 +1,11 @@ DEFINED_PHASES=install postinst postrm preinst prepare unpack -DEPEND=app-arch/unzip >=sys-apps/sed-4 dev-vcs/git +DEPEND=app-arch/zip >=sys-apps/sed-4 >=dev-vcs/git-1.8.2.1 DESCRIPTION=Python Fitting Assistant - a ship fitting application for EVE Online EAPI=5 HOMEPAGE=https://github.com/DarkFenX/Pyfa IUSE=+graph python_targets_python2_7 LICENSE=GPL-3+ LGPL-2.1+ CC-BY-2.5 free-noncomm -RDEPEND=dev-python/python-dateutil[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/sqlalchemy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/wxpython:2.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] graph? ( dev-python/matplotlib[wxwidgets,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/numpy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite,threads] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +RDEPEND=dev-python/python-dateutil[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/sqlalchemy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/wxpython:3.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] graph? ( dev-python/matplotlib[wxwidgets,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/numpy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite,threads] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 -_eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f git-2 1bb87192831f668cd20d93ffb1689c94 gnome2-utils 44555579e85afa5c035d2bd5428252da multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=b35a1a46cc6b2a52667238e01e227eff +_eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f git-r3 1502b9838d043db47700b8120083e637 gnome2-utils 44555579e85afa5c035d2bd5428252da multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=1976ad8f9693a7864bdcd7e5d7971091 diff --git a/metadata/md5-cache/mail-client/thunderbird-38.1.0 b/metadata/md5-cache/mail-client/thunderbird-38.1.0 deleted file mode 100644 index de954251b4e5..000000000000 --- a/metadata/md5-cache/mail-client/thunderbird-38.1.0 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare pretend setup unpack -DEPEND=>=dev-libs/nss-3.19.2 >=dev-libs/nspr-4.10.8 !x11-plugins/enigmail crypt? ( || ( ( >=app-crypt/gnupg-2.0 || ( app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] ) ) =app-crypt/gnupg-1.4* ) ) amd64? ( >=dev-lang/yasm-1.1 virtual/opengl ) x86? ( >=dev-lang/yasm-1.1 virtual/opengl ) virtual/pkgconfig || ( >=dev-lang/python-2.7.5-r2:2.7[threads,sqlite] ) app-arch/zip app-arch/unzip >=sys-devel/binutils-2.16.1 >=app-text/hunspell-1.2 dev-libs/atk dev-libs/expat >=dev-libs/libevent-1.4.7 >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.16:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( media-libs/alsa-lib ) pulseaudio? ( media-sound/pulseaudio ) virtual/freedesktop-icon-theme dbus? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=virtual/libffi-3.0.10 gstreamer? ( >=media-libs/gstreamer-1.4.5:1.0 >=media-libs/gst-plugins-base-1.4.5:1.0 >=media-libs/gst-plugins-good-1.4.5:1.0 >=media-plugins/gst-plugins-libav-1.4.5:1.0 ) gstreamer-0? ( media-plugins/gst-plugins-meta:0.10[ffmpeg] ) x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt system-cairo? ( >=x11-libs/cairo-1.12[X] >=x11-libs/pixman-0.19.2 ) system-icu? ( >=dev-libs/icu-51.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-sqlite? ( >=dev-db/sqlite-3.8.8.2:3[secure-delete,debug=] ) system-libvpx? ( >=media-libs/libvpx-1.3.0[postproc] ) !=sys-devel/automake-1.15:1.15 ) ~sys-devel/autoconf-2.13 >=sys-devel/libtool-2.4 app-arch/unzip -DESCRIPTION=Thunderbird Mail Client -EAPI=5 -HOMEPAGE=http://www.mozilla.com/en-US/thunderbird/ -IUSE=bindist crypt hardened ldap lightning +minimal mozdom selinux custom-cflags custom-optimization dbus debug gstreamer gstreamer-0 +jemalloc3 pulseaudio selinux startup-notification system-cairo system-icu system-jpeg system-sqlite system-libvpx +jit linguas_ar linguas_ast linguas_be linguas_bg linguas_bn_BD linguas_br linguas_ca linguas_cs linguas_cy linguas_da linguas_de linguas_el linguas_en_GB linguas_es_AR linguas_es_ES linguas_et linguas_eu linguas_fi linguas_fr linguas_fy_NL linguas_ga_IE linguas_gd linguas_gl linguas_he linguas_hr linguas_hsb linguas_hu linguas_hy_AM linguas_id linguas_is linguas_it linguas_ja linguas_ko linguas_lt linguas_nb_NO linguas_nl linguas_nn_NO linguas_pa_IN linguas_pl linguas_pt_BR linguas_pt_PT linguas_rm linguas_ro linguas_ru linguas_si linguas_sk linguas_sl linguas_sq linguas_sr linguas_sv_SE linguas_ta_LK linguas_tr linguas_uk linguas_vi linguas_zh_CN linguas_zh_TW -KEYWORDS=~alpha amd64 ~arm ~ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=>=dev-libs/nss-3.19.2 >=dev-libs/nspr-4.10.8 !x11-plugins/enigmail crypt? ( || ( ( >=app-crypt/gnupg-2.0 || ( app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] ) ) =app-crypt/gnupg-1.4* ) ) selinux? ( sec-policy/selinux-thunderbird ) >=app-text/hunspell-1.2 dev-libs/atk dev-libs/expat >=dev-libs/libevent-1.4.7 >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.16:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( media-libs/alsa-lib ) pulseaudio? ( media-sound/pulseaudio ) virtual/freedesktop-icon-theme dbus? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=virtual/libffi-3.0.10 gstreamer? ( >=media-libs/gstreamer-1.4.5:1.0 >=media-libs/gst-plugins-base-1.4.5:1.0 >=media-libs/gst-plugins-good-1.4.5:1.0 >=media-plugins/gst-plugins-libav-1.4.5:1.0 ) gstreamer-0? ( media-plugins/gst-plugins-meta:0.10[ffmpeg] ) x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt system-cairo? ( >=x11-libs/cairo-1.12[X] >=x11-libs/pixman-0.19.2 ) system-icu? ( >=dev-libs/icu-51.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-sqlite? ( >=dev-db/sqlite-3.8.8.2:3[secure-delete,debug=] ) system-libvpx? ( >=media-libs/libvpx-1.3.0[postproc] ) selinux? ( sec-policy/selinux-mozilla ) -REQUIRED_USE=?? ( gstreamer gstreamer-0 ) -RESTRICT=!bindist? ( bindist ) -SLOT=0 -SRC_URI=linguas_ar? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/ar.xpi -> thunderbird-38.1.0-ar.xpi ) linguas_ast? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/ast.xpi -> thunderbird-38.1.0-ast.xpi ) linguas_be? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/be.xpi -> thunderbird-38.1.0-be.xpi ) linguas_bg? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/bg.xpi -> thunderbird-38.1.0-bg.xpi ) linguas_bn_BD? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/bn-BD.xpi -> thunderbird-38.1.0-bn-BD.xpi ) linguas_br? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/br.xpi -> thunderbird-38.1.0-br.xpi ) linguas_ca? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/ca.xpi -> thunderbird-38.1.0-ca.xpi ) linguas_cs? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/cs.xpi -> thunderbird-38.1.0-cs.xpi ) linguas_cy? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/cy.xpi -> thunderbird-38.1.0-cy.xpi ) linguas_da? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/da.xpi -> thunderbird-38.1.0-da.xpi ) linguas_de? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/de.xpi -> thunderbird-38.1.0-de.xpi ) linguas_el? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/el.xpi -> thunderbird-38.1.0-el.xpi ) linguas_en_GB? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/en-GB.xpi -> thunderbird-38.1.0-en-GB.xpi ) linguas_es_AR? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/es-AR.xpi -> thunderbird-38.1.0-es-AR.xpi ) linguas_es_ES? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/es-ES.xpi -> thunderbird-38.1.0-es-ES.xpi ) linguas_et? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/et.xpi -> thunderbird-38.1.0-et.xpi ) linguas_eu? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/eu.xpi -> thunderbird-38.1.0-eu.xpi ) linguas_fi? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/fi.xpi -> thunderbird-38.1.0-fi.xpi ) linguas_fr? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/fr.xpi -> thunderbird-38.1.0-fr.xpi ) linguas_fy_NL? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/fy-NL.xpi -> thunderbird-38.1.0-fy-NL.xpi ) linguas_ga_IE? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/ga-IE.xpi -> thunderbird-38.1.0-ga-IE.xpi ) linguas_gd? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/gd.xpi -> thunderbird-38.1.0-gd.xpi ) linguas_gl? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/gl.xpi -> thunderbird-38.1.0-gl.xpi ) linguas_he? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/he.xpi -> thunderbird-38.1.0-he.xpi ) linguas_hr? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/hr.xpi -> thunderbird-38.1.0-hr.xpi ) linguas_hsb? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/hsb.xpi -> thunderbird-38.1.0-hsb.xpi ) linguas_hu? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/hu.xpi -> thunderbird-38.1.0-hu.xpi ) linguas_hy_AM? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/hy-AM.xpi -> thunderbird-38.1.0-hy-AM.xpi ) linguas_id? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/id.xpi -> thunderbird-38.1.0-id.xpi ) linguas_is? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/is.xpi -> thunderbird-38.1.0-is.xpi ) linguas_it? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/it.xpi -> thunderbird-38.1.0-it.xpi ) linguas_ja? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/ja.xpi -> thunderbird-38.1.0-ja.xpi ) linguas_ko? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/ko.xpi -> thunderbird-38.1.0-ko.xpi ) linguas_lt? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/lt.xpi -> thunderbird-38.1.0-lt.xpi ) linguas_nb_NO? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/nb-NO.xpi -> thunderbird-38.1.0-nb-NO.xpi ) linguas_nl? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/nl.xpi -> thunderbird-38.1.0-nl.xpi ) linguas_nn_NO? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/nn-NO.xpi -> thunderbird-38.1.0-nn-NO.xpi ) linguas_pa_IN? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/pa-IN.xpi -> thunderbird-38.1.0-pa-IN.xpi ) linguas_pl? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/pl.xpi -> thunderbird-38.1.0-pl.xpi ) linguas_pt_BR? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/pt-BR.xpi -> thunderbird-38.1.0-pt-BR.xpi ) linguas_pt_PT? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/pt-PT.xpi -> thunderbird-38.1.0-pt-PT.xpi ) linguas_rm? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/rm.xpi -> thunderbird-38.1.0-rm.xpi ) linguas_ro? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/ro.xpi -> thunderbird-38.1.0-ro.xpi ) linguas_ru? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/ru.xpi -> thunderbird-38.1.0-ru.xpi ) linguas_si? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/si.xpi -> thunderbird-38.1.0-si.xpi ) linguas_sk? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/sk.xpi -> thunderbird-38.1.0-sk.xpi ) linguas_sl? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/sl.xpi -> thunderbird-38.1.0-sl.xpi ) linguas_sq? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/sq.xpi -> thunderbird-38.1.0-sq.xpi ) linguas_sr? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/sr.xpi -> thunderbird-38.1.0-sr.xpi ) linguas_sv_SE? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/sv-SE.xpi -> thunderbird-38.1.0-sv-SE.xpi ) linguas_ta_LK? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/ta-LK.xpi -> thunderbird-38.1.0-ta-LK.xpi ) linguas_tr? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/tr.xpi -> thunderbird-38.1.0-tr.xpi ) linguas_uk? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/uk.xpi -> thunderbird-38.1.0-uk.xpi ) linguas_vi? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/vi.xpi -> thunderbird-38.1.0-vi.xpi ) linguas_zh_CN? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/zh-CN.xpi -> thunderbird-38.1.0-zh-CN.xpi ) linguas_zh_TW? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/linux-i686/xpi/zh-TW.xpi -> thunderbird-38.1.0-zh-TW.xpi ) http://ftp.mozilla.org/pub/thunderbird/releases/38.1.0/source/thunderbird-38.1.0.source.tar.bz2 http://ftp.mozilla.org/pub/calendar/lightning/releases/4.0.1/linux/lightning.xpi -> lightning-4.0.1.xpi lightning? ( https://dev.gentoo.org/~axs/distfiles/gdata-provider-1.9.tar.xz ) crypt? ( http://www.enigmail.net/download/source/enigmail-1.8.2.tar.gz ) https://dev.gentoo.org/~anarchy/mozilla/patchsets/thunderbird-38.0-patches-0.1.tar.xz https://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-38.0-patches-0.3.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/thunderbird-38.0-patches-0.1.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-38.0-patches-0.3.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/thunderbird-38.0-patches-0.1.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-38.0-patches-0.3.tar.xz -_eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff check-reqs 4f43fb72bc73bd58d75ec601713fae20 eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 libtool 7f78cd7d403808a350c9ae23f5821fb4 makeedit b8a216672495a247e3ea6a3412fa7ae8 mozconfig-v6.38 80a1b3ad114f878737a7a62225ac49c0 mozcoreconf-v3 4cfc8ce74fdb5f45ec03f00451b2a3ff mozextension 3d8ee4835f89ff39d4666656aa603433 mozlinguas f8b09a9eb2d47862b6df38999a9d6098 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 nsplugins bf5bfcef1d2f0adad7e6230455df8e91 pax-utils 4f1280c0d4dcd8340f731827007c0a53 python-any-r1 b81ab4852d108e3d9c940fa03bce80e1 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=aa70d4bdb7fff936b659045167702270 diff --git a/metadata/md5-cache/mail-client/thunderbird-38.2.0 b/metadata/md5-cache/mail-client/thunderbird-38.2.0 index a12019754cc5..6ef8e8e04f9f 100644 --- a/metadata/md5-cache/mail-client/thunderbird-38.2.0 +++ b/metadata/md5-cache/mail-client/thunderbird-38.2.0 @@ -10,6 +10,6 @@ RDEPEND=>=dev-libs/nss-3.19.2 >=dev-libs/nspr-4.10.8 !x11-plugins/enigmail crypt REQUIRED_USE=?? ( gstreamer gstreamer-0 ) RESTRICT=!bindist? ( bindist ) SLOT=0 -SRC_URI=linguas_ar? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/ar.xpi -> thunderbird-38.2.0-ar.xpi ) linguas_ast? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/ast.xpi -> thunderbird-38.2.0-ast.xpi ) linguas_be? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/be.xpi -> thunderbird-38.2.0-be.xpi ) linguas_bg? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/bg.xpi -> thunderbird-38.2.0-bg.xpi ) linguas_bn_BD? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/bn-BD.xpi -> thunderbird-38.2.0-bn-BD.xpi ) linguas_br? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/br.xpi -> thunderbird-38.2.0-br.xpi ) linguas_ca? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/ca.xpi -> thunderbird-38.2.0-ca.xpi ) linguas_cs? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/cs.xpi -> thunderbird-38.2.0-cs.xpi ) linguas_cy? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/cy.xpi -> thunderbird-38.2.0-cy.xpi ) linguas_da? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/da.xpi -> thunderbird-38.2.0-da.xpi ) linguas_de? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/de.xpi -> thunderbird-38.2.0-de.xpi ) linguas_el? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/el.xpi -> thunderbird-38.2.0-el.xpi ) linguas_en_GB? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/en-GB.xpi -> thunderbird-38.2.0-en-GB.xpi ) linguas_es_AR? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/es-AR.xpi -> thunderbird-38.2.0-es-AR.xpi ) linguas_es_ES? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/es-ES.xpi -> thunderbird-38.2.0-es-ES.xpi ) linguas_et? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/et.xpi -> thunderbird-38.2.0-et.xpi ) linguas_eu? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/eu.xpi -> thunderbird-38.2.0-eu.xpi ) linguas_fi? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/fi.xpi -> thunderbird-38.2.0-fi.xpi ) linguas_fr? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/fr.xpi -> thunderbird-38.2.0-fr.xpi ) linguas_fy_NL? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/fy-NL.xpi -> thunderbird-38.2.0-fy-NL.xpi ) linguas_ga_IE? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/ga-IE.xpi -> thunderbird-38.2.0-ga-IE.xpi ) linguas_gd? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/gd.xpi -> thunderbird-38.2.0-gd.xpi ) linguas_gl? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/gl.xpi -> thunderbird-38.2.0-gl.xpi ) linguas_he? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/he.xpi -> thunderbird-38.2.0-he.xpi ) linguas_hr? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/hr.xpi -> thunderbird-38.2.0-hr.xpi ) linguas_hsb? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/hsb.xpi -> thunderbird-38.2.0-hsb.xpi ) linguas_hu? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/hu.xpi -> thunderbird-38.2.0-hu.xpi ) linguas_hy_AM? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/hy-AM.xpi -> thunderbird-38.2.0-hy-AM.xpi ) linguas_id? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/id.xpi -> thunderbird-38.2.0-id.xpi ) linguas_is? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/is.xpi -> thunderbird-38.2.0-is.xpi ) linguas_it? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/it.xpi -> thunderbird-38.2.0-it.xpi ) linguas_ja? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/ja.xpi -> thunderbird-38.2.0-ja.xpi ) linguas_ko? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/ko.xpi -> thunderbird-38.2.0-ko.xpi ) linguas_lt? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/lt.xpi -> thunderbird-38.2.0-lt.xpi ) linguas_nb_NO? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/nb-NO.xpi -> thunderbird-38.2.0-nb-NO.xpi ) linguas_nl? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/nl.xpi -> thunderbird-38.2.0-nl.xpi ) linguas_nn_NO? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/nn-NO.xpi -> thunderbird-38.2.0-nn-NO.xpi ) linguas_pa_IN? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/pa-IN.xpi -> thunderbird-38.2.0-pa-IN.xpi ) linguas_pl? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/pl.xpi -> thunderbird-38.2.0-pl.xpi ) linguas_pt_BR? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/pt-BR.xpi -> thunderbird-38.2.0-pt-BR.xpi ) linguas_pt_PT? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/pt-PT.xpi -> thunderbird-38.2.0-pt-PT.xpi ) linguas_rm? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/rm.xpi -> thunderbird-38.2.0-rm.xpi ) linguas_ro? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/ro.xpi -> thunderbird-38.2.0-ro.xpi ) linguas_ru? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/ru.xpi -> thunderbird-38.2.0-ru.xpi ) linguas_si? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/si.xpi -> thunderbird-38.2.0-si.xpi ) linguas_sk? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/sk.xpi -> thunderbird-38.2.0-sk.xpi ) linguas_sl? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/sl.xpi -> thunderbird-38.2.0-sl.xpi ) linguas_sq? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/sq.xpi -> thunderbird-38.2.0-sq.xpi ) linguas_sr? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/sr.xpi -> thunderbird-38.2.0-sr.xpi ) linguas_sv_SE? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/sv-SE.xpi -> thunderbird-38.2.0-sv-SE.xpi ) linguas_ta_LK? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/ta-LK.xpi -> thunderbird-38.2.0-ta-LK.xpi ) linguas_tr? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/tr.xpi -> thunderbird-38.2.0-tr.xpi ) linguas_uk? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/uk.xpi -> thunderbird-38.2.0-uk.xpi ) linguas_vi? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/vi.xpi -> thunderbird-38.2.0-vi.xpi ) linguas_zh_CN? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/zh-CN.xpi -> thunderbird-38.2.0-zh-CN.xpi ) linguas_zh_TW? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/zh-TW.xpi -> thunderbird-38.2.0-zh-TW.xpi ) http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/source/thunderbird-38.2.0.source.tar.bz2 http://ftp.mozilla.org/pub/calendar/lightning/releases/4.0.2/linux/lightning.xpi -> lightning-4.0.2.xpi lightning? ( https://dev.gentoo.org/~axs/distfiles/gdata-provider-1.9.tar.xz ) crypt? ( http://www.enigmail.net/download/source/enigmail-1.8.2.tar.gz ) https://dev.gentoo.org/~anarchy/mozilla/patchsets/thunderbird-38.0-patches-0.1.tar.xz https://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-38.0-patches-0.3.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/thunderbird-38.0-patches-0.1.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-38.0-patches-0.3.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/thunderbird-38.0-patches-0.1.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-38.0-patches-0.3.tar.xz +SRC_URI=linguas_ar? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/ar.xpi -> thunderbird-38.2.0-ar.xpi ) linguas_ast? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/ast.xpi -> thunderbird-38.2.0-ast.xpi ) linguas_be? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/be.xpi -> thunderbird-38.2.0-be.xpi ) linguas_bg? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/bg.xpi -> thunderbird-38.2.0-bg.xpi ) linguas_bn_BD? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/bn-BD.xpi -> thunderbird-38.2.0-bn-BD.xpi ) linguas_br? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/br.xpi -> thunderbird-38.2.0-br.xpi ) linguas_ca? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/ca.xpi -> thunderbird-38.2.0-ca.xpi ) linguas_cs? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/cs.xpi -> thunderbird-38.2.0-cs.xpi ) linguas_cy? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/cy.xpi -> thunderbird-38.2.0-cy.xpi ) linguas_da? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/da.xpi -> thunderbird-38.2.0-da.xpi ) linguas_de? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/de.xpi -> thunderbird-38.2.0-de.xpi ) linguas_el? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/el.xpi -> thunderbird-38.2.0-el.xpi ) linguas_en_GB? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/en-GB.xpi -> thunderbird-38.2.0-en-GB.xpi ) linguas_es_AR? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/es-AR.xpi -> thunderbird-38.2.0-es-AR.xpi ) linguas_es_ES? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/es-ES.xpi -> thunderbird-38.2.0-es-ES.xpi ) linguas_et? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/et.xpi -> thunderbird-38.2.0-et.xpi ) linguas_eu? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/eu.xpi -> thunderbird-38.2.0-eu.xpi ) linguas_fi? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/fi.xpi -> thunderbird-38.2.0-fi.xpi ) linguas_fr? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/fr.xpi -> thunderbird-38.2.0-fr.xpi ) linguas_fy_NL? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/fy-NL.xpi -> thunderbird-38.2.0-fy-NL.xpi ) linguas_ga_IE? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/ga-IE.xpi -> thunderbird-38.2.0-ga-IE.xpi ) linguas_gd? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/gd.xpi -> thunderbird-38.2.0-gd.xpi ) linguas_gl? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/gl.xpi -> thunderbird-38.2.0-gl.xpi ) linguas_he? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/he.xpi -> thunderbird-38.2.0-he.xpi ) linguas_hr? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/hr.xpi -> thunderbird-38.2.0-hr.xpi ) linguas_hsb? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/hsb.xpi -> thunderbird-38.2.0-hsb.xpi ) linguas_hu? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/hu.xpi -> thunderbird-38.2.0-hu.xpi ) linguas_hy_AM? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/hy-AM.xpi -> thunderbird-38.2.0-hy-AM.xpi ) linguas_id? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/id.xpi -> thunderbird-38.2.0-id.xpi ) linguas_is? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/is.xpi -> thunderbird-38.2.0-is.xpi ) linguas_it? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/it.xpi -> thunderbird-38.2.0-it.xpi ) linguas_ja? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/ja.xpi -> thunderbird-38.2.0-ja.xpi ) linguas_ko? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/ko.xpi -> thunderbird-38.2.0-ko.xpi ) linguas_lt? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/lt.xpi -> thunderbird-38.2.0-lt.xpi ) linguas_nb_NO? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/nb-NO.xpi -> thunderbird-38.2.0-nb-NO.xpi ) linguas_nl? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/nl.xpi -> thunderbird-38.2.0-nl.xpi ) linguas_nn_NO? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/nn-NO.xpi -> thunderbird-38.2.0-nn-NO.xpi ) linguas_pa_IN? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/pa-IN.xpi -> thunderbird-38.2.0-pa-IN.xpi ) linguas_pl? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/pl.xpi -> thunderbird-38.2.0-pl.xpi ) linguas_pt_BR? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/pt-BR.xpi -> thunderbird-38.2.0-pt-BR.xpi ) linguas_pt_PT? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/pt-PT.xpi -> thunderbird-38.2.0-pt-PT.xpi ) linguas_rm? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/rm.xpi -> thunderbird-38.2.0-rm.xpi ) linguas_ro? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/ro.xpi -> thunderbird-38.2.0-ro.xpi ) linguas_ru? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/ru.xpi -> thunderbird-38.2.0-ru.xpi ) linguas_si? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/si.xpi -> thunderbird-38.2.0-si.xpi ) linguas_sk? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/sk.xpi -> thunderbird-38.2.0-sk.xpi ) linguas_sl? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/sl.xpi -> thunderbird-38.2.0-sl.xpi ) linguas_sq? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/sq.xpi -> thunderbird-38.2.0-sq.xpi ) linguas_sr? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/sr.xpi -> thunderbird-38.2.0-sr.xpi ) linguas_sv_SE? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/sv-SE.xpi -> thunderbird-38.2.0-sv-SE.xpi ) linguas_ta_LK? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/ta-LK.xpi -> thunderbird-38.2.0-ta-LK.xpi ) linguas_tr? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/tr.xpi -> thunderbird-38.2.0-tr.xpi ) linguas_uk? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/uk.xpi -> thunderbird-38.2.0-uk.xpi ) linguas_vi? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/vi.xpi -> thunderbird-38.2.0-vi.xpi ) linguas_zh_CN? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/zh-CN.xpi -> thunderbird-38.2.0-zh-CN.xpi ) linguas_zh_TW? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/linux-i686/xpi/zh-TW.xpi -> thunderbird-38.2.0-zh-TW.xpi ) http://ftp.mozilla.org/pub/thunderbird/releases/38.2.0/source/thunderbird-38.2.0.source.tar.bz2 http://ftp.mozilla.org/pub/calendar/lightning/releases/4.0.2/linux/lightning.xpi -> lightning-4.0.2.xpi lightning? ( https://dev.gentoo.org/~axs/distfiles/gdata-provider-1.9.tar.xz ) crypt? ( http://www.enigmail.net/download/source/enigmail-1.8.2.tar.gz ) https://dev.gentoo.org/~anarchy/mozilla/patchsets/thunderbird-38.0-patches-0.1.tar.xz https://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-38.0-patches-04.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/thunderbird-38.0-patches-0.1.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-38.0-patches-04.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/thunderbird-38.0-patches-0.1.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-38.0-patches-04.tar.xz _eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff check-reqs 4f43fb72bc73bd58d75ec601713fae20 eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 libtool 7f78cd7d403808a350c9ae23f5821fb4 makeedit b8a216672495a247e3ea6a3412fa7ae8 mozconfig-v6.38 80a1b3ad114f878737a7a62225ac49c0 mozcoreconf-v3 4cfc8ce74fdb5f45ec03f00451b2a3ff mozextension 3d8ee4835f89ff39d4666656aa603433 mozlinguas f8b09a9eb2d47862b6df38999a9d6098 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 nsplugins bf5bfcef1d2f0adad7e6230455df8e91 pax-utils 4f1280c0d4dcd8340f731827007c0a53 python-any-r1 b81ab4852d108e3d9c940fa03bce80e1 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=9f92313f6a64ec5248aed78dc0ff4606 +_md5_=5befb4edc4db7839e982acdcc5ad48d8 diff --git a/metadata/md5-cache/mail-client/thunderbird-38.3.0 b/metadata/md5-cache/mail-client/thunderbird-38.3.0 index dba0bbef042c..7c5ae154e960 100644 --- a/metadata/md5-cache/mail-client/thunderbird-38.3.0 +++ b/metadata/md5-cache/mail-client/thunderbird-38.3.0 @@ -10,6 +10,6 @@ RDEPEND=>=dev-libs/nss-3.19.2 >=dev-libs/nspr-4.10.8 !x11-plugins/enigmail crypt REQUIRED_USE=?? ( gstreamer gstreamer-0 ) RESTRICT=!bindist? ( bindist ) SLOT=0 -SRC_URI=linguas_ar? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/ar.xpi -> thunderbird-38.3.0-ar.xpi ) linguas_ast? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/ast.xpi -> thunderbird-38.3.0-ast.xpi ) linguas_be? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/be.xpi -> thunderbird-38.3.0-be.xpi ) linguas_bg? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/bg.xpi -> thunderbird-38.3.0-bg.xpi ) linguas_bn_BD? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/bn-BD.xpi -> thunderbird-38.3.0-bn-BD.xpi ) linguas_br? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/br.xpi -> thunderbird-38.3.0-br.xpi ) linguas_ca? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/ca.xpi -> thunderbird-38.3.0-ca.xpi ) linguas_cs? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/cs.xpi -> thunderbird-38.3.0-cs.xpi ) linguas_cy? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/cy.xpi -> thunderbird-38.3.0-cy.xpi ) linguas_da? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/da.xpi -> thunderbird-38.3.0-da.xpi ) linguas_de? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/de.xpi -> thunderbird-38.3.0-de.xpi ) linguas_el? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/el.xpi -> thunderbird-38.3.0-el.xpi ) linguas_en_GB? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/en-GB.xpi -> thunderbird-38.3.0-en-GB.xpi ) linguas_es_AR? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/es-AR.xpi -> thunderbird-38.3.0-es-AR.xpi ) linguas_es_ES? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/es-ES.xpi -> thunderbird-38.3.0-es-ES.xpi ) linguas_et? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/et.xpi -> thunderbird-38.3.0-et.xpi ) linguas_eu? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/eu.xpi -> thunderbird-38.3.0-eu.xpi ) linguas_fi? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/fi.xpi -> thunderbird-38.3.0-fi.xpi ) linguas_fr? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/fr.xpi -> thunderbird-38.3.0-fr.xpi ) linguas_fy_NL? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/fy-NL.xpi -> thunderbird-38.3.0-fy-NL.xpi ) linguas_ga_IE? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/ga-IE.xpi -> thunderbird-38.3.0-ga-IE.xpi ) linguas_gd? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/gd.xpi -> thunderbird-38.3.0-gd.xpi ) linguas_gl? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/gl.xpi -> thunderbird-38.3.0-gl.xpi ) linguas_he? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/he.xpi -> thunderbird-38.3.0-he.xpi ) linguas_hr? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/hr.xpi -> thunderbird-38.3.0-hr.xpi ) linguas_hsb? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/hsb.xpi -> thunderbird-38.3.0-hsb.xpi ) linguas_hu? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/hu.xpi -> thunderbird-38.3.0-hu.xpi ) linguas_hy_AM? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/hy-AM.xpi -> thunderbird-38.3.0-hy-AM.xpi ) linguas_id? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/id.xpi -> thunderbird-38.3.0-id.xpi ) linguas_is? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/is.xpi -> thunderbird-38.3.0-is.xpi ) linguas_it? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/it.xpi -> thunderbird-38.3.0-it.xpi ) linguas_ja? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/ja.xpi -> thunderbird-38.3.0-ja.xpi ) linguas_ko? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/ko.xpi -> thunderbird-38.3.0-ko.xpi ) linguas_lt? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/lt.xpi -> thunderbird-38.3.0-lt.xpi ) linguas_nb_NO? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/nb-NO.xpi -> thunderbird-38.3.0-nb-NO.xpi ) linguas_nl? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/nl.xpi -> thunderbird-38.3.0-nl.xpi ) linguas_nn_NO? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/nn-NO.xpi -> thunderbird-38.3.0-nn-NO.xpi ) linguas_pa_IN? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/pa-IN.xpi -> thunderbird-38.3.0-pa-IN.xpi ) linguas_pl? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/pl.xpi -> thunderbird-38.3.0-pl.xpi ) linguas_pt_BR? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/pt-BR.xpi -> thunderbird-38.3.0-pt-BR.xpi ) linguas_pt_PT? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/pt-PT.xpi -> thunderbird-38.3.0-pt-PT.xpi ) linguas_rm? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/rm.xpi -> thunderbird-38.3.0-rm.xpi ) linguas_ro? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/ro.xpi -> thunderbird-38.3.0-ro.xpi ) linguas_ru? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/ru.xpi -> thunderbird-38.3.0-ru.xpi ) linguas_si? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/si.xpi -> thunderbird-38.3.0-si.xpi ) linguas_sk? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/sk.xpi -> thunderbird-38.3.0-sk.xpi ) linguas_sl? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/sl.xpi -> thunderbird-38.3.0-sl.xpi ) linguas_sq? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/sq.xpi -> thunderbird-38.3.0-sq.xpi ) linguas_sr? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/sr.xpi -> thunderbird-38.3.0-sr.xpi ) linguas_sv_SE? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/sv-SE.xpi -> thunderbird-38.3.0-sv-SE.xpi ) linguas_ta_LK? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/ta-LK.xpi -> thunderbird-38.3.0-ta-LK.xpi ) linguas_tr? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/tr.xpi -> thunderbird-38.3.0-tr.xpi ) linguas_uk? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/uk.xpi -> thunderbird-38.3.0-uk.xpi ) linguas_vi? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/vi.xpi -> thunderbird-38.3.0-vi.xpi ) linguas_zh_CN? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/zh-CN.xpi -> thunderbird-38.3.0-zh-CN.xpi ) linguas_zh_TW? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/zh-TW.xpi -> thunderbird-38.3.0-zh-TW.xpi ) http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/source/thunderbird-38.3.0.source.tar.bz2 http://ftp.mozilla.org/pub/calendar/lightning/releases/4.0.2/linux/lightning.xpi -> lightning-4.0.2.xpi lightning? ( https://dev.gentoo.org/~axs/distfiles/gdata-provider-1.9.tar.xz ) crypt? ( http://www.enigmail.net/download/source/enigmail-1.8.2.tar.gz ) https://dev.gentoo.org/~anarchy/mozilla/patchsets/thunderbird-38.0-patches-0.1.tar.xz https://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-38.0-patches-0.3.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/thunderbird-38.0-patches-0.1.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-38.0-patches-0.3.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/thunderbird-38.0-patches-0.1.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-38.0-patches-0.3.tar.xz +SRC_URI=linguas_ar? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/ar.xpi -> thunderbird-38.3.0-ar.xpi ) linguas_ast? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/ast.xpi -> thunderbird-38.3.0-ast.xpi ) linguas_be? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/be.xpi -> thunderbird-38.3.0-be.xpi ) linguas_bg? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/bg.xpi -> thunderbird-38.3.0-bg.xpi ) linguas_bn_BD? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/bn-BD.xpi -> thunderbird-38.3.0-bn-BD.xpi ) linguas_br? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/br.xpi -> thunderbird-38.3.0-br.xpi ) linguas_ca? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/ca.xpi -> thunderbird-38.3.0-ca.xpi ) linguas_cs? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/cs.xpi -> thunderbird-38.3.0-cs.xpi ) linguas_cy? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/cy.xpi -> thunderbird-38.3.0-cy.xpi ) linguas_da? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/da.xpi -> thunderbird-38.3.0-da.xpi ) linguas_de? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/de.xpi -> thunderbird-38.3.0-de.xpi ) linguas_el? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/el.xpi -> thunderbird-38.3.0-el.xpi ) linguas_en_GB? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/en-GB.xpi -> thunderbird-38.3.0-en-GB.xpi ) linguas_es_AR? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/es-AR.xpi -> thunderbird-38.3.0-es-AR.xpi ) linguas_es_ES? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/es-ES.xpi -> thunderbird-38.3.0-es-ES.xpi ) linguas_et? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/et.xpi -> thunderbird-38.3.0-et.xpi ) linguas_eu? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/eu.xpi -> thunderbird-38.3.0-eu.xpi ) linguas_fi? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/fi.xpi -> thunderbird-38.3.0-fi.xpi ) linguas_fr? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/fr.xpi -> thunderbird-38.3.0-fr.xpi ) linguas_fy_NL? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/fy-NL.xpi -> thunderbird-38.3.0-fy-NL.xpi ) linguas_ga_IE? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/ga-IE.xpi -> thunderbird-38.3.0-ga-IE.xpi ) linguas_gd? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/gd.xpi -> thunderbird-38.3.0-gd.xpi ) linguas_gl? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/gl.xpi -> thunderbird-38.3.0-gl.xpi ) linguas_he? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/he.xpi -> thunderbird-38.3.0-he.xpi ) linguas_hr? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/hr.xpi -> thunderbird-38.3.0-hr.xpi ) linguas_hsb? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/hsb.xpi -> thunderbird-38.3.0-hsb.xpi ) linguas_hu? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/hu.xpi -> thunderbird-38.3.0-hu.xpi ) linguas_hy_AM? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/hy-AM.xpi -> thunderbird-38.3.0-hy-AM.xpi ) linguas_id? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/id.xpi -> thunderbird-38.3.0-id.xpi ) linguas_is? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/is.xpi -> thunderbird-38.3.0-is.xpi ) linguas_it? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/it.xpi -> thunderbird-38.3.0-it.xpi ) linguas_ja? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/ja.xpi -> thunderbird-38.3.0-ja.xpi ) linguas_ko? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/ko.xpi -> thunderbird-38.3.0-ko.xpi ) linguas_lt? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/lt.xpi -> thunderbird-38.3.0-lt.xpi ) linguas_nb_NO? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/nb-NO.xpi -> thunderbird-38.3.0-nb-NO.xpi ) linguas_nl? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/nl.xpi -> thunderbird-38.3.0-nl.xpi ) linguas_nn_NO? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/nn-NO.xpi -> thunderbird-38.3.0-nn-NO.xpi ) linguas_pa_IN? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/pa-IN.xpi -> thunderbird-38.3.0-pa-IN.xpi ) linguas_pl? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/pl.xpi -> thunderbird-38.3.0-pl.xpi ) linguas_pt_BR? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/pt-BR.xpi -> thunderbird-38.3.0-pt-BR.xpi ) linguas_pt_PT? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/pt-PT.xpi -> thunderbird-38.3.0-pt-PT.xpi ) linguas_rm? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/rm.xpi -> thunderbird-38.3.0-rm.xpi ) linguas_ro? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/ro.xpi -> thunderbird-38.3.0-ro.xpi ) linguas_ru? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/ru.xpi -> thunderbird-38.3.0-ru.xpi ) linguas_si? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/si.xpi -> thunderbird-38.3.0-si.xpi ) linguas_sk? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/sk.xpi -> thunderbird-38.3.0-sk.xpi ) linguas_sl? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/sl.xpi -> thunderbird-38.3.0-sl.xpi ) linguas_sq? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/sq.xpi -> thunderbird-38.3.0-sq.xpi ) linguas_sr? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/sr.xpi -> thunderbird-38.3.0-sr.xpi ) linguas_sv_SE? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/sv-SE.xpi -> thunderbird-38.3.0-sv-SE.xpi ) linguas_ta_LK? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/ta-LK.xpi -> thunderbird-38.3.0-ta-LK.xpi ) linguas_tr? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/tr.xpi -> thunderbird-38.3.0-tr.xpi ) linguas_uk? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/uk.xpi -> thunderbird-38.3.0-uk.xpi ) linguas_vi? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/vi.xpi -> thunderbird-38.3.0-vi.xpi ) linguas_zh_CN? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/zh-CN.xpi -> thunderbird-38.3.0-zh-CN.xpi ) linguas_zh_TW? ( http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/linux-i686/xpi/zh-TW.xpi -> thunderbird-38.3.0-zh-TW.xpi ) http://ftp.mozilla.org/pub/thunderbird/releases/38.3.0/source/thunderbird-38.3.0.source.tar.bz2 http://ftp.mozilla.org/pub/calendar/lightning/releases/4.0.2/linux/lightning.xpi -> lightning-4.0.2.xpi lightning? ( https://dev.gentoo.org/~axs/distfiles/gdata-provider-1.9.tar.xz ) crypt? ( http://www.enigmail.net/download/source/enigmail-1.8.2.tar.gz ) https://dev.gentoo.org/~anarchy/mozilla/patchsets/thunderbird-38.0-patches-0.1.tar.xz https://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-38.0-patches-04.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/thunderbird-38.0-patches-0.1.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-38.0-patches-04.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/thunderbird-38.0-patches-0.1.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-38.0-patches-04.tar.xz _eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff check-reqs 4f43fb72bc73bd58d75ec601713fae20 eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 libtool 7f78cd7d403808a350c9ae23f5821fb4 makeedit b8a216672495a247e3ea6a3412fa7ae8 mozconfig-v6.38 80a1b3ad114f878737a7a62225ac49c0 mozcoreconf-v3 4cfc8ce74fdb5f45ec03f00451b2a3ff mozextension 3d8ee4835f89ff39d4666656aa603433 mozlinguas f8b09a9eb2d47862b6df38999a9d6098 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 nsplugins bf5bfcef1d2f0adad7e6230455df8e91 pax-utils 4f1280c0d4dcd8340f731827007c0a53 python-any-r1 b81ab4852d108e3d9c940fa03bce80e1 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=2f1f9692de89ae6088217f133e0a7675 +_md5_=7646c10848015bbb975257e69f1a220a diff --git a/metadata/md5-cache/media-gfx/feh-2.14 b/metadata/md5-cache/media-gfx/feh-2.14 new file mode 100644 index 000000000000..fe5a5b8f43d3 --- /dev/null +++ b/metadata/md5-cache/media-gfx/feh-2.14 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install prepare setup +DEPEND=media-libs/imlib2[X] >=media-libs/libpng-1.2:0= x11-libs/libX11 curl? ( net-misc/curl ) exif? ( media-libs/libexif ) xinerama? ( x11-libs/libXinerama ) x11-libs/libXt x11-proto/xproto test? ( >=dev-lang/perl-5.10 dev-perl/Test-Command ) +DESCRIPTION=A fast, lightweight imageviewer using imlib2 +EAPI=5 +HOMEPAGE=http://feh.finalrewind.org/ +IUSE=debug curl exif test xinerama +KEYWORDS=~amd64 ~arm ~mips ~ppc ~ppc64 ~x86 +LICENSE=feh +RDEPEND=media-libs/imlib2[X] >=media-libs/libpng-1.2:0= x11-libs/libX11 curl? ( net-misc/curl ) exif? ( media-libs/libexif ) xinerama? ( x11-libs/libXinerama ) virtual/jpeg:0 +SLOT=0 +SRC_URI=http://feh.finalrewind.org/feh-2.14.tar.bz2 +_eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=8c53acf3a065674aec16cc46e31f72ac diff --git a/metadata/md5-cache/media-gfx/graphviz-2.38.0-r1 b/metadata/md5-cache/media-gfx/graphviz-2.38.0-r1 index e56739aa74ad..a54b59b2fcf8 100644 --- a/metadata/md5-cache/media-gfx/graphviz-2.38.0-r1 +++ b/metadata/md5-cache/media-gfx/graphviz-2.38.0-r1 @@ -4,7 +4,7 @@ DESCRIPTION=Open Source Graph Visualization Software EAPI=5 HOMEPAGE=http://www.graphviz.org/ IUSE=+cairo devil doc examples gdk-pixbuf gtk gts guile java lasi nls pdf perl postscript python qt4 ruby svg static-libs tcl X elibc_FreeBSD elibc_FreeBSD java python_targets_python2_7 -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris +KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris LICENSE=CPL-1.0 RDEPEND=sys-libs/zlib >=dev-libs/expat-2 >=dev-libs/glib-2.11.1:2 dev-libs/libltdl:0 >=media-libs/fontconfig-2.3.95 >=media-libs/freetype-2.1.10 >=media-libs/gd-2.0.34[fontconfig,jpeg,png,truetype,zlib] >=media-libs/libpng-1.2:0 !<=sci-chemistry/cluster-1.3.081231 virtual/jpeg:0 virtual/libiconv X? ( x11-libs/libXaw x11-libs/libX11 x11-libs/libXmu x11-libs/libXpm x11-libs/libXt ) cairo? ( >=x11-libs/pango-1.12 >=x11-libs/cairo-1.1.10[svg] ) devil? ( media-libs/devil[png,jpeg] ) postscript? ( app-text/ghostscript-gpl ) gtk? ( x11-libs/gtk+:2 ) gts? ( sci-libs/gts ) lasi? ( media-libs/lasi ) pdf? ( app-text/poppler ) perl? ( dev-lang/perl:= ) python? ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] ) qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 ) ruby? ( dev-lang/ruby:* ) svg? ( gnome-base/librsvg ) tcl? ( >=dev-lang/tcl-8.3:0= ) java? ( >=dev-java/java-config-2.2.0 ) REQUIRED_USE=!cairo? ( !X !gtk !postscript !lasi ) python? ( python_targets_python2_7 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=http://www.graphviz.org/pub/graphviz/stable/SOURCES/graphviz-2.38.0.tar.gz _eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 c059b30d6a4df7cf32e2c98c1da1c9b5 libtool 7f78cd7d403808a350c9ae23f5821fb4 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 python-single-r1 612c783d1a1a182ad7ea4f2eb0b79e86 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=b114783159decf2ed7ec50e4d788218d +_md5_=50a93a259fd7cc4e965d996f5ab94111 diff --git a/metadata/md5-cache/media-libs/devil-1.7.8-r2 b/metadata/md5-cache/media-libs/devil-1.7.8-r2 index 47d5b6a7f4a9..a9dfc244add8 100644 --- a/metadata/md5-cache/media-libs/devil-1.7.8-r2 +++ b/metadata/md5-cache/media-libs/devil-1.7.8-r2 @@ -10,4 +10,4 @@ RDEPEND=allegro? ( media-libs/allegro:0 ) gif? ( media-libs/giflib ) glut? ( med SLOT=0 SRC_URI=mirror://sourceforge/openil/DevIL-1.7.8.tar.gz _eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff eutils 43da5163ba106e87d22d2e7d6d67537f libtool 7f78cd7d403808a350c9ae23f5821fb4 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=469a9bea3d8a1f2ca3b083109ff2e479 +_md5_=ae94adbfd62321d0eaa845f09c5a824f diff --git a/metadata/md5-cache/media-libs/freetype-2.6.1 b/metadata/md5-cache/media-libs/freetype-2.6.1 index 0da901f08a99..481897516ab5 100644 --- a/metadata/md5-cache/media-libs/freetype-2.6.1 +++ b/metadata/md5-cache/media-libs/freetype-2.6.1 @@ -12,4 +12,4 @@ RESTRICT=!bindist? ( bindist ) SLOT=2 SRC_URI=mirror://sourceforge/freetype/freetype-2.6.1.tar.bz2 mirror://nongnu/freetype/freetype-2.6.1.tar.bz2 utils? ( mirror://sourceforge/freetype/ft2demos-2.6.1.tar.bz2 mirror://nongnu/freetype/ft2demos-2.6.1.tar.bz2 ) doc? ( mirror://sourceforge/freetype/freetype-doc-2.6.1.tar.bz2 mirror://nongnu/freetype/freetype-doc-2.6.1.tar.bz2 ) infinality? ( https://dev.gentoo.org/~polynomial-c/03-infinality-2.6-2015.10.04.patch.xz ) _eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff autotools-multilib 0b47cfc5bc6e355200e256e42f54fb09 autotools-utils 0bf099a6e3dfeaf20a7a94504d8dd896 eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 libtool 7f78cd7d403808a350c9ae23f5821fb4 multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multilib-build c47eec09e82c8a750127ff2abf0745b1 multilib-minimal a93a9b4153a5f1c746bdd3b20ef9d834 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=dac602d6d01a6d21451c50b3d8c9c861 +_md5_=40cb3f89170296a509dc761ec45b694b diff --git a/metadata/md5-cache/media-libs/libass-0.10.1 b/metadata/md5-cache/media-libs/libass-0.10.1 deleted file mode 100644 index 884dcce22fbf..000000000000 --- a/metadata/md5-cache/media-libs/libass-0.10.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install -DEPEND=fontconfig? ( >=media-libs/fontconfig-2.4.2 ) >=media-libs/freetype-2.4:2 virtual/libiconv >=dev-libs/fribidi-0.19.0 harfbuzz? ( >=media-libs/harfbuzz-0.9.11 ) enca? ( app-i18n/enca ) virtual/pkgconfig -DESCRIPTION=Library for SSA/ASS subtitles rendering -EAPI=4 -HOMEPAGE=https://code.google.com/p/libass/ -IUSE=+enca +fontconfig +harfbuzz static-libs -KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris -LICENSE=ISC -RDEPEND=fontconfig? ( >=media-libs/fontconfig-2.4.2 ) >=media-libs/freetype-2.4:2 virtual/libiconv >=dev-libs/fribidi-0.19.0 harfbuzz? ( >=media-libs/harfbuzz-0.9.11 ) enca? ( app-i18n/enca ) -SLOT=0 -SRC_URI=https://libass.googlecode.com/files/libass-0.10.1.tar.xz -_md5_=6fca8041994f559ea2a29871abc38157 diff --git a/metadata/md5-cache/media-libs/libass-0.10.2 b/metadata/md5-cache/media-libs/libass-0.10.2 deleted file mode 100644 index 98ed4d81de02..000000000000 --- a/metadata/md5-cache/media-libs/libass-0.10.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install -DEPEND=fontconfig? ( >=media-libs/fontconfig-2.4.2 ) >=media-libs/freetype-2.4:2 virtual/libiconv >=dev-libs/fribidi-0.19.0 harfbuzz? ( >=media-libs/harfbuzz-0.9.11[truetype] ) enca? ( app-i18n/enca ) virtual/pkgconfig -DESCRIPTION=Library for SSA/ASS subtitles rendering -EAPI=5 -HOMEPAGE=https://code.google.com/p/libass/ -IUSE=+enca +fontconfig +harfbuzz static-libs -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris -LICENSE=ISC -RDEPEND=fontconfig? ( >=media-libs/fontconfig-2.4.2 ) >=media-libs/freetype-2.4:2 virtual/libiconv >=dev-libs/fribidi-0.19.0 harfbuzz? ( >=media-libs/harfbuzz-0.9.11[truetype] ) enca? ( app-i18n/enca ) -SLOT=0/5 -SRC_URI=https://libass.googlecode.com/files/libass-0.10.2.tar.xz -_eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=dc483f3c3452523d1afd77ca5699261d diff --git a/metadata/md5-cache/media-libs/libass-0.11.1 b/metadata/md5-cache/media-libs/libass-0.11.1 deleted file mode 100644 index e1773bdb91e0..000000000000 --- a/metadata/md5-cache/media-libs/libass-0.11.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install test -DEPEND=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(-)?] ) >=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(-)?] >=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(-)?] >=dev-libs/fribidi-0.19.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(-)?] harfbuzz? ( >=media-libs/harfbuzz-0.9.12[truetype,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(-)?] ) enca? ( >=app-i18n/enca-1.14-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(-)?] ) virtual/pkgconfig abi_x86_32? ( dev-lang/yasm ) abi_x86_64? ( dev-lang/yasm ) -DESCRIPTION=Library for SSA/ASS subtitles rendering -EAPI=5 -HOMEPAGE=https://github.com/libass/libass -IUSE=+enca +fontconfig +harfbuzz static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris -LICENSE=ISC -RDEPEND=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(-)?] ) >=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(-)?] >=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(-)?] >=dev-libs/fribidi-0.19.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(-)?] harfbuzz? ( >=media-libs/harfbuzz-0.9.12[truetype,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(-)?] ) enca? ( >=app-i18n/enca-1.14-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/5 -SRC_URI=https://github.com/libass/libass/releases/download/0.11.1/libass-0.11.1.tar.xz -_eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multilib-build c47eec09e82c8a750127ff2abf0745b1 multilib-minimal a93a9b4153a5f1c746bdd3b20ef9d834 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=c46d45e6bab616beee2df670dd87a64c diff --git a/metadata/md5-cache/media-libs/libass-0.12.0 b/metadata/md5-cache/media-libs/libass-0.12.0 deleted file mode 100644 index 4eb56d613088..000000000000 --- a/metadata/md5-cache/media-libs/libass-0.12.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install test -DEPEND=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(-)?] ) >=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(-)?] >=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(-)?] >=dev-libs/fribidi-0.19.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(-)?] harfbuzz? ( >=media-libs/harfbuzz-0.9.12[truetype,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(-)?] ) enca? ( >=app-i18n/enca-1.14-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(-)?] ) virtual/pkgconfig abi_x86_32? ( dev-lang/yasm ) abi_x86_64? ( dev-lang/yasm ) -DESCRIPTION=Library for SSA/ASS subtitles rendering -EAPI=5 -HOMEPAGE=https://github.com/libass/libass -IUSE=+enca +fontconfig +harfbuzz static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris -LICENSE=ISC -RDEPEND=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(-)?] ) >=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(-)?] >=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(-)?] >=dev-libs/fribidi-0.19.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(-)?] harfbuzz? ( >=media-libs/harfbuzz-0.9.12[truetype,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(-)?] ) enca? ( >=app-i18n/enca-1.14-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/5 -SRC_URI=https://github.com/libass/libass/releases/download/0.12.0/libass-0.12.0.tar.xz -_eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multilib-build c47eec09e82c8a750127ff2abf0745b1 multilib-minimal a93a9b4153a5f1c746bdd3b20ef9d834 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=c46d45e6bab616beee2df670dd87a64c diff --git a/metadata/md5-cache/media-libs/libass-0.12.1 b/metadata/md5-cache/media-libs/libass-0.12.1 deleted file mode 100644 index 3e1959581eb9..000000000000 --- a/metadata/md5-cache/media-libs/libass-0.12.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install test -DEPEND=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(-)?] ) >=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(-)?] >=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(-)?] >=dev-libs/fribidi-0.19.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(-)?] harfbuzz? ( >=media-libs/harfbuzz-0.9.12[truetype,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(-)?] ) enca? ( >=app-i18n/enca-1.14-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(-)?] ) virtual/pkgconfig abi_x86_32? ( dev-lang/yasm ) abi_x86_64? ( dev-lang/yasm ) -DESCRIPTION=Library for SSA/ASS subtitles rendering -EAPI=5 -HOMEPAGE=https://github.com/libass/libass -IUSE=+enca +fontconfig +harfbuzz static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris -LICENSE=ISC -RDEPEND=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(-)?] ) >=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(-)?] >=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(-)?] >=dev-libs/fribidi-0.19.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(-)?] harfbuzz? ( >=media-libs/harfbuzz-0.9.12[truetype,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(-)?] ) enca? ( >=app-i18n/enca-1.14-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/5 -SRC_URI=https://github.com/libass/libass/releases/download/0.12.1/libass-0.12.1.tar.xz -_eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multilib-build c47eec09e82c8a750127ff2abf0745b1 multilib-minimal a93a9b4153a5f1c746bdd3b20ef9d834 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=e3cea11cc967f3979c628d5c3b27bbd2 diff --git a/metadata/md5-cache/media-libs/libass-0.12.2 b/metadata/md5-cache/media-libs/libass-0.13.0 similarity index 75% rename from metadata/md5-cache/media-libs/libass-0.12.2 rename to metadata/md5-cache/media-libs/libass-0.13.0 index bf06c3e031cb..99c5716cd7dc 100644 --- a/metadata/md5-cache/media-libs/libass-0.12.2 +++ b/metadata/md5-cache/media-libs/libass-0.13.0 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install test -DEPEND=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(-)?] ) >=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(-)?] >=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(-)?] >=dev-libs/fribidi-0.19.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(-)?] harfbuzz? ( >=media-libs/harfbuzz-0.9.12[truetype,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(-)?] ) enca? ( >=app-i18n/enca-1.14-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(-)?] ) virtual/pkgconfig abi_x86_32? ( dev-lang/yasm ) abi_x86_64? ( dev-lang/yasm ) +DEPEND=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(-)?] ) >=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(-)?] >=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(-)?] >=dev-libs/fribidi-0.19.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(-)?] harfbuzz? ( >=media-libs/harfbuzz-0.9.12[truetype,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(-)?] ) virtual/pkgconfig abi_x86_32? ( dev-lang/yasm ) abi_x86_64? ( dev-lang/yasm ) DESCRIPTION=Library for SSA/ASS subtitles rendering EAPI=5 HOMEPAGE=https://github.com/libass/libass -IUSE=+enca +fontconfig +harfbuzz static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 +IUSE=+fontconfig +harfbuzz static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris LICENSE=ISC -RDEPEND=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(-)?] ) >=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(-)?] >=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(-)?] >=dev-libs/fribidi-0.19.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(-)?] harfbuzz? ( >=media-libs/harfbuzz-0.9.12[truetype,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(-)?] ) enca? ( >=app-i18n/enca-1.14-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(-)?] ) +RDEPEND=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(-)?] ) >=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(-)?] >=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(-)?] >=dev-libs/fribidi-0.19.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(-)?] harfbuzz? ( >=media-libs/harfbuzz-0.9.12[truetype,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/5 -SRC_URI=https://github.com/libass/libass/releases/download/0.12.2/libass-0.12.2.tar.xz +SRC_URI=https://github.com/libass/libass/releases/download/0.13.0/libass-0.13.0.tar.xz _eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multilib-build c47eec09e82c8a750127ff2abf0745b1 multilib-minimal a93a9b4153a5f1c746bdd3b20ef9d834 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=e3cea11cc967f3979c628d5c3b27bbd2 +_md5_=5caa5e1e639d7f6540a69978eaff1d70 diff --git a/metadata/md5-cache/media-libs/libass-0.9.13 b/metadata/md5-cache/media-libs/libass-0.9.13 deleted file mode 100644 index 4e854dd5cd16..000000000000 --- a/metadata/md5-cache/media-libs/libass-0.9.13 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install -DEPEND=fontconfig? ( >=media-libs/fontconfig-2.4.2 ) >=media-libs/freetype-2.2.1:2 virtual/libiconv enca? ( app-i18n/enca ) virtual/pkgconfig -DESCRIPTION=Library for SSA/ASS subtitles rendering -EAPI=4 -HOMEPAGE=https://code.google.com/p/libass/ -IUSE=+enca +fontconfig static-libs -KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris -LICENSE=ISC -RDEPEND=fontconfig? ( >=media-libs/fontconfig-2.4.2 ) >=media-libs/freetype-2.2.1:2 virtual/libiconv enca? ( app-i18n/enca ) -SLOT=0 -SRC_URI=https://libass.googlecode.com/files/libass-0.9.13.tar.xz -_md5_=a9ae9d71ed9b32f2b7850e404b43be21 diff --git a/metadata/md5-cache/media-libs/libbluray-0.5.0 b/metadata/md5-cache/media-libs/libbluray-0.5.0 deleted file mode 100644 index 7385cce589ea..000000000000 --- a/metadata/md5-cache/media-libs/libbluray-0.5.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install preinst prepare setup -DEPEND=xml? ( dev-libs/libxml2 ) java? ( truetype? ( media-libs/freetype:2 ) >=virtual/jdk-1.6 dev-java/ant-core ) virtual/pkgconfig !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0 ) -DESCRIPTION=Blu-ray playback libraries -EAPI=5 -HOMEPAGE=http://www.videolan.org/developers/libbluray.html -IUSE=aacs java static-libs +truetype utils +xml elibc_FreeBSD java -KEYWORDS=amd64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd -LICENSE=LGPL-2.1 -RDEPEND=xml? ( dev-libs/libxml2 ) aacs? ( media-libs/libaacs ) java? ( truetype? ( media-libs/freetype:2 ) >=virtual/jre-1.6 ) java? ( >=dev-java/java-config-2.2.0 ) -SLOT=0 -SRC_URI=http://ftp.videolan.org/pub/videolan/libbluray/0.5.0/libbluray-0.5.0.tar.bz2 -_eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 c059b30d6a4df7cf32e2c98c1da1c9b5 libtool 7f78cd7d403808a350c9ae23f5821fb4 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=b70ea6796524367acb6dc4e54b7c59dc diff --git a/metadata/md5-cache/media-libs/libbluray-0.5.0-r1 b/metadata/md5-cache/media-libs/libbluray-0.5.0-r1 deleted file mode 100644 index 08d8187e1061..000000000000 --- a/metadata/md5-cache/media-libs/libbluray-0.5.0-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup test -DEPEND=xml? ( >=dev-libs/libxml2-2.9.1-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) java? ( >=virtual/jdk-1.6 dev-java/ant-core ) virtual/pkgconfig !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0 ) -DESCRIPTION=Blu-ray playback libraries -EAPI=5 -HOMEPAGE=http://www.videolan.org/developers/libbluray.html -IUSE=aacs java static-libs +truetype utils +xml elibc_FreeBSD java 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 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd -LICENSE=LGPL-2.1 -RDEPEND=xml? ( >=dev-libs/libxml2-2.9.1-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) aacs? ( >=media-libs/libaacs-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(-)?] ) java? ( >=virtual/jre-1.6 ) java? ( >=dev-java/java-config-2.2.0 ) -SLOT=0 -SRC_URI=http://ftp.videolan.org/pub/videolan/libbluray/0.5.0/libbluray-0.5.0.tar.bz2 -_eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 c059b30d6a4df7cf32e2c98c1da1c9b5 libtool 7f78cd7d403808a350c9ae23f5821fb4 multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multilib-build c47eec09e82c8a750127ff2abf0745b1 multilib-minimal a93a9b4153a5f1c746bdd3b20ef9d834 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=27edff56376c3f8094cb6fa968bd6161 diff --git a/metadata/md5-cache/media-libs/libbluray-0.6.1 b/metadata/md5-cache/media-libs/libbluray-0.6.1 deleted file mode 100644 index f34983163165..000000000000 --- a/metadata/md5-cache/media-libs/libbluray-0.6.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup test -DEPEND=xml? ( >=dev-libs/libxml2-2.9.1-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) java? ( >=virtual/jdk-1.6 dev-java/ant-core ) virtual/pkgconfig !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0 ) -DESCRIPTION=Blu-ray playback libraries -EAPI=5 -HOMEPAGE=http://www.videolan.org/developers/libbluray.html -IUSE=aacs java static-libs +truetype utils +xml elibc_FreeBSD java 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 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd -LICENSE=LGPL-2.1 -RDEPEND=xml? ( >=dev-libs/libxml2-2.9.1-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) aacs? ( >=media-libs/libaacs-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(-)?] ) java? ( >=virtual/jre-1.6 ) java? ( >=dev-java/java-config-2.2.0 ) -SLOT=0 -SRC_URI=http://ftp.videolan.org/pub/videolan/libbluray/0.6.1/libbluray-0.6.1.tar.bz2 -_eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 c059b30d6a4df7cf32e2c98c1da1c9b5 libtool 7f78cd7d403808a350c9ae23f5821fb4 multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multilib-build c47eec09e82c8a750127ff2abf0745b1 multilib-minimal a93a9b4153a5f1c746bdd3b20ef9d834 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=e543d5e27f1a27b6b262937899d35ec8 diff --git a/metadata/md5-cache/media-libs/libbluray-0.7.0 b/metadata/md5-cache/media-libs/libbluray-0.7.0 deleted file mode 100644 index c65e02e568e3..000000000000 --- a/metadata/md5-cache/media-libs/libbluray-0.7.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup test -DEPEND=xml? ( >=dev-libs/libxml2-2.9.1-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) 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(-)?] ) java? ( >=virtual/jdk-1.6 dev-java/ant-core ) virtual/pkgconfig !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0 ) -DESCRIPTION=Blu-ray playback libraries -EAPI=5 -HOMEPAGE=http://www.videolan.org/developers/libbluray.html -IUSE=aacs bdplus +fontconfig java static-libs +truetype utils +xml elibc_FreeBSD java 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 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd -LICENSE=LGPL-2.1 -RDEPEND=xml? ( >=dev-libs/libxml2-2.9.1-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) 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(-)?] ) aacs? ( >=media-libs/libaacs-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(-)?] ) bdplus? ( media-libs/libbdplus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) java? ( >=virtual/jre-1.6 ) java? ( >=dev-java/java-config-2.2.0 ) -SLOT=0 -SRC_URI=http://ftp.videolan.org/pub/videolan/libbluray/0.7.0/libbluray-0.7.0.tar.bz2 -_eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 c059b30d6a4df7cf32e2c98c1da1c9b5 libtool 7f78cd7d403808a350c9ae23f5821fb4 multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multilib-build c47eec09e82c8a750127ff2abf0745b1 multilib-minimal a93a9b4153a5f1c746bdd3b20ef9d834 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=ac1f51747483556092d8c1243f0abca2 diff --git a/metadata/md5-cache/media-libs/libbluray-0.8.0 b/metadata/md5-cache/media-libs/libbluray-0.9.0 similarity index 97% rename from metadata/md5-cache/media-libs/libbluray-0.8.0 rename to metadata/md5-cache/media-libs/libbluray-0.9.0 index 072605bc37a9..548454a611b7 100644 --- a/metadata/md5-cache/media-libs/libbluray-0.8.0 +++ b/metadata/md5-cache/media-libs/libbluray-0.9.0 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd LICENSE=LGPL-2.1 RDEPEND=xml? ( >=dev-libs/libxml2-2.9.1-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) 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(-)?] ) aacs? ( >=media-libs/libaacs-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(-)?] ) bdplus? ( media-libs/libbdplus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) java? ( >=virtual/jre-1.6 ) java? ( >=dev-java/java-config-2.2.0 ) SLOT=0 -SRC_URI=http://ftp.videolan.org/pub/videolan/libbluray/0.8.0/libbluray-0.8.0.tar.bz2 +SRC_URI=http://ftp.videolan.org/pub/videolan/libbluray/0.9.0/libbluray-0.9.0.tar.bz2 _eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 c059b30d6a4df7cf32e2c98c1da1c9b5 libtool 7f78cd7d403808a350c9ae23f5821fb4 multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multilib-build c47eec09e82c8a750127ff2abf0745b1 multilib-minimal a93a9b4153a5f1c746bdd3b20ef9d834 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c _md5_=ce2d42780cd2c12164a5e02ad1b68688 diff --git a/metadata/md5-cache/media-sound/pulseaudio-7.0-r1 b/metadata/md5-cache/media-sound/pulseaudio-7.0-r1 index 03e46ed94417..4b66d117a4ce 100644 --- a/metadata/md5-cache/media-sound/pulseaudio-7.0-r1 +++ b/metadata/md5-cache/media-sound/pulseaudio-7.0-r1 @@ -4,7 +4,7 @@ DESCRIPTION=A networked sound server with an advanced plugin system EAPI=5 HOMEPAGE=http://www.pulseaudio.org/ IUSE=+alsa +alsa-plugin +asyncns bluetooth +caps dbus doc equalizer +gdbm +glib gnome gtk ipv6 jack libsamplerate libressl lirc native-headset neon ofono-headset +orc oss qt4 realtime selinux sox ssl systemd system-wide tcpd test +udev +webrtc-aec +X xen zeroconf 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 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux LICENSE=!gdbm? ( LGPL-2.1 ) gdbm? ( GPL-2 ) PDEPEND=alsa? ( alsa-plugin? ( >=media-plugins/alsa-plugins-1.0.27-r1[pulseaudio,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(-)?] ) ) RDEPEND=|| ( elibc_glibc? ( virtual/libc ) elibc_uclibc? ( virtual/libc ) dev-libs/libpcre ) >=media-libs/libsndfile-1.0.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(-)?] X? ( >=x11-libs/libX11-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(-)?] >=x11-libs/libxcb-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(-)?] x11-libs/libSM[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/libICE[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/libXtst[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(-)?] ) caps? ( >=sys-libs/libcap-2.22-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(-)?] ) libsamplerate? ( >=media-libs/libsamplerate-0.1.1-r1 ) alsa? ( >=media-libs/alsa-lib-1.0.19 ) glib? ( >=dev-libs/glib-2.4.0: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(-)?] ) zeroconf? ( >=net-dns/avahi-0.6.12[dbus] ) jack? ( >=media-sound/jack-audio-connection-kit-0.117 ) tcpd? ( sys-apps/tcp-wrappers[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(-)?] ) lirc? ( app-misc/lirc ) dbus? ( >=sys-apps/dbus-1.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(-)?] ) gtk? ( x11-libs/gtk+:3 ) gnome? ( >=gnome-base/gconf-2.4.0 ) bluetooth? ( net-wireless/bluez:= >=sys-apps/dbus-1.0.0 media-libs/sbc ) asyncns? ( net-libs/libasyncns[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(-)?] ) udev? ( >=virtual/udev-143[hwdb(+)] ) realtime? ( sys-auth/rtkit ) equalizer? ( sci-libs/fftw:3.0 ) ofono-headset? ( >=net-misc/ofono-1.13 ) orc? ( >=dev-lang/orc-0.4.15 ) sox? ( >=media-libs/soxr-0.1.1 ) ssl? ( !libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) ) >=media-libs/speex-1.2_rc1 gdbm? ( sys-libs/gdbm ) webrtc-aec? ( media-libs/webrtc-audio-processing ) xen? ( app-emulation/xen-tools ) systemd? ( sys-apps/systemd:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) >=dev-libs/json-c-0.11[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-soundlibs-20131008-r1 !app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] ) dev-libs/libltdl:0 selinux? ( sec-policy/selinux-pulseaudio ) equalizer? ( qt4? ( dev-python/PyQt4[dbus] ) ) system-wide? ( alsa? ( media-sound/alsa-utils ) bluetooth? ( net-wireless/bluez:= ) ) @@ -12,4 +12,4 @@ REQUIRED_USE=bluetooth? ( dbus ) ofono-headset? ( bluetooth ) native-headset? ( SLOT=0 SRC_URI=http://freedesktop.org/software/pulseaudio/releases/pulseaudio-7.0.tar.xz _eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff bash-completion-r1 b1fc4d30333bb528c8abb4332bb70ea6 eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 gnome2-utils 44555579e85afa5c035d2bd5428252da libtool 7f78cd7d403808a350c9ae23f5821fb4 linux-info 8f92e5ac1a1da684c5450b1b21a1f56a multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multilib-build c47eec09e82c8a750127ff2abf0745b1 multilib-minimal a93a9b4153a5f1c746bdd3b20ef9d834 readme.gentoo e37aea783a61ae55fab947df247eebea systemd 6b4f0cefa642270eded7e6ca816fd181 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d udev 37ef89be271b9ae8aa64be024ddb39b5 user 906f3c8eb3a2350a4f1191a89baa3e46 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=22b6dc76e7aa83989b5689c721e4f094 +_md5_=569526d5dd63d40f2c0e0715770a02a8 diff --git a/metadata/md5-cache/media-video/dvdstyler-2.9.4 b/metadata/md5-cache/media-video/dvdstyler-2.9.4 new file mode 100644 index 000000000000..72da6439020a --- /dev/null +++ b/metadata/md5-cache/media-video/dvdstyler-2.9.4 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install prepare +DEPEND=>=app-cdr/dvd+rw-tools-7.1 media-libs/libexif:= >=media-libs/wxsvg-1.3:= >=media-video/dvdauthor-0.7.1 >=media-video/xine-ui-0.99.7 virtual/cdrtools >=virtual/ffmpeg-9-r1[encode] virtual/jpeg:0 >=x11-libs/wxGTK-2.8.7:2.8=[gstreamer,X] sys-apps/dbus udev? ( >=virtual/libudev-215:= ) app-arch/zip app-text/xmlto sys-devel/gettext virtual/yacc virtual/pkgconfig +DESCRIPTION=A cross-platform free DVD authoring application +EAPI=5 +HOMEPAGE=http://www.dvdstyler.org/ +IUSE=debug +udev +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=app-cdr/dvd+rw-tools-7.1 media-libs/libexif:= >=media-libs/wxsvg-1.3:= >=media-video/dvdauthor-0.7.1 >=media-video/xine-ui-0.99.7 virtual/cdrtools >=virtual/ffmpeg-9-r1[encode] virtual/jpeg:0 >=x11-libs/wxGTK-2.8.7:2.8=[gstreamer,X] sys-apps/dbus udev? ( >=virtual/libudev-215:= ) >=app-cdr/dvdisaster-0.72.4 media-video/mjpegtools +SLOT=0 +SRC_URI=mirror://sourceforge/dvdstyler/DVDStyler-2.9.4.tar.bz2 +_eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d wxwidgets e0c7fd61275cea7156be4143ba8c673a +_md5_=59c47cc9d9fe3d305c5ff328408d5a57 diff --git a/metadata/md5-cache/media-video/mkvtoolnix-8.4.0 b/metadata/md5-cache/media-video/mkvtoolnix-8.4.0 new file mode 100644 index 000000000000..d8e112607a25 --- /dev/null +++ b/metadata/md5-cache/media-video/mkvtoolnix-8.4.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare pretend +DEPEND=>=dev-libs/boost-1.46.0:= >=dev-libs/libebml-1.3.1:= dev-libs/pugixml media-libs/flac >=media-libs/libmatroska-1.4.2:= media-libs/libogg media-libs/libvorbis sys-apps/file sys-libs/zlib qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 ) || ( ( dev-lang/ruby:2.2 virtual/rubygems[ruby_targets_ruby22] ) ( dev-lang/ruby:2.1 virtual/rubygems[ruby_targets_ruby21] ) ( dev-lang/ruby:2.0 virtual/rubygems[ruby_targets_ruby20] ) ) sys-devel/gettext virtual/pkgconfig !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=Tools to create, alter, and inspect Matroska files +EAPI=5 +HOMEPAGE=http://www.bunkus.org/videotools/mkvtoolnix +IUSE=curl debug pch qt5 +KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux +LICENSE=GPL-2 +RDEPEND=>=dev-libs/boost-1.46.0:= >=dev-libs/libebml-1.3.1:= dev-libs/pugixml media-libs/flac >=media-libs/libmatroska-1.4.2:= media-libs/libogg media-libs/libvorbis sys-apps/file sys-libs/zlib qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 ) +SLOT=0 +SRC_URI=http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-8.4.0.tar.xz +_eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff eutils 43da5163ba106e87d22d2e7d6d67537f libtool 7f78cd7d403808a350c9ae23f5821fb4 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multiprocessing d769539d9bace6eaca30af23bc2b4dde toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=4212cedc4648f741a1f492eefba03a0b diff --git a/metadata/md5-cache/net-analyzer/pmacct-1.5.3_pre20150925 b/metadata/md5-cache/net-analyzer/pmacct-1.5.3_pre20150925 new file mode 100644 index 000000000000..e338be1094eb --- /dev/null +++ b/metadata/md5-cache/net-analyzer/pmacct-1.5.3_pre20150925 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install +DEPEND=net-libs/libpcap geoip? ( dev-libs/geoip ) mongodb? ( >=dev-libs/mongo-c-driver-0.8.1-r1 =dev-libs/mongo-c-driver-0.8.1-r1 =virtual/mysql-4.0 ) odbc? ( >=dev-db/unixODBC-2.2.6 ) ldap? ( net-nds/openldap ) idn? ( net-dns/idnkit ) postgres? ( dev-db/postgresql:= ) caps? ( >=sys-libs/libcap-2.1.0 ) xml? ( dev-libs/libxml2 ) geoip? ( >=dev-libs/geoip-1.4.6 ) gssapi? ( virtual/krb5 ) gost? ( >=dev-libs/openssl-1.0.0:0[-bindist] ) seccomp? ( sys-libs/libseccomp ) json? ( dev-libs/json-c ) selinux? ( sec-policy/selinux-bind ) || ( sys-process/psmisc >=sys-freebsd/freebsd-ubin-9.0_rc sys-process/fuser-bsd ) REQUIRED_USE=postgres? ( dlz ) berkdb? ( dlz ) mysql? ( dlz !threads ) odbc? ( dlz ) ldap? ( dlz ) gost? ( ssl ) threads? ( caps ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=ftp://ftp.isc.org/isc/bind9/9.10.2-P4/bind-9.10.2-P4.tar.gz doc? ( mirror://gentoo/dyndns-samples.tbz2 ) _eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff db-use a4966c7f4f7df444ead1212848c13cc9 eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 libtool 7f78cd7d403808a350c9ae23f5821fb4 multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 python-r1 32b376cbb100a3a8083b3a0de023e117 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf systemd 6b4f0cefa642270eded7e6ca816fd181 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d user 906f3c8eb3a2350a4f1191a89baa3e46 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=706a9b2e1b5f8473824a884b9d6b06ad +_md5_=bd24174f1a30f35cc285ed083d7af4be diff --git a/metadata/md5-cache/net-firewall/nftables-0.4 b/metadata/md5-cache/net-firewall/nftables-0.4 deleted file mode 100644 index bd70ab0a8458..000000000000 --- a/metadata/md5-cache/net-firewall/nftables-0.4 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install prepare setup -DEPEND=net-libs/libmnl >=net-libs/libnftnl-1.0.2 dev-libs/gmp readline? ( sys-libs/readline ) >=app-text/docbook2X-0.8.8-r4 sys-devel/bison sys-devel/flex !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=Linux kernel (3.13+) firewall, NAT and packet mangling tools -EAPI=5 -HOMEPAGE=http://netfilter.org/projects/nftables/ -IUSE=debug +readline -KEYWORDS=~amd64 ~arm ~x86 -LICENSE=GPL-2 -RDEPEND=net-libs/libmnl >=net-libs/libnftnl-1.0.2 dev-libs/gmp readline? ( sys-libs/readline ) -SLOT=0 -SRC_URI=http://netfilter.org/projects/nftables/files/nftables-0.4.tar.bz2 -_eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff eutils 43da5163ba106e87d22d2e7d6d67537f libtool 7f78cd7d403808a350c9ae23f5821fb4 linux-info 8f92e5ac1a1da684c5450b1b21a1f56a multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=89e67a93421c4a39036d1f22fe23d180 diff --git a/metadata/md5-cache/net-libs/libasyncns-0.8-r4 b/metadata/md5-cache/net-libs/libasyncns-0.8-r4 new file mode 100644 index 000000000000..74ddaa2975d6 --- /dev/null +++ b/metadata/md5-cache/net-libs/libasyncns-0.8-r4 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=doc? ( app-doc/doxygen ) +DESCRIPTION=C library for executing name service queries asynchronously +EAPI=5 +HOMEPAGE=http://0pointer.de/lennart/projects/libasyncns/ +IUSE=doc debug 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 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux +LICENSE=LGPL-2.1 +SLOT=0 +SRC_URI=http://0pointer.de/lennart/projects/libasyncns/libasyncns-0.8.tar.gz +_eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff autotools-multilib 0b47cfc5bc6e355200e256e42f54fb09 autotools-utils 0bf099a6e3dfeaf20a7a94504d8dd896 eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 libtool 7f78cd7d403808a350c9ae23f5821fb4 multibuild ce2c2ede0c914b77f5dfc4e2ff2d0249 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 multilib-build c47eec09e82c8a750127ff2abf0745b1 multilib-minimal a93a9b4153a5f1c746bdd3b20ef9d834 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=1f9d08be2d4bb63c006625e7274fd639 diff --git a/metadata/md5-cache/net-libs/libnftnl-1.0.3 b/metadata/md5-cache/net-libs/libnftnl-1.0.3 deleted file mode 100644 index 3ad41e0ace4e..000000000000 --- a/metadata/md5-cache/net-libs/libnftnl-1.0.3 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=virtual/pkgconfig >=net-libs/libmnl-1.0.0 xml? ( >=dev-libs/mini-xml-2.6 ) json? ( >=dev-libs/jansson-2.3 ) -DESCRIPTION=Netlink API to the in-kernel nf_tables subsystem -EAPI=5 -HOMEPAGE=http://netfilter.org/projects/nftables/ -IUSE=examples json static-libs test xml -KEYWORDS=~amd64 ~arm ~x86 -LICENSE=GPL-2 -RDEPEND=>=net-libs/libmnl-1.0.0 xml? ( >=dev-libs/mini-xml-2.6 ) json? ( >=dev-libs/jansson-2.3 ) -REQUIRED_USE=test? ( json xml ) -SLOT=0 -SRC_URI=http://netfilter.org/projects/libnftnl/files/libnftnl-1.0.3.tar.bz2 -_eclasses_=base 84d9f879f57a8316ff02be0373a3d6f9 eutils 43da5163ba106e87d22d2e7d6d67537f linux-info 8f92e5ac1a1da684c5450b1b21a1f56a multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=6126564260d80995b05b3dd954b4db8b diff --git a/metadata/md5-cache/net-libs/libnftnl-1.0.4 b/metadata/md5-cache/net-libs/libnftnl-1.0.4 deleted file mode 100644 index 7ac01575d3fa..000000000000 --- a/metadata/md5-cache/net-libs/libnftnl-1.0.4 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=virtual/pkgconfig >=net-libs/libmnl-1.0.0 xml? ( >=dev-libs/mini-xml-2.6 ) json? ( >=dev-libs/jansson-2.3 ) -DESCRIPTION=Netlink API to the in-kernel nf_tables subsystem -EAPI=5 -HOMEPAGE=http://netfilter.org/projects/nftables/ -IUSE=examples json static-libs test xml -KEYWORDS=~amd64 ~arm ~x86 -LICENSE=GPL-2 -RDEPEND=>=net-libs/libmnl-1.0.0 xml? ( >=dev-libs/mini-xml-2.6 ) json? ( >=dev-libs/jansson-2.3 ) -REQUIRED_USE=test? ( json xml ) -SLOT=0 -SRC_URI=http://netfilter.org/projects/libnftnl/files/libnftnl-1.0.4.tar.bz2 -_eclasses_=base 84d9f879f57a8316ff02be0373a3d6f9 eutils 43da5163ba106e87d22d2e7d6d67537f linux-info 8f92e5ac1a1da684c5450b1b21a1f56a multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=56582fd97db2b2ce6d7fefb76dbc8cb0 diff --git a/metadata/md5-cache/net-libs/libsmi-0.5.0 b/metadata/md5-cache/net-libs/libsmi-0.5.0 index 90c00942ecc8..c6b862ad5997 100644 --- a/metadata/md5-cache/net-libs/libsmi-0.5.0 +++ b/metadata/md5-cache/net-libs/libsmi-0.5.0 @@ -7,4 +7,5 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-f LICENSE=BSD SLOT=0 SRC_URI=http://www.ibr.cs.tu-bs.de/projects/libsmi/download/libsmi-0.5.0.tar.gz -_md5_=5a33c1cdca7c5b2008318b75ec579b3c +_eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=dbc2c86ab782e4ad89d289c41696c1e2 diff --git a/metadata/md5-cache/net-misc/spice-gtk-0.25-r1 b/metadata/md5-cache/net-misc/spice-gtk-0.25-r1 index e855760c20fe..da613e63275c 100644 --- a/metadata/md5-cache/net-misc/spice-gtk-0.25-r1 +++ b/metadata/md5-cache/net-misc/spice-gtk-0.25-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Set of GObject and Gtk objects for connecting to Spice servers and a EAPI=5 HOMEPAGE=http://spice-space.org http://gitorious.org/spice-gtk IUSE=dbus doc gstreamer gtk3 +introspection policykit pulseaudio python sasl smartcard static-libs usbredir vala webdav python_targets_python2_7 -KEYWORDS=alpha amd64 arm ppc ppc64 sparc ~x86 +KEYWORDS=alpha amd64 arm ppc ppc64 sparc x86 LICENSE=LGPL-2.1 RDEPEND=>=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] pulseaudio? ( media-sound/pulseaudio[glib] ) gstreamer? ( media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 ) >=x11-libs/pixman-0.17.7 >=media-libs/celt-0.5.1.1:0.5.1 media-libs/opus dev-libs/openssl gtk3? ( x11-libs/gtk+:3[introspection?] ) x11-libs/gtk+:2[introspection?] >=dev-libs/glib-2.26:2 >=x11-libs/cairo-1.2 virtual/jpeg sys-libs/zlib dbus? ( dev-libs/dbus-glib ) introspection? ( dev-libs/gobject-introspection ) python? ( dev-python/pygtk:2 ) sasl? ( dev-libs/cyrus-sasl ) smartcard? ( app-emulation/qemu[smartcard] ) usbredir? ( sys-apps/hwids >=sys-apps/usbredir-0.4.2 virtual/libusb:1 virtual/libgudev:= policykit? ( sys-apps/acl >=sys-auth/polkit-0.110-r1 !~sys-auth/polkit-0.111 ) ) webdav? ( net-libs/phodav:1.0 ) REQUIRED_USE=python_targets_python2_7 ?? ( pulseaudio gstreamer ) SLOT=0 SRC_URI=http://spice-space.org/download/gtk/spice-gtk-0.25.tar.bz2 _eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff eutils 43da5163ba106e87d22d2e7d6d67537f libtool 7f78cd7d403808a350c9ae23f5821fb4 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 python-single-r1 612c783d1a1a182ad7ea4f2eb0b79e86 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d vala 335996addec48717e632dfd1f588ef1c -_md5_=571701d52076f006e8be10b091be4390 +_md5_=a338effcccaa91fbc99d4f1441aec426 diff --git a/metadata/md5-cache/net-wireless/hostapd-2.5 b/metadata/md5-cache/net-wireless/hostapd-2.5 new file mode 100644 index 000000000000..def1780da6ad --- /dev/null +++ b/metadata/md5-cache/net-wireless/hostapd-2.5 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst prepare +DEPEND=ssl? ( dev-libs/openssl[-bindist] ) kernel_linux? ( dev-libs/libnl:3 crda? ( net-wireless/crda ) ) netlink? ( net-libs/libnfnetlink ) sqlite? ( >=dev-db/sqlite-3 ) virtual/pkgconfig +DESCRIPTION=IEEE 802.11 wireless LAN Host AP daemon +EAPI=4 +HOMEPAGE=http://hostap.epitest.fi +IUSE=ipv6 logwatch netlink sqlite +ssl +wps +crda +KEYWORDS=~amd64 ~arm ~mips ~ppc ~x86 +LICENSE=|| ( GPL-2 BSD ) +RDEPEND=ssl? ( dev-libs/openssl[-bindist] ) kernel_linux? ( dev-libs/libnl:3 crda? ( net-wireless/crda ) ) netlink? ( net-libs/libnfnetlink ) sqlite? ( >=dev-db/sqlite-3 ) +SLOT=0 +SRC_URI=http://hostap.epitest.fi/releases/hostapd-2.5.tar.gz +_eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f multilib df4e4d5cfd3d137d0c248e1991c0e4d6 systemd 6b4f0cefa642270eded7e6ca816fd181 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=f6083daebc0609ce13b07ef16bb68d4a diff --git a/metadata/md5-cache/ros-meta/audio_common-0.2.8 b/metadata/md5-cache/ros-meta/audio_common-0.2.8 new file mode 100644 index 000000000000..28717f40d8f9 --- /dev/null +++ b/metadata/md5-cache/ros-meta/audio_common-0.2.8 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-ros/audio_capture dev-ros/audio_common_msgs dev-ros/audio_play dev-ros/sound_play sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/catkin dev-python/empy +DESCRIPTION=Common code for working with audio in ROS +EAPI=5 +HOMEPAGE=http://wiki.ros.org/audio_common +IUSE=test +KEYWORDS=~amd64 ~arm +LICENSE=BSD +RDEPEND=dev-ros/audio_capture dev-ros/audio_common_msgs dev-ros/audio_play dev-ros/sound_play dev-util/catkin dev-python/empy +SLOT=0 +SRC_URI=https://github.com/ros-drivers/audio_common/archive/0.2.8.tar.gz -> audio_common-0.2.8.tar.gz +_eclasses_=cmake-utils f474224ef49d530640a43a04ae94928e eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 ros-catkin ba27d98abea526cd43db694252eb90a4 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=5dd1158b192762100a61d94c25087c0a diff --git a/metadata/md5-cache/sci-electronics/xoscope-2.1 b/metadata/md5-cache/sci-electronics/xoscope-2.1 new file mode 100644 index 000000000000..ae99403ab484 --- /dev/null +++ b/metadata/md5-cache/sci-electronics/xoscope-2.1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=prepare setup +DEPEND=x11-libs/gtkdatabox virtual/man virtual/pkgconfig !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=Soundcard Oscilloscope for X +EAPI=5 +HOMEPAGE=http://xoscope.sourceforge.net +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=x11-libs/gtkdatabox virtual/man +SLOT=0 +SRC_URI=mirror://sourceforge/project/xoscope/xoscope/2.1/xoscope-2.1.tar.gz +_eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff eutils 43da5163ba106e87d22d2e7d6d67537f libtool 7f78cd7d403808a350c9ae23f5821fb4 linux-info 8f92e5ac1a1da684c5450b1b21a1f56a multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=a814b11677172941aa1bb5089d82a4fe diff --git a/metadata/md5-cache/sys-apps/progress-0.9 b/metadata/md5-cache/sys-apps/progress-0.9 index e0dd2a0c8fcc..c3466c199fa3 100644 --- a/metadata/md5-cache/sys-apps/progress-0.9 +++ b/metadata/md5-cache/sys-apps/progress-0.9 @@ -9,4 +9,4 @@ RDEPEND=sys-libs/ncurses SLOT=0 SRC_URI=https://github.com/Xfennec/progress/archive/v0.9.tar.gz -> progress-0.9.tar.gz _eclasses_=multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=1246f8210b594a529ce6341e0622fdaa +_md5_=f8b2c062a676dab85aec5c17436d6cce diff --git a/metadata/md5-cache/sys-fs/btrfs-progs-4.2.2 b/metadata/md5-cache/sys-fs/btrfs-progs-4.2.2 new file mode 100644 index 000000000000..4ee0c7992ae5 --- /dev/null +++ b/metadata/md5-cache/sys-fs/btrfs-progs-4.2.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare +DEPEND=dev-libs/lzo:2= sys-libs/zlib:0= convert? ( sys-fs/e2fsprogs:0= sys-libs/e2fsprogs-libs:0= ) convert? ( sys-apps/acl ) app-text/asciidoc app-text/docbook-xml-dtd:4.5 app-text/xmlto +DESCRIPTION=Btrfs filesystem utilities +EAPI=5 +HOMEPAGE=https://btrfs.wiki.kernel.org +IUSE=+convert +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=dev-libs/lzo:2= sys-libs/zlib:0= convert? ( sys-fs/e2fsprogs:0= sys-libs/e2fsprogs-libs:0= ) +RESTRICT=test +SLOT=0/0 +SRC_URI=https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v4.2.2.tar.xz +_eclasses_=bash-completion-r1 b1fc4d30333bb528c8abb4332bb70ea6 eutils 43da5163ba106e87d22d2e7d6d67537f multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=148d73859105912e3dac671747b6c4d4 diff --git a/metadata/md5-cache/sys-kernel/genkernel-next-63 b/metadata/md5-cache/sys-kernel/genkernel-next-63 index e58a48c3fff9..b438b36c6f77 100644 --- a/metadata/md5-cache/sys-kernel/genkernel-next-63 +++ b/metadata/md5-cache/sys-kernel/genkernel-next-63 @@ -4,10 +4,10 @@ DESCRIPTION=Gentoo automatic kernel building scripts, reloaded EAPI=5 HOMEPAGE=https://www.gentoo.org IUSE=cryptsetup dmraid gpg iscsi mdadm plymouth selinux -KEYWORDS=~alpha amd64 ~arm ia64 ppc ~x86 +KEYWORDS=~alpha amd64 ~arm ia64 ppc x86 LICENSE=GPL-2 RDEPEND=app-text/asciidoc sys-fs/e2fsprogs !sys-fs/eudev[-kmod,modutils] selinux? ( sys-libs/libselinux ) !sys-kernel/genkernel cryptsetup? ( sys-fs/cryptsetup ) dmraid? ( >=sys-fs/dmraid-1.0.0_rc16 ) gpg? ( app-crypt/gnupg ) iscsi? ( sys-block/open-iscsi ) mdadm? ( sys-fs/mdadm ) plymouth? ( sys-boot/plymouth[libkms] ) app-portage/portage-utils app-arch/cpio >=app-misc/pax-utils-0.6 !=net-analyzer/icinga2-2.1.1 dev-lang/php:*[apache2?,cli,gd,json,intl,ld SLOT=0 SRC_URI=https://codeload.github.com/Icinga/icingaweb2/tar.gz/v2.0.0 -> icingaweb2-2.0.0.tar.gz _eclasses_=depend.apache e3c541cb90838388f81620d630c28f41 eutils 43da5163ba106e87d22d2e7d6d67537f multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d user 906f3c8eb3a2350a4f1191a89baa3e46 -_md5_=239089f18152caa5da36b21be1ff52bd +_md5_=4b0977724134ce7ce3cb734929ff0f98 diff --git a/metadata/md5-cache/www-client/firefox-38.2.1 b/metadata/md5-cache/www-client/firefox-38.2.1 deleted file mode 100644 index 0d99bfd8e739..000000000000 --- a/metadata/md5-cache/www-client/firefox-38.2.1 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack -DEPEND=>=dev-libs/nss-3.19.2 >=dev-libs/nspr-4.10.8 selinux? ( sec-policy/selinux-mozilla ) pgo? ( >=sys-devel/gcc-4.5 ) amd64? ( >=dev-lang/yasm-1.1 virtual/opengl ) x86? ( >=dev-lang/yasm-1.1 virtual/opengl ) >=sys-apps/sed-4 virtual/pkgconfig || ( >=dev-lang/python-2.7.5-r2:2.7[threads,sqlite] ) app-arch/zip app-arch/unzip >=sys-devel/binutils-2.16.1 >=app-text/hunspell-1.2 dev-libs/atk dev-libs/expat >=dev-libs/libevent-1.4.7 >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.16:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( media-libs/alsa-lib ) pulseaudio? ( media-sound/pulseaudio ) virtual/freedesktop-icon-theme dbus? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=virtual/libffi-3.0.10 gstreamer? ( >=media-libs/gstreamer-1.4.5:1.0 >=media-libs/gst-plugins-base-1.4.5:1.0 >=media-libs/gst-plugins-good-1.4.5:1.0 >=media-plugins/gst-plugins-libav-1.4.5:1.0 ) gstreamer-0? ( media-plugins/gst-plugins-meta:0.10[ffmpeg] ) x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt system-cairo? ( >=x11-libs/cairo-1.12[X] >=x11-libs/pixman-0.19.2 ) system-icu? ( >=dev-libs/icu-51.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-sqlite? ( >=dev-db/sqlite-3.8.8.2:3[secure-delete,debug=] ) system-libvpx? ( >=media-libs/libvpx-1.3.0[postproc] ) wifi? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 net-wireless/wireless-tools ) !=sys-devel/automake-1.15:1.15 ) ~sys-devel/autoconf-2.13 >=sys-devel/libtool-2.4 pgo? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) app-arch/unzip -DESCRIPTION=Firefox Web Browser -EAPI=5 -HOMEPAGE=http://www.mozilla.com/firefox -IUSE=bindist egl hardened +minimal neon pgo selinux +gmp-autoupdate test custom-cflags custom-optimization dbus debug gstreamer gstreamer-0 +jemalloc3 pulseaudio selinux startup-notification system-cairo system-icu system-jpeg system-sqlite system-libvpx wifi +jit pgo linguas_af linguas_ar linguas_as linguas_ast linguas_be linguas_bg linguas_bn_BD linguas_bn_IN linguas_br linguas_bs linguas_ca linguas_cs linguas_cy linguas_da linguas_de linguas_el linguas_en_GB linguas_en_ZA linguas_eo linguas_es_AR linguas_es_CL linguas_es_ES linguas_es_MX linguas_et linguas_eu linguas_fa linguas_fi linguas_fr linguas_fy_NL linguas_ga_IE linguas_gd linguas_gl linguas_gu_IN linguas_he linguas_hi_IN linguas_hr linguas_hu linguas_hy_AM linguas_id linguas_is linguas_it linguas_ja linguas_kk linguas_km linguas_kn linguas_ko linguas_lt linguas_lv linguas_mai linguas_mk linguas_ml linguas_mr linguas_nb_NO linguas_nl linguas_nn_NO linguas_or linguas_pa_IN linguas_pl linguas_pt_BR linguas_pt_PT linguas_rm linguas_ro linguas_ru linguas_si linguas_sk linguas_sl linguas_son linguas_sq linguas_sr linguas_sv_SE linguas_ta linguas_te linguas_th linguas_tr linguas_uk linguas_vi linguas_xh linguas_zh_CN linguas_zh_TW -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=>=dev-libs/nss-3.19.2 >=dev-libs/nspr-4.10.8 selinux? ( sec-policy/selinux-mozilla ) >=app-text/hunspell-1.2 dev-libs/atk dev-libs/expat >=dev-libs/libevent-1.4.7 >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.16:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( media-libs/alsa-lib ) pulseaudio? ( media-sound/pulseaudio ) virtual/freedesktop-icon-theme dbus? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=virtual/libffi-3.0.10 gstreamer? ( >=media-libs/gstreamer-1.4.5:1.0 >=media-libs/gst-plugins-base-1.4.5:1.0 >=media-libs/gst-plugins-good-1.4.5:1.0 >=media-plugins/gst-plugins-libav-1.4.5:1.0 ) gstreamer-0? ( media-plugins/gst-plugins-meta:0.10[ffmpeg] ) x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt system-cairo? ( >=x11-libs/cairo-1.12[X] >=x11-libs/pixman-0.19.2 ) system-icu? ( >=dev-libs/icu-51.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-sqlite? ( >=dev-db/sqlite-3.8.8.2:3[secure-delete,debug=] ) system-libvpx? ( >=media-libs/libvpx-1.3.0[postproc] ) wifi? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 net-wireless/wireless-tools ) selinux? ( sec-policy/selinux-mozilla ) -REQUIRED_USE=?? ( gstreamer gstreamer-0 ) -RESTRICT=!bindist? ( bindist ) -SLOT=0 -SRC_URI=linguas_af? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/af.xpi -> firefox-38.2.1esr-af.xpi ) linguas_ar? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/ar.xpi -> firefox-38.2.1esr-ar.xpi ) linguas_as? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/as.xpi -> firefox-38.2.1esr-as.xpi ) linguas_ast? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/ast.xpi -> firefox-38.2.1esr-ast.xpi ) linguas_be? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/be.xpi -> firefox-38.2.1esr-be.xpi ) linguas_bg? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/bg.xpi -> firefox-38.2.1esr-bg.xpi ) linguas_bn_BD? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/bn-BD.xpi -> firefox-38.2.1esr-bn-BD.xpi ) linguas_bn_IN? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/bn-IN.xpi -> firefox-38.2.1esr-bn-IN.xpi ) linguas_br? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/br.xpi -> firefox-38.2.1esr-br.xpi ) linguas_bs? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/bs.xpi -> firefox-38.2.1esr-bs.xpi ) linguas_ca? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/ca.xpi -> firefox-38.2.1esr-ca.xpi ) linguas_cs? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/cs.xpi -> firefox-38.2.1esr-cs.xpi ) linguas_cy? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/cy.xpi -> firefox-38.2.1esr-cy.xpi ) linguas_da? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/da.xpi -> firefox-38.2.1esr-da.xpi ) linguas_de? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/de.xpi -> firefox-38.2.1esr-de.xpi ) linguas_el? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/el.xpi -> firefox-38.2.1esr-el.xpi ) linguas_en_GB? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/en-GB.xpi -> firefox-38.2.1esr-en-GB.xpi ) linguas_en_ZA? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/en-ZA.xpi -> firefox-38.2.1esr-en-ZA.xpi ) linguas_eo? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/eo.xpi -> firefox-38.2.1esr-eo.xpi ) linguas_es_AR? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/es-AR.xpi -> firefox-38.2.1esr-es-AR.xpi ) linguas_es_CL? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/es-CL.xpi -> firefox-38.2.1esr-es-CL.xpi ) linguas_es_ES? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/es-ES.xpi -> firefox-38.2.1esr-es-ES.xpi ) linguas_es_MX? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/es-MX.xpi -> firefox-38.2.1esr-es-MX.xpi ) linguas_et? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/et.xpi -> firefox-38.2.1esr-et.xpi ) linguas_eu? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/eu.xpi -> firefox-38.2.1esr-eu.xpi ) linguas_fa? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/fa.xpi -> firefox-38.2.1esr-fa.xpi ) linguas_fi? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/fi.xpi -> firefox-38.2.1esr-fi.xpi ) linguas_fr? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/fr.xpi -> firefox-38.2.1esr-fr.xpi ) linguas_fy_NL? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/fy-NL.xpi -> firefox-38.2.1esr-fy-NL.xpi ) linguas_ga_IE? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/ga-IE.xpi -> firefox-38.2.1esr-ga-IE.xpi ) linguas_gd? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/gd.xpi -> firefox-38.2.1esr-gd.xpi ) linguas_gl? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/gl.xpi -> firefox-38.2.1esr-gl.xpi ) linguas_gu_IN? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/gu-IN.xpi -> firefox-38.2.1esr-gu-IN.xpi ) linguas_he? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/he.xpi -> firefox-38.2.1esr-he.xpi ) linguas_hi_IN? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/hi-IN.xpi -> firefox-38.2.1esr-hi-IN.xpi ) linguas_hr? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/hr.xpi -> firefox-38.2.1esr-hr.xpi ) linguas_hu? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/hu.xpi -> firefox-38.2.1esr-hu.xpi ) linguas_hy_AM? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/hy-AM.xpi -> firefox-38.2.1esr-hy-AM.xpi ) linguas_id? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/id.xpi -> firefox-38.2.1esr-id.xpi ) linguas_is? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/is.xpi -> firefox-38.2.1esr-is.xpi ) linguas_it? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/it.xpi -> firefox-38.2.1esr-it.xpi ) linguas_ja? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/ja.xpi -> firefox-38.2.1esr-ja.xpi ) linguas_kk? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/kk.xpi -> firefox-38.2.1esr-kk.xpi ) linguas_km? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/km.xpi -> firefox-38.2.1esr-km.xpi ) linguas_kn? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/kn.xpi -> firefox-38.2.1esr-kn.xpi ) linguas_ko? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/ko.xpi -> firefox-38.2.1esr-ko.xpi ) linguas_lt? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/lt.xpi -> firefox-38.2.1esr-lt.xpi ) linguas_lv? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/lv.xpi -> firefox-38.2.1esr-lv.xpi ) linguas_mai? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/mai.xpi -> firefox-38.2.1esr-mai.xpi ) linguas_mk? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/mk.xpi -> firefox-38.2.1esr-mk.xpi ) linguas_ml? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/ml.xpi -> firefox-38.2.1esr-ml.xpi ) linguas_mr? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/mr.xpi -> firefox-38.2.1esr-mr.xpi ) linguas_nb_NO? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/nb-NO.xpi -> firefox-38.2.1esr-nb-NO.xpi ) linguas_nl? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/nl.xpi -> firefox-38.2.1esr-nl.xpi ) linguas_nn_NO? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/nn-NO.xpi -> firefox-38.2.1esr-nn-NO.xpi ) linguas_or? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/or.xpi -> firefox-38.2.1esr-or.xpi ) linguas_pa_IN? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/pa-IN.xpi -> firefox-38.2.1esr-pa-IN.xpi ) linguas_pl? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/pl.xpi -> firefox-38.2.1esr-pl.xpi ) linguas_pt_BR? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/pt-BR.xpi -> firefox-38.2.1esr-pt-BR.xpi ) linguas_pt_PT? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/pt-PT.xpi -> firefox-38.2.1esr-pt-PT.xpi ) linguas_rm? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/rm.xpi -> firefox-38.2.1esr-rm.xpi ) linguas_ro? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/ro.xpi -> firefox-38.2.1esr-ro.xpi ) linguas_ru? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/ru.xpi -> firefox-38.2.1esr-ru.xpi ) linguas_si? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/si.xpi -> firefox-38.2.1esr-si.xpi ) linguas_sk? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/sk.xpi -> firefox-38.2.1esr-sk.xpi ) linguas_sl? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/sl.xpi -> firefox-38.2.1esr-sl.xpi ) linguas_son? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/son.xpi -> firefox-38.2.1esr-son.xpi ) linguas_sq? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/sq.xpi -> firefox-38.2.1esr-sq.xpi ) linguas_sr? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/sr.xpi -> firefox-38.2.1esr-sr.xpi ) linguas_sv_SE? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/sv-SE.xpi -> firefox-38.2.1esr-sv-SE.xpi ) linguas_ta? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/ta.xpi -> firefox-38.2.1esr-ta.xpi ) linguas_te? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/te.xpi -> firefox-38.2.1esr-te.xpi ) linguas_th? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/th.xpi -> firefox-38.2.1esr-th.xpi ) linguas_tr? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/tr.xpi -> firefox-38.2.1esr-tr.xpi ) linguas_uk? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/uk.xpi -> firefox-38.2.1esr-uk.xpi ) linguas_vi? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/vi.xpi -> firefox-38.2.1esr-vi.xpi ) linguas_xh? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/xh.xpi -> firefox-38.2.1esr-xh.xpi ) linguas_zh_CN? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/zh-CN.xpi -> firefox-38.2.1esr-zh-CN.xpi ) linguas_zh_TW? ( http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/linux-i686/xpi/zh-TW.xpi -> firefox-38.2.1esr-zh-TW.xpi ) https://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-38.0-patches-0.3.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-38.0-patches-0.3.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-38.0-patches-0.3.tar.xz http://archive.mozilla.org/pub/firefox/releases/38.2.1esr/source/firefox-38.2.1esr.source.tar.bz2 -_eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff check-reqs 4f43fb72bc73bd58d75ec601713fae20 eutils 43da5163ba106e87d22d2e7d6d67537f fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 85dc1eac3c64d8141374490ed64122e5 gnome2-utils 44555579e85afa5c035d2bd5428252da libtool 7f78cd7d403808a350c9ae23f5821fb4 mozconfig-v6.38 80a1b3ad114f878737a7a62225ac49c0 mozcoreconf-v3 4cfc8ce74fdb5f45ec03f00451b2a3ff mozextension 3d8ee4835f89ff39d4666656aa603433 mozlinguas f8b09a9eb2d47862b6df38999a9d6098 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 pax-utils 4f1280c0d4dcd8340f731827007c0a53 python-any-r1 b81ab4852d108e3d9c940fa03bce80e1 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 7d550983f9b6adb3e7091f4090ddae2f -_md5_=b71ba57639dcad2a9c7088215ce87220 diff --git a/metadata/md5-cache/www-client/firefox-38.3.0 b/metadata/md5-cache/www-client/firefox-38.3.0 index d2b234ebcdf3..04bb7f4c540b 100644 --- a/metadata/md5-cache/www-client/firefox-38.3.0 +++ b/metadata/md5-cache/www-client/firefox-38.3.0 @@ -10,6 +10,6 @@ RDEPEND=>=dev-libs/nss-3.19.2 >=dev-libs/nspr-4.10.8 selinux? ( sec-policy/selin REQUIRED_USE=?? ( gstreamer gstreamer-0 ) RESTRICT=!bindist? ( bindist ) SLOT=0 -SRC_URI=linguas_af? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/af.xpi -> firefox-38.3.0esr-af.xpi ) linguas_ar? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/ar.xpi -> firefox-38.3.0esr-ar.xpi ) linguas_as? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/as.xpi -> firefox-38.3.0esr-as.xpi ) linguas_ast? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/ast.xpi -> firefox-38.3.0esr-ast.xpi ) linguas_be? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/be.xpi -> firefox-38.3.0esr-be.xpi ) linguas_bg? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/bg.xpi -> firefox-38.3.0esr-bg.xpi ) linguas_bn_BD? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/bn-BD.xpi -> firefox-38.3.0esr-bn-BD.xpi ) linguas_bn_IN? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/bn-IN.xpi -> firefox-38.3.0esr-bn-IN.xpi ) linguas_br? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/br.xpi -> firefox-38.3.0esr-br.xpi ) linguas_bs? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/bs.xpi -> firefox-38.3.0esr-bs.xpi ) linguas_ca? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/ca.xpi -> firefox-38.3.0esr-ca.xpi ) linguas_cs? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/cs.xpi -> firefox-38.3.0esr-cs.xpi ) linguas_cy? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/cy.xpi -> firefox-38.3.0esr-cy.xpi ) linguas_da? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/da.xpi -> firefox-38.3.0esr-da.xpi ) linguas_de? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/de.xpi -> firefox-38.3.0esr-de.xpi ) linguas_el? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/el.xpi -> firefox-38.3.0esr-el.xpi ) linguas_en_GB? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/en-GB.xpi -> firefox-38.3.0esr-en-GB.xpi ) linguas_en_ZA? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/en-ZA.xpi -> firefox-38.3.0esr-en-ZA.xpi ) linguas_eo? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/eo.xpi -> firefox-38.3.0esr-eo.xpi ) linguas_es_AR? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/es-AR.xpi -> firefox-38.3.0esr-es-AR.xpi ) linguas_es_CL? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/es-CL.xpi -> firefox-38.3.0esr-es-CL.xpi ) linguas_es_ES? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/es-ES.xpi -> firefox-38.3.0esr-es-ES.xpi ) linguas_es_MX? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/es-MX.xpi -> firefox-38.3.0esr-es-MX.xpi ) linguas_et? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/et.xpi -> firefox-38.3.0esr-et.xpi ) linguas_eu? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/eu.xpi -> firefox-38.3.0esr-eu.xpi ) linguas_fa? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/fa.xpi -> firefox-38.3.0esr-fa.xpi ) linguas_fi? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/fi.xpi -> firefox-38.3.0esr-fi.xpi ) linguas_fr? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/fr.xpi -> firefox-38.3.0esr-fr.xpi ) linguas_fy_NL? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/fy-NL.xpi -> firefox-38.3.0esr-fy-NL.xpi ) linguas_ga_IE? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/ga-IE.xpi -> firefox-38.3.0esr-ga-IE.xpi ) linguas_gd? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/gd.xpi -> firefox-38.3.0esr-gd.xpi ) linguas_gl? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/gl.xpi -> firefox-38.3.0esr-gl.xpi ) linguas_gu_IN? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/gu-IN.xpi -> firefox-38.3.0esr-gu-IN.xpi ) linguas_he? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/he.xpi -> firefox-38.3.0esr-he.xpi ) linguas_hi_IN? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/hi-IN.xpi -> firefox-38.3.0esr-hi-IN.xpi ) linguas_hr? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/hr.xpi -> firefox-38.3.0esr-hr.xpi ) linguas_hu? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/hu.xpi -> firefox-38.3.0esr-hu.xpi ) linguas_hy_AM? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/hy-AM.xpi -> firefox-38.3.0esr-hy-AM.xpi ) linguas_id? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/id.xpi -> firefox-38.3.0esr-id.xpi ) linguas_is? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/is.xpi -> firefox-38.3.0esr-is.xpi ) linguas_it? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/it.xpi -> firefox-38.3.0esr-it.xpi ) linguas_ja? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/ja.xpi -> firefox-38.3.0esr-ja.xpi ) linguas_kk? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/kk.xpi -> firefox-38.3.0esr-kk.xpi ) linguas_km? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/km.xpi -> firefox-38.3.0esr-km.xpi ) linguas_kn? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/kn.xpi -> firefox-38.3.0esr-kn.xpi ) linguas_ko? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/ko.xpi -> firefox-38.3.0esr-ko.xpi ) linguas_lt? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/lt.xpi -> firefox-38.3.0esr-lt.xpi ) linguas_lv? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/lv.xpi -> firefox-38.3.0esr-lv.xpi ) linguas_mai? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/mai.xpi -> firefox-38.3.0esr-mai.xpi ) linguas_mk? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/mk.xpi -> firefox-38.3.0esr-mk.xpi ) linguas_ml? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/ml.xpi -> firefox-38.3.0esr-ml.xpi ) linguas_mr? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/mr.xpi -> firefox-38.3.0esr-mr.xpi ) linguas_nb_NO? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/nb-NO.xpi -> firefox-38.3.0esr-nb-NO.xpi ) linguas_nl? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/nl.xpi -> firefox-38.3.0esr-nl.xpi ) linguas_nn_NO? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/nn-NO.xpi -> firefox-38.3.0esr-nn-NO.xpi ) linguas_or? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/or.xpi -> firefox-38.3.0esr-or.xpi ) linguas_pa_IN? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/pa-IN.xpi -> firefox-38.3.0esr-pa-IN.xpi ) linguas_pl? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/pl.xpi -> firefox-38.3.0esr-pl.xpi ) linguas_pt_BR? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/pt-BR.xpi -> firefox-38.3.0esr-pt-BR.xpi ) linguas_pt_PT? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/pt-PT.xpi -> firefox-38.3.0esr-pt-PT.xpi ) linguas_rm? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/rm.xpi -> firefox-38.3.0esr-rm.xpi ) linguas_ro? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/ro.xpi -> firefox-38.3.0esr-ro.xpi ) linguas_ru? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/ru.xpi -> firefox-38.3.0esr-ru.xpi ) linguas_si? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/si.xpi -> firefox-38.3.0esr-si.xpi ) linguas_sk? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/sk.xpi -> firefox-38.3.0esr-sk.xpi ) linguas_sl? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/sl.xpi -> firefox-38.3.0esr-sl.xpi ) linguas_son? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/son.xpi -> firefox-38.3.0esr-son.xpi ) linguas_sq? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/sq.xpi -> firefox-38.3.0esr-sq.xpi ) linguas_sr? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/sr.xpi -> firefox-38.3.0esr-sr.xpi ) linguas_sv_SE? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/sv-SE.xpi -> firefox-38.3.0esr-sv-SE.xpi ) linguas_ta? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/ta.xpi -> firefox-38.3.0esr-ta.xpi ) linguas_te? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/te.xpi -> firefox-38.3.0esr-te.xpi ) linguas_th? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/th.xpi -> firefox-38.3.0esr-th.xpi ) linguas_tr? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/tr.xpi -> firefox-38.3.0esr-tr.xpi ) linguas_uk? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/uk.xpi -> firefox-38.3.0esr-uk.xpi ) linguas_vi? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/vi.xpi -> firefox-38.3.0esr-vi.xpi ) linguas_xh? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/xh.xpi -> firefox-38.3.0esr-xh.xpi ) linguas_zh_CN? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/zh-CN.xpi -> firefox-38.3.0esr-zh-CN.xpi ) linguas_zh_TW? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/zh-TW.xpi -> firefox-38.3.0esr-zh-TW.xpi ) https://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-38.0-patches-0.3.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-38.0-patches-0.3.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-38.0-patches-0.3.tar.xz http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/source/firefox-38.3.0esr.source.tar.bz2 +SRC_URI=linguas_af? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/af.xpi -> firefox-38.3.0esr-af.xpi ) linguas_ar? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/ar.xpi -> firefox-38.3.0esr-ar.xpi ) linguas_as? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/as.xpi -> firefox-38.3.0esr-as.xpi ) linguas_ast? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/ast.xpi -> firefox-38.3.0esr-ast.xpi ) linguas_be? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/be.xpi -> firefox-38.3.0esr-be.xpi ) linguas_bg? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/bg.xpi -> firefox-38.3.0esr-bg.xpi ) linguas_bn_BD? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/bn-BD.xpi -> firefox-38.3.0esr-bn-BD.xpi ) linguas_bn_IN? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/bn-IN.xpi -> firefox-38.3.0esr-bn-IN.xpi ) linguas_br? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/br.xpi -> firefox-38.3.0esr-br.xpi ) linguas_bs? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/bs.xpi -> firefox-38.3.0esr-bs.xpi ) linguas_ca? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/ca.xpi -> firefox-38.3.0esr-ca.xpi ) linguas_cs? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/cs.xpi -> firefox-38.3.0esr-cs.xpi ) linguas_cy? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/cy.xpi -> firefox-38.3.0esr-cy.xpi ) linguas_da? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/da.xpi -> firefox-38.3.0esr-da.xpi ) linguas_de? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/de.xpi -> firefox-38.3.0esr-de.xpi ) linguas_el? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/el.xpi -> firefox-38.3.0esr-el.xpi ) linguas_en_GB? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/en-GB.xpi -> firefox-38.3.0esr-en-GB.xpi ) linguas_en_ZA? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/en-ZA.xpi -> firefox-38.3.0esr-en-ZA.xpi ) linguas_eo? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/eo.xpi -> firefox-38.3.0esr-eo.xpi ) linguas_es_AR? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/es-AR.xpi -> firefox-38.3.0esr-es-AR.xpi ) linguas_es_CL? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/es-CL.xpi -> firefox-38.3.0esr-es-CL.xpi ) linguas_es_ES? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/es-ES.xpi -> firefox-38.3.0esr-es-ES.xpi ) linguas_es_MX? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/es-MX.xpi -> firefox-38.3.0esr-es-MX.xpi ) linguas_et? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/et.xpi -> firefox-38.3.0esr-et.xpi ) linguas_eu? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/eu.xpi -> firefox-38.3.0esr-eu.xpi ) linguas_fa? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/fa.xpi -> firefox-38.3.0esr-fa.xpi ) linguas_fi? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/fi.xpi -> firefox-38.3.0esr-fi.xpi ) linguas_fr? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/fr.xpi -> firefox-38.3.0esr-fr.xpi ) linguas_fy_NL? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/fy-NL.xpi -> firefox-38.3.0esr-fy-NL.xpi ) linguas_ga_IE? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/ga-IE.xpi -> firefox-38.3.0esr-ga-IE.xpi ) linguas_gd? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/gd.xpi -> firefox-38.3.0esr-gd.xpi ) linguas_gl? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/gl.xpi -> firefox-38.3.0esr-gl.xpi ) linguas_gu_IN? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/gu-IN.xpi -> firefox-38.3.0esr-gu-IN.xpi ) linguas_he? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/he.xpi -> firefox-38.3.0esr-he.xpi ) linguas_hi_IN? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/hi-IN.xpi -> firefox-38.3.0esr-hi-IN.xpi ) linguas_hr? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/hr.xpi -> firefox-38.3.0esr-hr.xpi ) linguas_hu? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/hu.xpi -> firefox-38.3.0esr-hu.xpi ) linguas_hy_AM? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/hy-AM.xpi -> firefox-38.3.0esr-hy-AM.xpi ) linguas_id? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/id.xpi -> firefox-38.3.0esr-id.xpi ) linguas_is? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/is.xpi -> firefox-38.3.0esr-is.xpi ) linguas_it? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/it.xpi -> firefox-38.3.0esr-it.xpi ) linguas_ja? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/ja.xpi -> firefox-38.3.0esr-ja.xpi ) linguas_kk? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/kk.xpi -> firefox-38.3.0esr-kk.xpi ) linguas_km? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/km.xpi -> firefox-38.3.0esr-km.xpi ) linguas_kn? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/kn.xpi -> firefox-38.3.0esr-kn.xpi ) linguas_ko? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/ko.xpi -> firefox-38.3.0esr-ko.xpi ) linguas_lt? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/lt.xpi -> firefox-38.3.0esr-lt.xpi ) linguas_lv? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/lv.xpi -> firefox-38.3.0esr-lv.xpi ) linguas_mai? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/mai.xpi -> firefox-38.3.0esr-mai.xpi ) linguas_mk? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/mk.xpi -> firefox-38.3.0esr-mk.xpi ) linguas_ml? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/ml.xpi -> firefox-38.3.0esr-ml.xpi ) linguas_mr? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/mr.xpi -> firefox-38.3.0esr-mr.xpi ) linguas_nb_NO? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/nb-NO.xpi -> firefox-38.3.0esr-nb-NO.xpi ) linguas_nl? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/nl.xpi -> firefox-38.3.0esr-nl.xpi ) linguas_nn_NO? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/nn-NO.xpi -> firefox-38.3.0esr-nn-NO.xpi ) linguas_or? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/or.xpi -> firefox-38.3.0esr-or.xpi ) linguas_pa_IN? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/pa-IN.xpi -> firefox-38.3.0esr-pa-IN.xpi ) linguas_pl? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/pl.xpi -> firefox-38.3.0esr-pl.xpi ) linguas_pt_BR? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/pt-BR.xpi -> firefox-38.3.0esr-pt-BR.xpi ) linguas_pt_PT? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/pt-PT.xpi -> firefox-38.3.0esr-pt-PT.xpi ) linguas_rm? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/rm.xpi -> firefox-38.3.0esr-rm.xpi ) linguas_ro? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/ro.xpi -> firefox-38.3.0esr-ro.xpi ) linguas_ru? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/ru.xpi -> firefox-38.3.0esr-ru.xpi ) linguas_si? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/si.xpi -> firefox-38.3.0esr-si.xpi ) linguas_sk? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/sk.xpi -> firefox-38.3.0esr-sk.xpi ) linguas_sl? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/sl.xpi -> firefox-38.3.0esr-sl.xpi ) linguas_son? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/son.xpi -> firefox-38.3.0esr-son.xpi ) linguas_sq? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/sq.xpi -> firefox-38.3.0esr-sq.xpi ) linguas_sr? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/sr.xpi -> firefox-38.3.0esr-sr.xpi ) linguas_sv_SE? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/sv-SE.xpi -> firefox-38.3.0esr-sv-SE.xpi ) linguas_ta? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/ta.xpi -> firefox-38.3.0esr-ta.xpi ) linguas_te? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/te.xpi -> firefox-38.3.0esr-te.xpi ) linguas_th? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/th.xpi -> firefox-38.3.0esr-th.xpi ) linguas_tr? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/tr.xpi -> firefox-38.3.0esr-tr.xpi ) linguas_uk? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/uk.xpi -> firefox-38.3.0esr-uk.xpi ) linguas_vi? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/vi.xpi -> firefox-38.3.0esr-vi.xpi ) linguas_xh? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/xh.xpi -> firefox-38.3.0esr-xh.xpi ) linguas_zh_CN? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/zh-CN.xpi -> firefox-38.3.0esr-zh-CN.xpi ) linguas_zh_TW? ( http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/linux-i686/xpi/zh-TW.xpi -> firefox-38.3.0esr-zh-TW.xpi ) https://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-38.0-patches-04.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-38.0-patches-04.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-38.0-patches-04.tar.xz http://archive.mozilla.org/pub/firefox/releases/38.3.0esr/source/firefox-38.3.0esr.source.tar.bz2 _eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff check-reqs 4f43fb72bc73bd58d75ec601713fae20 eutils 43da5163ba106e87d22d2e7d6d67537f fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 85dc1eac3c64d8141374490ed64122e5 gnome2-utils 44555579e85afa5c035d2bd5428252da libtool 7f78cd7d403808a350c9ae23f5821fb4 mozconfig-v6.38 80a1b3ad114f878737a7a62225ac49c0 mozcoreconf-v3 4cfc8ce74fdb5f45ec03f00451b2a3ff mozextension 3d8ee4835f89ff39d4666656aa603433 mozlinguas f8b09a9eb2d47862b6df38999a9d6098 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 pax-utils 4f1280c0d4dcd8340f731827007c0a53 python-any-r1 b81ab4852d108e3d9c940fa03bce80e1 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 7d550983f9b6adb3e7091f4090ddae2f -_md5_=b71ba57639dcad2a9c7088215ce87220 +_md5_=6e20880ce92bd33d81ad5e3c99d9f32a diff --git a/metadata/md5-cache/www-client/firefox-40.0.3 b/metadata/md5-cache/www-client/firefox-40.0.3 deleted file mode 100644 index 7cc36f9b6997..000000000000 --- a/metadata/md5-cache/www-client/firefox-40.0.3 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack -DEPEND=>=dev-libs/nss-3.19.2 >=dev-libs/nspr-4.10.8 selinux? ( sec-policy/selinux-mozilla ) pgo? ( >=sys-devel/gcc-4.5 ) amd64? ( >=dev-lang/yasm-1.1 virtual/opengl ) x86? ( >=dev-lang/yasm-1.1 virtual/opengl ) >=sys-apps/sed-4 virtual/pkgconfig || ( >=dev-lang/python-2.7.5-r2:2.7[threads,sqlite] ) app-arch/zip app-arch/unzip >=sys-devel/binutils-2.16.1 >=app-text/hunspell-1.2 dev-libs/atk dev-libs/expat >=dev-libs/libevent-1.4.7 >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.17:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( media-libs/alsa-lib ) pulseaudio? ( media-sound/pulseaudio ) virtual/freedesktop-icon-theme dbus? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=virtual/libffi-3.0.10 gstreamer? ( >=media-libs/gstreamer-1.4.5:1.0 >=media-libs/gst-plugins-base-1.4.5:1.0 >=media-libs/gst-plugins-good-1.4.5:1.0 >=media-plugins/gst-plugins-libav-1.4.5:1.0 ) gstreamer-0? ( >=media-libs/gstreamer-0.10.25:0.10 media-plugins/gst-plugins-meta:0.10[ffmpeg] ) x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt system-cairo? ( >=x11-libs/cairo-1.12[X] >=x11-libs/pixman-0.19.2 ) system-icu? ( >=dev-libs/icu-51.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-sqlite? ( >=dev-db/sqlite-3.8.9:3[secure-delete,debug=] ) system-libvpx? ( >=media-libs/libvpx-1.3.0[postproc] ) wifi? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 net-wireless/wireless-tools ) !=sys-devel/automake-1.15:1.15 ) ~sys-devel/autoconf-2.13 >=sys-devel/libtool-2.4 pgo? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) app-arch/unzip -DESCRIPTION=Firefox Web Browser -EAPI=5 -HOMEPAGE=http://www.mozilla.com/firefox -IUSE=bindist egl hardened +minimal neon pgo selinux +gmp-autoupdate test custom-cflags custom-optimization dbus debug gstreamer gstreamer-0 +jemalloc3 pulseaudio selinux startup-notification system-cairo system-icu system-jpeg system-sqlite system-libvpx wifi +jit pgo linguas_af linguas_ar linguas_as linguas_ast linguas_be linguas_bg linguas_bn_BD linguas_bn_IN linguas_br linguas_bs linguas_ca linguas_cs linguas_cy linguas_da linguas_de linguas_el linguas_en_GB linguas_en_ZA linguas_eo linguas_es_AR linguas_es_CL linguas_es_ES linguas_es_MX linguas_et linguas_eu linguas_fa linguas_fi linguas_fr linguas_fy_NL linguas_ga_IE linguas_gd linguas_gl linguas_gu_IN linguas_he linguas_hi_IN linguas_hr linguas_hu linguas_hy_AM linguas_id linguas_is linguas_it linguas_ja linguas_kk linguas_km linguas_kn linguas_ko linguas_lt linguas_lv linguas_mai linguas_mk linguas_ml linguas_mr linguas_nb_NO linguas_nl linguas_nn_NO linguas_or linguas_pa_IN linguas_pl linguas_pt_BR linguas_pt_PT linguas_rm linguas_ro linguas_ru linguas_si linguas_sk linguas_sl linguas_son linguas_sq linguas_sr linguas_sv_SE linguas_ta linguas_te linguas_th linguas_tr linguas_uk linguas_vi linguas_xh linguas_zh_CN linguas_zh_TW -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=>=dev-libs/nss-3.19.2 >=dev-libs/nspr-4.10.8 selinux? ( sec-policy/selinux-mozilla ) >=app-text/hunspell-1.2 dev-libs/atk dev-libs/expat >=dev-libs/libevent-1.4.7 >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.17:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( media-libs/alsa-lib ) pulseaudio? ( media-sound/pulseaudio ) virtual/freedesktop-icon-theme dbus? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=virtual/libffi-3.0.10 gstreamer? ( >=media-libs/gstreamer-1.4.5:1.0 >=media-libs/gst-plugins-base-1.4.5:1.0 >=media-libs/gst-plugins-good-1.4.5:1.0 >=media-plugins/gst-plugins-libav-1.4.5:1.0 ) gstreamer-0? ( >=media-libs/gstreamer-0.10.25:0.10 media-plugins/gst-plugins-meta:0.10[ffmpeg] ) x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt system-cairo? ( >=x11-libs/cairo-1.12[X] >=x11-libs/pixman-0.19.2 ) system-icu? ( >=dev-libs/icu-51.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-sqlite? ( >=dev-db/sqlite-3.8.9:3[secure-delete,debug=] ) system-libvpx? ( >=media-libs/libvpx-1.3.0[postproc] ) wifi? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 net-wireless/wireless-tools ) selinux? ( sec-policy/selinux-mozilla ) -REQUIRED_USE=?? ( gstreamer gstreamer-0 ) -RESTRICT=!bindist? ( bindist ) -SLOT=0 -SRC_URI=linguas_af? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/af.xpi -> firefox-40.0.3-af.xpi ) linguas_ar? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/ar.xpi -> firefox-40.0.3-ar.xpi ) linguas_as? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/as.xpi -> firefox-40.0.3-as.xpi ) linguas_ast? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/ast.xpi -> firefox-40.0.3-ast.xpi ) linguas_be? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/be.xpi -> firefox-40.0.3-be.xpi ) linguas_bg? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/bg.xpi -> firefox-40.0.3-bg.xpi ) linguas_bn_BD? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/bn-BD.xpi -> firefox-40.0.3-bn-BD.xpi ) linguas_bn_IN? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/bn-IN.xpi -> firefox-40.0.3-bn-IN.xpi ) linguas_br? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/br.xpi -> firefox-40.0.3-br.xpi ) linguas_bs? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/bs.xpi -> firefox-40.0.3-bs.xpi ) linguas_ca? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/ca.xpi -> firefox-40.0.3-ca.xpi ) linguas_cs? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/cs.xpi -> firefox-40.0.3-cs.xpi ) linguas_cy? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/cy.xpi -> firefox-40.0.3-cy.xpi ) linguas_da? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/da.xpi -> firefox-40.0.3-da.xpi ) linguas_de? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/de.xpi -> firefox-40.0.3-de.xpi ) linguas_el? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/el.xpi -> firefox-40.0.3-el.xpi ) linguas_en_GB? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/en-GB.xpi -> firefox-40.0.3-en-GB.xpi ) linguas_en_ZA? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/en-ZA.xpi -> firefox-40.0.3-en-ZA.xpi ) linguas_eo? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/eo.xpi -> firefox-40.0.3-eo.xpi ) linguas_es_AR? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/es-AR.xpi -> firefox-40.0.3-es-AR.xpi ) linguas_es_CL? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/es-CL.xpi -> firefox-40.0.3-es-CL.xpi ) linguas_es_ES? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/es-ES.xpi -> firefox-40.0.3-es-ES.xpi ) linguas_es_MX? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/es-MX.xpi -> firefox-40.0.3-es-MX.xpi ) linguas_et? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/et.xpi -> firefox-40.0.3-et.xpi ) linguas_eu? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/eu.xpi -> firefox-40.0.3-eu.xpi ) linguas_fa? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/fa.xpi -> firefox-40.0.3-fa.xpi ) linguas_fi? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/fi.xpi -> firefox-40.0.3-fi.xpi ) linguas_fr? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/fr.xpi -> firefox-40.0.3-fr.xpi ) linguas_fy_NL? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/fy-NL.xpi -> firefox-40.0.3-fy-NL.xpi ) linguas_ga_IE? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/ga-IE.xpi -> firefox-40.0.3-ga-IE.xpi ) linguas_gd? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/gd.xpi -> firefox-40.0.3-gd.xpi ) linguas_gl? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/gl.xpi -> firefox-40.0.3-gl.xpi ) linguas_gu_IN? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/gu-IN.xpi -> firefox-40.0.3-gu-IN.xpi ) linguas_he? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/he.xpi -> firefox-40.0.3-he.xpi ) linguas_hi_IN? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/hi-IN.xpi -> firefox-40.0.3-hi-IN.xpi ) linguas_hr? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/hr.xpi -> firefox-40.0.3-hr.xpi ) linguas_hu? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/hu.xpi -> firefox-40.0.3-hu.xpi ) linguas_hy_AM? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/hy-AM.xpi -> firefox-40.0.3-hy-AM.xpi ) linguas_id? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/id.xpi -> firefox-40.0.3-id.xpi ) linguas_is? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/is.xpi -> firefox-40.0.3-is.xpi ) linguas_it? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/it.xpi -> firefox-40.0.3-it.xpi ) linguas_ja? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/ja.xpi -> firefox-40.0.3-ja.xpi ) linguas_kk? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/kk.xpi -> firefox-40.0.3-kk.xpi ) linguas_km? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/km.xpi -> firefox-40.0.3-km.xpi ) linguas_kn? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/kn.xpi -> firefox-40.0.3-kn.xpi ) linguas_ko? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/ko.xpi -> firefox-40.0.3-ko.xpi ) linguas_lt? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/lt.xpi -> firefox-40.0.3-lt.xpi ) linguas_lv? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/lv.xpi -> firefox-40.0.3-lv.xpi ) linguas_mai? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/mai.xpi -> firefox-40.0.3-mai.xpi ) linguas_mk? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/mk.xpi -> firefox-40.0.3-mk.xpi ) linguas_ml? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/ml.xpi -> firefox-40.0.3-ml.xpi ) linguas_mr? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/mr.xpi -> firefox-40.0.3-mr.xpi ) linguas_nb_NO? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/nb-NO.xpi -> firefox-40.0.3-nb-NO.xpi ) linguas_nl? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/nl.xpi -> firefox-40.0.3-nl.xpi ) linguas_nn_NO? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/nn-NO.xpi -> firefox-40.0.3-nn-NO.xpi ) linguas_or? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/or.xpi -> firefox-40.0.3-or.xpi ) linguas_pa_IN? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/pa-IN.xpi -> firefox-40.0.3-pa-IN.xpi ) linguas_pl? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/pl.xpi -> firefox-40.0.3-pl.xpi ) linguas_pt_BR? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/pt-BR.xpi -> firefox-40.0.3-pt-BR.xpi ) linguas_pt_PT? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/pt-PT.xpi -> firefox-40.0.3-pt-PT.xpi ) linguas_rm? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/rm.xpi -> firefox-40.0.3-rm.xpi ) linguas_ro? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/ro.xpi -> firefox-40.0.3-ro.xpi ) linguas_ru? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/ru.xpi -> firefox-40.0.3-ru.xpi ) linguas_si? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/si.xpi -> firefox-40.0.3-si.xpi ) linguas_sk? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/sk.xpi -> firefox-40.0.3-sk.xpi ) linguas_sl? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/sl.xpi -> firefox-40.0.3-sl.xpi ) linguas_son? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/son.xpi -> firefox-40.0.3-son.xpi ) linguas_sq? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/sq.xpi -> firefox-40.0.3-sq.xpi ) linguas_sr? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/sr.xpi -> firefox-40.0.3-sr.xpi ) linguas_sv_SE? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/sv-SE.xpi -> firefox-40.0.3-sv-SE.xpi ) linguas_ta? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/ta.xpi -> firefox-40.0.3-ta.xpi ) linguas_te? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/te.xpi -> firefox-40.0.3-te.xpi ) linguas_th? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/th.xpi -> firefox-40.0.3-th.xpi ) linguas_tr? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/tr.xpi -> firefox-40.0.3-tr.xpi ) linguas_uk? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/uk.xpi -> firefox-40.0.3-uk.xpi ) linguas_vi? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/vi.xpi -> firefox-40.0.3-vi.xpi ) linguas_xh? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/xh.xpi -> firefox-40.0.3-xh.xpi ) linguas_zh_CN? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/zh-CN.xpi -> firefox-40.0.3-zh-CN.xpi ) linguas_zh_TW? ( http://archive.mozilla.org/pub/firefox/releases/40.0.3/linux-i686/xpi/zh-TW.xpi -> firefox-40.0.3-zh-TW.xpi ) https://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-40.0-patches-0.01.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-40.0-patches-0.01.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-40.0-patches-0.01.tar.xz http://archive.mozilla.org/pub/firefox/releases/40.0.3/source/firefox-40.0.3.source.tar.bz2 -_eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff check-reqs 4f43fb72bc73bd58d75ec601713fae20 eutils 43da5163ba106e87d22d2e7d6d67537f fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 85dc1eac3c64d8141374490ed64122e5 gnome2-utils 44555579e85afa5c035d2bd5428252da libtool 7f78cd7d403808a350c9ae23f5821fb4 mozconfig-v6.40 c35420249541bb9e0a158a18412ec06e mozcoreconf-v3 4cfc8ce74fdb5f45ec03f00451b2a3ff mozextension 3d8ee4835f89ff39d4666656aa603433 mozlinguas f8b09a9eb2d47862b6df38999a9d6098 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 pax-utils 4f1280c0d4dcd8340f731827007c0a53 python-any-r1 b81ab4852d108e3d9c940fa03bce80e1 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 7d550983f9b6adb3e7091f4090ddae2f -_md5_=b5b986ec5c190712c3fad36b2951a3f4 diff --git a/metadata/md5-cache/www-client/firefox-41.0-r1 b/metadata/md5-cache/www-client/firefox-41.0-r1 index 54087af10d33..78858c9823a4 100644 --- a/metadata/md5-cache/www-client/firefox-41.0-r1 +++ b/metadata/md5-cache/www-client/firefox-41.0-r1 @@ -10,6 +10,6 @@ RDEPEND=>=dev-libs/nss-3.19.2 >=dev-libs/nspr-4.10.8 selinux? ( sec-policy/selin REQUIRED_USE=?? ( gstreamer gstreamer-0 ) RESTRICT=!bindist? ( bindist ) SLOT=0 -SRC_URI=linguas_af? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/af.xpi -> firefox-41.0-af.xpi ) linguas_ar? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/ar.xpi -> firefox-41.0-ar.xpi ) linguas_as? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/as.xpi -> firefox-41.0-as.xpi ) linguas_ast? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/ast.xpi -> firefox-41.0-ast.xpi ) linguas_be? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/be.xpi -> firefox-41.0-be.xpi ) linguas_bg? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/bg.xpi -> firefox-41.0-bg.xpi ) linguas_bn_BD? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/bn-BD.xpi -> firefox-41.0-bn-BD.xpi ) linguas_bn_IN? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/bn-IN.xpi -> firefox-41.0-bn-IN.xpi ) linguas_br? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/br.xpi -> firefox-41.0-br.xpi ) linguas_bs? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/bs.xpi -> firefox-41.0-bs.xpi ) linguas_ca? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/ca.xpi -> firefox-41.0-ca.xpi ) linguas_cs? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/cs.xpi -> firefox-41.0-cs.xpi ) linguas_cy? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/cy.xpi -> firefox-41.0-cy.xpi ) linguas_da? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/da.xpi -> firefox-41.0-da.xpi ) linguas_de? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/de.xpi -> firefox-41.0-de.xpi ) linguas_el? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/el.xpi -> firefox-41.0-el.xpi ) linguas_en_GB? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/en-GB.xpi -> firefox-41.0-en-GB.xpi ) linguas_en_ZA? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/en-ZA.xpi -> firefox-41.0-en-ZA.xpi ) linguas_eo? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/eo.xpi -> firefox-41.0-eo.xpi ) linguas_es_AR? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/es-AR.xpi -> firefox-41.0-es-AR.xpi ) linguas_es_CL? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/es-CL.xpi -> firefox-41.0-es-CL.xpi ) linguas_es_ES? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/es-ES.xpi -> firefox-41.0-es-ES.xpi ) linguas_es_MX? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/es-MX.xpi -> firefox-41.0-es-MX.xpi ) linguas_et? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/et.xpi -> firefox-41.0-et.xpi ) linguas_eu? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/eu.xpi -> firefox-41.0-eu.xpi ) linguas_fa? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/fa.xpi -> firefox-41.0-fa.xpi ) linguas_fi? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/fi.xpi -> firefox-41.0-fi.xpi ) linguas_fr? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/fr.xpi -> firefox-41.0-fr.xpi ) linguas_fy_NL? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/fy-NL.xpi -> firefox-41.0-fy-NL.xpi ) linguas_ga_IE? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/ga-IE.xpi -> firefox-41.0-ga-IE.xpi ) linguas_gd? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/gd.xpi -> firefox-41.0-gd.xpi ) linguas_gl? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/gl.xpi -> firefox-41.0-gl.xpi ) linguas_gu_IN? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/gu-IN.xpi -> firefox-41.0-gu-IN.xpi ) linguas_he? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/he.xpi -> firefox-41.0-he.xpi ) linguas_hi_IN? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/hi-IN.xpi -> firefox-41.0-hi-IN.xpi ) linguas_hr? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/hr.xpi -> firefox-41.0-hr.xpi ) linguas_hu? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/hu.xpi -> firefox-41.0-hu.xpi ) linguas_hy_AM? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/hy-AM.xpi -> firefox-41.0-hy-AM.xpi ) linguas_id? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/id.xpi -> firefox-41.0-id.xpi ) linguas_is? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/is.xpi -> firefox-41.0-is.xpi ) linguas_it? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/it.xpi -> firefox-41.0-it.xpi ) linguas_ja? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/ja.xpi -> firefox-41.0-ja.xpi ) linguas_kk? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/kk.xpi -> firefox-41.0-kk.xpi ) linguas_km? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/km.xpi -> firefox-41.0-km.xpi ) linguas_kn? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/kn.xpi -> firefox-41.0-kn.xpi ) linguas_ko? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/ko.xpi -> firefox-41.0-ko.xpi ) linguas_lt? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/lt.xpi -> firefox-41.0-lt.xpi ) linguas_lv? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/lv.xpi -> firefox-41.0-lv.xpi ) linguas_mai? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/mai.xpi -> firefox-41.0-mai.xpi ) linguas_mk? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/mk.xpi -> firefox-41.0-mk.xpi ) linguas_ml? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/ml.xpi -> firefox-41.0-ml.xpi ) linguas_mr? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/mr.xpi -> firefox-41.0-mr.xpi ) linguas_nb_NO? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/nb-NO.xpi -> firefox-41.0-nb-NO.xpi ) linguas_nl? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/nl.xpi -> firefox-41.0-nl.xpi ) linguas_nn_NO? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/nn-NO.xpi -> firefox-41.0-nn-NO.xpi ) linguas_or? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/or.xpi -> firefox-41.0-or.xpi ) linguas_pa_IN? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/pa-IN.xpi -> firefox-41.0-pa-IN.xpi ) linguas_pl? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/pl.xpi -> firefox-41.0-pl.xpi ) linguas_pt_BR? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/pt-BR.xpi -> firefox-41.0-pt-BR.xpi ) linguas_pt_PT? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/pt-PT.xpi -> firefox-41.0-pt-PT.xpi ) linguas_rm? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/rm.xpi -> firefox-41.0-rm.xpi ) linguas_ro? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/ro.xpi -> firefox-41.0-ro.xpi ) linguas_ru? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/ru.xpi -> firefox-41.0-ru.xpi ) linguas_si? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/si.xpi -> firefox-41.0-si.xpi ) linguas_sk? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/sk.xpi -> firefox-41.0-sk.xpi ) linguas_sl? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/sl.xpi -> firefox-41.0-sl.xpi ) linguas_son? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/son.xpi -> firefox-41.0-son.xpi ) linguas_sq? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/sq.xpi -> firefox-41.0-sq.xpi ) linguas_sr? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/sr.xpi -> firefox-41.0-sr.xpi ) linguas_sv_SE? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/sv-SE.xpi -> firefox-41.0-sv-SE.xpi ) linguas_ta? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/ta.xpi -> firefox-41.0-ta.xpi ) linguas_te? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/te.xpi -> firefox-41.0-te.xpi ) linguas_th? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/th.xpi -> firefox-41.0-th.xpi ) linguas_tr? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/tr.xpi -> firefox-41.0-tr.xpi ) linguas_uk? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/uk.xpi -> firefox-41.0-uk.xpi ) linguas_vi? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/vi.xpi -> firefox-41.0-vi.xpi ) linguas_xh? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/xh.xpi -> firefox-41.0-xh.xpi ) linguas_zh_CN? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/zh-CN.xpi -> firefox-41.0-zh-CN.xpi ) linguas_zh_TW? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/zh-TW.xpi -> firefox-41.0-zh-TW.xpi ) https://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-40.0-patches-0.01.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-40.0-patches-0.01.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-40.0-patches-0.01.tar.xz http://archive.mozilla.org/pub/firefox/releases/41.0/source/firefox-41.0.source.tar.xz +SRC_URI=linguas_af? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/af.xpi -> firefox-41.0-af.xpi ) linguas_ar? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/ar.xpi -> firefox-41.0-ar.xpi ) linguas_as? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/as.xpi -> firefox-41.0-as.xpi ) linguas_ast? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/ast.xpi -> firefox-41.0-ast.xpi ) linguas_be? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/be.xpi -> firefox-41.0-be.xpi ) linguas_bg? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/bg.xpi -> firefox-41.0-bg.xpi ) linguas_bn_BD? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/bn-BD.xpi -> firefox-41.0-bn-BD.xpi ) linguas_bn_IN? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/bn-IN.xpi -> firefox-41.0-bn-IN.xpi ) linguas_br? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/br.xpi -> firefox-41.0-br.xpi ) linguas_bs? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/bs.xpi -> firefox-41.0-bs.xpi ) linguas_ca? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/ca.xpi -> firefox-41.0-ca.xpi ) linguas_cs? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/cs.xpi -> firefox-41.0-cs.xpi ) linguas_cy? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/cy.xpi -> firefox-41.0-cy.xpi ) linguas_da? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/da.xpi -> firefox-41.0-da.xpi ) linguas_de? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/de.xpi -> firefox-41.0-de.xpi ) linguas_el? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/el.xpi -> firefox-41.0-el.xpi ) linguas_en_GB? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/en-GB.xpi -> firefox-41.0-en-GB.xpi ) linguas_en_ZA? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/en-ZA.xpi -> firefox-41.0-en-ZA.xpi ) linguas_eo? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/eo.xpi -> firefox-41.0-eo.xpi ) linguas_es_AR? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/es-AR.xpi -> firefox-41.0-es-AR.xpi ) linguas_es_CL? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/es-CL.xpi -> firefox-41.0-es-CL.xpi ) linguas_es_ES? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/es-ES.xpi -> firefox-41.0-es-ES.xpi ) linguas_es_MX? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/es-MX.xpi -> firefox-41.0-es-MX.xpi ) linguas_et? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/et.xpi -> firefox-41.0-et.xpi ) linguas_eu? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/eu.xpi -> firefox-41.0-eu.xpi ) linguas_fa? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/fa.xpi -> firefox-41.0-fa.xpi ) linguas_fi? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/fi.xpi -> firefox-41.0-fi.xpi ) linguas_fr? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/fr.xpi -> firefox-41.0-fr.xpi ) linguas_fy_NL? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/fy-NL.xpi -> firefox-41.0-fy-NL.xpi ) linguas_ga_IE? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/ga-IE.xpi -> firefox-41.0-ga-IE.xpi ) linguas_gd? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/gd.xpi -> firefox-41.0-gd.xpi ) linguas_gl? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/gl.xpi -> firefox-41.0-gl.xpi ) linguas_gu_IN? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/gu-IN.xpi -> firefox-41.0-gu-IN.xpi ) linguas_he? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/he.xpi -> firefox-41.0-he.xpi ) linguas_hi_IN? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/hi-IN.xpi -> firefox-41.0-hi-IN.xpi ) linguas_hr? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/hr.xpi -> firefox-41.0-hr.xpi ) linguas_hu? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/hu.xpi -> firefox-41.0-hu.xpi ) linguas_hy_AM? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/hy-AM.xpi -> firefox-41.0-hy-AM.xpi ) linguas_id? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/id.xpi -> firefox-41.0-id.xpi ) linguas_is? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/is.xpi -> firefox-41.0-is.xpi ) linguas_it? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/it.xpi -> firefox-41.0-it.xpi ) linguas_ja? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/ja.xpi -> firefox-41.0-ja.xpi ) linguas_kk? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/kk.xpi -> firefox-41.0-kk.xpi ) linguas_km? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/km.xpi -> firefox-41.0-km.xpi ) linguas_kn? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/kn.xpi -> firefox-41.0-kn.xpi ) linguas_ko? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/ko.xpi -> firefox-41.0-ko.xpi ) linguas_lt? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/lt.xpi -> firefox-41.0-lt.xpi ) linguas_lv? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/lv.xpi -> firefox-41.0-lv.xpi ) linguas_mai? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/mai.xpi -> firefox-41.0-mai.xpi ) linguas_mk? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/mk.xpi -> firefox-41.0-mk.xpi ) linguas_ml? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/ml.xpi -> firefox-41.0-ml.xpi ) linguas_mr? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/mr.xpi -> firefox-41.0-mr.xpi ) linguas_nb_NO? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/nb-NO.xpi -> firefox-41.0-nb-NO.xpi ) linguas_nl? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/nl.xpi -> firefox-41.0-nl.xpi ) linguas_nn_NO? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/nn-NO.xpi -> firefox-41.0-nn-NO.xpi ) linguas_or? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/or.xpi -> firefox-41.0-or.xpi ) linguas_pa_IN? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/pa-IN.xpi -> firefox-41.0-pa-IN.xpi ) linguas_pl? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/pl.xpi -> firefox-41.0-pl.xpi ) linguas_pt_BR? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/pt-BR.xpi -> firefox-41.0-pt-BR.xpi ) linguas_pt_PT? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/pt-PT.xpi -> firefox-41.0-pt-PT.xpi ) linguas_rm? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/rm.xpi -> firefox-41.0-rm.xpi ) linguas_ro? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/ro.xpi -> firefox-41.0-ro.xpi ) linguas_ru? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/ru.xpi -> firefox-41.0-ru.xpi ) linguas_si? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/si.xpi -> firefox-41.0-si.xpi ) linguas_sk? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/sk.xpi -> firefox-41.0-sk.xpi ) linguas_sl? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/sl.xpi -> firefox-41.0-sl.xpi ) linguas_son? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/son.xpi -> firefox-41.0-son.xpi ) linguas_sq? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/sq.xpi -> firefox-41.0-sq.xpi ) linguas_sr? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/sr.xpi -> firefox-41.0-sr.xpi ) linguas_sv_SE? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/sv-SE.xpi -> firefox-41.0-sv-SE.xpi ) linguas_ta? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/ta.xpi -> firefox-41.0-ta.xpi ) linguas_te? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/te.xpi -> firefox-41.0-te.xpi ) linguas_th? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/th.xpi -> firefox-41.0-th.xpi ) linguas_tr? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/tr.xpi -> firefox-41.0-tr.xpi ) linguas_uk? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/uk.xpi -> firefox-41.0-uk.xpi ) linguas_vi? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/vi.xpi -> firefox-41.0-vi.xpi ) linguas_xh? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/xh.xpi -> firefox-41.0-xh.xpi ) linguas_zh_CN? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/zh-CN.xpi -> firefox-41.0-zh-CN.xpi ) linguas_zh_TW? ( http://archive.mozilla.org/pub/firefox/releases/41.0/linux-i686/xpi/zh-TW.xpi -> firefox-41.0-zh-TW.xpi ) https://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-41.0-patches-01.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-41.0-patches-01.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-41.0-patches-01.tar.xz http://archive.mozilla.org/pub/firefox/releases/41.0/source/firefox-41.0.source.tar.xz _eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff check-reqs 4f43fb72bc73bd58d75ec601713fae20 eutils 43da5163ba106e87d22d2e7d6d67537f fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 85dc1eac3c64d8141374490ed64122e5 gnome2-utils 44555579e85afa5c035d2bd5428252da libtool 7f78cd7d403808a350c9ae23f5821fb4 mozconfig-v6.41 2b54256e4cedaa334cd9577bdd393e20 mozcoreconf-v3 4cfc8ce74fdb5f45ec03f00451b2a3ff mozextension 3d8ee4835f89ff39d4666656aa603433 mozlinguas f8b09a9eb2d47862b6df38999a9d6098 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 pax-utils 4f1280c0d4dcd8340f731827007c0a53 python-any-r1 b81ab4852d108e3d9c940fa03bce80e1 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 7d550983f9b6adb3e7091f4090ddae2f -_md5_=52db8ebf31906b242241fa8eb54c27c4 +_md5_=2ae8de31278a4f3bbf67dab49651c3a7 diff --git a/metadata/md5-cache/www-client/google-chrome-unstable-47.0.2522.1_p1 b/metadata/md5-cache/www-client/google-chrome-unstable-47.0.2526.6_p1 similarity index 94% rename from metadata/md5-cache/www-client/google-chrome-unstable-47.0.2522.1_p1 rename to metadata/md5-cache/www-client/google-chrome-unstable-47.0.2526.6_p1 index 78ba14311122..00f2399b3811 100644 --- a/metadata/md5-cache/www-client/google-chrome-unstable-47.0.2522.1_p1 +++ b/metadata/md5-cache/www-client/google-chrome-unstable-47.0.2526.6_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-unstable/google-chrome-unstable_47.0.2522.1-1_amd64.deb ) x86? ( https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_47.0.2522.1-1_i386.deb ) +SRC_URI=amd64? ( https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_47.0.2526.6-1_amd64.deb ) x86? ( https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_47.0.2526.6-1_i386.deb ) _eclasses_=chromium f828dac97fd266c59459737299f9659d eutils 43da5163ba106e87d22d2e7d6d67537f fdo-mime 92d07846ea8ea54172f8c0112a47ae3d gnome2-utils 44555579e85afa5c035d2bd5428252da linux-info 8f92e5ac1a1da684c5450b1b21a1f56a multilib df4e4d5cfd3d137d0c248e1991c0e4d6 pax-utils 4f1280c0d4dcd8340f731827007c0a53 readme.gentoo e37aea783a61ae55fab947df247eebea toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d unpacker 1d149d9bda7723e740cfd28118f27813 versionator 99ae9d758cbe7cfed19170e7d48f5a9c _md5_=5c4388fc61a8148ed88ba7cfc0dac913 diff --git a/metadata/md5-cache/www-client/seamonkey-2.35 b/metadata/md5-cache/www-client/seamonkey-2.35 index 08122913427e..0741991e5d30 100644 --- a/metadata/md5-cache/www-client/seamonkey-2.35 +++ b/metadata/md5-cache/www-client/seamonkey-2.35 @@ -9,6 +9,6 @@ LICENSE=MPL-2.0 GPL-2 LGPL-2.1 RDEPEND=>=dev-libs/nss-3.19.2 >=dev-libs/nspr-4.10.8 crypt? ( || ( ( >=app-crypt/gnupg-2.0 || ( app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] ) ) =app-crypt/gnupg-1.4* ) ) >=app-text/hunspell-1.2 dev-libs/atk dev-libs/expat >=dev-libs/libevent-1.4.7 >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.16:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( media-libs/alsa-lib ) pulseaudio? ( media-sound/pulseaudio ) virtual/freedesktop-icon-theme dbus? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=virtual/libffi-3.0.10 gstreamer? ( >=media-libs/gstreamer-1.4.5:1.0 >=media-libs/gst-plugins-base-1.4.5:1.0 >=media-libs/gst-plugins-good-1.4.5:1.0 >=media-plugins/gst-plugins-libav-1.4.5:1.0 ) gstreamer-0? ( >=media-libs/gstreamer-0.10.25:0.10 media-plugins/gst-plugins-meta:0.10[ffmpeg] ) x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt system-cairo? ( >=x11-libs/cairo-1.12[X] >=x11-libs/pixman-0.19.2 ) system-icu? ( >=dev-libs/icu-51.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-sqlite? ( >=dev-db/sqlite-3.8.9:3[secure-delete,debug=] ) system-libvpx? ( >=media-libs/libvpx-1.3.0[postproc] ) wifi? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 net-wireless/wireless-tools ) selinux? ( sec-policy/selinux-mozilla ) REQUIRED_USE=?? ( gstreamer gstreamer-0 ) SLOT=0 -SRC_URI=linguas_be? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.be.langpack.xpi -> seamonkey-2.35-be.xpi ) linguas_ca? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.ca.langpack.xpi -> seamonkey-2.35-ca.xpi ) linguas_cs? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.cs.langpack.xpi -> seamonkey-2.35-cs.xpi ) linguas_de? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.de.langpack.xpi -> seamonkey-2.35-de.xpi ) linguas_en_GB? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.en-GB.langpack.xpi -> seamonkey-2.35-en-GB.xpi ) linguas_es_AR? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.es-AR.langpack.xpi -> seamonkey-2.35-es-AR.xpi ) linguas_es_ES? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.es-ES.langpack.xpi -> seamonkey-2.35-es-ES.xpi ) linguas_fi? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.fi.langpack.xpi -> seamonkey-2.35-fi.xpi ) linguas_fr? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.fr.langpack.xpi -> seamonkey-2.35-fr.xpi ) linguas_gl? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.gl.langpack.xpi -> seamonkey-2.35-gl.xpi ) linguas_hu? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.hu.langpack.xpi -> seamonkey-2.35-hu.xpi ) linguas_it? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.it.langpack.xpi -> seamonkey-2.35-it.xpi ) linguas_ja? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.ja.langpack.xpi -> seamonkey-2.35-ja.xpi ) linguas_lt? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.lt.langpack.xpi -> seamonkey-2.35-lt.xpi ) linguas_nb_NO? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.nb-NO.langpack.xpi -> seamonkey-2.35-nb-NO.xpi ) linguas_nl? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.nl.langpack.xpi -> seamonkey-2.35-nl.xpi ) linguas_pl? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.pl.langpack.xpi -> seamonkey-2.35-pl.xpi ) linguas_pt_PT? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.pt-PT.langpack.xpi -> seamonkey-2.35-pt-PT.xpi ) linguas_ru? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.ru.langpack.xpi -> seamonkey-2.35-ru.xpi ) linguas_sk? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.sk.langpack.xpi -> seamonkey-2.35-sk.xpi ) linguas_sv_SE? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.sv-SE.langpack.xpi -> seamonkey-2.35-sv-SE.xpi ) linguas_tr? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.tr.langpack.xpi -> seamonkey-2.35-tr.xpi ) linguas_uk? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.uk.langpack.xpi -> seamonkey-2.35-uk.xpi ) linguas_zh_CN? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.zh-CN.langpack.xpi -> seamonkey-2.35-zh-CN.xpi ) linguas_zh_TW? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.zh-TW.langpack.xpi -> seamonkey-2.35-zh-TW.xpi ) https://archive.mozilla.org/pub/seamonkey/releases/2.35/source/seamonkey-2.35.source.tar.bz2 -> seamonkey-2.35.source.tar.bz2 https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-38.0-patches-0.3.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/seamonkey-2.33-patches-01.tar.xz crypt? ( https://www.enigmail.net/download/source/enigmail-1.8.2.tar.gz ) +SRC_URI=linguas_be? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.be.langpack.xpi -> seamonkey-2.35-be.xpi ) linguas_ca? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.ca.langpack.xpi -> seamonkey-2.35-ca.xpi ) linguas_cs? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.cs.langpack.xpi -> seamonkey-2.35-cs.xpi ) linguas_de? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.de.langpack.xpi -> seamonkey-2.35-de.xpi ) linguas_en_GB? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.en-GB.langpack.xpi -> seamonkey-2.35-en-GB.xpi ) linguas_es_AR? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.es-AR.langpack.xpi -> seamonkey-2.35-es-AR.xpi ) linguas_es_ES? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.es-ES.langpack.xpi -> seamonkey-2.35-es-ES.xpi ) linguas_fi? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.fi.langpack.xpi -> seamonkey-2.35-fi.xpi ) linguas_fr? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.fr.langpack.xpi -> seamonkey-2.35-fr.xpi ) linguas_gl? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.gl.langpack.xpi -> seamonkey-2.35-gl.xpi ) linguas_hu? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.hu.langpack.xpi -> seamonkey-2.35-hu.xpi ) linguas_it? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.it.langpack.xpi -> seamonkey-2.35-it.xpi ) linguas_ja? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.ja.langpack.xpi -> seamonkey-2.35-ja.xpi ) linguas_lt? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.lt.langpack.xpi -> seamonkey-2.35-lt.xpi ) linguas_nb_NO? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.nb-NO.langpack.xpi -> seamonkey-2.35-nb-NO.xpi ) linguas_nl? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.nl.langpack.xpi -> seamonkey-2.35-nl.xpi ) linguas_pl? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.pl.langpack.xpi -> seamonkey-2.35-pl.xpi ) linguas_pt_PT? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.pt-PT.langpack.xpi -> seamonkey-2.35-pt-PT.xpi ) linguas_ru? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.ru.langpack.xpi -> seamonkey-2.35-ru.xpi ) linguas_sk? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.sk.langpack.xpi -> seamonkey-2.35-sk.xpi ) linguas_sv_SE? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.sv-SE.langpack.xpi -> seamonkey-2.35-sv-SE.xpi ) linguas_tr? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.tr.langpack.xpi -> seamonkey-2.35-tr.xpi ) linguas_uk? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.uk.langpack.xpi -> seamonkey-2.35-uk.xpi ) linguas_zh_CN? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.zh-CN.langpack.xpi -> seamonkey-2.35-zh-CN.xpi ) linguas_zh_TW? ( https://archive.mozilla.org/pub/seamonkey/releases/2.35/langpack/seamonkey-2.35.zh-TW.langpack.xpi -> seamonkey-2.35-zh-TW.xpi ) https://archive.mozilla.org/pub/seamonkey/releases/2.35/source/seamonkey-2.35.source.tar.bz2 -> seamonkey-2.35.source.tar.bz2 https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-38.0-patches-04.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/seamonkey-2.33-patches-01.tar.xz crypt? ( https://www.enigmail.net/download/source/enigmail-1.8.2.tar.gz ) _eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff check-reqs 4f43fb72bc73bd58d75ec601713fae20 eutils 43da5163ba106e87d22d2e7d6d67537f fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 85dc1eac3c64d8141374490ed64122e5 libtool 7f78cd7d403808a350c9ae23f5821fb4 mozconfig-v6.39 760157cb3acc0c584f7aef707c211fa5 mozcoreconf-v3 4cfc8ce74fdb5f45ec03f00451b2a3ff mozextension 3d8ee4835f89ff39d4666656aa603433 mozlinguas f8b09a9eb2d47862b6df38999a9d6098 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 nsplugins bf5bfcef1d2f0adad7e6230455df8e91 pax-utils 4f1280c0d4dcd8340f731827007c0a53 python-any-r1 b81ab4852d108e3d9c940fa03bce80e1 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=4ee7642935bbfe56533d8cb1405c0901 +_md5_=df908416fe5b97eaa81f77e0af88610b diff --git a/metadata/md5-cache/www-client/seamonkey-2.38 b/metadata/md5-cache/www-client/seamonkey-2.38 index dfddaa042948..22c2f89e3614 100644 --- a/metadata/md5-cache/www-client/seamonkey-2.38 +++ b/metadata/md5-cache/www-client/seamonkey-2.38 @@ -9,6 +9,6 @@ LICENSE=MPL-2.0 GPL-2 LGPL-2.1 RDEPEND=>=dev-libs/nss-3.19.2 >=dev-libs/nspr-4.10.8 crypt? ( || ( ( >=app-crypt/gnupg-2.0 || ( app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] ) ) =app-crypt/gnupg-1.4* ) ) >=app-text/hunspell-1.2 dev-libs/atk dev-libs/expat >=dev-libs/libevent-1.4.7 >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.17:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( media-libs/alsa-lib ) pulseaudio? ( media-sound/pulseaudio ) virtual/freedesktop-icon-theme dbus? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=virtual/libffi-3.0.10 gstreamer? ( >=media-libs/gstreamer-1.4.5:1.0 >=media-libs/gst-plugins-base-1.4.5:1.0 >=media-libs/gst-plugins-good-1.4.5:1.0 >=media-plugins/gst-plugins-libav-1.4.5:1.0 ) gstreamer-0? ( >=media-libs/gstreamer-0.10.25:0.10 media-plugins/gst-plugins-meta:0.10[ffmpeg] ) x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt system-cairo? ( >=x11-libs/cairo-1.12[X] >=x11-libs/pixman-0.19.2 ) system-icu? ( >=dev-libs/icu-51.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-sqlite? ( >=dev-db/sqlite-3.8.10.1:3[secure-delete,debug=] ) system-libvpx? ( >=media-libs/libvpx-1.3.0[postproc] ) wifi? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 net-wireless/wireless-tools ) selinux? ( sec-policy/selinux-mozilla ) REQUIRED_USE=?? ( gstreamer gstreamer-0 ) SLOT=0 -SRC_URI=linguas_be? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.be.langpack.xpi -> seamonkey-2.38-be.xpi ) linguas_ca? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.ca.langpack.xpi -> seamonkey-2.38-ca.xpi ) linguas_cs? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.cs.langpack.xpi -> seamonkey-2.38-cs.xpi ) linguas_de? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.de.langpack.xpi -> seamonkey-2.38-de.xpi ) linguas_en_GB? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.en-GB.langpack.xpi -> seamonkey-2.38-en-GB.xpi ) linguas_es_AR? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.es-AR.langpack.xpi -> seamonkey-2.38-es-AR.xpi ) linguas_es_ES? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.es-ES.langpack.xpi -> seamonkey-2.38-es-ES.xpi ) linguas_fi? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.fi.langpack.xpi -> seamonkey-2.38-fi.xpi ) linguas_fr? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.fr.langpack.xpi -> seamonkey-2.38-fr.xpi ) linguas_gl? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.gl.langpack.xpi -> seamonkey-2.38-gl.xpi ) linguas_hu? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.hu.langpack.xpi -> seamonkey-2.38-hu.xpi ) linguas_it? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.it.langpack.xpi -> seamonkey-2.38-it.xpi ) linguas_ja? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.ja.langpack.xpi -> seamonkey-2.38-ja.xpi ) linguas_lt? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.lt.langpack.xpi -> seamonkey-2.38-lt.xpi ) linguas_nb_NO? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.nb-NO.langpack.xpi -> seamonkey-2.38-nb-NO.xpi ) linguas_nl? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.nl.langpack.xpi -> seamonkey-2.38-nl.xpi ) linguas_pl? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.pl.langpack.xpi -> seamonkey-2.38-pl.xpi ) linguas_pt_PT? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.pt-PT.langpack.xpi -> seamonkey-2.38-pt-PT.xpi ) linguas_ru? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.ru.langpack.xpi -> seamonkey-2.38-ru.xpi ) linguas_sk? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.sk.langpack.xpi -> seamonkey-2.38-sk.xpi ) linguas_sv_SE? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.sv-SE.langpack.xpi -> seamonkey-2.38-sv-SE.xpi ) linguas_tr? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.tr.langpack.xpi -> seamonkey-2.38-tr.xpi ) linguas_uk? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.uk.langpack.xpi -> seamonkey-2.38-uk.xpi ) linguas_zh_CN? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.zh-CN.langpack.xpi -> seamonkey-2.38-zh-CN.xpi ) linguas_zh_TW? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.zh-TW.langpack.xpi -> seamonkey-2.38-zh-TW.xpi ) https://archive.mozilla.org/pub/seamonkey/releases/2.38/source/seamonkey-2.38.source.tar.xz -> seamonkey-2.38.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-40.0-patches-0.01.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/seamonkey-2.33-patches-01.tar.xz crypt? ( https://www.enigmail.net/download/source/enigmail-1.8.2.tar.gz ) +SRC_URI=linguas_be? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.be.langpack.xpi -> seamonkey-2.38-be.xpi ) linguas_ca? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.ca.langpack.xpi -> seamonkey-2.38-ca.xpi ) linguas_cs? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.cs.langpack.xpi -> seamonkey-2.38-cs.xpi ) linguas_de? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.de.langpack.xpi -> seamonkey-2.38-de.xpi ) linguas_en_GB? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.en-GB.langpack.xpi -> seamonkey-2.38-en-GB.xpi ) linguas_es_AR? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.es-AR.langpack.xpi -> seamonkey-2.38-es-AR.xpi ) linguas_es_ES? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.es-ES.langpack.xpi -> seamonkey-2.38-es-ES.xpi ) linguas_fi? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.fi.langpack.xpi -> seamonkey-2.38-fi.xpi ) linguas_fr? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.fr.langpack.xpi -> seamonkey-2.38-fr.xpi ) linguas_gl? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.gl.langpack.xpi -> seamonkey-2.38-gl.xpi ) linguas_hu? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.hu.langpack.xpi -> seamonkey-2.38-hu.xpi ) linguas_it? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.it.langpack.xpi -> seamonkey-2.38-it.xpi ) linguas_ja? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.ja.langpack.xpi -> seamonkey-2.38-ja.xpi ) linguas_lt? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.lt.langpack.xpi -> seamonkey-2.38-lt.xpi ) linguas_nb_NO? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.nb-NO.langpack.xpi -> seamonkey-2.38-nb-NO.xpi ) linguas_nl? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.nl.langpack.xpi -> seamonkey-2.38-nl.xpi ) linguas_pl? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.pl.langpack.xpi -> seamonkey-2.38-pl.xpi ) linguas_pt_PT? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.pt-PT.langpack.xpi -> seamonkey-2.38-pt-PT.xpi ) linguas_ru? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.ru.langpack.xpi -> seamonkey-2.38-ru.xpi ) linguas_sk? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.sk.langpack.xpi -> seamonkey-2.38-sk.xpi ) linguas_sv_SE? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.sv-SE.langpack.xpi -> seamonkey-2.38-sv-SE.xpi ) linguas_tr? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.tr.langpack.xpi -> seamonkey-2.38-tr.xpi ) linguas_uk? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.uk.langpack.xpi -> seamonkey-2.38-uk.xpi ) linguas_zh_CN? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.zh-CN.langpack.xpi -> seamonkey-2.38-zh-CN.xpi ) linguas_zh_TW? ( https://archive.mozilla.org/pub/seamonkey/releases/2.38/langpack/seamonkey-2.38.zh-TW.langpack.xpi -> seamonkey-2.38-zh-TW.xpi ) https://archive.mozilla.org/pub/seamonkey/releases/2.38/source/seamonkey-2.38.source.tar.xz -> seamonkey-2.38.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-41.0-patches-01.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/seamonkey-2.33-patches-01.tar.xz crypt? ( https://www.enigmail.net/download/source/enigmail-1.8.2.tar.gz ) _eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff check-reqs 4f43fb72bc73bd58d75ec601713fae20 eutils 43da5163ba106e87d22d2e7d6d67537f fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 85dc1eac3c64d8141374490ed64122e5 libtool 7f78cd7d403808a350c9ae23f5821fb4 mozconfig-v6.41 2b54256e4cedaa334cd9577bdd393e20 mozcoreconf-v3 4cfc8ce74fdb5f45ec03f00451b2a3ff mozextension 3d8ee4835f89ff39d4666656aa603433 mozlinguas f8b09a9eb2d47862b6df38999a9d6098 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 nsplugins bf5bfcef1d2f0adad7e6230455df8e91 pax-utils 4f1280c0d4dcd8340f731827007c0a53 python-any-r1 b81ab4852d108e3d9c940fa03bce80e1 python-utils-r1 006fb3ff3b8a9aa58f251f2312836cdf toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=5fd3c342cc54f3ccc64500309e3b103b +_md5_=18f9a14006b1f594d9a3a099a2ee35b7 diff --git a/metadata/md5-cache/www-plugins/chrome-binary-plugins-47.0.2522.1_alpha1 b/metadata/md5-cache/www-plugins/chrome-binary-plugins-47.0.2526.6_alpha1 similarity index 84% rename from metadata/md5-cache/www-plugins/chrome-binary-plugins-47.0.2522.1_alpha1 rename to metadata/md5-cache/www-plugins/chrome-binary-plugins-47.0.2526.6_alpha1 index 9252a967b7d1..5c2503aed0a9 100644 --- a/metadata/md5-cache/www-plugins/chrome-binary-plugins-47.0.2522.1_alpha1 +++ b/metadata/md5-cache/www-plugins/chrome-binary-plugins-47.0.2526.6_alpha1 @@ -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:stable RESTRICT=bindist mirror strip SLOT=unstable -SRC_URI=amd64? ( https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_47.0.2522.1-1_amd64.deb ) x86? ( https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_47.0.2522.1-1_i386.deb ) +SRC_URI=amd64? ( https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_47.0.2526.6-1_amd64.deb ) x86? ( https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_47.0.2526.6-1_i386.deb ) _eclasses_=multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d unpacker 1d149d9bda7723e740cfd28118f27813 _md5_=a298ad95eeea170c424be0b43ae88a8b diff --git a/metadata/md5-cache/x11-libs/fltk-1.3.3-r3 b/metadata/md5-cache/x11-libs/fltk-1.3.3-r3 index 2781736ab36d..71e1d125361b 100644 --- a/metadata/md5-cache/x11-libs/fltk-1.3.3-r3 +++ b/metadata/md5-cache/x11-libs/fltk-1.3.3-r3 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test -DEPEND=>=media-libs/libpng-1.2:0 virtual/jpeg:0 sys-libs/zlib x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt cairo? ( x11-libs/cairo ) opengl? ( virtual/opengl ) xinerama? ( x11-libs/libXinerama ) xft? ( x11-libs/libXft ) x11-proto/xextproto doc? ( app-doc/doxygen pdf? ( dev-texlive/texlive-fontutils dev-texlive/texlive-latex dev-texlive/texlive-latexextra ) ) xinerama? ( x11-proto/xineramaproto ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEPEND=>=media-libs/libpng-1.2:0 virtual/jpeg:0 sys-libs/zlib x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt cairo? ( x11-libs/cairo ) opengl? ( virtual/opengl ) xinerama? ( x11-libs/libXinerama ) xft? ( x11-libs/libXft ) x11-proto/xextproto doc? ( app-doc/doxygen ) xinerama? ( x11-proto/xineramaproto ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DESCRIPTION=C++ user interface toolkit for X and OpenGL EAPI=5 HOMEPAGE=http://www.fltk.org/ -IUSE=cairo debug doc examples games +opengl pdf static-libs +threads +xft +xinerama +IUSE=cairo debug doc examples games +opengl static-libs +threads +xft +xinerama KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos LICENSE=FLTK LGPL-2 RDEPEND=>=media-libs/libpng-1.2:0 virtual/jpeg:0 sys-libs/zlib x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt cairo? ( x11-libs/cairo ) opengl? ( virtual/opengl ) xinerama? ( x11-libs/libXinerama ) xft? ( x11-libs/libXft ) SLOT=1 SRC_URI=http://fltk.org/pub/fltk/1.3.3/fltk-1.3.3-source.tar.gz _eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff eutils 43da5163ba106e87d22d2e7d6d67537f fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 85dc1eac3c64d8141374490ed64122e5 libtool 7f78cd7d403808a350c9ae23f5821fb4 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=5e630c75c53309eb85bcb251bbb5c573 +_md5_=8fe75099d6ed510ee4279497be8b97bf diff --git a/metadata/md5-cache/x11-libs/fltk-1.3.9999 b/metadata/md5-cache/x11-libs/fltk-1.3.9999 index 03c6d810a482..339fa40ac6b9 100644 --- a/metadata/md5-cache/x11-libs/fltk-1.3.9999 +++ b/metadata/md5-cache/x11-libs/fltk-1.3.9999 @@ -1,11 +1,11 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare test unpack -DEPEND=>=media-libs/libpng-1.2:0 virtual/jpeg:0 sys-libs/zlib x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt cairo? ( x11-libs/cairo ) opengl? ( virtual/opengl ) xinerama? ( x11-libs/libXinerama ) xft? ( x11-libs/libXft ) x11-proto/xextproto doc? ( app-doc/doxygen pdf? ( dev-texlive/texlive-fontutils dev-texlive/texlive-latex dev-texlive/texlive-latexextra ) ) xinerama? ( x11-proto/xineramaproto ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 || ( dev-vcs/subversion[http] dev-vcs/subversion[webdav-neon] dev-vcs/subversion[webdav-serf] ) net-misc/rsync +DEPEND=>=media-libs/libpng-1.2:0 virtual/jpeg:0 sys-libs/zlib x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt cairo? ( x11-libs/cairo ) opengl? ( virtual/opengl ) xinerama? ( x11-libs/libXinerama ) xft? ( x11-libs/libXft ) x11-proto/xextproto doc? ( app-doc/doxygen ) xinerama? ( x11-proto/xineramaproto ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 || ( dev-vcs/subversion[http] dev-vcs/subversion[webdav-neon] dev-vcs/subversion[webdav-serf] ) net-misc/rsync DESCRIPTION=C++ user interface toolkit for X and OpenGL EAPI=5 HOMEPAGE=http://www.fltk.org/ -IUSE=cairo debug doc examples games +opengl pdf static-libs +threads +xft +xinerama +IUSE=cairo debug doc examples games +opengl static-libs +threads +xft +xinerama LICENSE=FLTK LGPL-2 RDEPEND=>=media-libs/libpng-1.2:0 virtual/jpeg:0 sys-libs/zlib x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt cairo? ( x11-libs/cairo ) opengl? ( virtual/opengl ) xinerama? ( x11-libs/libXinerama ) xft? ( x11-libs/libXft ) SLOT=1 _eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff eutils 43da5163ba106e87d22d2e7d6d67537f fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 85dc1eac3c64d8141374490ed64122e5 libtool 7f78cd7d403808a350c9ae23f5821fb4 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 subversion 4fee0a764150bb4dda27ed4d2c4ed7ce toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=a89f1a84f1d2b97336d4d38dd3d2c45c +_md5_=f388a6dbdd0ed03d00ceec808461565a diff --git a/metadata/md5-cache/x11-misc/lightdm-1.16.2 b/metadata/md5-cache/x11-misc/lightdm-1.16.2 deleted file mode 100644 index 0a43b90c9e63..000000000000 --- a/metadata/md5-cache/x11-misc/lightdm-1.16.2 +++ /dev/null @@ -1,16 +0,0 @@ -DEFINED_PHASES=configure install postinst prepare -DEPEND=>=dev-libs/glib-2.32.3:2 dev-libs/libxml2 gnome? ( sys-apps/accountsservice ) virtual/pam x11-libs/libX11 >=x11-libs/libxklavier-5 introspection? ( >=dev-libs/gobject-introspection-1 ) qt4? ( dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 ) dev-util/gtk-doc-am dev-util/intltool gnome? ( gnome-base/gnome-common ) sys-devel/gettext virtual/pkgconfig !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig -DESCRIPTION=A lightweight display manager -EAPI=5 -HOMEPAGE=http://www.freedesktop.org/wiki/Software/LightDM -IUSE=+gtk +introspection kde qt4 qt5 +gnome -KEYWORDS=~amd64 ~arm ~ppc ~x86 -LICENSE=GPL-3 LGPL-3 -PDEPEND=gtk? ( x11-misc/lightdm-gtk-greeter ) kde? ( x11-misc/lightdm-kde ) -RDEPEND=>=dev-libs/glib-2.32.3:2 dev-libs/libxml2 gnome? ( sys-apps/accountsservice ) virtual/pam x11-libs/libX11 >=x11-libs/libxklavier-5 introspection? ( >=dev-libs/gobject-introspection-1 ) qt4? ( dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 ) >=sys-auth/pambase-20101024-r2 -REQUIRED_USE=|| ( gtk kde ) -RESTRICT=test -SLOT=0 -SRC_URI=https://launchpad.net/lightdm/1.16/1.16.2/+download/lightdm-1.16.2.tar.xz mirror://gentoo/introspection-20110205.m4.tar.bz2 -_eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 libtool 7f78cd7d403808a350c9ae23f5821fb4 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 pam 3ecd5b75e39b0bb05a3183c08fcdfdb4 readme.gentoo e37aea783a61ae55fab947df247eebea systemd 6b4f0cefa642270eded7e6ca816fd181 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=1b2cc88e015b16ae1c6eb56cfeba71d5 diff --git a/metadata/md5-cache/x11-misc/lightdm-1.16.3 b/metadata/md5-cache/x11-misc/lightdm-1.16.3 new file mode 100644 index 000000000000..274211114306 --- /dev/null +++ b/metadata/md5-cache/x11-misc/lightdm-1.16.3 @@ -0,0 +1,16 @@ +DEFINED_PHASES=configure install postinst prepare +DEPEND=audit? ( sys-process/audit ) >=dev-libs/glib-2.32.3:2 dev-libs/libxml2 gnome? ( sys-apps/accountsservice ) virtual/pam x11-libs/libX11 >=x11-libs/libxklavier-5 introspection? ( >=dev-libs/gobject-introspection-1 ) qt4? ( dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 ) dev-util/gtk-doc-am dev-util/intltool gnome? ( gnome-base/gnome-common ) sys-devel/gettext virtual/pkgconfig !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig +DESCRIPTION=A lightweight display manager +EAPI=5 +HOMEPAGE=http://www.freedesktop.org/wiki/Software/LightDM +IUSE=audit +gtk +introspection kde qt4 qt5 +gnome +KEYWORDS=~amd64 ~arm ~ppc ~x86 +LICENSE=GPL-3 LGPL-3 +PDEPEND=gtk? ( x11-misc/lightdm-gtk-greeter ) kde? ( x11-misc/lightdm-kde ) +RDEPEND=audit? ( sys-process/audit ) >=dev-libs/glib-2.32.3:2 dev-libs/libxml2 gnome? ( sys-apps/accountsservice ) virtual/pam x11-libs/libX11 >=x11-libs/libxklavier-5 introspection? ( >=dev-libs/gobject-introspection-1 ) qt4? ( dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 ) >=sys-auth/pambase-20101024-r2 +REQUIRED_USE=|| ( gtk kde ) +RESTRICT=test +SLOT=0 +SRC_URI=https://launchpad.net/lightdm/1.16/1.16.3/+download/lightdm-1.16.3.tar.xz mirror://gentoo/introspection-20110205.m4.tar.bz2 +_eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff eutils 43da5163ba106e87d22d2e7d6d67537f flag-o-matic 85dc1eac3c64d8141374490ed64122e5 libtool 7f78cd7d403808a350c9ae23f5821fb4 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 pam 3ecd5b75e39b0bb05a3183c08fcdfdb4 readme.gentoo e37aea783a61ae55fab947df247eebea systemd 6b4f0cefa642270eded7e6ca816fd181 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=f6505ae06cad01d093201272fff14f7e diff --git a/metadata/md5-cache/x11-misc/xdg-utils-1.1.1 b/metadata/md5-cache/x11-misc/xdg-utils-1.1.1 new file mode 100644 index 000000000000..d084b92a2d63 --- /dev/null +++ b/metadata/md5-cache/x11-misc/xdg-utils-1.1.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=configure install postinst prepare +DEPEND=app-text/xmlto || ( www-client/links www-client/lynx virtual/w3m ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=Portland utils for cross-platform/cross-toolkit/cross-desktop interoperability +EAPI=5 +HOMEPAGE=http://portland.freedesktop.org/ +IUSE=doc +perl +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +LICENSE=MIT +RDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info x11-apps/xprop x11-apps/xset perl? ( dev-perl/File-MimeInfo ) +RESTRICT=test +SLOT=0 +SRC_URI=http://portland.freedesktop.org/download/xdg-utils-1.1.1.tar.gz +_eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff eutils 43da5163ba106e87d22d2e7d6d67537f libtool 7f78cd7d403808a350c9ae23f5821fb4 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=2ce1dc6e4c127131048307f608e26159 diff --git a/metadata/md5-cache/x11-plugins/wmclock-1.0.16 b/metadata/md5-cache/x11-plugins/wmclock-1.0.16 new file mode 100644 index 000000000000..9a2de095df8b --- /dev/null +++ b/metadata/md5-cache/x11-plugins/wmclock-1.0.16 @@ -0,0 +1,12 @@ +DEFINED_PHASES=install prepare +DEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm x11-proto/xproto !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=a dockapp that displays time and date (same style as NEXTSTEP(tm) operating systems) +EAPI=5 +HOMEPAGE=http://windowmaker.org/dockapps/?name=wmclock +KEYWORDS=~amd64 ~ppc ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm +SLOT=0 +SRC_URI=https://dev.gentoo.org/~voyageur/distfiles/wmclock-1.0.16.tar.gz +_eclasses_=autotools 542bf3f83917668f3893f4da1ca238ff libtool 7f78cd7d403808a350c9ae23f5821fb4 multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=f85f28545d7b8b2b59528a97e6366b46 diff --git a/metadata/md5-cache/x11-plugins/wmppp-1.3.2 b/metadata/md5-cache/x11-plugins/wmppp-1.3.2-r1 similarity index 63% rename from metadata/md5-cache/x11-plugins/wmppp-1.3.2 rename to metadata/md5-cache/x11-plugins/wmppp-1.3.2-r1 index 4700d31dbdf8..92c0d0074e2f 100644 --- a/metadata/md5-cache/x11-plugins/wmppp-1.3.2 +++ b/metadata/md5-cache/x11-plugins/wmppp-1.3.2-r1 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile install -DEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm x11-proto/xextproto +DEPEND=>=x11-libs/libdockapp-0.7:= x11-libs/libX11 x11-libs/libXext x11-libs/libXpm x11-proto/xextproto DESCRIPTION=PPP dial control and network load monitor with NeXTStep look EAPI=5 HOMEPAGE=http://windowmaker.org/dockapps/?name=wmppp.app KEYWORDS=~amd64 ~ppc ~sparc ~x86 LICENSE=GPL-2 -RDEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm +RDEPEND=>=x11-libs/libdockapp-0.7:= x11-libs/libX11 x11-libs/libXext x11-libs/libXpm SLOT=0 SRC_URI=https://dev.gentoo.org/~voyageur/distfiles/wmppp.app-1.3.2.tar.gz _eclasses_=multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d -_md5_=2c97b2a9103601802a0c5628cc1c5a00 +_md5_=c917b9fe8d353ac65e698b101b8b6180 diff --git a/metadata/md5-cache/x11-terms/lilyterm-0.9.9.4-r1 b/metadata/md5-cache/x11-terms/lilyterm-0.9.9.4-r1 new file mode 100644 index 000000000000..6e10f74d2726 --- /dev/null +++ b/metadata/md5-cache/x11-terms/lilyterm-0.9.9.4-r1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=prepare +DEPEND=x11-libs/vte:0 dev-util/intltool sys-devel/gettext virtual/pkgconfig +DESCRIPTION=a terminal emulator based off of libvte that aims to be fast and lightweight +EAPI=5 +HOMEPAGE=http://lilyterm.luna.com.tw +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=x11-libs/vte:0 +SLOT=0 +SRC_URI=http://lilyterm.luna.com.tw/file/lilyterm-0.9.9.4.tar.gz +_eclasses_=eutils 43da5163ba106e87d22d2e7d6d67537f multilib df4e4d5cfd3d137d0c248e1991c0e4d6 toolchain-funcs 1dfcad7b3f439dbc511d76c49f23da0d +_md5_=e122825e04cb664fa398b803693df15f diff --git a/metadata/md5-cache/x11-wm/page-1.9.6-r1 b/metadata/md5-cache/x11-wm/page-1.9.6-r1 new file mode 100644 index 000000000000..58015709fd2c --- /dev/null +++ b/metadata/md5-cache/x11-wm/page-1.9.6-r1 @@ -0,0 +1,11 @@ +DEFINED_PHASES=- +DEPEND=x11-proto/xcb-proto x11-libs/libxcb x11-libs/xcb-util x11-libs/libXfixes x11-libs/libXdamage x11-proto/damageproto x11-proto/randrproto x11-libs/libXrandr x11-proto/xproto x11-proto/fixesproto x11-proto/compositeproto x11-libs/libXcomposite x11-proto/renderproto x11-libs/libXrender x11-libs/libXext x11-proto/xextproto x11-libs/cairo[xcb] x11-libs/pango dev-libs/glib +DESCRIPTION=A mouse friendly tiling window manager +EAPI=5 +HOMEPAGE=http://www.hzog.net/index.php/Main_Page +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=!dev-tcltk/tcllib +SLOT=0 +SRC_URI=http://www.hzog.net/pub/page-1.9.6.tar.gz +_md5_=3c0b2da0889e3803d80728726cf96f44 diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index cd95b5a1fc1d..0cc5159c2dbe 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Tue, 06 Oct 2015 05:42:02 +0000 +Wed, 07 Oct 2015 05:41:26 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index fb311f22e932..275862405436 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Tue Oct 6 05:42:01 UTC 2015 +Wed Oct 7 05:41:26 UTC 2015 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index ff5c3a7ceb2c..acc0d7312b76 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Tue, 06 Oct 2015 06:00:01 +0000 +Wed, 07 Oct 2015 06:00:01 +0000 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index 973baad06cce..0ed53c267a6a 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1444110001 Tue 06 Oct 2015 05:40:01 AM UTC +1444196401 Wed 07 Oct 2015 05:40:01 AM UTC diff --git a/net-analyzer/pmacct/Manifest b/net-analyzer/pmacct/Manifest index 73544d32b364..7828db1a8c71 100644 --- a/net-analyzer/pmacct/Manifest +++ b/net-analyzer/pmacct/Manifest @@ -1,2 +1,3 @@ DIST pmacct-1.5.1.tar.gz 874563 SHA256 96134549a10947f3f6d610b670a26f1a54e01af4be0eff09bf48c19246d33584 SHA512 c3a0ddaf1b8679df2097147ce844eb2a3e3058599aea457e463cd4e65a7601e0ce5bac5ca5e1c82afecd5edc92dae673eed3ed1787bfbd3e8ac2af5677885bb7 WHIRLPOOL bd071ac30493f5ee2e0393eb9277dfae2d2fdd6283293aee589ae41ab326b0aaef0ec9b70a421eeca4df857a0046ca7b196e0692ffdd2ea12d9a7c66a74e9a32 DIST pmacct-1.5.2.tar.gz 897530 SHA256 c12e3897e2f9aa89333968da46eb46855f357750ac1e06e36e72f374e2b54df9 SHA512 3705432cc2a28e179de637b8fc11becd2022b36191a13d440d5bec7d7e594d0936773f202f3d82e983a83695176380aa6a7c27748b632b180000590be0ead599 WHIRLPOOL e7bb1fa1b7372af7d932e19da1d14f3922d8a8ebda245fa03e2a5f283c66141a9299cc9dfa6f32e9384c7d2c9a2d2ef35ef62d7b9910e4f76cacc132231420e5 +DIST pmacct-1.5.3_pre20150925.tar.gz 896168 SHA256 ae63580ae879b3ce20e9725690b6337a72857376192dd2f610e0359ee9d4364c SHA512 e6675855f403ee746b0243cce1ee0e28fd649d2b1c6c1e33f012d7858f977952ba6ed5d1ee47ce42a4f6950b139be2bc50a88740fd19c4775d61d1fb1aa6c05d WHIRLPOOL c7f5003754835f0e1883f13bfba740667ebcbef54a49cc8b8f6fcca1f2db2dea337c910417ff75d86dcfa6bc294fa9b44567bc0d5d07b79ffcfc9b11b1efad5d diff --git a/net-analyzer/pmacct/pmacct-1.5.3_pre20150925.ebuild b/net-analyzer/pmacct/pmacct-1.5.3_pre20150925.ebuild new file mode 100644 index 000000000000..2900099d0e5f --- /dev/null +++ b/net-analyzer/pmacct/pmacct-1.5.3_pre20150925.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit toolchain-funcs + +DESCRIPTION="A network tool to gather IP traffic information" +HOMEPAGE="http://www.pmacct.net/" +SRC_URI="mirror://gentoo/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="64bit debug geoip ipv6 mongodb mysql postgres sqlite threads ulog" + +RDEPEND=" + net-libs/libpcap + geoip? ( dev-libs/geoip ) + mongodb? ( + >=dev-libs/mongo-c-driver-0.8.1-r1 + ++ #include + #include + ]], [[res_query(0, 0, 0, 0, 0);]]) + ]) diff --git a/net-libs/libasyncns/libasyncns-0.8-r4.ebuild b/net-libs/libasyncns/libasyncns-0.8-r4.ebuild new file mode 100644 index 000000000000..a2c96ec6ac48 --- /dev/null +++ b/net-libs/libasyncns/libasyncns-0.8-r4.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit autotools-multilib eutils flag-o-matic libtool multilib multilib-minimal + +DESCRIPTION="C library for executing name service queries asynchronously" +HOMEPAGE="http://0pointer.de/lennart/projects/libasyncns/" +SRC_URI="http://0pointer.de/lennart/projects/libasyncns/${P}.tar.gz" + +SLOT="0" + +LICENSE="LGPL-2.1" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux" + +IUSE="doc debug" + +RDEPEND="" +DEPEND="doc? ( app-doc/doxygen )" + +src_prepare() { + # fix libdir in pkgconfig file + epatch "${FILESDIR}/${P}-libdir.patch" + # fix configure check for res_query + epatch "${FILESDIR}/${P}-configure-res_query.patch" + eautoreconf +} + +multilib_src_configure() { + # libasyncns uses assert() + use debug || append-cppflags -DNDEBUG + + ECONF_SOURCE=${S} \ + econf \ + --docdir="${EPREFIX}"/usr/share/doc/${PF} \ + --htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \ + --disable-dependency-tracking \ + --disable-lynx \ + --disable-static +} + +multilib_src_compile() { + emake || die "emake failed" + + if multilib_is_native_abi && use doc; then + doxygen doxygen/doxygen.conf || die "doxygen failed" + fi +} + +multilib_src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + if multilib_is_native_abi && use doc; then + docinto apidocs + dohtml html/* + fi +} + +multilib_src_install_all() { + find "${D}" -name '*.la' -delete +} diff --git a/net-libs/libnftnl/Manifest b/net-libs/libnftnl/Manifest index 4fb56bc211c4..7c20829adc0c 100644 --- a/net-libs/libnftnl/Manifest +++ b/net-libs/libnftnl/Manifest @@ -1,3 +1 @@ -DIST libnftnl-1.0.3.tar.bz2 356264 SHA256 cf0ae7eab6a6866192a1fbd6b370a8a2cbe2066fe3975ab44939fd50747c27f7 SHA512 6fba3f3a0c3d98e0c3200edbd45910e326f0864383dc695fa77580d47d3fe541c50518f62d2dbfc50b2378b9b311aec28b3321ef18f59a321e0a3f0817952181 WHIRLPOOL 70219737c4d865bdfe9f58803377d3a10619198cb486623d03d30a43b0d159ded9d625505cb0209fe30585dbe3413d136d2fdd6552a6ce2339151bedb1c94c9a -DIST libnftnl-1.0.4.tar.bz2 367016 SHA256 8f1fbf9bcf87bf68e782f464fb05428d476c2e9a0bec91c6cda7a389a21969d0 SHA512 ed4230581c139c004c39a9ef3e6d548cfad43d1f3c47e83db328b7ae6c6d7fa70b194699d7f18472fa7fb819c943a85b6997be0f2d2b926745dd5cdbdbf81a41 WHIRLPOOL f899694c2d45fc073af694f5bd6edcae70abead69ef37a3f84a290e6b3dbb246029337e14378e4b3af4a4040f9c407db247f4d8636b8986e3f0d5b48783c20bd DIST libnftnl-1.0.5.tar.bz2 367016 SHA256 f6d4f5a702e38bc7987f2363f9fcd65930e8b702595c221a497e2f3a359be497 SHA512 85c71aaaeeafdffe09f2591f26d49d41e9f511a53ed313fe642b4968eae8aac1246a53d5908fc737c6eb9cc4f5f3ef2a4eaa17fe33db453a1fd60f2f9d5c5a1d WHIRLPOOL 15fb25aa9e23bfdcb19ab21ea1d6eadd22e5acc0c38e761e4637a06136c809f5a5827ac58643515432e1394e3e8d4575df11e52b5f16ca787157317e5e2ae463 diff --git a/net-libs/libnftnl/libnftnl-1.0.3.ebuild b/net-libs/libnftnl/libnftnl-1.0.3.ebuild deleted file mode 100644 index d74a39499681..000000000000 --- a/net-libs/libnftnl/libnftnl-1.0.3.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit base linux-info toolchain-funcs - -DESCRIPTION="Netlink API to the in-kernel nf_tables subsystem" -HOMEPAGE="http://netfilter.org/projects/nftables/" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="examples json static-libs test xml" -SRC_URI="http://netfilter.org/projects/${PN}/files/${P}.tar.bz2" - -RDEPEND=">=net-libs/libmnl-1.0.0 - xml? ( >=dev-libs/mini-xml-2.6 ) - json? ( >=dev-libs/jansson-2.3 )" -DEPEND="virtual/pkgconfig - ${RDEPEND}" - -REQUIRED_USE="test? ( json xml )" - -pkg_setup() { - if kernel_is ge 3 13; then - CONFIG_CHECK="~NF_TABLES" - linux-info_pkg_setup - else - eerror "This package requires kernel version 3.13 or newer to work properly." - fi -} - -src_configure() { - econf \ - $(use_enable static-libs static) \ - $(use_with xml xml-parsing) \ - $(use_with json json-parsing) -} - -src_install() { - default - gen_usr_ldscript -a nftnl - prune_libtool_files - - if use examples; then - find examples/ -name 'Makefile*' -delete - dodoc -r examples/ - docompress -x /usr/share/doc/${PF}/examples - fi -} - -src_test() { - default - cd tests || die - ./test-script.sh || die -} diff --git a/net-libs/libnftnl/libnftnl-1.0.4.ebuild b/net-libs/libnftnl/libnftnl-1.0.4.ebuild deleted file mode 100644 index 32b072d37beb..000000000000 --- a/net-libs/libnftnl/libnftnl-1.0.4.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit base linux-info toolchain-funcs - -DESCRIPTION="Netlink API to the in-kernel nf_tables subsystem" -HOMEPAGE="http://netfilter.org/projects/nftables/" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="examples json static-libs test xml" -SRC_URI="http://netfilter.org/projects/${PN}/files/${P}.tar.bz2" - -RDEPEND=">=net-libs/libmnl-1.0.0 - xml? ( >=dev-libs/mini-xml-2.6 ) - json? ( >=dev-libs/jansson-2.3 )" -DEPEND="virtual/pkgconfig - ${RDEPEND}" - -REQUIRED_USE="test? ( json xml )" - -pkg_setup() { - if kernel_is ge 3 13; then - CONFIG_CHECK="~NF_TABLES" - linux-info_pkg_setup - else - eerror "This package requires kernel version 3.13 or newer to work properly." - fi -} - -src_configure() { - econf \ - $(use_enable static-libs static) \ - $(use_with xml xml-parsing) \ - $(use_with json json-parsing) -} - -src_install() { - default - gen_usr_ldscript -a nftnl - prune_libtool_files - - if use examples; then - find examples/ -name 'Makefile*' -delete - dodoc -r examples/ - docompress -x /usr/share/doc/${PF}/examples - fi -} - -src_test() { - default - cd tests || die - ./test-script.sh || die -} diff --git a/net-libs/libsmi/libsmi-0.5.0.ebuild b/net-libs/libsmi/libsmi-0.5.0.ebuild index 3aa6d62496cd..716b4ab6898e 100644 --- a/net-libs/libsmi/libsmi-0.5.0.ebuild +++ b/net-libs/libsmi/libsmi-0.5.0.ebuild @@ -3,6 +3,7 @@ # $Id$ EAPI=5 +inherit eutils DESCRIPTION="A Library to Access SMI MIB Information" HOMEPAGE="http://www.ibr.cs.tu-bs.de/projects/libsmi" diff --git a/net-misc/spice-gtk/spice-gtk-0.25-r1.ebuild b/net-misc/spice-gtk/spice-gtk-0.25-r1.ebuild index 5ddbfec96193..4f5d78f9b991 100644 --- a/net-misc/spice-gtk/spice-gtk-0.25-r1.ebuild +++ b/net-misc/spice-gtk/spice-gtk-0.25-r1.ebuild @@ -18,7 +18,7 @@ HOMEPAGE="http://spice-space.org http://gitorious.org/spice-gtk" LICENSE="LGPL-2.1" SLOT="0" SRC_URI="http://spice-space.org/download/gtk/${P}.tar.bz2" -KEYWORDS="alpha amd64 arm ppc ppc64 sparc ~x86" +KEYWORDS="alpha amd64 arm ppc ppc64 sparc x86" IUSE="dbus doc gstreamer gtk3 +introspection policykit pulseaudio python sasl smartcard static-libs usbredir vala webdav" diff --git a/net-wireless/hostapd/Manifest b/net-wireless/hostapd/Manifest index f9a5061af237..530780e2a785 100644 --- a/net-wireless/hostapd/Manifest +++ b/net-wireless/hostapd/Manifest @@ -1 +1,2 @@ DIST hostapd-2.4.tar.gz 1658872 SHA256 6fe0eb6bd1c9cbd24952ece8586b6f7bd14ab358edfda99794e79b9b9dbd657f SHA512 37e648fe9cce92923ab1d1e23a4267e274c988785d7be5610f1affca425ffa86b438de81e37446926a0f9158d6b67ee83e6396c3f81d571545c973dddbf1ffe3 WHIRLPOOL 78484c7e09725ba967c8815c3d8b0ffcc0c56daaec4acc79bc15c7392084c8642a2b41156b2c6a6360badb7e9d23792699d452fe600b56e3d62dd569188b6c2c +DIST hostapd-2.5.tar.gz 1720783 SHA256 8e272d954dc0d7026c264b79b15389ec2b2c555b32970de39f506b9f463ec74a SHA512 bbb0547c29f4925aff8639cae3291ed020c2a9d989dd267be831b2418880916d2ec69003e36ecc796c348476086397cca8f63c52633f91c11a9c2ab72e1c83c0 WHIRLPOOL a2c07e8426796a82cd01dbd4fff22c065c93dff8ea25ccce9b37d78a732941750947e934acfdac8f63841d322636271e976c43aabe419c916e405264ecd4b06a diff --git a/net-wireless/hostapd/hostapd-2.5.ebuild b/net-wireless/hostapd/hostapd-2.5.ebuild new file mode 100644 index 000000000000..8366085388de --- /dev/null +++ b/net-wireless/hostapd/hostapd-2.5.ebuild @@ -0,0 +1,210 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="4" + +inherit toolchain-funcs eutils systemd + +DESCRIPTION="IEEE 802.11 wireless LAN Host AP daemon" +HOMEPAGE="http://hostap.epitest.fi" +SRC_URI="http://hostap.epitest.fi/releases/${P}.tar.gz" + +LICENSE="|| ( GPL-2 BSD )" +SLOT="0" +KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86" +IUSE="ipv6 logwatch netlink sqlite +ssl +wps +crda" + +DEPEND="ssl? ( dev-libs/openssl[-bindist] ) + kernel_linux? ( + dev-libs/libnl:3 + crda? ( net-wireless/crda ) + ) + netlink? ( net-libs/libnfnetlink ) + sqlite? ( >=dev-db/sqlite-3 )" + +RDEPEND="${DEPEND}" + +S="${S}/${PN}" + +src_prepare() { + sed -i -e "s:/etc/hostapd:/etc/hostapd/hostapd:g" \ + "${S}/hostapd.conf" || die +} + +src_configure() { + local CONFIG="${S}/.config" + + # toolchain setup + echo "CC = $(tc-getCC)" > ${CONFIG} + + # EAP authentication methods + echo "CONFIG_EAP=y" >> ${CONFIG} + echo "CONFIG_ERP=y" >> ${CONFIG} + echo "CONFIG_EAP_MD5=y" >> ${CONFIG} + + if use ssl; then + # SSL authentication methods + echo "CONFIG_EAP_FAST=y" >> ${CONFIG} + echo "CONFIG_EAP_TLS=y" >> ${CONFIG} + echo "CONFIG_EAP_TTLS=y" >> ${CONFIG} + echo "CONFIG_EAP_MSCHAPV2=y" >> ${CONFIG} + echo "CONFIG_EAP_PEAP=y" >> ${CONFIG} + echo "CONFIG_TLSV11=y" >> ${CONFIG} + echo "CONFIG_TLSV12=y" >> ${CONFIG} + fi + + if use wps; then + # Enable Wi-Fi Protected Setup + echo "CONFIG_WPS=y" >> ${CONFIG} + echo "CONFIG_WPS2=y" >> ${CONFIG} + echo "CONFIG_WPS_UPNP=y" >> ${CONFIG} + echo "CONFIG_WPS_NFC=y" >> ${CONFIG} + einfo "Enabling Wi-Fi Protected Setup support" + fi + + echo "CONFIG_EAP_IKEV2=y" >> ${CONFIG} + echo "CONFIG_EAP_TNC=y" >> ${CONFIG} + echo "CONFIG_EAP_GTC=y" >> ${CONFIG} + echo "CONFIG_EAP_SIM=y" >> ${CONFIG} + echo "CONFIG_EAP_AKA=y" >> ${CONFIG} + echo "CONFIG_EAP_AKA_PRIME=y" >> ${CONFIG} + echo "CONFIG_EAP_EKE=y" >> ${CONFIG} + echo "CONFIG_EAP_PAX=y" >> ${CONFIG} + echo "CONFIG_EAP_PSK=y" >> ${CONFIG} + echo "CONFIG_EAP_SAKE=y" >> ${CONFIG} + echo "CONFIG_EAP_GPSK=y" >> ${CONFIG} + echo "CONFIG_EAP_GPSK_SHA256=y" >> ${CONFIG} + echo "CONFIG_EAP_PWD=y" >> ${CONFIG} + + einfo "Enabling drivers: " + + # drivers + echo "CONFIG_DRIVER_HOSTAP=y" >> ${CONFIG} + einfo " HostAP driver enabled" + echo "CONFIG_DRIVER_WIRED=y" >> ${CONFIG} + einfo " Wired driver enabled" + echo "CONFIG_DRIVER_PRISM54=y" >> ${CONFIG} + einfo " Prism54 driver enabled" + echo "CONFIG_DRIVER_NONE=y" >> ${CONFIG} + einfo " None driver enabled" + + einfo " nl80211 driver enabled" + echo "CONFIG_DRIVER_NL80211=y" >> ${CONFIG} + + # epoll + echo "CONFIG_ELOOP_EPOLL=y" >> ${CONFIG} + + # misc + echo "CONFIG_DEBUG_FILE=y" >> ${CONFIG} + echo "CONFIG_PKCS12=y" >> ${CONFIG} + echo "CONFIG_RADIUS_SERVER=y" >> ${CONFIG} + echo "CONFIG_IAPP=y" >> ${CONFIG} + echo "CONFIG_IEEE80211R=y" >> ${CONFIG} + echo "CONFIG_IEEE80211W=y" >> ${CONFIG} + echo "CONFIG_IEEE80211N=y" >> ${CONFIG} + echo "CONFIG_IEEE80211AC=y" >> ${CONFIG} + echo "CONFIG_PEERKEY=y" >> ${CONFIG} + echo "CONFIG_RSN_PREAUTH=y" >> ${CONFIG} + echo "CONFIG_INTERWORKING=y" >> ${CONFIG} + echo "CONFIG_FULL_DYNAMIC_VLAN=y" >> ${CONFIG} + echo "CONFIG_HS20=y" >> ${CONFIG} + echo "CONFIG_WNM=y" >> ${CONFIG} + echo "CONFIG_FST=y" >> ${CONFIG} + echo "CONFIG_FST_TEST=y" >> ${CONFIG} + echo "CONFIG_ACS=y" >> ${CONFIG} + + if use netlink; then + # Netlink support + echo "CONFIG_VLAN_NETLINK=y" >> ${CONFIG} + fi + + if use ipv6; then + # IPv6 support + echo "CONFIG_IPV6=y" >> ${CONFIG} + fi + + if use sqlite; then + # Sqlite support + echo "CONFIG_SQLITE=y" >> ${CONFIG} + fi + + # If we are using libnl 2.0 and above, enable support for it + # Removed for now, since the 3.2 version is broken, and we don't + # support it. + if has_version ">=dev-libs/libnl-3.2"; then + echo "CONFIG_LIBNL32=y" >> .config + fi + + # TODO: Add support for BSD drivers + + default_src_configure +} + +src_compile() { + emake V=1 + + if use ssl; then + emake V=1 nt_password_hash + emake V=1 hlr_auc_gw + fi +} + +src_install() { + insinto /etc/${PN} + doins ${PN}.{conf,accept,deny,eap_user,radius_clients,sim_db,wpa_psk} + + fperms -R 600 /etc/${PN} + + dosbin ${PN} + dobin ${PN}_cli + + use ssl && dobin nt_password_hash hlr_auc_gw + + newinitd "${FILESDIR}"/${PN}-init.d ${PN} + newconfd "${FILESDIR}"/${PN}-conf.d ${PN} + systemd_dounit "${FILESDIR}"/${PN}.service + + doman ${PN}{.8,_cli.1} + + dodoc ChangeLog README + use wps && dodoc README-WPS + + docinto examples + dodoc wired.conf + + if use logwatch; then + insinto /etc/log.d/conf/services/ + doins logwatch/${PN}.conf + + exeinto /etc/log.d/scripts/services/ + doexe logwatch/${PN} + fi +} + +pkg_postinst() { + einfo + einfo "If you are running openRC you need to follow this instructions:" + einfo "In order to use ${PN} you need to set up your wireless card" + einfo "for master mode in /etc/conf.d/net and then start" + einfo "/etc/init.d/${PN}." + einfo + einfo "Example configuration:" + einfo + einfo "config_wlan0=( \"192.168.1.1/24\" )" + einfo "channel_wlan0=\"6\"" + einfo "essid_wlan0=\"test\"" + einfo "mode_wlan0=\"master\"" + einfo + #if [ -e "${KV_DIR}"/net/mac80211 ]; then + # einfo "This package now compiles against the headers installed by" + # einfo "the kernel source for the mac80211 driver. You should " + # einfo "re-emerge ${PN} after upgrading your kernel source." + #fi + + if use wps; then + einfo "You have enabled Wi-Fi Protected Setup support, please" + einfo "read the README-WPS file in /usr/share/doc/${P}" + einfo "for info on how to use WPS" + fi +} diff --git a/profiles/arch/amd64-fbsd/package.mask b/profiles/arch/amd64-fbsd/package.mask deleted file mode 100644 index 5264156fff71..000000000000 --- a/profiles/arch/amd64-fbsd/package.mask +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -# Davide Pesavento (20 Nov 2014) -# Qt4 multilib ebuilds, masked until dev-qt/qtchooser -# gets keyworded. See bug 529196. ->=dev-qt/assistant-4.8.6:4 ->=dev-qt/designer-4.8.6:4 ->=dev-qt/linguist-4.8.6:4 ->=dev-qt/pixeltool-4.8.6:4 ->=dev-qt/qdbusviewer-4.8.6:4 ->=dev-qt/qt3support-4.8.6:4 ->=dev-qt/qtbearer-4.8.6:4 ->=dev-qt/qtcore-4.8.6:4 ->=dev-qt/qtdbus-4.8.6:4 ->=dev-qt/qtdeclarative-4.8.6:4 ->=dev-qt/qtdemo-4.8.6:4 ->=dev-qt/qtgui-4.8.6:4 ->=dev-qt/qthelp-4.8.6:4 ->=dev-qt/qtmultimedia-4.8.6:4 ->=dev-qt/qtopengl-4.8.6:4 ->=dev-qt/qtopenvg-4.8.6:4 ->=dev-qt/qtphonon-4.8.6:4 ->=dev-qt/qtscript-4.8.6:4 ->=dev-qt/qtsql-4.8.6:4 ->=dev-qt/qtsvg-4.8.6:4 ->=dev-qt/qttest-4.8.6:4 ->=dev-qt/qttranslations-4.8.6:4 ->=dev-qt/qtwebkit-4.8.6:4 ->=dev-qt/qtxmlpatterns-4.8.6:4 diff --git a/profiles/arch/amd64-fbsd/todo/package.use.mask b/profiles/arch/amd64-fbsd/todo/package.use.mask index ca813a763e2b..7816ee18058f 100644 --- a/profiles/arch/amd64-fbsd/todo/package.use.mask +++ b/profiles/arch/amd64-fbsd/todo/package.use.mask @@ -213,3 +213,6 @@ dev-libs/eet test # net-misc/freerdp (doesnt build) media-video/vlc rdp + +# net-wireless/bluez +media-sound/pulseaudio bluetooth diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask index cc2e9338f438..c9c171d84b7e 100644 --- a/profiles/base/package.use.mask +++ b/profiles/base/package.use.mask @@ -5,6 +5,10 @@ # This file requires >=portage-2.1.1 # New entries go on top. +# Rick Farina (06 Oct 2015) +# forward porting this patch is non-trivial, mask for now +=net-wireless/wpa_supplicant-2.5 wimax + # Nathan Phillip Brink (26 Sep 2015) # git useflag requires dev-libs/libgit2 which few arches support dev-util/geany-plugins git diff --git a/profiles/package.mask b/profiles/package.mask index 536bed64d63a..2c870bdf03bd 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -30,6 +30,16 @@ #--- END OF EXAMPLES --- +# Patrice Clement (6 Oct 2015) +# No update since 2008. Masked for removal in 30 days. +# See bug #562370. +dev-java/cos + +# Patrice Clement (6 Oct 2015) +# Dead upstream. Masked for removal in 30 days. +# See bug #562370. +dev-java/commons-grant + # Mike Pagano (2 Oct 2015) # A regression in kernel 4.1.9 could lead to a system # lockup. This has been fixed in gentoo-sources-4.1.9-r1 diff --git a/profiles/use.local.desc b/profiles/use.local.desc index 579b5793162a..7e4cfa81c6be 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -2141,6 +2141,7 @@ dev-lisp/ecls:precisegc - Use type information during garbage collection (experi dev-lisp/gcl:ansi - Build a GCL with ANSI support (else build a traditional CLtL1 image) dev-lisp/gcl:athena - Build xgcl - an interface to x11-libs/libXaw dev-lisp/sbcl:pax_kernel - Enable if the user plans to run the package under a pax enabled hardened kernel +dev-lua/lua-openssl:luajit - Use dev-lang/luajit instead of dev-lang/lua dev-lua/luarocks:curl - Uses net-misc/curl for fetching lua packages instead of net-misc/wget. dev-lua/luarocks:openssl - Uses dev-libs/openssl for verifying lua packages instead of md5sum. dev-lua/luvit:bundled-libs - Use bundled versions of some libraries. @@ -7967,6 +7968,7 @@ x11-misc/light-locker:consolekit - Keep track of the various users, sessions, an x11-misc/light-locker:dpms - Turn on the display on screensaver deactivation. x11-misc/light-locker:gtk3 - Build with GTK+ 3 instead of GTK+ 2. x11-misc/light-locker:screensaver - Lock the screen on screensaver activation. +x11-misc/lightdm:audit - support sys-process/audit x11-misc/lightdm:gtk - Pull in the gtk+ greeter x11-misc/lightdm:introspection - Use dev-libs/gobject-introspection for introspection x11-misc/lightdm:kde - Pull in the kde greeter diff --git a/ros-meta/audio_common/Manifest b/ros-meta/audio_common/Manifest index aec3da0b587f..3a2fcd27aca0 100644 --- a/ros-meta/audio_common/Manifest +++ b/ros-meta/audio_common/Manifest @@ -1 +1,2 @@ DIST audio_common-0.2.7.tar.gz 173982 SHA256 bdffab26cd837b6db65d275dd14de143d1cf056167fc121b213b7403142195c4 SHA512 f765422bdb641e87132e1c9c56ca742d6830fed1d7414b337b61aa242f9955e4138ab13ee4a7786c78ff73f5824748ceb38f98612a7f12dab4dcdc97efa289e3 WHIRLPOOL d1bf17f8bd0e8346d2fff48982c402b0eaa2ea4365b3195e3dd0c4943c93cf1935fdff85a0d2018e43e5074640692c3d72dc72887c86d955dc02c60800e3725b +DIST audio_common-0.2.8.tar.gz 175497 SHA256 459ce6d834026969b3bec3fc9d59c446d8bd433661138464b90b9f2df38e6f1c SHA512 9a676be8c3c2240c3580facc9cf0e97080e42bfc53651af1308584b6aed32e33d0a4e7457c303290446fe200b2ff366a6136be2b9021e791bd54d81c0a739706 WHIRLPOOL 998e3bd28e18cdbde96693c3715a4eeea80c3d9b0aa4fbaaebaa6ddd926569e800e3e436153aa0854753da00c9bd7c1262d4cd3a04f1298aac05329dd1c6df0d diff --git a/ros-meta/audio_common/audio_common-0.2.8.ebuild b/ros-meta/audio_common/audio_common-0.2.8.ebuild new file mode 100644 index 000000000000..618c77ecf99b --- /dev/null +++ b/ros-meta/audio_common/audio_common-0.2.8.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +ROS_REPO_URI="https://github.com/ros-drivers/audio_common" +KEYWORDS="~amd64 ~arm" +ROS_SUBDIR=${PN} + +inherit ros-catkin + +DESCRIPTION="Common code for working with audio in ROS" +LICENSE="BSD" +SLOT="0" +IUSE="" + +RDEPEND=" + dev-ros/audio_capture + dev-ros/audio_common_msgs + dev-ros/audio_play + dev-ros/sound_play +" +DEPEND="${RDEPEND}" diff --git a/sci-electronics/xoscope/Manifest b/sci-electronics/xoscope/Manifest index 20e837e9a8a2..185282d0c79d 100644 --- a/sci-electronics/xoscope/Manifest +++ b/sci-electronics/xoscope/Manifest @@ -1 +1,2 @@ DIST xoscope-2.0.tgz 334875 SHA256 a8a3027971dd1bd902861ea8f099ea003a19b6e86f87ae97a4811aeef1deb403 SHA512 8a7506dd40133c1bfaf101102f84a5d81712b4cc28d75002f14d5c5b2e08162813dfb68a3e15e1056545d225d563c66ac8a5a81deede3c93a5bb943b81c8fc70 WHIRLPOOL 4afd660cb05a9a70ce49a5553c4f08d5877f32a85adcf86ada1014d7d90c358817cdb6da7f4b2d08edfb406375848434f679ea976c15ad16bf3ca2b8691a944c +DIST xoscope-2.1.tar.gz 302170 SHA256 ff14532ced6ac140064093e7aafaf6a032a50eb09f6b3608c45f81d00dc836ac SHA512 2ecc75d04d36634d83b7c6636dc7e45fb068ae37e0ee1b0e97c65f9cd56f7fe0e511828821fa0ca2cfe4c6cd6a05e8d23275ec96253dc6faec91db4cbdecd13d WHIRLPOOL e8dc3e9b56e776431d3d4f6dc30865666d7dc5d3bb0df12ebec62018db040fbb2518023688502dce01a98a7139a23e5222f258a8481511832e9233eadcef00c7 diff --git a/sci-electronics/xoscope/files/xoscope-2.1-man_no_-Tutf8.patch b/sci-electronics/xoscope/files/xoscope-2.1-man_no_-Tutf8.patch new file mode 100644 index 000000000000..f00cd8c2545a --- /dev/null +++ b/sci-electronics/xoscope/files/xoscope-2.1-man_no_-Tutf8.patch @@ -0,0 +1,11 @@ +--- xoscope-2.1/configure.ac ++++ xoscope-2.1/configure.ac +@@ -132,7 +132,7 @@ + + AC_DEFINE(MSECREFRESH, 30, [minimum number of milliseconds between refresh on libsx version]) + +-AC_DEFINE(HELPCOMMAND, "man -Tutf8 xoscope 2>&1", [shell command for X11 help]) ++AC_DEFINE(HELPCOMMAND, "man xoscope 2>&1", [shell command for X11 help]) + + AC_DEFINE(FILENAME, "oscope.dat", [default file name]) + diff --git a/sci-electronics/xoscope/xoscope-2.1.ebuild b/sci-electronics/xoscope/xoscope-2.1.ebuild new file mode 100644 index 000000000000..a8352fa4349c --- /dev/null +++ b/sci-electronics/xoscope/xoscope-2.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit autotools eutils linux-info + +DESCRIPTION="Soundcard Oscilloscope for X" +HOMEPAGE="http://xoscope.sourceforge.net" +SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${PV}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="x11-libs/gtkdatabox + virtual/man" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +CONFIG_CHECK="~!SND_PCM_OSS" +ERROR_SND_PCM_OSS="CONFIG_SND_PCM_OSS is needed to support sound card input via /dev/dsp" + +src_prepare() { + epatch "${FILESDIR}"/${P}-man_no_-Tutf8.patch + + eautoreconf +} diff --git a/sys-apps/progress/progress-0.9.ebuild b/sys-apps/progress/progress-0.9.ebuild index 2b3bafe09556..2ad11d24e21a 100644 --- a/sys-apps/progress/progress-0.9.ebuild +++ b/sys-apps/progress/progress-0.9.ebuild @@ -21,7 +21,7 @@ DEPEND=" src_prepare() { sed -i \ - -e '/LFLAGS/s:-lncurses:$(LDFLAGS) $(shell $(PKG_CONFIG) --libs ncurses):' \ + -e '/LDFLAGS/s:-lncurses:$(shell $(PKG_CONFIG) --libs ncurses):' \ -e 's:CFLAGS=-g:CFLAGS+=:' \ -e 's:gcc:$(CC):g' \ Makefile || die diff --git a/sys-fs/btrfs-progs/Manifest b/sys-fs/btrfs-progs/Manifest index 9be8a95c6c18..5d96b6691305 100644 --- a/sys-fs/btrfs-progs/Manifest +++ b/sys-fs/btrfs-progs/Manifest @@ -7,4 +7,5 @@ DIST btrfs-progs-v4.0.1.tar.xz 1104340 SHA256 2c2e10e79edd16a92effe8619c527fd130 DIST btrfs-progs-v4.0.tar.xz 1102500 SHA256 179cf1acc1b0061548b8f1d9cf973a8338bf96f192cecad99ecdace9ae065a1f SHA512 895d6c27bd82c4b320c705c32613b28e601f316c0881080d8c376d0045162eaab6c91431dee73b391fc608e6d7c16f3a744ef6b9c85adb4beaa4376fbbe36d9a WHIRLPOOL cf71cc4ab6c85e8673143bb779c7b252caf1bfabc14fb2d7dd3477bd842b491ac3d7f121c3dcbecec023c5873c4b4400a5f2087e55bbee14217982f9712d5c2f DIST btrfs-progs-v4.1.2.tar.xz 1123080 SHA256 62db60c6a0868afb6302112cea54c756873bc30b826696b167ec03ecd61b2f12 SHA512 dd159bcc3adb65efd4f612d75f5a6b30df8ad9fa06ef952dd03dac965256de37eab26f4cc2fb3840178403ccbb7368cae11638e27eadb9b1835b636c4b126e2e WHIRLPOOL 819e6d61ecbb0f2d099abcda70ae9ab53b3311a28131fdedbbad7cc033c4984309a460f704d2f2ce7cf36cf0e034e82618c1b45002fdfbb5eced648883e12a29 DIST btrfs-progs-v4.1.tar.xz 1119564 SHA256 abc6ff9dbbf948e7358edd34db32103cba8b86c5cb9e3ed7eb3b5630e2feb7e8 SHA512 0c596bab3276d1dc6de010ce94a1d7758c80fe21d540b2d4b3487e0a5cf0a63b27fdba3e1af42aa349447a0be459f2087f9b4ae03fdc0dfcc4f316e570893346 WHIRLPOOL 97ae77f578f162ec114e137899f195ec0e28097902e2f2ae5e1f37db359cd6c1bae2f0fb6641b0365df80defb844d58603623db27dc63c1576437efcaf19d3e6 +DIST btrfs-progs-v4.2.2.tar.xz 1143760 SHA256 5d87e4ebb2a3a288c167791e489bfa484034d185c704870c484cb0771d921316 SHA512 2ad23546b3bb421faad1f67da37566b6ae1887c5340c0f1d06ca59fc0cd0fb1060d92e74e36ba7bfd85b0aff30811525654cd03b7d3570b0b51c2d8e2d6d9a76 WHIRLPOOL 5051f232bf5d6c2d19bc0fba9f2653546fc09000279863637a7ab44ff5c8bd107e5307aef3d2fbc7113581df3c224965f882045153eb9fa10da5b34cc4318188 DIST btrfs-progs-v4.2.tar.xz 1130488 SHA256 25233c3e94c52bf433e8749c17dad2acd8004c6dbc93e2bff9397c4e9fa58fbe SHA512 ba322478c1ce4df5548a953de581053c9fb9d60d1626639dc543065847a0c92ea6712728479dcb59487e02ab6aaea9f688fe1e3ef5087517e55d346b02d36065 WHIRLPOOL 54cd45554c15bedac3baac6939e6e91965b59c1c6cc0b7ca10d4c910dfe56811a278f9ee6026a9cc61286544370a45f0c0ccccfb08d7958d7a0c4b2964751bd4 diff --git a/sys-fs/btrfs-progs/btrfs-progs-4.2.2.ebuild b/sys-fs/btrfs-progs/btrfs-progs-4.2.2.ebuild new file mode 100644 index 000000000000..4f0cc37e6ccd --- /dev/null +++ b/sys-fs/btrfs-progs/btrfs-progs-4.2.2.ebuild @@ -0,0 +1,81 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit bash-completion-r1 eutils multilib toolchain-funcs + +libbtrfs_soname=0 + +if [[ ${PV} != 9999 ]]; then + MY_PV=v${PV} + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" + SRC_URI="https://www.kernel.org/pub/linux/kernel/people/kdave/${PN}/${PN}-${MY_PV}.tar.xz" + S="${WORKDIR}"/${PN}-${MY_PV} +else + WANT_LIBTOOL=none + inherit autotools git-r3 + EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git + https://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git" + EGIT_BRANCH="devel" +fi + +DESCRIPTION="Btrfs filesystem utilities" +HOMEPAGE="https://btrfs.wiki.kernel.org" + +LICENSE="GPL-2" +SLOT="0/${libbtrfs_soname}" +IUSE="+convert" + +RESTRICT=test # tries to mount repared filesystems + +RDEPEND=" + dev-libs/lzo:2= + sys-libs/zlib:0= + convert? ( + sys-fs/e2fsprogs:0= + sys-libs/e2fsprogs-libs:0= + ) +" +DEPEND="${RDEPEND} + convert? ( sys-apps/acl ) + app-text/asciidoc + app-text/docbook-xml-dtd:4.5 + app-text/xmlto +" + +if [[ ${PV} == 9999 ]]; then + DEPEND+=" sys-devel/gnuconfig" +fi + +src_prepare() { + epatch_user + if [[ ${PV} == 9999 ]]; then + eautoreconf + mkdir config || die + local automakedir="$(autotools_run_tool --at-output automake --print-libdir)" + [[ -e ${automakedir} ]] || die "Could not locate automake directory" + ln -s "${automakedir}"/install-sh config/install-sh || die + ln -s "${EPREFIX}"/usr/share/gnuconfig/config.guess config/config.guess || die + ln -s "${EPREFIX}"/usr/share/gnuconfig/config.sub config/config.sub || die + fi +} + +src_configure() { + local myeconfargs=( + --bindir="${EPREFIX}"/sbin + $(use_enable convert) + $(use_enable elibc_glibc backtrace) + ) + econf "${myeconfargs[@]}" +} + +src_compile() { + emake V=1 +} + +src_install() { + default + newbashcomp btrfs-completion btrfs +} diff --git a/sys-kernel/genkernel-next/genkernel-next-63.ebuild b/sys-kernel/genkernel-next/genkernel-next-63.ebuild index 84e2e102ec3a..ca1c7ac8784e 100644 --- a/sys-kernel/genkernel-next/genkernel-next-63.ebuild +++ b/sys-kernel/genkernel-next/genkernel-next-63.ebuild @@ -13,9 +13,9 @@ fi inherit bash-completion-r1 eutils if [[ "${PV}" == "9999" ]]; then - KEYWORDS="ia64 ppc" + KEYWORDS="ia64 ppc x86" else - KEYWORDS="~alpha amd64 ~arm ia64 ppc ~x86" + KEYWORDS="~alpha amd64 ~arm ia64 ppc x86" fi DESCRIPTION="Gentoo automatic kernel building scripts, reloaded" diff --git a/www-apache/mod_auth_kerb/mod_auth_kerb-5.4-r2.ebuild b/www-apache/mod_auth_kerb/mod_auth_kerb-5.4-r2.ebuild index 66bfc7074631..1463b5c911db 100644 --- a/www-apache/mod_auth_kerb/mod_auth_kerb-5.4-r2.ebuild +++ b/www-apache/mod_auth_kerb/mod_auth_kerb-5.4-r2.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/modauthkerb/${P}.tar.gz" LICENSE="BSD openafs-krb5-a HPND" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" DEPEND="virtual/krb5" diff --git a/www-apps/icingaweb2/icingaweb2-2.0.0.ebuild b/www-apps/icingaweb2/icingaweb2-2.0.0.ebuild index 892cc8376bbf..5ba2df2e3200 100644 --- a/www-apps/icingaweb2/icingaweb2-2.0.0.ebuild +++ b/www-apps/icingaweb2/icingaweb2-2.0.0.ebuild @@ -62,5 +62,5 @@ src_install() { } pkg_postinst() { - einfo "Run 'emerge --config ${CATEGORY}/${PF}' to finish setup." + einfo "Run 'emerge --config =${CATEGORY}/${PF}' to finish setup." } diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest index 844013686d00..f050e7656d0d 100644 --- a/www-client/firefox/Manifest +++ b/www-client/firefox/Manifest @@ -1,4 +1,5 @@ DIST firefox-38.0-patches-0.3.tar.xz 4796 SHA256 bfbef81748f76f5f80c3ce6e6b810b65f6266f71da02722b1e8c9fad865b02bd SHA512 a974e33759246153db7d83488f1326275efd12c44a6c8c539cbc35709b4dbd27e848bda32f302ac2baa5d8729ba20579ebc7f643419757f542972ca1a264d520 WHIRLPOOL 3549239db380c02a1575ff407ea684a14827f2250d991b5eb6c8a341ceebaca57cd2cc422e160f00dfab933385d677574cd84947da07bd282c68bb84c40fa42b +DIST firefox-38.0-patches-04.tar.xz 5572 SHA256 501bd1cbd0ac7239674df4f7424e0dd57cab9ede47e18af0c99a8b8e04aa5ccc SHA512 311d494ba2a4219c88eea651e617aa776d6aa8ff68092302b76e9ff4e3e348c7197ec583923188e39973b7bd14f94df19756daf2495d9b0fe44aeaa3dcd19100 WHIRLPOOL 6605eaa0b80c97d2d5d23a23f7b8d92e7ed875787b932adf14622eb3fb5f5ccdebe8a094d78b3518d874b8819724af94100fd1728074ba4a5c426bbd91eeb722 DIST firefox-38.2.0esr-af.xpi 483326 SHA256 4d822352bd0dbaa73dd547602e20ccdccb62b3ef9bdeccc03f172511e18b41ed SHA512 908819290fb01ebe28aa24202f1d48e38a4cd0d9777dbf148239b5a16873392f8bb102041429dc894789724eb2e2a362592e9d56ced2756afd316d60dcebb025 WHIRLPOOL 566efef045ade62dce1ef92e4e7638cbe553d10a981b8f207a97d4f5c331f2f1ac9494bb5c2405f09b3577f4ab3daac1056af839c64d40510b2ce7e4ff710891 DIST firefox-38.2.0esr-ar.xpi 516496 SHA256 5e5e573f9cf9bb050ac9e94311887b83684c9933c8ba36021010b093b69c667b SHA512 77019b15769825e1734f10619928551efcbdfcfb691edd1bf1f6de23ff705d6cb1ccd79829edf6f59251bd4f2e6dfdb52f6e85ba07fe3fb1b246e5446e44c60c WHIRLPOOL f0d7d3e85f77ae10a013676fa65305a3effc63a76d0ed03c2c0af322b4f95ddd31e4556e35db4605f1e5cd5272d8720ad6f93d3d8025b771e645546f5d510621 DIST firefox-38.2.0esr-as.xpi 509574 SHA256 690987405cf31ba44a2bc52a040f79e07bdca5e1a68bccb65a94f608dd32a168 SHA512 ec636f22e614e2fa239c58731f0008b7c7bd0749752de17bb3a7cf718809a4bc5ef7cbbde177db2109bfd3b7ceae7e3c1b65d9a4cda6a83afc0c0ba7686d0e36 WHIRLPOOL 5588b6dad6be0e397bdb0d28543c67b42ab56557597b125275850c70487026379f5024c17d6d34bcee5be50a94a453fa6b34769b22cc796edd084e2ae927622f @@ -79,86 +80,6 @@ DIST firefox-38.2.0esr-xh.xpi 450242 SHA256 d41ee639470dce1ff3a103987c16ad5dc32c DIST firefox-38.2.0esr-zh-CN.xpi 488277 SHA256 6b58c8a6fd5e62933d8ec42758a6fc7dd4794b7f659855331debc876e8b80bec SHA512 f17a3d9160a907c5d135d1e66f5a114b6580c34e4da57faa7b55af6d8910bce2d37845489e203fb906e2f124eb1bc874c32018458c349230b23f0363370453e4 WHIRLPOOL eacb3d22b097b05dcbff08078ad534e89fcb4184641b502fac3aea6d7ac73fc0b581b8edbc7b53fa93c883aff09ce1ed115997347a7261928a689e4979b05c5a DIST firefox-38.2.0esr-zh-TW.xpi 467844 SHA256 bb22672b52104fd11c28d5609d2c039dd0b3636445b091523dfb90538cf84e94 SHA512 e29a7bfbd03629eaf3bd9a51224e5caf6042febb6e5861435e11a2d16673f1db4b862867e5016c2465ea2445efa5ab9f6a07d3719cd79e5be749c8302893e8c7 WHIRLPOOL f8488aa526c7c1e99e49bba22ccc67ec2f180dd339e72411a458cbb68a7080bbf65187ecb01a41742cbb1b23ece00f9db3f70350d4c5a3901a21c44165bb4e28 DIST firefox-38.2.0esr.source.tar.bz2 180722192 SHA256 55867254f21cfc610aa63c8aa0d7156df6eb4c0cb37ebac30259e4890170aacb SHA512 65df7ea87b6a48d328096a26bfc6e2d19d9fa45c35cc576f401e2266f884708d5fd4cc6cd1344b70a8c9bd611a439df11ea1a978bf1d9f1719a240b109489b1f WHIRLPOOL f001d27a402f5fee5ed1500fad61dab07468e315e353598107f638bee08e4b2be63715fd1ad7b6527a0d289a855a520201c753636a45842ff1329efc6f2ecf3c -DIST firefox-38.2.1esr-af.xpi 483326 SHA256 2939af5389d2d480ad9b0b5fd4e13d725a07b47f1e025d7abe232e25bd6f93f3 SHA512 6a55abc6fa0b27a0029b7693d7b8e15105ab40f3e28e905f268ebf172963f2678bda470277144eae2c54eb99ebe9b31a41a7b4965ff546f103cec75cf3713e74 WHIRLPOOL c87f75bc984de737d89c5ddf6dcebd95dedf67d6bff96db0ccff3a3bbf95a070c27cc1e59ff9e617213cb90f15f57d0e3c394c31e0187e671d779d0172a7a2b3 -DIST firefox-38.2.1esr-ar.xpi 516495 SHA256 840e732a96c8478d0815888c79496d1c62dcbd6133d2304b0920f93d0f6eb3db SHA512 51d47bc01f197c07464e19a7f7d8c1c978415d76b1734bba7fba2c56736f980d6fc1def6c8bd91a9dd213bd4d55cbc82968b2e04df56761abb232aa40b8512b1 WHIRLPOOL 7ed57f922148ee417a6aa0dcf1c4272febd662333923e4a17218a3e00a612757bae6c9e9cab19f75b3318dc94af9decaaaad9c434082e7135e74c602f209541d -DIST firefox-38.2.1esr-as.xpi 509574 SHA256 3aad4f54d6b17a1e50ecff8f88d43723fa7d423ef5523a01e80b2eedd4d40ca4 SHA512 87c427da29d9ab579e036cc83e29926b2dd75dd362c84dde8e380cf46a482041b0226b7bcc037fabd41720e8f19b184f83776be35879178078a3f2663049e40f WHIRLPOOL be532efabfbf65852bc153aff5e9a5f29786578724cd0434d11178bfa9763cab96202e20d05fea0419e34d6f94c4508ccf7aee444ccc218603494d2c91212c48 -DIST firefox-38.2.1esr-ast.xpi 397202 SHA256 9a3dad64dd09a11293936ad421d9cf54a112363497fcf2263e56fe4dc059b648 SHA512 99977baab4d1f6bb474cbd1a41ba93bb91e31c49de58078f76164f66b1c7ef9c1b398bc0e81ca0b832aaba736c402e4d28e6e2495500fb8906054a5e251b79f0 WHIRLPOOL e7c3ad01756599f497b26e5d791a75f5f728ecdb6f7b15ab8f5e684cebe4b3494a6a6212761beb35ca5d754a5894c4469629ec980403b2cd26f8a3490d458647 -DIST firefox-38.2.1esr-be.xpi 441057 SHA256 fd6d9e058da409985c1f9e04b608c897e3ccf81cff733029c4c6571e7d128022 SHA512 118f0efb28216d03ef7dfc17f82e5d085ca407a21cd071072c4cbd766759c398e4d274bcb4c0c51912eaf848baf418c0af7fbeedbf44e2ba2f2ae3ac545f0a81 WHIRLPOOL caffc0685b15291779fdaee15a239c954b7fe4bfcd4ceb0a07fe9c9105fe9deb3dddf2b050d9c2b9a4c89bd97dbb9af3c0e05c2c805602bff14f2b97e665fe70 -DIST firefox-38.2.1esr-bg.xpi 487819 SHA256 389edc15450db4664667237ce42a7f207278777bf13fb7531ebba54a09df460d SHA512 06c8c37ec7ad1424bb2e5a1d893095174491db9046a6dc91ed655af243b94b374a765dfccd461e719faea5786c5082a201479b48167cf0c6e8605552f68e51c7 WHIRLPOOL 996c9166e026ca61f0ea28943b3e2a0823d31156ccc177ae37a114a0f6be526ff055ee863a207b201cdab7dc9c24b12397d7d6686a3cfd04f311caf913348a46 -DIST firefox-38.2.1esr-bn-BD.xpi 528690 SHA256 8acb41f8dce61a494f04e2d3f43eb0a23e7f21179928b803d6f0fac42ee1b4a3 SHA512 b0b2118f4ba9f24811b51a19cd14a5f18a805cb333f004519717a3da9d9b462c0949d414e3e4baa418c87ff38b6e42edd607176deed0ac7b315d3f5ff9860dfa WHIRLPOOL 12e74c874490a890b99de0bcc974b9a8e64e07b609f792dffca5922358d384d7a03b42e39100794db16ab97880465a0e45c41aa676f50d3b29a29a8d47afbfb0 -DIST firefox-38.2.1esr-bn-IN.xpi 527927 SHA256 bab25d7ce5747110b39b2b99685853a5931f340daa2cb88a4d53b01b0534f211 SHA512 0d2fb6f9a27c16b0dcb41e11e9cb3e09c7afda5aacadaf7337ad81070891af0c8440444ed2bffa856cb468748db90d42f4bd078e52166aa5ef03d66164b9381e WHIRLPOOL a3d87fa4421a5da9a2367b9ec9d396fdb1a0207d5bde817f65dfa30f2dcbe57cfaf85407fa12aa1a970eb443aced092b1119b97ddc9ff8633acd44bfb2430a30 -DIST firefox-38.2.1esr-br.xpi 441961 SHA256 a5cbd1cbacdd7d17c7f0d5d62583a0174e69e0905ffb22d0b7a4e936729862c7 SHA512 f56235cf4cb32eb62be80f36b4fc31424c5049ffefadacc6fbe02d49c547b0c2bfd20fedce10abab987d2ea02d646801705a6aa5623a7319adf4e8523e6459a8 WHIRLPOOL 7e0071b9343def033fed4a6c9d57cf617b676097e1a9d65c6ab111e309746dc866359008299d42ac57fd320b9e39336b6b6ac99c993ae05623a25b517ad81bb7 -DIST firefox-38.2.1esr-bs.xpi 485305 SHA256 0b2752ae75b2306d5b01731cf470cc02da75b759ac7fd4b0bfbad76e85214b50 SHA512 b3d08689d30a98585db65fc9ccf3958c6427b056a5dd779cdee8cb459623ef5d874b9c659750ea1ad3c6ee30296a7099a646eb1c632260f531beeae07d5060b8 WHIRLPOOL 4887bbfd4109bf6bea1eac5d49e94a33eb824813c5102e24ff0d3ec7136e403f0eccfa3171cf09a865b74beeaa3669f44d94ab1c6634d4fdf4ec819df874f8d7 -DIST firefox-38.2.1esr-ca.xpi 458091 SHA256 9a7838b932bf3c356da9af568718ab058c86076e435f5d0be4a082bbaff190bf SHA512 f5dc9cde4bba17550129e5ffbd33bed1a5e670e6b1348080b6aba9a7ba4f725011ca72bd00421a971aca1ff667b4ab7a06902a02667b7962623f3f9e4506533b WHIRLPOOL ffb19b22b6edcd80d0b2ecbc5bce77da27d3d5ea541974e9059b6149973af8d4d62b0d3cb62d615ecb946668c83b83c6723ce5495a186db0a76b35d6a74e5dce -DIST firefox-38.2.1esr-cs.xpi 446725 SHA256 d8c4ba79e4725029dc4073e065c65a8ba1d97fca9e2ab53f7147184211801178 SHA512 18522211818d16a2c9abafba8c8dfec8a57375adda4b4b5e26c2976cc29b03ea082c5f4b681ca8fb644f16a368210f1a264c618c66489eccba7ae06f7bfbff0e WHIRLPOOL 272361f5edf81e15937e6ec9201b00e1119b85856c57214077d98278da559356309bece1fcec653d1eda232c877de98df29d9ddfd18e5ed48e4d8082f0625fa0 -DIST firefox-38.2.1esr-cy.xpi 444384 SHA256 8916066abc92d6ddff59b248ffe79bc09e42ae2e553abee68cd96f81f7c9881f SHA512 08b13deef1ff247956883be89f5d74166e28e2bec30eb9a3457f4ec8b1041251b493c719035e967bb95d3bbb6a9377419022929c91757068b96c48176c9b0927 WHIRLPOOL 948ffe8d363cc48760c196ebed89b3ca379bdfcce20eff4f162cebdb1c8ee6ba7857c3bce314d83d692483c6be034a1d1a51975d0aa5a76ba362edc745cca164 -DIST firefox-38.2.1esr-da.xpi 450762 SHA256 269107b93e0f7df8b9860672ae5cddeb816bc184d8b083dbb0c12af4723da666 SHA512 07cc34e151e9c0d6fc83d7fc2939b1f592dd5888f0a949572c0037be22b57626fd5ec33e2a57dd2a32a9cdd54730682a8dabae752c8888f4de4a5ce053ec298d WHIRLPOOL 22c6f25f0fb099188d5cbec9bd00559f4db13a4ed6e263e8f8fa98c9a0557cf27b37a6e8563db8fe91404dec4fea9801d0638eac938b989b480a6bef870288b1 -DIST firefox-38.2.1esr-de.xpi 451628 SHA256 3875513fb280bf215f37062078f3dee9e19b49cf43db4a1722975d086700fb9e SHA512 7371b4a258a4dc14e3a8af8e5e06d7eaa88d8e63e8a46da8cda458fa21584cd7afb05a0858179744c156b5ba9544aa21cbef1c9c7d61fca7f68162e412a024d3 WHIRLPOOL a3dfdac96d5b3f37c094f217d5400c9c4de1b2f58aecd22b7466a827bebb0c8910f324c26dc0bdd276f206dd860b512a774f0de11e34eecdb9e2b89d737f0021 -DIST firefox-38.2.1esr-el.xpi 498370 SHA256 b0bece2e1762b042044e676b13ab33b5d8dc6397c84974ba485e656bfa859fed SHA512 0388ac0273f7e9450dd611902025080a1c98ece4f88da9d11a18475542949789d8f684fc2fc1af93c18c0d1dc860f0cda3952bce5ca5c53bbb960e7e46ce88e3 WHIRLPOOL 650c3af1124a227327d1824c38e5f4464ad66446d6ada449a39a543f111a53f206455abfb6fa7e836775ab2f0d034cd4acfa7845952115e7c8b7878400b64e02 -DIST firefox-38.2.1esr-en-GB.xpi 437846 SHA256 8f5dbb40d08afd368f74204ace917bc13e384fa305b5a588f87aabd7da741177 SHA512 3360afbe9ac551595bd0de14d5362bb36a5ad9f0c119b70dcb920de19df098ca951b7f0877dfd6996682386ae168f1b8d9491190a263062008b49c5267d07181 WHIRLPOOL b4efb6c1733f523acd08dc5fa418cc05ed2ae22dca2b7bc18c3262b287c2c99fee8d45ade0ebcb0c26864de5e47e5bc70ba7f217b53b2ba91d5e5e69960d8096 -DIST firefox-38.2.1esr-en-ZA.xpi 439926 SHA256 d4d06c2c80202f06a837dcea7e0431f8556a58e7a97e5e1bdd41ef8cd575f8db SHA512 2b3411197fbb87b324cadf89c3d793c01bdff28b6b03990e0ca40ef1762c47562a9bbb850568439178880bd52d99fc929af3f9efc451320b925003dba012bcef WHIRLPOOL ab1eff69233928dcd0933cfa97a0cd5ce1d87d1a14cba2ce301dbcf99a6aaaf23668cf406819c9076ee74ff3e0afadb4260646e2523f5f7116adbea72f8ac6c9 -DIST firefox-38.2.1esr-eo.xpi 488370 SHA256 34d5455052f0f7e43561795998b9a9f20683bbdac54d740e2ccc952dbe35840a SHA512 7ccab0f98c30df0bfeeeb278c7e5e9bd1181e394d931dc035700909c794143df277344f78c49c9b3452ee7f83cc9d47403ac9e8d98f5828eadcb5c35f075f788 WHIRLPOOL b1e9e293138cf02a5b8ec861556cbaf17123b87bdb0d3c62bbf31727dce546660f941c30316d440d2b214aa62cef4074b41d980b13d2ffa9521bc541c04b4459 -DIST firefox-38.2.1esr-es-AR.xpi 453983 SHA256 1539d6b82a8a475fab958de03819b9ab866531d826248882f70dbedb52caa095 SHA512 822acb3209e36954546ac945c2b136b189fa43d87b814a377ab046486a826bab08ce9a8499b1129f6fb8024014bbfd34df7053adf6b7182ecad5b9edaec40f2b WHIRLPOOL df36245571f7ccfa3f19dc56eb09ec7331bd70f1585ac82ea371d98e9582b2f744fcb89158445e15d75bc3ad893a9595a49e7281ae95eae6d3faf0d92df7d186 -DIST firefox-38.2.1esr-es-CL.xpi 384679 SHA256 987c370767ef39c784977f15768a79833052cfccf53b90ab0ade524270fc299a SHA512 e01aaa24200f8c2864f77e29d3504b1949288338b6785f36116c4aa34de8ae2b3974b6c7bc52cab6de95239dfb2f358f159c496c4339070692d32ae2e85de6a4 WHIRLPOOL 4d1c4bbabe2d5d088ec518cefe87b76dd90b570049b01d0e6eac4f33e76c069a743aa3b4d45c7ac1098e0a02a880cee87ce00d2bea629ef6b6c895ab2cb68b11 -DIST firefox-38.2.1esr-es-ES.xpi 374073 SHA256 db861b6fb4eb4b46cf21e3fc56ec3ba98303cf0aa8c2d5c1fa4efacc93342400 SHA512 60ca1010f9b21957b0e487827f458e51c9c8dbe2122153df7054e04f3b65fe9e2afead5b7d22810b04388d94b1993ccda4e5e928ef765da0e60326bd2298c190 WHIRLPOOL 938f3948e4b1e01f1adbc36972ccdf9c2111ee5f99022fefba62cb178592191ced5e3ab4296aea7fe2f577d208ae1b8c00b5f9f93e7d8c4918c0d86f26bcea14 -DIST firefox-38.2.1esr-es-MX.xpi 457049 SHA256 b78492a8826850ef2a3f7d7c192c15af573b59c64871a2b849c98277eea28234 SHA512 352df2f6384a0b5eb5771ff8fc9318227ed2a2a9ba02cd548f6f35db3edf5cce71424baa5c99339dc983b8bc2fbbabbf4db4404db37718e2dbeefc2ea985457b WHIRLPOOL c705c81fa380faaf70bf1fdb5055cdcf80a39c5c5544926091c7aeeabb40d502861327cbf4e483a862615f518987a6c75ef9b469664e49dedf6a61413e92b5bb -DIST firefox-38.2.1esr-et.xpi 443228 SHA256 fe133da93e7c1e88f1c39321de56f679db228e7a0b7c6cd08ccbec09579cb9ac SHA512 873f3f8183e770a01151fd693f28654a0e34f0fe730105b3b72369b6ea6689ab16730b1d67f52f4747bd68976f0f80485d9a876414c6565a4859ab758f8ad7c4 WHIRLPOOL 71cf51dcdf8d0af53a52c8f06ff504ec98ddb1d9daf5b3a84bdb6a02b07d2d2d141c2314c3ac043999f24024fd3b4f4ca4e1f0b4fd7ccc3808f6ca9356416557 -DIST firefox-38.2.1esr-eu.xpi 466555 SHA256 4b34e8fcc664fc47de1ee7fe1b8c4054a8416288a89198f1e772d37bdb0d6dad SHA512 204bd942ba9360aacb5bcccda9f9d76b289cd9d73fa19f7146e6b2b89db9c9ec993d8e49a2d32924be35efd82aa200c6a27074c36cd694c4b85df03e3fd46d23 WHIRLPOOL 6535aa3f3f217efe443320af4c437a0bd96eafb33f7a3471e1c942229094c1713e221cb73ae89536c9ac43c586e90a944f18b8c952ff4a98869a18f73fe80623 -DIST firefox-38.2.1esr-fa.xpi 518282 SHA256 6525afff18f0e5e76ba8daa67ee86121998ba3fa199215aa207b83759a7ca616 SHA512 f7eb334dfed0cf60dbcd5001c10537a0f8cd238d4c7a27f74f44f38af985cfe172eea8db58075d484880058131e9772db1d110d1609ad65a7f96fa464255c135 WHIRLPOOL 66ca74b443ddfbcb3e7eea3012f9841f9420149e574ea907c5ca27782605ef4723aa2cfd928a9349f23d928e9454b8d122572b960f69f57efd253c6c3335a696 -DIST firefox-38.2.1esr-fi.xpi 444852 SHA256 0930c3a33eb29d31789e7a880a018912da6ca4e9a51013e08bc311d775f4021a SHA512 d61836aa42232a05bd8cf9b6d7e88fa4a550c1e201a090fd337c8afbc45c495ec88cf9fe23ffa27fee52f3782e894c0568adc496c243e06fceddf738ab498100 WHIRLPOOL 990b43ea313b88598d0268a1d902f928823aba4dbf3adb71485234514e3d82bc542c1f8847e0fe4b5611f77a831b4ca7f7107f0c31da32b66fc19068647c05af -DIST firefox-38.2.1esr-fr.xpi 461401 SHA256 459b100943ac236091e5945aa84047c7a0b540769c8d63cf2f527cbbf645b401 SHA512 dc744452636a15cfa1863ace47dc8cdb9e8115034a7a4e9772089bc26c62d95039b62291524ac83f1810df11163c7609b59c954e1b935e5dc0aca5f368e5c9d5 WHIRLPOOL 1133254e25da32ce1412d63133f55a0e336d279db082a7fe4a6915761ae70d076dfcebe1afcf8d5d3d24c7715c78aa3cf0f47dbc2404e0f77e550f3decd9bfa7 -DIST firefox-38.2.1esr-fy-NL.xpi 455538 SHA256 23cc544e74606aa72e9ad2d9c3bc2ae835c82a2bec5787a531e5913dce110d18 SHA512 c36b37593bcff2575ffa453d4e7e0b15c22f343a9faaf388c5bd4fa96a8db099c25c568eff2c1e7841f52d421064339c2588f7ee5f0238e03c67baf195dded17 WHIRLPOOL a50a4988d8e589dd8e44a3c418b88d5812a142b64e31b60036971d58a1f8ffb0ca7e5c07bb2d9cec73ff2482443840e219d36e5a07a9b6bff97a32a4d1757ec1 -DIST firefox-38.2.1esr-ga-IE.xpi 469623 SHA256 0e45539bd39deb9315070726b44c01a8c12c9edb0d1773dc62bc606c45263500 SHA512 037808cf9b106b7c3716d1a8e0c2ef000fbad1011ccdf9030489b52ec9df157d588d60c8d33a9182a4dcbac0c460b5ce5b87c63639839f73418a0b5cf1709ebb WHIRLPOOL 9005b19a658394fe6239e6289f89fba0126454d067f0139f4ef808973b2340aa32ffcd159c7aa7eafa71b9923faa770eea8cde986b559f09398c9ee31371f93b -DIST firefox-38.2.1esr-gd.xpi 454616 SHA256 7d0af6433a55c2b066f136de7cb2e19182f2357d7e48ac7711dc0dea17c27f8e SHA512 968d7ed84537baed632bd07d24a6528ac68ef1d00c2a3d51aae3f025c8ee9c6380ba5e21fe55cc80bd6d637e38e6387c919afbb0a08c9efe9985ec2451a798eb WHIRLPOOL ef737729d81f8901bfc514d25c3264a30dc546088ea400ee21923e7f62480046a8b9ff1bde5fc61c3b08832acbdd81c9f3e960d2f7677da7f4cb6717b60c8bc7 -DIST firefox-38.2.1esr-gl.xpi 448923 SHA256 9253cb864e13ad8f86350e3560a08705e3b411f5afb69b66fcc739571a5a9697 SHA512 6139e627e838442f6f1c6717d1af70c52be5f0d3b3acf0300866176e26475224a3b5998d5fdff47293542b28ccf6d282267bc939ecc0fa36e9b9e7ff781c9ccc WHIRLPOOL d1700b5d77b6ae0fd69521b7bea7c8c66e509bc1211f026a673fbae627d1e2a1ab1198d256e697d543cd023517ab5d7a029fc72009aa1594bcf3153fc98f56a1 -DIST firefox-38.2.1esr-gu-IN.xpi 477979 SHA256 e926a61de3fbc8f7120bb07fb0450cce81d9da6842bcd5fa7a8df1499fa11013 SHA512 528b2c1987f006e7315fb4bea331409b1eca4898a9345e53400bb0473043f9be5a850014c3acdb24317cdb56e956b8c9d7c28a1a4e0280db5dce38b3f7a518a2 WHIRLPOOL 292c4d011db7b26f1883fcfa817ffb4c7848657abc2491b37d845141a77b6c291001490a7f383ff25c191c9899257cf857bc3ebccbe749ed1b022b36a2bd89f4 -DIST firefox-38.2.1esr-he.xpi 486784 SHA256 b14462221fde67c0fffd2fa0469e6c5a476540111088456842a59809e1e6812d SHA512 9c6f99daff72d884f760204c00b2eef1b8cc6953a5daf4d8d087cd0f11d37e690b981c090b7d2d649850bbc08b1a9d52e8e682eb3a781572f717f263069f3308 WHIRLPOOL b5aa8d7a0b6277ede69bb24b800ef719f0c22fcca9724e054351c77480cf677c1e38fa60881ce441483d602ec8c1ec1c069ef617eb3a5e27ab261ae181c70456 -DIST firefox-38.2.1esr-hi-IN.xpi 508166 SHA256 df8683b412ccb2d4142099354b0759e59306eb96be12760c7c0f58b7b48d9411 SHA512 ebc56a532892f46a2207f903ebd646297d87659537d9f82df79310af4eb36323b3b806de8e8742353c5b4c3a0de4af88503740560f27b9c684d4858347e7ab8f WHIRLPOOL d00028be489a1b9713c38bad8c304c8c5aa3821349ed929f5f5ca61cf561baf96448ead01068c5b45d4119e63596932d48a3bb517c95a63977481fe7d130d942 -DIST firefox-38.2.1esr-hr.xpi 478270 SHA256 2405e5459c45abbf455845eee66bef90460f4c5c34aa1abede38737d2d8bbbd1 SHA512 e33414e48399d1372233129511b379c1b936310b398dabd11b78986b97a19ed9310c4b6bc4168649293d01b4cbff297b7d3a64bc833fe3f12cea0b60d5437e65 WHIRLPOOL 3d5a733549fdf95df5beed5acdc817b656d7c068cf21c69a722eef38f0bf8243958ae38b6d7eb07384fbdbbbd91f2e4bb7a5ff704397f82ea22672ab420ce1fa -DIST firefox-38.2.1esr-hu.xpi 453554 SHA256 7dbbebe69ff4ae414909e02eadefd1db7b7585ebbf450c6906e515cd55ef5144 SHA512 11866f61acd467d6367ca1d31cade3efbee840844ab447b657e864fccdc52c4d8dcce87891f0bc590646d56c89330345cad19269236ca1b70f4888dc270d1770 WHIRLPOOL 0e8a90fb62da271f0ff4bc6f979be878c4337c17c7260a92fbe597c0276a0a46bec4f83686fc3a7678f5a3f7475c78e46f008ab0264d699676e92bdc962dc655 -DIST firefox-38.2.1esr-hy-AM.xpi 534264 SHA256 20a4c0b5abad43617850551aeb00c303fb74a11cb0ffc88a5f6a21500e0c707f SHA512 7996eb7d0231caee84f0df345000201b320dfb2221e12a8fda480df9ec1c53b2b52cdf4fea30e79144d0fcf942e98361a19ec21783fbb21ef1fd844bae6b0c19 WHIRLPOOL 8cb33e0a6e3c23e59d683437edadb55f2a205f25492d6e97012a63bd9e9c4322bb6276a8725b865943276d616e3618d9393647d13ef068bd9909878c9f707271 -DIST firefox-38.2.1esr-id.xpi 431488 SHA256 bfc5fe681d846d57ff34b69916a2a67182a020652d7c4949f6835e84ea296f22 SHA512 58c329e027b8d5bbdbee4cfcba44aed6756491be3b2ef48e54a5d9e821dc8791315fa760973a54d169b9b1ec7145f2075d6816ab1d69fa6b7656005cf2a5d575 WHIRLPOOL 3764750f90cf344917e881c32340b54689dd012813834c208558ed25e6bfd86d78be75ed8e30840f8e42de0feab63b9bb2924f6a0f12ca7bc87c89808e617084 -DIST firefox-38.2.1esr-is.xpi 485129 SHA256 7db45517845cb2c10240e8bc208aa98eb59ca9f7e4ac63458ff73b01c6f81feb SHA512 20c99a55e42d0b7d30863e7a191b094bf86c28dc5dc662faae7d87bfcee4e27c71d657a922ee8ef1773a65f86504c602d3675423d64e900df21f2013aa16ee36 WHIRLPOOL 53ae5203ba8407ed500b377ae4e05b8e2af832a47e4ebd2298206919b432ee8c9aa378399bb219eaf0c09118e5cab3c977d00372b9143060d99d665a03132d98 -DIST firefox-38.2.1esr-it.xpi 368409 SHA256 0b34622317c71e5d4ef73a2c91103c81bb93e00ec6745d815f5b5c5e0a4a80a4 SHA512 2de44fca99a2f3637df02c19a7902990a5c7347366ed40b3546c84e62e99c5a746ed49f99bf1d5d0ea7826de096a9a07a8fdf5c1ef638170fad99c12d7c80b42 WHIRLPOOL 0f96187a6a9f7769823fea8a94b44b7bc4ccd6eea287fdafeb674e7bbecef325070281a3c02d3c6cc84bae8c9451bc04173e51539d1d66a35849365e49173977 -DIST firefox-38.2.1esr-ja.xpi 479113 SHA256 7df70432dfaf748eea5edfad608a3fcce377f1c3d06d1012f2fb28042f872ae8 SHA512 5a17aa43fb390f92b703d076aa57cecce9bad443e8aa8ca143755a823994e8fb51b933e628ae39380c9ab063846636bb92a148224701cd8ad0b26ba7e5caaf9e WHIRLPOOL d2a92382f3c9182c8f84f48c403d90ab5a352164176f62a168de1cbb04d0d78a495e5aa1857961e8785c6cea1cc8005085f6a93c7697c3c5416cfcc17d0ef70e -DIST firefox-38.2.1esr-kk.xpi 503568 SHA256 07131063fc5caa3a3f20d9f6140d3e0640c81e842389cd77c26ed722ddb195b0 SHA512 675a5c52b54a72a228c16bce328a68b9ec6a15621488516011550afd8ab2d7f88615111ec4874c35d8064c9ebc67fca5f24b35a079092428a618cdcc650c7634 WHIRLPOOL 8bf82cba02373201d141c372924236c5c69189199ed374157bcd5e0dcfb1b5aa0b0d1fc10815e51edb830936a2a2e6eb78d14dc0aac7fafeca61d3bce88226b5 -DIST firefox-38.2.1esr-km.xpi 565673 SHA256 35c67ac083036edbc00351f3c75b6bd59a57f49b8f49326b966e49ed1c440769 SHA512 4a4fdb3458145a96f490bea83094e865eadb0ee72a7be6180a7e5f6c9f106a66a38a9fe066076ce3a9b280e9cdbdad86dda1c21aa316a19541740540143ce5ca WHIRLPOOL 84c8aa57d7990f87dd62faddc150d627d35eb996a0f102bfe04cc207b282591e25cd6840c754a36da104a574c3dd1364e749b7b40a81864abd1fb19c9efdd20d -DIST firefox-38.2.1esr-kn.xpi 533464 SHA256 b88e298f2e884a027a993b1e08bed8d4b693cc86d0cd9593570cc83561e9ebc1 SHA512 26b629eed4b266eb86efc647f55f06f0e8b4f618a6241445b265cee4b99ad42b28ee85c431b2aed23e591fb68224137df42ea64ae26aa828087360ac5aad6131 WHIRLPOOL 726c43e9970cab57d55eb218b88b65777e45ac4269737cdc17e38bbec4cdb113534e556fa7a143955fc83ba679114abac5b9826bea7cc6220781e9a98832a8c6 -DIST firefox-38.2.1esr-ko.xpi 460853 SHA256 bb7f4562361941f1f6cb5f157b52a0c8584e52eb8b1e0d643b00dd7bb0b5c51e SHA512 1d8a6dfc7f45c0e26811c779d61a146388519286e972040a3cba115dad64fda8f0bfe054c08df3c5ffc681a75a8f24a426ef61e7374bb5ad9b1f251685ffc418 WHIRLPOOL 35bd2a3cbd83bdaab2a3ce16041e9e3f0e32660d8166ef69334a5bb3fdbf4e62c6d61e7137bf4c81275fe9e4c3bc6e3f8a4ef456340c72263b3d3c849663e300 -DIST firefox-38.2.1esr-lt.xpi 486452 SHA256 285abdd84d600b7aef0eb17371879573772e357d147178d02cbb9004cfd01d70 SHA512 78b27ca774a685835ea1b78b9175650c643ae8399859f1579fea16d0749a11705a115ec113b0de889cef7657a31d234bf2fd1ee4c4e7af17bc7a93e0fd9a7ca0 WHIRLPOOL 37cbf7ce0589a0111d1ed206e54f0ad4e80439bb427c24860805fe651c3ff6be245429919439297462436cdb17815c08ad4c17a37c7b8f10f2ac184751a0f01e -DIST firefox-38.2.1esr-lv.xpi 467197 SHA256 b5b427806e1b7172110b0570fe381bd40486790c415dfe8720343c2a34c41a64 SHA512 4e6c32a9ec46416b0427126d45296a1d7a11ef96b281c03cf7ed406fe10d7f18c2282dd3a25e0db2d4a839eab2461ae7e6edaff4604cec433bceda286fe3f0db WHIRLPOOL cd6e0bae9fd9cad9c7c63ec7e2b37fb66457309eae21be46c574cd786a39e0a93e04180e63f38b60589b0fad0bd0e51868e198dfda39d4264a4c7ac51f1536fa -DIST firefox-38.2.1esr-mai.xpi 514666 SHA256 443c2edd6fec5e81d19552ba514b2dfc8330285fb0f984fc735f4a1b5de6a4f5 SHA512 49a1b13658c7e93608dcc88c991406bb8e4fcb902a5945e569e4402a9b98134293d80716cbb10360e4ca8ea6895c521ee1a48c05dbf7b0f0e208028b50970002 WHIRLPOOL 7a43b1f9c33ff4c6cabe107310d38ca98e35400d9840ccdcceba7cdedfb13d8919b8bb2754188f7c70d65ebc6578943b2f530d63ec9a2d18cb3f2e28c8795275 -DIST firefox-38.2.1esr-mk.xpi 529205 SHA256 b57c5314d1b3824396a0cf6a4bc7d8cb70bc01730443dfa791bb393969841daa SHA512 dfe5bbf05e0187cd42229cf6c441e643d47bee7c56c62f766e7d6bc75494ca86945ab5a4403f54c9f7a81d2837289076066c3831e4dcc99c41d5ecd80e95fadb WHIRLPOOL 2bdc8fe754fe71cb69ddcc6dde7aaa48b5590377a619e6a38de313c1ff11531ca0853bad097f3dd9448164f1ca75db448a59370a67920ab6bbeef4eb63ab5966 -DIST firefox-38.2.1esr-ml.xpi 528919 SHA256 f55fecbcb7a2624dfdb557584c962b04e0b54bede3bb007cfdbb28333022fadb SHA512 b67b03136f329c14cf2e6264a247dfd349f2215b7eceadc01554bd1da6629b5a1a387b1762b4a818617abf1d79cb32eb7370376058df3028930618481281e98a WHIRLPOOL a70648fdd5204566e3491d7990c04f553965c8fe1bb31e0ece0d071017e08aba810ea40244a97beec758938e0177fb515fe2a4566c5de0137cecb538f0961fd2 -DIST firefox-38.2.1esr-mr.xpi 505961 SHA256 16d656c2094e2ef767d4d6a3b6e290d10db4902f71dc8c2e9b1410358bddcac8 SHA512 69ac24a50df53c180e31491a62bf55fcce5a6fd8c5091282d09fa877d69153ddbadfd508ad3fae932c58e26f7a50b615c2e1ec2002faca17ae892c6462688e13 WHIRLPOOL 6ce9c81d8c953f80cd5e454b8dba871544c475f23befcfd1d02ecb0c9e40875042b01099096eaea060c1eb29a3dcffa39c0b73ff1495e0c2cc2eff7c16030c24 -DIST firefox-38.2.1esr-nb-NO.xpi 444177 SHA256 ff22df16587ed823ddbd422ef92492737e5a995a776413017c688f7b2f5cfb6b SHA512 35d7a20f3c115ddd483f78cf75ffa6f612d80bc06932ab6f04bdbc8e27bc3ddc29860db4b9da66dfec600dbf020fdd4c98fe56177600cc2b4aeaa687a683f387 WHIRLPOOL a7ac138b9032778c38b0b7bf6d7c597c05e0067c9fbe928d9deaa32ffe77f89f3c6f64fefcdef8f63180154d1a2f1f45aac22e9132dec7c083a8da994ba35e57 -DIST firefox-38.2.1esr-nl.xpi 443995 SHA256 294d298024e333812504bbd269f104ac362e32f5b71b4bcc21591acd05cb52a1 SHA512 60c8009dcfc2fd913348d8c798548c667149eada33c7804de1466dd070f74bf6cb778113252658bcfa66280be383471d1afe22cd5ca97669f09738601407d17b WHIRLPOOL c76e5c16cb270cd118e88fe817888083b8f409c3f61d030fc2d006c9e47ad13aa8c1ee8d641bfb2bb5e317049a17f609908f09df1a89235b11764909a71b97fd -DIST firefox-38.2.1esr-nn-NO.xpi 438452 SHA256 c445a5f538cec05c69d2a7838f22e18123f34d7217454984ff9c02a7072364f6 SHA512 1fe34e97d779e9ea4e9d78090e1fc9a28fa82aa29cce9802e0b83e21f7645570bc3c7e8368251f4b7011ec40cb9fd1b9008cedacfb733edd410d57e68ec5e527 WHIRLPOOL 842cc7dcf861bf190e519e2ef2f222e3d909b4c1f6c6b8bb80df4a4fbd9079b989f29db5ae1dd3de4b254176bf9b286ef858126f37398512c49adb692d8e7b9f -DIST firefox-38.2.1esr-or.xpi 527050 SHA256 af6d63813c6870ac5993860940f06c91611fed21cab87da34f7dc58d566fc751 SHA512 0f1ef04e843768b23966ceb699578c3476b52fb97b8f9fd7babdd0d4ebca95bca8c05178f6b0cf3ff7e3712e6473a48a795476c31d4c48b6dfc6e75a36539fdf WHIRLPOOL 043b5f848601b4944033ad66975087653688b3b290431c8da56dc247a59665fcbf7482ed0bb59cc1a1ab98fefe7116a7aec22edb2d0fd2189043ba67d4d3646e -DIST firefox-38.2.1esr-pa-IN.xpi 493723 SHA256 adfea7204e49f629aa1432364cbe876b2a40b339e4279fa9801d650d17920aaf SHA512 59c0328b85ce5644ce91b5c0e39e3227557f232fdbcf8632cd338a1ae82d0aef92e90928fe1b55e95f003e1062cde9f269c9ba8985d87e2a509d61784443878a WHIRLPOOL 395df922af6f16e03ad4b5d631524f0f1add6a6349c6c4a3cc5312d4cf1b55f55b938b47f25f2267fe50f906bfb22155427504b7abb1c850406c1b3aa0228af4 -DIST firefox-38.2.1esr-pl.xpi 406567 SHA256 651bdae9f95b09fa28db0dc6c47aec3271d628d2ba508797750a5dfbfdb6af8a SHA512 2202df6adfb7223dc541f19b6213ce42cab32eb0eb5fd0f0af4b6c2110f2e5f01392cd5ee44fc1cdac2a841daeebde06e8c3b89e6c80c86885051eb8de5f29f5 WHIRLPOOL 6acd9f43ba61b10ea702d37260eedebe4327f30d9a8f232ae173b98a84aa472ae164cc3ae2926fe2f6c47fb704029c6c3e7530a326a26eaf95bb49b1399ea127 -DIST firefox-38.2.1esr-pt-BR.xpi 459811 SHA256 c4c0744d55113c5cf6ecf9c4ca2a283f7b63a4d6ebd952b0c271f5932cb50120 SHA512 c69bc4bae982bd1cf9558735dd3a595d63f371421c0804a8f4c3714f6ea4c9bdd798e9afc6289b6035183412d5c02f5c59ad14dcc0de165bf20bccbe8e251d46 WHIRLPOOL df0e5c98f778df426413f5011c9d653fdd9dc3918c35db7d4d2662af7ef93a802060528ec5aaee627650b0db20ff79f08d42198d441a055c6cd7590808f79f6f -DIST firefox-38.2.1esr-pt-PT.xpi 439976 SHA256 6f950c7eea881dbcd2f4ae4cce41f6ece38add5e511c741a6192c1431b6dc49f SHA512 cd7c6453e9549684f00c66638bafe2d894d370ade0166e0d00523f5323f4dba81e49501b881e7b3d7d36cdba7f2ea90f869f69b42cbcec5ec93fee266b806484 WHIRLPOOL bb956f293f916b70456757f5b50623f64ee8458248e7c441635bde83a886359f9647d9c4714764a001b8047247006675178ce7a95d4fb277b5e07c256bbf8c56 -DIST firefox-38.2.1esr-rm.xpi 446286 SHA256 5beeafba0a7a1cf2bb14de27cac8284ac713712c3584e2d056bda5fa10d754ae SHA512 51224e3b9ba008d57c56c226eeb44ab2d17f44d430e490d94400fbf658d3e5744322b88bf1f4ff6983b8aee08067b93b1d8ea056f4061704210f0fe16d9a95b2 WHIRLPOOL 5499751ab84a665bfb5a112e032f37a86bfa7d732ffd208b3bf30054a32cc41fdf1016e4e6057075269a27b5d2b8d67c222ce8f0404af1c843a1d121a98cd569 -DIST firefox-38.2.1esr-ro.xpi 494080 SHA256 d086f67dc27bb06c194e12bc0f47e52b58584637916da61c42da977204d6739f SHA512 919569660889b56a2302146e6399e199718152b6007c3ac8aa60d12e01a9735d1c6422fa51709347fef21942796160f924ab8d5362907659e376fa69fe1a5050 WHIRLPOOL 7845916c87c2e8d4fa1391f62f75329b103f033094777bfb307ea4f1a9d270d2b5e9c42d8c36de89c506ced7a2dc10a536b2aa294cdd016b05574f85ab144245 -DIST firefox-38.2.1esr-ru.xpi 414418 SHA256 d61806e7f8080d3fe3b57baf9448ccbf74fb9a668365518322b0fd2fe67a75e2 SHA512 b205fc64117b56ac23d843f444ac459da64d6bf28ce0d5d9342ff6a1bc9cf73cdb2cb3cad5dce344fa8715b3f974e8555b0821e5532af818a8eaa645b717515b WHIRLPOOL b25b4d7945bc97d1aaa86db0cd0399faed15af25fe60aca6f00f7ad409ba1a6ee8d040e30e097d31e84ac1b37a51d14a48c0891859edfde33bfabd425d05fa3f -DIST firefox-38.2.1esr-si.xpi 537394 SHA256 4d48d93f3a97a0b2853c1aacffb726bf49c32822069904fe419ff3fb9f04bcbd SHA512 b32fa1c9321871e0c0f077b9eb48f374b07cb436aef42698a751dc0c606f71a1a3c8dd8f32fffc39ca0c2ea46756134a414dcfc63c3ed39a30a2b4198998de59 WHIRLPOOL 4a6f449c601f4f2893e2a47aa236820ac13ce98f2172538ffd5e8ec03597904e464d45bb1b7df3656fee9cd6ae0bbb76b2a8d44a9179a4b293bee0e79597cb2f -DIST firefox-38.2.1esr-sk.xpi 469436 SHA256 f1b47a7c848a1d25f5bb3744497a94807e550c96e2ce34f06a07055e0eb5879b SHA512 18ba890e419f5ad7e14ec2f420d00434d08d55c420db9087391b8754653d9c3e4576aa1a2f7359bb43b75b8bf1729b94107fb6ad0739acdd6786da3f99b6c929 WHIRLPOOL daa3bc1009f6a2e165a37ef7940145d546d9b6521e5f54b2e728ad5844dcf3ea505f5f2400cd90866a6f0fb30e6a204e47f612aea2c1ff6020183dbc06eb8f37 -DIST firefox-38.2.1esr-sl.xpi 441594 SHA256 c663bf7ec450a45c3c1ee7a46e89facfc43717831e014f077e4fb994bbcfbd1b SHA512 f7f174786984cb720da815b29345cc42a5c058363fc1240b3a0f3c1e489f25c6b0f03650d12e5f47b8f44d5ee6bda3b3a52c1822fde1be283dd5288183b1024a WHIRLPOOL a3cc71f337b38f5eee83e6f46fb799228f0086f8a8a6a168fe22007e0a41a5e8e6c4652922d1480077f283368aa7e042b6f2bd75b4638ce7f813b4195e94b1ed -DIST firefox-38.2.1esr-son.xpi 449268 SHA256 305df206828887322e4f3d4c689224e1187e2a13b16dbcad898b2a3aeff5f25e SHA512 8f76bfdd6cb66598fad0708c87ea88f5d0d06a3f9812c98613022d49f86b3c748cccb4f194ba7d434fb083c60036561fe60b20d0c9ee874ee8feb59a51b6c58f WHIRLPOOL a221b92a58cf52bd5551a508cc3573ec4f2f46b673da29eb45ae1da7a6422854d0a14882c3623ba258ebcaa3c8e1ecdff10699b226079f31ffa664ba285704a3 -DIST firefox-38.2.1esr-sq.xpi 486075 SHA256 2674faca4612734588e56946796c58725016082689e026ca8b805249447c97c2 SHA512 af57a7fe4789699e293e5bb660ede5581a774df95f049165099f56e236595ee416268439574638b024e346e1a23a7a012c22ef641a9e84837c47364e955375c0 WHIRLPOOL ec706ff9299b87701c4bfb370357f928c1994bda402b512ab11667cea9a391b144098e904583eb08a1540e2b148a899618b8b14b493ed89cae83bb30f1953946 -DIST firefox-38.2.1esr-sr.xpi 479420 SHA256 499f11c6a5f8dad76dda59bab9007daddae5a878e16e2a6fc4da46319dc66644 SHA512 6f4453398a4b120316988bdae0185673412a4a89d130263006119b1ec1f64fe395aa7294e1cb70485c03f6fe5a0068ccd78915b50a06c7e4b73c3f3c1640cf96 WHIRLPOOL ce5e78a08a642771b336b213704ba314441dc072c7ce3f567eb35745fac52e3afc84cdb2d103baf105d179c0ff2cd870788291e65d4f60ab0ac06ec1323c5bfb -DIST firefox-38.2.1esr-sv-SE.xpi 452632 SHA256 536084e596a969fc8d26c497b1155a3a41f393cd86fb8c962e75b142247dbe11 SHA512 a5598fbb6bc15ec26c179d27059ad3271d4a29306cd46437ef95bad2a1c14960a18204437271372e8eb79de58e8c8f10fb4a471e2cb7cf246af5320bf3b3b04f WHIRLPOOL 4d35a663f9cfbf62064368726c918570ff490d5559448e1a9222efec4b1b9e28b01684d7038d6ab7e9f2ee68c430e7822a33dc486fd28fe975cd3943326a62cb -DIST firefox-38.2.1esr-ta.xpi 506607 SHA256 639fb75e4d13ac50db0e70d35a92571353339c004a8bcf2ebb5e348896f57d67 SHA512 6c6fa8cca5d54e96a9049d5b9e614e51d4ebe2d3d27afc6004a6c8f57b6aeb1537e197edca113a8701298f643aa085a1af3da7d1d8f0d86bf44f24b537527404 WHIRLPOOL 5a2fb3a736e57b8ce60ffa7cc9540932f135205f5448a444de7f950c7a614a0a175c41df7370581af06bccb15bba0c1812589b46d15db1c02e45d55323b7fb6e -DIST firefox-38.2.1esr-te.xpi 526250 SHA256 3b73a6b26d29260599d2d2b24a7bc0809a644de1e8347e60ffd4c5014109d0dc SHA512 bf86775c55b9cef3987cb6f93441ebebf85068abe0eb1a13d02cebeaa9e56c65e28488e36fbb77f9f40df3b7d44ff1ad9d6edf5d46e80c5c26751d0977498348 WHIRLPOOL 81d93405bc95962fb9a1c2c043285a87a281dea8bfee754848b9395fd14c0c5dd9900f131d9ab33b36059afd4916732af29a2d3c50cdbbd166e08eeda57ec4de -DIST firefox-38.2.1esr-th.xpi 534271 SHA256 a5975df8f977fcfc7e36a2ea53db17d15d1a409f1757922cf02e08895564a054 SHA512 845cba525ea13ff51874d0208fc6d832c894cbacf675bc46cddfed7b50b9cf471476325732a69a7607b64c1da5b4906c0a86632b22ed13fd69c9fccc5c512bfd WHIRLPOOL 9828854023e168058bdfd6014f843dc7c2f13556b85aabbd75faaddaa2671b8d83356abec8b6742ad3883b72423b4c3f02ab00e7b4fe8f651f414b083b707dfc -DIST firefox-38.2.1esr-tr.xpi 481076 SHA256 9f508923bdcd00b802bb9fb6d20cbd69ca87ba441e9119ffb76b243d7ebb78b4 SHA512 0164b798943f27c2324f7fb12d2ce1239130f024eb32c95f18d0d770387aad78a8639049ffe7f1f4212221780af1b820516593b2c7f9f9ae5685904a31d25525 WHIRLPOOL 662d83b26f9255f4467389898429ac2cbc2305e66d415d53a2a24995b2509198c452c8f2d5debcf5f815ee00010042c9f644df1aac0cdc426ec93c3b5d4f5fa4 -DIST firefox-38.2.1esr-uk.xpi 493314 SHA256 7b7b1216c9a5633ff4b4cb2eabbc3b36c01e81e7a46d3261e9251fef330a8311 SHA512 5f713587feb39a9e6e77d1acc740c09c4cb324fa05000f9145b7110c53d4e3c385c9aad4cd5c38ab51a9ff041dcc48338691f3e868fb5007baee6a0ed3232291 WHIRLPOOL 17cdcd7ac7c29e1baff613ad49a5d206bbf077b79e8d9a5820bd8703daf3a02b6c71e42b141c86bb03dc7a316d5f9b4013ecaf3a8bb105cf9f68f0b80638c963 -DIST firefox-38.2.1esr-vi.xpi 467505 SHA256 99abed00052cce52ddcd65a2edaa95b0311c75d3522b4784760d947ec7c2e41f SHA512 25c1dfc8ca725d2c105048a1a0b545941cc13cf960cdfcb6eee28ec16fe4dc5810ff423561cf65e1aba5a57fc11100423c6197e39da8bbd6935ba17e97976df1 WHIRLPOOL ad2b5a07c40cbaff6021b0785ab9a0976fd6a8f75f03a31568f4d772b4a05b435f9eab3893c54625b192927593eb8e8f9c944ea872bcb07018f0df790b9f99c4 -DIST firefox-38.2.1esr-xh.xpi 450242 SHA256 625db0cf3bc1b23a1fb1b49c21bfbb1671c4fea84db64ca6d0582d817efda419 SHA512 458dc67466df9e9ef512643f06f433cbd6675a874d2255e0b53f7f66bfaab5efc985a59d40a70aa57005e612da34e1ee10b8aa66b540f5e574db1d0e4f8fe839 WHIRLPOOL 01f5278a1748b34f46735cec3fe697b5e44adaf03ac4718b5086ae3e57c9335f112ff294302e85dde485b0d10aafc8da601d6195764689101ca48f3ee2eaf663 -DIST firefox-38.2.1esr-zh-CN.xpi 488276 SHA256 02ac98674f658a239c264b0631d1339e8c454f444fa9261db64f250033eccfac SHA512 c8983ee72715f9efb3506b48e3f9d1c485de8fcc8480ec6c028491e7d405afc570d833382db965be4dbd881358e007f216f152d29ce44bef71e6ff654c4824a3 WHIRLPOOL 92e8a78318267fc053b7867e9bb6e3206d78e0b878d599ea4d79a86cbcd4098345b586e49bde348a39a8da6bd2f8c93376ac8ed99dde8d8ccabc75ca5bcbdb89 -DIST firefox-38.2.1esr-zh-TW.xpi 467845 SHA256 3fe5c8582898d0b7a030028700a58f0d7313a0c9edf88568d176175dd7c3f40c SHA512 c9f79629b47f4de0fc2b595a9d04b7438c99e04cde5be14aa309db5a913eecd4c073aa9beb91968d168aefe5c2858095f49a8641a84c6f00924cc17f55c51d3d WHIRLPOOL d6341ed171ae24e69d6f897b24cd4c6a7be2908294e76d7fcf70b533845eb21db3cdf804a7640568b4ed52262332515488677e8f155ca918d9ff4663edbaf66b -DIST firefox-38.2.1esr.source.tar.bz2 180722074 SHA256 0143b3f99ccb390949d7f3847215f6f9b4bb7cd692f4f802921d2f9961bf270a SHA512 2cbed7da7c502b8474578d45b5962fb36ba6cba7d7395487a85a4c0274e10ad1834886a4fa5c980c398c2766e57c03512aedd1c82d7500b4206c3e03eefe11c3 WHIRLPOOL 78372824dbf9cfd9041ed79a496c414093d5689dc576eb4bf8ccc7c20e3b22b5936052e50608e5123aeb5669773858c90568e22e1de343f69b80f782e972dce9 DIST firefox-38.3.0esr-af.xpi 483326 SHA256 ffa2d6e68d8c3ca3fe4d36372ac565fd34ad925fdc1f3f46382afa044d8d55fd SHA512 5853f3c47b0a7e3db7cb247363f16c9ea929ad1d401ab5691a6cee2ebd40dbc638d34a10392625bffbf08a7ac80117776c067e10f77dab0e362fb0852f49e9a8 WHIRLPOOL e3b7b1b65d46225d2992b77963876ec6b31465288ee35accd4b12efaff1f9c6ab39dc11cff03268fdd2c7d8b0f2d9d6d0e51f8d4941b5a4874337353b1d4da1c DIST firefox-38.3.0esr-ar.xpi 516496 SHA256 60fd61bc5ad7db8857232deb0dae2f49882d9803d86d852daabe5debaddac467 SHA512 9d10b77ea9f8c6f67fb0f4e0e57fc7cedd94801ba130264754d4caccf068a0348fe6301aa270c1fbcf27beca69fea44faa9b4dbcc25852d37b82927f84558236 WHIRLPOOL ec0c9ce7c330be79b6a13b323dd9ad313efdca4c947c19862da945e74b70451fc09b6c74a63761f78f23e048563c80b4bad2143f072c6dcbd7df083e87bfed2b DIST firefox-38.3.0esr-as.xpi 509574 SHA256 14864a2372815dfd2c9bc726571b4d0d68169d55f9d0d150e91dfaa73e4cf8b6 SHA512 b6b8e3a9473446af790de6af814f0f7d7b115a0da4034edcce1f51d6873e88d325519171a681fa21b9c6b236bb5994271a828e61e2a05b044b3c3b23bf531a95 WHIRLPOOL b18f0d72925142a7f636a8bfc2062433dd51212d1d456c4a3b2eef676b0a6b801fd7c5fb6d7610727adf1ea8bdfab892433b9a7f49640daf456a6dbd1fa12342 @@ -239,87 +160,6 @@ DIST firefox-38.3.0esr-xh.xpi 450242 SHA256 93f9e1dfe71a596ebce79affb5764ea7057a DIST firefox-38.3.0esr-zh-CN.xpi 488277 SHA256 1c1def4062ce15660670d7d31ee7672359fc50e9fe4b1f8d80e96f0d8adda199 SHA512 e9fa12f7b3fe537e82e93d9435f64d235c6f9c48b2a13c5fc43c8912c9fa6989eb28d69ea80abc55890f0e706490da56194af3a3af2133aecb4ffe8aa4bc2440 WHIRLPOOL 9de780fa30840d1193bf498cca66f81419c3e8526d1156d3629efc837855c2a771415ad8172bd24a85bcc64733da34a62f39a6f686b22cf8fabf9539d7cf9ccb DIST firefox-38.3.0esr-zh-TW.xpi 467844 SHA256 1dbaae6ea46991f5298bb5c03f0926b48d77c058ff07c44601377ecbe9837be3 SHA512 2a1b70a5199826983f877e1b435a650150533caa708e43b437ad41ea0f67d48225a54ad6980515eeacbda843c1a901fe0556b7e2362afdc3d63b67831b6b566b WHIRLPOOL 77f09701a72ddfb7610c842c97efef613cad31c573a3b8b4277f15f2c64e01423b2800dd5237b529a8a00b8aec876998a2f7c66d8ccbcc95880e3edc86cfdaf4 DIST firefox-38.3.0esr.source.tar.bz2 181401628 SHA256 809f65502d256568220c52bfe09646588f21653c8c487e8018b10ff87ca67f1c SHA512 e3085663e0692b36cce38ed461d6d0a9b025f7e777aa58a9ee170d904aa1c2de3aa12c480d2d9e37f5d58d4c7d80ad33c913834efc0b350e60b59e55716b180c WHIRLPOOL 1d2aefa907aa19dbd6bdc917cfa615ce6da45e2688d7ff154734e9abdc2c3ebdc497c3dfec9c17b5b5ddfc26d6ee0db9884a969502855cbab9dd0a988a6ee996 -DIST firefox-40.0-patches-0.01.tar.xz 5144 SHA256 072c44c79ba82d04958b3fc3d1c6e90805cf71797a03b96961fd3a16bd14c3a7 SHA512 bb9ca395ee380e6ec21fefadc5c5052ce8490039577ac0245bcee309686e802a654a999b3aeeaf8d97573f102fba3620c9995ec145ddcdded2ee9487490f87f9 WHIRLPOOL e74ed6af06e61baaf0991d23849739fb8c1cb33c800467e76d1c15ae22360c18c757ac9f19d274ca9cc54a6f9a0d17f365bd815b4a35c94766b29980638e8c91 -DIST firefox-40.0.3-af.xpi 498500 SHA256 e6fac0b29616c3924530ea8714cb4bd6d836818b4b23b5fb2a8aa4e80dd1559b SHA512 6d6eaa0dffdcde1a64386b9bcd1c88333b9461c8c538a68c0435a5e62a6ff69fc2f0095b0afd2724bc97bd80f1fadde6105404757955e9da48c64613af5b1a51 WHIRLPOOL ac834163c30852980a512dbce9a30ea4a8086af6522df798fed439a1fced90a05f38093a7f63b30ebe2a7e5d738fbe22e2a070c05929050f100ffa25e083fac8 -DIST firefox-40.0.3-ar.xpi 532106 SHA256 3635e6899a89ee93bc0f5290799471c8c8493782ee2819d47278ed1c385179cd SHA512 87d73ad0a6df4daaacbfa8ae1d97dc9ba679520f13d88b82185f4769ba4b6fe2417f231a520fb815398038810e5def799a3f8c0d6fdd7d3c246665e15f954709 WHIRLPOOL f2eefe9d53dec11e086f9b161f4f0bc1240feb87ab2e939943ac171fffc4e72c8a7635be504b056a19e69d603764436b19e29cbacee430c72f3435d83168da34 -DIST firefox-40.0.3-as.xpi 522246 SHA256 bc13edcbf25ad488b0bcb81987f2c7be90ff38bf3d8abf40e9f14ab7a21b6474 SHA512 6fccd570102fb40f0083353c32b00833a297019f2c32624c37b0d497a22a8f4be767cd7f25863ee35d19ecd23e94bcb4f38e05a54931947279f2df011e735fcb WHIRLPOOL efda4caeec1ed7f2c5b8869ec2828ee176aeeb3b6713f36e7767477189f5b7fa4dd7059627cf5248b59ef1dc9ccbc12f0885238dd0c791a7c400b5a4d424de24 -DIST firefox-40.0.3-ast.xpi 408919 SHA256 c153cf18ab652c5535452ab514ed4288806298f32d8329e3adb8e67e53a025d1 SHA512 5a03314ee95b359c7401b3b0b684a8b2f33b8ec2728787d2ddb658380aeb3849f3fe464469c732369d6ed9b1cf7d08f04c54393b7550b818a5c589e2482ec627 WHIRLPOOL 87c58c81cdc0f87fb50bb512f3c7e294867340a5b4515d60ad50188e3e76282e8b3d44b7885eaacb617f06e80d511b71080d3f79287c8715a5d533ca88f07b2f -DIST firefox-40.0.3-be.xpi 464201 SHA256 6a91c11e4c0c2e0469b972d80b286fb3bf600fb8eb30184b94a3001972e5b72b SHA512 70f6843cfec35bd5745a21c35209411e55eb291a1503e5b7582428cf4b577dd9c5731ff7d9f6f784b5d6bf927f7ffc007852c035b8588c0cd25e8b5eda6b7f83 WHIRLPOOL 664f4bf32a353b9ee75cbd47efba99b36fdb0e6f9fd606a86560230eace10164b61701554edad0a558aee3266daca3a6aff92c97600a312e0b465d183977ba29 -DIST firefox-40.0.3-bg.xpi 503495 SHA256 0ed54d7e27ffa0040da087d716b1a23f36118e176bceef62becfa73ca3ed8b23 SHA512 6eb63434e0095a5b86c78b6be0891b9824fe4e7506b53f12a65cffa4fba4063a999670edc72100f023dcc3ac1969430ac316843b8f4f91254abdeb2f3df5c70d WHIRLPOOL e00bcd1fbeb2230d9e058896e939eb6cd0836e954dbc497e186790207eba25f997bbbbc314828a4c0a79513557739c1aa95acce87ce31edb6b28fc59acb5e744 -DIST firefox-40.0.3-bn-BD.xpi 538760 SHA256 8a6555682596254f617b41a406b3ea48f74a9c0aa64a180ab9760e66fc0fee35 SHA512 2e145a44a723a2a21cb6adbd25cded38fae91b4b1e5c00cf67f608923860de04567c01e22c6e0cfc309ee3d43bb10a64984afd1c25d8e6ad31f5d74a3904a54b WHIRLPOOL 5d33df8bf4d167df858350dc163d59cf5eaee73baf36b76382dd9b980f211215dde7035b53425087b55c506cc610062a343cf5cb520f7926d132f4954278ad47 -DIST firefox-40.0.3-bn-IN.xpi 541272 SHA256 cc0b8ae6969e5bf09d631dd621ee88bf25755dc0df6b851a4a0116c53a4e7b66 SHA512 0123b3781da314d3931703ac1890247cd6d26c007279189976307ef04e5e6344ef4f455c172985128dbce5efbc24f03cc771120818a125c2cad0d4767857f144 WHIRLPOOL d27b83ff683999a0ba02fde3a92b4384fc8ed3474a72281c146cb68df561efdc3e211203b2df45dda09542dab64411fcb086bad674488bf53832b40de6477403 -DIST firefox-40.0.3-br.xpi 456849 SHA256 54553c59ce2f62e5bed36372decd9e2480c770443011a8713d5cc23605caca0a SHA512 902d4a6cae10ea7f89165a71075609823c54da1f00312b9682c5b5aac3cd6dcc9d1a4cb60b42a34a0f7dc832c6d149167bffceb51ab3865efd411da1c0122636 WHIRLPOOL 6ff7db5a6165036f012c40de8056044b2035a1949ebae69fe15b49337b8035b7a3fb9a44f6becd5c4de772315fcf7dac4c177ecdb0eda0415583034979bb8168 -DIST firefox-40.0.3-bs.xpi 497332 SHA256 187626919baedd3be7d5525bb8114f3c6a2db0dfdec333977f42531ed500c064 SHA512 d68c7b5cde3846c75187619b37a7114984416bf18e55afb4ea7ff5309bf52a24e6886f5b96ad8c5e37984b92655fb8f7ad79e32b2fe4cbf23d0632de890c4e07 WHIRLPOOL 37151d87e8d5d645cf7695843409e1c5740ea4fd45dde3b34ea10b55ed3b8129e015ac57bab8e39a5bc35430f1ad0dd205f58566d90215fd12faf59638c2bf21 -DIST firefox-40.0.3-ca.xpi 474110 SHA256 ee57b8bc19e33a08e89d6a3d028c3da5b7b741ba31eb5bc5ebeaf600bb4b00f3 SHA512 4a769e42b926eee34cd9ee16f88e4a748d39b6b91e540e186ccff401644bbc53bd46388bd7d2ed973ed5d37c872a617b37e6a8739528d3873763605a310a76c3 WHIRLPOOL 69968bc6379dae6f6c2e2ccd226fdca964d8b1b1af8138a139302e39647b63323b431118bf6c08e2547136889f52675683b6e862bba6b8ca42db46fa305f8d7b -DIST firefox-40.0.3-cs.xpi 462358 SHA256 3a02d4f6a36f882f8c3dac164a2984fdb42b07c6074e4b3c82c7066f6ee8aa34 SHA512 a3c49ad7e71870db9314394cfd2fb471a4cff518cf65483cc65353fa62521975ff5cfd491308060e137a92ef5a45420874fdc89b685832e38440950e5333eadb WHIRLPOOL 9f3a9abca845acbc3574e22e4067195f5e2c9fedf742f0b1f446aac8ac586786e93bc48010c7a1237d61ef3762c45d6e428f756a8d674b44c590434be209a63d -DIST firefox-40.0.3-cy.xpi 459246 SHA256 6f1f87e2df406b2d8313ad0231751cd5f24e9103a2b5ab368dad23534da0a9ef SHA512 90b6d9cb1fd1dcd0f92f1aec3c7f1b2756f356ea4d54442e01d1e87f38fa73e11b0bb1fc46af0daa6ecfed2f51867e57be1cb8696d886a7a0738e780c1bd9fff WHIRLPOOL ce3c2c732b9918b6d15815616abb3db487a3b51fb6c468a143fac2bafd313cd5b8267aaee43389a91bc83dbb2a7a2925c415a486dc379e73f2b494ffcd71b2f4 -DIST firefox-40.0.3-da.xpi 465572 SHA256 cca57641cc00f92f7152c15363aad38566db57ae3df09e4701f20f2f3836f0ba SHA512 a5dc9a089c6751e8c10615ca28ae05503a80bc0df7538f805d6f556f8f9624de4ed3e033b3351eaab4acdea18aa7c94494aa93610de3c98f8c1a5281da359677 WHIRLPOOL b91023f845471b556352cc65bd6eaeed828d529887979a55f81883a45f1c0890de7d5afef03fdc604995a4ae9560396eaa49e63321ae1c4ced06819c306312ba -DIST firefox-40.0.3-de.xpi 467233 SHA256 a7f26ebd30781adf98995a48b03b92ea294b9d0d6bb02f3806b8d9b3899a5ade SHA512 c8566a4372033aa9e8153cbd2e42d9d7a94c36f76e40ad33d1a65ac4798454de16cc4b27cf7a622547198afd4b3bf475c0979143963c8374e7bd1c7515936505 WHIRLPOOL ea3477f6fd9adcdeca573bcbebc363665acd1c78cf43ca5b940c02f6543f21a69f6f95fa8fed418be7e25ef87b94ace92eb3c0d48276b2c8af63753252bdbd25 -DIST firefox-40.0.3-el.xpi 513117 SHA256 40d7f63513bb3d0b280bb25813b6a13f52779b0558d75b65b6a8fcb69960e242 SHA512 0061388dafd97dd847b6e1d6ddfc4c44da5c30288097ad4267e982c83c9e7b0d37c494ae99a0b0c8b8500208de180ed2d25a1fe9c72e16bded97eec71dea07c9 WHIRLPOOL 18f31e8bd899fed53ae2036014d03b3dfad75c0ec09437dc55568c81c46176a9adc2ba15a3a9ce8b7059d2e7521d1356c203859ede049674620d8390b9dcb5ea -DIST firefox-40.0.3-en-GB.xpi 451900 SHA256 e4fc56e6d8ffbd88df62dc5ed94ecf3594efe5157165727b22bbde72fd4dd1a8 SHA512 1c63e10e656cdaf531c80acbb295d28831eb7efd94d11594b2a02759ff8a2dcfa399d7638a8b525e4c3a7b0b18b2d68408cdf61305db2e41fef03f7e78fa1331 WHIRLPOOL 3337905309a1b9f29559c66113886a755b7bd5aaa089e467a42569257043d056dbedcb51ee7d8de5de34a134f9fe2f08338432f6eb9cf822d995bee4ac672e6b -DIST firefox-40.0.3-en-ZA.xpi 455370 SHA256 13b178fe4562587edb2ef0bfc72ea3daae9488d3125dee1288911d4d78cf8cae SHA512 b70026915ac0b50b0bed7d407a90e204a7eb7de76c421205e0699fc24c118cc97fe30332a42ea1c52e9519489a36302c45ad3938780f717c1b0df7c8f5f4a653 WHIRLPOOL 23a0fd7c32f990d2c13e4eec8f0339a3363391feb2ca13ce0c05e96c1212a175600dc59fb1bb8ab9855e640d3bc9814796f89a32fcc4cdbb918ec72757d60dde -DIST firefox-40.0.3-eo.xpi 500202 SHA256 993c33ffece8ce4c1e1fe4d931a752033ba191cdce8bef89b4459a1164e16fa8 SHA512 235f869d791017d378f8ed560ccf6b2b949b38cd52484af12ecd772a2448a823fa4a760a7ca6c24bf85400f990870a3acc1c1da10b03b8c5375cd8d6bc2d123b WHIRLPOOL 98a41bedce7f352360a30075617ab5fccb5324579be4f9a92c9ec8de3cdd3c2bd59a2d521aef55373eefadc8c9f3165739605715eb2ef17fae903db53090b8ec -DIST firefox-40.0.3-es-AR.xpi 468599 SHA256 afdca33ee50fcf90b19a781e3ff59766562c5c4f829c36961122dffcdc20f855 SHA512 3525338c1b8a6932bba661fee1430f5ef9cb9d2cd4111cdebbbd5f0827bd0e40a9b277bd4ee5d8861a15dbacaab2b23264e199a8e2a772e9e470557899290933 WHIRLPOOL ac5fa9fcad8a800c44ab47813217afe4aafaa6a440050119a7db7491a3e85c760b64983f9a5b7a639a18355c49bbc1162b07a1c8f84d4dd2d8bbeaefecefbf39 -DIST firefox-40.0.3-es-CL.xpi 394972 SHA256 f7928068f48d900b73db21ee0599017785eac6b9087364ccce55fc356003a540 SHA512 9cabdeb4c6cebcf35e3ab4bb7db6ae854e68da8543248001c4b71555db09b0eb371c406e09b8768bc4c6c3b6728493dc79ce8d6a9332a865c113a5c9f47dd764 WHIRLPOOL e0c7ce425b239e3d0e48e91b1c6951e1c0e4dc800845b762a580e0ccb59c72f8a436ccf5ef42bda82cc181de6a4183d65c50212e0e02b14e6192eb9ec0ce1991 -DIST firefox-40.0.3-es-ES.xpi 383894 SHA256 fc6564877ca5404395624dbc62e22b22731134c69078e432ffd174fedac8a0de SHA512 abca71301a691f3ec6848b580eae13472a1df07b0a5663eb8bfdbaa7df3bd8b3aad30931a274871da0993dcd298c7b1e6907c1f439ccdd12d0067011f4a9d154 WHIRLPOOL d0aa827b6d112f9f9e247a269863cfee3dc1758e6320b712ec189a613fe4eb1ef71482b364104cd8d15dc2ef00817fa72963ea42db78dc506e70b9ad314d8d10 -DIST firefox-40.0.3-es-MX.xpi 472917 SHA256 de9c338485a5a32bf0e6b9a51fbc948b90006d8cc63e2a7303cda8adc5ed4ff4 SHA512 4550e1d9e6e1f41c76e8118421c51c4062e249c80cf0363aad47ee896af8c45f8a2153f7faf51e7c1ae2d7126edc11988bfc264a0ebe00e8799a2068f240a27e WHIRLPOOL a70c9a3e252c36d0c0cec1acc2b6538dc25447be80aade73fb206b67bb9e2ba062b0631c0f08af2cc527edd3a88baf89b00c5921cb02408454f386e767fced4c -DIST firefox-40.0.3-et.xpi 457409 SHA256 679dcef606b9091e8018b0aaf40b0285a4557dd56e5dd7132b407d250fc76aa9 SHA512 194d189b77f91ab2ac25abfffe1e6d080c59a76747ac5792a3db448a0a090734b94b7de4f9c08e2e33fb90da009c9170dc1b5025a819cc20a63ff72eb34f1645 WHIRLPOOL 977aad8c0113602e6ee2f8a11683e1dd2e67bd8fd773ebbf4b9f737a8d06583845c278c156c370a38f64457ee0f1f04331669451d05910f0f49a729a57c8c666 -DIST firefox-40.0.3-eu.xpi 481824 SHA256 e33bac2ff93ae3760b95a3a176fd0cc9e1a402fa4f174c10e77e6797d8cd27ce SHA512 ef7af759aa1b7d0d5c20e2138501e668ffef018e4036162e15169f1f056458ff7a1584d7da7271ee66cb5f10019e65591c14ca1a610569275121f3018704ea3d WHIRLPOOL 20a22f93020ad0144fb5a18ce176c774629c646242485f3c5958732d4371a52b7814383fab380aa127e0d64c50ae689849de2140516b6182da0a64d94783cce5 -DIST firefox-40.0.3-fa.xpi 526972 SHA256 e2f4ff8871be1d3a779891ae857e17a45ce92d84405c274862aa125f080624bf SHA512 33cdf2a41efb2999f283dd495031a083660d11209af0b5e3c6861a72e709daf44016a4465c259155f29c280298d4d26082f19632d263f0252487ed3efcfbe344 WHIRLPOOL ddf1533b6559f41aa1097b7d1c44b8b0d033cfa318571c009bf547f3aab2b98c9b8d40f857295df362b39044ef8b07c5f0113577c59931ed91d0dc9de4a2c08b -DIST firefox-40.0.3-fi.xpi 459382 SHA256 e62fad8b4b2d96fc3f35920c69a7529be6e275e6c63ed293a32acf8f5d2ecf66 SHA512 2bb5193e4a6f114c277126fe32875431c04faf2a5ee7e7db6d065f876292824fde6ade2f4b7f6a631818ff62e79200d2c61201906583c641f69e259d4d9a6d8e WHIRLPOOL 4a038fb2c1d26b306bb2489a48b043c64e431dfe24ab04fe29d853517a9c8060a19bc65e9ae1d0d738ba9a387cbb29e6282204069e677f2b3c1ce15f60d4752e -DIST firefox-40.0.3-fr.xpi 477148 SHA256 d1daead0f4dddf6b06959e32f601128cb2764fd20a58372c1e587ae9b5f3a754 SHA512 7fcd921a1e40d4caffce7b7e7ff29cc1ffe76575319fe95c87bef7148e33d08fb6182cc143c70c7e02cef571e0589d126cbb435589cf301df4c112d3c86a9e12 WHIRLPOOL ae2050dafd3c890bfd5fc4b6ec6663ecdc30faa3fcbe44f8a5a5d5617bf9b97219bdb4140ba8ad442e1ec281d3edc165fb9fc68d86a7f726029f82c314c05d81 -DIST firefox-40.0.3-fy-NL.xpi 471145 SHA256 511e4b459e7cd38236ef10bebcded90f360a30f08a3594815e298e1383b17453 SHA512 19a9b417506066224c0eba057126f437f4bb43ba0c80840242ab75bc8be799204736664680cf4239fd4677504405c24e99cbf4d76687201429b92aab4812480a WHIRLPOOL 6f04debd89581475c6c5f27f36cff980f8207e78c566271715bb6597ea19db898cf969115f83e88dbb5145ec4850d06b0cb2dd2f52eb59c516926a97010a1c35 -DIST firefox-40.0.3-ga-IE.xpi 485536 SHA256 6a9f8f72d0664c29214a7746aa83ac51fc5bd9c77b56d4048cd92b5bbcfaacf1 SHA512 7ec768eafa26186259aa3d8636fd45c653ca072d0c60fcf4c2a5d21c419aaab99efefd793e8150db8058cfba9c51f449d83db97e67b19c18b7ad2510b20225d6 WHIRLPOOL 3e2746cd3508e8a2980cfd014e98dd3d7c0e879e1970918f52b5d0a647a2affba512927adf12a027e120b9b680af2ace5d52a2e5fd8de90935f282f0382c7760 -DIST firefox-40.0.3-gd.xpi 469750 SHA256 9dc62003d7501e9234145e269d22ae647b9d6309005346294d438977c72be322 SHA512 3c612ea6ce0309d1edbe365c14eb2053176abed66b007b42dcf618e7864e1ce63e2175086ee80e4efe18616bea82c53e9f1bae4c0d307f057b60665724dad527 WHIRLPOOL bf31e36aca956396ceaf2c74678875360f96f2aab08520bdebb78f7c52f1ada57e3ad320fb0558e2188332ecc249eb35d1f5b8447b7464b35d0273874d9895c2 -DIST firefox-40.0.3-gl.xpi 463634 SHA256 59437020832a39a3314e9c6654ea79dd8cad9cb997a23e34e83697c27b92b821 SHA512 f93e162af07efbfa432fda2594a32ecac379b7b00d7aaf46e74ae57bfcc2e69d6589cdd641097ff00b6a83906a85b95fcc5c0d605626f91b44b62e027fb1f63e WHIRLPOOL 23ef0978e262a642f9f027d3749cd5e0c6bf626fe5ce12ec39c7d6649ed9cd45ccc3389ad65edfeaeda5a4b344a7f54c3aba281947fc84cb7f74ae1eea818b38 -DIST firefox-40.0.3-gu-IN.xpi 498591 SHA256 9eaef0ede53a662b592d489ee033c60edf93292adefa3c4ea3d24b5eeaa99ccc SHA512 1b4b50c72757de5b1ce5aa128d82d457864f96b02da302c33e55cafa5d9e7df05f03695de1651434fd9cbc1fb04a2dd7c3b89d455f189124ed63562ea06e47ce WHIRLPOOL 36d8bf04454daf3373b8cb1700aad10e3d0d08b1e38f5a407884f46758546ab80032451f1cb80052da5ebb3b0a6720d4ab603e2d4214bdf1f119af41314ed614 -DIST firefox-40.0.3-he.xpi 497110 SHA256 e058879bdeab1c86fde3e07a7ceb589604c40aaa8319c16b709222ae305d1466 SHA512 28981f412b532e30558d3b5dde02356b38899885b44acbaf11764d2dbab1c986a219388eaf7cb5cf452c5e1d138b171285da0bf64217602f7638bbd664473178 WHIRLPOOL eef94cac28d4abd245de43fd9cb4610f5a84b1dc9908e2c25dbb0367e66c36782092b6bb24fcb07bbc3e1f6ecd8354e0140a88c0bf3f4b4c25ed5a519fa16233 -DIST firefox-40.0.3-hi-IN.xpi 519929 SHA256 edf700377b3d384aacdc8a6a85fb9cad7385593d0689d6b0474b9a81782bbf80 SHA512 3990680b63ace6c44d0fdd3bfd2f95f43ec285e9ec911705d0af2bd5ddfe7268aea431e54ee9e63ad72b784d9c1724de3716f4f17bc4b51406c131576f85a4ef WHIRLPOOL a175bbd55d91a0a2f62d010763e5ae970d5377cbbde228418382a153d12b35636f2a8fd67b6918b19409591d8017ded73c7d742dd1cc11253f542c334f63b64c -DIST firefox-40.0.3-hr.xpi 494492 SHA256 4b4cf824c97d6c4992905a13bbe4c16338c0524ce8f1ed762dc87dd830e91a55 SHA512 ef482e2bcba3429001b9179fb7809d184a3cdda144000e4c88c28ac28766087a8a3967e0724882cf2824218cd668446c23dca919a42e0c969198ad5994b50759 WHIRLPOOL 55135c162115c97c34132ba6745755d4b838d77eb39dc794022eb90610241e0556581aa73a5e76daca949a142fac831dc77b0f71097e6f3aeabcc6e9cee7b64e -DIST firefox-40.0.3-hu.xpi 469054 SHA256 f5d5313195455272dba460ee8b29f887ac0acddc14461c69dacde89b884b71d0 SHA512 3c42c1fad403f315a47e9be29a16165e188cefaa9a4119e0552b32fb188b2eb471b698dd393f0e6c7170c74072e2ef8da22ec6245e39a1c24d101e6f130a7d8c WHIRLPOOL be1be6524a79aa67bb1ac2ab61de059e6df39ed20d12f2936bed2b2724242ab03cb127fa729a79a02d87ea45cd4e64074f15d65a27130538ca07d857f4618bdc -DIST firefox-40.0.3-hy-AM.xpi 550065 SHA256 5a3d889d467a8d13bbe87b2e9fb8baafea19ba6730ce514ea953f52fadbba961 SHA512 f2d6697214c86b8ad704be63d1469146ba6e0342ddad89c5707765788e5d5ec9077f61b2b19434ea7531b17849a673abb772badf568064d6dc3410a1dd71f255 WHIRLPOOL 4d21f47b40dc2fe6c11a07f553cddfd35e1ef88107eb72021db0653a14310b70fa5f92e3f476d18d4e7861d1ec2d2efcb7a569f616649801c6a92d4e01953660 -DIST firefox-40.0.3-id.xpi 446092 SHA256 996a53ac0c9d6c826b0403b1520a1e8ea50b77bbb952784695602b56b0e93861 SHA512 46f4644dcb665a7690461d7b71b2f1e05f3786387c306e8acc2f6f003916e0a67fec015c96b608a8d77409bcb6b0fda337a3c5fd4ad11fc047283424e7d97474 WHIRLPOOL ecf4d85a856a0260d0620386be7bafc929d34315750bab0e5326ea3c2296c0a4621522cc85af48662f5fe6f64e543ad9c434e25bf057c74438133ddcc74182e8 -DIST firefox-40.0.3-is.xpi 499894 SHA256 c2f79f33d52b4d0cee20990cc497727b3cc69b3afa5bc031176d3bfcc8aa136f SHA512 f26440bd51ff9a4a5c19b83c1b0d2db574586157bee1484bda4f26f7535beeba71f1bd5cb58cba1175d6058edbb75c0c88343d3d243522856f0eacbd0cdfd992 WHIRLPOOL 94264b409a1096ec08de89c6e09700a6209be0b0dba60635d88bccb6f7a7f6bbf9aa51fc025e6e3fc98a8363da86f3d13f03010e423ae759d2aba82abecb81c9 -DIST firefox-40.0.3-it.xpi 377833 SHA256 7f2fe994fd74847bbc5de393954a526e9c17cef5089e506a616247541684b9f4 SHA512 e185111aa2453be345616c96dbba26d57bd48de63ecdb9504668018744967798f0dc244964bef8e6d2f80a510e0728fb845f2318bcd886b3e8f161b83e2bf0c5 WHIRLPOOL 57456beb6faf2993671d98e26e899c3262f67d617f1725411a433d6a0d4e6330cf699a55908a4028ca1b7ffab54530e9a4535467687ec53df9321ea63dfe9096 -DIST firefox-40.0.3-ja.xpi 495439 SHA256 6e3f6870ff749e14cf22ad82bdefedbb2b152c802b86ab7f9b588da382f2c88c SHA512 b6c39d1dd5899358fd557f56fd5140955270918e30248782412449fdc56b9674ccbc0205d0b733e71cc925cf52e793691566fdcda7e889594b4c556d67899a56 WHIRLPOOL 497eebd0f7cbaab7861f0f7362980940f87ba2e202bbb97c69fb559c141d377eaa20e4519a08889ed6c4fd417df95e3572ffb3a89147d9ed0a6c419bb3c55ab5 -DIST firefox-40.0.3-kk.xpi 520131 SHA256 dde3b84aab92cadf4b30c279781907fdf12796b7d2a91d4fbc68b2220e267189 SHA512 d2396d646dc568caff24cd559b18d1627bdfd00e2d1edac810e83df2527f066040046159ddbd9bc4c65cc2b361dfbc673ae19d27d5fb3f614c083c98b212aed1 WHIRLPOOL 31bb6c5405e64b93b34b92b064e20e023ec2c88bdee121ff064e587575a451fc4d36102f6e0394702a55c699f95895b34f1e1573962fdbfd80a5f3e2e02c7ae7 -DIST firefox-40.0.3-km.xpi 578734 SHA256 c6c2e8c52afebd11fa20f51e0ab38ed7c0fa08f6f00c31ed8258c322343d2435 SHA512 ac77816042333b3aa2b4fd9d011bdcb2eeb502dc46b902287032aba2d7629b94b81ce1a6236babcd86fed82e2daf59986ec2a7e2c88cf15efcfd6a3d406166ac WHIRLPOOL 72e0f021f6c550dfc8f5f2fd960264577ce2464a154d942d5c1c44ec3597dbd34d5994a2150d907b46afab238252b1dc1b33795fe75b40778472eb292f324b09 -DIST firefox-40.0.3-kn.xpi 550864 SHA256 eb28a17c7c34dba3a4792aacaad8d4b25553ccc4114e4f87e7fdb0de7cccd0b8 SHA512 9866a7b35d45183c4f5e91b964bdcb66fb35a8caf3d44b3c679cf169a28df0b0369c59515821f86a1d65b452ca6fc91919e031594e21662759ddbb6cfcf76e23 WHIRLPOOL 451932082c045c5c5da971bec3e255664cacca6a5f378e7a8e58512c28f4629db310fe3e92e32bb31a1c56100395de40adca552eca7c84fc096957bc77629d2e -DIST firefox-40.0.3-ko.xpi 476892 SHA256 ac39a4c8ebc3d5b43d00b788bdf62c3de4a6fec74a0f8906d3e6fd14f8f62eac SHA512 1c44206ad054e7c308e664cb29bc8e54d54df8f6de8cf596d4f4ecdceec951c040e797149fb1364fb2b8d4b6dc45c02b7f9070ef36f95a552efa33e326bf11fc WHIRLPOOL 99269ee86ccbb9d808fbc5385ab1f8cb92d4754aab0bf2ff820ecff01931f896aba344cc7541934b3a763d43563aa94fc8fad5a8d5d07b92d917a0f68b347a3e -DIST firefox-40.0.3-lt.xpi 502211 SHA256 d1c483d45096b8fb00d24057948197d4413c545b0e2a0cacf609fbfbb1f18bad SHA512 c42f69cb23f7ce428592599f87a32e26d7d6f457d7e662dd51ddd9f98ed8ef556ea88ef5392d2597930696335528af3b1b7108fd1f20b89e178adf5f3f10f623 WHIRLPOOL efa846f93260c7ffbb00401ce4103d023998755ca162d442b886fabf1b33ab0f5f898345593ac12142256b138195dfbe9569ce91a93f91abd25889b3dc7feb75 -DIST firefox-40.0.3-lv.xpi 482486 SHA256 1c5a49e3f40456c1a99a60376ec697a19ff82f25b79220df56e8b1c8fc5f9bfb SHA512 396ee47f495bf3fbc49c83ca0e1e774472a3bea88e8698e9e4328117a724fc2d71b4f243efecd2d84bd64f30b937a83610afdc20a8dee8f02ef327873ec024e2 WHIRLPOOL 71659d1c2e2e859c6810ae0bbe34580304f13652df8e2afb783f4817410042609efa98ca418384f901a7c4d638837341f6653bb116866babf65f4df17483015a -DIST firefox-40.0.3-mai.xpi 527990 SHA256 ff0e82f02ddd321ecc7d0f07a5f5a9b09ed67f27381dc59595dfa27a818ed6ac SHA512 7bd2a2b59701c6bd936e4d1dabeb2afed4b012cd2f0934d5d9dc2bcadc8612b7ae75dd7394dfe8b9b8229d9c2f4f7f758d0e601795ad710bf845e3e53c9c6bbc WHIRLPOOL b076313ce20c8741ac59f5567140f8fcbd9568d441d4afc22f33886d9a8a72c853771e56f2e31d6462ea5542c252e2b27696673926cb88b6a164a7ab227766c5 -DIST firefox-40.0.3-mk.xpi 542563 SHA256 a8b9dd7940f6c269dbd428166bea9e1e71dd99de25756bf0ddacfc2ab2f71549 SHA512 420874421e4564e252c048f135a8a2eac127f86d433891cf7324d2e88567dc1d5ee7649657f0e7f326d8f39b2b26f0b5c3d78e54f653ee5a2ea04d6e0105fc95 WHIRLPOOL 30d8fcfc1c21427f4e49b05d466305b88975a46da584497e3fd1d14c0f3eefc5e5481ff0d022d1ab9a365e44347897a8db4c0ec41d92875745d5db55b7afd849 -DIST firefox-40.0.3-ml.xpi 540383 SHA256 f3d5b491a6c1d664ae1cf0717157e775a73049f457664ca4e131aa851ea02d2f SHA512 dd2f9e371f3629b5be9646b5e3392332627f01c42e4fb240dc56a3b12504d7fafa84cb20bb4d4537b2c5786c9abac6b2396dc45bafc99706a543e7197d65f981 WHIRLPOOL c06613e12aea8395ed4433afbf7c8101c29ce66fedef680cfd4c97467cf98f0ee9865956157a3f06c61a2c0ba1386e1036029793732624fc8da2a174edf318f5 -DIST firefox-40.0.3-mr.xpi 522286 SHA256 23bed23751ed673b6211d1421405b01814e895b341977bbfbcda146f263585a3 SHA512 516a0644e25a1c0aed080300aa9240d9f811de4572c50aaacd2281c7282c96738f08faad2bd706ee1b097d77c862e3af422ac95707632384d652272dea667801 WHIRLPOOL e5901bc84b583e35719df9f9415960785c8b108fd1482c90829be6560e4eb89289dd3f8a818f815202abcaa09001eda393e1ff6e5e6a7b54dd18157934b7c3cb -DIST firefox-40.0.3-nb-NO.xpi 458941 SHA256 704280dc977a7d32c20416f2e9d7207e7ea05a0deb19368019b3120ddf480bc0 SHA512 31fd2c8bd508d001822c4786d7d05134d77e5d9f44deb7e3d5e32077c3ca050e9b541ef650c891de78dca399b0e6ddfc680af28cc0e2608bc1ddd1ce577c0cd1 WHIRLPOOL 8813a1200f6113454fe17da47afc998b49ba0216d6b35cf4af92b7c699bfee85d005a642165a70cb152e8aa90396df3f9d8b931a2e5bce7247183582e575b911 -DIST firefox-40.0.3-nl.xpi 458630 SHA256 f53d67db63953781fda06b72d3424acde9efdcf47e027316c27189ab5d1ec043 SHA512 2a20a4e974dc6a63fe25ed22d2d2a7f0ce0174741d291b82cca9d344beb482fd5840cfb42acb0c63084eccf278ae4e3a479e2eeec903ff76eb95beb9994a11e3 WHIRLPOOL 1705f7dd42f482ea704ceb245b183db481631679d8c9fc99813c553027cdddb550dadcca17b798d3fb1e1a703ac323567676ebb42a482a67c9dc2c5136d26086 -DIST firefox-40.0.3-nn-NO.xpi 453068 SHA256 362f3f09a036d190156293ffee2d5a548fdb65fb07618bc2f8b5dbf40c6c831a SHA512 02e202956ab80c047384b3d112d0515d5a043e9c7691334842cd82f4aca87130232039bc1adb55d8ae30b15b8e312e16e674369b72b90baaaf2819efc575d4e8 WHIRLPOOL 6f7858c7e613ea0ff197880bac816829596e24ecc1cddd3d689f1e7ea05d9e02507f30ee7fb99c8d499a33c57ac72a498b71e27d5a26b1cf2cd9060bfd928324 -DIST firefox-40.0.3-or.xpi 539212 SHA256 37d119640c4095e3afa53c1df2ca7b548f68793f281894ca47d7457688f55373 SHA512 59dae1f3beb901b3bcb5384d19e24ec4baaa046695ebf7a9cff130430819287921dfd22fc3ece1e8145069c7cc95bd8a0370652d43fd1e07c2701d80f3e08062 WHIRLPOOL 95707a13ec0902fbcd3833674ac761e04e3b5379e0f9886645b2802847e8c2a1767b8d68081dfd70328285bd423277c85ca38e2f7f1f356d051af7db72aa18d8 -DIST firefox-40.0.3-pa-IN.xpi 509122 SHA256 d70277e8b7d3805bb50ab1b6bb69b55dd84c871c567d7484b6c8a095d58730ef SHA512 57e783d06c7aa71ace289c8996c3c9e71c1691ad766b39de9e02136c20fe2d73cd2143cdaf8bd5ce841211d3c7b7c37faa602cb640b86c385e00081dadfa296d WHIRLPOOL 4250a9073cd3661b29084478f522d61206cddb58f83f37dbec9e2180564059b99ed99788d53971c72f81890855ef21d15242e3ea13a6b8388bb3cfe7ea9ec2a5 -DIST firefox-40.0.3-pl.xpi 415191 SHA256 4dca0edaef047cd54689e2ea4296598be5a86e098efb5347ad6fd5e307b6f213 SHA512 72ac25808a0bda95b9472c3a2a6bbfe0531d07b085ba7c298d8b0f2b37690c75b4e58b245bae35a63e55fbb0f7d023c20ae7411890c2b57bc8f911fd09744bfc WHIRLPOOL 5e2903ef36ce31961aaab124e3c7b2c6e13483c7dbeecfdc4d9057409641b47ee654927072221b677b2ab75b866a6d5ce086d1a0143f9c23b0af1ea19c90f169 -DIST firefox-40.0.3-pt-BR.xpi 475443 SHA256 419ebf4fc0d8d23b17b6ff0b971d18f0b94b33267d1bbbc6b4437fb6c3c3150f SHA512 efbd6f0a43b47c29cfec38cd0daccc1ffaea6f10feb0c270a4dd303faadbe52ddb00501e302a81cc86651e08c7336c1fe07661f689b380a96fdbcb70b62b61f1 WHIRLPOOL 96a2c82b7270bf723e579308cc3abc99e1762ea024db85ce3102a5497fa5d5dd685ae21fa82d7b9c88989703d65c8706e23dcfb7be1fe07086f5fd546ab7036f -DIST firefox-40.0.3-pt-PT.xpi 456035 SHA256 1ba5b9fee35b1d35f4e7f4363056d379c016f1dc60f7ea03412bc29623ef60fc SHA512 5439552d25688eedb21b0391e755ac31f180160811c167fd27478129abe2f6cddc42354145d8bee5cafda713ccad77a041bfed9ddf8c15415cbd496c4f51f7d5 WHIRLPOOL 87a110be4a8add81f0fcbc1fcdf80681ed106db7509f1dcbd814d63303f7250c323b2263a8680381c7fb9b65b37fc258547505438a71d6225b12c50c4301acc8 -DIST firefox-40.0.3-rm.xpi 461466 SHA256 164438a83d9edd555aa39a4fed844c2520351b1ceb6e3a38786c89ff085acd57 SHA512 e6acb90fd24ef4bb252dfc167e3c84624a0ceb1bdc02152235da429356c19c81b2cebca2277845a45913ab40ded736cd79cf2e0b4f66e236e25b166ab0cae6f3 WHIRLPOOL 2b6dc755fd860e682dbe1cd7f0dc2b1aa32f7d227433aa3e3c9536041e4d5b4e4ca9611a28d0f6dc85409cbf498bcba77d993c5f246468d14ef716bceabb976b -DIST firefox-40.0.3-ro.xpi 509716 SHA256 e6b69e1f86dfed31a103ae5f8b5c5bdc39abae0e10826177ef8d9118e37628ce SHA512 210e3a03eda8fd7a5586db0e89ee8730123487e6db79cac2294234f9e4679c045c026b171d35c57573a2535365041716f1f838e572c7dfcb7a59db4bff0795a9 WHIRLPOOL 26e5c4167cab6c3672d60af6594e4d200be4b9e077f022ace6d77cdea06e9db7a310a4fff5cd278dc09379051d10f6ad8992043a59b9cadb4739841cc52c2d9d -DIST firefox-40.0.3-ru.xpi 425657 SHA256 2eb09947c80d43bcca12e30ff4320deb1f02dfaad8aa94f746a2088d362c8252 SHA512 25c0a064ecf34f9572bde6b9336e147e316384d735a747e6582ecaaf015d358d3ff801484f23a3c64c421b7ac92c7283e976dd1f025f397b3b6cdbec54ce912b WHIRLPOOL 626ed29554181adb2e60fd05434b170cfcfb7d05079ceb447bef584fa051432f991dcca5e7da759e7942f5da70cfd748290f9fb808bf1384381bd29fbb1b9626 -DIST firefox-40.0.3-si.xpi 548768 SHA256 a3fdc5a4aac6c0e7ded4cfa6a3bf0d84545a44b064c5df736422bc41923e91a0 SHA512 443e2929c4ff6d2d93e6b082eafe4381f37ece515aae8e907e10747c6bea07930b4d284445a6bff25bdc85ed43da73e8fd011b10dad2c8644618adddfa702377 WHIRLPOOL 94af62c8960594b5b3b5291b9e46af0769a0a7d36bf7290dfabfa61c8875d0d89e0e5242c14c91c10418932a1f1d512562e6aa2fd7e2ba2bc23d1b605f417310 -DIST firefox-40.0.3-sk.xpi 485121 SHA256 c379a93e531c2c412aa2e98c06a645c8e0b26b24d80d988966e23b2126c71358 SHA512 32156fde1640f06d5471991252f55303bba80a7e49cc0af141b91bdcf929eeaf081ea30f57bf8cdc1b4b78e2209b99b613387ff2ca84263c49153526d6b55f28 WHIRLPOOL 20457f8bd2276f3092835d32224d38f0ef1752886b20ce47627492b4342015f8aceea73ee758fdc2b0c984a7344e5f4c0abbea597ec9c78588ad23db3ac6e61d -DIST firefox-40.0.3-sl.xpi 457940 SHA256 8fd09f59342a80843e53c34b0d9d9ca5c347a08c64beccb9386f5ba7cc3637c0 SHA512 643fe3898d52df0069ed9f70a3959013928f33e2a72152599b39b4a40e8f368997c77261f60ef3dadf9b5187ca050d3963af80d43fe7c3b5348a4d33595e1e7e WHIRLPOOL 9365288d0fbac809b53df80e127cdc756de5b2ea23a1863604f03b6bacfd412d5d9af606098affa8384e84c0696af9e1262140ed869d89750b48cbac8bf806e0 -DIST firefox-40.0.3-son.xpi 465948 SHA256 d0265a35389b89f79fe8a92af7eef67160edfc21ccaa9c68c0b71c1bb7d1c8bf SHA512 d3400f88f529c525fa03d9315efcaf4a889d3a531382991a5dcb195ef607d7c235d74c79d439851b37c3e4b358c617cefb4167a7e7470bbade008bdb2266df5b WHIRLPOOL f2137f0dd0d791075184306303f92a387ea528b5a84b7dd0bcdcaa0f622efc6d0820b1c833dbac1ec09bc9ab0de547ab1fa40d6cea21c4d17ddb4f1934b1283c -DIST firefox-40.0.3-sq.xpi 501445 SHA256 afd42e2a29f28d6c601d962acf709b33a010ee2a7bef4b4e3bcbbb42354cfc07 SHA512 9fbaddb40b3ba2fc0558b66b762c9624271310759dd576a8800618361d298abc3c962ee9b6701b46e3f7c7b2e6061733748517ed554308566578c3cee5c5873c WHIRLPOOL f3ac4ccde5cf8f5e6794e0cc7d9e7e4bdc2b322481c3d9c2098f072abc575406f3c81d69a7e233c3a0391eb65191b87b6356fcb39f8c1860867479345794fc62 -DIST firefox-40.0.3-sr.xpi 494736 SHA256 c5981e3c19480f1fd3c9a4a952c734bf1b300d160fa03f05c56a1622b4676978 SHA512 5e1b58394367f9dfbf9f1390204ef2450617eda6308410e8c0fd057999c5dddff018e738efd1ebda885f7345b05b818c2c51d6574ac587cb0adb63f9a3711856 WHIRLPOOL 8408e2d83710e3a079dd2306771c9481ee83eef5a7f8e6d3864adf8bf5666dcae35585ef71544e82ced7da6de7fdb3ef88c3c29cc08a7814e253df93216e2d21 -DIST firefox-40.0.3-sv-SE.xpi 467791 SHA256 fde03b6f0869804b7624667b01d468503e9cdbc22c9112cef781760712a98298 SHA512 8e19ff0845c9d9eb33b75e5d07cd1ef57e3ca29efa58534e5c214f2d2f825541a8a34a152415091cb81f5cfdf8d4df848982e539f8bfe3e53fe634a95d498f76 WHIRLPOOL a9b6ec717bd6b514be306f93165c0ec3614745fa1ce90ec8e9776945b6ff9d6fb89e2c9969a2561c74ca615b2860e6d519137a2ff24deb26ce63d8c61d77c250 -DIST firefox-40.0.3-ta.xpi 521801 SHA256 18e0e398117e2b1b99431d534c8b709113173b4b57abfd61f66f216f8f7bba11 SHA512 dd08735106616f3b95fd8f4cfef595813f53d260efaf4da840f36e63e955d259a203f1eaa20827ccdbc73f2321885eb6c5bd65f570e58bf75a9347561fc2209a WHIRLPOOL 480d24a53d07a6deea90b4d69e7e09d4a8b22f10429611f8c33d5baf05bfef47ad1f722389311e7069dcb85bcfb1b1cc0c1a265767525e50d3ffdcac10e9a2ba -DIST firefox-40.0.3-te.xpi 540972 SHA256 92543ca8942593ebc6c2033832136b411fffb3da5278727f766995245ecb6957 SHA512 1645be5a8a8f9d3ea6a8f45f41d7d21516d2af44538ee5df991d74e8f3315ce29cc70271eb43279d83da28befc32c900e7df970b5fa8fdff74356ee4eaf0cb82 WHIRLPOOL 74d74bcb71821cf5731bb19ffc2ca551546d8765472d2f0afd34d0e0f28e58ea39161d2bf67837632085fae0c6594ce6044fc918cbaff31c26d86d5fc8ae6cfa -DIST firefox-40.0.3-th.xpi 550265 SHA256 24dcadec477da92d757f72598b434a1e59613681ff9bbeca2530d7b28d7227e0 SHA512 7cceb9a96b9317a125e9d0bb3f5e3405f451cf8417d7d1ba99edc873c868a1a5378bb3574be1c7df914ea0d90431ef2df01805afaa111055f4e053b31c420c05 WHIRLPOOL 6807b1880f2551e901926669dfebd304ac62bb3a2965622af2d918185da4054205c51304a1d234c6b45111441d12da077becc1bf04e57d02f3758ae33cf37dbc -DIST firefox-40.0.3-tr.xpi 496254 SHA256 e0ee75872b49c201eb4b35f4e8bb877255c9b1af010641b3129672a409e64c77 SHA512 8868868a53e61a0745b4ccdf28d8a78016748df74c66e83eceb1be80f56add1b7aa141d872551171e133b07d956e673e1fe100e2d4470afea7f390c066f75b71 WHIRLPOOL 2a7bf357fe108da64f676fcaeb0ce3c6c7b8dc34c03370f40ea1db72d8d7a1ca80f14930e06646fb21185e51a76c27eae3743beb2052504facdadc4a293ebb0e -DIST firefox-40.0.3-uk.xpi 511145 SHA256 67ab7024c3c29c6ce7e054a9c65362c942557aa636ffa673d05485ab717804fd SHA512 9ca5fb268983712f814baaa71ea16c65fcae8bc2a2ca4ec4dc45ec72a26f1fcf9b29355ecefe01ad331d6f5dcdff64f48160abeebe72c6644789167c4663487c WHIRLPOOL bc1de4395c02c6180a69dbd188dee707af17d607d7b44fecf4143a758bb83c02b54be327555ba2d9889e65e7e1b317407b0bbeadd44330e0969ccd3978d094c0 -DIST firefox-40.0.3-vi.xpi 481059 SHA256 f64479928fd58ebe2bff6d09ac26e54e3f56db7b37a465dbe4e6078a8989a117 SHA512 5fa4df0b9283446f82b317da5d2b2ca709795f6929d8f7344cfc97a46d41d6b66c195b3c0b7406c92217083e6176f9976d6d158ef7fd00a0bf152cbf66c84f12 WHIRLPOOL c9f61117acafc25cc58b86b11d0c1f332dd74db6d5ee98702893625f948f1ae1df855ce1b15b7804d0e2d8017465a2d469c37b5bb4e0c2c1f5a78a03d506cd73 -DIST firefox-40.0.3-xh.xpi 461039 SHA256 54948f041df5be3c074ba2bf2bf7769fa3b45751038dd61b94cf3fa09e0a9d72 SHA512 24cf779a800eb187d68f84b6e8fbabebcaba2787948fd7c2e6b5970a8fe72a6b25b8ff572246d254595dd1097744d079e46629b3ba0a7165b92b55f5b0f07482 WHIRLPOOL 93e7750fd2be27785470d72c52366ed3c21754cdd58fa1a955d991dfa79aace5023e339f53e7c4ad51500805a97ca6c03d9739ae9f6b8f046d57bbc648e5e91d -DIST firefox-40.0.3-zh-CN.xpi 504409 SHA256 86346005557d217110e624e1d98037a5cf634228b4bd42b38fb2b9ba38411999 SHA512 9f8cdb81ec5851a6b5810be3c5882a24fa5e93b95889e453e97ea7e8de137470e9cb9717b40ee07ae9e930bbe2f5d0c41bd8692220a0256acf6c004909d4380e WHIRLPOOL 4687a90af21051baeb88e0d02cf52d8142d08111f226dbf7a3183408061aee91c7e270d8a7d72bdc20e1b517a81171623de96fa7a00f011d6f05177ba96b176f -DIST firefox-40.0.3-zh-TW.xpi 491275 SHA256 36be93979c452610d01adafe926b05dd11d7e92211cea9f10bc697b70acb0a52 SHA512 2173044f0964c5237fb0092d0ac39abd175cd408ded2fe5724d72114e67c8a1be4b4e22312c31864cb45af34992bf4bacb104d2cf5a057dcb2e1b544e897d6a1 WHIRLPOOL 3abe8575b8b962b380d915efae52afcdb1cb3a55ae7e5a13c73041889868745d08742c43e13b9145333c0dd0a1c80228892a195441d00d4d94c2bb4d61552985 -DIST firefox-40.0.3.source.tar.bz2 178261482 SHA256 56ab32bfa070a1d86d356ad14ce74252b38dab9307948de8e4a3a2b7f3f22634 SHA512 8f0f3f3a38378b4a5c30e2a41888564f9eed3e8ec3571654849afbd8e8b46532777e15e148eb4820d14647b51adadf86ed77d80b359ebb289431ea31abfc5748 WHIRLPOOL 7816360081c5767b35da1629e9e08c05e645c53dcaad017bdaa5f30b4b321390adeb05d26621131e54a95f8ad1cf9a7a81d1387f430d072a2c92c772e871ece7 DIST firefox-41.0-af.xpi 486121 SHA256 9a81d311727c1b393eb5a1d420c77a26cc01327b3c326a935b8b31b426977ab0 SHA512 7360b653fba4002ff08e19f955947ac4e5a581ddd93174ad468d1c53caaccf48596a9cc0d50455d2eaace12d8384955c50c23a84423221153c747b85f93a6d91 WHIRLPOOL 9766bc2c596e70f3bd7a672ba534c29d81aafa6f9f8f123d4dfb6ebb379a3767700a992142186840beb764046d77f4ee2fb5121442379830b0b99d0f53bdb485 DIST firefox-41.0-ar.xpi 521159 SHA256 bb9ee3d703c10f9bc3e12e9f62ea95511955239a20fae81918f0c0529685baf8 SHA512 22a3e417d2cd1ff62e6e05929a1a6318074d3328b57abc34ed5ef07a3b634715d8b8a60092d7548c1ba34f1a63aff4213621b6cf0928ac52b28669ada270b01b WHIRLPOOL ce8a9a7dff478541577d52f84f6d0fbab59cde374e03878500b3976a2336b33a81f10e72d9e4fafa0a1d40e052250823d377973ee3e678c74fad8668f1a1c2de DIST firefox-41.0-as.xpi 511219 SHA256 2bb52d1a41ca3955a460f0f2d48efe3e2c99ab579d72f1c183faed70403bb869 SHA512 10f501ad24a4a94b154130f8edc1535e4cd8f0445255df7efe79daa5e0a57225a7a08709f94d6420076a9b417cf5eae9908fed34867eb2387eb86aaeb62647e1 WHIRLPOOL 7365bb0e4bf7647522cb3406a48c651b03479686583dc99d4f2ddcb05e863ea567dc95d2b0c0686442c794b7cb817c99e3b9101d976c2f0105d219ab7256a4d1 @@ -377,6 +217,7 @@ DIST firefox-41.0-nl.xpi 446545 SHA256 82998109c104b4277a54a9c6aad3caca8d40e8929 DIST firefox-41.0-nn-NO.xpi 442561 SHA256 6f39bbb77c7c07bcc5612b1715262f94d4d962b5148384ab2ec052e1a4b64eeb SHA512 8d5a90b95abbb4a2b3d693b90742a9a4b626b665989b0b0af5683cf7070740c4566c33cdaae98599852dfc84269f89f107a57bf5c1ee5a57887039e92b7c954a WHIRLPOOL 00d013308ff1922accb18f2d2f5a2c311633d8bb83f6f8d4a1d66723aa2db0f789852b817b93bd9e64eecfd0102861a31dc4b401d7cc6bc7decff5451922cb41 DIST firefox-41.0-or.xpi 528104 SHA256 c4fd3a8b1fbc8b79612b3d24b556419acce11a7836e21e7196dbe4e9eb0b4799 SHA512 262a3d43ba4c554de8506227fee57af053c30edea5a58377b05b19f1661d1dc33790267077ddca7b58c32942a2a0a2e72c40e9b59b59bf727d8c921cda8a12db WHIRLPOOL 99e5bad1d719668e0110ac91d75f003c43c5b78d8dfb5ef7292a60b975db16d3035abf2d5f5809a08847e7c19cc07f76dc276ea0293050a0358fa04e0d61f626 DIST firefox-41.0-pa-IN.xpi 498581 SHA256 5ccc34672873d883693412696e0538dc16b96a712e0decad211fee4de5a2485f SHA512 b19c466277899b568c990dc56dc94cb753e5630d7801c53f27ccf5c8e9920e3708ee943b036cca3d6ba18faf5bd995e5f434343f1b246681079238ca965575ff WHIRLPOOL 029567ffe1aa3944cec7adad55ed64407266561f9c9435df0e264170c4ab9badb1ce0c15f2cd829119497d6b4edb153e122a4c559888ee047f0abdaa0a5bee36 +DIST firefox-41.0-patches-01.tar.xz 6328 SHA256 408f9a577d698b3713a112d04552e396ff2af7cb9756f87800efef7cc55dcdba SHA512 a9476a658731b5fdd51bb9855bf4292afc8cfb8e4475250b4fac75cb5166a1e9d384a8fd2ceb38d6f2044759bcb895f956c0cfcb361eb4a60d38481a93c546b0 WHIRLPOOL 9420e7757a0f45889dec228ce3d1fedd23ed6ff9cde1f3461ffef577ccd43bc6cdb5ce3a3200f067bfe9203111067467a91bd90c0861bf81d490b022baf087eb DIST firefox-41.0-pl.xpi 400465 SHA256 757411d39b98fbfb71a7e502e44c27f64f01f8a3936bbb84b08f2a33ccf0c2b8 SHA512 24b9851ca85e139266243bddfdf078fcca61af8982f5208c4a874e589dd0c7d0a688ae8a82ea95d110dedce62bd36815f648f92bb1cd14b04796fca593dc1a9b WHIRLPOOL 10ef0929b8cd97e6df4a093a267b963b590f287fad52d52a5edcbf34352e4751a3ce9967a127c7836647e74741046c9bc88715077ba2866acc6625da8ac97492 DIST firefox-41.0-pt-BR.xpi 463057 SHA256 65ae606a712e05cfffcd2f48a352c6b1b5abf17af7bac53c33a4877957566149 SHA512 9a9e243982ca133e3cd01d4f9b6efdce44a2a5278aac28fea040c8acc64ba67ca2eadf38e92152427009800bc9037adba6a3da8eec14cfeb1c03b85c66be5c73 WHIRLPOOL c5c6358d48e16b5a4de9b178dade343d6af5c474b4d4478d9863b39f7873c9490c16ab4b8b0098dfbca7d3a9d0f5b6d4e0e65e99e4632699590b137f3f5d701f DIST firefox-41.0-pt-PT.xpi 443381 SHA256 550605379e3224bc792a9d0c892dfa78253f075fb127779500d36ca17c6f393e SHA512 74300e6d7f18c643dab3aaeca526b91424ded241634f3db981a3203c90b89634d530d8009f9d16a0771cb8626d8dc1262f541ecbb87779b9b9e8c1723288cd72 WHIRLPOOL 0e81c2bdab588eba3fa886a9ceae0c5a6685037da307fd4cdfa0378d7934db7219d35a7f2dd2b6f1aea6e973755f3e3111722270323b7562a91ee6486dd6c6d0 diff --git a/www-client/firefox/files/firefox-32.0-hppa-js-configure.patch b/www-client/firefox/files/firefox-32.0-hppa-js-configure.patch deleted file mode 100644 index c37edda29ffb..000000000000 --- a/www-client/firefox/files/firefox-32.0-hppa-js-configure.patch +++ /dev/null @@ -1,21 +0,0 @@ ---- a/mozilla-release/js/src/configure.in -+++ b/mozilla-release/js/src/configure.in -@@ -958,7 +958,7 @@ - CPU_ARCH=s390x - ;; - --hppa* | parisc) -+hppa* | parisc*) - CPU_ARCH=hppa - ;; - -@@ -2009,6 +2009,9 @@ - AC_DEFINE(JS_CPU_MIPS) - AC_DEFINE(JS_NUNBOX32) - ;; -+hppa*) -+ AC_DEFINE(JS_NUNBOX32) -+ ;; - esac - - MOZ_ARG_DISABLE_BOOL(ion, diff --git a/www-client/firefox/files/firefox-38-hppa-js-syntax-error.patch b/www-client/firefox/files/firefox-38-hppa-js-syntax-error.patch deleted file mode 100644 index 719732e6ec0a..000000000000 --- a/www-client/firefox/files/firefox-38-hppa-js-syntax-error.patch +++ /dev/null @@ -1,30 +0,0 @@ -# HG changeset patch -# User Ian Stakenvicius -# Parent 2ee9895e032c492705adaf213706d4260ca172c8 -Fix JS_CHECK_STACK_SIZE define for stack-growing-up case (hppa) - -Upstream bug 1189011 -Gentoo bug 556196 - -diff --git a/js/src/jsfriendapi.h b/js/src/jsfriendapi.h ---- a/js/src/jsfriendapi.h -+++ b/js/src/jsfriendapi.h -@@ -15,17 +15,17 @@ - #include "jsbytecode.h" - #include "jspubtd.h" - - #include "js/CallArgs.h" - #include "js/CallNonGenericMethod.h" - #include "js/Class.h" - - #if JS_STACK_GROWTH_DIRECTION > 0 --# define JS_CHECK_STACK_SIZE(limit, sp) (MOZ_LIKELY(((uintptr_t)(sp) < (limit))) -+# define JS_CHECK_STACK_SIZE(limit, sp) (MOZ_LIKELY((uintptr_t)(sp) < (limit))) - #else - # define JS_CHECK_STACK_SIZE(limit, sp) (MOZ_LIKELY((uintptr_t)(sp) > (limit))) - #endif - - class JSAtom; - struct JSErrorFormatString; - class JSLinearString; - struct JSJitInfo; diff --git a/www-client/firefox/firefox-38.2.1.ebuild b/www-client/firefox/firefox-38.2.1.ebuild deleted file mode 100644 index 2c1fe1f145d9..000000000000 --- a/www-client/firefox/firefox-38.2.1.ebuild +++ /dev/null @@ -1,397 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" -VIRTUALX_REQUIRED="pgo" -WANT_AUTOCONF="2.1" -MOZ_ESR=1 - -# This list can be updated with scripts/get_langs.sh from the mozilla overlay -# No official support as of fetch time -# csb -MOZ_LANGS=( af ar as ast be bg bn-BD bn-IN br bs ca cs cy da de el en -en-GB en-US en-ZA eo es-AR es-CL es-ES es-MX et eu fa fi fr fy-NL ga-IE gd -gl gu-IN he hi-IN hr hu hy-AM id is it ja kk km kn ko lt lv mai mk ml mr -nb-NO nl nn-NO or pa-IN pl pt-BR pt-PT rm ro ru si sk sl son sq sr sv-SE ta te -th tr uk vi xh zh-CN zh-TW ) - -# Convert the ebuild version to the upstream mozilla version, used by mozlinguas -MOZ_PV="${PV/_alpha/a}" # Handle alpha for SRC_URI -MOZ_PV="${MOZ_PV/_beta/b}" # Handle beta for SRC_URI -MOZ_PV="${MOZ_PV/_rc/rc}" # Handle rc for SRC_URI - -if [[ ${MOZ_ESR} == 1 ]]; then - # ESR releases have slightly version numbers - MOZ_PV="${MOZ_PV}esr" -fi - -# Patch version -PATCH="${PN}-38.0-patches-0.3" -MOZ_HTTP_URI="http://archive.mozilla.org/pub/${PN}/releases" - -MOZCONFIG_OPTIONAL_WIFI=1 -MOZCONFIG_OPTIONAL_JIT="enabled" - -inherit check-reqs flag-o-matic toolchain-funcs eutils gnome2-utils mozconfig-v6.38 multilib pax-utils fdo-mime autotools virtualx mozlinguas - -DESCRIPTION="Firefox Web Browser" -HOMEPAGE="http://www.mozilla.com/firefox" - -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux" - -SLOT="0" -LICENSE="MPL-2.0 GPL-2 LGPL-2.1" -IUSE="bindist egl hardened +minimal neon pgo selinux +gmp-autoupdate test" -RESTRICT="!bindist? ( bindist )" - -# More URIs appended below... -SRC_URI="${SRC_URI} - https://dev.gentoo.org/~anarchy/mozilla/patchsets/${PATCH}.tar.xz - https://dev.gentoo.org/~axs/mozilla/patchsets/${PATCH}.tar.xz - https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/${PATCH}.tar.xz" - -ASM_DEPEND=">=dev-lang/yasm-1.1" - -# Mesa 7.10 needed for WebGL + bugfixes -RDEPEND=" - >=dev-libs/nss-3.19.2 - >=dev-libs/nspr-4.10.8 - selinux? ( sec-policy/selinux-mozilla )" - -DEPEND="${RDEPEND} - pgo? ( - >=sys-devel/gcc-4.5 ) - amd64? ( ${ASM_DEPEND} - virtual/opengl ) - x86? ( ${ASM_DEPEND} - virtual/opengl )" - -# No source releases for alpha|beta -if [[ ${PV} =~ alpha ]]; then - CHANGESET="8a3042764de7" - SRC_URI="${SRC_URI} - https://dev.gentoo.org/~nirbheek/mozilla/firefox/firefox-${MOZ_PV}_${CHANGESET}.source.tar.bz2" - S="${WORKDIR}/mozilla-aurora-${CHANGESET}" -elif [[ ${PV} =~ beta ]]; then - S="${WORKDIR}/mozilla-release" - SRC_URI="${SRC_URI} - ${MOZ_HTTP_URI}/${MOZ_PV}/source/firefox-${MOZ_PV}.source.tar.bz2" -else - SRC_URI="${SRC_URI} - ${MOZ_HTTP_URI}/${MOZ_PV}/source/firefox-${MOZ_PV}.source.tar.bz2" - if [[ ${MOZ_ESR} == 1 ]]; then - S="${WORKDIR}/mozilla-esr${PV%%.*}" - else - S="${WORKDIR}/mozilla-release" - fi -fi - -QA_PRESTRIPPED="usr/$(get_libdir)/${PN}/firefox" - -BUILD_OBJ_DIR="${S}/ff" - -pkg_setup() { - moz_pkgsetup - - # Avoid PGO profiling problems due to enviroment leakage - # These should *always* be cleaned up anyway - unset DBUS_SESSION_BUS_ADDRESS \ - DISPLAY \ - ORBIT_SOCKETDIR \ - SESSION_MANAGER \ - XDG_SESSION_COOKIE \ - XAUTHORITY - - if ! use bindist; then - einfo - elog "You are enabling official branding. You may not redistribute this build" - elog "to any users on your network or the internet. Doing so puts yourself into" - elog "a legal problem with Mozilla Foundation" - elog "You can disable it by emerging ${PN} _with_ the bindist USE-flag" - fi - - if use pgo; then - einfo - ewarn "You will do a double build for profile guided optimization." - ewarn "This will result in your build taking at least twice as long as before." - fi -} - -pkg_pretend() { - # Ensure we have enough disk space to compile - if use pgo || use debug || use test ; then - CHECKREQS_DISK_BUILD="8G" - else - CHECKREQS_DISK_BUILD="4G" - fi - check-reqs_pkg_setup -} - -src_unpack() { - unpack ${A} - - # Unpack language packs - mozlinguas_src_unpack -} - -src_prepare() { - # Apply our patches - EPATCH_SUFFIX="patch" \ - EPATCH_FORCE="yes" \ - epatch "${WORKDIR}/firefox" - epatch "${FILESDIR}"/${PN}-38-dont-hardcode-libc-soname.patch - - # Allow user to apply any additional patches without modifing ebuild - epatch_user - - # Enable gnomebreakpad - if use debug ; then - sed -i -e "s:GNOME_DISABLE_CRASH_DIALOG=1:GNOME_DISABLE_CRASH_DIALOG=0:g" \ - "${S}"/build/unix/run-mozilla.sh || die "sed failed!" - fi - - # Ensure that our plugins dir is enabled as default - sed -i -e "s:/usr/lib/mozilla/plugins:/usr/lib/nsbrowser/plugins:" \ - "${S}"/xpcom/io/nsAppFileLocationProvider.cpp || die "sed failed to replace plugin path for 32bit!" - sed -i -e "s:/usr/lib64/mozilla/plugins:/usr/lib64/nsbrowser/plugins:" \ - "${S}"/xpcom/io/nsAppFileLocationProvider.cpp || die "sed failed to replace plugin path for 64bit!" - - # Fix sandbox violations during make clean, bug 372817 - sed -e "s:\(/no-such-file\):${T}\1:g" \ - -i "${S}"/config/rules.mk \ - -i "${S}"/nsprpub/configure{.in,} \ - || die - - # Don't exit with error when some libs are missing which we have in - # system. - sed '/^MOZ_PKG_FATAL_WARNINGS/s@= 1@= 0@' \ - -i "${S}"/browser/installer/Makefile.in || die - - # Don't error out when there's no files to be removed: - sed 's@\(xargs rm\)$@\1 -f@' \ - -i "${S}"/toolkit/mozapps/installer/packager.mk || die - - eautoreconf - - # Must run autoconf in js/src - cd "${S}"/js/src || die - eautoconf - - # Need to update jemalloc's configure - cd "${S}"/memory/jemalloc/src || die - WANT_AUTOCONF= eautoconf -} - -src_configure() { - MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}" - MEXTENSIONS="default" - # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys) - # Note: These are for Gentoo Linux use ONLY. For your own distribution, please - # get your own set of keys. - _google_api_key=AIzaSyDEAOvatFo0eTgsV_ZlEzx0ObmepsMzfAc - - #################################### - # - # mozconfig, CFLAGS and CXXFLAGS setup - # - #################################### - - mozconfig_init - mozconfig_config - - # It doesn't compile on alpha without this LDFLAGS - use alpha && append-ldflags "-Wl,--no-relax" - - # Add full relro support for hardened - use hardened && append-ldflags "-Wl,-z,relro,-z,now" - - if use neon ; then - mozconfig_annotate '' --with-fpu=neon - mozconfig_annotate '' --with-thumb=yes - mozconfig_annotate '' --with-thumb-interwork=no - fi - - if [[ ${CHOST} == armv* ]] ; then - mozconfig_annotate '' --with-float-abi=hard - mozconfig_annotate '' --enable-skia - - if ! use system-libvpx ; then - sed -i -e "s|softfp|hard|" \ - "${S}"/media/libvpx/moz.build - fi - fi - - use egl && mozconfig_annotate 'Enable EGL as GL provider' --with-gl-provider=EGL - - # Setup api key for location services - echo -n "${_google_api_key}" > "${S}"/google-api-key - mozconfig_annotate '' --with-google-api-keyfile="${S}/google-api-key" - - mozconfig_annotate '' --enable-extensions="${MEXTENSIONS}" - mozconfig_annotate '' --disable-mailnews - - # Other ff-specific settings - mozconfig_annotate '' --with-default-mozilla-five-home=${MOZILLA_FIVE_HOME} - - # Allow for a proper pgo build - if use pgo; then - echo "mk_add_options PROFILE_GEN_SCRIPT='\$(PYTHON) \$(OBJDIR)/_profile/pgo/profileserver.py'" >> "${S}"/.mozconfig - fi - - echo "mk_add_options MOZ_OBJDIR=${BUILD_OBJ_DIR}" >> "${S}"/.mozconfig - - # Finalize and report settings - mozconfig_final - - if [[ $(gcc-major-version) -lt 4 ]]; then - append-cxxflags -fno-stack-protector - fi - - # workaround for funky/broken upstream configure... - emake -f client.mk configure -} - -src_compile() { - if use pgo; then - addpredict /root - addpredict /etc/gconf - # Reset and cleanup environment variables used by GNOME/XDG - gnome2_environment_reset - - # Firefox tries to use dri stuff when it's run, see bug 380283 - shopt -s nullglob - cards=$(echo -n /dev/dri/card* | sed 's/ /:/g') - if test -z "${cards}"; then - cards=$(echo -n /dev/ati/card* /dev/nvidiactl* | sed 's/ /:/g') - if test -n "${cards}"; then - # Binary drivers seem to cause access violations anyway, so - # let's use indirect rendering so that the device files aren't - # touched at all. See bug 394715. - export LIBGL_ALWAYS_INDIRECT=1 - fi - fi - shopt -u nullglob - addpredict "${cards}" - - CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getLD)" \ - MOZ_MAKE_FLAGS="${MAKEOPTS}" SHELL="${SHELL:-${EPREFIX%/}/bin/bash}" \ - Xemake -f client.mk profiledbuild || die "Xemake failed" - else - CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getLD)" \ - MOZ_MAKE_FLAGS="${MAKEOPTS}" SHELL="${SHELL:-${EPREFIX%/}/bin/bash}" \ - emake -f client.mk realbuild - fi - -} - -src_install() { - MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}" - DICTPATH="\"${EPREFIX}/usr/share/myspell\"" - - cd "${BUILD_OBJ_DIR}" || die - - # Pax mark xpcshell for hardened support, only used for startupcache creation. - pax-mark m "${BUILD_OBJ_DIR}"/dist/bin/xpcshell - - # Add our default prefs for firefox - cp "${FILESDIR}"/gentoo-default-prefs.js-1 \ - "${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \ - || die - - # Set default path to search for dictionaries. - echo "pref(\"spellchecker.dictionary_path\", ${DICTPATH});" \ - >> "${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \ - || die - - echo "pref(\"extensions.autoDisableScopes\", 3);" >> \ - "${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \ - || die - - local plugin - use gmp-autoupdate || for plugin in \ - gmp-gmpopenh264 ; do - echo "pref(\"media.${plugin}.autoupdate\", false);" >> \ - "${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \ - || die - done - - MOZ_MAKE_FLAGS="${MAKEOPTS}" \ - emake DESTDIR="${D}" install - - # Install language packs - mozlinguas_src_install - - local size sizes icon_path icon name - if use bindist; then - sizes="16 32 48" - icon_path="${S}/browser/branding/aurora" - # Firefox's new rapid release cycle means no more codenames - # Let's just stick with this one... - icon="aurora" - name="Aurora" - else - sizes="16 22 24 32 256" - icon_path="${S}/browser/branding/official" - icon="${PN}" - name="Mozilla Firefox" - fi - - # Install icons and .desktop for menu entry - for size in ${sizes}; do - insinto "/usr/share/icons/hicolor/${size}x${size}/apps" - newins "${icon_path}/default${size}.png" "${icon}.png" - done - # The 128x128 icon has a different name - insinto "/usr/share/icons/hicolor/128x128/apps" - newins "${icon_path}/mozicon128.png" "${icon}.png" - # Install a 48x48 icon into /usr/share/pixmaps for legacy DEs - newicon "${icon_path}/content/icon48.png" "${icon}.png" - newmenu "${FILESDIR}/icon/${PN}.desktop" "${PN}.desktop" - sed -i -e "s:@NAME@:${name}:" -e "s:@ICON@:${icon}:" \ - "${ED}/usr/share/applications/${PN}.desktop" || die - - # Add StartupNotify=true bug 237317 - if use startup-notification ; then - echo "StartupNotify=true"\ - >> "${ED}/usr/share/applications/${PN}.desktop" \ - || die - fi - - # Required in order to use plugins and even run firefox on hardened. - if use jit; then - pax-mark m "${ED}"${MOZILLA_FIVE_HOME}/{firefox,firefox-bin,plugin-container} - else - pax-mark m "${ED}"${MOZILLA_FIVE_HOME}/plugin-container - fi - - if use minimal; then - rm -r "${ED}"/usr/include "${ED}${MOZILLA_FIVE_HOME}"/{idl,include,lib,sdk} \ - || die "Failed to remove sdk and headers" - fi - - # very ugly hack to make firefox not sigbus on sparc - # FIXME: is this still needed?? - use sparc && { sed -e 's/Firefox/FirefoxGentoo/g' \ - -i "${ED}/${MOZILLA_FIVE_HOME}/application.ini" \ - || die "sparc sed failed"; } - - # revdep-rebuild entry - insinto /etc/revdep-rebuild - echo "SEARCH_DIRS_MASK=${MOZILLA_FIVE_HOME}" >> ${T}/10firefox - doins "${T}"/10${PN} || die -} - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - # Update mimedb for the new .desktop file - fdo-mime_desktop_database_update - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -} diff --git a/www-client/firefox/firefox-38.3.0.ebuild b/www-client/firefox/firefox-38.3.0.ebuild index 2c1fe1f145d9..2e58da92df48 100644 --- a/www-client/firefox/firefox-38.3.0.ebuild +++ b/www-client/firefox/firefox-38.3.0.ebuild @@ -27,7 +27,7 @@ if [[ ${MOZ_ESR} == 1 ]]; then fi # Patch version -PATCH="${PN}-38.0-patches-0.3" +PATCH="${PN}-38.0-patches-04" MOZ_HTTP_URI="http://archive.mozilla.org/pub/${PN}/releases" MOZCONFIG_OPTIONAL_WIFI=1 @@ -140,7 +140,6 @@ src_prepare() { EPATCH_SUFFIX="patch" \ EPATCH_FORCE="yes" \ epatch "${WORKDIR}/firefox" - epatch "${FILESDIR}"/${PN}-38-dont-hardcode-libc-soname.patch # Allow user to apply any additional patches without modifing ebuild epatch_user diff --git a/www-client/firefox/firefox-40.0.3.ebuild b/www-client/firefox/firefox-40.0.3.ebuild deleted file mode 100644 index c71527a45f40..000000000000 --- a/www-client/firefox/firefox-40.0.3.ebuild +++ /dev/null @@ -1,399 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" -VIRTUALX_REQUIRED="pgo" -WANT_AUTOCONF="2.1" -MOZ_ESR="" - -# This list can be updated with scripts/get_langs.sh from the mozilla overlay -# No official support as of fetch time -# csb -MOZ_LANGS=( af ar as ast be bg bn-BD bn-IN br bs ca cs cy da de el en -en-GB en-US en-ZA eo es-AR es-CL es-ES es-MX et eu fa fi fr fy-NL ga-IE gd -gl gu-IN he hi-IN hr hu hy-AM id is it ja kk km kn ko lt lv mai mk ml mr -nb-NO nl nn-NO or pa-IN pl pt-BR pt-PT rm ro ru si sk sl son sq sr sv-SE ta te -th tr uk vi xh zh-CN zh-TW ) - -# Convert the ebuild version to the upstream mozilla version, used by mozlinguas -MOZ_PV="${PV/_alpha/a}" # Handle alpha for SRC_URI -MOZ_PV="${MOZ_PV/_beta/b}" # Handle beta for SRC_URI -MOZ_PV="${MOZ_PV/_rc/rc}" # Handle rc for SRC_URI - -if [[ ${MOZ_ESR} == 1 ]]; then - # ESR releases have slightly version numbers - MOZ_PV="${MOZ_PV}esr" -fi - -# Patch version -PATCH="${PN}-40.0-patches-0.01" - -MOZ_HTTP_URI="http://archive.mozilla.org/pub/${PN}/releases" - -MOZCONFIG_OPTIONAL_WIFI=1 -MOZCONFIG_OPTIONAL_JIT="enabled" - -inherit check-reqs flag-o-matic toolchain-funcs eutils gnome2-utils mozconfig-v6.40 multilib pax-utils fdo-mime autotools virtualx mozlinguas - -DESCRIPTION="Firefox Web Browser" -HOMEPAGE="http://www.mozilla.com/firefox" - -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" - -SLOT="0" -LICENSE="MPL-2.0 GPL-2 LGPL-2.1" -IUSE="bindist egl hardened +minimal neon pgo selinux +gmp-autoupdate test" -RESTRICT="!bindist? ( bindist )" - -# More URIs appended below... -SRC_URI="${SRC_URI} - https://dev.gentoo.org/~anarchy/mozilla/patchsets/${PATCH}.tar.xz - https://dev.gentoo.org/~axs/mozilla/patchsets/${PATCH}.tar.xz - https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/${PATCH}.tar.xz" - -ASM_DEPEND=">=dev-lang/yasm-1.1" - -# Mesa 7.10 needed for WebGL + bugfixes -RDEPEND=" - >=dev-libs/nss-3.19.2 - >=dev-libs/nspr-4.10.8 - selinux? ( sec-policy/selinux-mozilla )" - -DEPEND="${RDEPEND} - pgo? ( - >=sys-devel/gcc-4.5 ) - amd64? ( ${ASM_DEPEND} - virtual/opengl ) - x86? ( ${ASM_DEPEND} - virtual/opengl )" - -# No source releases for alpha|beta -if [[ ${PV} =~ alpha ]]; then - CHANGESET="8a3042764de7" - SRC_URI="${SRC_URI} - https://dev.gentoo.org/~nirbheek/mozilla/firefox/firefox-${MOZ_PV}_${CHANGESET}.source.tar.bz2" - S="${WORKDIR}/mozilla-aurora-${CHANGESET}" -elif [[ ${PV} =~ beta ]]; then - S="${WORKDIR}/mozilla-release" - SRC_URI="${SRC_URI} - ${MOZ_HTTP_URI}/${MOZ_PV}/source/firefox-${MOZ_PV}.source.tar.bz2" -else - SRC_URI="${SRC_URI} - ${MOZ_HTTP_URI}/${MOZ_PV}/source/firefox-${MOZ_PV}.source.tar.bz2" - if [[ ${MOZ_ESR} == 1 ]]; then - S="${WORKDIR}/mozilla-esr${PV%%.*}" - else - S="${WORKDIR}/mozilla-release" - fi -fi - -QA_PRESTRIPPED="usr/$(get_libdir)/${PN}/firefox" - -BUILD_OBJ_DIR="${S}/ff" - -pkg_setup() { - moz_pkgsetup - - # Avoid PGO profiling problems due to enviroment leakage - # These should *always* be cleaned up anyway - unset DBUS_SESSION_BUS_ADDRESS \ - DISPLAY \ - ORBIT_SOCKETDIR \ - SESSION_MANAGER \ - XDG_SESSION_COOKIE \ - XAUTHORITY - - if ! use bindist; then - einfo - elog "You are enabling official branding. You may not redistribute this build" - elog "to any users on your network or the internet. Doing so puts yourself into" - elog "a legal problem with Mozilla Foundation" - elog "You can disable it by emerging ${PN} _with_ the bindist USE-flag" - fi - - if use pgo; then - einfo - ewarn "You will do a double build for profile guided optimization." - ewarn "This will result in your build taking at least twice as long as before." - fi -} - -pkg_pretend() { - # Ensure we have enough disk space to compile - if use pgo || use debug || use test ; then - CHECKREQS_DISK_BUILD="8G" - else - CHECKREQS_DISK_BUILD="4G" - fi - check-reqs_pkg_setup -} - -src_unpack() { - unpack ${A} - - # Unpack language packs - mozlinguas_src_unpack -} - -src_prepare() { - # Apply our patches - EPATCH_SUFFIX="patch" \ - EPATCH_FORCE="yes" \ - EPATCH_EXCLUDE="8010_bug114311-freetype26.patch" \ - epatch "${WORKDIR}/firefox" - epatch "${FILESDIR}"/${PN}-38-hppa-js-syntax-error.patch #556196 - epatch "${FILESDIR}"/${PN}-38-dont-hardcode-libc-soname.patch #557956 - # Allow user to apply any additional patches without modifing ebuild - epatch_user - - # Enable gnomebreakpad - if use debug ; then - sed -i -e "s:GNOME_DISABLE_CRASH_DIALOG=1:GNOME_DISABLE_CRASH_DIALOG=0:g" \ - "${S}"/build/unix/run-mozilla.sh || die "sed failed!" - fi - - # Ensure that our plugins dir is enabled as default - sed -i -e "s:/usr/lib/mozilla/plugins:/usr/lib/nsbrowser/plugins:" \ - "${S}"/xpcom/io/nsAppFileLocationProvider.cpp || die "sed failed to replace plugin path for 32bit!" - sed -i -e "s:/usr/lib64/mozilla/plugins:/usr/lib64/nsbrowser/plugins:" \ - "${S}"/xpcom/io/nsAppFileLocationProvider.cpp || die "sed failed to replace plugin path for 64bit!" - - # Fix sandbox violations during make clean, bug 372817 - sed -e "s:\(/no-such-file\):${T}\1:g" \ - -i "${S}"/config/rules.mk \ - -i "${S}"/nsprpub/configure{.in,} \ - || die - - # Don't exit with error when some libs are missing which we have in - # system. - sed '/^MOZ_PKG_FATAL_WARNINGS/s@= 1@= 0@' \ - -i "${S}"/browser/installer/Makefile.in || die - - # Don't error out when there's no files to be removed: - sed 's@\(xargs rm\)$@\1 -f@' \ - -i "${S}"/toolkit/mozapps/installer/packager.mk || die - - eautoreconf - - # Must run autoconf in js/src - cd "${S}"/js/src || die - eautoconf - - # Need to update jemalloc's configure - cd "${S}"/memory/jemalloc/src || die - WANT_AUTOCONF= eautoconf -} - -src_configure() { - MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}" - MEXTENSIONS="default" - # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys) - # Note: These are for Gentoo Linux use ONLY. For your own distribution, please - # get your own set of keys. - _google_api_key=AIzaSyDEAOvatFo0eTgsV_ZlEzx0ObmepsMzfAc - - #################################### - # - # mozconfig, CFLAGS and CXXFLAGS setup - # - #################################### - - mozconfig_init - mozconfig_config - - # It doesn't compile on alpha without this LDFLAGS - use alpha && append-ldflags "-Wl,--no-relax" - - # Add full relro support for hardened - use hardened && append-ldflags "-Wl,-z,relro,-z,now" - - if use neon ; then - mozconfig_annotate '' --with-fpu=neon - mozconfig_annotate '' --with-thumb=yes - mozconfig_annotate '' --with-thumb-interwork=no - fi - - if [[ ${CHOST} == armv* ]] ; then - mozconfig_annotate '' --with-float-abi=hard - mozconfig_annotate '' --enable-skia - - if ! use system-libvpx ; then - sed -i -e "s|softfp|hard|" \ - "${S}"/media/libvpx/moz.build - fi - fi - - use egl && mozconfig_annotate 'Enable EGL as GL provider' --with-gl-provider=EGL - - # Setup api key for location services - echo -n "${_google_api_key}" > "${S}"/google-api-key - mozconfig_annotate '' --with-google-api-keyfile="${S}/google-api-key" - - mozconfig_annotate '' --enable-extensions="${MEXTENSIONS}" - mozconfig_annotate '' --disable-mailnews - - # Other ff-specific settings - mozconfig_annotate '' --with-default-mozilla-five-home=${MOZILLA_FIVE_HOME} - - # Allow for a proper pgo build - if use pgo; then - echo "mk_add_options PROFILE_GEN_SCRIPT='\$(PYTHON) \$(OBJDIR)/_profile/pgo/profileserver.py'" >> "${S}"/.mozconfig - fi - - echo "mk_add_options MOZ_OBJDIR=${BUILD_OBJ_DIR}" >> "${S}"/.mozconfig - - # Finalize and report settings - mozconfig_final - - if [[ $(gcc-major-version) -lt 4 ]]; then - append-cxxflags -fno-stack-protector - fi - - # workaround for funky/broken upstream configure... - emake -f client.mk configure -} - -src_compile() { - if use pgo; then - addpredict /root - addpredict /etc/gconf - # Reset and cleanup environment variables used by GNOME/XDG - gnome2_environment_reset - - # Firefox tries to use dri stuff when it's run, see bug 380283 - shopt -s nullglob - cards=$(echo -n /dev/dri/card* | sed 's/ /:/g') - if test -z "${cards}"; then - cards=$(echo -n /dev/ati/card* /dev/nvidiactl* | sed 's/ /:/g') - if test -n "${cards}"; then - # Binary drivers seem to cause access violations anyway, so - # let's use indirect rendering so that the device files aren't - # touched at all. See bug 394715. - export LIBGL_ALWAYS_INDIRECT=1 - fi - fi - shopt -u nullglob - addpredict "${cards}" - - CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getLD)" \ - MOZ_MAKE_FLAGS="${MAKEOPTS}" SHELL="${SHELL:-${EPREFIX%/}/bin/bash}" \ - Xemake -f client.mk profiledbuild || die "Xemake failed" - else - CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getLD)" \ - MOZ_MAKE_FLAGS="${MAKEOPTS}" SHELL="${SHELL:-${EPREFIX%/}/bin/bash}" \ - emake -f client.mk realbuild - fi - -} - -src_install() { - MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}" - DICTPATH="\"${EPREFIX}/usr/share/myspell\"" - - cd "${BUILD_OBJ_DIR}" || die - - # Pax mark xpcshell for hardened support, only used for startupcache creation. - pax-mark m "${BUILD_OBJ_DIR}"/dist/bin/xpcshell - - # Add our default prefs for firefox - cp "${FILESDIR}"/gentoo-default-prefs.js-1 \ - "${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \ - || die - - # Set default path to search for dictionaries. - echo "pref(\"spellchecker.dictionary_path\", ${DICTPATH});" \ - >> "${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \ - || die - - echo "pref(\"extensions.autoDisableScopes\", 3);" >> \ - "${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \ - || die - - local plugin - use gmp-autoupdate || for plugin in \ - gmp-gmpopenh264 ; do - echo "pref(\"media.${plugin}.autoupdate\", false);" >> \ - "${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \ - || die - done - - MOZ_MAKE_FLAGS="${MAKEOPTS}" \ - emake DESTDIR="${D}" install - - # Install language packs - mozlinguas_src_install - - local size sizes icon_path icon name - if use bindist; then - sizes="16 32 48" - icon_path="${S}/browser/branding/aurora" - # Firefox's new rapid release cycle means no more codenames - # Let's just stick with this one... - icon="aurora" - name="Aurora" - else - sizes="16 22 24 32 256" - icon_path="${S}/browser/branding/official" - icon="${PN}" - name="Mozilla Firefox" - fi - - # Install icons and .desktop for menu entry - for size in ${sizes}; do - insinto "/usr/share/icons/hicolor/${size}x${size}/apps" - newins "${icon_path}/default${size}.png" "${icon}.png" - done - # The 128x128 icon has a different name - insinto "/usr/share/icons/hicolor/128x128/apps" - newins "${icon_path}/mozicon128.png" "${icon}.png" - # Install a 48x48 icon into /usr/share/pixmaps for legacy DEs - newicon "${icon_path}/content/icon48.png" "${icon}.png" - newmenu "${FILESDIR}/icon/${PN}.desktop" "${PN}.desktop" - sed -i -e "s:@NAME@:${name}:" -e "s:@ICON@:${icon}:" \ - "${ED}/usr/share/applications/${PN}.desktop" || die - - # Add StartupNotify=true bug 237317 - if use startup-notification ; then - echo "StartupNotify=true"\ - >> "${ED}/usr/share/applications/${PN}.desktop" \ - || die - fi - - # Required in order to use plugins and even run firefox on hardened. - if use jit; then - pax-mark m "${ED}"${MOZILLA_FIVE_HOME}/{firefox,firefox-bin,plugin-container} - else - pax-mark m "${ED}"${MOZILLA_FIVE_HOME}/plugin-container - fi - - if use minimal; then - rm -r "${ED}"/usr/include "${ED}${MOZILLA_FIVE_HOME}"/{idl,include,lib,sdk} \ - || die "Failed to remove sdk and headers" - fi - - # very ugly hack to make firefox not sigbus on sparc - # FIXME: is this still needed?? - use sparc && { sed -e 's/Firefox/FirefoxGentoo/g' \ - -i "${ED}/${MOZILLA_FIVE_HOME}/application.ini" \ - || die "sparc sed failed"; } - - # revdep-rebuild entry - insinto /etc/revdep-rebuild - echo "SEARCH_DIRS_MASK=${MOZILLA_FIVE_HOME}" >> ${T}/10firefox - doins "${T}"/10${PN} || die -} - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - # Update mimedb for the new .desktop file - fdo-mime_desktop_database_update - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -} diff --git a/www-client/firefox/firefox-41.0-r1.ebuild b/www-client/firefox/firefox-41.0-r1.ebuild index 335eb958ff8b..9064c79905ec 100644 --- a/www-client/firefox/firefox-41.0-r1.ebuild +++ b/www-client/firefox/firefox-41.0-r1.ebuild @@ -27,7 +27,7 @@ if [[ ${MOZ_ESR} == 1 ]]; then fi # Patch version -PATCH="${PN}-40.0-patches-0.01" +PATCH="${PN}-41.0-patches-01" MOZ_HTTP_URI="http://archive.mozilla.org/pub/${PN}/releases" MOZCONFIG_OPTIONAL_WIFI=1 @@ -140,7 +140,6 @@ src_prepare() { EPATCH_SUFFIX="patch" \ EPATCH_FORCE="yes" \ epatch "${WORKDIR}/firefox" - epatch "${FILESDIR}"/${PN}-38-dont-hardcode-libc-soname.patch #557956 # Allow user to apply any additional patches without modifing ebuild epatch_user diff --git a/www-client/google-chrome-unstable/Manifest b/www-client/google-chrome-unstable/Manifest index e3fd01956a2a..50b9b7900bad 100644 --- a/www-client/google-chrome-unstable/Manifest +++ b/www-client/google-chrome-unstable/Manifest @@ -1,2 +1,2 @@ -DIST google-chrome-unstable_47.0.2522.1-1_amd64.deb 47590434 SHA256 57e8c77e5846b6f3a05d54645ad15afc09dc57fa7931fe1c62bd493a3684c499 SHA512 a348f1b5110c9112cc775a5ad831104f62bef82adab83ff8db389b7bfe78cee6cb4a4d97104bfc2dbf095bc91e26f1cb046d3d9d52e74dc26805a18ed591e836 WHIRLPOOL dfbf27c6932d613798fafeb6d70f0dac8cb9ba8b154ec2098096e98c1f832ba0887468ac6665d89549d71440d9803eceb3ccbb5624f9d97fdf8a1a20d629f2ee -DIST google-chrome-unstable_47.0.2522.1-1_i386.deb 46988260 SHA256 cf40b161e61d266bcc99134b4dcbde5d49af747a7f438937a0f12ed5c9111665 SHA512 6bfa3bc74e73696caa06dc3d9deafafc09a782b16bbb4bea8a85368c7ac839bafb7d53dd68ba9cf010877ebd9ae9920347a75c8f1b12e085f1fd4b67f0531ada WHIRLPOOL 32bda47dd82cc0b426683c3a76660ea3d6a4cfd0ca781ed18f178a9e2b16947468230c47809f5ccddee552b2ab7e7ac73fd5e7b31ed97782ed3819e9fe0c2d51 +DIST google-chrome-unstable_47.0.2526.6-1_amd64.deb 47463090 SHA256 6bc6a5aec740a2a193446dec3c4726f099f47c0da3f962bb1aff7aca5d50b5e2 SHA512 6a99b1ad503733ff7840820a09555ef01fef5cd4c7ecfb06d5ccace395a38844e5c2bfb250b2630ea58311b1a481a33989319cefe4a4a1d28245d1447ab2ceed WHIRLPOOL 64a8265ee21ab69ca64b3c2da40f4ecc94d458460cb1f0a8ac744ce6a393cc7c59afa430a5a83fb2529e822fbc4920191b03494dfd781b24746f0d4b2a6262b7 +DIST google-chrome-unstable_47.0.2526.6-1_i386.deb 46783286 SHA256 bba85100aafeb50a87a853282c33788d636c58925454aef3ddfd2c62e84b8d37 SHA512 2b0238a5d15c60bca58e60776ea05f35b0056d4d83ed6eb251efca80dcaae78b1c1d8d7800fcb9692bd16717e5830c8f2451a47c3797904f4cc3ac6552cc39db WHIRLPOOL e91b5804eb76227cfe359df8e79fbbb7a6c8a45f17a39679150df6b83674576f630c2aa54a628b054c9ecd5d71a32d9c6377c8f430d652651c22516b261af61f diff --git a/www-client/google-chrome-unstable/google-chrome-unstable-47.0.2522.1_p1.ebuild b/www-client/google-chrome-unstable/google-chrome-unstable-47.0.2526.6_p1.ebuild similarity index 100% rename from www-client/google-chrome-unstable/google-chrome-unstable-47.0.2522.1_p1.ebuild rename to www-client/google-chrome-unstable/google-chrome-unstable-47.0.2526.6_p1.ebuild diff --git a/www-client/seamonkey/Manifest b/www-client/seamonkey/Manifest index 4269a3f8542d..0e275aa21275 100644 --- a/www-client/seamonkey/Manifest +++ b/www-client/seamonkey/Manifest @@ -1,6 +1,6 @@ DIST enigmail-1.8.2.tar.gz 1604159 SHA256 1d2700799bc52aaa8e8c9f7a0f5111281ff9fbdffc093cdff070657d574eb2a6 SHA512 51eece988f466aeb4a343719a86dc7d95ec41dfc3ec7e3d8d2f360528675c605f8f2154f10aeea6ef82ed87c784f1d13bfc978e052a9ede0072b5137f6294b11 WHIRLPOOL e12a703899e0e4c98adc58b5f4bf1f74e24a2cf09c1a706a6edca6aca06140041b293f23e6e5b05c507177b4148533ebc3431fb75592aae07d791a899ba2c45c -DIST firefox-38.0-patches-0.3.tar.xz 4796 SHA256 bfbef81748f76f5f80c3ce6e6b810b65f6266f71da02722b1e8c9fad865b02bd SHA512 a974e33759246153db7d83488f1326275efd12c44a6c8c539cbc35709b4dbd27e848bda32f302ac2baa5d8729ba20579ebc7f643419757f542972ca1a264d520 WHIRLPOOL 3549239db380c02a1575ff407ea684a14827f2250d991b5eb6c8a341ceebaca57cd2cc422e160f00dfab933385d677574cd84947da07bd282c68bb84c40fa42b -DIST firefox-40.0-patches-0.01.tar.xz 5144 SHA256 072c44c79ba82d04958b3fc3d1c6e90805cf71797a03b96961fd3a16bd14c3a7 SHA512 bb9ca395ee380e6ec21fefadc5c5052ce8490039577ac0245bcee309686e802a654a999b3aeeaf8d97573f102fba3620c9995ec145ddcdded2ee9487490f87f9 WHIRLPOOL e74ed6af06e61baaf0991d23849739fb8c1cb33c800467e76d1c15ae22360c18c757ac9f19d274ca9cc54a6f9a0d17f365bd815b4a35c94766b29980638e8c91 +DIST firefox-38.0-patches-04.tar.xz 5572 SHA256 501bd1cbd0ac7239674df4f7424e0dd57cab9ede47e18af0c99a8b8e04aa5ccc SHA512 311d494ba2a4219c88eea651e617aa776d6aa8ff68092302b76e9ff4e3e348c7197ec583923188e39973b7bd14f94df19756daf2495d9b0fe44aeaa3dcd19100 WHIRLPOOL 6605eaa0b80c97d2d5d23a23f7b8d92e7ed875787b932adf14622eb3fb5f5ccdebe8a094d78b3518d874b8819724af94100fd1728074ba4a5c426bbd91eeb722 +DIST firefox-41.0-patches-01.tar.xz 6328 SHA256 408f9a577d698b3713a112d04552e396ff2af7cb9756f87800efef7cc55dcdba SHA512 a9476a658731b5fdd51bb9855bf4292afc8cfb8e4475250b4fac75cb5166a1e9d384a8fd2ceb38d6f2044759bcb895f956c0cfcb361eb4a60d38481a93c546b0 WHIRLPOOL 9420e7757a0f45889dec228ce3d1fedd23ed6ff9cde1f3461ffef577ccd43bc6cdb5ce3a3200f067bfe9203111067467a91bd90c0861bf81d490b022baf087eb DIST seamonkey-2.33-patches-01.tar.xz 944 SHA256 1612d94dddbd37fa4ce8307c1ba565c8439d082609b63c12b4971e361895566c SHA512 0132e7d06a1ea5d6c059f23e5b8a20016a1e911e8aa40ae15eaefcd141030b4d245297f1e13e508827d91bab5988db4775c8425e737654afba2ede9c2dee8392 WHIRLPOOL 4520c4eaa7e6a25f5c32e9cd1d46472e181fbd769a1c5a59c913834cec5556100eac01423b4abf4a47543d0fbae4bf83b0f4a4d6cec7a058587e2705043bf507 DIST seamonkey-2.35-be.xpi 844271 SHA256 c1043f743a353dfb46db8f524249c808183e89f4f0f7a6181f9d5304d545f694 SHA512 2683a9e5858680a37b152c77fc15964d9b342e2d2a0fc409968b6cf35758f2bf30b3339dcd5c860ef95c56ed85c224383f95efc3d14999cd0a3e4a396c7c4644 WHIRLPOOL f3f69369b0e225cdbb8fc1ac35e4e2295ed1778df7cabd3c9f4f566b758ee6f7dc2f922e422b5b5175bc2ff2ecc15769e535810a90435d15f57f7b22217eb1bf DIST seamonkey-2.35-ca.xpi 835414 SHA256 6b6bc56a6f780f18a8736a554fcec9b042ff8c3a4ecbef9d192d3ad6a67ed150 SHA512 7dd90e4d3124749971c66c5aa49c4a7ba2fa3813df49526d8f42083b0b6b712362005d3e7332a4d74b053360d56beb22f922e6917471f42e81386b7cc5d9b6d0 WHIRLPOOL 8aa4bc9e1d662c3488fe27b490b4bc42536931a82340b5b133b9886efd10836b64da3c7f253cfd83e561f0d9b2ed03cae922a836c9bb0f927a4c28dabd1de64f diff --git a/www-client/seamonkey/files/firefox-38-dont-hardcode-libc-soname.patch b/www-client/seamonkey/files/firefox-38-dont-hardcode-libc-soname.patch deleted file mode 100644 index 83779bc9dfa7..000000000000 --- a/www-client/seamonkey/files/firefox-38-dont-hardcode-libc-soname.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- a/testing/mozbase/mozinfo/mozinfo/mozinfo.py 2015-08-06 13:41:02.000000000 -0400 -+++ b/testing/mozbase/mozinfo/mozinfo/mozinfo.py 2015-08-21 21:17:00.320766493 -0400 -@@ -96,7 +96,7 @@ - import errno - PR_SET_SECCOMP = 22 - SECCOMP_MODE_FILTER = 2 -- ctypes.CDLL("libc.so.6", use_errno=True).prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, 0) -+ ctypes.CDLL(ctypes.util.find_library('c'), use_errno=True).prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, 0) - info['has_sandbox'] = ctypes.get_errno() == errno.EFAULT - else: - info['has_sandbox'] = True ---- a/testing/mochitest/runtests.py 2015-08-06 13:41:02.000000000 -0400 -+++ b/testing/mochitest/runtests.py 2015-08-21 21:17:36.060766000 -0400 -@@ -1097,7 +1097,7 @@ - if not mozinfo.isLinux: - return False, '' - -- libc = ctypes.cdll.LoadLibrary('libc.so.6') -+ libc = ctypes.cdll.LoadLibrary(ctypes.util.find_library('c')) - O_RDWR = 2 - # These are from linux/videodev2.h - diff --git a/www-client/seamonkey/files/firefox-38-hppa-js-syntax-error.patch b/www-client/seamonkey/files/firefox-38-hppa-js-syntax-error.patch deleted file mode 100644 index 719732e6ec0a..000000000000 --- a/www-client/seamonkey/files/firefox-38-hppa-js-syntax-error.patch +++ /dev/null @@ -1,30 +0,0 @@ -# HG changeset patch -# User Ian Stakenvicius -# Parent 2ee9895e032c492705adaf213706d4260ca172c8 -Fix JS_CHECK_STACK_SIZE define for stack-growing-up case (hppa) - -Upstream bug 1189011 -Gentoo bug 556196 - -diff --git a/js/src/jsfriendapi.h b/js/src/jsfriendapi.h ---- a/js/src/jsfriendapi.h -+++ b/js/src/jsfriendapi.h -@@ -15,17 +15,17 @@ - #include "jsbytecode.h" - #include "jspubtd.h" - - #include "js/CallArgs.h" - #include "js/CallNonGenericMethod.h" - #include "js/Class.h" - - #if JS_STACK_GROWTH_DIRECTION > 0 --# define JS_CHECK_STACK_SIZE(limit, sp) (MOZ_LIKELY(((uintptr_t)(sp) < (limit))) -+# define JS_CHECK_STACK_SIZE(limit, sp) (MOZ_LIKELY((uintptr_t)(sp) < (limit))) - #else - # define JS_CHECK_STACK_SIZE(limit, sp) (MOZ_LIKELY((uintptr_t)(sp) > (limit))) - #endif - - class JSAtom; - struct JSErrorFormatString; - class JSLinearString; - struct JSJitInfo; diff --git a/www-client/seamonkey/seamonkey-2.35.ebuild b/www-client/seamonkey/seamonkey-2.35.ebuild index 841dac14f263..d39821d8c632 100644 --- a/www-client/seamonkey/seamonkey-2.35.ebuild +++ b/www-client/seamonkey/seamonkey-2.35.ebuild @@ -30,7 +30,7 @@ MOZCONFIG_OPTIONAL_WIFI=1 MOZCONFIG_OPTIONAL_JIT="enabled" inherit check-reqs flag-o-matic toolchain-funcs eutils mozconfig-v6.39 multilib pax-utils fdo-mime autotools mozextension nsplugins mozlinguas -PATCHFF="firefox-38.0-patches-0.3" +PATCHFF="firefox-38.0-patches-04" PATCH="${PN}-2.33-patches-01" EMVER="1.8.2" diff --git a/www-client/seamonkey/seamonkey-2.38.ebuild b/www-client/seamonkey/seamonkey-2.38.ebuild index 5c6428873185..77c945df628f 100644 --- a/www-client/seamonkey/seamonkey-2.38.ebuild +++ b/www-client/seamonkey/seamonkey-2.38.ebuild @@ -30,7 +30,7 @@ MOZCONFIG_OPTIONAL_WIFI=1 MOZCONFIG_OPTIONAL_JIT="enabled" inherit check-reqs flag-o-matic toolchain-funcs eutils mozconfig-v6.41 multilib pax-utils fdo-mime autotools mozextension nsplugins mozlinguas -PATCHFF="firefox-40.0-patches-0.01" +PATCHFF="firefox-41.0-patches-01" PATCH="${PN}-2.33-patches-01" EMVER="1.8.2" @@ -119,8 +119,6 @@ src_prepare() { EPATCH_SUFFIX="patch" \ EPATCH_FORCE="yes" \ epatch "${WORKDIR}/firefox" - epatch "${FILESDIR}"/firefox-38-hppa-js-syntax-error.patch #556196 - epatch "${FILESDIR}"/firefox-38-dont-hardcode-libc-soname.patch #557956 popd &>/dev/null || die # Shell scripts sometimes contain DOS line endings; bug 391889 diff --git a/www-plugins/chrome-binary-plugins/Manifest b/www-plugins/chrome-binary-plugins/Manifest index efa98a3ac63d..cb47c81fa3c5 100644 --- a/www-plugins/chrome-binary-plugins/Manifest +++ b/www-plugins/chrome-binary-plugins/Manifest @@ -2,5 +2,5 @@ DIST google-chrome-beta_46.0.2490.52-1_amd64.deb 47188898 SHA256 c96732a2a9f6c09 DIST google-chrome-beta_46.0.2490.52-1_i386.deb 46989238 SHA256 a5164faa32d22cf60cf9c3861760f7d7507c55a2bf94d8297acef12f58674f82 SHA512 28021f863fc16758e64675d45399719984d34f956dfbfa7ef007c635fac3b0e6ffaf87a4ecdbd6575d6f745ecaa04bfff01904100b7106592928ce630efc6636 WHIRLPOOL 27452b59301dfc10f0e7998effe89b7313e1538c7f42e1b7fca838cf800a3067caeda54607055aa11bb797ff44c5704e0a155194338ebfc591ea41b8148fc66d DIST google-chrome-stable_45.0.2454.101-1_amd64.deb 47425034 SHA256 f22f41e2ab4af3d0ef4b88f47abcf9fbcd9e9ec5e0a1ecb275cbb673ec688bb3 SHA512 506f846c1da31a2be5aac306d40e293ce0d36c7278e86a74700b223f7ef35bf386ce81bd989d37bec70c55f1339ec31eaf428ce36b7ea1185c3da15612791e64 WHIRLPOOL d9ca61d2a8ec2c1551c8a4358e62e060fa527e82301a23909a46b27d764ebf45afcea0bd399ca8e5a658eca77dcca96763ab676e4060a64789a643f5756e02ba DIST google-chrome-stable_45.0.2454.101-1_i386.deb 46992150 SHA256 a5f2275d59b9bf49f094c62ce6a60610be5826cf96edf09525679f5e67a588d2 SHA512 ec05f2418ae25803eb0130c08f804d03d1dd5d6997d269298d6cf43fb74a75a60792ddef499ed97695951c2272155db087f2eb9ab7c7196847ccf421641e9118 WHIRLPOOL 86719d3d52bb32c716eb1fb7136223357d489e81e36096f8438bf565984bbcf44c5f3bcb2ff278615cb6eece988202470b30c0505e49726bdc6ab190c8fdb186 -DIST google-chrome-unstable_47.0.2522.1-1_amd64.deb 47590434 SHA256 57e8c77e5846b6f3a05d54645ad15afc09dc57fa7931fe1c62bd493a3684c499 SHA512 a348f1b5110c9112cc775a5ad831104f62bef82adab83ff8db389b7bfe78cee6cb4a4d97104bfc2dbf095bc91e26f1cb046d3d9d52e74dc26805a18ed591e836 WHIRLPOOL dfbf27c6932d613798fafeb6d70f0dac8cb9ba8b154ec2098096e98c1f832ba0887468ac6665d89549d71440d9803eceb3ccbb5624f9d97fdf8a1a20d629f2ee -DIST google-chrome-unstable_47.0.2522.1-1_i386.deb 46988260 SHA256 cf40b161e61d266bcc99134b4dcbde5d49af747a7f438937a0f12ed5c9111665 SHA512 6bfa3bc74e73696caa06dc3d9deafafc09a782b16bbb4bea8a85368c7ac839bafb7d53dd68ba9cf010877ebd9ae9920347a75c8f1b12e085f1fd4b67f0531ada WHIRLPOOL 32bda47dd82cc0b426683c3a76660ea3d6a4cfd0ca781ed18f178a9e2b16947468230c47809f5ccddee552b2ab7e7ac73fd5e7b31ed97782ed3819e9fe0c2d51 +DIST google-chrome-unstable_47.0.2526.6-1_amd64.deb 47463090 SHA256 6bc6a5aec740a2a193446dec3c4726f099f47c0da3f962bb1aff7aca5d50b5e2 SHA512 6a99b1ad503733ff7840820a09555ef01fef5cd4c7ecfb06d5ccace395a38844e5c2bfb250b2630ea58311b1a481a33989319cefe4a4a1d28245d1447ab2ceed WHIRLPOOL 64a8265ee21ab69ca64b3c2da40f4ecc94d458460cb1f0a8ac744ce6a393cc7c59afa430a5a83fb2529e822fbc4920191b03494dfd781b24746f0d4b2a6262b7 +DIST google-chrome-unstable_47.0.2526.6-1_i386.deb 46783286 SHA256 bba85100aafeb50a87a853282c33788d636c58925454aef3ddfd2c62e84b8d37 SHA512 2b0238a5d15c60bca58e60776ea05f35b0056d4d83ed6eb251efca80dcaae78b1c1d8d7800fcb9692bd16717e5830c8f2451a47c3797904f4cc3ac6552cc39db WHIRLPOOL e91b5804eb76227cfe359df8e79fbbb7a6c8a45f17a39679150df6b83674576f630c2aa54a628b054c9ecd5d71a32d9c6377c8f430d652651c22516b261af61f diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-47.0.2522.1_alpha1.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-47.0.2526.6_alpha1.ebuild similarity index 100% rename from www-plugins/chrome-binary-plugins/chrome-binary-plugins-47.0.2522.1_alpha1.ebuild rename to www-plugins/chrome-binary-plugins/chrome-binary-plugins-47.0.2526.6_alpha1.ebuild diff --git a/x11-libs/fltk/fltk-1.3.3-r3.ebuild b/x11-libs/fltk/fltk-1.3.3-r3.ebuild index b55bc94cf959..e4d4ae6ba26c 100644 --- a/x11-libs/fltk/fltk-1.3.3-r3.ebuild +++ b/x11-libs/fltk/fltk-1.3.3-r3.ebuild @@ -13,7 +13,7 @@ SRC_URI="http://fltk.org/pub/${PN}/${PV}/${P}-source.tar.gz" SLOT="1" LICENSE="FLTK LGPL-2" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos" -IUSE="cairo debug doc examples games +opengl pdf static-libs +threads +xft +xinerama" +IUSE="cairo debug doc examples games +opengl static-libs +threads +xft +xinerama" RDEPEND=" >=media-libs/libpng-1.2:0 @@ -29,14 +29,7 @@ RDEPEND=" xft? ( x11-libs/libXft )" DEPEND="${RDEPEND} x11-proto/xextproto - doc? ( - app-doc/doxygen - pdf? ( - dev-texlive/texlive-fontutils - dev-texlive/texlive-latex - dev-texlive/texlive-latexextra - ) - ) + doc? ( app-doc/doxygen ) xinerama? ( x11-proto/xineramaproto )" FLTK_INCDIR=${EPREFIX}/usr/include/fltk @@ -99,12 +92,11 @@ src_configure() { src_compile() { default + if use doc; then emake -C documentation html - if use pdf; then - emake -C documentation pdf - fi fi + if use games; then emake -C test blocks checkers sudoku fi diff --git a/x11-libs/fltk/fltk-1.3.9999.ebuild b/x11-libs/fltk/fltk-1.3.9999.ebuild index ba25ae8969a7..3c620a6587bf 100644 --- a/x11-libs/fltk/fltk-1.3.9999.ebuild +++ b/x11-libs/fltk/fltk-1.3.9999.ebuild @@ -15,7 +15,7 @@ ESVN_PASSWORD="" SLOT="1" LICENSE="FLTK LGPL-2" KEYWORDS="" -IUSE="cairo debug doc examples games +opengl pdf static-libs +threads +xft +xinerama" +IUSE="cairo debug doc examples games +opengl static-libs +threads +xft +xinerama" RDEPEND=" >=media-libs/libpng-1.2:0 @@ -31,14 +31,7 @@ RDEPEND=" xft? ( x11-libs/libXft )" DEPEND="${RDEPEND} x11-proto/xextproto - doc? ( - app-doc/doxygen - pdf? ( - dev-texlive/texlive-fontutils - dev-texlive/texlive-latex - dev-texlive/texlive-latexextra - ) - ) + doc? ( app-doc/doxygen ) xinerama? ( x11-proto/xineramaproto )" FLTK_INCDIR=${EPREFIX}/usr/include/fltk @@ -102,12 +95,11 @@ src_configure() { src_compile() { default + if use doc; then emake -C documentation html - if use pdf; then - emake -C documentation pdf - fi fi + if use games; then emake -C test blocks checkers sudoku fi diff --git a/x11-misc/lightdm/Manifest b/x11-misc/lightdm/Manifest index ff665bbaeb0f..70770699a720 100644 --- a/x11-misc/lightdm/Manifest +++ b/x11-misc/lightdm/Manifest @@ -4,4 +4,4 @@ DIST lightdm-1.10.5.tar.xz 470452 SHA256 90b2133916d46d7eeae9b14fb581ae29d09e099 DIST lightdm-1.12.3.tar.xz 473512 SHA256 c7dc90fde4f22762f38f06506b64f3b95cc3a1d9ccb8c18efa408087fd054465 SHA512 dca75324e3326a3fdc575837226a9633c7ec967e2484b03e051d5ce2f788dba8e23d4875da3c8d97cb8c6a1da843bc7500876027ca2c40e2bc4844b034acbd08 WHIRLPOOL 22a0c30032dcec66263801285017305b385789ed09b32c3e73c5db27daad44a7c44311d30f2002fe776f10cbaeb5d47727502ff19f61c0465e37987baa231de8 DIST lightdm-1.14.2.tar.xz 477232 SHA256 28b078979870782aaa1a9167945e1dab19cc6d699747af3d0c0c9a3bdb8dbba1 SHA512 5dec6fb492930827c3e07a027411ad5b864f0ef923753c9b8d309c1ab9de9c405ba66b2adbb12784cdd02d9cadebcb5299761ec17bbf1cd4a4202478ce8b427b WHIRLPOOL e9122281e599663af42f06a8d68fc0eae6b9b1c7d820802c14bc9d5bfd32005d4fe28cae805f697ec62587e2e4c5c4e290d37fcb84cf262f538b967c584e9f45 DIST lightdm-1.15.3.tar.xz 479432 SHA256 0670c6de84e9edfea3210b42aef688a848fa5366d150a71a67cdf83bc64bda5f SHA512 2fde5b1d01c8bbfa1fa74af9947c4ced9211d0f56d9590c9b5253a51774e2f927a4c6c2e76cde7d34351ae8474bf20e27cf71806c0a4e3a4dffc81b070384344 WHIRLPOOL a4765ee04e9faedfe397b561d17e6ac37ee1738358f7dd00f4be6e4fbabca6a83bd76fe845e4605345053350768363c2027a474a0087d5d37b819a0638c35f54 -DIST lightdm-1.16.2.tar.xz 480092 SHA256 18024767158e29adca327778cb05440338972187f15263664d8266b982905218 SHA512 9f1e27b390bdd475eb9aa38e35d8fc8278eaa30a65cffbe2ea3979826efc71ececd54982a0be67f4c9d22369c2032453b606ce4cb4092794d7cfbb800bc95d0a WHIRLPOOL d7d62b3a564bcc2d53779f90a3342d0c72937f12c70084df7a554c9d712708bafaa2c7970fb46ce4dffe8828c1b9d0ce87e3d90c20a03fb252de9b12f8c8ff32 +DIST lightdm-1.16.3.tar.xz 480400 SHA256 c88b0ea63949724f807f5835f1a8a9468a4102e2dfad902d539f7f6bd0bb5b4b SHA512 65b780c9e03c8b0e912a49bc627345770e1f75500b65d8599935b9daf1e0eaa6a77e183e08f1eb38a6af3d7ff6d38f5d65419bd1c0ab9282c7ae84d17d34b55d WHIRLPOOL faa24407c4e00d5e440d6255695ff18754962a3a1e3445910c606d0f53c42e64e10a6337b52f54c45f65cb6f306bd236be239c0e41011ec0698a599f463e7a00 diff --git a/x11-misc/lightdm/lightdm-1.16.2.ebuild b/x11-misc/lightdm/lightdm-1.16.3.ebuild similarity index 96% rename from x11-misc/lightdm/lightdm-1.16.2.ebuild rename to x11-misc/lightdm/lightdm-1.16.3.ebuild index bf9a44271553..5ba006f6b90b 100644 --- a/x11-misc/lightdm/lightdm-1.16.2.ebuild +++ b/x11-misc/lightdm/lightdm-1.16.3.ebuild @@ -14,10 +14,11 @@ SRC_URI="https://launchpad.net/${PN}/${TRUNK_VERSION}/${PV}/+download/${P}.tar.x LICENSE="GPL-3 LGPL-3" SLOT="0" KEYWORDS="~amd64 ~arm ~ppc ~x86" -IUSE="+gtk +introspection kde qt4 qt5 +gnome" +IUSE="audit +gtk +introspection kde qt4 qt5 +gnome" REQUIRED_USE="|| ( gtk kde )" -COMMON_DEPEND=">=dev-libs/glib-2.32.3:2 +COMMON_DEPEND="audit? ( sys-process/audit ) + >=dev-libs/glib-2.32.3:2 dev-libs/libxml2 gnome? ( sys-apps/accountsservice ) virtual/pam @@ -86,6 +87,7 @@ src_configure() { --localstatedir=/var \ --disable-static \ --disable-tests \ + $(use_enable audit) \ $(use_enable introspection) \ $(use_enable qt4 liblightdm-qt) \ $(use_enable qt5 liblightdm-qt5) \ diff --git a/x11-misc/lightdm/metadata.xml b/x11-misc/lightdm/metadata.xml index eb31e4ae1bc2..734e0de22312 100644 --- a/x11-misc/lightdm/metadata.xml +++ b/x11-misc/lightdm/metadata.xml @@ -6,6 +6,7 @@ Markos Chandras + support sys-process/audit Pull in the gtk+ greeter Use dev-libs/gobject-introspection for introspection Pull in the kde greeter diff --git a/x11-misc/xdg-utils/Manifest b/x11-misc/xdg-utils/Manifest index d22f5cbd1651..e8cc1ea29ae7 100644 --- a/x11-misc/xdg-utils/Manifest +++ b/x11-misc/xdg-utils/Manifest @@ -2,3 +2,4 @@ DIST xdg-utils-1.1.0-rc2.tar.gz 307013 SHA256 bbe95ec4e7d54827981598622dafda8fd2 DIST xdg-utils-1.1.0_rc2-patchset-1.tar.xz 20164 SHA256 0c7f3c39c28d43e049ea32f4b29f768c91a1c190d4ea736940370b40ee4d2cb8 SHA512 3f90bd778fe1aaf50a05f6d0e4ae51ab251037bde57a7f21a66b66681f05b811a832dadfde909938240ee4bbf4060e471faf0105a5f0e832af7e0436b4206bef WHIRLPOOL 883cb5efead1df84425252860577610dad5ae7ce14673d5c96a432c44de215252349ac0d07b7bfb071da38b70235f8b7c9c2fea8ffba5c1443f28078842a3930 DIST xdg-utils-1.1.0_rc3_p20150119.tar.xz 262380 SHA256 6db91e0f6a4bb2698abde9dc578d61d1a9375c417adbe61e4c4364bbcbe6a4d9 SHA512 a83903f3d367e1deaf9355727e024606a4df90869629862c5ac55ca5f35b47ab2992863a9aec91413606e1ebc26905c1aef03c3f7f35a68db048059921658089 WHIRLPOOL d04f0bab8aefd9fb4d6c8805bf66aaeb5a79e1ecbe5866624f1f1d1da77115cc5c64d563aa75540ffef4eaeb610d879657422635b7548a0184138eb7319efedd DIST xdg-utils-1.1.0_rc3_p20150825.tar.xz 263016 SHA256 c3aa384e7bf31cda8901269e46056344dc03b4d62488faf47c342afecac93f11 SHA512 ac83266f355394815581d7b13b1618c80d4c1d84c1717665ade98584d989e910575c748361f8b3a545a0c978c06fb7a1ed6ca26c5a5b70cc366f70dc41806049 WHIRLPOOL 5d84ce4218726c92fa7822ad33cd1b953095a78857ba156df7ce1cc0030e6f73e4736314a41bc8a581a1b3b0262be15a8ce117e5ecc994dea1e9fb44a85bc899 +DIST xdg-utils-1.1.1.tar.gz 295213 SHA256 b0dd63a2576e0bb16f1aa78d6ddf7d6784784a098d4df17161cd6a17c7bc4125 SHA512 6641b17daea7eecfee0d395e621dc42481582e505bff90a6df5eb0299ed2dca7a76520f000d9545a8424f06d41590382156a2e50f3d68d5c1ab825c268e90edb WHIRLPOOL d40e89ae50d5cdf96cd7c03e9e4ab91fc46c0da2d8d79f8e27d64f4c5526c733ae5e75e89d880cd05b5c347ecb9837090ec110be5813456c690807abb1508718 diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.1.ebuild b/x11-misc/xdg-utils/xdg-utils-1.1.1.ebuild new file mode 100644 index 000000000000..7a8575603308 --- /dev/null +++ b/x11-misc/xdg-utils/xdg-utils-1.1.1.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit autotools eutils + +MY_P=${P/_/-} + +DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop interoperability" +HOMEPAGE="http://portland.freedesktop.org/" +#SRC_URI="https://dev.gentoo.org/~johu/distfiles/${P}.tar.xz" +#SRC_URI="http://people.freedesktop.org/~rdieter/${PN}/${MY_P}.tar.gz +# https://dev.gentoo.org/~ssuominen/${P}-patchset-1.tar.xz" +SRC_URI="http://portland.freedesktop.org/download/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +IUSE="doc +perl" + +RDEPEND="dev-util/desktop-file-utils + x11-misc/shared-mime-info + x11-apps/xprop + x11-apps/xset + perl? ( dev-perl/File-MimeInfo )" +DEPEND="app-text/xmlto + || ( www-client/links www-client/lynx virtual/w3m )" + +DOCS="README RELEASE_NOTES TODO" # ChangeLog is bogus, see git instead + +RESTRICT="test" # Disabled because of sandbox violation(s) + +#S=${WORKDIR}/${MY_P} + +src_prepare() { + # If you choose to do git snapshot instead of patchset, you need to remember + # to run `autoconf` in ./ and `make scripts-clean` in ./scripts/ to refresh + # all the files + if [[ -d ${WORKDIR}/patch ]]; then + EPATCH_SUFFIX=patch EPATCH_FORCE=yes epatch + fi + eautoreconf + pushd scripts && make scripts-clean && popd +} + +src_configure() { + export ac_cv_path_XMLTO="$(type -P xmlto) --skip-validation" #502166 + default +} + +src_install() { + default + + newdoc scripts/xsl/README README.xsl + use doc && dohtml -r scripts/html + + # Install default XDG_DATA_DIRS, bug #264647 + echo XDG_DATA_DIRS=\"${EPREFIX}/usr/local/share\" > 30xdg-data-local + echo 'COLON_SEPARATED="XDG_DATA_DIRS XDG_CONFIG_DIRS"' >> 30xdg-data-local + doenvd 30xdg-data-local + + echo XDG_DATA_DIRS=\"${EPREFIX}/usr/share\" > 90xdg-data-base + echo XDG_CONFIG_DIRS=\"${EPREFIX}/etc/xdg\" >> 90xdg-data-base + doenvd 90xdg-data-base +} + +pkg_postinst() { + [[ -x $(type -P gtk-update-icon-cache) ]] || elog "Install x11-libs/gtk+:2 for the gtk-update-icon-cache command." +} diff --git a/x11-plugins/wmclock/Manifest b/x11-plugins/wmclock/Manifest index 5821b4d5e431..1a0d0287b3e0 100644 --- a/x11-plugins/wmclock/Manifest +++ b/x11-plugins/wmclock/Manifest @@ -1,3 +1,4 @@ DIST wmclock-1.0.13.tar.gz 45740 SHA256 53a0166d565661d917743bfa3f77cb084e0d6c0ea369f81e17f4a6709e9e9e42 SHA512 b7d202798767705157a2a5199344f645aa44201d3a3b6b4eb7a6213ebb10074cea68554d8d4ff9862eabfa2a94e88e453d36c22c451de74e9cac656c4d8af63c WHIRLPOOL ed8447ad66d62271aabdff08a81a5d5f5352ac3d6d79bfaa538df270cdec104d5bf26148c320ffcc83a38579abac411ed06fb880ad34b4b29d8ca0f70320162b DIST wmclock-1.0.14.tar.gz 38311 SHA256 9a05bd547bb1f855ea75374cfada9f14ef90592246362a91dcb2c580550db64d SHA512 34bf6e2287477a207e09d35d9ef0b326d2683be31a66d3cc6aa22323b5615cb114e8597d54ea7b3cbc204b689bba05d26e152f196305b82f4ba7220d14af73f6 WHIRLPOOL 85e3b10abc634aafa164d150debf3f320ac4efbb513039f19e60eeafc5fab8dd0c8be80789af26380a571786a9c364c662a8d263f1c0156d968e95a63d28c903 DIST wmclock-1.0.15.tar.gz 35234 SHA256 4d51e2e584e55bad5aaa714c75d42ca47833b07489e9671f60e9b5ebae35c96f SHA512 908f34e9d41c0fa51df2352ce7a43319810f8ef35be9594126536907257516e7f8818635ff306e67fef81fc25ecba809a9d4152b6e3b7c6943586eabedbe09f9 WHIRLPOOL 565654a66359f9ddef57404a7bd7061092ab0b777c4821df4db862903e17588a8eda1c366637375e7643adb57458b80c20dddc7ac449af42e4474c4e25e0ee85 +DIST wmclock-1.0.16.tar.gz 37434 SHA256 85269486b48f6a3b6089aa495cb2dc255f71e989257ddcab47b7736604dbcbb5 SHA512 e27f7f89a7193852d4173b00f69cc319e781d083ec45935271878b729a280f5dfca3e4c3366342f3b40f29a5529b259095aab8e0af6043ae8c9dbd63a4f7f658 WHIRLPOOL e1f7cda9de19a0758928be8b7f068338e1d329d324d68c4b5edd57aea8f4c6009686d8b935a8fce8b48711f64b109d604eb0ac3e5d1597b0b0daa3b74c7b87e9 diff --git a/x11-plugins/wmclock/wmclock-1.0.16.ebuild b/x11-plugins/wmclock/wmclock-1.0.16.ebuild new file mode 100644 index 000000000000..d0f231d84116 --- /dev/null +++ b/x11-plugins/wmclock/wmclock-1.0.16.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit autotools + +DESCRIPTION="a dockapp that displays time and date (same style as NEXTSTEP(tm) operating systems)" +HOMEPAGE="http://windowmaker.org/dockapps/?name=wmclock" +# Grab from http://windowmaker.org/dockapps/?download=${P}.tar.gz +SRC_URI="https://dev.gentoo.org/~voyageur/distfiles/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm" +DEPEND="${RDEPEND} + x11-proto/xproto" + +src_prepare() { + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install + + dodoc ChangeLog README +} diff --git a/x11-plugins/wmppp/wmppp-1.3.2.ebuild b/x11-plugins/wmppp/wmppp-1.3.2-r1.ebuild similarity index 81% rename from x11-plugins/wmppp/wmppp-1.3.2.ebuild rename to x11-plugins/wmppp/wmppp-1.3.2-r1.ebuild index c8a4901355c9..d615b511b604 100644 --- a/x11-plugins/wmppp/wmppp-1.3.2.ebuild +++ b/x11-plugins/wmppp/wmppp-1.3.2-r1.ebuild @@ -16,7 +16,8 @@ SLOT="0" KEYWORDS="~amd64 ~ppc ~sparc ~x86" IUSE="" -RDEPEND="x11-libs/libX11 +RDEPEND=">=x11-libs/libdockapp-0.7:= + x11-libs/libX11 x11-libs/libXext x11-libs/libXpm" DEPEND="${RDEPEND} @@ -24,19 +25,11 @@ DEPEND="${RDEPEND} S=${WORKDIR}/${MY_P} -#src_prepare() { -# sed -ie 's/-o wmppp/\$(LDFLAGS) -o wmppp/' Makefile -#} - src_compile() { emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" } src_install () { emake DESTDIR="${D}" PREFIX=/usr install -# dobin wmppp -# exeinto /etc/ppp -# doexe getmodemspeed -# dodoc user.wmppprc dodoc BUGS CHANGES HINTS README TODO } diff --git a/x11-terms/lilyterm/files/lilyterm-0.9.9.4-gettext.patch b/x11-terms/lilyterm/files/lilyterm-0.9.9.4-gettext.patch new file mode 100644 index 000000000000..c6df78d65398 --- /dev/null +++ b/x11-terms/lilyterm/files/lilyterm-0.9.9.4-gettext.patch @@ -0,0 +1,12 @@ +--- a/configure.ac ++++ b/configure.ac +@@ -51,7 +51,7 @@ + + AC_PROG_INTLTOOL + ALL_LINGUAS="$_LANG_LIST" +-GETTEXT_PACKAGE="$_PACKAGE" ++GETTEXT_PACKAGE="$_BINARY" + AC_SUBST(GETTEXT_PACKAGE) + AM_GLIB_GNU_GETTEXT + AM_GLIB_DEFINE_LOCALEDIR(LOCALEDIR) + diff --git a/x11-terms/lilyterm/lilyterm-0.9.9.4-r1.ebuild b/x11-terms/lilyterm/lilyterm-0.9.9.4-r1.ebuild new file mode 100644 index 000000000000..f024b9548e64 --- /dev/null +++ b/x11-terms/lilyterm/lilyterm-0.9.9.4-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils + +DESCRIPTION="a terminal emulator based off of libvte that aims to be fast and lightweight" +HOMEPAGE="http://lilyterm.luna.com.tw" +LICENSE="GPL-3" +SRC_URI="http://${PN}.luna.com.tw/file/${P}.tar.gz" + +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + x11-libs/vte:0 +" +DEPEND=" + ${RDEPEND} + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig +" + +DOCS=( AUTHORS ChangeLog README TODO ) + +src_prepare() { + epatch "${FILESDIR}"/${PN}-0.9.9.4-gettext.patch + + ./autogen.sh +} diff --git a/x11-wm/page/page-1.9.6-r1.ebuild b/x11-wm/page/page-1.9.6-r1.ebuild new file mode 100644 index 000000000000..a2341d82151e --- /dev/null +++ b/x11-wm/page/page-1.9.6-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +DESCRIPTION="A mouse friendly tiling window manager" +HOMEPAGE="http://www.hzog.net/index.php/Main_Page" +SRC_URI="http://www.hzog.net/pub/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="x11-proto/xcb-proto + x11-libs/libxcb + x11-libs/xcb-util + x11-libs/libXfixes + x11-libs/libXdamage + x11-proto/damageproto + x11-proto/randrproto + x11-libs/libXrandr + x11-proto/xproto + x11-proto/fixesproto + x11-proto/compositeproto + x11-libs/libXcomposite + x11-proto/renderproto + x11-libs/libXrender + x11-libs/libXext + x11-proto/xextproto + x11-libs/cairo[xcb] + x11-libs/pango + dev-libs/glib" + +RDEPEND="!dev-tcltk/tcllib"