diff --git a/app-admin/lnav/Manifest b/app-admin/lnav/Manifest index 7cca81bcb226..6d9b40b27af1 100644 --- a/app-admin/lnav/Manifest +++ b/app-admin/lnav/Manifest @@ -1,3 +1,4 @@ DIST lnav-0.6.1.tar.gz 371181 SHA256 a952f5e6f8d08a9b96c1219b6beac09319a6be1521d783a645cdb6b4352a7fc9 SHA512 a44a0041bf52242f03b0d9ee0551430d148faa6a967467e69619c60524d079e79b27914c9488af34b39c6a66ee0e12b1fa70b8c4bed6ef7ea5fd8d07263a6801 WHIRLPOOL 06b131bf02257f0ea00da82d49804a578392e9ad65f4d3b5faa4b4a5484b7eac834c1c5325da6c3284663987a6f54b6ace8a101b75b8b127a7dc46fc85774e63 DIST lnav-0.6.2.tar.gz 380961 SHA256 3ae0d2761b9e040c6de69b4dfeff1ce866fcbb8c8c43859b0aa172b5e56fda42 SHA512 652ba9bce0a3b4489a8f6b6619aefd7cdc3b97c4b9a7c8fd25f791a06648d97521472479780c4b883e31bd9095443cccc14b9ec7d3f17c1692b9b33c41f37dc2 WHIRLPOOL c02190de56253d63b8caddb7f5423ef192686109f51a417b0fbad35d8f13c94ef955a81cc1f034947c88e0abf2b10234f8eb244bfdf16a698d4f0b95e7ca3944 DIST lnav-0.7.0.tar.gz 428474 SHA256 c018385ca648a0676bd759c472305146909e92662af4db251b2c8a44df66245a SHA512 ab8eff97c8714718fe78171452ba3e3a9f616ba2023855d90c95d5bc8316e1180f448f2344a4612501ed100de3394de9545e4e76647b9b8c1e65fc4e6e62a6f4 WHIRLPOOL 2dc9eda1d8d1fcf15973060e9c7d83c4c012f61ca1261733057666d0952e8caad0357ac8bb2f1114e32a929912829ee2307a35150ddb3c342f8b53dcb2bcf088 +DIST lnav-0.7.1.tar.gz 460627 SHA256 4068ad4b45651146a5568c7bbb0585e35f62fdfa7dd983c0047fceee4bb49fb3 SHA512 3732b1df2b87ac30090b4e4f183d65beba5d074d071cd67ef6acdd9614951001548cd07b0e373158a1365989b1f2767c82225730b9c3ff09f7d56b1e4bcfd708 WHIRLPOOL fd88de5085829f3e36efa4a80734030eb8483b36e2133c9845fcc0472dab878e276ea393f732872c6ee6d03e7a2d3c9a30f500b2991d7d7d89631d0ff016d464 diff --git a/app-admin/lnav/lnav-0.7.1.ebuild b/app-admin/lnav/lnav-0.7.1.ebuild new file mode 100644 index 000000000000..01f219a135db --- /dev/null +++ b/app-admin/lnav/lnav-0.7.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/lnav/lnav-0.7.1.ebuild,v 1.1 2014/12/04 01:57:18 radhermit Exp $ + +EAPI=5 + +inherit toolchain-funcs + +DESCRIPTION="A curses-based tool for viewing and analyzing log files" +HOMEPAGE="http://lnav.org" +SRC_URI="https://github.com/tstack/lnav/releases/download/v${PV}/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="unicode" + +RDEPEND="app-arch/bzip2 + dev-db/sqlite:3 + dev-libs/libpcre[cxx] + sys-libs/ncurses[unicode?] + sys-libs/readline + sys-libs/zlib" +DEPEND="${RDEPEND}" + +src_configure() { + econf \ + --disable-static \ + $(use_with unicode ncursesw) +} + +src_compile() { + emake AR="$(tc-getAR)" +} diff --git a/app-admin/salt/files/api-confd-1 b/app-admin/salt/files/api-confd-1 new file mode 100644 index 000000000000..c70e8e766da0 --- /dev/null +++ b/app-admin/salt/files/api-confd-1 @@ -0,0 +1,5 @@ +# /etc/conf.d/salt-master: config file for /etc/init.d/salt-master + +# see man pages for salt-minion or run `salt-master --help` +# for valid cmdline options +SALT_OPTS="--log-level=warning" diff --git a/app-admin/salt/files/api-initd-3 b/app-admin/salt/files/api-initd-3 new file mode 100644 index 000000000000..ccd5d922efe2 --- /dev/null +++ b/app-admin/salt/files/api-initd-3 @@ -0,0 +1,14 @@ +#!/sbin/runscript +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/files/api-initd-3,v 1.1 2014/12/03 22:10:14 chutzpah Exp $ + +command="/usr/bin/salt-api" +command_args="${SALT_OPTS}" +command_background="1" +pidfile="/var/run/salt-api.pid" +name="SALT API daemon" + +depend() { + use net logger +} diff --git a/app-admin/salt/files/salt-api.service b/app-admin/salt/files/salt-api.service new file mode 100644 index 000000000000..fd9f665fff09 --- /dev/null +++ b/app-admin/salt/files/salt-api.service @@ -0,0 +1,10 @@ +[Unit] +Description=The Salt Master Server +After=syslog.target network.target + +[Service] +Type=simple +ExecStart=/usr/bin/salt-api + +[Install] +WantedBy=multi-user.target diff --git a/app-admin/salt/metadata.xml b/app-admin/salt/metadata.xml index 3349a941c5af..04a6efbeb817 100644 --- a/app-admin/salt/metadata.xml +++ b/app-admin/salt/metadata.xml @@ -21,6 +21,7 @@ Between the remote execution system, and state management Salt addresses the backbone of cloud and data center management. + Enable support for salt-api. Enable support for cherrypy. Enable salt-cloud support via libcloud. Support managing virtual machines with app-emulation/libvirt. diff --git a/app-admin/salt/salt-2014.7.0-r1.ebuild b/app-admin/salt/salt-2014.7.0-r1.ebuild new file mode 100644 index 000000000000..53faa1e6198a --- /dev/null +++ b/app-admin/salt/salt-2014.7.0-r1.ebuild @@ -0,0 +1,106 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-2014.7.0-r1.ebuild,v 1.1 2014/12/03 22:10:14 chutzpah Exp $ + +EAPI=5 +PYTHON_COMPAT=(python2_7) + +inherit eutils distutils-r1 systemd + +DESCRIPTION="Salt is a remote execution and configuration manager" +HOMEPAGE="http://saltstack.org/" + +if [[ ${PV} == 9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="git://github.com/${PN}stack/${PN}.git" + EGIT_BRANCH="develop" + SRC_URI="" + KEYWORDS="" +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~x86 ~amd64" +fi + +LICENSE="Apache-2.0" +SLOT="0" +IUSE="api ldap libcloud libvirt gnupg keyring mako mongodb mysql nova" +IUSE+=" openssl redis timelib raet +zeromq test" + +RDEPEND="sys-apps/pciutils + dev-python/jinja[${PYTHON_USEDEP}] + >=dev-python/msgpack-0.3[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/markupsafe[${PYTHON_USEDEP}] + >=dev-python/requests-1.0.0[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + libcloud? ( >=dev-python/libcloud-0.14.0[${PYTHON_USEDEP}] ) + mako? ( dev-python/mako[${PYTHON_USEDEP}] ) + ldap? ( dev-python/python-ldap[${PYTHON_USEDEP}] ) + openssl? ( dev-python/pyopenssl[${PYTHON_USEDEP}] ) + libvirt? ( dev-python/libvirt-python[${PYTHON_USEDEP}] ) + raet? ( + dev-python/libnacl[${PYTHON_USEDEP}] + dev-python/ioflo[${PYTHON_USEDEP}] + dev-python/raet[${PYTHON_USEDEP}] + ) + zeromq? ( + >=dev-python/pyzmq-2.2.0[${PYTHON_USEDEP}] + dev-python/m2crypto[${PYTHON_USEDEP}] + dev-python/pycrypto[${PYTHON_USEDEP}] + ) + api? ( + || ( + dev-python/cherrypy[${PYTHON_USEDEP}] + www-servers/tornado[${PYTHON_USEDEP}] + ) + ) + mongodb? ( dev-python/pymongo[${PYTHON_USEDEP}] ) + keyring? ( dev-python/keyring[${PYTHON_USEDEP}] ) + mysql? ( dev-python/mysql-python[${PYTHON_USEDEP}] ) + redis? ( dev-python/redis-py[${PYTHON_USEDEP}] ) + timelib? ( dev-python/timelib[${PYTHON_USEDEP}] ) + nova? ( >=dev-python/python-novaclient-2.17.0[${PYTHON_USEDEP}] ) + gnupg? ( dev-python/python-gnupg[${PYTHON_USEDEP}] )" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/pip[${PYTHON_USEDEP}] + dev-python/virtualenv[${PYTHON_USEDEP}] + dev-python/timelib[${PYTHON_USEDEP}] + >=dev-python/SaltTesting-2014.4.24[${PYTHON_USEDEP}] + ${RDEPEND} + )" + +DOCS=(README.rst AUTHORS) + +REQUIRED_USE="|| ( raet zeromq )" + +PATCHES=( + "${FILESDIR}/${P}-remove-pydsl-includes-test.patch" +) + +python_prepare() { + # this test fails because it trys to "pip install distribute" + rm tests/unit/{modules,states}/zcbuildout_test.py +} + +python_install_all() { + USE_SETUPTOOLS=1 distutils-r1_python_install_all + + for s in minion master syndic $(use api && echo api); do + newinitd "${FILESDIR}"/${s}-initd-3 salt-${s} + newconfd "${FILESDIR}"/${s}-confd-1 salt-${s} + systemd_dounit "${FILESDIR}"/salt-${s}.service + done + + insinto /etc/${PN} + doins -r conf/* +} + +python_test() { + # testsuite likes lots of files + ulimit -n 3072 + + # using ${T} for the TMPDIR makes some tests needs paths that exceed PATH_MAX + USE_SETUPTOOLS=1 SHELL="/bin/bash" TMPDIR="/tmp" \ + ./tests/runtests.py --unit-tests --no-report --verbose || die "testing failed" +} diff --git a/app-admin/salt/salt-9999.ebuild b/app-admin/salt/salt-9999.ebuild index a55c21fc09af..df258e7a77ee 100644 --- a/app-admin/salt/salt-9999.ebuild +++ b/app-admin/salt/salt-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-9999.ebuild,v 1.13 2014/11/13 03:58:29 chutzpah Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-9999.ebuild,v 1.14 2014/12/03 22:10:14 chutzpah Exp $ EAPI=5 PYTHON_COMPAT=(python2_7) @@ -69,10 +69,6 @@ DOCS=(README.rst AUTHORS) REQUIRED_USE="|| ( raet zeromq )" -PATCHES=( - "${FILESDIR}/${P}-remove-pydsl-includes-test.patch" -) - python_prepare() { # this test fails because it trys to "pip install distribute" rm tests/unit/{modules,states}/zcbuildout_test.py diff --git a/app-arch/pbzip2/Manifest b/app-arch/pbzip2/Manifest index acc2a1c996c1..61d1bdae2e9a 100644 --- a/app-arch/pbzip2/Manifest +++ b/app-arch/pbzip2/Manifest @@ -1,2 +1,3 @@ +DIST pbzip2-1.1.10.tar.gz 46585 SHA256 9d489191edd010e4c8f7bc86de88268cdc3da5a9f7904b257fda56941615a0c2 SHA512 7601370c8d212124bccd3387ae1155c4a1e753d0ff93f6274bf1ae90e4d661fc73c890fc15c46d86f4a6b2487e788b29664e0f6571365dc1777f0aa3ced477df WHIRLPOOL 2c6d3aae7f5e371ab4f0b06dbbd797d3b3c8df93c24cdd35f2af7fbb25051cbaa6310df57cbf8d057f696067975a91807cffe413d23859683119b24f2758a976 DIST pbzip2-1.1.8.tar.gz 54429 SHA256 d2da7e65d2a2ba5426d6d9bcd15d86cc5f90038efabd5dbc1ef9bded21371f53 SHA512 a3314d1f465e6016bf79ca8bd734fc1485515e9688319ee5a6a837058599546848018f28e2e2cef2afde68ee8f3c26d16e4e6da4c74c75d1cb12068f1d1e1a83 WHIRLPOOL bd24e6102db6425978c5ac8e762b37f4df4bcdcc84f44e06e6b4c652b1f9e3128382af1558a1ebc9f68dba3a89be08d42bf92577eab73b3d748f6ff941b415bf DIST pbzip2-1.1.9.tar.gz 47477 SHA256 bd421be03e6e24a24a121ba2355bfd11571356a25ee64fcfa76330750ec5f9c4 SHA512 0c08230858e14d8880cd0ae96f8d9484dbf7e6739c5c3374376ebe25fa331f4b1bc6df0330dd735bef686263d41cc993b032c09da0d7ee1957637b7a61618f21 WHIRLPOOL fdd174690cadcdab07848ba03daeb006306ea5588a1bef6f9d18d6bffe102350621269f256495228a337772101b2157a2d57f46e8d877fe6953f8f1d10b88ce2 diff --git a/app-arch/pbzip2/files/pbzip2-1.1.10-makefile.patch b/app-arch/pbzip2/files/pbzip2-1.1.10-makefile.patch new file mode 100644 index 000000000000..6524b6bf2a05 --- /dev/null +++ b/app-arch/pbzip2/files/pbzip2-1.1.10-makefile.patch @@ -0,0 +1,20 @@ +--- pbzip2-1.1.10/Makefile ++++ pbzip2-1.1.10/Makefile +@@ -17,7 +17,7 @@ + + + # Optimization flags +-CXXFLAGS = -O2 ++#CXXFLAGS = -O2 + + #CXXFLAGS += -g -Wall + #CXXFLAGS += -ansi +@@ -50,7 +50,7 @@ + + + # Linker flags +-LDFLAGS = ++#LDFLAGS = + + + # External libraries diff --git a/app-arch/pbzip2/pbzip2-1.1.10.ebuild b/app-arch/pbzip2/pbzip2-1.1.10.ebuild new file mode 100644 index 000000000000..652be5332052 --- /dev/null +++ b/app-arch/pbzip2/pbzip2-1.1.10.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/pbzip2/pbzip2-1.1.10.ebuild,v 1.1 2014/12/04 02:03:48 radhermit Exp $ + +EAPI=5 + +inherit flag-o-matic eutils + +DESCRIPTION="Parallel bzip2 (de)compressor using libbz2" +HOMEPAGE="http://compression.ca/pbzip2/ https://launchpad.net/pbzip2" +SRC_URI="https://launchpad.net/pbzip2/${PV:0:3}/${PV}/+download/${P}.tar.gz" + +LICENSE="BZIP2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="static symlink" + +LIB_DEPEND="app-arch/bzip2[static-libs(+)]" +RDEPEND=" + !static? ( ${LIB_DEPEND//\[static-libs(+)]} ) + symlink? ( !app-arch/lbzip2[symlink] )" +DEPEND="${RDEPEND} + static? ( ${LIB_DEPEND} )" + +src_prepare() { + epatch "${FILESDIR}"/${P}-makefile.patch + tc-export CXX + use static && append-ldflags -static +} + +src_install() { + dobin pbzip2 + dodoc AUTHORS ChangeLog README + doman pbzip2.1 + dosym pbzip2 /usr/bin/pbunzip2 + + if use symlink ; then + local s + for s in bzip2 bunzip2 bzcat ; do + dosym pbzip2 /usr/bin/${s} + done + fi +} diff --git a/app-portage/smart-live-rebuild/Manifest b/app-portage/smart-live-rebuild/Manifest index 2e088402db25..483c9e73288e 100644 --- a/app-portage/smart-live-rebuild/Manifest +++ b/app-portage/smart-live-rebuild/Manifest @@ -1,2 +1,3 @@ DIST smart-live-rebuild-1.3.3.tar.bz2 16270 SHA256 7ec74e796695dfb8ee34c3172b6abe20d77d5523679cc3890f02e06384eb716a SHA512 e06105e7cca91151e37b501de258ddce15ccd3afb356391485bbbe37021cea6fe6a04140b29526547cf52503fc9272c15e621b84deba2e04cde07539b61268f2 WHIRLPOOL 6bdb5415b477b334d47c9046816251f7f7bae1731d49b93e7b67baee12aaa7355d3a6602a5fc804b6372bc777eceaf4e225e252c6c1d0e23d1277564c16967d6 +DIST smart-live-rebuild-1.3.4.1.tar.bz2 15980 SHA256 dd1e780937322a4cdee5a8f9af48d24283bda203e40167d02c7bb18924a4335f SHA512 65b864532e662d0fa032962673c2c2d6c1e21c557c82e295591086aea22de90ca9fed0e90bb0da0f6926ab19176a04ab41ee80c88dd8c5c05c3751c30ca39a92 WHIRLPOOL 329ea91bba103c6b2728905dac33532030d2c0ae802deb19056b1719bec6d85bd9b9a039cad4b3add92620c003cc573c797080cb2e02f09e670a0475439904be DIST smart-live-rebuild-1.3.4.tar.bz2 16022 SHA256 1d949b91a925faaae70b46c88b5af8d4b72a1a435abd85845dd8adadae5f3d92 SHA512 4dc50b226b8bd2dc2ce8f7d41eccff2d788cc5c4caa779d22a40d53a491726153419c6678e3bac764238cf9e7adf0dc4c1631a4e11df9b88deb0f9dc7c0e7cd7 WHIRLPOOL 39d8732aee4b09b464e45e990e26ce49989280e0734f27fccdbb5044b0a1d983a9e1cf25529a650feb7faab13ec63c1c116e535897c6c2845af0efcc1a8f079b diff --git a/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.4.1.ebuild b/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.4.1.ebuild new file mode 100644 index 000000000000..8c25c3db5e76 --- /dev/null +++ b/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.4.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.4.1.ebuild,v 1.1 2014/12/03 17:52:15 mgorny Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} ) + +inherit distutils-r1 + +DESCRIPTION="Check live packages for updates and emerge them as necessary" +HOMEPAGE="https://bitbucket.org/mgorny/smart-live-rebuild/" +SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~mips ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND=">=app-portage/gentoopm-0.2.1[${PYTHON_USEDEP}]" + +python_test() { + esetup.py test +} + +python_install_all() { + distutils-r1_python_install_all + + insinto /etc/portage + newins smart-live-rebuild.conf{.example,} + insinto /usr/share/portage/config/sets + newins sets.conf.example ${PN}.conf +} diff --git a/app-text/poppler/files/poppler-0.28.1-respect-cflags.patch b/app-text/poppler/files/poppler-0.28.1-respect-cflags.patch new file mode 100644 index 000000000000..0b94042c8af8 --- /dev/null +++ b/app-text/poppler/files/poppler-0.28.1-respect-cflags.patch @@ -0,0 +1,48 @@ +diff --git a/cmake/modules/PopplerMacros.cmake b/cmake/modules/PopplerMacros.cmake +index 6cadf40..7e5e6b2 100644 +--- a/cmake/modules/PopplerMacros.cmake ++++ b/cmake/modules/PopplerMacros.cmake +@@ -98,41 +98,10 @@ if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) + set(CMAKE_BUILD_TYPE RelWithDebInfo) + endif(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) + +-if(CMAKE_COMPILER_IS_GNUCXX) +- # set the default compile warnings + set(DEFAULT_COMPILE_WARNINGS_NO) + set(DEFAULT_COMPILE_WARNINGS_YES "-Wall -Wcast-align -fno-exceptions -fno-check-new -fno-common") + set(DEFAULT_COMPILE_WARNINGS_KDE "-Wno-long-long -Wundef -D_XOPEN_SOURCE=600 -D_BSD_SOURCE -Wcast-align -Wconversion -Wall -W -Wpointer-arith -Wwrite-strings -Wformat-security -Wmissing-format-attribute -fno-exceptions -fno-check-new -fno-common") + +- set(CMAKE_CXX_FLAGS "-Wnon-virtual-dtor -Woverloaded-virtual ${CMAKE_CXX_FLAGS}") +- set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O2 -g") +- set(CMAKE_CXX_FLAGS_RELEASE "-O2 -DNDEBUG") +- set(CMAKE_CXX_FLAGS_DEBUG "-g -O2 -fno-reorder-blocks -fno-schedule-insns -fno-inline") +- set(CMAKE_CXX_FLAGS_DEBUGFULL "-g3 -fno-inline") +- set(CMAKE_CXX_FLAGS_PROFILE "-g3 -fno-inline -ftest-coverage -fprofile-arcs") +- set(CMAKE_C_FLAGS "-std=c99") +- set(CMAKE_C_FLAGS_RELWITHDEBINFO "-O2 -g") +- set(CMAKE_C_FLAGS_RELEASE "-O2 -DNDEBUG") +- set(CMAKE_C_FLAGS_DEBUG "-g -O2 -fno-reorder-blocks -fno-schedule-insns -fno-inline") +- set(CMAKE_C_FLAGS_DEBUGFULL "-g3 -fno-inline") +- set(CMAKE_C_FLAGS_PROFILE "-g3 -fno-inline -ftest-coverage -fprofile-arcs") +- +- poppler_check_link_flag("-Wl,--as-needed" GCC_HAS_AS_NEEDED) +- if(GCC_HAS_AS_NEEDED) +- set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--as-needed") +- set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--as-needed") +- set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--as-needed") +- endif(GCC_HAS_AS_NEEDED) +-endif (CMAKE_COMPILER_IS_GNUCXX) +- +-if(CMAKE_C_COMPILER MATCHES "icc") +- set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O2 -g") +- set(CMAKE_CXX_FLAGS_RELEASE "-O2 -DNDEBUG") +- set(CMAKE_CXX_FLAGS_DEBUG "-O2 -g -0b0 -noalign") +- set(CMAKE_CXX_FLAGS_DEBUGFULL "-g -Ob0 -noalign") +- set(CMAKE_C_FLAGS_RELWITHDEBINFO "-O2 -g") +- set(CMAKE_C_FLAGS_RELEASE "-O2 -DNDEBUG") +- set(CMAKE_C_FLAGS_DEBUG "-O2 -g -Ob0 -noalign") +- set(CMAKE_C_FLAGS_DEBUGFULL "-g -Ob0 -noalign") +-endif(CMAKE_C_COMPILER MATCHES "icc") ++ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wnon-virtual-dtor -Woverloaded-virtual") + ++ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99") diff --git a/app-text/poppler/poppler-0.28.1.ebuild b/app-text/poppler/poppler-0.28.1.ebuild index 5b35396f4e4b..fe1b76e0a4bf 100644 --- a/app-text/poppler/poppler-0.28.1.ebuild +++ b/app-text/poppler/poppler-0.28.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/poppler-0.28.1.ebuild,v 1.1 2014/11/10 23:16:36 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/poppler-0.28.1.ebuild,v 1.2 2014/12/03 20:57:38 tamiko Exp $ EAPI=5 @@ -60,7 +60,9 @@ RDEPEND="${COMMON_DEPEND} DOCS=(AUTHORS NEWS README README-XPDF TODO) -PATCHES=( "${FILESDIR}/${PN}-0.26.0-qt5-dependencies.patch" ) +PATCHES=( + "${FILESDIR}/${PN}-0.26.0-qt5-dependencies.patch" + "${FILESDIR}/${P}-respect-cflags.patch" ) src_configure() { local mycmakeargs=( diff --git a/app-text/poppler/poppler-9999.ebuild b/app-text/poppler/poppler-9999.ebuild index 6cdea7b45f6d..e6798b41ab60 100644 --- a/app-text/poppler/poppler-9999.ebuild +++ b/app-text/poppler/poppler-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/poppler-9999.ebuild,v 1.3 2014/11/10 23:16:36 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/poppler-9999.ebuild,v 1.4 2014/12/03 20:57:38 tamiko Exp $ EAPI=5 @@ -60,7 +60,9 @@ RDEPEND="${COMMON_DEPEND} DOCS=(AUTHORS NEWS README README-XPDF TODO) -PATCHES=( "${FILESDIR}/${PN}-0.26.0-qt5-dependencies.patch" ) +PATCHES=( + "${FILESDIR}/${PN}-0.26.0-qt5-dependencies.patch" + "${FILESDIR}/${PN}-0.28.1-respect-cflags.patch" ) src_configure() { local mycmakeargs=( @@ -98,6 +100,7 @@ src_install() { if use cairo && use doc; then # For now install gtk-doc there insinto /usr/share/gtk-doc/html/poppler - doins -r "${S}"/glib/reference/html/* + # nonfatal, because live version doesn't provide html documentation. + nonfatal doins -r "${S}"/glib/reference/html/* fi } diff --git a/dev-db/mysql/Manifest b/dev-db/mysql/Manifest index b57ad8821063..4f255d149af5 100644 --- a/dev-db/mysql/Manifest +++ b/dev-db/mysql/Manifest @@ -1,10 +1,13 @@ DIST mysql-5.1.70.tar.gz 23984241 SHA256 9e03a343cf1b72b07f9c9bf7be24ffc808aa5c1a9daa590aaf2bc6a7a31f60ed SHA512 5d667af9e819bca85ff4d471cbb2792f47129146822a14cc93abb3f80a6fc6453ef06fc3dece091979003906d76002c1e680b3516747d29f5282827ec87a00e3 WHIRLPOOL 58dedd3b72621b339525338db717c399f04293bee5525856f2a275473f9730b3eafffcc3c29425047e4378ca519cb4da217a269269b0b43ad38178ce1e46f21d DIST mysql-5.1.73.tar.gz 24023347 SHA256 05ebe21305408b24407d14b77607a3e5ffa3c300e03f1359d3066f301989dcb5 SHA512 2e3651ebc1370dad7e01158cdd99133ed3f90c985114766b6282d58b743ae7bce16db797e82819fa5bbc2fa53d89811fd76b278c7459338288e7957634a8c3ff WHIRLPOOL f47c3fe1cd98b8ca2163646c760bd9763c65eab0591b31fe30a8c55c72c8b10d7b549b394493695cf98f50999364409ef8158661141277e6d99b011835aef942 DIST mysql-5.5.40.tar.gz 21727672 SHA256 4d3721761a31c28866e8ee0fde47558a3e9047aaef3b89135ae8d45eebb74960 SHA512 9adc3c0ace48a84ee87fb7e1f36b2f3d3e5cd95d50ca3012828c7fb33b723cfbfdf85760a30ea38c719a90cc449613747e974768b7f0b070dc346e05a5c418b3 WHIRLPOOL e8a5e8c6e4b816d935fd5368a9f38eaea23b1269c39e6ceed54c13bfaa85586ea81d1c4386f4f3d520cdb3d16b023afa3dab763629e388bc0759389e0eddec43 +DIST mysql-5.5.41.tar.gz 21768300 SHA256 ec642fc5be5ea03b24a0c5189204675fb3794dee772314ace650623c1c994844 SHA512 4c4e9658175e1f5de218527045d7d43f880a16c0069725e6c9f9873538b5ede39e4024fc9983e42c04d59a7bece7a3505d154eabbaa230c0dd456c46ff4982b8 WHIRLPOOL 37ef2709b489db62beb745d3b39bf6e6ebe97e98ea6f5630fa4a74cf865d048a222b19995eff71c6146b15cb28f4dd7edf1567ddf6dbef606f964149dad37ccc DIST mysql-5.6.21.tar.gz 33009070 SHA256 ea4daf6a8f4b1a9c62e416249a08fbdcbf686667d738004ef82044def96feb7c SHA512 0a15c30d17324eb123d7953a2564fea43a3d288dfe098dc419096c40101f8ee2fe201dab1a4860158b72a259040cab7a45073576a1a24879b1e1dc9990c190bd WHIRLPOOL 8a00b0fe04df901aece356f979e29b47c4361fa5e14ec76c36e0bc43da4049de265b547f9a27b6c948d5989c04a784c6dca547e86cc380bbb57d477b614f8e31 +DIST mysql-5.6.22.tar.gz 33115516 SHA256 c4d2dfabb20a8e26e8437dff41f366520001eb031ffd77fbfcde70d0073fc9f6 SHA512 11b4a1b34ff4bb63d7cdbc1134947772b2c30715b1e3d3fba2ed9c5102f0bde14a708561b2d463014eca64f5fb415a54a0e1656d48f118b403e66d83b98f5b82 WHIRLPOOL a85db903ce1bc542ac87d832d2d0d84cd4c8a75f5feae435d0a9c5ce26f792b7d30c0113764315e8df0e74a899ee2c02233e3b193b42a98daf46ed52b5ccc9cd DIST mysql-extras-20130626-0127Z.tar.bz2 1476503 SHA256 a3c791b7b95fe170c4071feed11699146fc8f9de6a9f2ffa67214c2e50644b4f SHA512 4ee19cb5960ba24f2db16e7c5b647d1b7bb9fadbc73bbd8125bbac7e926c569a9a585a4d1d92b851ea6653d9c15eeb00f1592880f104520dc040e5af19943ac7 WHIRLPOOL 739f5762fa24b0feb40848ddb83f2ed95fb650933920b3d9e55c5e90f907d4ac74dfb00e4b9189cda8f9af4317478f3132daf789d7c91196827f645dd3e37d61 DIST mysql-extras-20140514-0124Z.tar.bz2 1493742 SHA256 0cdda9f8587532375274510a8a1f8fe5e80f10cfdf851a01074109803f7ee4cf SHA512 7a798809809b35a515a3475be5f1a96547d495592c83c4cf5c79fb07ceb45a04000da8922d051004c0f2d944f92ca47b75ad08d06a8dccca2ae9f94778d31a7e WHIRLPOOL 371446d80cd9fa22a28eeecde8d18c9c3ca76db9bc57a4ab2073ed0fc1d19a70a06a33cb92257a671849e4bad8bfb9f235272ee1221c7c21ce5f45bc900a59cc DIST mysql-extras-20140801-1950Z.tar.bz2 1494288 SHA256 a656486a7383d656ed33e279f41bb4384feba082cad3af48376ce9e1f395fe0b SHA512 b2c29c3d7c1ddacfa170125c9df0aaf65eac9f6112244b1deea97a46a3a2f2bd3eb069808e7b2ee3261d609b32046363830ba4ebcc7e74f449189a91145a6f9c WHIRLPOOL 41befc03a7382516849ecaecc1d02be7d00c47be489b97ce68c320c3aa8979c8f941525efe230d97ad2d1a85936a1e4d6c93d96a3f45930991a938e5f0fdab87 DIST mysql-extras-20141019-1948Z.tar.bz2 1494569 SHA256 9a2ced701ef613e2a41c9a1fc550d9004d04f52cbfc06bb634ba9284d7a1c0ea SHA512 c9e3f3a447f010be0563b9d9ee2937d32c5334b04a883218eb6c14af41f9de635c3c0c44128959793e8a12ca3b26b2415777a13aced7c3812ab2c6d21ade6799 WHIRLPOOL bc0c73ca86d59d18a76a047a920fc2f64d2b3246e6b64838127d26c5c55cb3fc1ce8833656f5eadba72ef651e1f6c3e75700f776a1205ab33ab6ee0064851b86 +DIST mysql-extras-20141203-2105Z.tar.bz2 1494317 SHA256 cec9fe6873563840e9520ec9f02d06e1262748847be45a9aeaaa841f7ed4b4dc SHA512 958b410d7905d7911a69288ba9a9ebb1d80ff38281506e18400652b15895eb3926d9679fd245a54f4f7cdb688ed9940f21b1b4634239dbc1a1db19ac3918921a WHIRLPOOL baf70684826f393723bd3877813d9415c15b847ffd71757535a12106bff4fcf343cca37e166d45be06eca0425d249dc600bc752ab5e27e02ead3897952ceb169 DIST pbxt-1.0.11-6-pre-ga.tar.gz 3156307 SHA256 71ff3d86e9e5691f3efe541bf31f55a7ec2a88af27df6ad853b65902e00e6d12 SHA512 fa238303f06e0a9adfb10bd5a2e1d2e4850d2c17a350af3874cbff099d6e47b7c555d750c584d06a3ca87c1eb1e9301a9619d8d9a4cffb7fd0169b2b3a63c80c WHIRLPOOL 05cdd39f6f5dafff2def0062a00a24eff6cf6d8754f622b133365cef47cd6b828df5500ac407359d0793a75dd239ec1e49a13d2400a01ddf8b4cef7466e86962 DIST percona-xtradb-1.0.6-10.tar.gz 1676716 SHA256 e3aa818f13cf669412e59ad194eae8eada7a857bf7a4260e4bb41cab4d7ae39c SHA512 72e4b656b22a0420e6f5935dc28060e5c50fbeb48c6d1ae430579d9ccef8042fdd4dde128cc977b903de6221f7021e8c87ea29fe6a8a8c74edb84bf54ab889f3 WHIRLPOOL a916879be315498da27c60992efa4d19e91305b81242925e161547f3fb97a820256e1d07863e9e007ef843af54cd087ce5ac47d5ed1b70862da6cd5a9d81eccf diff --git a/dev-db/mysql/mysql-5.5.41.ebuild b/dev-db/mysql/mysql-5.5.41.ebuild new file mode 100644 index 000000000000..8cd099618c47 --- /dev/null +++ b/dev-db/mysql/mysql-5.5.41.ebuild @@ -0,0 +1,121 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.5.41.ebuild,v 1.1 2014/12/04 01:27:44 grknight Exp $ + +EAPI="5" + +MY_EXTRAS_VER="20141203-2105Z" +MY_PV="${PV//_alpha_pre/-m}" +MY_PV="${MY_PV//_/-}" + +# Build type +BUILD="cmake" + +inherit toolchain-funcs mysql-v2 +# only to make repoman happy. it is really set in the eclass +IUSE="$IUSE" + +# Define the mysql-extras source +EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" + +# REMEMBER: also update eclass/mysql*.eclass before committing! +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" + +# When MY_EXTRAS is bumped, the index should be revised to exclude these. +EPATCH_EXCLUDE='' + +DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 )" +RDEPEND="${RDEPEND}" + +# Please do not add a naive src_unpack to this ebuild +# If you want to add a single patch, copy the ebuild to an overlay +# and create your own mysql-extras tarball, looking at 000_index.txt + +# Official test instructions: +# USE='-cluster embedded extraengine perl ssl static-libs community' \ +# FEATURES='test userpriv -usersandbox' \ +# ebuild mysql-X.X.XX.ebuild \ +# digest clean package +src_test() { + + local TESTDIR="${BUILD_DIR}/mysql-test" + local retstatus_unit + local retstatus_tests + + # Bug #213475 - MySQL _will_ object strenously if your machine is named + # localhost. Also causes weird failures. + [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" + + if ! use "minimal" ; then + + if [[ $UID -eq 0 ]]; then + die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." + fi + has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" + + einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" + addpredict /this-dir-does-not-exist/t9.MYI + + # Run CTest (test-units) + cmake-utils_src_test + retstatus_unit=$? + [[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed" + + # Ensure that parallel runs don't die + export MTR_BUILD_THREAD="$((${RANDOM} % 100))" + # Enable parallel testing, auto will try to detect number of cores + # You may set this by hand. + # The default maximum is 8 unless MTR_MAX_PARALLEL is increased + export MTR_PARALLEL="${MTR_PARALLEL:-auto}" + + # create directories because mysqladmin might right out of order + mkdir -p "${T}"/var-tests{,/log} + + # create symlink for the tests to find mysql_tzinfo_to_sql + ln -s "${BUILD_DIR}/sql/mysql_tzinfo_to_sql" "${S}/sql/" + + # These are failing in MySQL 5.5 for now and are believed to be + # false positives: + # + # main.information_schema, binlog.binlog_statement_insert_delayed, + # main.mysqld--help-notwin + # fails due to USE=-latin1 / utf8 default + # + # main.mysql_client_test: + # segfaults at random under Portage only, suspect resource limits. + + for t in main.mysql_client_test \ + binlog.binlog_statement_insert_delayed main.information_schema \ + main.mysqld--help-notwin ; do + mysql-v2_disable_test "$t" "False positives in Gentoo" + done + + # Run mysql tests + pushd "${TESTDIR}" + + # run mysql-test tests + perl mysql-test-run.pl --force --vardir="${T}/var-tests" \ + --testcase-timeout=30 + retstatus_tests=$? + [[ $retstatus_tests -eq 0 ]] || eerror "tests failed" + has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" + + popd + + # Cleanup is important for these testcases. + pkill -9 -f "${S}/ndb" 2>/dev/null + pkill -9 -f "${S}/sql" 2>/dev/null + + failures="" + [[ $retstatus_unit -eq 0 ]] || failures="${failures} test-unit" + [[ $retstatus_tests -eq 0 ]] || failures="${failures} tests" + has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" + + [[ -z "$failures" ]] || die "Test failures: $failures" + einfo "Tests successfully completed" + + else + + einfo "Skipping server tests due to minimal build." + fi +} diff --git a/dev-db/mysql/mysql-5.6.22.ebuild b/dev-db/mysql/mysql-5.6.22.ebuild new file mode 100644 index 000000000000..515f0c1125a4 --- /dev/null +++ b/dev-db/mysql/mysql-5.6.22.ebuild @@ -0,0 +1,147 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.6.22.ebuild,v 1.1 2014/12/04 01:27:44 grknight Exp $ + +EAPI="5" + +MY_EXTRAS_VER="20141203-2105Z" +MY_PV="${PV//_alpha_pre/-m}" +MY_PV="${MY_PV//_/-}" + +inherit toolchain-funcs mysql-multilib +# only to make repoman happy. it is really set in the eclass +IUSE="$IUSE" + +# REMEMBER: also update eclass/mysql*.eclass before committing! +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" + +# When MY_EXTRAS is bumped, the index should be revised to exclude these. +EPATCH_EXCLUDE='' + +DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 )" +RDEPEND="${RDEPEND}" + +# Please do not add a naive src_unpack to this ebuild +# If you want to add a single patch, copy the ebuild to an overlay +# and create your own mysql-extras tarball, looking at 000_index.txt + +# Official test instructions: +# USE='-cluster embedded extraengine perl ssl static-libs community' \ +# FEATURES='test userpriv -usersandbox' \ +# ebuild mysql-X.X.XX.ebuild \ +# digest clean package +multilib_src_test() { + + if ! multilib_is_native_abi ; then + einfo "Server tests not available on non-native abi". + return 0; + fi + + local TESTDIR="${BUILD_DIR}/mysql-test" + local retstatus_unit + local retstatus_tests + + # Bug #213475 - MySQL _will_ object strenously if your machine is named + # localhost. Also causes weird failures. + [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" + + if ! use "minimal" ; then + + if [[ $UID -eq 0 ]]; then + die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." + fi + has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" + + einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" + addpredict /this-dir-does-not-exist/t9.MYI + + # Run CTest (test-units) + cmake-utils_src_test + retstatus_unit=$? + [[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed" + + # Ensure that parallel runs don't die + export MTR_BUILD_THREAD="$((${RANDOM} % 100))" + # Enable parallel testing, auto will try to detect number of cores + # You may set this by hand. + # The default maximum is 8 unless MTR_MAX_PARALLEL is increased + export MTR_PARALLEL="${MTR_PARALLEL:-auto}" + + # create directories because mysqladmin might right out of order + mkdir -p "${T}"/var-tests{,/log} + + # create symlink for the tests to find mysql_tzinfo_to_sql + ln -s "${BUILD_DIR}/sql/mysql_tzinfo_to_sql" "${S}/sql/" + + # These are failing in MySQL 5.5/5.6 for now and are believed to be + # false positives: + # + # main.information_schema, binlog.binlog_statement_insert_delayed, + # funcs_1.is_triggers funcs_1.is_tables_mysql, + # funcs_1.is_columns_mysql, binlog.binlog_mysqlbinlog_filter, + # perfschema.binlog_edge_mix, perfschema.binlog_edge_stmt, + # mysqld--help-notwin, funcs_1.is_triggers, funcs_1.is_tables_mysql, funcs_1.is_columns_mysql + # perfschema.binlog_edge_stmt, perfschema.binlog_edge_mix, binlog.binlog_mysqlbinlog_filter + # fails due to USE=-latin1 / utf8 default + # + # main.mysql_client_test: + # segfaults at random under Portage only, suspect resource limits. + # + # rpl.rpl_plugin_load + # fails due to included file not listed in expected result + # appears to be poor planning + for t in \ + binlog.binlog_mysqlbinlog_filter \ + binlog.binlog_statement_insert_delayed \ + funcs_1.is_columns_mysql \ + funcs_1.is_tables_mysql \ + funcs_1.is_triggers \ + main.information_schema \ + main.mysql_client_test \ + main.mysqld--help-notwin \ + perfschema.binlog_edge_mix \ + perfschema.binlog_edge_stmt \ + rpl.rpl_plugin_load \ + ; do + mysql-multilib_disable_test "$t" "False positives in Gentoo" + done + + if ! use extraengine ; then + # bug 401673, 530766 + for t in federated.federated_plugin ; do + mysql-multilib_disable_test "$t" "Test $t requires USE=extraengine (Need federated engine)" + done + fi + + # Run mysql tests + pushd "${TESTDIR}" + + # Set file limits higher so tests run + ulimit -n 3000 + + # run mysql-test tests + perl mysql-test-run.pl --force --vardir="${T}/var-tests" \ + --suite-timeout=5000 + retstatus_tests=$? + [[ $retstatus_tests -eq 0 ]] || eerror "tests failed" + has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" + + popd + + # Cleanup is important for these testcases. + pkill -9 -f "${S}/ndb" 2>/dev/null + pkill -9 -f "${S}/sql" 2>/dev/null + + failures="" + [[ $retstatus_unit -eq 0 ]] || failures="${failures} test-unit" + [[ $retstatus_tests -eq 0 ]] || failures="${failures} tests" + has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" + + [[ -z "$failures" ]] || die "Test failures: $failures" + einfo "Tests successfully completed" + + else + + einfo "Skipping server tests due to minimal build." + fi +} diff --git a/dev-embedded/srecord/Manifest b/dev-embedded/srecord/Manifest index 78b3a2ce4889..1a511fae90cc 100644 --- a/dev-embedded/srecord/Manifest +++ b/dev-embedded/srecord/Manifest @@ -3,3 +3,4 @@ DIST srecord-1.60.tar.gz 900389 SHA256 f579671c5ff3333e711616f738e751c742c2b4dd7 DIST srecord-1.61.tar.gz 916174 SHA256 b68d47b17ae50aee68655bb3b24e6d2434754a184d16510d4a6411d10bbdc364 SHA512 9bcd310bf812cf236a6b88e0aa5979510fc3fdcb622b631e923909ac12b9ff88ab8bc1f44006f0cdbffb51cb44e5885b46ff209bac9d71428f786d7d25a160ad WHIRLPOOL 4f2b8cd938be4a8026fc31e4a7b0d6618ee58f85aa0d2fea7fa9902b03c74ba043faf725e0ae7eec960ed2d2c342d554f46fa2ca640c14fb7c29812ad203bd47 DIST srecord-1.62.tar.gz 921920 SHA256 04a4e18a43d1cb8fa608242a012b99a1bf85704915663f668c7cd55435accb2d SHA512 4a3dde671af959c24a12c711919e9028a22034d2ce347cfa0ecb7bc368036b21b38356156ff1e2d58a9fa1a0fece25e7913be5730e23c74a82734bc262cc2c88 WHIRLPOOL dd8916b2733d4cb57b9a321acc6ff0abc5e5b23c8eb864722f146a005e3719361b9e226d16393e4fcba875fa035d8347314bc00445d96e95f08302e0c3ca2483 DIST srecord-1.63.tar.gz 938068 SHA256 78fec76d04424506e319f59b19a520428a7449ed087a67e1779fa2996992bf1a SHA512 6c6b37b3ff2dac06d1e6bac40cf29a3b8b6f120ccf97f7211fb6a5bd31ecbabb7cbebe98c7bbb61e2571bb9239d759a2784e426615747a7b91e089338058af2f WHIRLPOOL dfee24f2be5e076c76c00fc5bd06f225bc24e3fe0b47a0bf6a29f8cb58035d601374c7e1d5d11c365690887f1ba3a2ae400b5a1d8062d8b22e927625a4014419 +DIST srecord-1.64.tar.gz 942513 SHA256 49a4418733c508c03ad79a29e95acec9a2fbc4c7306131d2a8f5ef32012e67e2 SHA512 f96f2d9cd2c475d040c0474a35a17ebca2f0fb737856cdafe1227758a3e52176e4ab3e8577520c21e75e468d74fa98695128c02120734b6e92d8573e76af50b3 WHIRLPOOL e679a4b8b497a52a8617db3f509ce0776e7d33c823f8de3528fe3599fa2ad7cccc79c9743f4fecab023dc1d88c6de481f6091a0ef7c79f5672b399b08c3da5b6 diff --git a/dev-embedded/srecord/srecord-1.64.ebuild b/dev-embedded/srecord/srecord-1.64.ebuild new file mode 100644 index 000000000000..d5e2c2007419 --- /dev/null +++ b/dev-embedded/srecord/srecord-1.64.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/srecord/srecord-1.64.ebuild,v 1.1 2014/12/04 02:35:03 radhermit Exp $ + +EAPI=5 + +inherit eutils autotools + +DESCRIPTION="A collection of powerful tools for manipulating EPROM load files" +HOMEPAGE="http://srecord.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~sparc ~x86" +IUSE="static-libs test" + +RDEPEND="dev-libs/libgcrypt:0" +DEPEND="${RDEPEND} + dev-libs/boost + sys-apps/groff + test? ( app-arch/sharutils )" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-1.57-libtool.patch + + cp etc/configure.ac "${S}" + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) +} + +src_install() { + default + prune_libtool_files +} diff --git a/dev-libs/libassuan/Manifest b/dev-libs/libassuan/Manifest index 558da5cff352..dd12a62382d1 100644 --- a/dev-libs/libassuan/Manifest +++ b/dev-libs/libassuan/Manifest @@ -1,2 +1,3 @@ DIST libassuan-2.1.1.tar.bz2 538155 SHA256 23e2d67779b88e90d29fe1df6b157109f1c2a647d0f1b2a0f4295bb3c0b2039d SHA512 ab32da1fe8a5240866412214b26be54641efbdd67510c53bb40c46a051b4d03b81406ae2ff4dc2ef51e21a7278e3f1705fe12dca4bd4ebfef84e109dd86d599e WHIRLPOOL 3476c7a6032073f4276e9282b59878774726fcb1d76def51a92be76a75f5dca6ab8a621598e479557f1412e35d01d4fd83d5d2d9f1dc42bbb519e7dc0396de84 DIST libassuan-2.1.2.tar.bz2 516026 SHA256 39f8a7c9349aaaf7ccd937b90660153ec4d2d4df2465018754e5bcae5b1db77b SHA512 a45b1db8521f547eafbf4ddeaa5b1a19dd47be32e1b02103b2c46c0c86291ba2c2124c25151311a90bb2837f8e42fce7b61d9316606b3b19dbabafc57549386b WHIRLPOOL 99928abc5379f0eddf3e3e0d9536969503b2284bdea0040964a8ed072469df61652b906cbaf597234462e565cb60bd2495d772feec34b7c3330bc1416aa710c9 +DIST libassuan-2.1.3.tar.bz2 516087 SHA256 fa2170b353c928eb59610e0700c34947f1890634ddf7bcf2366c9c88b4f51d1a SHA512 ff9f6bd3287139307d42cf6fa9445487bf159db9dde2205246eaba2539f6162b419fdd53863929037550b71c2c12f14a39b60086fa6648e532bab498eee935a6 WHIRLPOOL 15e334f6f8ff9a06c72e57f5b7e550765bef96f0bf129c6066d7e066ff727c71e9bf790478350f02c13b5456baa087cbc52924114f67fe236326d6e0149b0fa6 diff --git a/dev-libs/libassuan/libassuan-2.1.3.ebuild b/dev-libs/libassuan/libassuan-2.1.3.ebuild new file mode 100644 index 000000000000..59a71c9f4426 --- /dev/null +++ b/dev-libs/libassuan/libassuan-2.1.3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libassuan/libassuan-2.1.3.ebuild,v 1.1 2014/12/04 04:13:35 radhermit Exp $ + +EAPI=5 + +inherit libtool eutils + +DESCRIPTION="IPC library used by GnuPG and GPGME" +HOMEPAGE="http://www.gnupg.org/related_software/libassuan/index.en.html" +SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2" + +LICENSE="GPL-3 LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="static-libs" + +RDEPEND=">=dev-libs/libgpg-error-1.8" +DEPEND="${RDEPEND}" + +DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO ) + +src_prepare() { + default + + # for Solaris .so + elibtoolize +} + +src_configure() { + econf $(use_enable static-libs static) +} + +src_install() { + default + # ppl need to use libassuan-config for --cflags and --libs + prune_libtool_files +} diff --git a/dev-ml/ocaml-ssl/ocaml-ssl-0.4.7.ebuild b/dev-ml/ocaml-ssl/ocaml-ssl-0.4.7.ebuild index adf2f7730b94..6b6bfaab00fd 100644 --- a/dev-ml/ocaml-ssl/ocaml-ssl-0.4.7.ebuild +++ b/dev-ml/ocaml-ssl/ocaml-ssl-0.4.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-ssl/ocaml-ssl-0.4.7.ebuild,v 1.1 2014/10/27 08:34:19 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-ssl/ocaml-ssl-0.4.7.ebuild,v 1.2 2014/12/03 14:12:21 aballier Exp $ EAPI=5 @@ -12,7 +12,7 @@ DESCRIPTION="OCaml bindings for OpenSSL" SRC_URI="mirror://sourceforge/savonet/${P}.tar.gz" HOMEPAGE="http://savonet.sourceforge.net" -DEPEND="dev-libs/openssl +DEPEND="dev-libs/openssl[-bindist] >=dev-lang/ocaml-3.10:=" RDEPEND="${DEPEND}" diff --git a/dev-perl/SOAP-WSDL/Manifest b/dev-perl/SOAP-WSDL/Manifest index f1f9cb1d56eb..1fe68e8e12dc 100644 --- a/dev-perl/SOAP-WSDL/Manifest +++ b/dev-perl/SOAP-WSDL/Manifest @@ -1 +1,2 @@ DIST SOAP-WSDL-2.00.10.tar.gz 235880 SHA256 1593dbefcf574594d7bd92ebfa392ef71f4bf0ad9f0381274629f66841820354 SHA512 9fa1accbb6573c8401fd32e5b3189bbc083c3cad40e38b1ff3164a7f1108f53793761e87ff315f6d60ba99ab9dbe2558717ca4cc58adf90a7ec1c1da43926c7f WHIRLPOOL ac4c477fc41e0e25e41f9ee3fd8b758d96c7b4960368eec69e0976aec089ce175bab26252b50176d7a020f8812aafc066399f59ea4fe473f2236ee702d21fa70 +DIST SOAP-WSDL-v3.002.tar.gz 238085 SHA256 9f38e7895f2bc1f4f2310a4c4baa6d21b10ec2910c4e7eebee0ad79435a56f06 SHA512 b472390b9b08cfd6d819189a2ae78ccd8fa5f7784003b3a3439daf33c7e8d5559001096cc763c2cd32dc673c564abe307fc64e35b514362e1c0cf64aab9d824e WHIRLPOOL 7554870883d0485d743f8e0f4f31e8c84227bbee571dc1db43a09eaba16d06985d569bc7944385057bb62f6f05dc4462fe06bdc2a962b3e89f93310483109174 diff --git a/dev-perl/SOAP-WSDL/SOAP-WSDL-3.2.0.ebuild b/dev-perl/SOAP-WSDL/SOAP-WSDL-3.2.0.ebuild new file mode 100644 index 000000000000..b6fb8972822b --- /dev/null +++ b/dev-perl/SOAP-WSDL/SOAP-WSDL-3.2.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/SOAP-WSDL/SOAP-WSDL-3.2.0.ebuild,v 1.1 2014/12/03 23:47:45 dilfridge Exp $ + +EAPI=5 + +MODULE_VERSION=v3.002 +MODULE_AUTHOR=SWALTERS +inherit perl-module + +DESCRIPTION="SOAP with WSDL support" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" + >=dev-perl/Class-Load-0.200.0 + >=dev-perl/Class-Std-Fast-0.0.5 + virtual/perl-Data-Dumper + dev-perl/TimeDate + virtual/perl-File-Path + virtual/perl-File-Spec + virtual/perl-Getopt-Long + dev-perl/libwww-perl + virtual/perl-Scalar-List-Utils + virtual/perl-Module-Build + virtual/perl-Storable + >=dev-perl/Template-Toolkit-2.180.0 + dev-perl/TermReadKey + dev-perl/URI + dev-perl/XML-Parser +" + +DEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( + virtual/perl-Test-Simple + virtual/perl-Getopt-Long + virtual/perl-Storable + ) +" + +SRC_TEST="do" diff --git a/dev-perl/Sys-CPU/Manifest b/dev-perl/Sys-CPU/Manifest index 35e8b58a6f12..787f6241e760 100644 --- a/dev-perl/Sys-CPU/Manifest +++ b/dev-perl/Sys-CPU/Manifest @@ -1 +1,2 @@ DIST Sys-CPU-0.54.tar.gz 6116 SHA256 04ccb677314acb5ef3169d7c677ba16e78d4d39dc8a1b6b74b7d0c905e7c951e SHA512 8a30eea354c47debc4b065da50b7f6e86a0b36fc9306d4db55a64e1d1c1c3e013a0c204bce7b1c93735a5d32d751e948430178967200f873bf7f154563feeb0e WHIRLPOOL a02c3e3f2f2c70625d52b481974ab5a6e6f31a5f5252ff2c5d82eb6632967414e8d1566980c55455fa2ad9a00da26d9401c1329a1516dc4292d85043cd966bb5 +DIST Sys-CPU-0.61.tar.gz 6497 SHA256 250a86b79c231001c4ae71d2f66428092a4fbb2070971acafd471aa49739c9e4 SHA512 391e113c87d9044cd43c47f9f78a782fab65566a32c028c01f7f3335a5065b6755586ea3143356510c8d28a7d1ad572cc6203ec189eaaa379967bdbd0a0bd7bc WHIRLPOOL 566c59562beecd38ef2d5909dabbeeed4948ebcf5eb8973ce1175bd9938c44cf1b3b2acde32b875f4b6030683a4468fc63490a6f1bbc053ed1e06e4f19bff0e1 diff --git a/dev-perl/Sys-CPU/Sys-CPU-0.610.0.ebuild b/dev-perl/Sys-CPU/Sys-CPU-0.610.0.ebuild new file mode 100644 index 000000000000..1a78ac82576b --- /dev/null +++ b/dev-perl/Sys-CPU/Sys-CPU-0.610.0.ebuild @@ -0,0 +1,15 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Sys-CPU/Sys-CPU-0.610.0.ebuild,v 1.1 2014/12/03 23:13:56 dilfridge Exp $ + +EAPI=5 + +MODULE_AUTHOR=MZSANFORD +MODULE_VERSION=0.61 +inherit perl-module + +DESCRIPTION="Access CPU info. number, etc on Win and UNIX" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos" +IUSE="" diff --git a/dev-python/joblib/Manifest b/dev-python/joblib/Manifest index c7fc4bcc515d..5fad6195bab0 100644 --- a/dev-python/joblib/Manifest +++ b/dev-python/joblib/Manifest @@ -2,3 +2,4 @@ DIST joblib-0.8.0.tar.gz 309866 SHA256 b0f628f878ee808cb8987ac7fd82abdb7a2a6e325 DIST joblib-0.8.1.tar.gz 310038 SHA256 0a8d9707d7f28ee155c1ec174868548ad2ae88f5f8ca08c629ce41c0c96bd36f SHA512 a67521a0e73c38d045031f6b189bcc8d2cda3f3364f229177bed84ddb344e266e7faff0e5acd8b9dbf4463625dd5b1049d29176f447e8e2ea04e05096d271f23 WHIRLPOOL ca2d79a943ffa263c8c1ca45c5bb5a0deaa16d7a48859971ef52f2de96f097b7e3720fef053ad069411493fd17320a8e82e26feee4889dbd0777eb3327b32682 DIST joblib-0.8.2.tar.gz 311162 SHA256 6434f2855be83796626185be474f06833cea2fd6fc65be765dc3ec39d6e620fc SHA512 63995559346aa032dc256c5995efe071fa5033b4fddaf9bafa45cb783ed74798e331e7bda2641163a8037ea044b8fee372af60860722e824a2f4cb161d7ceeb3 WHIRLPOOL a3892746ff382a2c64d49ed68f50b84b5b838f3a1f21c563646845e9265928946e59c22af2100e2a5f06c7a2b11d8603417075d6edf8bc9fc599d44b9b6fb766 DIST joblib-0.8.3.tar.gz 317569 SHA256 f163790e4c08b52c3c37db132c0528c3041da9e1d0095199bebd0c9876e1fcd6 SHA512 2f8279e753ad5d6d0001f399b19fcbe602511b43926d94b1d80f0dcff266e249779e8bdf88be9c976a12a8416e677497c18ca7a5c9019cdde4415e9a8d97d3aa WHIRLPOOL 1aa9e0a6c5ca0184674d0df76ba05bb2c435319c60edda1880037acf8f9b9fe514b14b111da85c5be548f9d98c350b30d69b95eb0b5b7f96f7a13979f766f852 +DIST joblib-0.8.4.tar.gz 314213 SHA256 f185b87199525e0805281960f9f91c4f2e382e5834f05678cfcfa8ec666a4d2b SHA512 37d9a107c0f8f80c30cbcf7e4520a571eb925efdfb8729ca681fb12b3ec79cfd63c4b53660e560bbb3bc162664f79ab1d9fa7207f3dac00b5d5cddcdc12169c9 WHIRLPOOL f887c0153b4fa691e2289a9d3237a1b9ee51fabd7f6f3a54c7914f4296e23d50010ba822846723566fac5bcfd40c7b23c458121b6eff18d8ce15d6317ae5e638 diff --git a/dev-python/joblib/joblib-0.8.4.ebuild b/dev-python/joblib/joblib-0.8.4.ebuild new file mode 100644 index 000000000000..4581c7b652ae --- /dev/null +++ b/dev-python/joblib/joblib-0.8.4.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/joblib/joblib-0.8.4.ebuild,v 1.1 2014/12/04 05:25:07 patrick Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) + +inherit distutils-r1 + +DESCRIPTION="Tools to provide lightweight pipelining in Python" +HOMEPAGE="http://pythonhosted.org/joblib/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) + test? ( dev-python/nose[${PYTHON_USEDEP}] )" +RDEPEND="" +# Usual; req'd for testsuite +DISTUTILS_IN_SOURCE_BUILD=1 + +python_compile_all() { + if use doc; then + sphinx-build -b html -c doc/ doc/ doc/html || die "docs failed installation" + fi +} + +python_test() { + # https://github.com/joblib/joblib/issues/143 + if [[ "${EPYTHON}" == pypy ]]; then + sed -e 's:test_func_inspect_errors:_&:' -i ${PN}/test/test_func_inspect.py || die + sed -e 's:test_parallel_pickling:_&:' -i ${PN}/test/test_parallel.py || die + fi + + nosetests -w ${PN}/test || die +} + +python_install_all() { + use doc && local HTML_DOCS=( doc/html/. ) + distutils-r1_python_install_all +} diff --git a/dev-python/markdown/Manifest b/dev-python/markdown/Manifest index e375a38f83c2..48c5b7693aa3 100644 --- a/dev-python/markdown/Manifest +++ b/dev-python/markdown/Manifest @@ -1,3 +1,4 @@ DIST Markdown-2.1.1.tar.gz 242852 SHA256 be6c8cc8163875062b60d759451fec1e55fd3426321b52a6a9077a3f95503864 SHA512 aa20209afc0f8b6bd3f39307b8487ffdf47b2ad017b8c6db70fcb2878c751a007c7f99bc71b1fe8abb7553468997a7b2be69f12211015835b94521a8c8c8657b WHIRLPOOL 2960850130190b0a123187160a0952d4e43f77cde0caddc3cc2142f361798e7c5fafd79c96a4ef03d51c3106db68cbccbffb03c1305f42bc808e63f10fe30b7b DIST Markdown-2.3.1.tar.gz 267131 SHA256 ffebd9385717aba00ff4e95b705b7693ddf12a7d483483d441218b6d3f4cf290 SHA512 4ceb0405825fb20f4432134b7904d402b41b1d95c18e10e484a71011a1429ae83804437ed94ce60315fb48664f096a8f5d8d9e0111cab332fe5c978d62d569a6 WHIRLPOOL df7d6b7046949fef03f4e65e996bc086bc0f57272e3b91387dcb2243800cbbba4f3395adb770bd4f89c8466dab26a1fe15ec122bca3dc6e8486e07f9e3b70e9e DIST Markdown-2.5.1.tar.gz 288970 SHA256 8f81ed12c18608a502828acb7d318f362c42f4eca97d01e93cadfc52c1e40b73 SHA512 27f0d3909d6aa1e0ae15403da1cdfafcbfd463d7a236e0ea0cf02c55efa8f863c2554d54e20b0d9f58d80502dbf333120431474f16c64883001e5a318866eeb0 WHIRLPOOL 88f76fcb744ad6b8429442de409275c655a85039475d6dab11031a141e148286cc56d7865f590b432bfcf91af4965963989dae9a68a01e6931f367f425f83420 +DIST Markdown-2.5.2.tar.gz 291696 SHA256 284e97e56db9ada03ede9c0ed2870ca6590ce7869f3119104d53510debf1533d SHA512 603853586fa61dec7665a4e5ef21549adb0aa4309b0f67aea804bf749ba76ea94b09b17c24a37e25d409575ee149d3baaaf77c3dd4dcf74793c8106830fae28d WHIRLPOOL 88a21531ffa1d3059c79324d376b55cfafc77ea94330e1a5b0995c8bce14473c76a8a2cb37d52278754f1884126e4ebf78f102064a0bd52f33104b233cf4ea0b diff --git a/dev-python/markdown/markdown-2.5.2.ebuild b/dev-python/markdown/markdown-2.5.2.ebuild new file mode 100644 index 000000000000..1adb06b1332c --- /dev/null +++ b/dev-python/markdown/markdown-2.5.2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/markdown/markdown-2.5.2.ebuild,v 1.1 2014/12/04 05:15:18 patrick Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 ) + +inherit distutils-r1 + +MY_PN="Markdown" +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Python implementation of the markdown markup language" +HOMEPAGE="http://www.freewisdom.org/projects/python-markdown http://pypi.python.org/pypi/Markdown" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="|| ( BSD GPL-2 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-linux ~x86-macos" +IUSE="doc test pygments" + +DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] )" +# source cites pytidylib however from testruns it appears optional +RDEPEND="pygments? ( dev-python/pygments[${PYTHON_USEDEP}] )" + +S="${WORKDIR}/${MY_P}" + +python_compile_all() { + use doc && esetup.py build_docs +} + +python_test() { + cp -r -l run-tests.py tests "${BUILD_DIR}"/ || die + pushd "${BUILD_DIR}" > /dev/null + "${PYTHON}" run-tests.py || die "Tests fail with ${EPYTHON}" + popd > /dev/null +} + +python_install_all() { + # make use doc do a doc build + use doc && local HTML_DOCS=( "${BUILD_DIR}"/docs/. ) + + distutils-r1_python_install_all +} diff --git a/dev-python/py-notify/py-notify-0.3.1.ebuild b/dev-python/py-notify/py-notify-0.3.1-r1.ebuild similarity index 50% rename from dev-python/py-notify/py-notify-0.3.1.ebuild rename to dev-python/py-notify/py-notify-0.3.1-r1.ebuild index d85acc751a55..48a8c8611f42 100644 --- a/dev-python/py-notify/py-notify-0.3.1.ebuild +++ b/dev-python/py-notify/py-notify-0.3.1-r1.ebuild @@ -1,14 +1,12 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/py-notify/py-notify-0.3.1.ebuild,v 1.2 2012/02/21 08:43:46 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/py-notify/py-notify-0.3.1-r1.ebuild,v 1.1 2014/12/04 04:40:58 idella4 Exp $ -EAPI=2 +EAPI=5 -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.* *-jython" +PYTHON_COMPAT=( python2_7 ) -inherit python distutils +inherit distutils-r1 DESCRIPTION="Tools for implementing the Observer programming pattern in Python" HOMEPAGE="http://home.gna.org/py-notify" @@ -17,4 +15,13 @@ SRC_URI="http://download.gna.org/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" +IUSE="examples test" + +python_test() { + "${PYTHON}" run-tests.py || die "Tests failed" +} + +python_install_all() { + use examples && local EXAMPLES=( examples/. ) + distutils-r1_python_install_all +} diff --git a/dev-python/pylzma/Manifest b/dev-python/pylzma/Manifest index 24f3580aa220..4a8ca282face 100644 --- a/dev-python/pylzma/Manifest +++ b/dev-python/pylzma/Manifest @@ -1,2 +1,3 @@ DIST pylzma-0.4.4.tar.gz 106537 SHA256 ba65fbeee504bd10af275399df10e5603a33226a3e22d393dfa59ae99765cff1 SHA512 50803ca88f86059908920cc3a67abf78d319aa74bcec4fcf65b7f42893f64e3a064c683ae017566900d457a34322945a9ef420f18c6d254318ee2a3d06c4a63a WHIRLPOOL 1da7c51c645ad197686e73562d6b718ace12ce7b433ecaf01e8b0c8601ee8da33df9ac4b1ebcb89ef7d4ca3493758d3a4c1b3a6dac98b4c74626ead4def1dabb DIST pylzma-0.4.5.tar.gz 109966 SHA256 02eb860567bf760a7dd48e55e9834f7668f0c3ffbaedefcb82f954438253b3e4 SHA512 024dc144dc2649982aa032f7dd14d64854ac72dc65ae676fcdd7b1440c3eb14583c9e315d8837448e4d98c101cbd00fb7dc7b138b609bfd4eabc0a6d1bc8f330 WHIRLPOOL 53db9f42de8a00fbfe11328b16f8f8974d6e06c591e74e640a783431574138861208abe2855ff6a8310fa4b4c8215c61aa44a296cc881e2929f5cd5ea7c05e07 +DIST pylzma-0.4.6.tar.gz 110092 SHA256 3357c1c74122ee289ce973788f8dc2371a00ec4a145397202001acfb4bc85974 SHA512 9418bebeea811a99ad6874340d36baf28d1310fb6d58eee94dc34f68a37916f18dfca52c32dd43d4d10bfca507d157315a563e6c5a3444a89fd381e9991de150 WHIRLPOOL d1856beb436e8319fbe5547581e0483847451db1d23e506b5bedd7df44c07f42d1d41c82ef02aa20eda479715c1f624d6e4bb02e76f9094f6bd65ec026585c09 diff --git a/dev-python/pylzma/pylzma-0.4.6.ebuild b/dev-python/pylzma/pylzma-0.4.6.ebuild new file mode 100644 index 000000000000..a6d4c9721ecb --- /dev/null +++ b/dev-python/pylzma/pylzma-0.4.6.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pylzma/pylzma-0.4.6.ebuild,v 1.1 2014/12/04 04:56:31 patrick Exp $ + +EAPI=5 +PYTHON_COMPAT=(python{2_6,2_7}) +# hashlib module required. + +inherit distutils-r1 + +DESCRIPTION="Python bindings for the LZMA compression library" +HOMEPAGE="http://www.joachim-bauch.de/projects/python/pylzma/ http://pypi.python.org/pypi/pylzma" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND="dev-python/m2crypto[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +DOCS=(doc/USAGE.md README.md) + +python_compile() { + python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing" + distutils-r1_python_compile +} diff --git a/dev-python/pytz/Manifest b/dev-python/pytz/Manifest index 302818c0583c..dbe62bdeb267 100644 --- a/dev-python/pytz/Manifest +++ b/dev-python/pytz/Manifest @@ -4,6 +4,7 @@ DIST pytz-2013.9.tar.bz2 159658 SHA256 4252226fa20e0715d4dcd05f9233f0076c44bca30 DIST pytz-2013b.tar.bz2 199509 SHA256 65eb49cc05b7917fddc61e1fe6d8a4512c295cb53891dd5ec816bcccdce3f1a5 SHA512 8600efd8f87c86648ffe7c3625b0567bc0da755f8241c36d4d29f226bfc20577e2b3016bcdc4c36a1d061c58be299d57eeacb0b9caa37c8854364282aaca1cb0 WHIRLPOOL a3434428394ac518fe18d5f4e8847677084d2f0649a9160bd48c96430f69f1e7a58794855633a10d753617c90ef26f129d68bd3874acc50855496183fa244732 DIST pytz-2013d.tar.bz2 204865 SHA256 2407e5b3d69c87915e7b3d86746ca3909153ddee82899b8f5cb70a4fd31b715e SHA512 fc687a2040c40d20cab974b11d18446c761504c3faf81caf0853149fd257aa939e5feb2367006463d443659b4ea7c5a7ef409f9b10329211eb920011ddb8c64f WHIRLPOOL d7411701850a27975b645bce2dcfb4bcfaeef85f12d82a0826372def35ec2495aa06cbdd774efc533114793b09442501f50bea30633a95d85dccff990ae29aea DIST pytz-2014.1.1.tar.bz2 160071 SHA256 faef9e23a42b47374c8e51dd0671b48ab01509f51e25ce9226a0d3d01fcd38f2 SHA512 49d08380efe56f94fa9fbcc226a38f212788da2a28710f66b2aa262172492a84c90d466a82e1f4c77153eafabecbc977d8d744f1a7697db169c9e59cc6820792 WHIRLPOOL 74c7e52c7a75623a55fbdcc5b05ca9958711232e4d16a58454dbdb7c9bbd82a185de4b4a11558c3630a37a2834e662818ae21de1d0f8bc214454da86682aa402 +DIST pytz-2014.10.tar.bz2 166213 SHA256 387f968fde793b142865802916561839f5591d8b4b14c941125eb0fca7e4e58d SHA512 870ab2dd4e7ebd0e5eb22fe888978f17678ba4ae72aca5106ca5a5fbdb6c4204de18ccbe27124a9f252546b030872d070c016350602aa5f7d1b68c43fa5367ec WHIRLPOOL d1f9cc2a1fcf67d22cad7e61d7634dd5d1c575bc47d72159a5394cdc9804c144093a516b3b8e90d685f4f9a469eb7e4bae3909ea8dcf839369cb3f1454919081 DIST pytz-2014.2.tar.bz2 160142 SHA256 4a752e3593827e935ffd3ffff68314da38d724f01309a05561b6778e8724bf74 SHA512 d9ef502708980b45eea2f06ca446a2b17032a1c7d50bd1e048061a2603e852b75c102680c408beca31342278dbecc7fc22d9ce92d7141c28259806120a2bf389 WHIRLPOOL 950697774a66cefbcbbd8fa7f254e6330e0938c9e93070c1ce0912813ae7f9db32fc9f0fc9f63c7af942b849553870f3a265327acfc58a05118a29c156e87934 DIST pytz-2014.3.tar.bz2 158565 SHA256 2aec76ecb31f3f3aaf3608afa87d14b536e56071f53fa40454c82d0916d91cee SHA512 beb50000571fc9f7ed7060ea8606e690604aaa44bca255699da7a545257603925877fcf5a9867650333cd4d84ea26f0498f326746bc5665fe8b2dc346073b1f6 WHIRLPOOL 577cca995ddb42cdf9d387306fd7c4dd07ab7029e4ab8ddcb67f855edc17f33d279342abbd0174230a6d93677f3d59b5cce4d93ad87d645f75074b7c686abbc5 DIST pytz-2014.4.tar.bz2 159160 SHA256 a339a5ba846985bcf0a87782492458752b5d95b56ba219de4c9404c0ee5beec9 SHA512 6a6daa905405821b46f330df8cdb87ee2e04e29ea6eb607bf81b0c2ae668abd41e0390494c135865cd2d8b1301051126a29242088d82933dbbaee37f409a500f WHIRLPOOL 41dbc266f68db76f3e4e9f03c260adcf1ffd6bba6b313ec9cb5ef741a29a748ac2ae34cfc9470a2618b6cfd863f85a0fe766daa17f93619d098c879c869c4f61 diff --git a/dev-python/pytz/pytz-2014.10.ebuild b/dev-python/pytz/pytz-2014.10.ebuild new file mode 100644 index 000000000000..25a323fef13a --- /dev/null +++ b/dev-python/pytz/pytz-2014.10.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pytz/pytz-2014.10.ebuild,v 1.1 2014/12/04 05:05:02 patrick Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) +inherit distutils-r1 + +DESCRIPTION="World timezone definitions for Python" +HOMEPAGE="http://pythonhosted.org/pytz/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + >=sys-libs/timezone-data-2014i" +RDEPEND="${DEPEND}" + +PATCHES=( + # Use timezone-data zoneinfo. + "${FILESDIR}/${PN}-2009j-zoneinfo.patch" + # ...and do not install a copy of it. + "${FILESDIR}/${PN}-2009h-zoneinfo-noinstall.patch" +) + +python_test() { + "${PYTHON}" pytz/tests/test_tzinfo.py -v || die "Tests fail with ${EPYTHON}" +} diff --git a/dev-python/requests/Manifest b/dev-python/requests/Manifest index 786d12ede366..4f0388f5198d 100644 --- a/dev-python/requests/Manifest +++ b/dev-python/requests/Manifest @@ -1,3 +1,4 @@ DIST requests-2.3.0.tar.gz 429521 SHA256 1c1473875d846fe563d70868acf05b1953a4472f4695b7b3566d1d978957b8fc SHA512 4723bcdee7cd8c5b71177a065cdbd29bcd3bd92d69c1887f9cfdcde23b8b105006a7cf4a06f906b9f14a35154c43b4cc436f612c2505c6a463dda131ae3e92e9 WHIRLPOOL 55549153437c69e249de010f71b7a679c700d27dc2a260dbe8e43578ee6c077463820f873ca7a6ba02ce1fe1a0e5b7917ea5812addc61404ec60360e9d8f0295 DIST requests-2.4.1.tar.gz 436872 SHA256 35d890b0aaa6e09ec40d49361d823b998ced86cc7673a9ce70bbc4f986e13ad8 SHA512 19abd4413978539fef1c239695b2e7477b2082793df45063d5f0eab988542f71afb32d3d3853d3aada2af19279ca62638a418bdc400bc0165c07371213e691c0 WHIRLPOOL 30a2874ea2771eb33e8eeba410663ba951956eeedc43149139b68108af746506f0b0cc141ad08ab650bdf3f45888c3e47b257d5ec904cb48875a5bce70fc7205 DIST requests-2.4.3.tar.gz 438132 SHA256 53c68313c5c6149b1a899234c000296e60a8900682accf73d6f0c6d608afc6b1 SHA512 9d98a8a97327f8dc74b9f8245605a1b7ee4f603884f180c48fd97e33b940be487015581dc3b38ead7c9e4332e175b83244b02f6b08fe76cefd9a376cea55b4d8 WHIRLPOOL 7dd1d30c6c37b6d555a554ae4e4d3a39cc64ba18ed21a6b9bbfb67d121481e09d05d30281f5dac8c4970239d56ead11a43a8756027f7560d813737768b6db4ef +DIST requests-2.5.0.tar.gz 443222 SHA256 d2daef4919fc87262b8b3cb5a9d214cac8ce1e50950f8423bbc1d31c2e63d38e SHA512 8ed59caf5efb9ca8336800910a3bca9b42bf3fb03e475977de819281da3c32487a7b75dfa8d2cdaf0b022155a73bd0fc3ec6217ea8639158c962e9442476f400 WHIRLPOOL ea61ecea579031fb60fc07cc52a7bf0924cdffeab37b01ff401227985410f08e9f8d6163f98024535983802e869d19f0b22571659f75cd989ff862a92274b9ea diff --git a/dev-python/requests/files/requests-2.5.0-system-cacerts.patch b/dev-python/requests/files/requests-2.5.0-system-cacerts.patch new file mode 100644 index 000000000000..f0d9e943e90b --- /dev/null +++ b/dev-python/requests/files/requests-2.5.0-system-cacerts.patch @@ -0,0 +1,24 @@ +--- requests-2.5.0/requests/certs.py ++++ requests-2.5.0/requests/certs.py +@@ -13,13 +13,14 @@ + """ + import os.path + +-try: +- from certifi import where +-except ImportError: +- def where(): +- """Return the preferred certificate bundle.""" +- # vendored bundle inside Requests +- return os.path.join(os.path.dirname(__file__), 'cacert.pem') ++def where(): ++ """Return the preferred certificate bundle.""" ++ cacerts = '/etc/ssl/certs/ca-certificates.crt' ++ if os.path.exists(cacerts): ++ return cacerts ++ ++ # vendored bundle inside Requests ++ return os.path.join(os.path.dirname(__file__), 'cacert.pem') + + if __name__ == '__main__': + print(where()) diff --git a/dev-python/requests/requests-2.5.0-r1.ebuild b/dev-python/requests/requests-2.5.0-r1.ebuild new file mode 100644 index 000000000000..5f98048c38a0 --- /dev/null +++ b/dev-python/requests/requests-2.5.0-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/requests/requests-2.5.0-r1.ebuild,v 1.1 2014/12/04 03:32:03 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="HTTP library for human beings" +HOMEPAGE="http://python-requests.org/ http://pypi.python.org/pypi/requests" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" +IUSE="" + +# bundles dev-python/urllib3 snapshot +RDEPEND="app-misc/ca-certificates + >=dev-python/chardet-2.2.1[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +# tests connect to various remote sites +RESTRICT="test" + +PATCHES=( + "${FILESDIR}"/${PN}-2.2.0-system-chardet.patch + "${FILESDIR}"/${P}-system-cacerts.patch +) + +python_prepare_all() { + # use system chardet + rm -r requests/packages/chardet || die + + distutils-r1_python_prepare_all +} + +python_test() { + "${PYTHON}" test_requests.py || die "Tests fail with ${EPYTHON}" +} diff --git a/dev-python/sphinx/sphinx-1.2.2.ebuild b/dev-python/sphinx/sphinx-1.2.2.ebuild index b3fa0de54f01..12a9bc3bb153 100644 --- a/dev-python/sphinx/sphinx-1.2.2.ebuild +++ b/dev-python/sphinx/sphinx-1.2.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.2.2.ebuild,v 1.17 2014/12/01 09:45:23 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.2.2.ebuild,v 1.18 2014/12/03 16:09:32 floppym Exp $ EAPI=5 @@ -42,9 +42,9 @@ python_compile() { # Note that the tests usually do it for us. However, I don't want # to trust USE=test really running all the tests, especially # with FEATURES=test-fail-continue. - cd "${BUILD_DIR}"/lib || die - "${PYTHON}" -m sphinx.pycode.__init__ \ - || die "Grammar generation failed." + pushd "${BUILD_DIR}"/lib > /dev/null || die + "${PYTHON}" -m sphinx.pycode.__init__ || die "Grammar generation failed." + popd > /dev/null || die } python_compile_all() { diff --git a/dev-python/sphinx/sphinx-1.2.3.ebuild b/dev-python/sphinx/sphinx-1.2.3.ebuild index 0ef5cb379a13..3bb6235702bd 100644 --- a/dev-python/sphinx/sphinx-1.2.3.ebuild +++ b/dev-python/sphinx/sphinx-1.2.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.2.3.ebuild,v 1.4 2014/11/23 16:36:00 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.2.3.ebuild,v 1.5 2014/12/03 16:09:32 floppym Exp $ EAPI=5 @@ -43,9 +43,10 @@ python_compile() { # Note that the tests usually do it for us. However, I don't want # to trust USE=test really running all the tests, especially # with FEATURES=test-fail-continue. - cd "${BUILD_DIR}"/lib || die + pushd "${BUILD_DIR}"/lib > /dev/null || die "${PYTHON}" -m sphinx.pycode.__init__ \ || die "Grammar generation failed." + popd > /dev/null || die } python_compile_all() { diff --git a/dev-tex/latex2rtf/Manifest b/dev-tex/latex2rtf/Manifest index 82095305944f..54fd60d7b564 100644 --- a/dev-tex/latex2rtf/Manifest +++ b/dev-tex/latex2rtf/Manifest @@ -1,3 +1,4 @@ DIST latex2rtf-2.2.1b.tar.gz 1357814 SHA256 d4c062a0b95cfa9ed4169ffd8c9ed67d65649227a19d6a9991597550e3e227a2 SHA512 943a667d65d84db744030f859500eb68095563be3f7fe9ad60201753058185360907557362e48931e37251f8ae9e40ec904ebb90e96c3bdd36c7abf8e9f2956b WHIRLPOOL cfef462a7dce753662ffe8e5ff12971a51fda26b49a891db519412c2e29c65f644545d08c8a43e3d107aaffc9321f53795e859499311c4a601b35eb671d13369 DIST latex2rtf-2.3.1.tar.gz 1581829 SHA256 38ecf64d2ca1a8cc4e7f17b71e1780c8b96387f5f492ffb0b52d28313d6441be SHA512 0906c310e9b869bfa694fe044f8ec4cbba86f93caa05b22ec3688ecd4088e773c948dc64c7394a082306a6900b8a94f14ad990675132eef30fad6715bacd8220 WHIRLPOOL 6214a99f6ffc195f03c38ef9f8a17b4ab669eb5f892f73745d2af60e283320514736cc1f2feb1e3250688658f7d449236e4d419d8af699e99afd65c2b2d38389 DIST latex2rtf-2.3.3.tar.gz 1583178 SHA256 f3c75f9e0d22506a005f38805b807ddc77a1cdd0961cf91a1ca3df31cb8fdcc3 SHA512 d14f2ef526cc938438366dd9ced239099a735389fa9515bb62f04038343c43ec64edc45f5df3eb7ded3adb5bc1e7a2ffd0cc3c4d7bfe4af97cd7f6256e66aca0 WHIRLPOOL bded2056cbc6c056aac75621a3a1354296444218f33bbb4a8ffafb7ccc81378d9e4351b1fc0752eb71fda1a5a8f614c98bfd2a4210449d5edf8b38fe4a5ec148 +DIST latex2rtf-2.3.8.tar.gz 1579721 SHA256 5484530de16e96ce76aedf969c464656a5f8834e748849d9009049e26f8c4143 SHA512 c4f0bdca7f1b3e605a07a015bad68193698e43ff2dd561e34eed397d8c92fccc52801fd1c3592592dd63c92a6b60a066904f60f2c4e41778702cc996b9113b0b WHIRLPOOL 6c1372abf67dcfa7c01453c4ded1e69f769d2c6adf544dd0c74211aea2181d45e0917e88ebc378b503c8f323a617ddbfdcc2a817ec72a7eb5b9acb9a323546cd diff --git a/dev-tex/latex2rtf/files/texinfo5.patch b/dev-tex/latex2rtf/files/texinfo5.patch new file mode 100644 index 000000000000..d19b0306bf09 --- /dev/null +++ b/dev-tex/latex2rtf/files/texinfo5.patch @@ -0,0 +1,25 @@ +From 35224edbb3647c3d0a7828584c952f254ac4eb2d Mon Sep 17 00:00:00 2001 +From: Christopher Meng +Date: Thu, 28 Aug 2014 17:02:04 +0800 +Subject: [PATCH] Fix-latex2rtf-FTBFS-with-texinfo-5 + +--- + doc/latex2rtf.texi | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/doc/latex2rtf.texi b/doc/latex2rtf.texi +index 9da9180..b6b7a4f 100755 +--- a/doc/latex2rtf.texi ++++ b/doc/latex2rtf.texi +@@ -1,6 +1,8 @@ ++@iftex + \def\LaTeX{L\kern-.36em\raise.3ex\hbox{\sc a}\kern-.15em\TeX} + \def\LaTeXe{\LaTeX\kern.15em 2$_\varepsilon$} + \def\BibTeX{B\kern-.05em{\sc i\kern-.025em b}\kern-.08em\TeX} ++@end iftex + + \input texinfo + @c -*-texinfo-*- +-- +2.1.0 + diff --git a/dev-tex/latex2rtf/latex2rtf-2.2.1b.ebuild b/dev-tex/latex2rtf/latex2rtf-2.2.1b.ebuild index 0d9bea2fd262..882e236b4692 100644 --- a/dev-tex/latex2rtf/latex2rtf-2.2.1b.ebuild +++ b/dev-tex/latex2rtf/latex2rtf-2.2.1b.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex2rtf/latex2rtf-2.2.1b.ebuild,v 1.7 2012/09/09 15:50:33 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex2rtf/latex2rtf-2.2.1b.ebuild,v 1.8 2014/12/03 16:22:45 aballier Exp $ EAPI=4 @@ -19,6 +19,7 @@ S="${WORKDIR}/${P%b}" RDEPEND="virtual/latex-base media-gfx/imagemagick" DEPEND="${RDEPEND} + sys-apps/man doc? ( virtual/texi2dvi ) test? ( dev-texlive/texlive-langgerman diff --git a/dev-tex/latex2rtf/latex2rtf-2.3.8.ebuild b/dev-tex/latex2rtf/latex2rtf-2.3.8.ebuild new file mode 100644 index 000000000000..64e193ad0138 --- /dev/null +++ b/dev-tex/latex2rtf/latex2rtf-2.3.8.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex2rtf/latex2rtf-2.3.8.ebuild,v 1.1 2014/12/03 16:14:16 aballier Exp $ + +EAPI=5 + +inherit toolchain-funcs eutils + +DESCRIPTION="LaTeX to RTF converter" +HOMEPAGE="http://latex2rtf.sourceforge.net/" +SRC_URI="mirror://sourceforge/latex2rtf/${P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +SLOT="0" +IUSE="doc test" +S="${WORKDIR}/${P%b}" + +RDEPEND="virtual/latex-base + media-gfx/imagemagick" +DEPEND="${RDEPEND} + doc? ( virtual/texi2dvi ) + test? ( + dev-texlive/texlive-langgerman + dev-texlive/texlive-fontsrecommended + dev-texlive/texlive-latexextra + dev-tex/latex2html + )" + +src_prepare() { + epatch "${FILESDIR}/texinfo5.patch" +} + +src_compile() { + export VARTEXFONTS="${T}/fonts" + tc-export CC + # Set DESTDIR here too so that compiled-in paths are correct. + emake DESTDIR="${EPREFIX}/usr" || die "emake failed" + if use doc; then + cd "${S}/doc" + emake realclean + emake -j1 + else + touch "${S}/doc/latex2rtf.html" + fi +} + +src_install() { + dodoc README* HACKING ToDo ChangeLog doc/credits + emake DESTDIR="${ED}/usr" -j1 install + # if doc is not used, only the text version is intalled. + if use doc; then + emake DESTDIR="${ED}/usr" install-info + fi +} diff --git a/eclass/mozconfig-v5.31.eclass b/eclass/mozconfig-v5.31.eclass index 3f0fb6ca92a8..297c0726ce8c 100644 --- a/eclass/mozconfig-v5.31.eclass +++ b/eclass/mozconfig-v5.31.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mozconfig-v5.31.eclass,v 1.1 2014/10/14 16:10:36 axs Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mozconfig-v5.31.eclass,v 1.2 2014/12/03 23:10:06 axs Exp $ # # @ECLASS: mozconfig-v5.31.eclass # @MAINTAINER: @@ -45,7 +45,7 @@ esac # Set the variable to any value if the use flag should exist but not be default-enabled. # use-flags common among all mozilla ebuilds -IUSE="${IUSE} dbus debug gstreamer pulseaudio startup-notification system-cairo system-icu system-jpeg system-sqlite +system-libvpx" +IUSE="${IUSE} dbus debug gstreamer pulseaudio startup-notification system-cairo system-icu system-jpeg system-sqlite system-libvpx" # some notes on deps: # gtk:2 minimum is technically 2.10 but gio support (enabled by default) needs 2.14 diff --git a/eclass/mozconfig-v5.34.eclass b/eclass/mozconfig-v5.34.eclass new file mode 100644 index 000000000000..0963d4e9a8f3 --- /dev/null +++ b/eclass/mozconfig-v5.34.eclass @@ -0,0 +1,232 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/eclass/mozconfig-v5.34.eclass,v 1.3 2014/12/04 01:17:15 axs Exp $ +# +# @ECLASS: mozconfig-v5.33.eclass +# @MAINTAINER: +# mozilla team +# @BLURB: the new mozilla common configuration eclass for FF33 and newer, v5 +# @DESCRIPTION: +# This eclass is used in mozilla ebuilds (firefox, thunderbird, seamonkey) +# to provide a single common place for the common mozilla engine compoments. +# +# The eclass provides all common dependencies as well as common use flags. +# +# Some use flags which may be optional in particular mozilla packages can be +# supported through setting eclass variables. +# +# This eclass inherits mozconfig helper functions as defined in mozcoreconf-v3, +# and so ebuilds inheriting this eclass do not need to inherit that. + +inherit multilib flag-o-matic toolchain-funcs mozcoreconf-v3 + +case ${EAPI} in + 0|1|2|3|4) die "EAPI=${EAPI} not supported" +esac + +# @ECLASS-VARIABLE: MOZCONFIG_OPTIONAL_WIFI +# @DESCRIPTION: +# Set this variable before the inherit line, when an ebuild needs to provide +# optional necko-wifi support via IUSE="wifi". Currently this would include +# ebuilds for firefox, and potentially seamonkey. +# +# Leave the variable UNSET if necko-wifi support should not be available. +# Set the variable to "enabled" if the use flag should be enabled by default. +# Set the variable to any value if the use flag should exist but not be default-enabled. + +# @ECLASS-VARIABLE: MOZCONFIG_OPTIONAL_JIT +# @DESCRIPTION: +# Set this variable before the inherit line, when an ebuild needs to provide +# optional necko-wifi support via IUSE="jit". Currently this would include +# ebuilds for firefox, and potentially seamonkey. +# +# Leave the variable UNSET if optional jit support should not be available. +# Set the variable to "enabled" if the use flag should be enabled by default. +# Set the variable to any value if the use flag should exist but not be default-enabled. + +# use-flags common among all mozilla ebuilds +IUSE="${IUSE} dbus debug gstreamer pulseaudio selinux startup-notification system-cairo system-icu system-jpeg system-sqlite system-libvpx" + +# some notes on deps: +# gtk:2 minimum is technically 2.10 but gio support (enabled by default) needs 2.14 +# media-libs/mesa needs to be 10.2 or above due to a bug with flash+vdpau + +RDEPEND=">=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.14:2 + x11-libs/gdk-pixbuf + >=x11-libs/pango-1.22.0 + >=media-libs/libpng-1.6.13: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 + gstreamer? ( + >=media-libs/gstreamer-1.2.3:1.0 + >=media-libs/gst-plugins-base-1.2.3:1.0 + >=media-libs/gst-plugins-good-1.2.3:1.0 + >=media-plugins/gst-plugins-libav-1.1.0_pre20130128-r1:1.0 + ) + 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.6:3[secure-delete,debug=] ) + system-libvpx? ( =media-libs/libvpx-1.3.0*[postproc] ) +" + +if [[ -n ${MOZCONFIG_OPTIONAL_WIFI} ]]; then + if [[ ${MOZCONFIG_OPTIONAL_WIFI} = "enabled" ]]; then + IUSE+=" +wifi" + else + IUSE+=" wifi" + fi + RDEPEND+=" + wifi? ( >=sys-apps/dbus-0.60 + >=dev-libs/dbus-glib-0.72 + net-wireless/wireless-tools )" +fi +if [[ -n ${MOZCONFIG_OPTIONAL_JIT} ]]; then + if [[ ${MOZCONFIG_OPTIONAL_JIT} = "enabled" ]]; then + IUSE+=" +jit" + else + IUSE+=" jit" + fi +fi + +DEPEND="app-arch/zip + app-arch/unzip + >=sys-devel/binutils-2.16.1 + ${RDEPEND}" + +RDEPEND+=" + selinux? ( sec-policy/selinux-mozilla )" + +# @FUNCTION: mozconfig_config +# @DESCRIPTION: +# Set common configure options for mozilla packages. +# Call this within src_configure() phase, after mozconfig_init +# +# Example: +# +# inherit mozconfig-v5.33 +# +# src_configure() { +# mozconfig_init +# mozconfig_config +# # ... misc ebuild-unique settings via calls to +# # ... mozconfig_{annotate,use_with,use_enable} +# mozconfig_final +# } + +mozconfig_config() { + # Migrated from mozcoreconf-2 + mozconfig_annotate 'system_libs' \ + --with-system-zlib \ + --enable-pango \ + --enable-svg \ + --with-system-bz2 + + mozconfig_annotate '' --enable-default-toolkit=cairo-gtk2 + + if has bindist ${IUSE}; then + mozconfig_use_enable !bindist official-branding + if [[ ${PN} == firefox ]] && use bindist ; then + mozconfig_annotate '' --with-branding=browser/branding/aurora + fi + fi + + mozconfig_use_enable debug + mozconfig_use_enable debug tests + + if ! use debug ; then + mozconfig_annotate 'disabled by Gentoo' --disable-debug-symbols + else + mozconfig_annotate 'enabled by Gentoo' --enable-debug-symbols + fi + + mozconfig_use_enable startup-notification + + if [[ -n ${MOZCONFIG_OPTIONAL_WIFI} ]] ; then + # wifi pulls in dbus so manage both here + mozconfig_use_enable wifi necko-wifi + if use wifi && ! use dbus; then + echo "Enabling dbus support due to wifi request" + mozconfig_annotate 'dbus required by necko-wifi' --enable-dbus + else + mozconfig_use_enable dbus + fi + else + mozconfig_use_enable dbus + mozconfig_annotate 'disabled' --disable-necko-wifi + fi + + # These are forced-on for webm support + mozconfig_annotate 'required' --enable-ogg + mozconfig_annotate 'required' --enable-wave + + if [[ -n ${MOZCONFIG_OPTIONAL_JIT} ]]; then + mozconfig_use_enable jit ion + mozconfig_use_enable jit yarr-jit + fi + + # These are enabled by default in all mozilla applications + mozconfig_annotate '' --with-system-nspr --with-nspr-prefix="${EPREFIX}"/usr + mozconfig_annotate '' --with-system-nss --with-nss-prefix="${EPREFIX}"/usr + mozconfig_annotate '' --x-includes="${EPREFIX}"/usr/include --x-libraries="${EPREFIX}"/usr/$(get_libdir) + mozconfig_annotate '' --with-system-libevent="${EPREFIX}"/usr + mozconfig_annotate '' --prefix="${EPREFIX}"/usr + mozconfig_annotate '' --libdir="${EPREFIX}"/usr/$(get_libdir) + mozconfig_annotate 'Gentoo default' --enable-system-hunspell + mozconfig_annotate '' --disable-gnomevfs + mozconfig_annotate '' --disable-gnomeui + mozconfig_annotate '' --enable-gio + mozconfig_annotate '' --disable-crashreporter + mozconfig_annotate 'Gentoo default' --with-system-png + mozconfig_annotate '' --enable-system-ffi + mozconfig_annotate 'Gentoo default to honor system linker' --disable-gold + mozconfig_annotate '' --disable-gconf + + # Use jemalloc unless libc is not glibc >= 2.4 + # at this time the minimum glibc in the tree is 2.9 so we should be safe. + if use elibc_glibc; then + # We must force-enable jemalloc 3 via .mozconfig + echo "export MOZ_JEMALLOC3=1" >> "${S}"/.mozconfig || die + mozconfig_annotate '' --enable-jemalloc + mozconfig_annotate '' --enable-replace-malloc + fi + + mozconfig_annotate '' --target="${CTARGET:-${CHOST}}" + mozconfig_annotate '' --build="${CTARGET:-${CHOST}}" + + if use gstreamer; then + mozconfig_annotate '+gstreamer' --enable-gstreamer=1.0 + else + mozconfig_annotate '' --disable-gstreamer + fi + mozconfig_use_enable pulseaudio + + mozconfig_use_enable system-cairo + mozconfig_use_enable system-sqlite + mozconfig_use_with system-jpeg + mozconfig_use_with system-icu + mozconfig_use_enable system-icu intl-api + mozconfig_use_with system-libvpx +} diff --git a/kde-base/kdelibs/kdelibs-4.14.3.ebuild b/kde-base/kdelibs/kdelibs-4.14.3.ebuild index 72bb5932f34d..3478b19b11af 100644 --- a/kde-base/kdelibs/kdelibs-4.14.3.ebuild +++ b/kde-base/kdelibs/kdelibs-4.14.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdelibs/kdelibs-4.14.3.ebuild,v 1.3 2014/11/30 13:55:55 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdelibs/kdelibs-4.14.3.ebuild,v 1.4 2014/12/03 15:04:58 kensington Exp $ EAPI=5 @@ -16,7 +16,7 @@ DESCRIPTION="KDE libraries needed by all KDE programs" KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" LICENSE="LGPL-2.1" -IUSE="3dnow acl alsa altivec +bzip2 debug doc fam jpeg2k kerberos lzma mmx +IUSE="3dnow acl alsa altivec +bzip2 +crypt debug doc fam jpeg2k kerberos lzma mmx nepomuk nls openexr +policykit spell sse sse2 ssl +udev +udisks +upower zeroconf" @@ -29,7 +29,6 @@ REQUIRED_USE=" RESTRICT="test" COMMONDEPEND=" - app-crypt/qca:2 >=app-misc/strigi-0.7.7 app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets @@ -70,6 +69,7 @@ COMMONDEPEND=" ) ) bzip2? ( app-arch/bzip2 ) + crypt? ( app-crypt/qca:2 ) fam? ( virtual/fam ) jpeg2k? ( media-libs/jasper ) kerberos? ( virtual/krb5 ) @@ -204,6 +204,7 @@ src_configure() { $(cmake-utils_use_with acl) $(cmake-utils_use_with alsa) $(cmake-utils_use_with bzip2 BZip2) + $(cmake-utils_use_with crypt QCA2) $(cmake-utils_use_with fam) $(cmake-utils_use_with jpeg2k Jasper) $(cmake-utils_use_with kerberos GSSAPI) diff --git a/kde-base/plasma-runtime/plasma-runtime-4.14.3.ebuild b/kde-base/plasma-runtime/plasma-runtime-4.14.3.ebuild index f014037d0c55..65857029a524 100644 --- a/kde-base/plasma-runtime/plasma-runtime-4.14.3.ebuild +++ b/kde-base/plasma-runtime/plasma-runtime-4.14.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/plasma-runtime/plasma-runtime-4.14.3.ebuild,v 1.1 2014/11/16 12:21:32 alexxy Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/plasma-runtime/plasma-runtime-4.14.3.ebuild,v 1.2 2014/12/03 15:16:16 kensington Exp $ EAPI=5 @@ -15,6 +15,7 @@ IUSE="debug" DEPEND=" $(add_kdebase_dep kactivities '' 4.13) + $(add_kdebase_dep kdelibs 'crypt') " RDEPEND="${DEPEND}" diff --git a/kde-base/plasma-workspace/plasma-workspace-4.11.14.ebuild b/kde-base/plasma-workspace/plasma-workspace-4.11.14.ebuild index 76e3832bca1c..d3ba37bbea89 100644 --- a/kde-base/plasma-workspace/plasma-workspace-4.11.14.ebuild +++ b/kde-base/plasma-workspace/plasma-workspace-4.11.14.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/plasma-workspace/plasma-workspace-4.11.14.ebuild,v 1.1 2014/11/14 18:41:52 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/plasma-workspace/plasma-workspace-4.11.14.ebuild,v 1.2 2014/12/03 15:22:30 kensington Exp $ EAPI=5 @@ -23,7 +23,7 @@ COMMONDEPEND=" >=dev-qt/qtcore-4.8.4-r3:4 !kde-misc/ktouchpadenabler $(add_kdebase_dep kactivities) - $(add_kdebase_dep kdelibs 'nepomuk?') + $(add_kdebase_dep kdelibs 'crypt,nepomuk?') $(add_kdebase_dep kephal) $(add_kdebase_dep ksysguard) $(add_kdebase_dep libkworkspace) diff --git a/kde-base/plasma-workspace/plasma-workspace-4.11.9-r1.ebuild b/kde-base/plasma-workspace/plasma-workspace-4.11.9-r1.ebuild index 809856258a7d..d960cf863049 100644 --- a/kde-base/plasma-workspace/plasma-workspace-4.11.9-r1.ebuild +++ b/kde-base/plasma-workspace/plasma-workspace-4.11.9-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/plasma-workspace/plasma-workspace-4.11.9-r1.ebuild,v 1.1 2014/05/13 17:43:43 johu Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/plasma-workspace/plasma-workspace-4.11.9-r1.ebuild,v 1.3 2014/12/03 15:22:30 kensington Exp $ EAPI=5 diff --git a/mail-client/thunderbird/Manifest b/mail-client/thunderbird/Manifest index cf7f321d73b3..06766e68f36d 100644 --- a/mail-client/thunderbird/Manifest +++ b/mail-client/thunderbird/Manifest @@ -4,6 +4,7 @@ DIST enigmail-1.7.2.tar.gz 1420346 SHA256 7b3a62e83961bafec1cdac60075aa6c317c8f6 DIST firefox-17.0-patches-0.6.tar.xz 52684 SHA256 780d7aa5990e39ad105b21fa2584379357749e0eb16e0eaf9be66464a02f3de1 SHA512 56fc3970233e144bea5f6d6be6fdc7c17b1095172dc600c02be4a0cd3764958480e934a0b2ce1ab2a3edc237ece9cf1b7a2f7914828e6c5a3f519860ea2a5b5d WHIRLPOOL 4e2bdb64dfb23f66bec5bf41e34d61aff22e4f7bc14c7c981077575364c8a5aae889d941b99fbf21d248854648b70f6e4c2e6a2e06ab70b1d4495d539e2962a4 DIST firefox-24.0-patches-0.9.tar.xz 6576 SHA256 615b47ed076ead8f6fe8a9cc8b51ae7615bb8fb404a3e7254190e73c6669479f SHA512 caf76c23e3ad4ae0fd9d240d4ee61c289bfc727ae8117a17c27396d32ab9e06512cfa53da86c99e6c2d941eca96e18c41775473f3c4a16cf8c91a2e8dbe144ad WHIRLPOOL c0104c84c20a28b945ce2fe5a22e00ccd412d00bc38e4d51583fb47765bd639808db1a1bb52be9b7515423437ae131e12dd5f837b35d8e2e50dfb86341446396 DIST firefox-31.0-patches-0.2.tar.xz 4636 SHA256 fdcd4e68093fb905af06cd89aad7042f8a4e695dea9c184351945fcb5872a062 SHA512 2fee84ac6027a1e1317470112df54fef411596a522bca756f82c525b13ba952015e71f2aa05a807fec04c3bd092e8cbebd0c2349e0dc4950b329a88811b00151 WHIRLPOOL 59dc5f3457dc2a0c0c83a0128063da00d127cee13487b112064368de7d98438b7ffeb1dfe362080eca6a82af4834f3e27c6bd887e51b5d59c728ae124b26114d +DIST gdata-provider-1.0.3.tar.xz 55860 SHA256 2a6b8c1bed9c32dbb91bceadaf36986bffab4379ebf8ab1af83f9321b38f9cdd SHA512 d1a99e179f4bc57c98beef80c27c5f774dffdd177a0ee0adf27441aaea27f96d61e723e592f9fa813b943acb34f572d5769622e2dd45c5befec762e0cbe013fb WHIRLPOOL 2d896ae041ec8e6bd6f9474bf01ccc43925d89254cd6c719dfb70e1a5677f21fcc9536c2595f6b1b5823607d69248512d6dc9f5a1f208bd2e25a59f30a0c8c3f 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 @@ -120,58 +121,58 @@ DIST thunderbird-24.8.0-zh-CN.xpi 449181 SHA256 d0a1c7a75d9fdcedfd1fdd760a1258ed DIST thunderbird-24.8.0-zh-TW.xpi 450001 SHA256 342d949817659c5e4b405d2bc0cb5cf237e1d0657d77823f6a6492364f7da552 SHA512 f3990295d9ba1e6c70648e2981a1f37b98704875e742d5bd7bd637fe62125f0b763e738881bd3611231749f169f7ca97d581baed319a0f8f4b471116ce088d0a WHIRLPOOL b12c30d3903e6e54ccc0aa51f2d558f7a9ed2a50ea3e632fbf064461925275d2677c1c332e667ba2c89a05dc8966a214780481b4f8ceb534840049ef2129c8b4 DIST thunderbird-24.8.0.source.tar.bz2 140364864 SHA256 5b9428c21828b439698e00beb92c71c5a1574c42b92a6fe563d99e3b52ed6a91 SHA512 2848af60efe78b03b61e9361e9044237928b3b9e5bcfbbd9ef97dcafcb7499aa5bd8247cde10846d947e182be46f78c746c58fb783da0b2679a44b0fa0ab58f5 WHIRLPOOL 8c613030d6fe3dc75fbfaeaa71f8e4ffe36a40701d1254a1648a0bc64ad166a900128f34672836a83337d0b2677f4cadf7e7bb0ca656addc189cc5945c8c3bb8 DIST thunderbird-31.0-patches-0.1.tar.xz 948 SHA256 eec36d5cd4c384d4787ca034b2abd4aaa41e831fbb6988169f603703af2083a3 SHA512 4a20f23bcc97c9b00fa461f7b0e3b7660ec39a99c16154a0d35d6048d72db2b8bdb1c82c81cdd75047ab4a11326173313b4a85733b8697d2febeae968a85b38d WHIRLPOOL 921e21cc3451f0db19d1f891952b53f75da08ad9e2da6309cf3d29c1facc05b83c618b6ad0c01abb121ff29b7a65af140a7021d4c584827b81a4977c879f6df8 -DIST thunderbird-31.2.0-ar.xpi 472812 SHA256 de2222b5edbe334c323086d2f4742b3d89abf53ea9d04e7b145b56e06203490a SHA512 06fcd45adb8dc26d0610fb493f6f834a30f88514ec2b0cdfadf0238ba66e23b8129df9597e64b946edea1b9cc000524865033319a76392d379a6695fc54fe857 WHIRLPOOL 14aaefe61e3697373458d11935a5e609b2c5bfc514127c1785b6a553a7c5c7b81acd58ec8356d183dac1d1248fa087f7bb397236115692773adc43b01c0244d3 -DIST thunderbird-31.2.0-ast.xpi 393049 SHA256 5d8a3d7cf8a8777595d9427f9ef9fa50af9e42d3c02fb0eaf23bc98ee5fc673d SHA512 8f0bcc6e5e861e22edd0f927c73a7b6b62f83a12fe8b4c81a14de1fb22a801ef5c26112d030acc85d8d182a68e9d1ff787b2f0846a77da957dba0b4eb5fbbd70 WHIRLPOOL 7f1a843bd5aa0367d38268f76a343c2645c29013f897e587f27956306f8814f5e11cd03304e959bc3ed68daee550aace8725681edb4b7caa0ea00bddb530392d -DIST thunderbird-31.2.0-be.xpi 427488 SHA256 f8228331079c95d98aff60c49039b41bc494c10074b19d92850d0abc88b94da2 SHA512 25dbbe84be8434497017fdbd41f7305579972832480ba997dbec143188eaaaff27af6a05fa9c7cf7441b029ae8ee394c8153c5791268ed599e65a1713268b2f5 WHIRLPOOL bc61c66104879ce9c547d98dd5ffd6ada716ed70a2bc3759394d9f55681e9e930b6e8cce9b6b10692cf522f139b2b9534ab4c5c0f60ecceb290fb5bb300cca29 -DIST thunderbird-31.2.0-bg.xpi 493734 SHA256 4c7ec26c111e810476f8308a2b65c1fd754c9a970eec04440a186cab9487dd5b SHA512 48297cfd9da4a32eb9722116a6df83ddb6ee3ef138dff722e2d202ad2b331b02508b60bd5ce4512899ae7bef49382765105f225847d808c5d101a43a634a1864 WHIRLPOOL cef1d70485aaf13b7936a4fb7c57912b7186a742bc2cb14d8f76f8b6c831e48beb7f0c20036e43c9cf6ca2c152efb8f48d87bf9036d4c25a52e0e9be0ad8c699 -DIST thunderbird-31.2.0-bn-BD.xpi 555613 SHA256 41cd06883895d4813f140aeb2c9592ded5c1971e035373a79ff9484dc731e8de SHA512 fbc8d93fad714a00728bea82c0309fe993fca96bae0fc14979926ac28d3410b766d7d78b0a8415ef8f680e40f9ee876b442a906c4c6b32fc26449e22be82eb03 WHIRLPOOL c3d18483826bb21f94e7af2a9c3336281c2f5cb51bec169f8226d6deab54beca7d89b1d3783037ffb8b380bcac68967babf9121b9fd52bb77fac407ef150bdc7 -DIST thunderbird-31.2.0-br.xpi 441444 SHA256 a4fbe64d4b4e2c4a0c92a1679459b774b6f19838203661c97bfdd4bd132e0918 SHA512 dd4d3d1d6fe4a91d5f4cd6c6adaf73f124085b95e384e6d90607577a94684c15427622af9c3b2369b51f8129635bbf3b0f608b0fdaae0711ec3e515044d7ebff WHIRLPOOL e089bac1beba03594ba213cfa1b5fc6a8d2e080dfc80d18117e7b1e1a603f7f0af199bf151b4946b7fdefd0aa253c95e95e71b2a3655022a675313ae5596a31f -DIST thunderbird-31.2.0-ca.xpi 441713 SHA256 ff37b69e48d8fe429a981bce805cf6470f21ccfb9718762aa49fbe16246e0e6a SHA512 7b7745d6c3d5490df76c738f427e0be8d169f736b63ac7070f59b0c1bfe6ef3e5aef2e9671184d0f3a678d64514bd9aacd48ba2965ebf5d2c59bfdfae90c3be9 WHIRLPOOL 340f9ebdf85d6d891a1f5cf902928910d8997de62085c7c46b529f765746860f3fd2b92308f1713c0fd30211720040595ec07be4fed6084d68e6c5e916d89610 -DIST thunderbird-31.2.0-cs.xpi 444701 SHA256 11c4d4d9aa51b4db454ea0aa3164d62ed17c6b108be18b28bf2eacf626546737 SHA512 7e0521e6505cf9a1dff3a77e148497fcedde36a89ba6aa15c0541576a1fd62f8572d89c76a4c5dfbed582ae0bc57d9d91d4b101754adfc0e4de94691920e485b WHIRLPOOL bc5fcac529cce63bf8aa8208617a7603346429d3ba9a5efdd6e32187eb44bd97a0ef64ab9070e7aff556ae0a948f4e23c9869c1d3fc8b08b473d15c6d8b93955 -DIST thunderbird-31.2.0-da.xpi 422051 SHA256 c11a949b9e20375542b72dfd631091db3ae29040cf32f15cf661c141b72d9503 SHA512 49405ff62850bb8ef4f5a2223de725480678724c197c0bd1cf471d9d878a6e6cc08f2e542452712c36dd15a8ccc9d54888b3589cc9eb0994b758600e38df921a WHIRLPOOL 93ae01f4aacc538dfee2f0b0572ef8ffecf129075eaad5a0f7547bedba7e79c0be5a4068148d43819ac7e17a6ebba64bdabfbea1fe045435f8867fb4c176864e -DIST thunderbird-31.2.0-de.xpi 424665 SHA256 c5a529579a4884a9efd7dade99fda51fb17f1918e68439719c4d4cb9f303d908 SHA512 a812682b773926a9af80c121c494427bd948e59aa55befd6ff9c2caa6c521d1f80866ed9320d7e559d5f1493304b8c266516c3175322cd038b21b59cece1cbb4 WHIRLPOOL 39e5a5e42769a693b86145a8b6a97dc6bc871df77806c679d114d101a975786347f2d854a051dda4d19264b2b70f30338c11850fd4f9ece2a9e21abdf8c4259e -DIST thunderbird-31.2.0-el.xpi 484855 SHA256 3a60bd9b6d3806794ae7a45f5ed51ddaed0cc7d3d4eefb32e1a048e92e3bd617 SHA512 a545518d2944c9493de5d83160d126677a49fbb9af3d2d34a3e81a92a60353402515284b0cb9394df3a4a07c5ca451dced27ca314d28a9b526210e9d4c1b900f WHIRLPOOL 38a4a794bc427c08cc837ff9773833bcb1cd80293b16ac2c85e93713a5e4f91e001d44c2dff0dab497b373acfc045a3e0e63fd393b35ccbfd3e9da51831a803a -DIST thunderbird-31.2.0-en-GB.xpi 412515 SHA256 2d96c8962746fe12c42d6d161d0993c317344b6ce236689a33554f432832922b SHA512 f998d5ef27999be9ac410e36ef009524a287838bacbdc1cdee19d5e408cc5860aa61ab16d6fcf6d3536c018d9ced7fdd71446a530dca5c5983c5a82643f5adea WHIRLPOOL 3985a3f8fa5bd6dd9ed449f9430b9ccab94028be2c83547d7a789f2d2bf33ccca4e08bd34f7a01fb1525ba9e3ecc335acdad29a8d3e8f9dee40d37f781d3daf0 -DIST thunderbird-31.2.0-es-AR.xpi 438531 SHA256 24b5ce7d75676056103ae24c589b19e707c94ad1e79dc5cb8d9aa85abeef40a2 SHA512 e776cbd54d1f0329f24cdc294e4e994d5141699a404394998db925027d8807dc14629d957ae99854b469a3aeb5d072e6d1ec00b9ee0f5140f0b7d143a4da34c1 WHIRLPOOL 3c58f4ba83b06d63229883ea8a895c78c764d5623c18ebdd038f470df7f3627e07c3ec7f65c6594d88a925af06e2220c639d9e953c764a34cc2d8408e6dfff05 -DIST thunderbird-31.2.0-es-ES.xpi 374979 SHA256 2d879a455caac1fb21cf7f4cbedd0a685e8a13c4048d9182c0027ee7b947f398 SHA512 e9ebb0bb53ef21729eaf91543b3196903d11f4d6e33f68d3ca98def48a379978e580704f3bcf4e1d1510c2840ae34f3e9cce7ccc15cc1bb7c1efc1c06f389b98 WHIRLPOOL 1c09fe4a4fa690c4aee7de2f70b14478ccf26023f0dc210603dbc54a2c7a9f6e7961361261d45e48d5e68c9b12d1bb1dd3042b4fd1a0376cd9393c0a8f79e4f1 -DIST thunderbird-31.2.0-et.xpi 434364 SHA256 1f7a2196700782542290c7c28d0da7c6f9e958f8ff9c2e00318c4bfe4fa26f97 SHA512 3e614884481b1b1ed82467073cbe8741d002a40fae44a6986edc2f51cc08a52bab0f5829659bb69ebba649facefbb839dd06ec6af1a580ec7fb9b427fa89aae5 WHIRLPOOL fcb28038d634486ae0791da519279b1614b2aead647abd21cee7a89dd13a78b74670fc8e56b360b85dbe39dcc3e9ab9caa77916102f00b6d5c26b25172f56602 -DIST thunderbird-31.2.0-eu.xpi 431448 SHA256 006bc0dad91e8ed9d5b1b0b812171a147bc34fb5b8159f5b990a14b34e426941 SHA512 547d99867387ca1c8f99b2e9db95eb8ebc6670dbebf8d292a93519486d1f42821d383af76a25c6469befa63344fb1bab4e76d0e0983ff0cbc89b7db068423835 WHIRLPOOL 4f82cf364febb8565d9b7e103af36eb9221cff490ba2a944c8214107136d85d1eee11bd3f504a2554adb4024085067929ec571740799fc2e06a397c3519049c6 -DIST thunderbird-31.2.0-fi.xpi 435632 SHA256 0ee12f069f1ca5e36873b5ed7ddf42539358dbee321dd2c60c9d86c0b099ad87 SHA512 952e314be89499523a8e435cb9ac92a925f0854da5541564a7c04c232bedf290724a86a67725f54f7390f215a8a0bbd8f16e3c1655c0cad2572938adc854f575 WHIRLPOOL 9550fc4cd37cfde9caa83eb466782864aad676f834ef2cec0f91ddf4b11d2595fbcd5f5a3494313c80ba447bec34a226c69eb131318d89f51835b16aa8567607 -DIST thunderbird-31.2.0-fr.xpi 444144 SHA256 db6cc05b0c2ba94130cf065e4ee9c0440c5583bed557e46453a1cbc0df3c2cb4 SHA512 8d90f657e122e5c85d7f4308be14a2537c80cdb41aed4090225f15e54c9bc38c5d16b2a4a07b32be2b75714868d4a1eb0f272a14226b7c0a5a37d5080757d45c WHIRLPOOL 9b0e5bc6d1ad15138aab474e92d5d2d64ba9ebb98165d2a96902b18559b81a72d7ab971fb57a528b25a1c66d4db467199f27b09d96e87b46cd388629fb52009c -DIST thunderbird-31.2.0-fy-NL.xpi 438545 SHA256 041ade3e98acdcb4ef5589aea49c9c8cd49730fd117d7fc0f45c4a24db9235d9 SHA512 9b228c15b75dffbd04ee7de0c7dfee4b10df0f07361ed3e8343a1ae36fc8cb446751cb027c45cd9f6d39b88b7f54f1282540bbde4f9a938af87cc99640b7baff WHIRLPOOL 0bef3368d4e1d423e6a6682a91462d86652f74daa5e289527036bde93da3ef4365a228d8d5f65a60569998e9f634aaee4b5859333717a0e56af5acf36f781ac3 -DIST thunderbird-31.2.0-ga-IE.xpi 449362 SHA256 f25ca1b71b9ab326a08a74492de3bf7ab276751e79ac3bba97e017b6d63b35a0 SHA512 15c3d62234ed65e14938ce4cebeae02a80fcb4e34e21c4c79e10c0aeff620b4852aa5c566a9d77e1f507a57de5c7dff41da7f95e6a614c212202ffa44ba82ac4 WHIRLPOOL 2f0ab61d96d704d053e25cf0054806c436f5a59207275c41fa958e64f70b45b595b3c5268a32171006bfe560469d6da6258198a843f65f04fa2e41d2a34ccae0 -DIST thunderbird-31.2.0-gd.xpi 453171 SHA256 f520c4ffff9903ae8277f59c90e3d0a8f7c3dbdfcf08f7a09eed5e52be28ab75 SHA512 11f0c7e0e4e75854f298450e5b52d8565900156d0e66f3c69a31c500efb79dcebec8662b6e3cd348ef8bedb013eebdbd91700efa237b0a6d54b2bca57883dee0 WHIRLPOOL d067939f96b494c768b4bdb9f172799390ae6be4b4abff4d0e3f555a134856ec4ac1bb736c087cdd0609a06d84ec5ce9673b157ee08498f4eb75b0be5ff7bd30 -DIST thunderbird-31.2.0-gl.xpi 446788 SHA256 49e151a0e9fb797534095177a36c8323f4b21af7c3b0cd119cddb5c8c3991a38 SHA512 aeb204aa52ad9a60c59c3706fdf2b237c35405a283b3cd0a1f22a7c4461087457c3eb644108b5cf3527a5d28511621f10f94f533b7348f4f21bf0be351cc2a18 WHIRLPOOL 93f4e23be1397fe1f988e8f477aca869f5d7f3ae4ef521fc1cb2b2a543378e46b1b41b18d2cee95867d702393eb124371e25bc1504ef20e8529928495c128fdd -DIST thunderbird-31.2.0-he.xpi 476111 SHA256 db3ec6a406074229b5d470147ed18c195d1c83ff002c9c6692e5a974fce68109 SHA512 4f1b287a303dac3933e925b9e22c5c7899cd7a863350dbb6235d193ad41871e5cea283b86f1897443815ee153cc0bd4e9f1d93d2f51812f2f8fe4422e58cc22a WHIRLPOOL 9235fed2667464fb1ae93ce0e213b455292a8714f025106f8416062b756fd01c355b6ecc47837a00db661709aa4900a9436c566c24d78bd05df41edb9a94b7f8 -DIST thunderbird-31.2.0-hr.xpi 436980 SHA256 a79194cb6a188515b02591bb4d10aab2f0a4f51ad7d9de880e5f97b0d824b6bb SHA512 a681fdf0271eb5a32d643c4c6590b4236b645a496f9cd0fb5fe9d62f5deff4f28cbdabdadb47f5ef6aec0dddd43eac4f0046e559ee58aaa7428f5fbb8b54babb WHIRLPOOL 0c732157684fa20dfb1ab4b2b0c321040e831f4925cd37878af62f2906c20b6a13c721359d01498f0e947a10ed9e87d014a8b8592dd24db495b1c87c8541e3dc -DIST thunderbird-31.2.0-hu.xpi 454542 SHA256 57ee1d724aed1a7afc67fcc58905f74c2d5694602ccc54218266a608611e90b8 SHA512 c2a30c689f556b8354416f3b38ca9cc7080188f77ad478cf0698b2ac6f25830d79ad75a8814f56712b1f03b77af3ebe4a9696bc7c67ad77ba9941388e475e76f WHIRLPOOL c4ce33a5eb38b326edb0a3648befb54d92e1db5917c67b7498d773178e6217a551dbec0e349f44172a813480c6dd4f3db6a340014faa7d6e42f0a843631d8424 -DIST thunderbird-31.2.0-hy-AM.xpi 492765 SHA256 2626af0ff4cd8023c599abb158a5f61e4e507112f1c7ccf470bef16896a3224c SHA512 756891f12e1627cfb13ecdf6dcdfa71877096eb23658f7b80abff232823634c4e2565f9105d5e78dae58468842539c74a3c2ad1e3f37b267be77e7651af6cf38 WHIRLPOOL 129277dbd547ca29644135fed1ec93baf5dc742139b7fbc27139d85d3e290063c3d6c0f404ae8a323b1ae8b3da9564d6a6f9f892572eb6203ba526f6c491abed -DIST thunderbird-31.2.0-id.xpi 475876 SHA256 a053c4935b4088c8fbb0850a73b4177ae854462f8ad37d130581879969fad498 SHA512 37a340245585389c5032568e911429694c4074f13700c094a826cfa27f7d983ce067b1d04c35ec30ff42ef7549f5cd751ca9423472a3fc889dc767c58d2d227b WHIRLPOOL a2378c4313d9442768dceea9facab815c37e4e414f38c26beee725998065c402088f50a1496856a334ec3114c96adefae2dd063836e39d4863b163487b27c3d3 -DIST thunderbird-31.2.0-is.xpi 437959 SHA256 63a39a88a75fabc271e09f8a8bed08388a1c3aa1fbb6b8a3e2946f7ba3ba008d SHA512 d53d0a1a6bcd2898153895383f4d9592a988567f7b10d7edbbfaf8c72d1a935f0e393442a2fc77795fedf7f26e7f6bd26ca4608a3288052ed4636f70fa4ccd29 WHIRLPOOL 91007cb7b981af534b01b34f5a491b15dfc1146e1d0eca1792a0930e13e70b3eafb2db3eebe67ed7760e6cd4440aeeaff5d94b57b937abe13474c0b930483fac -DIST thunderbird-31.2.0-it.xpi 368001 SHA256 b7a9c9454d038bda5138bbf73c30af650d79aa5de017c3d4eefd039cbfa6ca27 SHA512 87ba70e5e7ec448406c95ef4f2b60c0e7892163d73fda494f3b56d35444109a20073b305b78cc13241b37e4d7706e5ee11e1c83080f1b1757f18648d634b26ba WHIRLPOOL 1cc021a778561e50fa0cc6b1faf35fff66491e3c898a7372feebd0b12945b4dcfc681189ca579e86201b9b540c0bb663cc0c17fa5e8fa546841da29ff6b10621 -DIST thunderbird-31.2.0-ja.xpi 489267 SHA256 128c6413771d621a80840f26d9248f52ca6d16456e032f2f754058dca233eab3 SHA512 15685046da8721d951bdd70799a2135417a32d012140c37ad2ea643c1d41917a3e830cde2e7bfe9b151fd8602df335afd3d1685a9abde5c33e2893aededb4a77 WHIRLPOOL dbee507153f31f8134bc0878c7d8e982008d8de1d1f1e644fbc59389a97047a643d4fc8b5708c05de4750313456f8ba541e30ade396f9d277ee15f42b5a5db2b -DIST thunderbird-31.2.0-ko.xpi 448920 SHA256 949d6bbc2c35c4fa2751a4efdd21d253f60c30e7ff975fd4b5806d89d1737a3c SHA512 7676e2833b5d31f53b6d56689964f5fe69f352b682b2795b3c5481c862e577f0e26e4056b99d72e703f8dfc7c2e25255d364d4ba0de6c98d8da27ca40dbe85a6 WHIRLPOOL 824338d35d203b8702f7bb44d5b693b157134e9886890210945c9db6c6d9a8cd9f2f1708fdeea7f8d404cfeba9b34404c15c81d2b8181c472147cc59c9888231 -DIST thunderbird-31.2.0-lt.xpi 456351 SHA256 c6eb3433657dab7ebb01cbb86d0024aa49598a4fca61f500ed9e44c4e74fdc95 SHA512 3ff91f8dd482643e0c7cbc305ff9c26911f518e5fcdd30e8a4f72a2e9219548ed202f82c2733009a6e417484255faade89e566b52175392da6e2e48f7ad92c9a WHIRLPOOL 9dcc2bf403305c8b960d66a95f94314b5d32fdd5a96a3104930b4d27935e87d1f58ec6d497e2d62d32020a3aa41f57a9dae68a8bbead4970dca02583081344c9 -DIST thunderbird-31.2.0-nb-NO.xpi 430941 SHA256 2779fff656aaebaa852aa79c0685a801159a5d5b296bc239a871e0ca3b77558f SHA512 0101c599ecc51665390affb1d4bd0660cd9b1f201a6df47aab940278b5099a4557bfc9fd0d6a6e5d4dfc32c990f8695910d3733c348056c8985fcd6f453101d8 WHIRLPOOL 0c5bb3b2857d1f1fbc754f74dad76ff0f46b5129348f03542ec3f7bbbeacee92a0ee9addfb8e5c1df8f7d67db5ec3e979f0bbf04d64774534a5035b85f1a2ec7 -DIST thunderbird-31.2.0-nl.xpi 431888 SHA256 21da7b7403d3c3746ff560a541dc87fdce9537fd14bfaee3904e936c426d4400 SHA512 5742819bf57efbcecfb0fc58041035639365584533289e2dc1d2e29f1ad5ce130085fa0d49c76d96da85eccb963c288620bc30a548bd49abac6bd42bd1b8aad2 WHIRLPOOL 1c76027fb8b0a5e258468fec5d9fc49a5e6e2cb06c6a58e8104485758a444a628f92b8394c61e67d08959a9717daf4c2d8db910070cf4a7acd7a9d42fa4fda5e -DIST thunderbird-31.2.0-nn-NO.xpi 433198 SHA256 c79700f36907cde8d2a5788b121a7d0118f8b2471c72eda8f6aaf41f6049293b SHA512 360b2e3c580aeb7d2896508d39a70bffef7fd45220fca6acb2c1f427c6609272feef0720ab1e3d851fd56126d25d3be8c916dcd612279d10db9565d415d02412 WHIRLPOOL 0b85262b9ee9e99fbf9313bb1f854910e09b2e25faac14c34b8abb12ac243c1388bb8f299f28fecf4c1f1a7004898e886947310a53f67af5340ab0fc8ddfea81 -DIST thunderbird-31.2.0-pa-IN.xpi 525323 SHA256 899c8f1dc900280a44869bd5c4be649f30186c361b717a9e996d269c744fce7e SHA512 1180ebadbfc874b0b5cbeebc436bd583ac14019ce4b68f3bd1d9a9c81838d7021f97897ec7847414622d2de27bf3258ba1ffe9a622f937eb9598faf208eab160 WHIRLPOOL 8a01ea6cb0c1b5694f8c9a2285c7f2b5ffa75e5b41ec38aed503139a4010b9f123024f8591b2db47106e2952993e00240379cde582840bafa6346994556ff3ae -DIST thunderbird-31.2.0-pl.xpi 410872 SHA256 489f30d45340cc7fdfc3a84d7459f464404ad5abd4cc72d4091c1e1c167f2533 SHA512 d69dcfb54c6c3a1296f66e02c77a8270023ab6533b70349ede2aea323d471795c11d34195df80427096d84117d023a8379cef4bd891772e523caff9ecd135079 WHIRLPOOL ce4649a3b44686b8b9ebc20793d8e8930c66df81b67bbeeecc95ef00fc3a24ba67e1ebe86c0c21895b08e0e66c848e88905d8ff087ac48451e2040e7af2d2614 -DIST thunderbird-31.2.0-pt-BR.xpi 450477 SHA256 2459b15a8277d9c636f7380201f9636a98f7be66e695567bb545af21bed3f581 SHA512 4feae2fb772f97e0928b58e52e05bd9e3f03190ab935053ee28cebc686d9275d060734f7a2f4a73e9e6420c302a478f0eb2ab7cc16cdef094befcfca6a724dae WHIRLPOOL 9f79e9c2abc1799cc30c2995ce98773085dacc94aa2fd31406855a9d68aebe720d7ef7a5411bd4df4634ec7b09fab95991e9e4a8be853c48a81643ec6f8c1658 -DIST thunderbird-31.2.0-pt-PT.xpi 439604 SHA256 f44efe77338e3bac23eb4e266a22e7e21c977db0b1740e2e2bb8978cb2724d75 SHA512 38d276bdf9eb10b3d066b96e31bb16eb06bac0fde00c88f9c0895242ffdf6fe3c9d74d969392e3f5ef8ae5a91350268dafc9a90c817ceb209623c31191de40f2 WHIRLPOOL 60e09033f31b5c26916500432eae44ff16c8dd3311b733cbc6c156e8f98a73b99f9d4de20aee63609594860d9ad353f36ce3c7b81f61baef924eea210535e11f -DIST thunderbird-31.2.0-rm.xpi 439185 SHA256 b0f7e929ebe3e1c88b304e7df9cc3f5fc185effe1666bf5bebaab5874d1706d7 SHA512 28c003f7e1cc91c6a1ab63db10f89ad39e86f28b0045b88cf020d00b8d875900e5c680dea55fc952316c510bf5d113e5be2153f2017d3e6babab8f19675d98cc WHIRLPOOL 53135444897bd0395696964b9cc166c6aa1447529051721015b0adc96d7757c211b86b442a9e02351781b668cff4038e057819c5bdc8b3653d035f5b81751aa9 -DIST thunderbird-31.2.0-ro.xpi 479747 SHA256 4c60b7a9233ed19b79f38f2c1acdd3c3c421e83866986720d36bc2dd5852c5ab SHA512 4003aa01fe6fc2e107279eff70ffb22e2768e2041233d7c4287f6421c4dc3f91173f743cd345a8acc40e4dbfea241a6704797acc1629cc4b632f97badd02675b WHIRLPOOL fefe1df40dc84cc8aa83555bec403142daca67991bf6460a4586da7f663505ed51081868db236194e49864331ffa02cbb8d9ea378b968af79adc8d1d561cf566 -DIST thunderbird-31.2.0-ru.xpi 436156 SHA256 8098a2085dc282b70d5f2ec44a51676086d7e930c45056b8be8225529c0a93bd SHA512 19fa7bc1b4e1ea102a3bb36357b50332ac66fc08ab53233b966c1b9d694e6ecb1c2116876b0dde0d0884adf4ee939eceba6210e0c7a69f59f476f39731d2c7a1 WHIRLPOOL 9f0b8a27d0d603aa0af5b8b918867be278a30c6f71dc9722bcc9a9814280199923e61c4c5272d969d7616d0d4b420bf763fc1807bbf458f289824151051c9ac8 -DIST thunderbird-31.2.0-si.xpi 528812 SHA256 07a599cddff30ebdb245b03cf7fb3f10fd7dab77c7d5f72043a348147d9561b1 SHA512 3a64b40efe3b588208f986b301818fca0c93519550b9f2196ac9bb9d71235d675ff9ad14738d2c330173104034d63953ac45b47d7c1a277fa021abc8721e3377 WHIRLPOOL 699bda47d6edf1cf03c0cf1c456d3d1067169a32dedfbe96a2071d0cc87b0176ddc60112e465148440ad3dd2b071b0eb9467948bf8d3d22906e56ec56c600136 -DIST thunderbird-31.2.0-sk.xpi 452995 SHA256 c2a10018d3a697735368112b957f84bfb1033567a04897e744e1a4d25cb91e1b SHA512 041cf252de6a79f21d44837db904cae44e21b6f59575ff05a5cfd5f6f14257430f14a47b3b6d77751eba707a76227bf54a0856b1ae5eac8bec958380fdf89b73 WHIRLPOOL 38695b2efe08146e498723b848c39b4c871976334f0894531f9c8301245e134c5fdb72c1f4182961b5cb83ae8e0e33736f54a95ddc143cde4a7f454aaa8f3367 -DIST thunderbird-31.2.0-sl.xpi 433874 SHA256 03391be8d12577f9e733e137818fdda4f4f28724ddbd4d9548e4ad26da94296a SHA512 8b13ac555ca478ff853ff91df5adce68b5ca82732581cc79148a0b33d5a5ff555dca061a965f9ffc0768cdcd462cb550c338262f04ccbf910135411d7408dccc WHIRLPOOL 78ac19cbd4a4aa52ac8b5bb2da258b151c4c4e15d58c8244fd69a1a6bbfa21900d1c32601d402909051ecd2e69d8f3c5695af9e6421baae0ff2eed47b5ef4cfa -DIST thunderbird-31.2.0-sq.xpi 454694 SHA256 be5ba55ce94531b3dc84056e0433f78d341fe3b4f8ba5c68f67795aca44c8490 SHA512 fff09924e75d1367feb7e1de147ff8b5d1dafaf33d1d604de7003cd75fc7abbdb29aa82edf99358fc6fd44bab06bcc99d20db32d5b5d8c39368339843c0d8556 WHIRLPOOL 11e8ebbc621bc6b0c6bb578a42f1f3afa3443b68a6377491664f957cbd053258888a17fe94535193ef759898706483b962f96f36da2d3e9cd3aaa15597ed6361 -DIST thunderbird-31.2.0-sr.xpi 537335 SHA256 e8f23cffa3b76f867dd0209f1f65a2b55d3f80245dbba9946b0f1993c1759791 SHA512 b28e6ee4b2c05b2d9a21c127a5bebc42598709eccec64de9064f050a9b425c4c469a81a248347a361be44da3b849452bc6f85ecd1405c1f576fd93b3d799bbd4 WHIRLPOOL 43e2874640171ab74ef63b814bbb3304db531bc69b3541caac180e910aa11353d0f3f6d00f6306b293770b9e48b1043901371edcf78a8e01d10eab13fe49b728 -DIST thunderbird-31.2.0-sv-SE.xpi 436105 SHA256 1760e8023cb00f33111279f25b60604613b682385aa735c2286fdd3d909853e2 SHA512 a96bd2228c1c5afdf57e5bbd0fffb2c76a16db61b79384a19d55b7f30d486c116c2545a9900388729c59b3a4288b52bd74c0f88584dc42cae637e8b1f63e2f5b WHIRLPOOL d9b312e5ebade840b8b27b2bf4099430fe6ea7343993fdab2abb512c4ac4251087ab426a13a2487a4eef40bfb55ac2f4680aa5796c83baf2c2fc4ffd0e433d55 -DIST thunderbird-31.2.0-ta-LK.xpi 553508 SHA256 1fe61ab35f687cd2389296783b7896b191bcc3ce02f7229404e1adc46360fe0e SHA512 93f8dd05749c726da215c9e6996bb13626d23563a7a3315a084e2448cc73dedf6728853c9d02f8e5b1798db391b47e350abb185da4c5b4d0a5072412db966b76 WHIRLPOOL 595118cff54dfe1b91ca58ee33dcd456adad6421a6e15863e898727fff7fd4506b8360ca43ba57c37731385c95a195f07a1d83c019ae2db0ddb7080fb3acfcfb -DIST thunderbird-31.2.0-tr.xpi 457360 SHA256 a44cfd98890ab255a21b54991de71eca5f06a17e5cf825c01f8b7874ff2b2edd SHA512 f71733c58fd9213803b774f4af16dbafdab04df01d8200eb749bbd04903afa95ffc3df8f6e7c00bc0d9729d838e39ba0994c8f5a49ee86a449c02e2293c582f7 WHIRLPOOL 71206b6e6543eab04bb9710e74134eea6391fc3defe71143207ca2f9947a734e971262ebca566a2a0f6f7cd56dcf6f1545382c1e27ef768990a41f82cf8b6c98 -DIST thunderbird-31.2.0-uk.xpi 499656 SHA256 7942f621505ce2270dbac9aecded2be7457aedf8ae345ffa776dfa5f3e524cb6 SHA512 ce2ed3214c248ad093c5b9aa3637cc591fd155802332f43a0ecfdf4a6212a12de1c65dea6cae98a2c29610e9546601c79ae8c2b6e1243259c269a47057c965e4 WHIRLPOOL 8e29dd9d1b6271162e276bef0d2b6e932d9907403670b3f254d5e65bfd032e6b1032baeadb560f8742fa06b926e1e7e5fd0469a3b2157a8dd25fc07636094a4e -DIST thunderbird-31.2.0-vi.xpi 513835 SHA256 132981f1bdcf48ffb630965052713425d93fed862d0a87e9878c2196f64fd684 SHA512 3fdf67d3360dbf7e7b6693eb8a330fbdc03a4136e5e237cbf622e098aa83532e3a978661f55000f28e1fda0b3e8fa64b6415fc664cb0242b1da49b17a0352da7 WHIRLPOOL c53c227871d2e9bd20199f056442921cda6f651b7f17fb8ccd4e5d6d57c259e7860dcfab01e0823af5bf4bf9de8a5515c47ed2896fcd4ecc9151f3c2a33e98d8 -DIST thunderbird-31.2.0-zh-CN.xpi 462668 SHA256 d6382bf21c901de5301a2ce4f2aaba839ba4ea3171bb2b965fca6876703c79cf SHA512 841953778c2a96e830677dddcfdd289339f13dbe455c174480d36e4988858b8e7166804b7e589b0cfc72ee156619229573c4bdc1e98f2e65c9ec012c90002ff0 WHIRLPOOL b5a25097a677e69c2581de06217533ac9e5bbdbb91e48352462e26acc961b96125d458b81fa5da78fe38a58baddb69ed1dd995d467693b6a2876b28777040bcd -DIST thunderbird-31.2.0-zh-TW.xpi 463408 SHA256 7704b9a4ed6f20c94b1390349614e18af643bf6d58b9cef38664afcc7048346f SHA512 3ac8fa709b25877045f6e97c879b34671656ec4e19190a50356fc0db91b8c1e8495540865959f1435645d4083723a0a189bea1d4b21c9d51e7ae998d6d5fd2fb WHIRLPOOL fd8e0a5f5e89b96200176ccd60a202bb5fc857a313e6841fc2e32fc14a61f68492c9c81e845e62142f983ed795b7b98091d608c352be36930a698bdb6e1db3cc -DIST thunderbird-31.2.0.source.tar.bz2 171047372 SHA256 48130bbd9102303167aa832ea80970201777ee65b91fbab515332527850749b4 SHA512 b7a63bfbf574b968fd09c33cd56472d3d5c1cf4671a5c39f484aba48927696d6de659701bf162beeee7dd0c86be4c72614f42b00bbb4c380393bfc40d8c19773 WHIRLPOOL 9f7917cb85bd502fa606db7cb40350f01b13f8983aaec53752129e1acf533ea9aac8510bfb0f1050c124646a1436bdfb2f4406bb6e47ede6d2ac2c56547a91df +DIST thunderbird-31.3.0-ar.xpi 472812 SHA256 961c958edcb33301c6459c12a2589333c6e993cdd93be4511ecaf9ea575f8bf3 SHA512 c92450f4cd11179b72cb3c797816fa56dc70dc858ae4e8c5ce9e8e96802f82d725dd6d4f9de2a9a05eb5e222e98123e4d545befe124ec85854da4160c644f66c WHIRLPOOL 82df04fe1defa6a06d75250d165a7fff69d2de0e5f86b094ac9d44b9e1689ae845cad57ad99dcff78df7f709b07833ddac85330cbbf0191ed6463afdd6680c1a +DIST thunderbird-31.3.0-ast.xpi 393049 SHA256 1582a7be9ac87115d5866ca72559018b7ce93ef6ffc3accc6c347d38dbb22bc4 SHA512 d392fbeeb0e75839b05ac548bec31c887793b327f820e477ba2f47d537775ab73291ee96e9eab9d688e6ab9fb039bfc80d5b0b56778c961cb8163a37b2f7a387 WHIRLPOOL dfb118c7e7370917cf306538b64ee0abb37f33cb73d8c72e465e594eb35ae97c684894aedcee904e9192bf30663df66282ac16379303612348882d9f9878f13d +DIST thunderbird-31.3.0-be.xpi 427488 SHA256 e2c9c3d0ab8ce123d388aabe8b075805c95f4733dca1ae9eff7464eb23aed083 SHA512 1231c40de68865d2f303a0afa97f4742ab26e3308158032edfc76606b6cecbc8bc93277dc195ca91ed623b5edd6d8d063f6a128076e6f7231fea7f546beca8f5 WHIRLPOOL ea01a1fc73d8e5a7c1009d432f2dde0287dcc7db0a5d31cef23dae4c4b95f3b82a552d1d77e6ee0918c30db889dc80d21eb50de4ad91c5bcf5be27aa64468e5a +DIST thunderbird-31.3.0-bg.xpi 493734 SHA256 37ce4d7cc4012171b26d83a5d77f30838e9d5a4058b18c7796da3c78cf3fcec9 SHA512 2fb496e5c288c252de2002d0cb8967fbffa0be0709781ed8875fa1f2bbe822442d46c10c32b70f17197f0696a8e26596e10ad5206733046a30ef85155bf41b44 WHIRLPOOL afa6961e8570fd8f763b583ae4142a67c0d3c318958a32ddd0372c29cbb039c8851ac35e78ddb3288c6f17e59c238b0ba5eddfd9b3645fd34298ab4684fce771 +DIST thunderbird-31.3.0-bn-BD.xpi 555613 SHA256 0d8a5ae252428c229c0c949d59e206d2fc82382a7128425a0194af6459f29ab2 SHA512 b3ef0ca58ce2745cbefc3ce44ff18dc3bf512df57dda09b6d7d8c5fdaa1648f59e333552f77f7c525c18af8d1a53a1930568dbea58c13316e177ddefcc107c7c WHIRLPOOL ba78a7e5efe6dccd5d9a5ec616c27130f851e9afdd5f956898f7785a966effcddc31649976905613dff82bd6aca8c4928636dcf622a8adecafb3f762d6e6ece1 +DIST thunderbird-31.3.0-br.xpi 441444 SHA256 b9ad663e315abe792fc034e46f7cc01d690249d5f600ad860f73929d521619de SHA512 0098408aa3e8d121967c1dc5496b58808286821361ecebcbc56b52608dd5b18524b7c074859d3cc94253fc4537adfb93ad56928a7189df76788d39b9f40a0675 WHIRLPOOL 78b88fd03c2f2464234aea13fcf6b27fe62b870a3faee2c7867af834d10068fa990187087dd0b227f78965f248fb3f1a07f4d624440dd2b68a19486546aeb7e5 +DIST thunderbird-31.3.0-ca.xpi 441713 SHA256 396760bcb133041e1b52acba598941ff627bd6fd7c1632b129a545418755f845 SHA512 6f292a61bbdb5bfb3fc2b65e211caa53462d0a3a284fc25ceacd3995c76a474f2cf5bd6c738135c681f64887787d05bffc6e60f5ec58f7672a7088b23c5fc682 WHIRLPOOL b15c3e6ad251b9b0916a9b895a7907a19dd4e39c60cb1d324302546c7cb42c2081772a11e32657e0a143a0f624512f39ce369a52dd44a4bd5ed5bb7aa44f1d3e +DIST thunderbird-31.3.0-cs.xpi 444701 SHA256 8895b7c250f5f270c6e34e109b9e9b7b795d0a0855050af2c56adc89e2b9d1d1 SHA512 48fd7afa0e4a64e04320b119facd015ebdd144509a51d03b9bceddb114e47fa726dada97c212efa0fa4dd5a1da795f7be09ab3c63d44addaa8f540fe7c382bd4 WHIRLPOOL 4d729e4cfa90c2c49f28b4ab9a1442abb6dd24154d508230879523d48ddb00710095ffe388386cc6b015c4b423fd3156f186761c8607efe21a872d19eb21d5c4 +DIST thunderbird-31.3.0-da.xpi 422051 SHA256 e9a75204f486a49599d8570423365517d4df7c497150cee8d95574982a47885f SHA512 397de924a9ac1145b003219fc1d2dfeee1790f8ff8b8ead5ca75f9f6bf3d2dd906337cabacfd72504698baa381b55917a246bb4b2cf420103362a5e99c0e88e8 WHIRLPOOL 7bec34104cffc395561af7f6a7370560efaf06282e3218a7bdbd9b1e46d8f2cdaa7008afc22c60b7225cceeb4b1417aaae8d6c7f4231078fb8879960e32e91bb +DIST thunderbird-31.3.0-de.xpi 424665 SHA256 5773e8a308e6b30974e9eb3fa40b5b11d9fa9ace480686f86a5654f72c84a373 SHA512 d7135fa4646878d0453bf8a8b7db2c4c3757d68f51b3d97a2cb315a5905b203a3693ccb0461b0656c7f03ef9de0d67a042baffb8c8b1bbabea4198a9295f7442 WHIRLPOOL a847ed719ea60de6ce8e870c7521d6c72ceeb08f6740d22b66cdfdf265cd5d82e02b0b9af52bb2bb5b241433ce508aa5f13a0e7e2ff95d4aa1d8fdca336127a0 +DIST thunderbird-31.3.0-el.xpi 484855 SHA256 68b5c38d0c58283acb5f2f6b574bcc2573a47e7371f66b1e6b4c6bac3e29cd52 SHA512 d731f84a3b2aa3e48dd7956a62755c7cc902ae64d18b13a6c84847427c06fa7d3f684e8955a689aa97b1274548e9480c2f54adbd45a89934def6abaa97d7834e WHIRLPOOL 06e72124bb2dd0168de8f74ae10523daab8a32cf1d424b84e33309469b2d2cebf47fe47593551ae22ed5b167022884a1ba08fdb60d0f9de9b64a0a5cf7a8cdfd +DIST thunderbird-31.3.0-en-GB.xpi 412515 SHA256 cb9c5f83e7925181c75065a8eb2db466641219e02ffae9f38c9c5532a422d53c SHA512 90fd0396eefd65998845dc3b0104c09aa88534110cc943f3378ce3fb8a7eb443b97f4fab0552303bfdb424f84b4c4770dbcdf682be2754c99be6a27e005921ce WHIRLPOOL ed763f9d3cf358cf5ad18f5a39fd262776e645566c36fffe406c78819fdd8cc9185019c62dbcbee059cd233e76ae300a7442b3b594e00dbb0a4a0fe304a2146f +DIST thunderbird-31.3.0-es-AR.xpi 438531 SHA256 57d4d3385193bd1c3b9c479efbbc3b01c53981e1824a7373841fa13f53ac5de0 SHA512 d9a1db1acf6b330dbd2ac6af68763074b9677ddab2f50c5697016bf4e525c3d7c9e8b348717c8d1be39f01ec66398633a8db6f8ba5842a5318f7baaddf9ce842 WHIRLPOOL 0bbc3a2db7efe8be929eb551b8454f0e30a1cd64be2c2d0d1a4b1e1e2ed01ba7760bc43a1909896959caa9c286ebdf021a845a6f85bb57cf250adad4787c8400 +DIST thunderbird-31.3.0-es-ES.xpi 374979 SHA256 6d35a449cffec11afe297e8084e75ca073acaec6b12a187128eac45a7fa7abb4 SHA512 e251545fc7f8c4b2480770d9c0f9930498d2ffea67c5f6cad3c3bd18cfdeb657f5d5e2580d2ccdd369f91184323b9646961231b3c4bab14444e4b94f1210860f WHIRLPOOL 0699564b1420a3cd9069df5c6d52fbf0f3ba382b9403bdf55ff8f81ed414e819ad6ccacb4c402fa3b5db22c8021e9190a38265c04ff85db7687e3572a6c67746 +DIST thunderbird-31.3.0-et.xpi 434364 SHA256 008116d438ce76722ed9b466aa4d822b5c073ca063b4b25539d8690c92e1cfff SHA512 37c63f9b8ff2a9ac1506a941934d05180b386e4e5caeaac6233076bddb6a21209ee2928e55b45523edce32def2fd2ce2959bb605a257978ab4f29f5643288d27 WHIRLPOOL bc57eda18c49b13a9becfe8fadd9055e0d63a1f53a86671781bafa2b4298dc4fc497f32fc3850e5900a0e541202ed22b18824ccc4707205bb731d01c1cd8a0af +DIST thunderbird-31.3.0-eu.xpi 431448 SHA256 666528eb407334a4e8a6b3b00b2ccc9f3586f81bcb7ac80374823b65f9ac6742 SHA512 2f8be5901c2362f60a3cfcc8e2db0c3a82aa6cbafe2008c78f62d4d1646b9779eac63fbc10f67cd641227643897d0862ad0d52eabca887303fed572462843e4b WHIRLPOOL 9bf216041040bdc343afd0ab9949a887796ae3449d8c5233893aca3d42ff01caacbaca43fc66bc27a956e0f8ca38cc12fe3e627a5fe82f53f838aaf7e11757d6 +DIST thunderbird-31.3.0-fi.xpi 435632 SHA256 bfdcbcaaba90a65b5aa37c4feb37d6026ff1cbe915924abfe4c150f0d9c55430 SHA512 8924c0c34c669f952dc763f40155b7eed0f3ad43f7271c56fff102aacbda338dc502c82d0a813a3bb41212c42a42b0852c4ac2105538139d46939c07d6e574eb WHIRLPOOL d86d4475f442ba93ab3b55b5c5082813b11c075a9396800ca26542bd4b8365b5d044f728e186ff5e218a7193b9ae9de0ec0550b112248a32cc7c61f8beb07016 +DIST thunderbird-31.3.0-fr.xpi 444144 SHA256 e7896408afc9c68eef3194ad512929c4b61d60ab2287e1ef9464d1de29ed6f1f SHA512 83ea15d45fbae1dd4118b7938502272f6cac5d48fcd03e42beda8c1a2ef4c1d53ca14da7262ce5998dc84b1e2631df16f7e7e1e4c186fa50782e9ff6f5059df3 WHIRLPOOL 3c5c70e46aae0f088752974befc472c0327cd6aca71790c3a90193171e73306263938a2590a82f8ffb17e4b8bae364de86260786856ee513d573e2b6eb150691 +DIST thunderbird-31.3.0-fy-NL.xpi 438545 SHA256 d3552a76b606e12e4f524458376deeff330194b332b17ccf8d853b5b77357d68 SHA512 18ad972fddd0a0808c00f83737907495722704798685fa032ee404cf50c4acc5210f4c62c13be9548c99165b38563f701a3a8d0e7d7354294133bc7816b83e06 WHIRLPOOL 1f42c61ea06931682b0fa47ab4a0798ca225595d4dfca0ae50113dfa500807264350acb37c8c0ab132de8258edf733f25ae4457b8c769a628bdcdfbbe86e7628 +DIST thunderbird-31.3.0-ga-IE.xpi 449362 SHA256 502302b8177fbd196fde6ad0ff65367c3a5940d944e593adc20072bbbe1dfda6 SHA512 b2b9b56247455cbd8ebb47ec1455fc1e775c47fa2d82e09ab19eec4cf58ec9473db703f7a2eec740707874a46cc64072ff6023adcc6cbfe8e3bbc2cdecd5d6bf WHIRLPOOL e9b09c0a86b26cd8d2eccd3ca7e1cdb8c4dc59afb19fbd87e228def13e98d7f5189d0e14dbef7469018deabefb7b55b0c311d33c6b5570960230fbc8388e339d +DIST thunderbird-31.3.0-gd.xpi 453171 SHA256 b052fdb7a37c5082844fd7a136d5db3eab616f096e11e0f56158554be52c1da9 SHA512 2a0ad8b9aed9753d025662c1df2934186f7f5f8fc38a467df265838726756d7b098a919c9cf844fc93bed03fd98c8bdbd3cb5c67c835692eba3a90cb35255238 WHIRLPOOL 7c37fc44d11b37d1811c1e909a6ca627615e569714790bc7443ad92a6356026d1d687d5a7333ca40f596b6837ddbc42b410a415ecaf5cdbb3d151b368d7dfb6f +DIST thunderbird-31.3.0-gl.xpi 446788 SHA256 ceffb5e73f89001b46b82fde8f42aac548214148ce7bb480a1824a6cf452e781 SHA512 8cba1978224fddb812baff69e476cb322dd95649ea496969eebc30686d9c5611e901a98b1d9d0409fd9d89606f043d0a58e119bb0d311404ead511d691ef4793 WHIRLPOOL 5422c56eaef197dd3be760497491ea6132595eceb90ade9ea10c642919b2a5299ad3efcbefa460d73e667e789d9813743bbec97f9dbafbc98e8dd9cd09e3916a +DIST thunderbird-31.3.0-he.xpi 476111 SHA256 879efda7c448bff7b93757e0edbf983021f190dc8f1cccdf1d03141a39b1596d SHA512 d8914a3ae872526d0b2935a00960ec14929bce247adc45387d1ccf6db8678c476a36afc1a244eb8bf76a30f4b55d88c3dd0413249d48eabfdc8fa45d561090fc WHIRLPOOL b9f77813189f5998807cf4f9b4df2880aeb24af4dcb9eac128afcc2fcca3d89027b4888d15e87ca999c0bd60f80eb04defd840e87e960f23acdb549e317687e9 +DIST thunderbird-31.3.0-hr.xpi 436980 SHA256 4263d0bc96b51c93a2ac69e5b0707c755f592e656ab1a827bec0f823c2d58c4e SHA512 caaf9429f55a7b98e7aa1e8b1939d0d497a4e4946e050eb05262865c3ce24ffa7be16b4c04a3a2c90ec9786bd855fb6288729c0e088949cc4e0482e6f3f183fe WHIRLPOOL c445aa5c4d502e34d3167ca8598657f870bd32ba64dc65905635b756a10a7eadffbcb3c19dee063466b6a29b93d01a40874314b6943caeb17209a82ca29b4501 +DIST thunderbird-31.3.0-hu.xpi 454542 SHA256 237941d22d98607fcbc40a1abed257fdcc93cae8fea799e90de29895c936bbdf SHA512 a7f0ba53e366011952d6f5f2ab891b7e279b2facf9e6b2e964a6e2abb74aa83ff116e92a41c648e591b73a6e5f1f9883cf0f5538262dbe7c6e2dabef2cecbbd4 WHIRLPOOL d7bcfa195e20d238aaf4e336042d2eb67a4b31740f6b184582e28f3f0ccf23e1b9076d25092025f8f11bd8ea8b8510d49d74234522ce4472d6a16bdc5b697cd9 +DIST thunderbird-31.3.0-hy-AM.xpi 492765 SHA256 ca895d9350a24d3fed16c6743ced1526e6a2cf0dbf24cb3f740a841d5cf203a3 SHA512 b66f6d42f9e15cfb32b5469088995237e63e025f2fa1363221a0ade180d185a4c84750d3e3c898d71a8e6ae5d3fee89c70a48fbcf782fba66ef2ab80f3d8c1e3 WHIRLPOOL b4227957792189af864c882ad9a16b90e0d1e9c8b75e04d2b03f0e72efc03c5e6533b0f383cea3162cd4c1e587a14ac30fc2f777eb4efc80f114269340cb0e1f +DIST thunderbird-31.3.0-id.xpi 475876 SHA256 55257017268da8bc3ad47cf754d3e943a96c1d1e5966aa9b12e312991322e4b4 SHA512 d933c23659fa3d9fd7d739c991cf09be48a3b966dc4405cc4d1f46895725a4a0d31ee00c0883c26a4b64771a6e67c8865d2d91f9f8f42de3718e8136d864d0c1 WHIRLPOOL 890faaeadba2b2a23094a41f7627ed96743de4ec905ffba296ce61e164250501601f5ea712a9e53b85172b38ac2acde6bb93013a280a0360cf2798abc377e3a5 +DIST thunderbird-31.3.0-is.xpi 437959 SHA256 986bf8d578652c00ba1735f714cc52632044d655263c3a408c804729b874e373 SHA512 422e6fa865dc8e7837c0cf273f8079c006c398d718ceaff1041fe399c96050158596be8bd910f7f623104e45b032b2ba9ae2fb18c84a2d85a6bc5dddaf716732 WHIRLPOOL 7947a054bc5663c7614190e902ebebdfa4f12fb55187d5d3c54d1bc0e723340c42f28dba58cab928e7541e64b7f4d4a5392e7247e0b00eb365be389705ae55d7 +DIST thunderbird-31.3.0-it.xpi 368001 SHA256 ee00ccf84f655d57ec7622f1b8b52f22d0fe7d1313115a09a2c5377285e286dc SHA512 f1342f91369113a43693ab7a90334cd27e54ab691e1529c67989ac1ecb6b5568614aa5ccc8fe42ec4f3588f468359d45fd556e040a7b9fa0c44da25ab6cca373 WHIRLPOOL 6d5a0260106ab4acab1774f5324529a55d6b25bc1f6af48b3f856f792985cfae17b74a627d90ccadef0e44d6d5fe03327e4b05071f353dd60b30b945e06fe655 +DIST thunderbird-31.3.0-ja.xpi 489267 SHA256 6fb40bcc1a2a3d1c18c298a8c582a7940201baafa1d0c15d46cd819990c200b4 SHA512 4b0ba4cc52bb23674b61cbf9fdbfe65f4a33cf289f90a38ace17c9003ab050fc508cbd5ed79f4b3675840b983e6c9dbf582e300ee194adeb3b36d699d7fbf2b7 WHIRLPOOL b0bf2b46e49528ceb782c589cb845a66f45994ca897b03d2186533f6b83c45c2819e431273376a3be3aeadaca0a5a5821e49ce2e193825be54a8265a026311ef +DIST thunderbird-31.3.0-ko.xpi 448920 SHA256 1af67a385b3d4dfeb99ba57851ed113b6d10e1eb48aadcd1d03510c8faef9aea SHA512 0696ed36c0fc1e6c6000a6c839418f98e3768b6a43993d68179595d64b24af0ff7acf7c9bf756c405134b9e770ecc0fb1e31d7c5125634eec6d9802d88a6a819 WHIRLPOOL 533cf7796333ad7fa6a004d5373c4566c3416ab5d4263568bcd47dcd73df5adee79ffd78ff673ec3aec5f57b1597619afafe9424a8d0e5a50709ef051afaf82f +DIST thunderbird-31.3.0-lt.xpi 456351 SHA256 3415f9915ecce765d0104f8f37c85346579e55e2edc4f75955e9acb4e4599755 SHA512 b5d49971461c5206c880c2b845131f601d2e51d742f3d75798a168a2eaf930c712e65e1498324f3d10a2528b8f3b0b3ecb4780770e7b1da1d2438a54380614d9 WHIRLPOOL 49851fb9ec0b2fa14fae0ea2d7f7e571763eda7f778ba430cf35da031541155c5cabfef08c7a85f47bacfa9f5900342d97590e4c64dca59f63449ec823a19ea3 +DIST thunderbird-31.3.0-nb-NO.xpi 430941 SHA256 7c58e207a9e627ea7e74b5126df4f1495170602217b12ba83ba6cb454b5648e8 SHA512 01a92e94929cd14af34fc72bc1b9717b6dda59187f76d0bd18f2c1427890e074e887b0848adc8543ae7020cca493eae8b9fda763475c158332dbc691ced4b30c WHIRLPOOL f716549289f6d6aa17b18eff51a1de8b07280554decf4cf8dbc1a820fc2c2f6784d329d9d944eff99c40ef3d62eadd676ba03bd05765750272a67d58c81a8718 +DIST thunderbird-31.3.0-nl.xpi 431888 SHA256 fb0934635ce55901c9c43382ab2214952b926e1d5ee2c966c44ab883ee5adcb3 SHA512 71a12f4a05c7bac98b79b3d0687eb1c51dacc7ae809d75d2c7ace2eed6eb64262dd7961280d513ab2b378a9fc9e8ac3eeb7a440c27f28ccaa97a48b71307c275 WHIRLPOOL cfdd51d800776906aa936bd21c5671876e748bea24b9bb22085857df6e041b5f88a1a46928c9c5c45a39f1a979bad419fcbdc924453095930e95bf340622ac0b +DIST thunderbird-31.3.0-nn-NO.xpi 433198 SHA256 e2c3077b6497c153f581b24b1ca1b4bec27687c4d328c477484357aec295f42a SHA512 d7c27579ed5a4e2330edd30549bf08cc52b95cd37b9f83e9de513bd7a99cbf62fdde851c85103f530527f1b296b0483f744c9f9f463083be138558645d62974d WHIRLPOOL 51ef116acdeef697ed9c129ec8927c972c4a8e3fecfbbf2da3c7b303c7330c61e0d0894a4eab5285b09c5fe3aa6bea7356c35ed67f1c63e93663c7c224bce885 +DIST thunderbird-31.3.0-pa-IN.xpi 525323 SHA256 7dc4048eb5e9166a855e4c819380036354841173a77c2a68a1784c3bf31b9949 SHA512 171e465e622cee142bfa3b83ffd0cbebd00832f6032bba12a633b2468cd36ae8f86c6cba268348b5688c07216e8dd3146a964d3e44de37d9d182e2796fca32f4 WHIRLPOOL 246a80cabc4224787f2c806578ca1a71eb6cf9af9da81cb3b8bff5a104282a0c7917722dc8a04fd789d6350ed187362c0afebba9c9cd9c08b73041a54c46e3c2 +DIST thunderbird-31.3.0-pl.xpi 410872 SHA256 90533d8a111ada96d263d6125baf273fe1410c22c272e7170274b0c11e98c45a SHA512 27b0fe7c57fdbc038fb33db7c22c6fe444592cee86d347b2403d9a11e278716a2e6cdab117a4ee0fa265030a0a0b57caa99b064a8744d9a2726ed2b2acba45be WHIRLPOOL 78d5c094ec1bc64fd9c553f3e97511018c65770e52ba5e3af8fb2396af43f56cdcbf2116fe8cb42e1d85ddbb42027191083a88f7bfab7003715c1f359499feb9 +DIST thunderbird-31.3.0-pt-BR.xpi 450477 SHA256 2e8a412d12a850e3f011533287245cf5a6a3a124e85ac0c651057605d12d2b12 SHA512 2e38b29b040446c6145e14848fc4aa85e66c9438bc759543958166e9a6790a8a4528d553a2d329eef7dbc4c05dfd08b19119a3255a8bf5099f1b2004a84c875e WHIRLPOOL 4eadaf8660b8615b13d3815f7ee90ab72f5c7ad84819ccee1a7070b0a09d87f1a5b1a0f5fb60dfeb557cc971acd51c8ad4ead82a41997803e8db06a71f34c89c +DIST thunderbird-31.3.0-pt-PT.xpi 439604 SHA256 0c70f96167c6d84dccf933af218f5eeae218c0f2cb991dd084481e0a2e7905f3 SHA512 dddafe834c2b8fecb03aa511a88ae9ce182e7879d8fa063f9de7cc1efe593e1c423e427b575cfe9d31a1dd3272128a4210231245a8fe14ec04bae15fe349d550 WHIRLPOOL 9978cd79bb53ce267589447530d2245675cb48d0fef48da4fa74beaaab2f2d452974f44954596ce4daa603845b4be0d689ac666916b7854f85fd9e0ee3f07253 +DIST thunderbird-31.3.0-rm.xpi 439185 SHA256 cec2dd8a3a4ac8c74e36b1faa2487a93f9550f35f2476c0f048d825c2088bc8c SHA512 d00b0a3aed2cf9fab4c5441d231d171201d556fd2d30b84e3a45f945b821113f348477765408c70c761675b06e75e72d7e7972cb8e2fbae1e5fdeb99bd988130 WHIRLPOOL b69b58ef31ed54a2a5eb2d3139f7140a568a16ef43162d901ceb408b051b90a9d9aa13d3f82166c01354afb806b2460b087cb61cb1ca43f02d2cf806f95af7ec +DIST thunderbird-31.3.0-ro.xpi 479747 SHA256 6aa936dfe30286ebfecfd19255017e1456ac43ae02a7cef033ca3f744fff366c SHA512 1e3a037cc8cb289cfa392f8726dd01f447d025c99ff6819841cc9cc83ee117b9d8a5183f59520816bce3be24f300186b658d51408de2df8c063dadadfc218b0b WHIRLPOOL 24da0c3eca9d1539d430adbbcb969fdeb3b1d3fca852553bd974b7241962d694828919e7169d69cb9af407d81948ab9fd02c2181cfff12675c2b610acfb2e888 +DIST thunderbird-31.3.0-ru.xpi 436156 SHA256 6f1c9f2810d42a9167fe0b74139d5a0df7695db1fb720b6e0b776997e807284e SHA512 69318a62efb8a67a07aa6079071ed0e94e65413f919621a82a91c20a9f22cb4e01fc3a85312044ce909e9923dd6feb0713c45a80791be00ab8787d467546e7fe WHIRLPOOL af38f6bbb7fba18d45e4abb56681355bfe82c2a4c9712ec0c593989b4b31f3ca8449e179a6a167ae3bb12a5fcef4bacdcfea026c3dca46d468373cb6a333c498 +DIST thunderbird-31.3.0-si.xpi 528812 SHA256 0583537d4cda5b5ba01bdf76004de491e18475c8f19d9d0d419be155abb0365d SHA512 f25b785fcaafd3561fc573f45b4ffd6856cc9708ef93459cfb83c42dc9a78b79b15a08ea3fa923c11673149548fbc054cbfc80bd7f7c33defe54708a751063aa WHIRLPOOL e62aef84ace64c279ace2bd1d24c46a9d5491b823021d51e5e559a2006d656dea30716bf86807b84c0c03b85549ecccc0cb110547f760a0ccf32bd6cb9b73403 +DIST thunderbird-31.3.0-sk.xpi 452995 SHA256 6342d9f60ee5a7e378e31e0c46784bc68e2f021913e9286366f15093e9cd6246 SHA512 199bc1ab4215c07c5385d7e21e6fc96044db8c9d4a555899a54bb195f3be39034d935ff702d268a6baabcaff5f016e7adacf439e93041ebff5e829edc80af135 WHIRLPOOL f857d38b187bebe3acd70a1a5fff48513de3e53b8ae5731867897b5149e6505b1b3b52ca49089ad602b852170fc20ffcde000d02b1218bc2d4c1b481894139df +DIST thunderbird-31.3.0-sl.xpi 433874 SHA256 8abad28471f5838d775d7b5c23ef01cd1443b265ba8a957f96653bebfc96309f SHA512 62b114545628e30caf6632b8f48b084d1fe73e72b6ebb3186b9e679b4afa621c5d9d0e3ab8ba1b48bb00c5cca8c49a97612cca29cdf681a70d44f247ef7d0581 WHIRLPOOL d7e9edeb344bc5a9bbdd08cc1e133cb01521e993afff5fbe388e2bf2ccf0b81a1b100477feac06360a8714c835b3c4ab2bed53ff4b6e82997264cbf63077f0a8 +DIST thunderbird-31.3.0-sq.xpi 454694 SHA256 e695bfe8c3b397d82253c6e933b3bf4c60adbd4c184250d73f5f307ffe045df6 SHA512 42112195768efc4c603319e2f29d213edc41e1ebbcebf7f7f78abdb3f00ec8811f8992b6cf4aa75d37cb28ea81d2c1c3eaba5c87ae2cdf1e641f97bf0176b155 WHIRLPOOL 5e80a62f73c4fc194fe662081e82ebb08c427758ae4c640ecaf2c80d6dda090b44e80e305a322eba756b1c67d265601a33ae66519f83ff1e3789d21a10bb84db +DIST thunderbird-31.3.0-sr.xpi 537335 SHA256 8a05e47be44411d349f56fc72f81b1b95106c92628a906aa9b5d43282e81b977 SHA512 d2568fa833c6b2dc8e9d383b23424ad57eea2019e19cc1925e42d2bfba047a36d0c9737277783e7cc998879d28c39ddef1faa2e28f91187b8b1bada6bab17513 WHIRLPOOL ccccc1051236b67d8d202774c71dcc3cd899360cd19f09cc2d1c3d616295db4c48334536e9c21057f1f2d5810cf1d909623b7b0d9ea4da9060e5027585737210 +DIST thunderbird-31.3.0-sv-SE.xpi 436105 SHA256 1039ad1c9c8f038a079d64f688e3da7a708e7dd5854dbe8aaf49fb9589e93d50 SHA512 fdccbfb13ef9572068de424c272351776a3b7631bd723626769045309b3c8e25497635117fad7d2a4f452f0e3ecc617d4497942c686a6beab8fee5b48f8a226d WHIRLPOOL fc0d4c47d423ace03f9024a0e029018fe5330b5d9bc5f8f4768837729eafa24d7149c41b498d08d15adff169a6b061bef200f694fc72414f823b1b690037f522 +DIST thunderbird-31.3.0-ta-LK.xpi 553508 SHA256 0eb91f1a539dab98b005210c06f4db9f628cc3bba9e2dabc82451c6e4a5c29c6 SHA512 6162f7b43f958230ca21eaf42002ab07866ed8835e23e487bbeefd3df90a818520f1f6a9f0ec2ec6f78a0782944cef721721037f35498191044e1ec9a3ac1eb1 WHIRLPOOL dea38f36291097f515f6dc5d4855fa950751dde90cfd8cf2c59d5a97b188e54b4ef9ab4520e3151319846f56189617d84c75608606def4f83da251b6ebda0e37 +DIST thunderbird-31.3.0-tr.xpi 457360 SHA256 7353950261d2272cd79a7d81e1f1d144fd1060c8c179dcb13b1f89c2dbd7d71e SHA512 90fedede26f41c9ffd55d668f32a8c14c7519030132c99a806c792023a43f7153c2d764c73d1aee59d9c371e927e4b449c01a20e92510cba1578f25375f648b5 WHIRLPOOL 6353196647008c95d430343e4646330a6dcb5d3027584da7bf17401ff030c8e8eca69c29f56117b7dc498dfba07004cf0af26ee0cb56b2ea0dd7c816ccd37d06 +DIST thunderbird-31.3.0-uk.xpi 499656 SHA256 59450065564a275731211b1372329c1e7719dafeb185999d36dededcc112c7f4 SHA512 fe5e23daa194c63b681dec45d7431b0a88291918f365951589544243a22dccec595850b092e95b2934cb70a71a13c838661340feefdf7be9634303e29b2f3763 WHIRLPOOL 6f4bd79ac391aa6ad192340c9924ba1d2c33df1d4265fe22fbb90daeea0e4d17a9af3f2b5f1a6e4a977e8ce3bea1b4ea039e3eac5183d7466089bb65f2cf8df3 +DIST thunderbird-31.3.0-vi.xpi 513835 SHA256 c2a3399b1853884cdfb8ba64366210c48ec32b3f7ff03eaf0368b7cfe0b79f99 SHA512 41e47275d9ae709bff369477e2d2a295c70c17641e1ba170f16e425e50e310fba98e1300ca9485e2c60a70e37ac8a824711bd1f5146a2e5126d2f82996aaa724 WHIRLPOOL 4b89d1e0071e76264199209864a81f53bd4fb6876b9f283e7008871431a82b17c13913656ccf32ff84f0dc80e635b3ad55bce5940b9e0dc315b0d65afcc7ffca +DIST thunderbird-31.3.0-zh-CN.xpi 462668 SHA256 77b77f0d9f537a302c2f7868a962ff4178480247dc6253ff107fa9595adbed8b SHA512 869e554036e0bc0e1f3b66f45152e0b026c25beb5f07ca6dac0cd4573f4418bb36c93e9a99ebca668012279888f6cc177847f313dba15c4911f8207b9d9f8b04 WHIRLPOOL 616a584d12c2d311fdb85ee681c7392b7fcd71776d2f39d60a5c837ddd04a0aecd93952e7d5b0c69994c4302b1bf3043b269f3dbd3dd25b0e6645c73769fd3b8 +DIST thunderbird-31.3.0-zh-TW.xpi 463408 SHA256 884e3ada592a3c543b3b03d0d185e20a9bf86aa9a2e8809df9e9e5e7316a9d53 SHA512 b7fd6cd125a9141fcbd97a64467cff90578b5cee9c9a53fd85ed6e22a639484182573efccc748d92029d3ee4e97b8d12cf779b77f921fa4d1a00636be3c0baa4 WHIRLPOOL 50ee41e52fb8cdddbb5d19897c0b93f651705318f4eea142323797b0763f346178f2fc17c35f0c93f56062a9f9fff2b54a34df944798791eeb1f09d31519f959 +DIST thunderbird-31.3.0.source.tar.bz2 171213377 SHA256 b742782965ce9c65b69c1dc470497ea456f11caeb8fda3ea593ee31ad496f556 SHA512 40a7ff9b8c843593ba2c4893bc01307435b918f786bb0660197a2d612b268fec6a091a14df602e268fcd1085813134efe3a5cbe28e070154670f2fc562e5378f WHIRLPOOL 1e74ec7973f08ee3249db97c773c1d500eb7bf0ad8fd81e983300b4975638d8bc8e0ac554f86732dfb14e4b1371f4bd2c53156b707f0b689846d1617d83a0116 diff --git a/mail-client/thunderbird/thunderbird-31.2.0-r1.ebuild b/mail-client/thunderbird/thunderbird-31.3.0.ebuild similarity index 94% rename from mail-client/thunderbird/thunderbird-31.2.0-r1.ebuild rename to mail-client/thunderbird/thunderbird-31.3.0.ebuild index f2c116c7f2ca..6ebd1a091c33 100644 --- a/mail-client/thunderbird/thunderbird-31.2.0-r1.ebuild +++ b/mail-client/thunderbird/thunderbird-31.3.0.ebuild @@ -1,12 +1,13 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird/thunderbird-31.2.0-r1.ebuild,v 1.2 2014/11/02 08:33:52 swift Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird/thunderbird-31.3.0.ebuild,v 1.2 2014/12/04 04:21:56 axs Exp $ EAPI=5 WANT_AUTOCONF="2.1" MOZ_ESR="" MOZ_LIGHTNING_VER="3.3" -MOZ_LIGHTNING_GDATA_VER="2.6.3" +#MOZ_LIGHTNING_GDATA_VER="2.6.3" +MOZ_LIGHTNING_GDATA_VER="1.0.3" # 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 da de el en en-GB en-US es-AR @@ -49,7 +50,7 @@ SRC_URI="${SRC_URI} crypt? ( http://www.enigmail.net/download/source/enigmail-${EMVER}.tar.gz ) lightning? ( ${MOZ_HTTP_URI/${PN}/calendar/lightning}${MOZ_LIGHTNING_VER}/linux/lightning.xpi -> lightning-${MOZ_LIGHTNING_VER}.xpi - ${MOZ_HTTP_URI/${PN}/calendar/lightning}${MOZ_LIGHTNING_GDATA_VER}/linux/gdata-provider.xpi -> gdata-provider-${MOZ_LIGHTNING_GDATA_VER}.xpi + http://dev.gentoo.org/~axs/distfiles/gdata-provider-${MOZ_LIGHTNING_GDATA_VER}.tar.xz ) http://dev.gentoo.org/~anarchy/mozilla/patchsets/${PATCH}.tar.xz http://dev.gentoo.org/~anarchy/mozilla/patchsets/${PATCHFF}.tar.xz @@ -60,7 +61,7 @@ SRC_URI="${SRC_URI} ASM_DEPEND=">=dev-lang/yasm-1.1" CDEPEND=" - >=dev-libs/nss-3.16.5 + >=dev-libs/nss-3.17.1 >=dev-libs/nspr-4.10.6 !x11-plugins/enigmail crypt? ( || ( @@ -89,7 +90,7 @@ else S="${WORKDIR}/comm-esr${PV%%.*}" fi -BUILD_OBJ_DIR="${WORKDIR}/tbird" +BUILD_OBJ_DIR="${S}/tbird" pkg_setup() { moz_pkgsetup @@ -127,7 +128,6 @@ src_unpack() { # Unpack lightning for calendar locales if use lightning ; then xpi_unpack lightning-${MOZ_LIGHTNING_VER}.xpi - xpi_unpack gdata-provider-${MOZ_LIGHTNING_GDATA_VER}.xpi fi } @@ -318,12 +318,17 @@ src_install() { mozlinguas_export emid="{a62ef8ec-5fdc-40c2-873c-223b8a6925cc}" - dodir ${MOZILLA_FIVE_HOME}/extensions/${emid} - cd "${ED}"${MOZILLA_FIVE_HOME}/extensions/${emid} - unzip "${BUILD_OBJ_DIR}"/mozilla/dist/xpi-stage/gdata-provider-*.xpi - # Install locales for gdata-provider -- each locale is a directory tree + # just for ESR31, install custom-rolled gdata-provider + cd "${WORKDIR}/gdata-provider-${MOZ_LIGHTNING_GDATA_VER}" || die + insinto ${MOZILLA_FIVE_HOME}/extensions/${emid} + if [[ -e chrome.manifest.original ]]; then + cp chrome.manifest.original chrome.manifest || die + fi + doins -r chrome.manifest components defaults modules install.rdf + cd "${WORKDIR}/gdata-provider-${MOZ_LIGHTNING_GDATA_VER}/chrome" || die insinto ${MOZILLA_FIVE_HOME}/extensions/${emid}/chrome - cd "${WORKDIR}"/gdata-provider-${MOZ_LIGHTNING_GDATA_VER}/chrome + doins -r gdata-provider gdata-provider-en-US + # Install locales for gdata-provider -- each locale is a directory tree for l in "${mozlinguas[@]}"; do if [[ -d gdata-provider-${l} ]]; then doins -r gdata-provider-${l} echo "locale gdata-provider ${l} chrome/gdata-provider-${l}/locale/${l}/" \ @@ -336,8 +341,7 @@ src_install() { emid="{e2fda1a4-762b-4020-b5ad-a41df1933103}" dodir ${MOZILLA_FIVE_HOME}/extensions/${emid} cd "${ED}"${MOZILLA_FIVE_HOME}/extensions/${emid} || die - unzip "${BUILD_OBJ_DIR}"/mozilla/dist/xpi-stage/lightning-*.xpi \ - || die + unzip "${BUILD_OBJ_DIR}"/mozilla/dist/xpi-stage/lightning-*.xpi || die # Install locales for lightning - each locale is a jar file insinto ${MOZILLA_FIVE_HOME}/extensions/${emid}/chrome cd "${WORKDIR}"/lightning-${MOZ_LIGHTNING_VER}/chrome || die diff --git a/media-gfx/scrot/scrot-0.8_p13.ebuild b/media-gfx/scrot/scrot-0.8_p13.ebuild index 3e6b18c4f7af..a58ded8dade6 100644 --- a/media-gfx/scrot/scrot-0.8_p13.ebuild +++ b/media-gfx/scrot/scrot-0.8_p13.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/scrot/scrot-0.8_p13.ebuild,v 1.2 2014/11/29 19:46:29 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/scrot/scrot-0.8_p13.ebuild,v 1.3 2014/12/03 12:53:22 jer Exp $ EAPI=5 @@ -15,7 +15,7 @@ SRC_URI="http://${PN}.sourcearchive.com/downloads/${MY_PV}/${PN}_0.8.orig.tar.gz LICENSE="feh LGPL-2+" SLOT="0" -KEYWORDS="~alpha ~amd64 arm ~hppa ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="~alpha ~amd64 arm hppa ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" IUSE="" RDEPEND=">=media-libs/imlib2-1.0.3 diff --git a/media-gfx/zbar/zbar-0.10-r5.ebuild b/media-gfx/zbar/zbar-0.10-r5.ebuild index c95a6b03b2e0..1d6cc9430520 100644 --- a/media-gfx/zbar/zbar-0.10-r5.ebuild +++ b/media-gfx/zbar/zbar-0.10-r5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/zbar/zbar-0.10-r5.ebuild,v 1.2 2014/11/30 13:36:08 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/zbar/zbar-0.10-r5.ebuild,v 1.3 2014/12/03 12:18:37 mgorny Exp $ EAPI=5 @@ -41,7 +41,7 @@ src_prepare() { epatch "${FILESDIR}"/${P}-errors.patch epatch "${FILESDIR}"/${P}-python-crash.patch - python_fix_shebang examples/upcrpc.py test/*.py + use python && python_fix_shebang examples/upcrpc.py test/*.py sed -i -e '/AM_INIT_AUTOMAKE/s:-Werror ::' configure.ac || die #423581 eautoreconf diff --git a/media-libs/libass/Manifest b/media-libs/libass/Manifest index 58df4d538480..0774824b4f26 100644 --- a/media-libs/libass/Manifest +++ b/media-libs/libass/Manifest @@ -2,4 +2,5 @@ DIST libass-0.10.1.tar.xz 257792 SHA256 fbf287ac6d0dbdf015783b7354280ad8371c1063 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.9.13.tar.xz 250536 SHA256 eef55595355cd4dd14b88b61d4e34c7bcfb6060a6b28f5a9ebc7dd5a72b69cc8 SHA512 82c1a280b5cff9dd09f015562db420295a465ce7e80ad51b2f879e347c3a675ea05ac2beaa106c178aa57a390a19eb1ffb90771689e76e2b0619e75673631e0d WHIRLPOOL b1769d3a5b9a14d43447ddaa8c459b5fda4c857abdee270d022cced3d5db93a25059ef4291c0fe27cf235c20507f6c77fdc9c3037d032bad57e1971eaa8436c9 diff --git a/media-libs/libass/libass-0.12.0.ebuild b/media-libs/libass/libass-0.12.0.ebuild new file mode 100644 index 000000000000..c570d1609191 --- /dev/null +++ b/media-libs/libass/libass-0.12.0.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/libass-0.12.0.ebuild,v 1.1 2014/12/03 17:09:06 aballier Exp $ + +EAPI=5 +inherit eutils multilib-minimal + +DESCRIPTION="Library for SSA/ASS subtitles rendering" +HOMEPAGE="http://github.com/libass/libass" +SRC_URI="http://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/libdc1394/Manifest b/media-libs/libdc1394/Manifest index bcc454018079..ac33864972fc 100644 --- a/media-libs/libdc1394/Manifest +++ b/media-libs/libdc1394/Manifest @@ -1,4 +1,5 @@ DIST libdc1394-2.1.3.tar.gz 596778 SHA256 6690e8f97abadd41aa6a5f6e0365e17287847bb267d251ea308641a6dd7aa0e9 SHA512 502e1c55dbcf755a12d2efa1d7d14f9b735d279b47df4782c5303e48cb57eacabb89be20a374e1303d8c9b3d57eadac86541b2aae859e939a84d8c25bd20290c WHIRLPOOL 2f9e569d200de2cc7542eeead405a7dc85cebb8919c9b2ce887832426ccf99de4ca9ed4cb677522629248aaf1c6c2681a6e4a5353400a3d64f3adc26e20dc5d6 DIST libdc1394-2.1.4.tar.gz 576406 SHA256 c605d1f099690a71b743827f01a7733e898a45da69ca31eb912fa007f4a3acf0 SHA512 21f36988cc1b85ec058b8c17b5311ee7c0c61ff3bc69e9ade94c44b9e96ab02fa5f243bead0ed3f1e3f130663cc46843f83cd78d3a960bb8d06fffa3df4ac1e8 WHIRLPOOL 3485bb2f140c6a5b7acb4a6982f8be6979cbf693fe60d588e5967c01614921647902f690583ca5b0eadaa9ab663a9b98b9f3830a4e444d67f8238b13ac732c80 DIST libdc1394-2.2.1.tar.gz 556544 SHA256 920c331abf8bf2e1f73dfee0df103daf9f1850a69552ee825a9824e01ce96cf2 SHA512 e79370d4ac50f60535ef8b6f6ae21d5ede965812c775853e98c5c38e9bfc87929ef6e0d3737a20a443cd60c0225af18944bcba6d2cfb2ba858ac868bfb53c446 WHIRLPOOL 2107a2baf8090151ff5b81933dbe0e67198a87579db204bf69e574625007048d00b6b9d9a29309a026b49f7e55c10847cbe894f431ea976d5cc9f4e33a0f5499 +DIST libdc1394-2.2.3.tar.gz 606042 SHA256 4a197880657f54519683ce014e613acdfd909767a69873eb23409fe423232bdd SHA512 d60771fe196cfd5c1ede413c0159ed9f0a977183f4b414f8e26a7be0098c10599c8dd93f8175e7ad38dac1504295c7c9987633bc9cb7de561ad0b64da0c8ca28 WHIRLPOOL b486a2b7075e41b0a6b6b3a4a79580a3fe811f4c66797e419380365562d72e3fea78d90656531a220f20170ca398947fac0113ce0134721b6490d8e39919e165 DIST sdl.m4-20140620.tar.xz 2420 SHA256 855651a9da571ce87c9d62479c82174809dae902bdeb274144f94ca444675560 SHA512 d8844d0967809241b642e0b6aaf45f2a5e94567d239d338aee45aaeb0e38765bcae419660562b7064d91afec63cc6ade0878fc7d6f36c61c083d136098a9af55 WHIRLPOOL a6361961fce75f715943642c185a1750862469aef222cf8d8ddb5c023a878b346919376aa5360c10bd870b79b7309ae62913a63dd51458c64777be50f96ee424 diff --git a/media-libs/libdc1394/libdc1394-2.2.3.ebuild b/media-libs/libdc1394/libdc1394-2.2.3.ebuild new file mode 100644 index 000000000000..f5de63de2155 --- /dev/null +++ b/media-libs/libdc1394/libdc1394-2.2.3.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libdc1394/libdc1394-2.2.3.ebuild,v 1.1 2014/12/03 17:13:36 aballier Exp $ + +EAPI=5 + +inherit autotools eutils multilib-minimal + +DESCRIPTION="Library to interface with IEEE 1394 cameras following the IIDC specification" +HOMEPAGE="http://sourceforge.net/projects/libdc1394/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz + http://dev.gentoo.org/~ssuominen/sdl.m4-20140620.tar.xz" + +LICENSE="LGPL-2.1" +SLOT="2" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="doc static-libs X" + +RDEPEND=">=sys-libs/libraw1394-2.1.0-r1[${MULTILIB_USEDEP}] + >=virtual/libusb-1-r1:1[${MULTILIB_USEDEP}]" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( app-doc/doxygen )" + +src_prepare() { + epatch \ + "${FILESDIR}"/${PN}-2.2.1-pthread.patch + + AT_M4DIR=${WORKDIR}/aclocal eautoreconf +} + +multilib_src_configure() { + local myconf="$(use_enable doc doxygen-html)" + multilib_is_native_abi || myconf="--disable-doxygen-html --disable-examples" + + # X is only useful for examples that are not installed. + ECONF_SOURCE="${S}" econf \ + $(use_enable static-libs static) \ + --program-suffix=2 \ + --without-x \ + ${myconf} +} + +multilib_src_compile() { + default + multilib_is_native_abi && use doc && emake doc +} + +multilib_src_install() { + default + multilib_is_native_abi && use doc && dohtml doc/html/* + find "${ED}" -name '*.la' -exec rm -f {} + +} diff --git a/media-libs/openh264/Manifest b/media-libs/openh264/Manifest new file mode 100644 index 000000000000..7bc510f01f8e --- /dev/null +++ b/media-libs/openh264/Manifest @@ -0,0 +1 @@ +DIST gmp-openh264-1.2_p20141104.tar.xz 11874976 SHA256 d8359d004116eba6d2444486abd81f82f9cfedf2ab209b9586fc195d199096f8 SHA512 7acd982b54cd32ee2270967131792d869a9c72dca5ba8da796c61517e99b3a40f7c53ab6228c03f72c57f4eb9d3bef536645ee33ccf08a098f0662f97f811856 WHIRLPOOL 5d997bc9349d06f5d485ce654408d5f3cd1314ccdf10c21c25c59933ffe2c4b325ec32444bb74aa754b73fcc381b5b723df9f48989cba3e7137e8a594a47e24c diff --git a/media-libs/openh264/metadata.xml b/media-libs/openh264/metadata.xml new file mode 100644 index 000000000000..058f4124f74d --- /dev/null +++ b/media-libs/openh264/metadata.xml @@ -0,0 +1,11 @@ + + + + + axs@gentoo.org + Ian Stakenvicius + + + Install the Gecko Media Plugin (GMP) for use with Mozilla packages + + diff --git a/media-libs/openh264/openh264-1.2_p20141104.ebuild b/media-libs/openh264/openh264-1.2_p20141104.ebuild new file mode 100644 index 000000000000..551c103661da --- /dev/null +++ b/media-libs/openh264/openh264-1.2_p20141104.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/openh264/openh264-1.2_p20141104.ebuild,v 1.1 2014/12/04 04:01:03 axs Exp $ + +EAPI=5 + +inherit nsplugins + +DESCRIPTION="Cisco OpenH264 library and Gecko Media Plugin for mozilla packages" +HOMEPAGE="http://www.openh264.org/" +SRC_URI="http://dev.gentoo.org/~axs/distfiles/gmp-${P}.tar.xz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+plugin" + +RESTRICT="bindist" + +RDEPEND="" +DEPEND="dev-lang/nasm" + +DOCS=( LICENSE CONTRIBUTORS README.md ) + +S=${WORKDIR}/gmp-${P} + +src_compile() { + local mybits="ENABLE64BIT=No" + case "${ABI}" in + s390x|alpha|*64) mybits="ENABLE64BIT=Yes";; + esac + emake V=Yes ${mybits} + use plugin && emake V=Yes ${mybits} plugin +} + +src_install() { + emake PREFIX="${ED}usr" LIBPREFIX="${ED}usr/$(get_libdir)/" \ + install-headers + + dolib libopenh264.so + + if use plugin; then + local plugpath="usr/$(get_libdir)/${PLUGINS_DIR}/gmp-gmp${PN}/system-installed" + insinto "/${plugpath}" + doins libgmpopenh264.so gmpopenh264.info + echo "MOZ_GMP_PATH=\"${EROOT}${plugpath}\"" >"${T}"/98-moz-gmp-${PN} + doenvd "${T}"/98-moz-gmp-${PN} + + cat <"${T}"/${P}.js +pref("media.gmp-gmp${PN}.autoupdate", false); +pref("media.gmp-gmp${PN}.version", "system-installed"); +PREFEOF + + insinto /usr/$(get_libdir)/firefox/defaults/pref + doins "${T}"/${P}.js + + insinto /usr/$(get_libdir)/seamonkey/defaults/pref + doins "${T}"/${P}.js + fi +} + +pkg_postinst() { + if use plugin; then + if [[ -z ${REPLACING_VERSIONS} ]]; then + elog "Please restart your login session, in order for the session's environment" + elog "to include the new MOZ_GMP_PATH variable." + elog "" + fi + elog "This package attempts to override the mozilla GMPInstaller auto-update process," + elog "however even if it is not successful in doing so the profile-installed plugin" + elog "will not be used unless this package is removed. This package will take precedence" + elog "over any gmp-gmpopenh264 that may be installed in a user's profile." + elog "" + fi +} diff --git a/media-plugins/tap-plugins/Manifest b/media-plugins/tap-plugins/Manifest index 60f3937b7dd4..8e111a9604d1 100644 --- a/media-plugins/tap-plugins/Manifest +++ b/media-plugins/tap-plugins/Manifest @@ -1,2 +1,2 @@ -DIST tap-plugins-0.7.0.tar.gz 63863 SHA256 87f4b5886ec581a617de49dd9ace75d0a5247672bfbc2cc32d2eebe233c80f34 DIST tap-plugins-0.7.2.tar.gz 70961 SHA256 1a484bd8084260448ed3ea6a8edeb61b9e70df9e88036f4b35741fc23be79ee0 SHA512 3cd7605b03c2732f22d7ff79c889b50db4514d232c639cf964d65b2428b8ce6193824e26622ded662cae74351daa38a321bc1b1590035e5fa0fb79bb4620edd0 WHIRLPOOL d965972b45326eddf8a4f33790c6168a1df052949e9ddff08e120ff465c31385a70db7ffbdf99d6f54a3c5d6999d365f08341e05fdd240947419c3be8107ca69 +DIST tap-plugins-0.7.3.tar.gz 70495 SHA256 23ff6b7f5e0968c6afa77bbf3dce74841c1de4a3badfcfad6ccc4c27665b7c2e SHA512 c4e9c93b9fd8afb82067cf3a48ae665843da775c3af6124147ff1f8651d96734a4b961c4c5ea48877b32770e6d0b5a793af32a5cbb6e3b9afd5b59c8b3cc2621 WHIRLPOOL 9f6441b24e5f4d46e4ee22e36a91a39c3931538b1ba6d7886223e0101fe1f87209b9e4c464f21a9e956e9fba76d3bbac11ea2fe78dc200ab4b00718ecc99c94b diff --git a/media-plugins/tap-plugins/files/tap-plugins-0.7.3-cflags-ldflags.patch b/media-plugins/tap-plugins/files/tap-plugins-0.7.3-cflags-ldflags.patch new file mode 100644 index 000000000000..0bfaa5873d23 --- /dev/null +++ b/media-plugins/tap-plugins/files/tap-plugins-0.7.3-cflags-ldflags.patch @@ -0,0 +1,27 @@ +Index: tap-plugins-0.7.3/Makefile +=================================================================== +--- tap-plugins-0.7.3.orig/Makefile ++++ tap-plugins-0.7.3/Makefile +@@ -35,8 +35,11 @@ INSTALL_LRDF_DIR = /usr/local/share/lads + # GENERAL + + CC = gcc +-CFLAGS = -I. -O3 -Wall -fomit-frame-pointer -fstrength-reduce -funroll-loops -ffast-math -c -fPIC -DPIC +-LDFLAGS = -nostartfiles -shared -Wl,-Bsymbolic -lc -lm -lrt ++OPT_CFLAGS = -O3 -fomit-frame-pointer -fstrength-reduce -funroll-loops -ffast-math ++CFLAGS = -I. -Wall $(OPT_CFLAGS) -c -fPIC -DPIC ++EXTRA_LDFLAGS = ++LDFLAGS = -nostartfiles -shared -Wl,-Bsymbolic $(EXTRA_LDFLAGS) ++LIBADD = -lc -lm -lrt + MODULES = $(wildcard *.c) + + all: $(MODULES:%.c=%.so) +@@ -51,7 +54,7 @@ tap_dynamics_st.o: tap_dynamics_presets. + $(CC) $(CFLAGS) $< -o $@ + + %.so: %.o +- $(CC) -o $@ $< $(LDFLAGS) ++ $(CC) $(LDFLAGS) -o $@ $< $(LIBADD) + + # OTHER TARGETS + diff --git a/media-plugins/tap-plugins/tap-plugins-0.7.0.ebuild b/media-plugins/tap-plugins/tap-plugins-0.7.3.ebuild similarity index 53% rename from media-plugins/tap-plugins/tap-plugins-0.7.0.ebuild rename to media-plugins/tap-plugins/tap-plugins-0.7.3.ebuild index 7019438c62f0..d49693955905 100644 --- a/media-plugins/tap-plugins/tap-plugins-0.7.0.ebuild +++ b/media-plugins/tap-plugins/tap-plugins-0.7.3.ebuild @@ -1,28 +1,35 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/tap-plugins/tap-plugins-0.7.0.ebuild,v 1.6 2012/10/14 18:28:47 armin76 Exp $ -# +# $Header: /var/cvsroot/gentoo-x86/media-plugins/tap-plugins/tap-plugins-0.7.3.ebuild,v 1.1 2014/12/03 16:58:48 aballier Exp $ + +EAPI=4 + +inherit multilib toolchain-funcs eutils IUSE="" DESCRIPTION="TAP LADSPA plugins package. Contains DeEsser, Dynamics, Equalizer, Reverb, Stereo Echo, Tremolo" HOMEPAGE="http://tap-plugins.sourceforge.net" -SRC_URI="mirror://sourceforge/tap-plugins/${P}.tar.gz" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~ppc x86" +KEYWORDS="~amd64 ~ppc ~x86" DEPEND="media-libs/ladspa-sdk" +RDEPEND="${DEPEND}" + +src_prepare() { + epatch "${FILESDIR}/${PN}-0.7.3-cflags-ldflags.patch" +} src_compile() { - emake || die + emake CC=$(tc-getCC) OPT_CFLAGS="${CFLAGS}" EXTRA_LDFLAGS="${LDFLAGS}" } src_install() { dodoc README CREDITS - dohtml ${S}/doc/* - insinto /usr/lib/ladspa + insinto /usr/$(get_libdir)/ladspa insopts -m0755 doins *.so insinto /usr/share/ladspa/rdf diff --git a/media-sound/gnump3d/Manifest b/media-sound/gnump3d/Manifest index 9403d9a8f8e1..2336c3f8e4a8 100644 --- a/media-sound/gnump3d/Manifest +++ b/media-sound/gnump3d/Manifest @@ -1 +1 @@ -DIST gnump3d-3.0.tar.bz2 633215 RMD160 c0c3cbe31a6961675636309e82f4ff116db323f1 SHA1 3ba3ec3001084ec59f3b75769ae84cef467654d7 SHA256 1ac5bd0e850b0e18ccd9d19219f5108fa84b50d8ae3825a361e8b907eab7f19c +DIST gnump3d-3.0.tar.bz2 633215 SHA256 1ac5bd0e850b0e18ccd9d19219f5108fa84b50d8ae3825a361e8b907eab7f19c SHA512 23778604b557346e42f5cd2045cc394c7d6f7044479c74cd635dfdbbfd6835c8e3ad761d54c5cba239cc5e020b049ac11d64eb463272fc4134b7645226e2524b WHIRLPOOL ea5be9683cadb4e7b40e237b043e9c93174ae999a3d776ed96e6c039db320faa131f95aae7bcc518cd8fa5275528f9b12252c030d2847079dee2fc18c58c1827 diff --git a/media-sound/gnump3d/gnump3d-3.0.ebuild b/media-sound/gnump3d/gnump3d-3.0-r2.ebuild similarity index 57% rename from media-sound/gnump3d/gnump3d-3.0.ebuild rename to media-sound/gnump3d/gnump3d-3.0-r2.ebuild index 8d8f1849e369..ac41275f536b 100644 --- a/media-sound/gnump3d/gnump3d-3.0.ebuild +++ b/media-sound/gnump3d/gnump3d-3.0-r2.ebuild @@ -1,8 +1,11 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/gnump3d/gnump3d-3.0.ebuild,v 1.10 2012/06/09 23:08:40 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/gnump3d/gnump3d-3.0-r2.ebuild,v 1.1 2014/12/03 23:32:13 dilfridge Exp $ -inherit eutils multilib user +EAPI=5 + +PERL_EXPORT_PHASE_FUNCTIONS=no +inherit eutils multilib user perl-module DESCRIPTION="A streaming server for MP3, OGG vorbis and other streamable files" HOMEPAGE="http://www.gnu.org/software/gnump3d/" @@ -10,12 +13,11 @@ SRC_URI="http://savannah.gnu.org/download/${PN}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 ~ppc ppc64 sparc x86" -IUSE="" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="sox" -RDEPEND="dev-lang/perl" -DEPEND="${RDEPEND} - sys-apps/sed" +RDEPEND="sox? ( media-sound/sox )" +DEPEND="sys-apps/sed" RESTRICT="test" @@ -27,13 +29,13 @@ pkg_setup() { src_compile() { :; } src_install() { - PERLDIR="`perl bin/getlibdir`" + perl_set_version - insinto ${PERLDIR}/gnump3d + insinto "${VENDOR_LIB}"/gnump3d doins lib/gnump3d/*.pm - insinto ${PERLDIR}/gnump3d/plugins + insinto "${VENDOR_LIB}"/gnump3d/plugins doins lib/gnump3d/plugins/*.pm - insinto ${PERLDIR}/gnump3d/lang + insinto "${VENDOR_LIB}"/gnump3d/lang doins lib/gnump3d/lang/*.pm dobin bin/gnump3d2 bin/gnump3d-top bin/gnump3d-index @@ -45,8 +47,8 @@ src_install() { insinto /etc/gnump3d doins etc/gnump3d.conf etc/mime.types etc/file.types - dosed "s,PLUGINDIR,${PERLDIR},g" /etc/gnump3d/gnump3d.conf - dosed 's,^user *= *\(.*\)$,user = gnump3d,g' /etc/gnump3d/gnump3d.conf + sed -e "s,PLUGINDIR,${VENDOR_LIB},g" -i "${ED}/etc/gnump3d/gnump3d.conf" || die + sed -e 's,^user *= *\(.*\)$,user = gnump3d,g' -i "${ED}/etc/gnump3d/gnump3d.conf" || die dodoc AUTHORS ChangeLog DOWNSAMPLING PLUGINS README SUPPORT TODO @@ -62,4 +64,11 @@ src_install() { pkg_postinst() { elog "Please edit your /etc/gnump3d/gnump3d.conf before running" elog "/etc/init.d/gnump3d start" + elog "" + elog "At the very least, you will need to change the root directory" + elog "where music is found. By default, gnump3d will also listen" + elog "to any address on port 8888" + elog "" + elog "You can optionally use sox to downmix the quality of streamed" + elog "music in realtime for slow connections." } diff --git a/media-sound/jalv/Manifest b/media-sound/jalv/Manifest index e99297fc4e04..bd9de71ddc7e 100644 --- a/media-sound/jalv/Manifest +++ b/media-sound/jalv/Manifest @@ -2,3 +2,4 @@ DIST jalv-1.0.0.tar.bz2 119985 SHA256 f9407e038413f6351a67b53cb47ea658d523ffec58 DIST jalv-1.2.0.tar.bz2 103393 SHA256 57e7e1510b594b112ddde07e29a46877c2db463483c6fba55a12738988cabd27 SHA512 b6069eb97953082cb8013cbe605dd5f9b0c7713c8abdca3101846e932ca1222618523153d5b9b5cf8db4bcec528543e4f69557f42375239f8b5b759a9bb3b58c WHIRLPOOL 88da65a45eecfa8be1f619439289ca05ff3e5ce08b7f1fa8e164cae794f7890cec6769222c1ccfff87ae2f753e410d98f20dcabc0f895a5145f0e685f1cf5e2b DIST jalv-1.4.0.tar.bz2 115677 SHA256 4061031d8052eff74fdacce995d88b2b1c4ef7a012e23c912006fd081d3209c3 SHA512 3a02eba555839ae2f9c7880745d03f7daa2a6c8db56db65fce7916417f3fac04cef5b1130cfe3787094f12eeb2a5190f6d71ed7defc34bc227f888a79e791eb3 WHIRLPOOL 02db30318966e0a80fc401117054b7c7929e24edd76fec24cf3397d8bf9d2186cf61ea6b32fa8c20ac314d8675aeb9e592fde6349d2383c13b091598caad6a24 DIST jalv-1.4.4.tar.bz2 133234 SHA256 8e1e9c04dc9e7b787948aa96f2fe6ff1e04b87ea0cf6290d3ec8d52c4a0e14c7 SHA512 5fdead5375eb6d03c64fa35204b4ba00c48dc29fb53567558e5674a956a3f751e0d3b8c0012f6c105d69f69a8502f4996e5a0d1cbc9c1fbdd9b6a780b3cb2960 WHIRLPOOL 25eb71705f160ccefb8e320f1790b9c70a1a4c13ef9570d64c0f3120b5c2b46a07a91c83e36fc3b20df695cfbd73170a90231a9565889063ba6621aa3ec32867 +DIST jalv-1.4.6.tar.bz2 133878 SHA256 893e0cd7ba6090d615646eec197b4302f0b7832ab69e3417e2f10f4b0e6630b8 SHA512 d31e4d5aa91513f977a54787af0dec0f01f5befdf14579063a8389141a02eb0218340ad13e174643da859f4c621c4d4711a765627dfd77b085e400378ea4d8bc WHIRLPOOL a3566ea6e3f080fc56d67d1a527412e30007624790f18a655bd7da42afe3108352244bb1c85c3d08f301b69a4f500d264bc226102b4ea97f1e070e95df24aff3 diff --git a/media-sound/jalv/jalv-1.4.6.ebuild b/media-sound/jalv/jalv-1.4.6.ebuild new file mode 100644 index 000000000000..f55b18e87754 --- /dev/null +++ b/media-sound/jalv/jalv-1.4.6.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/jalv/jalv-1.4.6.ebuild,v 1.1 2014/12/03 16:47:35 aballier Exp $ + +EAPI=4 + +inherit waf-utils + +DESCRIPTION="Simple but fully featured LV2 host for Jack" +HOMEPAGE="http://drobilla.net/software/jalv/" +SRC_URI="http://download.drobilla.net/${P}.tar.bz2" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64" +IUSE="gtk gtk2 gtkmm qt4" + +RDEPEND=">=media-libs/lv2-1.6.0 + >=media-libs/lilv-0.15.1 + >=dev-libs/serd-0.14.0 + >=dev-libs/sord-0.12.0 + >=media-libs/suil-0.6.0 + >=media-libs/sratom-0.4.0 + >=media-sound/jack-audio-connection-kit-0.120.0 + gtk? ( >=x11-libs/gtk+-3.0.0:3 ) + gtk2? ( >=x11-libs/gtk+-2.18.0:2 ) + gtkmm? ( >=dev-cpp/gtkmm-2.20.0:2.4 ) + qt4? ( dev-qt/qtgui:4 )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +DOCS=( "AUTHORS" "NEWS" "README" ) + +src_configure() { + # otherwise automagic + use gtk || sed -i -e 's/gtk+-3.0/DiSaBlEd/' wscript + use gtk2 || sed -i -e 's/gtk+-2.0/DiSaBlEd/' wscript + use gtkmm || sed -i -e 's/gtkmm-2.4/DiSaBlEd/' wscript + use qt4 || sed -i -e 's/QtGui/DiSaBlEd/' wscript + waf-utils_src_configure \ + "--docdir=/usr/share/doc/${PF}" +} diff --git a/media-sound/mpd/Manifest b/media-sound/mpd/Manifest index 6c3faa40599a..3922df63d88b 100644 --- a/media-sound/mpd/Manifest +++ b/media-sound/mpd/Manifest @@ -2,3 +2,4 @@ DIST mpd-0.17.6.tar.bz2 585951 SHA256 9788948175157dc1c4da4a7d36e04a4b4812cb3a79 DIST mpd-0.18.10.tar.xz 584312 SHA256 dd506ca1d81b61ec10be6a3e7181869bd5adf0ffbb0a2e948f730826933f1c81 SHA512 120ebbcae7de24f2d660ab7d50cdd7e80ab39da2c9479cda0ad117f8f0729c0a87fa4363f06866cf6e154d6f44e09ce8f3e4f3fff240de12eb600eaec351c140 WHIRLPOOL b5e0e38903d1bf6e6bd12694944ac909c09de4e66b4d63b54e2865886206aa94577070622e8e45f09ade2674afc420778e5885729cbe49d412ca597e005de29e DIST mpd-0.18.16.tar.xz 587724 SHA256 7524c7a7695acfc6a5ce4117b30c74b172cef681a4bb9032db20c3671ad5765a SHA512 bddd0236066bae97ef690b24a0eac46d892fe10ce7c5455634cb8b84210bf2ceb1b5ee8c7754fcf581de7fbd165c9b805f179e243b88bc87e6254e72fa6c8f45 WHIRLPOOL cdf7488fee33b18880b24686bcc86b8d4696023e72011d1310d81f067a8ae99590441c61214e5e371b3cd4da6fb99575963343765c9defa4fb3b41582193c407 DIST mpd-0.19.1.tar.xz 701192 SHA256 8b3afcd440181c9bd18b229b5974e529d59648344dd371370d6f7d62ec2847c5 SHA512 d22853147f22dc1f879bbb03627b43de30203006734f4a0eb7203e80a48aefc2264cf518fa165af97b5888c07f1809561730e96e40028c5bcf6511c4049c17fd WHIRLPOOL b54325d4b1a72ea326f992dc7910d750c5bff06938d4076260e3ccc3d89f1eb02e1574ba3f172710c7f33b76814d11ce8d043448452b65534074a1bf4ecf4cc4 +DIST mpd-0.19.3.tar.xz 699940 SHA256 fee3f3c59b5806767f23f7962621be7a62d4fcb852fff6b9ed6bbb5598a556d3 SHA512 5981e6c5507170a6c67396efde70976b1c6feced82bf0bc373a303a0d69ed28b2cbce916b3c7bfa6676a03c68dd78904e33b1170357315491e359a0e2f684e5e WHIRLPOOL b872484a20cc9d1eb256c6e1fd3d65b03adf5350a1367c1f418199953bfcab58abba13be6644149788d6fc927a19531682838f8056faf08ca1440b6dd2832f97 diff --git a/media-sound/mpd/mpd-0.19.3.ebuild b/media-sound/mpd/mpd-0.19.3.ebuild new file mode 100644 index 000000000000..35a521ff4d38 --- /dev/null +++ b/media-sound/mpd/mpd-0.19.3.ebuild @@ -0,0 +1,237 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.19.3.ebuild,v 1.1 2014/12/03 15:48:51 angelos Exp $ + +EAPI=5 +inherit eutils flag-o-matic linux-info multilib readme.gentoo systemd user + +DESCRIPTION="The Music Player Daemon (mpd)" +HOMEPAGE="http://www.musicpd.org" +SRC_URI="http://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sh ~x86 ~x86-fbsd ~x64-macos" +IUSE="adplug +alsa ao audiofile bzip2 cdio +curl debug expat faad +fifo +ffmpeg + flac fluidsynth +glib gme +icu +id3tag +inotify +ipv6 jack lame mms + libmpdclient libsamplerate libsoxr +mad mikmod modplug mp4v2 mpg123 musepack + +network nfs ogg openal opus oss pipe pulseaudio recorder samba selinux sid + sndfile soundcloud sqlite systemd tcpd twolame unicode upnp vorbis wavpack + wildmidi zeroconf zip" + +OUTPUT_PLUGINS="alsa ao fifo jack network openal oss pipe pulseaudio recorder" +DECODER_PLUGINS="adplug audiofile faad ffmpeg flac fluidsynth mad mikmod + modplug mpg123 musepack ogg flac sid vorbis wavpack wildmidi" +ENCODER_PLUGINS="audiofile flac lame twolame vorbis" + +REQUIRED_USE="|| ( ${OUTPUT_PLUGINS} ) + || ( ${DECODER_PLUGINS} ) + ao? ( glib ) + gme? ( glib ) + jack? ( glib ) + mp4v2? ( faad ) + network? ( || ( ${ENCODER_PLUGINS} ) + glib ) + recorder? ( || ( ${ENCODER_PLUGINS} ) ) + sid? ( glib ) + soundcloud? ( glib ) + sqlite? ( glib ) + opus? ( ogg ) + upnp? ( expat ) + vorbis? ( glib ) + wavpack? ( glib )" + +CDEPEND="!=media-libs/game-music-emu-0.6.0_pre20120802 ) + icu? ( dev-libs/icu:= ) + id3tag? ( media-libs/libid3tag ) + jack? ( media-sound/jack-audio-connection-kit ) + lame? ( network? ( media-sound/lame ) ) + libmpdclient? ( media-libs/libmpdclient ) + libsamplerate? ( media-libs/libsamplerate ) + mad? ( media-libs/libmad ) + mikmod? ( media-libs/libmikmod:0 ) + mms? ( media-libs/libmms ) + modplug? ( media-libs/libmodplug ) + mpg123? ( >=media-sound/mpg123-1.12.2 ) + mp4v2? ( media-libs/libmp4v2 ) + musepack? ( media-sound/musepack-tools ) + network? ( >=media-libs/libshout-2 + !lame? ( !vorbis? ( media-libs/libvorbis ) ) ) + nfs? ( net-fs/libnfs ) + ogg? ( media-libs/libogg ) + openal? ( media-libs/openal ) + opus? ( media-libs/opus ) + pulseaudio? ( media-sound/pulseaudio ) + samba? ( net-fs/samba[smbclient] ) + sid? ( media-libs/libsidplay:2 ) + sndfile? ( media-libs/libsndfile ) + soundcloud? ( >=dev-libs/yajl-2 ) + libsoxr? ( media-libs/soxr ) + sqlite? ( dev-db/sqlite:3 ) + systemd? ( sys-apps/systemd ) + tcpd? ( sys-apps/tcp-wrappers ) + twolame? ( media-sound/twolame ) + upnp? ( net-libs/libupnp ) + vorbis? ( media-libs/libvorbis ) + wavpack? ( media-sound/wavpack ) + wildmidi? ( media-sound/wildmidi ) + zeroconf? ( net-dns/avahi[dbus] ) + zip? ( dev-libs/zziplib )" +DEPEND="${CDEPEND} + dev-libs/boost + virtual/pkgconfig" +RDEPEND="${CDEPEND} + selinux? ( sec-policy/selinux-mpd ) +" + +pkg_setup() { + use network || ewarn "Icecast and Shoutcast streaming needs networking." + use fluidsynth && ewarn "Using fluidsynth is discouraged by upstream." + + enewuser mpd "" "" "/var/lib/mpd" audio + + if use inotify; then + CONFIG_CHECK="~INOTIFY_USER" + ERROR_INOTIFY_USER="${P} requires inotify in-kernel support." + linux-info_pkg_setup + fi +} + +src_prepare() { + DOC_CONTENTS="If you will be starting mpd via /etc/init.d/mpd, please make + sure that MPD's pid_file is _set_." + + cp -f doc/mpdconf.example doc/mpdconf.dist || die "cp failed" + epatch "${FILESDIR}"/${PN}-0.18.conf.patch +} + +src_configure() { + local mpdconf="--enable-database --disable-roar --disable-documentation + --enable-dsd --enable-largefile --disable-despotify --disable-osx + --disable-shine-encoder --disable-solaris-output --enable-tcp + --enable-un --disable-werror + --docdir=${EPREFIX}/usr/share/doc/${PF}" + + if use network; then + mpdconf+=" --enable-shout $(use_enable vorbis vorbis-encoder) + --enable-httpd-output $(use_enable lame lame-encoder) + $(use_enable twolame twolame-encoder) + $(use_enable audiofile wave-encoder)" + else + mpdconf+=" --disable-shout --disable-vorbis-encoder + --disable-httpd-output --disable-lame-encoder + --disable-twolame-encoder --disable-wave-encoder" + fi + + if use samba || use upnp; then + mpdconf+=" --enable-neighbor-plugins" + fi + + append-lfs-flags + append-ldflags "-L/usr/$(get_libdir)/sidplay/builders" + + econf \ + $(use_enable libmpdclient) \ + $(use_enable expat) \ + $(use_enable upnp) \ + $(use_enable adplug) \ + $(use_enable alsa) \ + $(use_enable ao) \ + $(use_enable audiofile) \ + $(use_enable bzip2) \ + $(use_enable cdio cdio-paranoia) \ + $(use_enable cdio iso9660) \ + $(use_enable curl) \ + $(use_enable samba smbclient) \ + $(use_enable nfs) \ + $(use_enable debug) \ + $(use_enable ffmpeg) \ + $(use_enable fifo) \ + $(use_enable flac) \ + $(use_enable fluidsynth) \ + $(use_enable gme) \ + $(use_enable id3tag id3) \ + $(use_enable inotify) \ + $(use_enable ipv6) \ + $(use_enable jack) \ + $(use_enable soundcloud) \ + $(use_enable tcpd libwrap) \ + $(use_enable libsamplerate lsr) \ + $(use_enable libsoxr soxr) \ + $(use_enable mad) \ + $(use_enable mikmod) \ + $(use_enable mms) \ + $(use_enable modplug) \ + $(use_enable mp4v2) \ + $(use_enable musepack mpc) \ + $(use_enable mpg123) \ + $(use_enable openal) \ + $(use_enable opus) \ + $(use_enable oss) \ + $(use_enable pipe pipe-output) \ + $(use_enable pulseaudio pulse) \ + $(use_enable recorder recorder-output) \ + $(use_enable sid sidplay) \ + $(use_enable sndfile sndfile) \ + $(use_enable sqlite) \ + $(use_enable systemd systemd-daemon) \ + $(use_enable vorbis) \ + $(use_enable wavpack) \ + $(use_enable wildmidi) \ + $(use_enable zip zzip) \ + $(use_enable icu) \ + $(use_enable glib) \ + $(use_enable faad aac) \ + $(use_with zeroconf zeroconf avahi) \ + "$(systemd_with_unitdir)" \ + ${mpdconf} +} + +src_install() { + emake DESTDIR="${D}" install + + insinto /etc + newins doc/mpdconf.dist mpd.conf + + newinitd "${FILESDIR}"/${PN}2.init ${PN} + + if use unicode; then + sed -i -e 's:^#filesystem_charset.*$:filesystem_charset "UTF-8":' \ + "${ED}"/etc/mpd.conf || die "sed failed" + fi + + insinto /etc/logrotate.d + newins "${FILESDIR}"/${PN}.logrotate ${PN} + + use prefix || diropts -m0755 -o mpd -g audio + dodir /var/lib/mpd + keepdir /var/lib/mpd + dodir /var/lib/mpd/music + keepdir /var/lib/mpd/music + dodir /var/lib/mpd/playlists + keepdir /var/lib/mpd/playlists + + readme.gentoo_create_doc +} + +pkg_postinst() { + readme.gentoo_print_elog + + # also change the homedir if the user has existed before + usermod -d "/var/lib/mpd" mpd +} diff --git a/media-sound/qtractor/Manifest b/media-sound/qtractor/Manifest index 0e64639c8eb0..6c11248ebcf2 100644 --- a/media-sound/qtractor/Manifest +++ b/media-sound/qtractor/Manifest @@ -1,5 +1,2 @@ -DIST qtractor-0.5.10.tar.gz 1263320 SHA256 fa2393a0dc18ba52b9c513ffa56d14cfb1aca4312e6361db80f3ddafef2cb659 SHA512 d86d357c9cb81fdff733ca2144a260b9e682f8b53803fcaa4f10ba592dc6c9473f82eccc156f0baf0d9998326eb21788f9214c014f6112502abb9d56e13c6315 WHIRLPOOL 0ebe1b0ec6c05248910f6ee26742d8984b7a00e7ae472bb930e1085448a003328826477a6d7e6873d4a0d97cf85ee41eb359252e1e5dd9affad5a4e54fa38578 -DIST qtractor-0.5.12.tar.gz 1307207 SHA256 8c2126deab04972da422d56a6b2eb2dbf63db15c2b8f0d4a6917493868bac279 SHA512 06f4afece7d71344ecd5ef53ae3b971d35e07237d4c2c647af48813309902fd87b16f7be060556d02b251316f9fd4c2ecc6ac6422640c7284fbd1d5befb614cc WHIRLPOOL 1e785bfa8dda23c122453f06093cb25c73aced79c77da7b34b11e9881230fc59a62edaefbbd8690da89e33a7378b1d5624e00dcbfd1d3d230b813992a50ee803 -DIST qtractor-0.5.9.tar.gz 1191802 SHA256 c8a0ebf9d237d99e86890579787fa2612090306778f3eaf1a5386a2f179881d4 SHA512 e13680e480db9798a1103fcc0519e9908a8749aabb35a430b4e6a32556250e1778fa12fbfe8b17c11565a84bc566f273318490a9976bc699a86c62cb1291ed48 WHIRLPOOL f1ca8d8dd2d46c130f43f0b4218e96d759c43e405ea5869bbede5d651046a83ec360f3486392f8264b20acd48e2537fa1518563eac6a81e56118588874bbae89 -DIST qtractor-0.6.0.tar.gz 1316242 SHA256 1910bb8009a29d0de65fe74b98a7d9cac319f0e8dcb45da6b6da7f1c1778862b SHA512 2611d9500333da5d07b3f0740e0ce347cb226f1276e7994094bdd3b34f45932a981912d752b82e2b57d3b33df4186f887e07f5279642fe57bdbf96bc517ea8e9 WHIRLPOOL aefab34d025527a7ac49d6d48e553d0d86721450638b7587dc82575b115cea84a7fa482837e85ecc29706cfc75cf98c9638937297bf34c5150899aae90bf1080 DIST qtractor-0.6.3.tar.gz 1380485 SHA256 82e96718964c8dca8f7f2a08483e4500fa5c6e37110ae0d658df3db8076a55d3 SHA512 4615a10f6a223d20f2a8e7b1b2ac43285d96f47fadd6d4e9cbdc07d115e94651568ed942b8b5825a687d78bfe47b8f84b998ca6cfba0b8048b71b5f2913f2ff0 WHIRLPOOL 0f8a97caed1736b603b74513608e3e89c4a4f3237323c4e5f943ae9d1ee89aff2f4511d7536cccd400c8a784c5bcabe9f1d19f8fd8840ae6eecbec7f668c5176 +DIST qtractor-0.6.4.tar.gz 1377713 SHA256 e4f3c792b72e96a0d323b3b4bb1c849edab1363a70a9369369afe79a3a4bf5f1 SHA512 75e7a2bd831b3a5f70dfb21b16111ac61cc06d5832a49f13c16b8ae59079a950ca4242a1cdf3d0c082419fbfbc2f67dfeb9de8e68a604ec9f732934a16203a43 WHIRLPOOL 17ee3b9549089b2b2feb30984f054b3d70acc5eaccb1ae4dee04258693d26a87bdc814478f4f481eb179c3be2196dba78bb18bef778527bff802be1a1f1b04f6 diff --git a/media-sound/qtractor/qtractor-0.5.12.ebuild b/media-sound/qtractor/qtractor-0.5.12.ebuild deleted file mode 100644 index b3050255fd96..000000000000 --- a/media-sound/qtractor/qtractor-0.5.12.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/qtractor-0.5.12.ebuild,v 1.2 2014/08/10 21:10:41 slyfox Exp $ - -EAPI=2 - -inherit qt4-r2 flag-o-matic - -DESCRIPTION="Qtractor is an Audio/MIDI multi-track sequencer" -HOMEPAGE="http://qtractor.sourceforge.net/" -SRC_URI="mirror://sourceforge/qtractor/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -IUSE="debug dssi libsamplerate mad osc rubberband vorbis sse zlib" - -RDEPEND=">=dev-qt/qtcore-4.2:4 - >=dev-qt/qtgui-4.7:4 - media-libs/alsa-lib - media-libs/libsndfile - media-sound/jack-audio-connection-kit - media-libs/ladspa-sdk - media-libs/lilv - media-libs/lv2 - media-libs/suil - dssi? ( media-libs/dssi ) - mad? ( media-libs/libmad ) - libsamplerate? ( media-libs/libsamplerate ) - osc? ( media-libs/liblo ) - rubberband? ( media-libs/rubberband ) - vorbis? ( media-libs/libvorbis ) - zlib? ( sys-libs/zlib )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS="README ChangeLog TODO AUTHORS" - -src_configure() { - econf \ - $(use_enable mad libmad) \ - $(use_enable libsamplerate) \ - $(use_enable vorbis libvorbis) \ - $(use_enable osc liblo) \ - --enable-ladspa \ - $(use_enable dssi) \ - --enable-lilv \ - $(use_enable rubberband librubberband) \ - $(use_enable sse) \ - $(use_enable zlib libz) \ - $(use_enable debug) - eqmake4 qtractor.pro -o qtractor.mak -} diff --git a/media-sound/qtractor/qtractor-0.5.9.ebuild b/media-sound/qtractor/qtractor-0.5.9.ebuild deleted file mode 100644 index 7cbf2051b21a..000000000000 --- a/media-sound/qtractor/qtractor-0.5.9.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/qtractor-0.5.9.ebuild,v 1.2 2014/08/10 21:10:41 slyfox Exp $ - -EAPI=2 - -inherit qt4-r2 flag-o-matic - -DESCRIPTION="Qtractor is an Audio/MIDI multi-track sequencer" -HOMEPAGE="http://qtractor.sourceforge.net/" -SRC_URI="mirror://sourceforge/qtractor/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -IUSE="debug dssi libsamplerate mad osc rubberband vorbis sse zlib" - -RDEPEND=">=dev-qt/qtcore-4.2:4 - >=dev-qt/qtgui-4.7:4 - media-libs/alsa-lib - media-libs/libsndfile - media-sound/jack-audio-connection-kit - media-libs/ladspa-sdk - media-libs/lilv - media-libs/lv2 - media-libs/suil - dssi? ( media-libs/dssi ) - mad? ( media-libs/libmad ) - libsamplerate? ( media-libs/libsamplerate ) - osc? ( media-libs/liblo ) - rubberband? ( media-libs/rubberband ) - vorbis? ( media-libs/libvorbis ) - zlib? ( sys-libs/zlib )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS="README ChangeLog TODO AUTHORS" - -src_configure() { - econf \ - $(use_enable mad libmad) \ - $(use_enable libsamplerate) \ - $(use_enable vorbis libvorbis) \ - $(use_enable osc liblo) \ - --enable-ladspa \ - $(use_enable dssi) \ - --enable-lilv \ - $(use_enable rubberband librubberband) \ - $(use_enable sse) \ - $(use_enable zlib libz) \ - $(use_enable debug) - eqmake4 qtractor.pro -o qtractor.mak -} diff --git a/media-sound/qtractor/qtractor-0.6.0.ebuild b/media-sound/qtractor/qtractor-0.6.0.ebuild deleted file mode 100644 index d8cf18e2608e..000000000000 --- a/media-sound/qtractor/qtractor-0.6.0.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/qtractor-0.6.0.ebuild,v 1.2 2014/08/10 21:10:41 slyfox Exp $ - -EAPI=2 - -inherit qt4-r2 flag-o-matic - -DESCRIPTION="Qtractor is an Audio/MIDI multi-track sequencer" -HOMEPAGE="http://qtractor.sourceforge.net/" -SRC_URI="mirror://sourceforge/qtractor/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -IUSE="debug dssi libsamplerate mad osc rubberband vorbis sse zlib" - -RDEPEND=">=dev-qt/qtcore-4.2:4 - >=dev-qt/qtgui-4.7:4 - media-libs/alsa-lib - media-libs/libsndfile - media-sound/jack-audio-connection-kit - media-libs/ladspa-sdk - media-libs/lilv - media-libs/lv2 - media-libs/suil - dssi? ( media-libs/dssi ) - mad? ( media-libs/libmad ) - libsamplerate? ( media-libs/libsamplerate ) - osc? ( media-libs/liblo ) - rubberband? ( media-libs/rubberband ) - vorbis? ( media-libs/libvorbis ) - zlib? ( sys-libs/zlib )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS="README ChangeLog TODO AUTHORS" - -src_configure() { - econf \ - $(use_enable mad libmad) \ - $(use_enable libsamplerate) \ - $(use_enable vorbis libvorbis) \ - $(use_enable osc liblo) \ - --enable-ladspa \ - $(use_enable dssi) \ - --enable-lilv \ - $(use_enable rubberband librubberband) \ - $(use_enable sse) \ - $(use_enable zlib libz) \ - $(use_enable debug) - eqmake4 qtractor.pro -o qtractor.mak -} diff --git a/media-sound/qtractor/qtractor-0.6.3.ebuild b/media-sound/qtractor/qtractor-0.6.3.ebuild index 1258dbfa8af3..4287469012f0 100644 --- a/media-sound/qtractor/qtractor-0.6.3.ebuild +++ b/media-sound/qtractor/qtractor-0.6.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/qtractor-0.6.3.ebuild,v 1.1 2014/11/02 17:55:28 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/qtractor-0.6.3.ebuild,v 1.2 2014/12/03 16:49:58 aballier Exp $ EAPI=2 @@ -22,7 +22,7 @@ RDEPEND=">=dev-qt/qtcore-4.2:4 media-libs/libsndfile media-sound/jack-audio-connection-kit media-libs/ladspa-sdk - media-libs/lilv + >=media-libs/lilv-0.16.0 media-libs/lv2 media-libs/suil dssi? ( media-libs/dssi ) diff --git a/media-sound/qtractor/qtractor-0.5.10.ebuild b/media-sound/qtractor/qtractor-0.6.4.ebuild similarity index 94% rename from media-sound/qtractor/qtractor-0.5.10.ebuild rename to media-sound/qtractor/qtractor-0.6.4.ebuild index 521196baca35..4937b5d20bab 100644 --- a/media-sound/qtractor/qtractor-0.5.10.ebuild +++ b/media-sound/qtractor/qtractor-0.6.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/qtractor-0.5.10.ebuild,v 1.2 2014/08/10 21:10:41 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/qtractor-0.6.4.ebuild,v 1.1 2014/12/03 16:53:15 aballier Exp $ EAPI=2 @@ -22,7 +22,7 @@ RDEPEND=">=dev-qt/qtcore-4.2:4 media-libs/libsndfile media-sound/jack-audio-connection-kit media-libs/ladspa-sdk - media-libs/lilv + >=media-libs/lilv-0.16.0 media-libs/lv2 media-libs/suil dssi? ( media-libs/dssi ) diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index 9641dd8c0795..cc215963fc9c 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Wed, 03 Dec 2014 12:07:01 +0000 +Thu, 04 Dec 2014 05:37:02 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index 19300ca7a856..a021fc98e7fa 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Wed, 03 Dec 2014 12:07:02 +0000 +Thu, 04 Dec 2014 05:37:03 +0000 diff --git a/metadata/md5-cache/app-admin/lnav-0.7.1 b/metadata/md5-cache/app-admin/lnav-0.7.1 new file mode 100644 index 000000000000..b3f55195e1f2 --- /dev/null +++ b/metadata/md5-cache/app-admin/lnav-0.7.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure +DEPEND=app-arch/bzip2 dev-db/sqlite:3 dev-libs/libpcre[cxx] sys-libs/ncurses[unicode?] sys-libs/readline sys-libs/zlib +DESCRIPTION=A curses-based tool for viewing and analyzing log files +EAPI=5 +HOMEPAGE=http://lnav.org +IUSE=unicode +KEYWORDS=~amd64 ~x86 +LICENSE=BSD-2 +RDEPEND=app-arch/bzip2 dev-db/sqlite:3 dev-libs/libpcre[cxx] sys-libs/ncurses[unicode?] sys-libs/readline sys-libs/zlib +SLOT=0 +SRC_URI=https://github.com/tstack/lnav/releases/download/v0.7.1/lnav-0.7.1.tar.gz +_eclasses_=multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac +_md5_=6db58614fa3a3a03684c92ad7c0e128c diff --git a/metadata/md5-cache/app-admin/salt-2014.7.0-r1 b/metadata/md5-cache/app-admin/salt-2014.7.0-r1 new file mode 100644 index 000000000000..3dfc14a4c5fa --- /dev/null +++ b/metadata/md5-cache/app-admin/salt-2014.7.0-r1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] test? ( dev-python/pip[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/virtualenv[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/timelib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/SaltTesting-2014.4.24[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] sys-apps/pciutils dev-python/jinja[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/msgpack-0.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/markupsafe[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/requests-1.0.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] libcloud? ( >=dev-python/libcloud-0.14.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) mako? ( dev-python/mako[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) libvirt? ( dev-python/libvirt-python[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) raet? ( dev-python/libnacl[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/ioflo[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/raet[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) zeromq? ( >=dev-python/pyzmq-2.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) api? ( || ( dev-python/cherrypy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] www-servers/tornado[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ) mongodb? ( dev-python/pymongo[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) keyring? ( dev-python/keyring[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) timelib? ( dev-python/timelib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) nova? ( >=dev-python/python-novaclient-2.17.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) gnupg? ( dev-python/python-gnupg[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:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/pkgconfig +DESCRIPTION=Salt is a remote execution and configuration manager +EAPI=5 +HOMEPAGE=http://saltstack.org/ +IUSE=api ldap libcloud libvirt gnupg keyring mako mongodb mysql nova openssl redis timelib raet +zeromq test python_targets_python2_7 +KEYWORDS=~x86 ~amd64 +LICENSE=Apache-2.0 +RDEPEND=sys-apps/pciutils dev-python/jinja[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/msgpack-0.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/markupsafe[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/requests-1.0.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] libcloud? ( >=dev-python/libcloud-0.14.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) mako? ( dev-python/mako[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) libvirt? ( dev-python/libvirt-python[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) raet? ( dev-python/libnacl[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/ioflo[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/raet[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) zeromq? ( >=dev-python/pyzmq-2.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) api? ( || ( dev-python/cherrypy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] www-servers/tornado[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ) mongodb? ( dev-python/pymongo[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) keyring? ( dev-python/keyring[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) timelib? ( dev-python/timelib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) nova? ( >=dev-python/python-novaclient-2.17.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) gnupg? ( dev-python/python-gnupg[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:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( raet zeromq ) || ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=mirror://pypi/s/salt/salt-2014.7.0.tar.gz +_eclasses_=distutils-r1 b3dd8b90e41a1570ee3117a7c1adb598 eutils 6faef4c127028ccbba3a11400d24ae34 multibuild ddc59d206214ef1c240093e1bb2513cf multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 b63f5ef61876823ab0bd05d867697d75 python-utils-r1 d5328656d500f65898a5f51634722f61 systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac +_md5_=06719972902c919b5bef2d627f6ecafd diff --git a/metadata/md5-cache/app-admin/salt-9999 b/metadata/md5-cache/app-admin/salt-9999 index 977ac2875d2c..72e3507a7d9e 100644 --- a/metadata/md5-cache/app-admin/salt-9999 +++ b/metadata/md5-cache/app-admin/salt-9999 @@ -9,4 +9,4 @@ RDEPEND=sys-apps/pciutils dev-python/jinja[python_targets_python2_7(-)?,-python_ REQUIRED_USE=|| ( raet zeromq ) || ( python_targets_python2_7 ) SLOT=0 _eclasses_=distutils-r1 b3dd8b90e41a1570ee3117a7c1adb598 eutils 6faef4c127028ccbba3a11400d24ae34 git-r3 6ebae45064cb04482f3c702632dd9528 multibuild ddc59d206214ef1c240093e1bb2513cf multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 b63f5ef61876823ab0bd05d867697d75 python-utils-r1 d5328656d500f65898a5f51634722f61 systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac -_md5_=46ce80d7a222055f37ac5251954ac2e3 +_md5_=e29143410346a4054a9675c1330f848c diff --git a/metadata/md5-cache/app-arch/pbzip2-1.1.10 b/metadata/md5-cache/app-arch/pbzip2-1.1.10 new file mode 100644 index 000000000000..5835b34206b1 --- /dev/null +++ b/metadata/md5-cache/app-arch/pbzip2-1.1.10 @@ -0,0 +1,13 @@ +DEFINED_PHASES=install prepare +DEPEND=!static? ( app-arch/bzip2 ) symlink? ( !app-arch/lbzip2[symlink] ) static? ( app-arch/bzip2[static-libs(+)] ) +DESCRIPTION=Parallel bzip2 (de)compressor using libbz2 +EAPI=5 +HOMEPAGE=http://compression.ca/pbzip2/ https://launchpad.net/pbzip2 +IUSE=static symlink +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos +LICENSE=BZIP2 +RDEPEND=!static? ( app-arch/bzip2 ) symlink? ( !app-arch/lbzip2[symlink] ) +SLOT=0 +SRC_URI=https://launchpad.net/pbzip2/1.1/1.1.10/+download/pbzip2-1.1.10.tar.gz +_eclasses_=eutils 6faef4c127028ccbba3a11400d24ae34 flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac +_md5_=3df03bd51f3c187020c88137b91769e0 diff --git a/metadata/md5-cache/app-portage/smart-live-rebuild-1.3.4.1 b/metadata/md5-cache/app-portage/smart-live-rebuild-1.3.4.1 new file mode 100644 index 000000000000..dce0f08608b6 --- /dev/null +++ b/metadata/md5-cache/app-portage/smart-live-rebuild-1.3.4.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:=[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=Check live packages for updates and emerge them as necessary +EAPI=5 +HOMEPAGE=https://bitbucket.org/mgorny/smart-live-rebuild/ +IUSE=python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 +KEYWORDS=~amd64 ~arm ~mips ~x86 ~x86-fbsd +LICENSE=BSD-2 +RDEPEND=>=app-portage/gentoopm-0.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(-)] 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:=[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=https://www.bitbucket.org/mgorny/smart-live-rebuild/downloads/smart-live-rebuild-1.3.4.1.tar.bz2 +_eclasses_=distutils-r1 b3dd8b90e41a1570ee3117a7c1adb598 eutils 6faef4c127028ccbba3a11400d24ae34 multibuild ddc59d206214ef1c240093e1bb2513cf multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 b63f5ef61876823ab0bd05d867697d75 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac +_md5_=30c085e9082f13d5576af87b8e4499ec diff --git a/metadata/md5-cache/app-text/poppler-0.28.1 b/metadata/md5-cache/app-text/poppler-0.28.1 index da9f668ddf98..09e27865a7e2 100644 --- a/metadata/md5-cache/app-text/poppler-0.28.1 +++ b/metadata/md5-cache/app-text/poppler-0.28.1 @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0/47 SRC_URI=http://poppler.freedesktop.org/poppler-0.28.1.tar.xz _eclasses_=cmake-utils e2cc76ea65ae78da8e4696dad93f5d29 eutils 6faef4c127028ccbba3a11400d24ae34 flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac -_md5_=8b84234dc1c89a29f65bfb0aacaf738b +_md5_=e8149e7e6f6a1e9477d8b6db868c3f19 diff --git a/metadata/md5-cache/app-text/poppler-9999 b/metadata/md5-cache/app-text/poppler-9999 index 1781b6ad1d6b..cb76699e3069 100644 --- a/metadata/md5-cache/app-text/poppler-9999 +++ b/metadata/md5-cache/app-text/poppler-9999 @@ -9,4 +9,4 @@ RDEPEND=>=media-libs/fontconfig-2.6.0 >=media-libs/freetype-2.3.9 sys-libs/zlib RESTRICT=test SLOT=0/9999 _eclasses_=cmake-utils e2cc76ea65ae78da8e4696dad93f5d29 eutils 6faef4c127028ccbba3a11400d24ae34 flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 git-r3 6ebae45064cb04482f3c702632dd9528 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac -_md5_=addcf8c067d35a877348ea33c999396d +_md5_=3c795d1e4b01d95aa24242c779f942f9 diff --git a/metadata/md5-cache/dev-db/mysql-5.5.41 b/metadata/md5-cache/dev-db/mysql-5.5.41 new file mode 100644 index 000000000000..a60638e1dd34 --- /dev/null +++ b/metadata/md5-cache/dev-db/mysql-5.5.41 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack +DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/gnuconfig sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/zlib-1.2.3 !bindist? ( >=sys-libs/readline-4.1 ) !dev-db/mariadb !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster jemalloc? ( dev-libs/jemalloc[static-libs?] ) tcmalloc? ( dev-util/google-perftools ) >=sys-libs/zlib-1.2.3[static-libs?] ssl? ( >=dev-libs/openssl-0.9.6d[static-libs?] ) systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.4.3 >=dev-util/cmake-2.6.3 +DESCRIPTION=A fast, multi-threaded, multi-user SQL database server +EAPI=5 +HOMEPAGE=http://www.mysql.com/ +IUSE=bindist debug embedded minimal +perl selinux ssl static static-libs test latin1 extraengine cluster max-idx-128 +community profiling jemalloc tcmalloc systemtap +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +LICENSE=GPL-2 +PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) ~virtual/mysql-5.5 +RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6d ) kernel_linux? ( sys-process/procps ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/zlib-1.2.3 !bindist? ( >=sys-libs/readline-4.1 ) !dev-db/mariadb !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster jemalloc? ( dev-libs/jemalloc[static-libs?] ) tcmalloc? ( dev-util/google-perftools ) >=sys-libs/zlib-1.2.3[static-libs?] ssl? ( >=dev-libs/openssl-0.9.6d[static-libs?] ) systemtap? ( >=dev-util/systemtap-1.3 ) kernel_linux? ( dev-libs/libaio ) !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) +REQUIRED_USE=tcmalloc? ( !jemalloc ) jemalloc? ( !tcmalloc ) minimal? ( !cluster !extraengine !embedded ) static? ( !ssl ) +SLOT=0 +SRC_URI=http://downloads.mysql.com/archives/mysql-5.5/mysql-5.5.41.tar.gz https://downloads.skysql.com/files/mysql-5.5/mysql-5.5.41.tar.gz mirror://mysql/Downloads/MySQL-5.5/mysql-5.5.41.tar.gz mirror://gentoo/mysql-extras-20141203-2105Z.tar.bz2 http://g3nt8.org/patches/mysql-extras-20141203-2105Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20141203-2105Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20141203-2105Z.tar.bz2 http://dev.gentoo.org/~grknight/distfiles/mysql-extras-20141203-2105Z.tar.bz2 +_eclasses_=cmake-utils e2cc76ea65ae78da8e4696dad93f5d29 eutils 6faef4c127028ccbba3a11400d24ae34 flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 gnuconfig 00a0530e40148c254cebb925df0e87ef multilib 3bf24e6abb9b76d9f6c20600f0b716bf mysql-cmake 1bc60850e6eb816ed20370329cfe5331 mysql-v2 99a4b41fb9b05d534873b1d68bc0816e mysql_fx ab94d85c3c822792c72f7eeff96f2365 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac user f54e098dd38ba1c0847a13e685b87747 versionator cd0bcdb170807e4a1984115e9d53a26f +_md5_=735d8acb28ef3f4b025ab556ccc34f5f diff --git a/metadata/md5-cache/dev-db/mysql-5.6.22 b/metadata/md5-cache/dev-db/mysql-5.6.22 new file mode 100644 index 000000000000..5fd821c146f5 --- /dev/null +++ b/metadata/md5-cache/dev-db/mysql-5.6.22 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile config configure install postinst preinst prepare setup test unpack +DEPEND=|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 ) sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) ssl? ( >=dev-libs/openssl-1.0.0:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?,static-libs?] ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/zlib-1.2.3:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?,static-libs?] !dev-db/mariadb-native-client[mysqlcompat] jemalloc? ( dev-libs/jemalloc: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(-)?] ) tcmalloc? ( dev-util/google-perftools:0= ) systemtap? ( >=dev-util/systemtap-1.3:0= ) dev-libs/libedit: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-db/mariadb !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster virtual/yacc static? ( sys-libs/ncurses[static-libs] ) >=dev-util/cmake-2.8.9 +DESCRIPTION=A fast, multi-threaded, multi-user SQL database server +EAPI=5 +HOMEPAGE=http://www.mysql.com/ +IUSE=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 +community cluster debug embedded extraengine jemalloc latin1 max-idx-128 minimal +perl profiling selinux ssl systemtap static static-libs tcmalloc test +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +LICENSE=GPL-2 +PDEPEND=perl? ( >=dev-perl/DBD-mysql-2.9004 ) ~virtual/mysql-5.6 +RDEPEND=ssl? ( >=dev-libs/openssl-1.0.0:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?,static-libs?] ) kernel_linux? ( sys-process/procps:0= dev-libs/libaio:0= ) >=sys-apps/sed-4 >=sys-apps/texinfo-4.7-r1 >=sys-libs/zlib-1.2.3:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?,static-libs?] !dev-db/mariadb-native-client[mysqlcompat] jemalloc? ( dev-libs/jemalloc: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(-)?] ) tcmalloc? ( dev-util/google-perftools:0= ) systemtap? ( >=dev-util/systemtap-1.3:0= ) dev-libs/libedit: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-db/mariadb !dev-db/mariadb-galera !dev-db/percona-server !dev-db/mysql-cluster !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) abi_x86_32? ( !app-emulation/emul-linux-x86-db[-abi_x86_32(-)] ) +REQUIRED_USE=tcmalloc? ( !jemalloc ) jemalloc? ( !tcmalloc ) minimal? ( !cluster !extraengine !embedded ) static? ( !ssl ) +SLOT=0 +SRC_URI=http://downloads.mysql.com/archives/mysql-5.6/mysql-5.6.22.tar.gz mirror://mysql/Downloads/MySQL-5.6/mysql-5.6.22.tar.gz mirror://gentoo/mysql-extras-20141203-2105Z.tar.bz2 http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-20141203-2105Z.tar.bz2 http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-20141203-2105Z.tar.bz2 http://dev.gentoo.org/~grknight/distfiles/mysql-extras-20141203-2105Z.tar.bz2 +_eclasses_=cmake-utils e2cc76ea65ae78da8e4696dad93f5d29 eutils 6faef4c127028ccbba3a11400d24ae34 flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 multibuild ddc59d206214ef1c240093e1bb2513cf multilib 3bf24e6abb9b76d9f6c20600f0b716bf multilib-build 9eb4b5fb858228316d8bb32ada51f6a5 multilib-minimal 5bbdc77877c1aa3c6bd89ca3f9196d11 multiprocessing d7f2985a2c76c365ee20269db5261414 mysql-cmake 1bc60850e6eb816ed20370329cfe5331 mysql-multilib 5693e12764b90a7385eeaf3a67fe241e mysql_fx ab94d85c3c822792c72f7eeff96f2365 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac user f54e098dd38ba1c0847a13e685b87747 versionator cd0bcdb170807e4a1984115e9d53a26f +_md5_=a787b68a3a11852ed58ee78e73480b8f diff --git a/metadata/md5-cache/dev-embedded/srecord-1.64 b/metadata/md5-cache/dev-embedded/srecord-1.64 new file mode 100644 index 000000000000..36cb4159c8d9 --- /dev/null +++ b/metadata/md5-cache/dev-embedded/srecord-1.64 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install prepare +DEPEND=dev-libs/libgcrypt:0 dev-libs/boost sys-apps/groff test? ( app-arch/sharutils ) !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=A collection of powerful tools for manipulating EPROM load files +EAPI=5 +HOMEPAGE=http://srecord.sourceforge.net/ +IUSE=static-libs test +KEYWORDS=~amd64 ~sparc ~x86 +LICENSE=GPL-3 +RDEPEND=dev-libs/libgcrypt:0 +SLOT=0 +SRC_URI=mirror://sourceforge/srecord/srecord-1.64.tar.gz +_eclasses_=autotools c118b9a8e93bfef124f2d7a2fe56a95e eutils 6faef4c127028ccbba3a11400d24ae34 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac +_md5_=097b6afe6fc62274bf5f9c0e4a3fa8cd diff --git a/metadata/md5-cache/dev-libs/libassuan-2.1.3 b/metadata/md5-cache/dev-libs/libassuan-2.1.3 new file mode 100644 index 000000000000..5fbe76cc857a --- /dev/null +++ b/metadata/md5-cache/dev-libs/libassuan-2.1.3 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install prepare +DEPEND=>=dev-libs/libgpg-error-1.8 +DESCRIPTION=IPC library used by GnuPG and GPGME +EAPI=5 +HOMEPAGE=http://www.gnupg.org/related_software/libassuan/index.en.html +IUSE=static-libs +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=GPL-3 LGPL-2.1 +RDEPEND=>=dev-libs/libgpg-error-1.8 +SLOT=0 +SRC_URI=mirror://gnupg/libassuan/libassuan-2.1.3.tar.bz2 +_eclasses_=eutils 6faef4c127028ccbba3a11400d24ae34 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac +_md5_=27784dbb2d92e1304ba73f52eef96d3f diff --git a/metadata/md5-cache/dev-ml/ocaml-ssl-0.4.7 b/metadata/md5-cache/dev-ml/ocaml-ssl-0.4.7 index 3537f095d2c2..34ee5bc5d334 100644 --- a/metadata/md5-cache/dev-ml/ocaml-ssl-0.4.7 +++ b/metadata/md5-cache/dev-ml/ocaml-ssl-0.4.7 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile install -DEPEND=dev-libs/openssl >=dev-lang/ocaml-3.10:= >=dev-ml/findlib-1.0.4-r1 +DEPEND=dev-libs/openssl[-bindist] >=dev-lang/ocaml-3.10:= >=dev-ml/findlib-1.0.4-r1 DESCRIPTION=OCaml bindings for OpenSSL EAPI=5 HOMEPAGE=http://savonet.sourceforge.net IUSE=doc KEYWORDS=~amd64 ~ppc ~x86 ~x86-fbsd LICENSE=LGPL-2.1 -RDEPEND=dev-libs/openssl >=dev-lang/ocaml-3.10:= +RDEPEND=dev-libs/openssl[-bindist] >=dev-lang/ocaml-3.10:= SLOT=0/0.4.7 SRC_URI=mirror://sourceforge/savonet/ocaml-ssl-0.4.7.tar.gz _eclasses_=eutils 6faef4c127028ccbba3a11400d24ae34 findlib 9cf6020ee5481f39f1aa566a323f9868 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac -_md5_=569295c8ca5f65cf5feabc9426256438 +_md5_=f842c6bce454953a2f2f75e1f1d62b26 diff --git a/metadata/md5-cache/dev-perl/SOAP-WSDL-3.2.0 b/metadata/md5-cache/dev-perl/SOAP-WSDL-3.2.0 new file mode 100644 index 000000000000..8ae295516739 --- /dev/null +++ b/metadata/md5-cache/dev-perl/SOAP-WSDL-3.2.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=>=dev-perl/Class-Load-0.200.0 >=dev-perl/Class-Std-Fast-0.0.5 virtual/perl-Data-Dumper dev-perl/TimeDate virtual/perl-File-Path virtual/perl-File-Spec virtual/perl-Getopt-Long dev-perl/libwww-perl virtual/perl-Scalar-List-Utils virtual/perl-Module-Build virtual/perl-Storable >=dev-perl/Template-Toolkit-2.180.0 dev-perl/TermReadKey dev-perl/URI dev-perl/XML-Parser virtual/perl-ExtUtils-MakeMaker test? ( virtual/perl-Test-Simple virtual/perl-Getopt-Long virtual/perl-Storable ) dev-lang/perl:=[-build(-)] +DESCRIPTION=SOAP with WSDL support +EAPI=5 +HOMEPAGE=http://search.cpan.org/dist/SOAP-WSDL/ +IUSE=test +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=>=dev-perl/Class-Load-0.200.0 >=dev-perl/Class-Std-Fast-0.0.5 virtual/perl-Data-Dumper dev-perl/TimeDate virtual/perl-File-Path virtual/perl-File-Spec virtual/perl-Getopt-Long dev-perl/libwww-perl virtual/perl-Scalar-List-Utils virtual/perl-Module-Build virtual/perl-Storable >=dev-perl/Template-Toolkit-2.180.0 dev-perl/TermReadKey dev-perl/URI dev-perl/XML-Parser dev-lang/perl:=[-build(-)] +SLOT=0 +SRC_URI=mirror://cpan/authors/id/S/SW/SWALTERS/SOAP-WSDL-v3.002.tar.gz +_eclasses_=eutils 6faef4c127028ccbba3a11400d24ae34 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 perl-module 28ca2b834dd6b64c9179af421c4d763e toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac unpacker f300a7ca9131b1024a79762e8edd3c52 +_md5_=ad78187c5361fdcb5c7b430d2e7ea59d diff --git a/metadata/md5-cache/dev-perl/Sys-CPU-0.610.0 b/metadata/md5-cache/dev-perl/Sys-CPU-0.610.0 new file mode 100644 index 000000000000..ee653a177ac4 --- /dev/null +++ b/metadata/md5-cache/dev-perl/Sys-CPU-0.610.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=dev-lang/perl:=[-build(-)] +DESCRIPTION=Access CPU info. number, etc on Win and UNIX +EAPI=5 +HOMEPAGE=http://search.cpan.org/dist/Sys-CPU/ +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=dev-lang/perl:=[-build(-)] +SLOT=0 +SRC_URI=mirror://cpan/authors/id/M/MZ/MZSANFORD/Sys-CPU-0.61.tar.gz +_eclasses_=eutils 6faef4c127028ccbba3a11400d24ae34 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 perl-module 28ca2b834dd6b64c9179af421c4d763e toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac unpacker f300a7ca9131b1024a79762e8edd3c52 +_md5_=aed3b9bf9f93ad7afc852f6a201ed057 diff --git a/metadata/md5-cache/dev-python/joblib-0.8.4 b/metadata/md5-cache/dev-python/joblib-0.8.4 new file mode 100644 index 000000000000..ebc9a53e44c6 --- /dev/null +++ b/metadata/md5-cache/dev-python/joblib-0.8.4 @@ -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_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(-)] ) 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:=[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=Tools to provide lightweight pipelining in Python +EAPI=5 +HOMEPAGE=http://pythonhosted.org/joblib/ +IUSE=doc test python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=BSD +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 ) python_targets_pypy? ( virtual/pypy:0= ) dev-lang/python-exec:=[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/j/joblib/joblib-0.8.4.tar.gz +_eclasses_=distutils-r1 b3dd8b90e41a1570ee3117a7c1adb598 eutils 6faef4c127028ccbba3a11400d24ae34 multibuild ddc59d206214ef1c240093e1bb2513cf multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 b63f5ef61876823ab0bd05d867697d75 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac +_md5_=ea958a0a0b4827f882c5def0587de5af diff --git a/metadata/md5-cache/dev-python/markdown-2.5.2 b/metadata/md5-cache/dev-python/markdown-2.5.2 new file mode 100644 index 000000000000..a78cc1ffd1a3 --- /dev/null +++ b/metadata/md5-cache/dev-python/markdown-2.5.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=test? ( dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,python_targets_pypy3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-),-python_single_target_pypy3(-)] dev-python/pyyaml[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,python_targets_pypy3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-),-python_single_target_pypy3(-)] ) 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= ) python_targets_pypy3? ( virtual/pypy3:0= ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,python_targets_pypy3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-),-python_single_target_pypy3(-)] +DESCRIPTION=Python implementation of the markdown markup language +EAPI=5 +HOMEPAGE=http://www.freewisdom.org/projects/python-markdown http://pypi.python.org/pypi/Markdown +IUSE=doc test pygments python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy python_targets_pypy3 +KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-linux ~x86-macos +LICENSE=|| ( BSD GPL-2 ) +RDEPEND=pygments? ( dev-python/pygments[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,python_targets_pypy3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-),-python_single_target_pypy3(-)] ) 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= ) python_targets_pypy3? ( virtual/pypy3:0= ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,python_targets_pypy3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-),-python_single_target_pypy3(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy python_targets_pypy3 ) +SLOT=0 +SRC_URI=mirror://pypi/M/Markdown/Markdown-2.5.2.tar.gz +_eclasses_=distutils-r1 b3dd8b90e41a1570ee3117a7c1adb598 eutils 6faef4c127028ccbba3a11400d24ae34 multibuild ddc59d206214ef1c240093e1bb2513cf multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 b63f5ef61876823ab0bd05d867697d75 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac +_md5_=b07e3ebb55503b8c62414d00b2edcb56 diff --git a/metadata/md5-cache/dev-python/py-notify-0.3.1 b/metadata/md5-cache/dev-python/py-notify-0.3.1 deleted file mode 100644 index 2c870b0e1b75..000000000000 --- a/metadata/md5-cache/dev-python/py-notify-0.3.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm prepare -DEPEND==dev-lang/python-2* -DESCRIPTION=Tools for implementing the Observer programming pattern in Python -EAPI=2 -HOMEPAGE=http://home.gna.org/py-notify -KEYWORDS=~amd64 ~x86 -LICENSE=LGPL-2.1 -RDEPEND==dev-lang/python-2* -SLOT=0 -SRC_URI=http://download.gna.org/py-notify/py-notify-0.3.1.tar.gz -_eclasses_=distutils 92e738ea29389cb3f34778d7a349ac71 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python cd022f89fef846d083fc994b9e3d8c04 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac -_md5_=869b98bef69a7358539c200a70ef3489 diff --git a/metadata/md5-cache/dev-python/py-notify-0.3.1-r1 b/metadata/md5-cache/dev-python/py-notify-0.3.1-r1 new file mode 100644 index 000000000000..056848f0c221 --- /dev/null +++ b/metadata/md5-cache/dev-python/py-notify-0.3.1-r1 @@ -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 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DESCRIPTION=Tools for implementing the Observer programming pattern in Python +EAPI=5 +HOMEPAGE=http://home.gna.org/py-notify +IUSE=examples test python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=LGPL-2.1 +RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=http://download.gna.org/py-notify/py-notify-0.3.1.tar.gz +_eclasses_=distutils-r1 b3dd8b90e41a1570ee3117a7c1adb598 eutils 6faef4c127028ccbba3a11400d24ae34 multibuild ddc59d206214ef1c240093e1bb2513cf multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 b63f5ef61876823ab0bd05d867697d75 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac +_md5_=e89c82394a45b82fbd681fd366dde7f9 diff --git a/metadata/md5-cache/dev-python/pylzma-0.4.6 b/metadata/md5-cache/dev-python/pylzma-0.4.6 new file mode 100644 index 000000000000..3fc6d776b3b5 --- /dev/null +++ b/metadata/md5-cache/dev-python/pylzma-0.4.6 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/m2crypto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/setuptools[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:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DESCRIPTION=Python bindings for the LZMA compression library +EAPI=5 +HOMEPAGE=http://www.joachim-bauch.de/projects/python/pylzma/ http://pypi.python.org/pypi/pylzma +IUSE=python_targets_python2_7 +KEYWORDS=~amd64 ~x86 ~x86-fbsd +LICENSE=LGPL-2.1 +RDEPEND=dev-python/m2crypto[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:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=mirror://pypi/p/pylzma/pylzma-0.4.6.tar.gz +_eclasses_=distutils-r1 b3dd8b90e41a1570ee3117a7c1adb598 eutils 6faef4c127028ccbba3a11400d24ae34 multibuild ddc59d206214ef1c240093e1bb2513cf multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 b63f5ef61876823ab0bd05d867697d75 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac +_md5_=c820639ab0f45324858acc2fa342b099 diff --git a/metadata/md5-cache/dev-python/pytz-2014.10 b/metadata/md5-cache/dev-python/pytz-2014.10 new file mode 100644 index 000000000000..52e56b481524 --- /dev/null +++ b/metadata/md5-cache/dev-python/pytz-2014.10 @@ -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_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] >=sys-libs/timezone-data-2014i 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:=[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=World timezone definitions for Python +EAPI=5 +HOMEPAGE=http://pythonhosted.org/pytz/ +IUSE=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 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos +LICENSE=MIT +RDEPEND=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(-)] >=sys-libs/timezone-data-2014i 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:=[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/pytz/pytz-2014.10.tar.bz2 +_eclasses_=distutils-r1 b3dd8b90e41a1570ee3117a7c1adb598 eutils 6faef4c127028ccbba3a11400d24ae34 multibuild ddc59d206214ef1c240093e1bb2513cf multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 b63f5ef61876823ab0bd05d867697d75 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac +_md5_=c9571fa5e0b68db73504d678c9a90e4e diff --git a/metadata/md5-cache/dev-python/requests-2.5.0-r1 b/metadata/md5-cache/dev-python/requests-2.5.0-r1 new file mode 100644 index 000000000000..8d2831c3f3db --- /dev/null +++ b/metadata/md5-cache/dev-python/requests-2.5.0-r1 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=app-misc/ca-certificates >=dev-python/chardet-2.2.1[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,python_targets_pypy3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-),-python_single_target_pypy3(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,python_targets_pypy3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-),-python_single_target_pypy3(-)] 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= ) python_targets_pypy3? ( virtual/pypy3:0= ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,python_targets_pypy3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-),-python_single_target_pypy3(-)] +DESCRIPTION=HTTP library for human beings +EAPI=5 +HOMEPAGE=http://python-requests.org/ http://pypi.python.org/pypi/requests +IUSE=python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy python_targets_pypy3 +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos +LICENSE=Apache-2.0 +RDEPEND=app-misc/ca-certificates >=dev-python/chardet-2.2.1[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,python_targets_pypy3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-),-python_single_target_pypy3(-)] 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= ) python_targets_pypy3? ( virtual/pypy3:0= ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,python_targets_pypy3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-),-python_single_target_pypy3(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy python_targets_pypy3 ) +RESTRICT=test +SLOT=0 +SRC_URI=mirror://pypi/r/requests/requests-2.5.0.tar.gz +_eclasses_=distutils-r1 b3dd8b90e41a1570ee3117a7c1adb598 eutils 6faef4c127028ccbba3a11400d24ae34 multibuild ddc59d206214ef1c240093e1bb2513cf multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 b63f5ef61876823ab0bd05d867697d75 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac +_md5_=d91fc6d22055cde8c4c2716399e46041 diff --git a/metadata/md5-cache/dev-python/sphinx-1.2.2 b/metadata/md5-cache/dev-python/sphinx-1.2.2 index 37468e482737..528444eaa11e 100644 --- a/metadata/md5-cache/dev-python/sphinx-1.2.2 +++ b/metadata/md5-cache/dev-python/sphinx-1.2.2 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targe SLOT=0 SRC_URI=mirror://pypi/S/Sphinx/Sphinx-1.2.2.tar.gz _eclasses_=distutils-r1 b3dd8b90e41a1570ee3117a7c1adb598 eutils 6faef4c127028ccbba3a11400d24ae34 multibuild ddc59d206214ef1c240093e1bb2513cf multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 b63f5ef61876823ab0bd05d867697d75 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=af3d8bd5ef990fa0eff4dd763ef7ae5a +_md5_=2963b2b68ffb78f5e3d15fdaf4a1cbb4 diff --git a/metadata/md5-cache/dev-python/sphinx-1.2.3 b/metadata/md5-cache/dev-python/sphinx-1.2.3 index d6b148021726..c0c8609854d8 100644 --- a/metadata/md5-cache/dev-python/sphinx-1.2.3 +++ b/metadata/md5-cache/dev-python/sphinx-1.2.3 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targe SLOT=0 SRC_URI=mirror://pypi/S/Sphinx/Sphinx-1.2.3.tar.gz _eclasses_=distutils-r1 b3dd8b90e41a1570ee3117a7c1adb598 eutils 6faef4c127028ccbba3a11400d24ae34 multibuild ddc59d206214ef1c240093e1bb2513cf multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 b63f5ef61876823ab0bd05d867697d75 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=9066dc1f19aae30c633b98ffe9e24acd +_md5_=a7e716b82da66c59892f090f6ca57807 diff --git a/metadata/md5-cache/dev-tex/latex2rtf-2.2.1b b/metadata/md5-cache/dev-tex/latex2rtf-2.2.1b index 96a60681b0e8..ee1d25ce3504 100644 --- a/metadata/md5-cache/dev-tex/latex2rtf-2.2.1b +++ b/metadata/md5-cache/dev-tex/latex2rtf-2.2.1b @@ -1,5 +1,5 @@ DEFINED_PHASES=compile install prepare -DEPEND=virtual/latex-base media-gfx/imagemagick doc? ( virtual/texi2dvi ) test? ( dev-texlive/texlive-langgerman dev-texlive/texlive-fontsrecommended dev-texlive/texlive-latexextra dev-tex/latex2html ) +DEPEND=virtual/latex-base media-gfx/imagemagick sys-apps/man doc? ( virtual/texi2dvi ) test? ( dev-texlive/texlive-langgerman dev-texlive/texlive-fontsrecommended dev-texlive/texlive-latexextra dev-tex/latex2html ) DESCRIPTION=LaTeX to RTF converter EAPI=4 HOMEPAGE=http://latex2rtf.sourceforge.net/ @@ -10,4 +10,4 @@ RDEPEND=virtual/latex-base media-gfx/imagemagick SLOT=0 SRC_URI=mirror://sourceforge/latex2rtf/latex2rtf-2.2.1b.tar.gz _eclasses_=multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac -_md5_=37af2c6604b0210db7c6c2914700f1a9 +_md5_=1c7bbadbdb68f6a4e648ea05f84b2f06 diff --git a/metadata/md5-cache/dev-tex/latex2rtf-2.3.8 b/metadata/md5-cache/dev-tex/latex2rtf-2.3.8 new file mode 100644 index 000000000000..fdcde78aba06 --- /dev/null +++ b/metadata/md5-cache/dev-tex/latex2rtf-2.3.8 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install prepare +DEPEND=virtual/latex-base media-gfx/imagemagick doc? ( virtual/texi2dvi ) test? ( dev-texlive/texlive-langgerman dev-texlive/texlive-fontsrecommended dev-texlive/texlive-latexextra dev-tex/latex2html ) +DESCRIPTION=LaTeX to RTF converter +EAPI=5 +HOMEPAGE=http://latex2rtf.sourceforge.net/ +IUSE=doc test +KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=virtual/latex-base media-gfx/imagemagick +SLOT=0 +SRC_URI=mirror://sourceforge/latex2rtf/latex2rtf-2.3.8.tar.gz +_eclasses_=eutils 6faef4c127028ccbba3a11400d24ae34 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac +_md5_=0d64aa168d5d64ec92e7fadb9c945f50 diff --git a/metadata/md5-cache/kde-base/kdelibs-4.14.3 b/metadata/md5-cache/kde-base/kdelibs-4.14.3 index 12bcf8bbaca7..b2158571db72 100644 --- a/metadata/md5-cache/kde-base/kdelibs-4.14.3 +++ b/metadata/md5-cache/kde-base/kdelibs-4.14.3 @@ -1,16 +1,16 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare prerm pretend setup test unpack -DEPEND=app-crypt/qca:2 >=app-misc/strigi-0.7.7 app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets >=dev-libs/libattica-0.4.2 >=dev-libs/libdbusmenu-qt-0.3.2 dev-libs/libpcre[unicode] dev-libs/libxml2 dev-libs/libxslt media-libs/fontconfig media-libs/freetype:2 media-libs/giflib media-libs/libpng:0= media-libs/phonon[qt4] sys-libs/zlib virtual/jpeg:0 >=x11-misc/shared-mime-info-0.60 acl? ( virtual/acl ) alsa? ( media-libs/alsa-lib ) !aqua? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXau x11-libs/libXcursor x11-libs/libXdmcp x11-libs/libXext x11-libs/libXfixes x11-libs/libXft x11-libs/libXpm x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst !kernel_SunOS? ( || ( sys-libs/libutempter >=sys-freebsd/freebsd-lib-9.0 ) ) ) bzip2? ( app-arch/bzip2 ) fam? ( virtual/fam ) jpeg2k? ( media-libs/jasper ) kerberos? ( virtual/krb5 ) nepomuk? ( >=dev-libs/shared-desktop-ontologies-0.11.0 >=dev-libs/soprano-2.9.0[dbus,raptor,redland] ) openexr? ( media-libs/openexr:= media-libs/ilmbase:= ) policykit? ( >=sys-auth/polkit-qt-0.103.0 ) spell? ( app-text/enchant ) ssl? ( dev-libs/openssl ) udev? ( virtual/udev ) zeroconf? ( net-dns/avahi[mdnsresponder-compat] ) doc? ( app-doc/doxygen ) nls? ( virtual/libintl ) >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) test? ( dev-util/cppunit ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) >=dev-qt/qtdeclarative-4.8.5:4 opengl? ( >=dev-qt/qtopengl-4.8.5:4 ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 +DEPEND=>=app-misc/strigi-0.7.7 app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets >=dev-libs/libattica-0.4.2 >=dev-libs/libdbusmenu-qt-0.3.2 dev-libs/libpcre[unicode] dev-libs/libxml2 dev-libs/libxslt media-libs/fontconfig media-libs/freetype:2 media-libs/giflib media-libs/libpng:0= media-libs/phonon[qt4] sys-libs/zlib virtual/jpeg:0 >=x11-misc/shared-mime-info-0.60 acl? ( virtual/acl ) alsa? ( media-libs/alsa-lib ) !aqua? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXau x11-libs/libXcursor x11-libs/libXdmcp x11-libs/libXext x11-libs/libXfixes x11-libs/libXft x11-libs/libXpm x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst !kernel_SunOS? ( || ( sys-libs/libutempter >=sys-freebsd/freebsd-lib-9.0 ) ) ) bzip2? ( app-arch/bzip2 ) crypt? ( app-crypt/qca:2 ) fam? ( virtual/fam ) jpeg2k? ( media-libs/jasper ) kerberos? ( virtual/krb5 ) nepomuk? ( >=dev-libs/shared-desktop-ontologies-0.11.0 >=dev-libs/soprano-2.9.0[dbus,raptor,redland] ) openexr? ( media-libs/openexr:= media-libs/ilmbase:= ) policykit? ( >=sys-auth/polkit-qt-0.103.0 ) spell? ( app-text/enchant ) ssl? ( dev-libs/openssl ) udev? ( virtual/udev ) zeroconf? ( net-dns/avahi[mdnsresponder-compat] ) doc? ( app-doc/doxygen ) nls? ( virtual/libintl ) >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) test? ( dev-util/cppunit ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) >=dev-qt/qtdeclarative-4.8.5:4 opengl? ( >=dev-qt/qtopengl-4.8.5:4 ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 DESCRIPTION=KDE libraries needed by all KDE programs EAPI=5 HOMEPAGE=http://www.kde.org/ -IUSE=3dnow acl alsa altivec +bzip2 debug doc fam jpeg2k kerberos lzma mmx nepomuk nls openexr +policykit spell sse sse2 ssl +udev +udisks +upower zeroconf opengl test +handbook aqua +IUSE=3dnow acl alsa altivec +bzip2 +crypt debug doc fam jpeg2k kerberos lzma mmx nepomuk nls openexr +policykit spell sse sse2 ssl +udev +udisks +upower zeroconf opengl test +handbook aqua KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=LGPL-2.1 PDEPEND=>=kde-base/katepart-4.14.3:4[aqua=] || ( >=kde-base/kfmclient-4.14.3:4[aqua=] x11-misc/xdg-utils ) handbook? ( || ( >=kde-base/khelpcenter-4.14.3:4[aqua=] kde-base/khelpcenter:5[compat(+)] ) ) nepomuk? ( >=kde-base/nepomuk-core-4.14.3:4[aqua=] >=kde-base/nepomuk-widgets-4.14.3:4[aqua=] ) policykit? ( >=sys-auth/polkit-kde-agent-0.99 ) -RDEPEND=app-crypt/qca:2 >=app-misc/strigi-0.7.7 app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets >=dev-libs/libattica-0.4.2 >=dev-libs/libdbusmenu-qt-0.3.2 dev-libs/libpcre[unicode] dev-libs/libxml2 dev-libs/libxslt media-libs/fontconfig media-libs/freetype:2 media-libs/giflib media-libs/libpng:0= media-libs/phonon[qt4] sys-libs/zlib virtual/jpeg:0 >=x11-misc/shared-mime-info-0.60 acl? ( virtual/acl ) alsa? ( media-libs/alsa-lib ) !aqua? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXau x11-libs/libXcursor x11-libs/libXdmcp x11-libs/libXext x11-libs/libXfixes x11-libs/libXft x11-libs/libXpm x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst !kernel_SunOS? ( || ( sys-libs/libutempter >=sys-freebsd/freebsd-lib-9.0 ) ) ) bzip2? ( app-arch/bzip2 ) fam? ( virtual/fam ) jpeg2k? ( media-libs/jasper ) kerberos? ( virtual/krb5 ) nepomuk? ( >=dev-libs/shared-desktop-ontologies-0.11.0 >=dev-libs/soprano-2.9.0[dbus,raptor,redland] ) openexr? ( media-libs/openexr:= media-libs/ilmbase:= ) policykit? ( >=sys-auth/polkit-qt-0.103.0 ) spell? ( app-text/enchant ) ssl? ( dev-libs/openssl ) udev? ( virtual/udev ) zeroconf? ( net-dns/avahi[mdnsresponder-compat] ) !dev-qt/qtphonon !<=kde-base/plasma-workspace-4.7.1:4 !<=kde-base/kcontrol-4.4.50:4 >=app-crypt/gnupg-2.0.11 app-misc/ca-certificates >=kde-base/kde-env-4.14.3:4[aqua=] sys-apps/dbus[X] !aqua? ( udisks? ( sys-fs/udisks:2 ) x11-apps/iceauth x11-apps/rgb >=x11-misc/xdg-utils-1.0.2-r3 upower? ( || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils ) ) ) udev? ( app-misc/media-player-info ) >=kde-base/oxygen-icons-4.14.3:4[aqua=] >=dev-qt/qtdeclarative-4.8.5:4 opengl? ( >=dev-qt/qtopengl-4.8.5:4 ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 +RDEPEND=>=app-misc/strigi-0.7.7 app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets >=dev-libs/libattica-0.4.2 >=dev-libs/libdbusmenu-qt-0.3.2 dev-libs/libpcre[unicode] dev-libs/libxml2 dev-libs/libxslt media-libs/fontconfig media-libs/freetype:2 media-libs/giflib media-libs/libpng:0= media-libs/phonon[qt4] sys-libs/zlib virtual/jpeg:0 >=x11-misc/shared-mime-info-0.60 acl? ( virtual/acl ) alsa? ( media-libs/alsa-lib ) !aqua? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXau x11-libs/libXcursor x11-libs/libXdmcp x11-libs/libXext x11-libs/libXfixes x11-libs/libXft x11-libs/libXpm x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst !kernel_SunOS? ( || ( sys-libs/libutempter >=sys-freebsd/freebsd-lib-9.0 ) ) ) bzip2? ( app-arch/bzip2 ) crypt? ( app-crypt/qca:2 ) fam? ( virtual/fam ) jpeg2k? ( media-libs/jasper ) kerberos? ( virtual/krb5 ) nepomuk? ( >=dev-libs/shared-desktop-ontologies-0.11.0 >=dev-libs/soprano-2.9.0[dbus,raptor,redland] ) openexr? ( media-libs/openexr:= media-libs/ilmbase:= ) policykit? ( >=sys-auth/polkit-qt-0.103.0 ) spell? ( app-text/enchant ) ssl? ( dev-libs/openssl ) udev? ( virtual/udev ) zeroconf? ( net-dns/avahi[mdnsresponder-compat] ) !dev-qt/qtphonon !<=kde-base/plasma-workspace-4.7.1:4 !<=kde-base/kcontrol-4.4.50:4 >=app-crypt/gnupg-2.0.11 app-misc/ca-certificates >=kde-base/kde-env-4.14.3:4[aqua=] sys-apps/dbus[X] !aqua? ( udisks? ( sys-fs/udisks:2 ) x11-apps/iceauth x11-apps/rgb >=x11-misc/xdg-utils-1.0.2-r3 upower? ( || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils ) ) ) udev? ( app-misc/media-player-info ) >=kde-base/oxygen-icons-4.14.3:4[aqua=] >=dev-qt/qtdeclarative-4.8.5:4 opengl? ( >=dev-qt/qtopengl-4.8.5:4 ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 REQUIRED_USE=udisks? ( udev ) upower? ( udev ) RESTRICT=test SLOT=4/4.14 SRC_URI=mirror://kde/stable/4.14.3/src/kdelibs-4.14.3.tar.xz _eclasses_=cmake-utils e2cc76ea65ae78da8e4696dad93f5d29 eutils 6faef4c127028ccbba3a11400d24ae34 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 kde4-base 43b17a554a1ca67f0eab47ca0e5ef709 kde4-functions 492237eb2823bdc02bc769530501f0ea multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=e48c461e1255bdfb2e33fb1d32faa46c +_md5_=dc04b59212f6cc42203aea6ce17b1e1c diff --git a/metadata/md5-cache/kde-base/plasma-runtime-4.14.3 b/metadata/md5-cache/kde-base/plasma-runtime-4.14.3 index 98df3298c7f8..d540bfe28b30 100644 --- a/metadata/md5-cache/kde-base/plasma-runtime-4.14.3 +++ b/metadata/md5-cache/kde-base/plasma-runtime-4.14.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-base/kactivities-4.13:4[aqua=] >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) >=dev-qt/qtdeclarative-4.8.5:4 dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.14.3:4[aqua=] +DEPEND=>=kde-base/kactivities-4.13:4[aqua=] >=kde-base/kdelibs-4.14.3:4[aqua=,crypt] >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) >=dev-qt/qtdeclarative-4.8.5:4 dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.14.3:4[aqua=] DESCRIPTION=Script engine and package tool for plasma EAPI=5 HOMEPAGE=http://www.kde.org/ IUSE=debug aqua KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=GPL-2 -RDEPEND=>=kde-base/kactivities-4.13:4[aqua=] >=kde-base/oxygen-icons-4.14.3:4[aqua=] >=dev-qt/qtdeclarative-4.8.5:4 dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.14.3:4[aqua=] +RDEPEND=>=kde-base/kactivities-4.13:4[aqua=] >=kde-base/kdelibs-4.14.3:4[aqua=,crypt] >=kde-base/oxygen-icons-4.14.3:4[aqua=] >=dev-qt/qtdeclarative-4.8.5:4 dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.14.3:4[aqua=] RESTRICT=test SLOT=4/4.14 SRC_URI=mirror://kde/stable/4.14.3/src/kde-runtime-4.14.3.tar.xz _eclasses_=cmake-utils e2cc76ea65ae78da8e4696dad93f5d29 eutils 6faef4c127028ccbba3a11400d24ae34 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 kde4-base 43b17a554a1ca67f0eab47ca0e5ef709 kde4-functions 492237eb2823bdc02bc769530501f0ea kde4-meta 43baa369240a27d6bc794953b4b07f66 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=612b8318c2aabaef69db961c9202a04c +_md5_=3705643a03aed89e99d8c6f2eb35a5d8 diff --git a/metadata/md5-cache/kde-base/plasma-workspace-4.11.14 b/metadata/md5-cache/kde-base/plasma-workspace-4.11.14 index c302ddb0d72c..66298ffaebc3 100644 --- a/metadata/md5-cache/kde-base/plasma-workspace-4.11.14 +++ b/metadata/md5-cache/kde-base/plasma-workspace-4.11.14 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=dev-libs/libdbusmenu-qt >=dev-qt/qtcore-4.8.4-r3:4 !kde-misc/ktouchpadenabler >=kde-base/kactivities-4.11.14:4[aqua=] >=kde-base/kdelibs-4.11.14:4[aqua=,nepomuk?] >=kde-base/kephal-4.11.14:4[aqua=] >=kde-base/ksysguard-4.11.14:4[aqua=] >=kde-base/libkworkspace-4.11.14:4[aqua=] >=kde-base/libplasmaclock-4.11.14:4[aqua=,kdepim?] >=kde-base/libplasmagenericshell-4.11.14:4[aqua=] >=kde-base/libtaskmanager-4.11.14:4[aqua=] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrender gps? ( >=sci-geosciences/gpsd-2.37 ) json? ( dev-libs/qjson ) kdepim? ( >=kde-base/kdepimlibs-4.11.14:4[aqua=] ) nepomuk? ( dev-libs/soprano >=kde-base/nepomuk-core-4.11.14:4[aqua=] ) python? ( >=dev-lang/python-2.7.5-r2:2.7 dev-lang/python-exec:=[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_python2_7(+)] >=dev-python/PyQt4-4.4.0[X,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_python2_7(+)] >=kde-base/pykde4-4.11.14:4[aqua=,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_python2_7(+)] ) qalculate? ( sci-libs/libqalculate ) dev-libs/boost x11-proto/compositeproto x11-proto/damageproto x11-proto/fixesproto x11-proto/renderproto >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) >=dev-qt/qtdeclarative-4.8.5:4 >=dev-qt/qtopengl-4.8.5:4 dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.11.14:4[aqua=] +DEPEND=dev-libs/libdbusmenu-qt >=dev-qt/qtcore-4.8.4-r3:4 !kde-misc/ktouchpadenabler >=kde-base/kactivities-4.11.14:4[aqua=] >=kde-base/kdelibs-4.11.14:4[aqua=,crypt,nepomuk?] >=kde-base/kephal-4.11.14:4[aqua=] >=kde-base/ksysguard-4.11.14:4[aqua=] >=kde-base/libkworkspace-4.11.14:4[aqua=] >=kde-base/libplasmaclock-4.11.14:4[aqua=,kdepim?] >=kde-base/libplasmagenericshell-4.11.14:4[aqua=] >=kde-base/libtaskmanager-4.11.14:4[aqua=] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrender gps? ( >=sci-geosciences/gpsd-2.37 ) json? ( dev-libs/qjson ) kdepim? ( >=kde-base/kdepimlibs-4.11.14:4[aqua=] ) nepomuk? ( dev-libs/soprano >=kde-base/nepomuk-core-4.11.14:4[aqua=] ) python? ( >=dev-lang/python-2.7.5-r2:2.7 dev-lang/python-exec:=[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_python2_7(+)] >=dev-python/PyQt4-4.4.0[X,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_python2_7(+)] >=kde-base/pykde4-4.11.14:4[aqua=,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_python2_7(+)] ) qalculate? ( sci-libs/libqalculate ) dev-libs/boost x11-proto/compositeproto x11-proto/damageproto x11-proto/fixesproto x11-proto/renderproto >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) >=dev-qt/qtdeclarative-4.8.5:4 >=dev-qt/qtopengl-4.8.5:4 dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.11.14:4[aqua=] DESCRIPTION=Plasma: KDE desktop framework EAPI=5 HOMEPAGE=http://www.kde.org/ IUSE=debug gps json +kdepim nepomuk python qalculate python_targets_python2_7 +handbook aqua KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 -RDEPEND=dev-libs/libdbusmenu-qt >=dev-qt/qtcore-4.8.4-r3:4 !kde-misc/ktouchpadenabler >=kde-base/kactivities-4.11.14:4[aqua=] >=kde-base/kdelibs-4.11.14:4[aqua=,nepomuk?] >=kde-base/kephal-4.11.14:4[aqua=] >=kde-base/ksysguard-4.11.14:4[aqua=] >=kde-base/libkworkspace-4.11.14:4[aqua=] >=kde-base/libplasmaclock-4.11.14:4[aqua=,kdepim?] >=kde-base/libplasmagenericshell-4.11.14:4[aqua=] >=kde-base/libtaskmanager-4.11.14:4[aqua=] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrender gps? ( >=sci-geosciences/gpsd-2.37 ) json? ( dev-libs/qjson ) kdepim? ( >=kde-base/kdepimlibs-4.11.14:4[aqua=] ) nepomuk? ( dev-libs/soprano >=kde-base/nepomuk-core-4.11.14:4[aqua=] ) python? ( >=dev-lang/python-2.7.5-r2:2.7 dev-lang/python-exec:=[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_python2_7(+)] >=dev-python/PyQt4-4.4.0[X,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_python2_7(+)] >=kde-base/pykde4-4.11.14:4[aqua=,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_python2_7(+)] ) qalculate? ( sci-libs/libqalculate ) >=kde-base/plasma-runtime-4.11.14:4[aqua=] >=kde-base/oxygen-icons-4.11.14:4[aqua=] handbook? ( >=kde-base/kdelibs-4.11.14:4[aqua=,handbook] ) >=dev-qt/qtdeclarative-4.8.5:4 >=dev-qt/qtopengl-4.8.5:4 dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.11.14:4[aqua=] +RDEPEND=dev-libs/libdbusmenu-qt >=dev-qt/qtcore-4.8.4-r3:4 !kde-misc/ktouchpadenabler >=kde-base/kactivities-4.11.14:4[aqua=] >=kde-base/kdelibs-4.11.14:4[aqua=,crypt,nepomuk?] >=kde-base/kephal-4.11.14:4[aqua=] >=kde-base/ksysguard-4.11.14:4[aqua=] >=kde-base/libkworkspace-4.11.14:4[aqua=] >=kde-base/libplasmaclock-4.11.14:4[aqua=,kdepim?] >=kde-base/libplasmagenericshell-4.11.14:4[aqua=] >=kde-base/libtaskmanager-4.11.14:4[aqua=] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrender gps? ( >=sci-geosciences/gpsd-2.37 ) json? ( dev-libs/qjson ) kdepim? ( >=kde-base/kdepimlibs-4.11.14:4[aqua=] ) nepomuk? ( dev-libs/soprano >=kde-base/nepomuk-core-4.11.14:4[aqua=] ) python? ( >=dev-lang/python-2.7.5-r2:2.7 dev-lang/python-exec:=[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_python2_7(+)] >=dev-python/PyQt4-4.4.0[X,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_python2_7(+)] >=kde-base/pykde4-4.11.14:4[aqua=,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_python2_7(+)] ) qalculate? ( sci-libs/libqalculate ) >=kde-base/plasma-runtime-4.11.14:4[aqua=] >=kde-base/oxygen-icons-4.11.14:4[aqua=] handbook? ( >=kde-base/kdelibs-4.11.14:4[aqua=,handbook] ) >=dev-qt/qtdeclarative-4.8.5:4 >=dev-qt/qtopengl-4.8.5:4 dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.11.14:4[aqua=] REQUIRED_USE=python? ( python_targets_python2_7 ) SLOT=4/4.11 SRC_URI=mirror://kde/stable/4.14.3/src/kde-workspace-4.11.14.tar.xz _eclasses_=cmake-utils e2cc76ea65ae78da8e4696dad93f5d29 eutils 6faef4c127028ccbba3a11400d24ae34 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 kde4-base 43b17a554a1ca67f0eab47ca0e5ef709 kde4-functions 492237eb2823bdc02bc769530501f0ea kde4-meta 43baa369240a27d6bc794953b4b07f66 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-single-r1 cc5b6367244dc2070b496eb9a92d5b87 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=b15292ec6c2ab7738419c5d514f20268 +_md5_=da8aacf5f467d420420cc62e5462d938 diff --git a/metadata/md5-cache/kde-base/plasma-workspace-4.11.9-r1 b/metadata/md5-cache/kde-base/plasma-workspace-4.11.9-r1 index 8db42f761887..d8d0539a2057 100644 --- a/metadata/md5-cache/kde-base/plasma-workspace-4.11.9-r1 +++ b/metadata/md5-cache/kde-base/plasma-workspace-4.11.9-r1 @@ -11,4 +11,4 @@ REQUIRED_USE=python? ( python_targets_python2_7 ) SLOT=4/4.11 SRC_URI=mirror://kde/stable/4.12.5/src/kde-workspace-4.11.9.tar.xz _eclasses_=cmake-utils e2cc76ea65ae78da8e4696dad93f5d29 eutils 6faef4c127028ccbba3a11400d24ae34 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 kde4-base 43b17a554a1ca67f0eab47ca0e5ef709 kde4-functions 492237eb2823bdc02bc769530501f0ea kde4-meta 43baa369240a27d6bc794953b4b07f66 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-single-r1 cc5b6367244dc2070b496eb9a92d5b87 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=3fa2dc1aad9d49a3d4279e91d736a8ad +_md5_=1afb42342cb39108e9b1dd2f72de8f44 diff --git a/metadata/md5-cache/mail-client/thunderbird-31.2.0-r1 b/metadata/md5-cache/mail-client/thunderbird-31.2.0-r1 deleted file mode 100644 index d6a20174460c..000000000000 --- a/metadata/md5-cache/mail-client/thunderbird-31.2.0-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare pretend setup unpack -DEPEND=>=dev-libs/nss-3.16.5 >=dev-libs/nspr-4.10.6 !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.14:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.10: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 ) >=sys-libs/zlib-1.2.3 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 virtual/libffi gstreamer? ( media-plugins/gst-plugins-meta:1.0[ffmpeg] ) x11-libs/libX11 x11-libs/libXext 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.4.2:3[secure-delete,debug=] ) system-libvpx? ( =media-libs/libvpx-1.3.0* ) !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) =sys-devel/autoconf-2.1* >=sys-devel/libtool-2.4 app-arch/unzip app-arch/unzip -DESCRIPTION=Thunderbird Mail Client -EAPI=5 -HOMEPAGE=http://www.mozilla.com/en-US/thunderbird/ -IUSE=bindist crypt ldap +lightning +minimal mozdom selinux custom-cflags custom-optimization dbus debug gstreamer pulseaudio 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_da linguas_de linguas_el linguas_en_GB linguas_es_AR linguas_es_ES linguas_et linguas_eu linguas_fi linguas_fr linguas_fy_NL linguas_ga_IE linguas_gd linguas_gl linguas_he linguas_hr linguas_hu linguas_hy_AM linguas_id linguas_is linguas_it linguas_ja linguas_ko linguas_lt linguas_nb_NO linguas_nl linguas_nn_NO linguas_pa_IN linguas_pl linguas_pt_BR linguas_pt_PT linguas_rm linguas_ro linguas_ru linguas_si linguas_sk linguas_sl linguas_sq linguas_sr linguas_sv_SE linguas_ta_LK linguas_tr linguas_uk linguas_vi linguas_zh_CN linguas_zh_TW -KEYWORDS=~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=>=dev-libs/nss-3.16.5 >=dev-libs/nspr-4.10.6 !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.14:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.10: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 ) >=sys-libs/zlib-1.2.3 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 virtual/libffi gstreamer? ( media-plugins/gst-plugins-meta:1.0[ffmpeg] ) x11-libs/libX11 x11-libs/libXext 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.4.2:3[secure-delete,debug=] ) system-libvpx? ( =media-libs/libvpx-1.3.0* ) -SLOT=0 -SRC_URI=linguas_ar? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/ar.xpi -> thunderbird-31.2.0-ar.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/ast.xpi -> thunderbird-31.2.0-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/be.xpi -> thunderbird-31.2.0-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/bg.xpi -> thunderbird-31.2.0-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/bn-BD.xpi -> thunderbird-31.2.0-bn-BD.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/br.xpi -> thunderbird-31.2.0-br.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/ca.xpi -> thunderbird-31.2.0-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/cs.xpi -> thunderbird-31.2.0-cs.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/da.xpi -> thunderbird-31.2.0-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/de.xpi -> thunderbird-31.2.0-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/el.xpi -> thunderbird-31.2.0-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/en-GB.xpi -> thunderbird-31.2.0-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/es-AR.xpi -> thunderbird-31.2.0-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/es-ES.xpi -> thunderbird-31.2.0-es-ES.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/et.xpi -> thunderbird-31.2.0-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/eu.xpi -> thunderbird-31.2.0-eu.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/fi.xpi -> thunderbird-31.2.0-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/fr.xpi -> thunderbird-31.2.0-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/fy-NL.xpi -> thunderbird-31.2.0-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/ga-IE.xpi -> thunderbird-31.2.0-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/gd.xpi -> thunderbird-31.2.0-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/gl.xpi -> thunderbird-31.2.0-gl.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/he.xpi -> thunderbird-31.2.0-he.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/hr.xpi -> thunderbird-31.2.0-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/hu.xpi -> thunderbird-31.2.0-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/hy-AM.xpi -> thunderbird-31.2.0-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/id.xpi -> thunderbird-31.2.0-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/is.xpi -> thunderbird-31.2.0-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/it.xpi -> thunderbird-31.2.0-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/ja.xpi -> thunderbird-31.2.0-ja.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/ko.xpi -> thunderbird-31.2.0-ko.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/lt.xpi -> thunderbird-31.2.0-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/nb-NO.xpi -> thunderbird-31.2.0-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/nl.xpi -> thunderbird-31.2.0-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/nn-NO.xpi -> thunderbird-31.2.0-nn-NO.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/pa-IN.xpi -> thunderbird-31.2.0-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/pl.xpi -> thunderbird-31.2.0-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/pt-BR.xpi -> thunderbird-31.2.0-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/pt-PT.xpi -> thunderbird-31.2.0-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/rm.xpi -> thunderbird-31.2.0-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/ro.xpi -> thunderbird-31.2.0-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/ru.xpi -> thunderbird-31.2.0-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/si.xpi -> thunderbird-31.2.0-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/sk.xpi -> thunderbird-31.2.0-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/sl.xpi -> thunderbird-31.2.0-sl.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/sq.xpi -> thunderbird-31.2.0-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/sr.xpi -> thunderbird-31.2.0-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/sv-SE.xpi -> thunderbird-31.2.0-sv-SE.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/ta-LK.xpi -> thunderbird-31.2.0-ta-LK.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/tr.xpi -> thunderbird-31.2.0-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/uk.xpi -> thunderbird-31.2.0-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/vi.xpi -> thunderbird-31.2.0-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/zh-CN.xpi -> thunderbird-31.2.0-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.2.0/linux-i686/xpi/zh-TW.xpi -> thunderbird-31.2.0-zh-TW.xpi ) ftp://ftp.mozilla.org/pub/thunderbird/releases/31.2.0/source/thunderbird-31.2.0.source.tar.bz2 http://ftp.mozilla.org/pub/thunderbird/releases/31.2.0/source/thunderbird-31.2.0.source.tar.bz2 crypt? ( http://www.enigmail.net/download/source/enigmail-1.7.2.tar.gz ) lightning? ( http://ftp.mozilla.org/pub/calendar/lightning/releases/3.3/linux/lightning.xpi -> lightning-3.3.xpi http://ftp.mozilla.org/pub/calendar/lightning/releases/2.6.3/linux/gdata-provider.xpi -> gdata-provider-2.6.3.xpi ) http://dev.gentoo.org/~anarchy/mozilla/patchsets/thunderbird-31.0-patches-0.1.tar.xz http://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-31.0-patches-0.2.tar.xz http://dev.gentoo.org/~axs/distfiles/thunderbird-31.0-patches-0.1.tar.xz http://dev.gentoo.org/~axs/distfiles/firefox-31.0-patches-0.2.tar.xz http://dev.gentoo.org/~polynomial-c/mozilla/patchsets/thunderbird-31.0-patches-0.1.tar.xz -_eclasses_=autotools c118b9a8e93bfef124f2d7a2fe56a95e check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 6faef4c127028ccbba3a11400d24ae34 flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 libtool 52d0e17251d04645ffaa61bfdd858944 makeedit 5be302268d425e0429d2f1ee3ba3f5a3 mozconfig-v5.31 e44664ee6fe14452ab15a826ccba4a14 mozcoreconf-v3 30c3473da4c183894e9c355b1bc0a3d6 mozextension ba6829881080a663d68531424a3dfbc6 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib 3bf24e6abb9b76d9f6c20600f0b716bf nsplugins 7ea51b2f6cbd5b36b9c0163cc3ee03a2 pax-utils dfe060cb70d89757fde5c1ff8405e950 python-any-r1 da352ea9da8eb9bf158d56cca65d6c82 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=219180209dd4070241fa6d87df074ea2 diff --git a/metadata/md5-cache/mail-client/thunderbird-31.3.0 b/metadata/md5-cache/mail-client/thunderbird-31.3.0 new file mode 100644 index 000000000000..4eacfc0c0292 --- /dev/null +++ b/metadata/md5-cache/mail-client/thunderbird-31.3.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst prepare pretend setup unpack +DEPEND=>=dev-libs/nss-3.17.1 >=dev-libs/nspr-4.10.6 !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.14:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.10: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 ) >=sys-libs/zlib-1.2.3 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 virtual/libffi gstreamer? ( media-plugins/gst-plugins-meta:1.0[ffmpeg] ) x11-libs/libX11 x11-libs/libXext 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.4.2:3[secure-delete,debug=] ) system-libvpx? ( =media-libs/libvpx-1.3.0* ) !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) =sys-devel/autoconf-2.1* >=sys-devel/libtool-2.4 app-arch/unzip app-arch/unzip +DESCRIPTION=Thunderbird Mail Client +EAPI=5 +HOMEPAGE=http://www.mozilla.com/en-US/thunderbird/ +IUSE=bindist crypt ldap +lightning +minimal mozdom selinux custom-cflags custom-optimization dbus debug gstreamer pulseaudio 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_da linguas_de linguas_el linguas_en_GB linguas_es_AR linguas_es_ES linguas_et linguas_eu linguas_fi linguas_fr linguas_fy_NL linguas_ga_IE linguas_gd linguas_gl linguas_he linguas_hr linguas_hu linguas_hy_AM linguas_id linguas_is linguas_it linguas_ja linguas_ko linguas_lt linguas_nb_NO linguas_nl linguas_nn_NO linguas_pa_IN linguas_pl linguas_pt_BR linguas_pt_PT linguas_rm linguas_ro linguas_ru linguas_si linguas_sk linguas_sl linguas_sq linguas_sr linguas_sv_SE linguas_ta_LK linguas_tr linguas_uk linguas_vi linguas_zh_CN linguas_zh_TW +KEYWORDS=~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=>=dev-libs/nss-3.17.1 >=dev-libs/nspr-4.10.6 !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.14:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.10: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 ) >=sys-libs/zlib-1.2.3 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 virtual/libffi gstreamer? ( media-plugins/gst-plugins-meta:1.0[ffmpeg] ) x11-libs/libX11 x11-libs/libXext 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.4.2:3[secure-delete,debug=] ) system-libvpx? ( =media-libs/libvpx-1.3.0* ) +SLOT=0 +SRC_URI=linguas_ar? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/ar.xpi -> thunderbird-31.3.0-ar.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/ast.xpi -> thunderbird-31.3.0-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/be.xpi -> thunderbird-31.3.0-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/bg.xpi -> thunderbird-31.3.0-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/bn-BD.xpi -> thunderbird-31.3.0-bn-BD.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/br.xpi -> thunderbird-31.3.0-br.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/ca.xpi -> thunderbird-31.3.0-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/cs.xpi -> thunderbird-31.3.0-cs.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/da.xpi -> thunderbird-31.3.0-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/de.xpi -> thunderbird-31.3.0-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/el.xpi -> thunderbird-31.3.0-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/en-GB.xpi -> thunderbird-31.3.0-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/es-AR.xpi -> thunderbird-31.3.0-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/es-ES.xpi -> thunderbird-31.3.0-es-ES.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/et.xpi -> thunderbird-31.3.0-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/eu.xpi -> thunderbird-31.3.0-eu.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/fi.xpi -> thunderbird-31.3.0-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/fr.xpi -> thunderbird-31.3.0-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/fy-NL.xpi -> thunderbird-31.3.0-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/ga-IE.xpi -> thunderbird-31.3.0-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/gd.xpi -> thunderbird-31.3.0-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/gl.xpi -> thunderbird-31.3.0-gl.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/he.xpi -> thunderbird-31.3.0-he.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/hr.xpi -> thunderbird-31.3.0-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/hu.xpi -> thunderbird-31.3.0-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/hy-AM.xpi -> thunderbird-31.3.0-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/id.xpi -> thunderbird-31.3.0-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/is.xpi -> thunderbird-31.3.0-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/it.xpi -> thunderbird-31.3.0-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/ja.xpi -> thunderbird-31.3.0-ja.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/ko.xpi -> thunderbird-31.3.0-ko.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/lt.xpi -> thunderbird-31.3.0-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/nb-NO.xpi -> thunderbird-31.3.0-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/nl.xpi -> thunderbird-31.3.0-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/nn-NO.xpi -> thunderbird-31.3.0-nn-NO.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/pa-IN.xpi -> thunderbird-31.3.0-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/pl.xpi -> thunderbird-31.3.0-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/pt-BR.xpi -> thunderbird-31.3.0-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/pt-PT.xpi -> thunderbird-31.3.0-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/rm.xpi -> thunderbird-31.3.0-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/ro.xpi -> thunderbird-31.3.0-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/ru.xpi -> thunderbird-31.3.0-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/si.xpi -> thunderbird-31.3.0-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/sk.xpi -> thunderbird-31.3.0-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/sl.xpi -> thunderbird-31.3.0-sl.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/sq.xpi -> thunderbird-31.3.0-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/sr.xpi -> thunderbird-31.3.0-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/sv-SE.xpi -> thunderbird-31.3.0-sv-SE.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/ta-LK.xpi -> thunderbird-31.3.0-ta-LK.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/tr.xpi -> thunderbird-31.3.0-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/uk.xpi -> thunderbird-31.3.0-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/vi.xpi -> thunderbird-31.3.0-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/zh-CN.xpi -> thunderbird-31.3.0-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//31.3.0/linux-i686/xpi/zh-TW.xpi -> thunderbird-31.3.0-zh-TW.xpi ) ftp://ftp.mozilla.org/pub/thunderbird/releases/31.3.0/source/thunderbird-31.3.0.source.tar.bz2 http://ftp.mozilla.org/pub/thunderbird/releases/31.3.0/source/thunderbird-31.3.0.source.tar.bz2 crypt? ( http://www.enigmail.net/download/source/enigmail-1.7.2.tar.gz ) lightning? ( http://ftp.mozilla.org/pub/calendar/lightning/releases/3.3/linux/lightning.xpi -> lightning-3.3.xpi http://dev.gentoo.org/~axs/distfiles/gdata-provider-1.0.3.tar.xz ) http://dev.gentoo.org/~anarchy/mozilla/patchsets/thunderbird-31.0-patches-0.1.tar.xz http://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-31.0-patches-0.2.tar.xz http://dev.gentoo.org/~axs/distfiles/thunderbird-31.0-patches-0.1.tar.xz http://dev.gentoo.org/~axs/distfiles/firefox-31.0-patches-0.2.tar.xz http://dev.gentoo.org/~polynomial-c/mozilla/patchsets/thunderbird-31.0-patches-0.1.tar.xz +_eclasses_=autotools c118b9a8e93bfef124f2d7a2fe56a95e check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 6faef4c127028ccbba3a11400d24ae34 flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 libtool 52d0e17251d04645ffaa61bfdd858944 makeedit 5be302268d425e0429d2f1ee3ba3f5a3 mozconfig-v5.31 c6415d26cc24f7605b72b7a91e979d01 mozcoreconf-v3 30c3473da4c183894e9c355b1bc0a3d6 mozextension ba6829881080a663d68531424a3dfbc6 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib 3bf24e6abb9b76d9f6c20600f0b716bf nsplugins 7ea51b2f6cbd5b36b9c0163cc3ee03a2 pax-utils dfe060cb70d89757fde5c1ff8405e950 python-any-r1 da352ea9da8eb9bf158d56cca65d6c82 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac versionator cd0bcdb170807e4a1984115e9d53a26f +_md5_=52cba10e57b8b845dc233fca799fca38 diff --git a/metadata/md5-cache/media-gfx/scrot-0.8_p13 b/metadata/md5-cache/media-gfx/scrot-0.8_p13 index 3a8ea58d4197..776f1b48ff46 100644 --- a/metadata/md5-cache/media-gfx/scrot-0.8_p13 +++ b/metadata/md5-cache/media-gfx/scrot-0.8_p13 @@ -3,10 +3,10 @@ DEPEND=>=media-libs/imlib2-1.0.3 >=media-libs/giblib-1.2.3 DESCRIPTION=Screen capture utility using imlib2 library EAPI=5 HOMEPAGE=http://scrot.sourcearchive.com/ -KEYWORDS=~alpha ~amd64 arm ~hppa ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd +KEYWORDS=~alpha ~amd64 arm hppa ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd LICENSE=feh LGPL-2+ RDEPEND=>=media-libs/imlib2-1.0.3 >=media-libs/giblib-1.2.3 SLOT=0 SRC_URI=http://scrot.sourcearchive.com/downloads/0.8-13/scrot_0.8.orig.tar.gz http://scrot.sourcearchive.com/downloads/0.8-13/scrot_0.8-13.debian.tar.gz _eclasses_=bash-completion-r1 c8399c7c7ecbcf7ed6e5bd3abb3d4af3 eutils 6faef4c127028ccbba3a11400d24ae34 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac -_md5_=9f2bbbad347c6931c65d960f40d90c2f +_md5_=d37989085220de5443f62f1500af4c22 diff --git a/metadata/md5-cache/media-gfx/zbar-0.10-r5 b/metadata/md5-cache/media-gfx/zbar-0.10-r5 index 29050bfb3b21..b8ee9d635428 100644 --- a/metadata/md5-cache/media-gfx/zbar-0.10-r5 +++ b/metadata/md5-cache/media-gfx/zbar-0.10-r5 @@ -11,4 +11,4 @@ REQUIRED_USE=python_targets_python2_7 SLOT=0 SRC_URI=mirror://sourceforge/zbar/zbar-0.10.tar.bz2 _eclasses_=autotools c118b9a8e93bfef124f2d7a2fe56a95e eutils 6faef4c127028ccbba3a11400d24ae34 flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-single-r1 cc5b6367244dc2070b496eb9a92d5b87 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac -_md5_=cd531e682615ba6e96f0d779f6a8946b +_md5_=a62a7d8764be8a769ea596b2d9c5d400 diff --git a/metadata/md5-cache/media-libs/libass-0.12.0 b/metadata/md5-cache/media-libs/libass-0.12.0 new file mode 100644 index 000000000000..447680e5e147 --- /dev/null +++ b/metadata/md5-cache/media-libs/libass-0.12.0 @@ -0,0 +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 ) +DESCRIPTION=Library for SSA/ASS subtitles rendering +EAPI=5 +HOMEPAGE=http://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=http://github.com/libass/libass/releases/download/0.12.0/libass-0.12.0.tar.xz +_eclasses_=eutils 6faef4c127028ccbba3a11400d24ae34 multibuild ddc59d206214ef1c240093e1bb2513cf multilib 3bf24e6abb9b76d9f6c20600f0b716bf multilib-build 9eb4b5fb858228316d8bb32ada51f6a5 multilib-minimal 5bbdc77877c1aa3c6bd89ca3f9196d11 multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac +_md5_=edc59d7cdce539aa7b84ac638dc77c55 diff --git a/metadata/md5-cache/media-libs/libdc1394-2.2.3 b/metadata/md5-cache/media-libs/libdc1394-2.2.3 new file mode 100644 index 000000000000..f268ac4878c5 --- /dev/null +++ b/metadata/md5-cache/media-libs/libdc1394-2.2.3 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=virtual/libusb-1-r1:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/pkgconfig doc? ( app-doc/doxygen ) !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=Library to interface with IEEE 1394 cameras following the IIDC specification +EAPI=5 +HOMEPAGE=http://sourceforge.net/projects/libdc1394/ +IUSE=doc static-libs X 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 ~sparc ~x86 +LICENSE=LGPL-2.1 +RDEPEND=>=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=virtual/libusb-1-r1:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] +SLOT=2 +SRC_URI=mirror://sourceforge/libdc1394/libdc1394-2.2.3.tar.gz http://dev.gentoo.org/~ssuominen/sdl.m4-20140620.tar.xz +_eclasses_=autotools c118b9a8e93bfef124f2d7a2fe56a95e eutils 6faef4c127028ccbba3a11400d24ae34 libtool 52d0e17251d04645ffaa61bfdd858944 multibuild ddc59d206214ef1c240093e1bb2513cf multilib 3bf24e6abb9b76d9f6c20600f0b716bf multilib-build 9eb4b5fb858228316d8bb32ada51f6a5 multilib-minimal 5bbdc77877c1aa3c6bd89ca3f9196d11 multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac +_md5_=d769e0bb89386d570475f043e6dc4a73 diff --git a/metadata/md5-cache/media-libs/openh264-1.2_p20141104 b/metadata/md5-cache/media-libs/openh264-1.2_p20141104 new file mode 100644 index 000000000000..799b218d4abc --- /dev/null +++ b/metadata/md5-cache/media-libs/openh264-1.2_p20141104 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install postinst +DEPEND=dev-lang/nasm app-arch/unzip +DESCRIPTION=Cisco OpenH264 library and Gecko Media Plugin for mozilla packages +EAPI=5 +HOMEPAGE=http://www.openh264.org/ +IUSE=+plugin +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RESTRICT=bindist +SLOT=0 +SRC_URI=http://dev.gentoo.org/~axs/distfiles/gmp-openh264-1.2_p20141104.tar.xz +_eclasses_=eutils 6faef4c127028ccbba3a11400d24ae34 mozextension ba6829881080a663d68531424a3dfbc6 multilib 3bf24e6abb9b76d9f6c20600f0b716bf nsplugins 7ea51b2f6cbd5b36b9c0163cc3ee03a2 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac versionator cd0bcdb170807e4a1984115e9d53a26f +_md5_=cdf4bfbcbab43f394ec8be2307fe8f53 diff --git a/metadata/md5-cache/media-plugins/tap-plugins-0.7.0 b/metadata/md5-cache/media-plugins/tap-plugins-0.7.0 deleted file mode 100644 index ea8463398b87..000000000000 --- a/metadata/md5-cache/media-plugins/tap-plugins-0.7.0 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=compile install -DEPEND=media-libs/ladspa-sdk -DESCRIPTION=TAP LADSPA plugins package. Contains DeEsser, Dynamics, Equalizer, Reverb, Stereo Echo, Tremolo -HOMEPAGE=http://tap-plugins.sourceforge.net -KEYWORDS=amd64 ~ppc x86 -LICENSE=GPL-2 -RDEPEND=media-libs/ladspa-sdk -SLOT=0 -SRC_URI=mirror://sourceforge/tap-plugins/tap-plugins-0.7.0.tar.gz -_md5_=0b69e231855c8614f417331411db3b60 diff --git a/metadata/md5-cache/media-plugins/tap-plugins-0.7.3 b/metadata/md5-cache/media-plugins/tap-plugins-0.7.3 new file mode 100644 index 000000000000..f9b3e6504694 --- /dev/null +++ b/metadata/md5-cache/media-plugins/tap-plugins-0.7.3 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile install prepare +DEPEND=media-libs/ladspa-sdk +DESCRIPTION=TAP LADSPA plugins package. Contains DeEsser, Dynamics, Equalizer, Reverb, Stereo Echo, Tremolo +EAPI=4 +HOMEPAGE=http://tap-plugins.sourceforge.net +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=GPL-2 +RDEPEND=media-libs/ladspa-sdk +SLOT=0 +SRC_URI=mirror://sourceforge/tap-plugins/tap-plugins-0.7.3.tar.gz +_eclasses_=eutils 6faef4c127028ccbba3a11400d24ae34 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac +_md5_=9039734e53f9e658d6e0cf3e0ed7cbba diff --git a/metadata/md5-cache/media-sound/gnump3d-3.0 b/metadata/md5-cache/media-sound/gnump3d-3.0 deleted file mode 100644 index 67e214d9de77..000000000000 --- a/metadata/md5-cache/media-sound/gnump3d-3.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install postinst setup -DEPEND=dev-lang/perl sys-apps/sed -DESCRIPTION=A streaming server for MP3, OGG vorbis and other streamable files -HOMEPAGE=http://www.gnu.org/software/gnump3d/ -KEYWORDS=alpha amd64 ~ppc ppc64 sparc x86 -LICENSE=GPL-2 -RDEPEND=dev-lang/perl -RESTRICT=test -SLOT=0 -SRC_URI=http://savannah.gnu.org/download/gnump3d/gnump3d-3.0.tar.bz2 -_eclasses_=eutils 6faef4c127028ccbba3a11400d24ae34 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac user f54e098dd38ba1c0847a13e685b87747 -_md5_=aecd7d2059e0766029cbab7311ecf445 diff --git a/metadata/md5-cache/media-sound/gnump3d-3.0-r2 b/metadata/md5-cache/media-sound/gnump3d-3.0-r2 new file mode 100644 index 000000000000..51976ff354bf --- /dev/null +++ b/metadata/md5-cache/media-sound/gnump3d-3.0-r2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst setup unpack +DEPEND=sys-apps/sed dev-lang/perl:=[-build(-)] +DESCRIPTION=A streaming server for MP3, OGG vorbis and other streamable files +EAPI=5 +HOMEPAGE=http://www.gnu.org/software/gnump3d/ +IUSE=sox +KEYWORDS=~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=sox? ( media-sound/sox ) dev-lang/perl:=[-build(-)] +RESTRICT=test +SLOT=0 +SRC_URI=http://savannah.gnu.org/download/gnump3d/gnump3d-3.0.tar.bz2 +_eclasses_=eutils 6faef4c127028ccbba3a11400d24ae34 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 perl-module 28ca2b834dd6b64c9179af421c4d763e toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac unpacker f300a7ca9131b1024a79762e8edd3c52 user f54e098dd38ba1c0847a13e685b87747 +_md5_=fd68b3262bfd71a3d890659309ba133d diff --git a/metadata/md5-cache/media-sound/jalv-1.4.6 b/metadata/md5-cache/media-sound/jalv-1.4.6 new file mode 100644 index 000000000000..a6209b23c1c0 --- /dev/null +++ b/metadata/md5-cache/media-sound/jalv-1.4.6 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare unpack +DEPEND=>=media-libs/lv2-1.6.0 >=media-libs/lilv-0.15.1 >=dev-libs/serd-0.14.0 >=dev-libs/sord-0.12.0 >=media-libs/suil-0.6.0 >=media-libs/sratom-0.4.0 >=media-sound/jack-audio-connection-kit-0.120.0 gtk? ( >=x11-libs/gtk+-3.0.0:3 ) gtk2? ( >=x11-libs/gtk+-2.18.0:2 ) gtkmm? ( >=dev-cpp/gtkmm-2.20.0:2.4 ) qt4? ( dev-qt/qtgui:4 ) virtual/pkgconfig dev-lang/python !dev-lang/python[-threads] +DESCRIPTION=Simple but fully featured LV2 host for Jack +EAPI=4 +HOMEPAGE=http://drobilla.net/software/jalv/ +IUSE=gtk gtk2 gtkmm qt4 +KEYWORDS=~amd64 +LICENSE=ISC +RDEPEND=>=media-libs/lv2-1.6.0 >=media-libs/lilv-0.15.1 >=dev-libs/serd-0.14.0 >=dev-libs/sord-0.12.0 >=media-libs/suil-0.6.0 >=media-libs/sratom-0.4.0 >=media-sound/jack-audio-connection-kit-0.120.0 gtk? ( >=x11-libs/gtk+-3.0.0:3 ) gtk2? ( >=x11-libs/gtk+-2.18.0:2 ) gtkmm? ( >=dev-cpp/gtkmm-2.20.0:2.4 ) qt4? ( dev-qt/qtgui:4 ) +SLOT=0 +SRC_URI=http://download.drobilla.net/jalv-1.4.6.tar.bz2 +_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 6faef4c127028ccbba3a11400d24ae34 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac waf-utils 8ba4703b0e4f03e42a8f6e7b8aabd9e6 +_md5_=3b4a85926146897989db1c51834515c6 diff --git a/metadata/md5-cache/media-sound/mpd-0.19.3 b/metadata/md5-cache/media-sound/mpd-0.19.3 new file mode 100644 index 000000000000..5c17ad8fe4bb --- /dev/null +++ b/metadata/md5-cache/media-sound/mpd-0.19.3 @@ -0,0 +1,14 @@ +DEFINED_PHASES=configure install postinst prepare setup +DEPEND=!=media-libs/game-music-emu-0.6.0_pre20120802 ) icu? ( dev-libs/icu:= ) id3tag? ( media-libs/libid3tag ) jack? ( media-sound/jack-audio-connection-kit ) lame? ( network? ( media-sound/lame ) ) libmpdclient? ( media-libs/libmpdclient ) libsamplerate? ( media-libs/libsamplerate ) mad? ( media-libs/libmad ) mikmod? ( media-libs/libmikmod:0 ) mms? ( media-libs/libmms ) modplug? ( media-libs/libmodplug ) mpg123? ( >=media-sound/mpg123-1.12.2 ) mp4v2? ( media-libs/libmp4v2 ) musepack? ( media-sound/musepack-tools ) network? ( >=media-libs/libshout-2 !lame? ( !vorbis? ( media-libs/libvorbis ) ) ) nfs? ( net-fs/libnfs ) ogg? ( media-libs/libogg ) openal? ( media-libs/openal ) opus? ( media-libs/opus ) pulseaudio? ( media-sound/pulseaudio ) samba? ( net-fs/samba[smbclient] ) sid? ( media-libs/libsidplay:2 ) sndfile? ( media-libs/libsndfile ) soundcloud? ( >=dev-libs/yajl-2 ) libsoxr? ( media-libs/soxr ) sqlite? ( dev-db/sqlite:3 ) systemd? ( sys-apps/systemd ) tcpd? ( sys-apps/tcp-wrappers ) twolame? ( media-sound/twolame ) upnp? ( net-libs/libupnp ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) wildmidi? ( media-sound/wildmidi ) zeroconf? ( net-dns/avahi[dbus] ) zip? ( dev-libs/zziplib ) dev-libs/boost virtual/pkgconfig virtual/pkgconfig +DESCRIPTION=The Music Player Daemon (mpd) +EAPI=5 +HOMEPAGE=http://www.musicpd.org +IUSE=adplug +alsa ao audiofile bzip2 cdio +curl debug expat faad +fifo +ffmpeg flac fluidsynth +glib gme +icu +id3tag +inotify +ipv6 jack lame mms libmpdclient libsamplerate libsoxr +mad mikmod modplug mp4v2 mpg123 musepack +network nfs ogg openal opus oss pipe pulseaudio recorder samba selinux sid sndfile soundcloud sqlite systemd tcpd twolame unicode upnp vorbis wavpack wildmidi zeroconf zip +KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~sh ~x86 ~x86-fbsd ~x64-macos +LICENSE=GPL-2 +RDEPEND=!=media-libs/game-music-emu-0.6.0_pre20120802 ) icu? ( dev-libs/icu:= ) id3tag? ( media-libs/libid3tag ) jack? ( media-sound/jack-audio-connection-kit ) lame? ( network? ( media-sound/lame ) ) libmpdclient? ( media-libs/libmpdclient ) libsamplerate? ( media-libs/libsamplerate ) mad? ( media-libs/libmad ) mikmod? ( media-libs/libmikmod:0 ) mms? ( media-libs/libmms ) modplug? ( media-libs/libmodplug ) mpg123? ( >=media-sound/mpg123-1.12.2 ) mp4v2? ( media-libs/libmp4v2 ) musepack? ( media-sound/musepack-tools ) network? ( >=media-libs/libshout-2 !lame? ( !vorbis? ( media-libs/libvorbis ) ) ) nfs? ( net-fs/libnfs ) ogg? ( media-libs/libogg ) openal? ( media-libs/openal ) opus? ( media-libs/opus ) pulseaudio? ( media-sound/pulseaudio ) samba? ( net-fs/samba[smbclient] ) sid? ( media-libs/libsidplay:2 ) sndfile? ( media-libs/libsndfile ) soundcloud? ( >=dev-libs/yajl-2 ) libsoxr? ( media-libs/soxr ) sqlite? ( dev-db/sqlite:3 ) systemd? ( sys-apps/systemd ) tcpd? ( sys-apps/tcp-wrappers ) twolame? ( media-sound/twolame ) upnp? ( net-libs/libupnp ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) wildmidi? ( media-sound/wildmidi ) zeroconf? ( net-dns/avahi[dbus] ) zip? ( dev-libs/zziplib ) selinux? ( sec-policy/selinux-mpd ) +REQUIRED_USE=|| ( alsa ao fifo jack network openal oss pipe pulseaudio recorder ) || ( adplug audiofile faad ffmpeg flac fluidsynth mad mikmod modplug mpg123 musepack ogg flac sid vorbis wavpack wildmidi ) ao? ( glib ) gme? ( glib ) jack? ( glib ) mp4v2? ( faad ) network? ( || ( audiofile flac lame twolame vorbis ) glib ) recorder? ( || ( audiofile flac lame twolame vorbis ) ) sid? ( glib ) soundcloud? ( glib ) sqlite? ( glib ) opus? ( ogg ) upnp? ( expat ) vorbis? ( glib ) wavpack? ( glib ) +SLOT=0 +SRC_URI=http://www.musicpd.org/download/mpd/0.19/mpd-0.19.3.tar.xz +_eclasses_=eutils 6faef4c127028ccbba3a11400d24ae34 flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 linux-info 2b8c53f6065bdee2d757472215a3088f multilib 3bf24e6abb9b76d9f6c20600f0b716bf readme.gentoo 106edea5533517715013de909a333abd systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac user f54e098dd38ba1c0847a13e685b87747 versionator cd0bcdb170807e4a1984115e9d53a26f +_md5_=9e0a49b80accdb8f3f29c39448878187 diff --git a/metadata/md5-cache/media-sound/qtractor-0.5.12 b/metadata/md5-cache/media-sound/qtractor-0.5.12 deleted file mode 100644 index aa0cbf0a89e0..000000000000 --- a/metadata/md5-cache/media-sound/qtractor-0.5.12 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare unpack -DEPEND=>=dev-qt/qtcore-4.2:4 >=dev-qt/qtgui-4.7:4 media-libs/alsa-lib media-libs/libsndfile media-sound/jack-audio-connection-kit media-libs/ladspa-sdk media-libs/lilv media-libs/lv2 media-libs/suil dssi? ( media-libs/dssi ) mad? ( media-libs/libmad ) libsamplerate? ( media-libs/libsamplerate ) osc? ( media-libs/liblo ) rubberband? ( media-libs/rubberband ) vorbis? ( media-libs/libvorbis ) zlib? ( sys-libs/zlib ) virtual/pkgconfig -DESCRIPTION=Qtractor is an Audio/MIDI multi-track sequencer -EAPI=2 -HOMEPAGE=http://qtractor.sourceforge.net/ -IUSE=debug dssi libsamplerate mad osc rubberband vorbis sse zlib -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=>=dev-qt/qtcore-4.2:4 >=dev-qt/qtgui-4.7:4 media-libs/alsa-lib media-libs/libsndfile media-sound/jack-audio-connection-kit media-libs/ladspa-sdk media-libs/lilv media-libs/lv2 media-libs/suil dssi? ( media-libs/dssi ) mad? ( media-libs/libmad ) libsamplerate? ( media-libs/libsamplerate ) osc? ( media-libs/liblo ) rubberband? ( media-libs/rubberband ) vorbis? ( media-libs/libvorbis ) zlib? ( sys-libs/zlib ) -SLOT=0 -SRC_URI=mirror://sourceforge/qtractor/qtractor-0.5.12.tar.gz -_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 6faef4c127028ccbba3a11400d24ae34 flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 multilib 3bf24e6abb9b76d9f6c20600f0b716bf qmake-utils 9e0174de733aecba0a7e66b2b01841d2 qt4-r2 7199e3db5b5908325487d379c6f67cf0 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac -_md5_=7981df1c4e8ab07abf6c2bd4f209b527 diff --git a/metadata/md5-cache/media-sound/qtractor-0.5.9 b/metadata/md5-cache/media-sound/qtractor-0.5.9 deleted file mode 100644 index 5e6197454aa0..000000000000 --- a/metadata/md5-cache/media-sound/qtractor-0.5.9 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare unpack -DEPEND=>=dev-qt/qtcore-4.2:4 >=dev-qt/qtgui-4.7:4 media-libs/alsa-lib media-libs/libsndfile media-sound/jack-audio-connection-kit media-libs/ladspa-sdk media-libs/lilv media-libs/lv2 media-libs/suil dssi? ( media-libs/dssi ) mad? ( media-libs/libmad ) libsamplerate? ( media-libs/libsamplerate ) osc? ( media-libs/liblo ) rubberband? ( media-libs/rubberband ) vorbis? ( media-libs/libvorbis ) zlib? ( sys-libs/zlib ) virtual/pkgconfig -DESCRIPTION=Qtractor is an Audio/MIDI multi-track sequencer -EAPI=2 -HOMEPAGE=http://qtractor.sourceforge.net/ -IUSE=debug dssi libsamplerate mad osc rubberband vorbis sse zlib -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=>=dev-qt/qtcore-4.2:4 >=dev-qt/qtgui-4.7:4 media-libs/alsa-lib media-libs/libsndfile media-sound/jack-audio-connection-kit media-libs/ladspa-sdk media-libs/lilv media-libs/lv2 media-libs/suil dssi? ( media-libs/dssi ) mad? ( media-libs/libmad ) libsamplerate? ( media-libs/libsamplerate ) osc? ( media-libs/liblo ) rubberband? ( media-libs/rubberband ) vorbis? ( media-libs/libvorbis ) zlib? ( sys-libs/zlib ) -SLOT=0 -SRC_URI=mirror://sourceforge/qtractor/qtractor-0.5.9.tar.gz -_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 6faef4c127028ccbba3a11400d24ae34 flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 multilib 3bf24e6abb9b76d9f6c20600f0b716bf qmake-utils 9e0174de733aecba0a7e66b2b01841d2 qt4-r2 7199e3db5b5908325487d379c6f67cf0 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac -_md5_=6acb7cf8ff00b7eaff579ed2f13d76e3 diff --git a/metadata/md5-cache/media-sound/qtractor-0.6.0 b/metadata/md5-cache/media-sound/qtractor-0.6.0 deleted file mode 100644 index 90c943db984d..000000000000 --- a/metadata/md5-cache/media-sound/qtractor-0.6.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare unpack -DEPEND=>=dev-qt/qtcore-4.2:4 >=dev-qt/qtgui-4.7:4 media-libs/alsa-lib media-libs/libsndfile media-sound/jack-audio-connection-kit media-libs/ladspa-sdk media-libs/lilv media-libs/lv2 media-libs/suil dssi? ( media-libs/dssi ) mad? ( media-libs/libmad ) libsamplerate? ( media-libs/libsamplerate ) osc? ( media-libs/liblo ) rubberband? ( media-libs/rubberband ) vorbis? ( media-libs/libvorbis ) zlib? ( sys-libs/zlib ) virtual/pkgconfig -DESCRIPTION=Qtractor is an Audio/MIDI multi-track sequencer -EAPI=2 -HOMEPAGE=http://qtractor.sourceforge.net/ -IUSE=debug dssi libsamplerate mad osc rubberband vorbis sse zlib -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=>=dev-qt/qtcore-4.2:4 >=dev-qt/qtgui-4.7:4 media-libs/alsa-lib media-libs/libsndfile media-sound/jack-audio-connection-kit media-libs/ladspa-sdk media-libs/lilv media-libs/lv2 media-libs/suil dssi? ( media-libs/dssi ) mad? ( media-libs/libmad ) libsamplerate? ( media-libs/libsamplerate ) osc? ( media-libs/liblo ) rubberband? ( media-libs/rubberband ) vorbis? ( media-libs/libvorbis ) zlib? ( sys-libs/zlib ) -SLOT=0 -SRC_URI=mirror://sourceforge/qtractor/qtractor-0.6.0.tar.gz -_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 6faef4c127028ccbba3a11400d24ae34 flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 multilib 3bf24e6abb9b76d9f6c20600f0b716bf qmake-utils 9e0174de733aecba0a7e66b2b01841d2 qt4-r2 7199e3db5b5908325487d379c6f67cf0 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac -_md5_=9b9d9b91f8708cc6c5b72f99dce03ed1 diff --git a/metadata/md5-cache/media-sound/qtractor-0.6.3 b/metadata/md5-cache/media-sound/qtractor-0.6.3 index f6f877c81381..2da79956f47d 100644 --- a/metadata/md5-cache/media-sound/qtractor-0.6.3 +++ b/metadata/md5-cache/media-sound/qtractor-0.6.3 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install prepare unpack -DEPEND=>=dev-qt/qtcore-4.2:4 >=dev-qt/qtgui-4.7:4 media-libs/alsa-lib media-libs/libsndfile media-sound/jack-audio-connection-kit media-libs/ladspa-sdk media-libs/lilv media-libs/lv2 media-libs/suil dssi? ( media-libs/dssi ) mad? ( media-libs/libmad ) libsamplerate? ( media-libs/libsamplerate ) osc? ( media-libs/liblo ) rubberband? ( media-libs/rubberband ) vorbis? ( media-libs/libvorbis ) zlib? ( sys-libs/zlib ) virtual/pkgconfig +DEPEND=>=dev-qt/qtcore-4.2:4 >=dev-qt/qtgui-4.7:4 media-libs/alsa-lib media-libs/libsndfile media-sound/jack-audio-connection-kit media-libs/ladspa-sdk >=media-libs/lilv-0.16.0 media-libs/lv2 media-libs/suil dssi? ( media-libs/dssi ) mad? ( media-libs/libmad ) libsamplerate? ( media-libs/libsamplerate ) osc? ( media-libs/liblo ) rubberband? ( media-libs/rubberband ) vorbis? ( media-libs/libvorbis ) zlib? ( sys-libs/zlib ) virtual/pkgconfig DESCRIPTION=Qtractor is an Audio/MIDI multi-track sequencer EAPI=2 HOMEPAGE=http://qtractor.sourceforge.net/ IUSE=debug dssi libsamplerate mad osc rubberband vorbis sse zlib KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=>=dev-qt/qtcore-4.2:4 >=dev-qt/qtgui-4.7:4 media-libs/alsa-lib media-libs/libsndfile media-sound/jack-audio-connection-kit media-libs/ladspa-sdk media-libs/lilv media-libs/lv2 media-libs/suil dssi? ( media-libs/dssi ) mad? ( media-libs/libmad ) libsamplerate? ( media-libs/libsamplerate ) osc? ( media-libs/liblo ) rubberband? ( media-libs/rubberband ) vorbis? ( media-libs/libvorbis ) zlib? ( sys-libs/zlib ) +RDEPEND=>=dev-qt/qtcore-4.2:4 >=dev-qt/qtgui-4.7:4 media-libs/alsa-lib media-libs/libsndfile media-sound/jack-audio-connection-kit media-libs/ladspa-sdk >=media-libs/lilv-0.16.0 media-libs/lv2 media-libs/suil dssi? ( media-libs/dssi ) mad? ( media-libs/libmad ) libsamplerate? ( media-libs/libsamplerate ) osc? ( media-libs/liblo ) rubberband? ( media-libs/rubberband ) vorbis? ( media-libs/libvorbis ) zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://sourceforge/qtractor/qtractor-0.6.3.tar.gz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 6faef4c127028ccbba3a11400d24ae34 flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 multilib 3bf24e6abb9b76d9f6c20600f0b716bf qmake-utils 9e0174de733aecba0a7e66b2b01841d2 qt4-r2 7199e3db5b5908325487d379c6f67cf0 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac -_md5_=5f34366b5277480a2a9b72ce0ef94eff +_md5_=b31f68390d030cb4b7b60c30f29a792a diff --git a/metadata/md5-cache/media-sound/qtractor-0.5.10 b/metadata/md5-cache/media-sound/qtractor-0.6.4 similarity index 54% rename from metadata/md5-cache/media-sound/qtractor-0.5.10 rename to metadata/md5-cache/media-sound/qtractor-0.6.4 index 201b12ead306..82b4b58cbab0 100644 --- a/metadata/md5-cache/media-sound/qtractor-0.5.10 +++ b/metadata/md5-cache/media-sound/qtractor-0.6.4 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install prepare unpack -DEPEND=>=dev-qt/qtcore-4.2:4 >=dev-qt/qtgui-4.7:4 media-libs/alsa-lib media-libs/libsndfile media-sound/jack-audio-connection-kit media-libs/ladspa-sdk media-libs/lilv media-libs/lv2 media-libs/suil dssi? ( media-libs/dssi ) mad? ( media-libs/libmad ) libsamplerate? ( media-libs/libsamplerate ) osc? ( media-libs/liblo ) rubberband? ( media-libs/rubberband ) vorbis? ( media-libs/libvorbis ) zlib? ( sys-libs/zlib ) virtual/pkgconfig +DEPEND=>=dev-qt/qtcore-4.2:4 >=dev-qt/qtgui-4.7:4 media-libs/alsa-lib media-libs/libsndfile media-sound/jack-audio-connection-kit media-libs/ladspa-sdk >=media-libs/lilv-0.16.0 media-libs/lv2 media-libs/suil dssi? ( media-libs/dssi ) mad? ( media-libs/libmad ) libsamplerate? ( media-libs/libsamplerate ) osc? ( media-libs/liblo ) rubberband? ( media-libs/rubberband ) vorbis? ( media-libs/libvorbis ) zlib? ( sys-libs/zlib ) virtual/pkgconfig DESCRIPTION=Qtractor is an Audio/MIDI multi-track sequencer EAPI=2 HOMEPAGE=http://qtractor.sourceforge.net/ IUSE=debug dssi libsamplerate mad osc rubberband vorbis sse zlib KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=>=dev-qt/qtcore-4.2:4 >=dev-qt/qtgui-4.7:4 media-libs/alsa-lib media-libs/libsndfile media-sound/jack-audio-connection-kit media-libs/ladspa-sdk media-libs/lilv media-libs/lv2 media-libs/suil dssi? ( media-libs/dssi ) mad? ( media-libs/libmad ) libsamplerate? ( media-libs/libsamplerate ) osc? ( media-libs/liblo ) rubberband? ( media-libs/rubberband ) vorbis? ( media-libs/libvorbis ) zlib? ( sys-libs/zlib ) +RDEPEND=>=dev-qt/qtcore-4.2:4 >=dev-qt/qtgui-4.7:4 media-libs/alsa-lib media-libs/libsndfile media-sound/jack-audio-connection-kit media-libs/ladspa-sdk >=media-libs/lilv-0.16.0 media-libs/lv2 media-libs/suil dssi? ( media-libs/dssi ) mad? ( media-libs/libmad ) libsamplerate? ( media-libs/libsamplerate ) osc? ( media-libs/liblo ) rubberband? ( media-libs/rubberband ) vorbis? ( media-libs/libvorbis ) zlib? ( sys-libs/zlib ) SLOT=0 -SRC_URI=mirror://sourceforge/qtractor/qtractor-0.5.10.tar.gz +SRC_URI=mirror://sourceforge/qtractor/qtractor-0.6.4.tar.gz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 6faef4c127028ccbba3a11400d24ae34 flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 multilib 3bf24e6abb9b76d9f6c20600f0b716bf qmake-utils 9e0174de733aecba0a7e66b2b01841d2 qt4-r2 7199e3db5b5908325487d379c6f67cf0 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac -_md5_=811013cf4d72113bb71a96fe25be1d81 +_md5_=8870c94c6db5076958f78a7fc94983ad diff --git a/metadata/md5-cache/net-dns/unbound-1.5.1_rc2 b/metadata/md5-cache/net-dns/unbound-1.5.1_rc2 new file mode 100644 index 000000000000..9aa01ba758f0 --- /dev/null +++ b/metadata/md5-cache/net-dns/unbound-1.5.1_rc2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=>=dev-libs/expat-2.1.0-r3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/libevent-2.0.21[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/openssl-1.0.1h-r2:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] dnstap? ( dev-libs/fstrm[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/protobuf-c-1.0.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ecdsa? ( dev-libs/openssl:0[-bindist] ) python? ( >=dev-lang/python-2.7.5-r2:2.7 dev-lang/python-exec:=[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_python2_7(+)] ) python? ( dev-lang/swig ) test? ( net-dns/ldns-utils[examples] dev-util/splint app-text/wdiff ) virtual/pkgconfig +DESCRIPTION=A validating, recursive and caching DNS resolver +EAPI=5 +HOMEPAGE=http://unbound.net/ +IUSE=debug dnstap +ecdsa gost python selinux static-libs test threads 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 python_targets_python2_7 +KEYWORDS=~amd64 ~hppa ~x86 +LICENSE=BSD GPL-2 +RDEPEND=>=dev-libs/expat-2.1.0-r3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/libevent-2.0.21[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/openssl-1.0.1h-r2:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] dnstap? ( dev-libs/fstrm[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/protobuf-c-1.0.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ecdsa? ( dev-libs/openssl:0[-bindist] ) python? ( >=dev-lang/python-2.7.5-r2:2.7 dev-lang/python-exec:=[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_python2_7(+)] ) selinux? ( sec-policy/selinux-bind ) net-dns/dnssec-root +REQUIRED_USE=python? ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=http://unbound.net/downloads/unbound-1.5.1rc2.tar.gz +_eclasses_=eutils 6faef4c127028ccbba3a11400d24ae34 flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 multibuild ddc59d206214ef1c240093e1bb2513cf multilib 3bf24e6abb9b76d9f6c20600f0b716bf multilib-build 9eb4b5fb858228316d8bb32ada51f6a5 multilib-minimal 5bbdc77877c1aa3c6bd89ca3f9196d11 multiprocessing d7f2985a2c76c365ee20269db5261414 python-single-r1 cc5b6367244dc2070b496eb9a92d5b87 python-utils-r1 d5328656d500f65898a5f51634722f61 systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac user f54e098dd38ba1c0847a13e685b87747 +_md5_=e6a3af1b596269342fd23e9f722546eb diff --git a/metadata/md5-cache/net-mail/imapsync-1.567 b/metadata/md5-cache/net-mail/imapsync-1.567 deleted file mode 100644 index 34caaf697099..000000000000 --- a/metadata/md5-cache/net-mail/imapsync-1.567 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile prepare -DEPEND=dev-lang/perl -DESCRIPTION=A tool allowing incremental and recursive imap transfer from one mailbox to another -EAPI=5 -HOMEPAGE=http://ks.lamiral.info/imapsync/ -KEYWORDS=amd64 ppc x86 -LICENSE=WTFPL-2 -RDEPEND=dev-lang/perl dev-perl/Digest-HMAC dev-perl/IO-Socket-SSL dev-perl/Mail-IMAPClient dev-perl/TermReadKey virtual/perl-Digest-MD5 virtual/perl-MIME-Base64 -RESTRICT=test -SLOT=0 -SRC_URI=https://fedorahosted.org/released/imapsync/imapsync-1.567.tgz -_md5_=01be7573d0ed62a0a5be9796319a1059 diff --git a/metadata/md5-cache/net-mail/imapsync-1.584-r1 b/metadata/md5-cache/net-mail/imapsync-1.607 similarity index 56% rename from metadata/md5-cache/net-mail/imapsync-1.584-r1 rename to metadata/md5-cache/net-mail/imapsync-1.607 index 28443c6215d1..2159fe8c5119 100644 --- a/metadata/md5-cache/net-mail/imapsync-1.584-r1 +++ b/metadata/md5-cache/net-mail/imapsync-1.607 @@ -5,8 +5,8 @@ EAPI=5 HOMEPAGE=http://ks.lamiral.info/imapsync/ KEYWORDS=~amd64 ~ppc ~x86 LICENSE=WTFPL-2 -RDEPEND=dev-lang/perl dev-perl/Digest-HMAC dev-perl/File-Copy-Recursive dev-perl/IO-Socket-SSL dev-perl/Mail-IMAPClient dev-perl/TermReadKey virtual/perl-Digest-MD5 virtual/perl-MIME-Base64 +RDEPEND=dev-lang/perl dev-perl/Digest-HMAC dev-perl/File-Copy-Recursive dev-perl/IO-Socket-SSL dev-perl/IO-Tee dev-perl/Mail-IMAPClient dev-perl/TermReadKey virtual/perl-Digest-MD5 virtual/perl-MIME-Base64 RESTRICT=test SLOT=0 -SRC_URI=https://fedorahosted.org/released/imapsync/imapsync-1.584.tgz -_md5_=08f2fddffbe47985a7881cc477238281 +SRC_URI=https://fedorahosted.org/released/imapsync/imapsync-1.607.tgz +_md5_=6544a63a1336c0d1b7835a17f882cebb diff --git a/metadata/md5-cache/net-misc/youtube-dl-2014.11.27 b/metadata/md5-cache/net-misc/youtube-dl-2014.12.03 similarity index 95% rename from metadata/md5-cache/net-misc/youtube-dl-2014.11.27 rename to metadata/md5-cache/net-misc/youtube-dl-2014.12.03 index 2f056dbd55b3..73266a711091 100644 --- a/metadata/md5-cache/net-misc/youtube-dl-2014.11.27 +++ b/metadata/md5-cache/net-misc/youtube-dl-2014.12.03 @@ -9,6 +9,6 @@ LICENSE=public-domain RDEPEND=python_single_target_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_single_target_python3_4? ( dev-lang/python:3.4 ) python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python3_3(-)?,python_targets_python3_4(-)?,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_python2_7(+)?] REQUIRED_USE=^^ ( python_single_target_python3_3 python_single_target_python3_4 python_single_target_python2_7 ) python_single_target_python3_3? ( python_targets_python3_3 ) python_single_target_python3_4? ( python_targets_python3_4 ) python_single_target_python2_7? ( python_targets_python2_7 ) SLOT=0 -SRC_URI=http://youtube-dl.org/downloads/2014.11.27/youtube-dl-2014.11.27.tar.gz +SRC_URI=http://youtube-dl.org/downloads/2014.12.03/youtube-dl-2014.12.03.tar.gz _eclasses_=bash-completion-r1 c8399c7c7ecbcf7ed6e5bd3abb3d4af3 distutils-r1 b3dd8b90e41a1570ee3117a7c1adb598 eutils 6faef4c127028ccbba3a11400d24ae34 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-single-r1 cc5b6367244dc2070b496eb9a92d5b87 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac -_md5_=aabd47adf0ad56a266351173465143b3 +_md5_=d80890b8b85929b7839b05140261b21c diff --git a/metadata/md5-cache/sys-apps/pciutils-3.3.0 b/metadata/md5-cache/sys-apps/pciutils-3.3.0 new file mode 100644 index 000000000000..f2cfaf4f000e --- /dev/null +++ b/metadata/md5-cache/sys-apps/pciutils-3.3.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install postinst prepare +DEPEND=kmod? ( sys-apps/kmod ) static-libs? ( zlib? ( sys-libs/zlib[static-libs(+)] ) ) !static-libs? ( zlib? ( sys-libs/zlib ) ) kmod? ( virtual/pkgconfig ) +DESCRIPTION=Various utilities dealing with the PCI bus +EAPI=5 +HOMEPAGE=http://mj.ucw.cz/sw/pciutils/ http://git.kernel.org/?p=utils/pciutils/pciutils.git +IUSE=dns +kmod static-libs zlib +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~arm-linux ~x86-linux +LICENSE=GPL-2 +RDEPEND=kmod? ( sys-apps/kmod ) static-libs? ( zlib? ( sys-libs/zlib[static-libs(+)] ) ) !static-libs? ( zlib? ( sys-libs/zlib ) ) sys-apps/hwids +SLOT=0 +SRC_URI=ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/pciutils-3.3.0.tar.gz +_eclasses_=eutils 6faef4c127028ccbba3a11400d24ae34 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac +_md5_=5b9feb095cc61dbdd693134495c95c85 diff --git a/metadata/md5-cache/sys-apps/portage-2.2.12 b/metadata/md5-cache/sys-apps/portage-2.2.12 deleted file mode 100644 index 1261101b82f3..000000000000 --- a/metadata/md5-cache/sys-apps/portage-2.2.12 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install postinst preinst prepare setup test -DEPEND=python3? ( =dev-lang/python-3* ) !pypy? ( !python2? ( !python3? ( >=dev-lang/python-2.7 ) ) ) pypy? ( !python2? ( !python3? ( virtual/pypy:0[bzip2] ) ) ) python2? ( !python3? ( dev-lang/python:2.7 ) ) python_targets_pypy? ( virtual/pypy:0 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=sys-devel/make-3.82 >=sys-apps/sed-4.0.5 sys-devel/patch doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 ) epydoc? ( >=dev-python/epydoc-2.0 !<=dev-python/pysqlite-2.4.1 ) -DESCRIPTION=Portage is the package management and distribution system for Gentoo -EAPI=2 -HOMEPAGE=http://www.gentoo.org/proj/en/portage/index.xml -IUSE=build doc epydoc +ipc linguas_ru pypy python2 python3 selinux xattr python_targets_pypy python_targets_python3_2 python_targets_python3_3 python_targets_python3_4 python_targets_python2_7 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd -LICENSE=GPL-2 -PDEPEND=!build? ( >=net-misc/rsync-2.6.4 userland_GNU? ( >=sys-apps/coreutils-6.4 ) ) -RDEPEND=python3? ( =dev-lang/python-3* ) !pypy? ( !python2? ( !python3? ( >=dev-lang/python-2.7 ) ) ) pypy? ( !python2? ( !python3? ( virtual/pypy:0[bzip2] ) ) ) python2? ( !python3? ( dev-lang/python:2.7 ) ) python_targets_pypy? ( virtual/pypy:0 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) !build? ( >=sys-apps/sed-4.0.5 || ( >=app-shells/bash-4.2_p37[readline] ( =app-shells/bash-3.2_p17 ) ) >=app-admin/eselect-1.2 || ( python3? ( =dev-lang/python-3*[ssl] ) !pypy? ( !python2? ( !python3? ( >=dev-lang/python-2.7[ssl] ) ) ) pypy? ( !python2? ( !python3? ( virtual/pypy:0[bzip2] ) ) ) python2? ( !python3? ( dev-lang/python:2.7[ssl] ) ) dev-python/python-mhash ) ) elibc_FreeBSD? ( sys-freebsd/freebsd-bin ) elibc_glibc? ( >=sys-apps/sandbox-2.2 ) elibc_uclibc? ( >=sys-apps/sandbox-2.2 ) >=app-misc/pax-utils-0.1.17 selinux? ( >=sys-libs/libselinux-2.0.94[python] ) xattr? ( kernel_linux? ( >=sys-apps/install-xattr-0.3 python_targets_python2_7? ( dev-python/pyxattr[python_targets_python2_7] ) python_targets_python3_2? ( dev-python/pyxattr[python_targets_python3_2] ) python_targets_pypy? ( dev-python/pyxattr[python_targets_pypy] ) ) ) !=dev-lang/python-3.3.2-r2:3.3[ssl(+),bzip2(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[ssl(+),bzip2(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[ssl(+),bzip2(+)] ) dev-lang/python-exec:=[python_targets_pypy(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python2_7(-)?,-python_single_target_pypy(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python2_7(-)] ) dev-lang/python-exec:2 >=sys-apps/sed-4.0.5 sys-devel/patch doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 ) epydoc? ( >=dev-python/epydoc-2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_pypy? ( virtual/pypy:0=[bzip2(+)] ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[bzip2(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[bzip2(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[bzip2(+)] ) dev-lang/python-exec:=[python_targets_pypy(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python2_7(-)?,-python_single_target_pypy(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python2_7(-)] DESCRIPTION=Portage is the package management and distribution system for Gentoo EAPI=5 @@ -10,6 +10,6 @@ PDEPEND=!build? ( >=net-misc/rsync-2.6.4 userland_GNU? ( >=sys-apps/coreutils-6. RDEPEND=dev-lang/python-exec:2 !build? ( >=sys-apps/sed-4.0.5 app-shells/bash:0[readline] >=app-admin/eselect-1.2 ) elibc_FreeBSD? ( sys-freebsd/freebsd-bin ) elibc_glibc? ( >=sys-apps/sandbox-2.2 ) elibc_uclibc? ( >=sys-apps/sandbox-2.2 ) >=app-misc/pax-utils-0.1.17 selinux? ( >=sys-libs/libselinux-2.0.94[python,python_targets_pypy(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python2_7(-)?,-python_single_target_pypy(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python2_7(-)] ) xattr? ( kernel_linux? ( >=sys-apps/install-xattr-0.3 python_targets_pypy? ( dev-python/pyxattr[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-python/pyxattr[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ) ) !=dev-lang/python-3.3.2-r2:3.3[bzip2(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[bzip2(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[bzip2(+)] ) dev-lang/python-exec:=[python_targets_pypy(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python2_7(-)?,-python_single_target_pypy(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python2_7(-)] REQUIRED_USE=epydoc? ( python_targets_python2_7 ) || ( python_targets_pypy python_targets_python3_3 python_targets_python3_4 python_targets_python2_7 ) SLOT=0 -SRC_URI=mirror://gentoo/portage-2.2.14_rc1.tar.bz2 http://dev.gentoo.org/~dolsen/releases/portage/portage-2.2.14_rc1.tar.bz2 +SRC_URI=mirror://gentoo/portage-2.2.15.tar.bz2 http://dev.gentoo.org/~dolsen/releases/portage/portage-2.2.15.tar.bz2 _eclasses_=distutils-r1 b3dd8b90e41a1570ee3117a7c1adb598 eutils 6faef4c127028ccbba3a11400d24ae34 multibuild ddc59d206214ef1c240093e1bb2513cf multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 b63f5ef61876823ab0bd05d867697d75 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac -_md5_=ca3a0483547cd995ba951626f3df9f81 +_md5_=25af3a0d3bc30d9b7264ed2c1136ca03 diff --git a/metadata/md5-cache/sys-apps/usbutils-008 b/metadata/md5-cache/sys-apps/usbutils-008 new file mode 100644 index 000000000000..b64708a1817e --- /dev/null +++ b/metadata/md5-cache/sys-apps/usbutils-008 @@ -0,0 +1,14 @@ +DEFINED_PHASES=configure install prepare setup +DEPEND=virtual/libusb:1= zlib? ( sys-libs/zlib:= ) app-arch/xz-utils virtual/pkgconfig +DESCRIPTION=USB enumeration utilities +EAPI=5 +HOMEPAGE=http://linux-usb.sourceforge.net/ +IUSE=python zlib python_targets_python2_7 +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux +LICENSE=GPL-2 +RDEPEND=virtual/libusb:1= zlib? ( sys-libs/zlib:= ) sys-apps/hwids python? ( >=dev-lang/python-2.7.5-r2:2.7 dev-lang/python-exec:=[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_python2_7(+)] ) +REQUIRED_USE=python? ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=mirror://kernel/linux/utils/usb/usbutils/usbutils-008.tar.xz +_eclasses_=eutils 6faef4c127028ccbba3a11400d24ae34 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-single-r1 cc5b6367244dc2070b496eb9a92d5b87 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac +_md5_=d35616bdfe7d2b98e27296072c07f106 diff --git a/metadata/md5-cache/sys-boot/grub-2.02_beta2-r3 b/metadata/md5-cache/sys-boot/grub-2.02_beta2-r3 new file mode 100644 index 000000000000..98621299e24c --- /dev/null +++ b/metadata/md5-cache/sys-boot/grub-2.02_beta2-r3 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare prerm pretend setup test unpack +DEPEND=app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/libsdl ) ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) libzfs? ( sys-fs/zfs ) mount? ( sys-fs/fuse ) truetype? ( media-libs/freetype:2= ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) || ( >=dev-lang/python-2.7.5-r2:2.7 dev-lang/python:3.4 >=dev-lang/python-3.3.2-r2:3.3 ) app-misc/pax-utils sys-devel/flex sys-devel/bison sys-apps/help2man sys-apps/texinfo grub_platforms_coreboot? ( media-libs/freetype:2 ) grub_platforms_qemu? ( media-libs/freetype:2 ) grub_platforms_ieee1275? ( media-libs/freetype:2 ) grub_platforms_loongson? ( media-libs/freetype:2 ) grub_platforms_xen? ( app-emulation/xen-tools ) static? ( app-arch/xz-utils[static-libs(+)] truetype? ( app-arch/bzip2[static-libs(+)] media-libs/freetype[static-libs(+)] sys-libs/zlib[static-libs(+)] ) ) test? ( dev-libs/libisoburn app-emulation/qemu ) truetype? ( app-arch/unzip ) !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=GNU GRUB boot loader +EAPI=5 +HOMEPAGE=http://www.gnu.org/software/grub/ +IUSE=debug device-mapper doc efiemu mount +multislot nls static sdl test truetype libzfs grub_platforms_emu grub_platforms_qemu-mips grub_platforms_loongson grub_platforms_ieee1275 grub_platforms_coreboot grub_platforms_multiboot grub_platforms_efi-32 grub_platforms_pc grub_platforms_qemu grub_platforms_xen grub_platforms_efi-64 +KEYWORDS=amd64 x86 +LICENSE=GPL-3 truetype? ( BitstreamVera GPL-2-with-font-exception ) +RDEPEND=app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/libsdl ) ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) libzfs? ( sys-fs/zfs ) mount? ( sys-fs/fuse ) truetype? ( media-libs/freetype:2= ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) kernel_linux? ( grub_platforms_efi-32? ( sys-boot/efibootmgr ) grub_platforms_efi-64? ( sys-boot/efibootmgr ) ) !multislot? ( !sys-boot/grub:0 ) nls? ( sys-devel/gettext ) +RESTRICT=test +SLOT=2 +SRC_URI=mirror://gnu-alpha/grub/grub-2.02~beta2.tar.xz http://dev.gentoo.org/~floppym/dist/grub-2.02_beta2-gentoo.tar.xz mirror://gnu/unifont/unifont-7.0.01/unifont-7.0.01.pcf.gz truetype? ( mirror://sourceforge/dejavu/dejavu-sans-ttf-2.34.zip ) +_eclasses_=autotools c118b9a8e93bfef124f2d7a2fe56a95e autotools-utils 3727db64c7b960903d5033280f108080 bash-completion-r1 c8399c7c7ecbcf7ed6e5bd3abb3d4af3 eutils 6faef4c127028ccbba3a11400d24ae34 flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 libtool 52d0e17251d04645ffaa61bfdd858944 mount-boot 02dd3bb4c5f025fef0fc3ade0f27c217 multibuild ddc59d206214ef1c240093e1bb2513cf multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 pax-utils dfe060cb70d89757fde5c1ff8405e950 python-any-r1 da352ea9da8eb9bf158d56cca65d6c82 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac versionator cd0bcdb170807e4a1984115e9d53a26f +_md5_=e9ee4d938de9c0b88211b86a80c4e323 diff --git a/metadata/md5-cache/sys-fs/lsscsi-0.28 b/metadata/md5-cache/sys-fs/lsscsi-0.28 new file mode 100644 index 000000000000..7b0fce7796ad --- /dev/null +++ b/metadata/md5-cache/sys-fs/lsscsi-0.28 @@ -0,0 +1,9 @@ +DEFINED_PHASES=- +DESCRIPTION=SCSI sysfs query tool +EAPI=5 +HOMEPAGE=http://sg.danny.cz/scsi/lsscsi.html +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-2 +SLOT=0 +SRC_URI=http://sg.danny.cz/scsi/lsscsi-0.28.tgz +_md5_=805882303afa9e7ee50783b3d54eb79d diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-3.10.61 b/metadata/md5-cache/sys-kernel/gentoo-sources-3.10.61 index a40d75f1442c..c18f3e300575 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-3.10.61 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-3.10.61 @@ -4,7 +4,7 @@ DESCRIPTION=Full sources including the Gentoo patchset for the 3.10 kernel tree EAPI=5 HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches IUSE=deblob experimental symlink build deblob -KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 LICENSE=GPL-2 !deblob? ( freedist ) PDEPEND=!build? ( virtual/dev-manager ) RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) @@ -12,4 +12,4 @@ RESTRICT=binchecks strip SLOT=3.10.61 SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.10.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.10.N/deblob-3.10 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.10.N/deblob-check -> deblob-check-3.10 ) mirror://gentoo/genpatches-3.10-68.base.tar.xz mirror://gentoo/genpatches-3.10-68.extras.tar.xz experimental? ( mirror://gentoo/genpatches-3.10-68.experimental.tar.xz ) _eclasses_=eutils 6faef4c127028ccbba3a11400d24ae34 kernel-2 e0363401e3e385deca89bb9a22b528bb multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 da352ea9da8eb9bf158d56cca65d6c82 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=5d0d2e83523f3b3a09400d0458b6b9dc +_md5_=44305f3ab4dfd3588f5c11be04cd7425 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-3.4.104 b/metadata/md5-cache/sys-kernel/vanilla-sources-3.4.105 similarity index 90% rename from metadata/md5-cache/sys-kernel/vanilla-sources-3.4.104 rename to metadata/md5-cache/sys-kernel/vanilla-sources-3.4.105 index a455429b41e2..3a25b8f1f617 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-3.4.104 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-3.4.105 @@ -9,7 +9,7 @@ LICENSE=GPL-2 !deblob? ( freedist ) PDEPEND=!build? ( virtual/dev-manager ) RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) RESTRICT=binchecks strip -SLOT=3.4.104 -SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.4.104.xz mirror://kernel/linux/kernel/v3.x/linux-3.4.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.4.N/deblob-3.4 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.4.N/deblob-check -> deblob-check-3.4 ) +SLOT=3.4.105 +SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.4.105.xz mirror://kernel/linux/kernel/v3.x/linux-3.4.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.4.N/deblob-3.4 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.4.N/deblob-check -> deblob-check-3.4 ) _eclasses_=eutils 6faef4c127028ccbba3a11400d24ae34 kernel-2 e0363401e3e385deca89bb9a22b528bb multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 da352ea9da8eb9bf158d56cca65d6c82 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=59c0f7e270b4419287e59adba6eeb44d +_md5_=4d7e3291b4283f97b2e508b409f77bb6 diff --git a/metadata/md5-cache/sys-power/powernowd-1.00-r3 b/metadata/md5-cache/sys-power/powernowd-1.00-r3 new file mode 100644 index 000000000000..d0d6e7bdecd7 --- /dev/null +++ b/metadata/md5-cache/sys-power/powernowd-1.00-r3 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile install prepare setup +DEPEND=virtual/pkgconfig +DESCRIPTION=Daemon to control the speed and voltage of CPUs +EAPI=5 +HOMEPAGE=http://www.deater.net/john/powernowd.html https://github.com/clemej/powernowd +KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 +LICENSE=GPL-2 +SLOT=0 +SRC_URI=http://www.deater.net/john/powernowd-1.00.tar.gz +_eclasses_=eutils 6faef4c127028ccbba3a11400d24ae34 linux-info 2b8c53f6065bdee2d757472215a3088f multilib 3bf24e6abb9b76d9f6c20600f0b716bf systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac versionator cd0bcdb170807e4a1984115e9d53a26f +_md5_=c514290ab54ca76a1781853c23189966 diff --git a/metadata/md5-cache/sys-process/criu-1.4 b/metadata/md5-cache/sys-process/criu-1.4 new file mode 100644 index 000000000000..a21dde6b3a4c --- /dev/null +++ b/metadata/md5-cache/sys-process/criu-1.4 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install prepare setup test +DEPEND==dev-libs/nss-3.16.2 >=dev-libs/nspr-4.10.6 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.14:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.10: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 ) >=sys-libs/zlib-1.2.3 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 virtual/libffi gstreamer? ( media-plugins/gst-plugins-meta:1.0[ffmpeg] ) x11-libs/libX11 x11-libs/libXext 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.4.2:3[secure-delete,debug=] ) system-libvpx? ( =media-libs/libvpx-1.3.0* ) wifi? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 net-wireless/wireless-tools ) !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) =sys-devel/autoconf-2.1* >=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 hardened +minimal pgo selinux test custom-cflags custom-optimization dbus debug gstreamer pulseaudio 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_csb linguas_cy linguas_da linguas_de linguas_el linguas_en_GB linguas_en_ZA linguas_eo linguas_es_AR linguas_es_CL linguas_es_ES linguas_es_MX linguas_et linguas_eu linguas_fa linguas_fi linguas_fr linguas_fy_NL linguas_ga_IE linguas_gd linguas_gl linguas_gu_IN linguas_he linguas_hi_IN linguas_hr linguas_hu linguas_hy_AM linguas_id linguas_is linguas_it linguas_ja linguas_kk linguas_km linguas_kn linguas_ko linguas_ku linguas_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 linguas_zu -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.16.2 >=dev-libs/nspr-4.10.6 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.14:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.10: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 ) >=sys-libs/zlib-1.2.3 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 virtual/libffi gstreamer? ( media-plugins/gst-plugins-meta:1.0[ffmpeg] ) x11-libs/libX11 x11-libs/libXext 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.4.2:3[secure-delete,debug=] ) system-libvpx? ( =media-libs/libvpx-1.3.0* ) wifi? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 net-wireless/wireless-tools ) -SLOT=0 -SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/af.xpi -> firefox-31.2.0esr-af.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/ar.xpi -> firefox-31.2.0esr-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/as.xpi -> firefox-31.2.0esr-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/ast.xpi -> firefox-31.2.0esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/be.xpi -> firefox-31.2.0esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/bg.xpi -> firefox-31.2.0esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/bn-BD.xpi -> firefox-31.2.0esr-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/bn-IN.xpi -> firefox-31.2.0esr-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/br.xpi -> firefox-31.2.0esr-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/bs.xpi -> firefox-31.2.0esr-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/ca.xpi -> firefox-31.2.0esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/cs.xpi -> firefox-31.2.0esr-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/csb.xpi -> firefox-31.2.0esr-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/cy.xpi -> firefox-31.2.0esr-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/da.xpi -> firefox-31.2.0esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/de.xpi -> firefox-31.2.0esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/el.xpi -> firefox-31.2.0esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/en-GB.xpi -> firefox-31.2.0esr-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/en-ZA.xpi -> firefox-31.2.0esr-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/eo.xpi -> firefox-31.2.0esr-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/es-AR.xpi -> firefox-31.2.0esr-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/es-CL.xpi -> firefox-31.2.0esr-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/es-ES.xpi -> firefox-31.2.0esr-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/es-MX.xpi -> firefox-31.2.0esr-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/et.xpi -> firefox-31.2.0esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/eu.xpi -> firefox-31.2.0esr-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/fa.xpi -> firefox-31.2.0esr-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/fi.xpi -> firefox-31.2.0esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/fr.xpi -> firefox-31.2.0esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/fy-NL.xpi -> firefox-31.2.0esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/ga-IE.xpi -> firefox-31.2.0esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/gd.xpi -> firefox-31.2.0esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/gl.xpi -> firefox-31.2.0esr-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/gu-IN.xpi -> firefox-31.2.0esr-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/he.xpi -> firefox-31.2.0esr-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/hi-IN.xpi -> firefox-31.2.0esr-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/hr.xpi -> firefox-31.2.0esr-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/hu.xpi -> firefox-31.2.0esr-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/hy-AM.xpi -> firefox-31.2.0esr-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/id.xpi -> firefox-31.2.0esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/is.xpi -> firefox-31.2.0esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/it.xpi -> firefox-31.2.0esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/ja.xpi -> firefox-31.2.0esr-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/kk.xpi -> firefox-31.2.0esr-kk.xpi ) linguas_km? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/km.xpi -> firefox-31.2.0esr-km.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/kn.xpi -> firefox-31.2.0esr-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/ko.xpi -> firefox-31.2.0esr-ko.xpi ) linguas_ku? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/ku.xpi -> firefox-31.2.0esr-ku.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/lt.xpi -> firefox-31.2.0esr-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/lv.xpi -> firefox-31.2.0esr-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/mai.xpi -> firefox-31.2.0esr-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/mk.xpi -> firefox-31.2.0esr-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/ml.xpi -> firefox-31.2.0esr-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/mr.xpi -> firefox-31.2.0esr-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/nb-NO.xpi -> firefox-31.2.0esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/nl.xpi -> firefox-31.2.0esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/nn-NO.xpi -> firefox-31.2.0esr-nn-NO.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/or.xpi -> firefox-31.2.0esr-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/pa-IN.xpi -> firefox-31.2.0esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/pl.xpi -> firefox-31.2.0esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/pt-BR.xpi -> firefox-31.2.0esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/pt-PT.xpi -> firefox-31.2.0esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/rm.xpi -> firefox-31.2.0esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/ro.xpi -> firefox-31.2.0esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/ru.xpi -> firefox-31.2.0esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/si.xpi -> firefox-31.2.0esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/sk.xpi -> firefox-31.2.0esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/sl.xpi -> firefox-31.2.0esr-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/son.xpi -> firefox-31.2.0esr-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/sq.xpi -> firefox-31.2.0esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/sr.xpi -> firefox-31.2.0esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/sv-SE.xpi -> firefox-31.2.0esr-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/ta.xpi -> firefox-31.2.0esr-ta.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/te.xpi -> firefox-31.2.0esr-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/th.xpi -> firefox-31.2.0esr-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/tr.xpi -> firefox-31.2.0esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/uk.xpi -> firefox-31.2.0esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/vi.xpi -> firefox-31.2.0esr-vi.xpi ) linguas_xh? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/xh.xpi -> firefox-31.2.0esr-xh.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/zh-CN.xpi -> firefox-31.2.0esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/zh-TW.xpi -> firefox-31.2.0esr-zh-TW.xpi ) linguas_zu? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/linux-i686/xpi/zu.xpi -> firefox-31.2.0esr-zu.xpi ) http://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-31.0-patches-0.2.tar.xz http://dev.gentoo.org/~axs/distfiles/firefox-31.0-patches-0.2.tar.xz ftp://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/source/firefox-31.2.0esr.source.tar.bz2 http://ftp.mozilla.org/pub/firefox/releases//31.2.0esr/source/firefox-31.2.0esr.source.tar.bz2 -_eclasses_=autotools c118b9a8e93bfef124f2d7a2fe56a95e check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 6faef4c127028ccbba3a11400d24ae34 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 libtool 52d0e17251d04645ffaa61bfdd858944 mozconfig-v5.31 e44664ee6fe14452ab15a826ccba4a14 mozcoreconf-v3 30c3473da4c183894e9c355b1bc0a3d6 mozextension ba6829881080a663d68531424a3dfbc6 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib 3bf24e6abb9b76d9f6c20600f0b716bf pax-utils dfe060cb70d89757fde5c1ff8405e950 python-any-r1 da352ea9da8eb9bf158d56cca65d6c82 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=e97e1d3f55efb2660781468917e34c44 diff --git a/metadata/md5-cache/www-client/firefox-31.3.0 b/metadata/md5-cache/www-client/firefox-31.3.0 new file mode 100644 index 000000000000..c8f9a35f2afc --- /dev/null +++ b/metadata/md5-cache/www-client/firefox-31.3.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack +DEPEND=>=dev-libs/nss-3.17.1 >=dev-libs/nspr-4.10.6 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.14:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.10: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 ) >=sys-libs/zlib-1.2.3 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 virtual/libffi gstreamer? ( media-plugins/gst-plugins-meta:1.0[ffmpeg] ) x11-libs/libX11 x11-libs/libXext 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.4.2:3[secure-delete,debug=] ) system-libvpx? ( =media-libs/libvpx-1.3.0* ) wifi? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 net-wireless/wireless-tools ) !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) =sys-devel/autoconf-2.1* >=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 hardened +minimal pgo selinux test custom-cflags custom-optimization dbus debug gstreamer pulseaudio 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_csb linguas_cy linguas_da linguas_de linguas_el linguas_en_GB linguas_en_ZA linguas_eo linguas_es_AR linguas_es_CL linguas_es_ES linguas_es_MX linguas_et linguas_eu linguas_fa linguas_fi linguas_fr linguas_fy_NL linguas_ga_IE linguas_gd linguas_gl linguas_gu_IN linguas_he linguas_hi_IN linguas_hr linguas_hu linguas_hy_AM linguas_id linguas_is linguas_it linguas_ja linguas_kk linguas_km linguas_kn linguas_ko linguas_ku linguas_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 linguas_zu +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.17.1 >=dev-libs/nspr-4.10.6 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.14:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.10: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 ) >=sys-libs/zlib-1.2.3 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 virtual/libffi gstreamer? ( media-plugins/gst-plugins-meta:1.0[ffmpeg] ) x11-libs/libX11 x11-libs/libXext 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.4.2:3[secure-delete,debug=] ) system-libvpx? ( =media-libs/libvpx-1.3.0* ) wifi? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 net-wireless/wireless-tools ) +SLOT=0 +SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/af.xpi -> firefox-31.3.0esr-af.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/ar.xpi -> firefox-31.3.0esr-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/as.xpi -> firefox-31.3.0esr-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/ast.xpi -> firefox-31.3.0esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/be.xpi -> firefox-31.3.0esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/bg.xpi -> firefox-31.3.0esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/bn-BD.xpi -> firefox-31.3.0esr-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/bn-IN.xpi -> firefox-31.3.0esr-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/br.xpi -> firefox-31.3.0esr-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/bs.xpi -> firefox-31.3.0esr-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/ca.xpi -> firefox-31.3.0esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/cs.xpi -> firefox-31.3.0esr-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/csb.xpi -> firefox-31.3.0esr-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/cy.xpi -> firefox-31.3.0esr-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/da.xpi -> firefox-31.3.0esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/de.xpi -> firefox-31.3.0esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/el.xpi -> firefox-31.3.0esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/en-GB.xpi -> firefox-31.3.0esr-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/en-ZA.xpi -> firefox-31.3.0esr-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/eo.xpi -> firefox-31.3.0esr-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/es-AR.xpi -> firefox-31.3.0esr-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/es-CL.xpi -> firefox-31.3.0esr-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/es-ES.xpi -> firefox-31.3.0esr-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/es-MX.xpi -> firefox-31.3.0esr-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/et.xpi -> firefox-31.3.0esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/eu.xpi -> firefox-31.3.0esr-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/fa.xpi -> firefox-31.3.0esr-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/fi.xpi -> firefox-31.3.0esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/fr.xpi -> firefox-31.3.0esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/fy-NL.xpi -> firefox-31.3.0esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/ga-IE.xpi -> firefox-31.3.0esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/gd.xpi -> firefox-31.3.0esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/gl.xpi -> firefox-31.3.0esr-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/gu-IN.xpi -> firefox-31.3.0esr-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/he.xpi -> firefox-31.3.0esr-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/hi-IN.xpi -> firefox-31.3.0esr-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/hr.xpi -> firefox-31.3.0esr-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/hu.xpi -> firefox-31.3.0esr-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/hy-AM.xpi -> firefox-31.3.0esr-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/id.xpi -> firefox-31.3.0esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/is.xpi -> firefox-31.3.0esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/it.xpi -> firefox-31.3.0esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/ja.xpi -> firefox-31.3.0esr-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/kk.xpi -> firefox-31.3.0esr-kk.xpi ) linguas_km? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/km.xpi -> firefox-31.3.0esr-km.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/kn.xpi -> firefox-31.3.0esr-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/ko.xpi -> firefox-31.3.0esr-ko.xpi ) linguas_ku? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/ku.xpi -> firefox-31.3.0esr-ku.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/lt.xpi -> firefox-31.3.0esr-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/lv.xpi -> firefox-31.3.0esr-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/mai.xpi -> firefox-31.3.0esr-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/mk.xpi -> firefox-31.3.0esr-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/ml.xpi -> firefox-31.3.0esr-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/mr.xpi -> firefox-31.3.0esr-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/nb-NO.xpi -> firefox-31.3.0esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/nl.xpi -> firefox-31.3.0esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/nn-NO.xpi -> firefox-31.3.0esr-nn-NO.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/or.xpi -> firefox-31.3.0esr-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/pa-IN.xpi -> firefox-31.3.0esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/pl.xpi -> firefox-31.3.0esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/pt-BR.xpi -> firefox-31.3.0esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/pt-PT.xpi -> firefox-31.3.0esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/rm.xpi -> firefox-31.3.0esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/ro.xpi -> firefox-31.3.0esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/ru.xpi -> firefox-31.3.0esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/si.xpi -> firefox-31.3.0esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/sk.xpi -> firefox-31.3.0esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/sl.xpi -> firefox-31.3.0esr-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/son.xpi -> firefox-31.3.0esr-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/sq.xpi -> firefox-31.3.0esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/sr.xpi -> firefox-31.3.0esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/sv-SE.xpi -> firefox-31.3.0esr-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/ta.xpi -> firefox-31.3.0esr-ta.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/te.xpi -> firefox-31.3.0esr-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/th.xpi -> firefox-31.3.0esr-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/tr.xpi -> firefox-31.3.0esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/uk.xpi -> firefox-31.3.0esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/vi.xpi -> firefox-31.3.0esr-vi.xpi ) linguas_xh? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/xh.xpi -> firefox-31.3.0esr-xh.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/zh-CN.xpi -> firefox-31.3.0esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/zh-TW.xpi -> firefox-31.3.0esr-zh-TW.xpi ) linguas_zu? ( ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/linux-i686/xpi/zu.xpi -> firefox-31.3.0esr-zu.xpi ) http://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-31.0-patches-0.2.tar.xz http://dev.gentoo.org/~axs/distfiles/firefox-31.0-patches-0.2.tar.xz ftp://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/source/firefox-31.3.0esr.source.tar.bz2 http://ftp.mozilla.org/pub/firefox/releases//31.3.0esr/source/firefox-31.3.0esr.source.tar.bz2 +_eclasses_=autotools c118b9a8e93bfef124f2d7a2fe56a95e check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 6faef4c127028ccbba3a11400d24ae34 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 libtool 52d0e17251d04645ffaa61bfdd858944 mozconfig-v5.31 c6415d26cc24f7605b72b7a91e979d01 mozcoreconf-v3 30c3473da4c183894e9c355b1bc0a3d6 mozextension ba6829881080a663d68531424a3dfbc6 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib 3bf24e6abb9b76d9f6c20600f0b716bf pax-utils dfe060cb70d89757fde5c1ff8405e950 python-any-r1 da352ea9da8eb9bf158d56cca65d6c82 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_md5_=36d2a34b32076ca8e669a8772bd603bd diff --git a/metadata/md5-cache/www-client/firefox-33.0-r1 b/metadata/md5-cache/www-client/firefox-33.0-r1 deleted file mode 100644 index 9ed56c9b1b51..000000000000 --- a/metadata/md5-cache/www-client/firefox-33.0-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack -DEPEND=>=dev-libs/nss-3.17.1 >=dev-libs/nspr-4.10.6 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/libevent-1.4.7 >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.14:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.10: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 gstreamer? ( >=media-libs/gstreamer-1.2.3:1.0 >=media-libs/gst-plugins-base-1.2.3:1.0 >=media-libs/gst-plugins-good-1.2.3:1.0 >=media-plugins/gst-plugins-libav-1.1.0_pre20130128-r1:1.0 ) x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXfixes x11-libs/libXext 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.5: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.13:1.13 >=sys-devel/automake-1.14:1.14 ) =sys-devel/autoconf-2.1* >=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 hardened +minimal pgo test custom-cflags custom-optimization dbus debug gstreamer 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_csb linguas_cy linguas_da linguas_de linguas_el linguas_en_GB linguas_en_ZA linguas_eo linguas_es_AR linguas_es_CL linguas_es_ES linguas_es_MX linguas_et linguas_eu linguas_fa linguas_fi linguas_fr linguas_fy_NL linguas_ga_IE linguas_gd linguas_gl linguas_gu_IN linguas_he linguas_hi_IN linguas_hr linguas_hu linguas_hy_AM linguas_id linguas_is linguas_it linguas_ja linguas_kk linguas_km linguas_kn linguas_ko linguas_ku linguas_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 linguas_zu -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.17.1 >=dev-libs/nspr-4.10.6 >=app-text/hunspell-1.2 dev-libs/atk >=dev-libs/libevent-1.4.7 >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.14:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.10: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 gstreamer? ( >=media-libs/gstreamer-1.2.3:1.0 >=media-libs/gst-plugins-base-1.2.3:1.0 >=media-libs/gst-plugins-good-1.2.3:1.0 >=media-plugins/gst-plugins-libav-1.1.0_pre20130128-r1:1.0 ) x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXfixes x11-libs/libXext 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.5: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 ) -SLOT=0 -SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/af.xpi -> firefox-33.0-af.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/ar.xpi -> firefox-33.0-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/as.xpi -> firefox-33.0-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/ast.xpi -> firefox-33.0-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/be.xpi -> firefox-33.0-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/bg.xpi -> firefox-33.0-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/bn-BD.xpi -> firefox-33.0-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/bn-IN.xpi -> firefox-33.0-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/br.xpi -> firefox-33.0-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/bs.xpi -> firefox-33.0-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/ca.xpi -> firefox-33.0-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/cs.xpi -> firefox-33.0-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/csb.xpi -> firefox-33.0-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/cy.xpi -> firefox-33.0-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/da.xpi -> firefox-33.0-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/de.xpi -> firefox-33.0-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/el.xpi -> firefox-33.0-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/en-GB.xpi -> firefox-33.0-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/en-ZA.xpi -> firefox-33.0-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/eo.xpi -> firefox-33.0-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/es-AR.xpi -> firefox-33.0-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/es-CL.xpi -> firefox-33.0-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/es-ES.xpi -> firefox-33.0-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/es-MX.xpi -> firefox-33.0-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/et.xpi -> firefox-33.0-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/eu.xpi -> firefox-33.0-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/fa.xpi -> firefox-33.0-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/fi.xpi -> firefox-33.0-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/fr.xpi -> firefox-33.0-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/fy-NL.xpi -> firefox-33.0-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/ga-IE.xpi -> firefox-33.0-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/gd.xpi -> firefox-33.0-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/gl.xpi -> firefox-33.0-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/gu-IN.xpi -> firefox-33.0-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/he.xpi -> firefox-33.0-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/hi-IN.xpi -> firefox-33.0-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/hr.xpi -> firefox-33.0-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/hu.xpi -> firefox-33.0-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/hy-AM.xpi -> firefox-33.0-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/id.xpi -> firefox-33.0-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/is.xpi -> firefox-33.0-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/it.xpi -> firefox-33.0-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/ja.xpi -> firefox-33.0-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/kk.xpi -> firefox-33.0-kk.xpi ) linguas_km? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/km.xpi -> firefox-33.0-km.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/kn.xpi -> firefox-33.0-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/ko.xpi -> firefox-33.0-ko.xpi ) linguas_ku? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/ku.xpi -> firefox-33.0-ku.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/lt.xpi -> firefox-33.0-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/lv.xpi -> firefox-33.0-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/mai.xpi -> firefox-33.0-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/mk.xpi -> firefox-33.0-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/ml.xpi -> firefox-33.0-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/mr.xpi -> firefox-33.0-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/nb-NO.xpi -> firefox-33.0-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/nl.xpi -> firefox-33.0-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/nn-NO.xpi -> firefox-33.0-nn-NO.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/or.xpi -> firefox-33.0-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/pa-IN.xpi -> firefox-33.0-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/pl.xpi -> firefox-33.0-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/pt-BR.xpi -> firefox-33.0-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/pt-PT.xpi -> firefox-33.0-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/rm.xpi -> firefox-33.0-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/ro.xpi -> firefox-33.0-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/ru.xpi -> firefox-33.0-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/si.xpi -> firefox-33.0-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/sk.xpi -> firefox-33.0-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/sl.xpi -> firefox-33.0-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/son.xpi -> firefox-33.0-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/sq.xpi -> firefox-33.0-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/sr.xpi -> firefox-33.0-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/sv-SE.xpi -> firefox-33.0-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/ta.xpi -> firefox-33.0-ta.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/te.xpi -> firefox-33.0-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/th.xpi -> firefox-33.0-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/tr.xpi -> firefox-33.0-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/uk.xpi -> firefox-33.0-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/vi.xpi -> firefox-33.0-vi.xpi ) linguas_xh? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/xh.xpi -> firefox-33.0-xh.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/zh-CN.xpi -> firefox-33.0-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/zh-TW.xpi -> firefox-33.0-zh-TW.xpi ) linguas_zu? ( ftp://ftp.mozilla.org/pub/firefox/releases//33.0/linux-i686/xpi/zu.xpi -> firefox-33.0-zu.xpi ) http://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-31.0-patches-0.2.tar.xz http://dev.gentoo.org/~axs/distfiles/firefox-31.0-patches-0.2.tar.xz ftp://ftp.mozilla.org/pub/firefox/releases//33.0/source/firefox-33.0.source.tar.bz2 http://ftp.mozilla.org/pub/firefox/releases//33.0/source/firefox-33.0.source.tar.bz2 -_eclasses_=autotools c118b9a8e93bfef124f2d7a2fe56a95e check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 6faef4c127028ccbba3a11400d24ae34 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 libtool 52d0e17251d04645ffaa61bfdd858944 mozconfig-v5.33 254a2d101581a02e3c3a0bc1d473e2cd mozcoreconf-v3 30c3473da4c183894e9c355b1bc0a3d6 mozextension ba6829881080a663d68531424a3dfbc6 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib 3bf24e6abb9b76d9f6c20600f0b716bf pax-utils dfe060cb70d89757fde5c1ff8405e950 python-any-r1 da352ea9da8eb9bf158d56cca65d6c82 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=ec068e5d214fe104116279d055d5d9d2 diff --git a/metadata/md5-cache/www-client/firefox-34.0.5 b/metadata/md5-cache/www-client/firefox-34.0.5 new file mode 100644 index 000000000000..906c650f71b0 --- /dev/null +++ b/metadata/md5-cache/www-client/firefox-34.0.5 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack +DEPEND=>=dev-libs/nss-3.17.2 >=dev-libs/nspr-4.10.7 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.14:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.13: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 gstreamer? ( >=media-libs/gstreamer-1.2.3:1.0 >=media-libs/gst-plugins-base-1.2.3:1.0 >=media-libs/gst-plugins-good-1.2.3:1.0 >=media-plugins/gst-plugins-libav-1.1.0_pre20130128-r1:1.0 ) 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.6: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.13:1.13 >=sys-devel/automake-1.14:1.14 ) =sys-devel/autoconf-2.1* >=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 hardened +minimal pgo selinux +gmp-autoupdate test custom-cflags custom-optimization dbus debug gstreamer 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_csb linguas_cy linguas_da linguas_de linguas_el linguas_en_GB linguas_en_ZA linguas_eo linguas_es_AR linguas_es_CL linguas_es_ES linguas_es_MX linguas_et linguas_eu linguas_fa linguas_fi linguas_fr linguas_fy_NL linguas_ga_IE linguas_gd linguas_gl linguas_gu_IN linguas_he linguas_hi_IN linguas_hr linguas_hu linguas_hy_AM linguas_id linguas_is linguas_it linguas_ja linguas_kk linguas_km linguas_kn linguas_ko linguas_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.17.2 >=dev-libs/nspr-4.10.7 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.14:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.13: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 gstreamer? ( >=media-libs/gstreamer-1.2.3:1.0 >=media-libs/gst-plugins-base-1.2.3:1.0 >=media-libs/gst-plugins-good-1.2.3:1.0 >=media-plugins/gst-plugins-libav-1.1.0_pre20130128-r1:1.0 ) 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.6: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 ) +SLOT=0 +SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/af.xpi -> firefox-34.0.5-af.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/ar.xpi -> firefox-34.0.5-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/as.xpi -> firefox-34.0.5-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/ast.xpi -> firefox-34.0.5-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/be.xpi -> firefox-34.0.5-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/bg.xpi -> firefox-34.0.5-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/bn-BD.xpi -> firefox-34.0.5-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/bn-IN.xpi -> firefox-34.0.5-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/br.xpi -> firefox-34.0.5-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/bs.xpi -> firefox-34.0.5-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/ca.xpi -> firefox-34.0.5-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/cs.xpi -> firefox-34.0.5-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/csb.xpi -> firefox-34.0.5-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/cy.xpi -> firefox-34.0.5-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/da.xpi -> firefox-34.0.5-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/de.xpi -> firefox-34.0.5-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/el.xpi -> firefox-34.0.5-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/en-GB.xpi -> firefox-34.0.5-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/en-ZA.xpi -> firefox-34.0.5-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/eo.xpi -> firefox-34.0.5-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/es-AR.xpi -> firefox-34.0.5-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/es-CL.xpi -> firefox-34.0.5-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/es-ES.xpi -> firefox-34.0.5-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/es-MX.xpi -> firefox-34.0.5-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/et.xpi -> firefox-34.0.5-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/eu.xpi -> firefox-34.0.5-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/fa.xpi -> firefox-34.0.5-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/fi.xpi -> firefox-34.0.5-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/fr.xpi -> firefox-34.0.5-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/fy-NL.xpi -> firefox-34.0.5-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/ga-IE.xpi -> firefox-34.0.5-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/gd.xpi -> firefox-34.0.5-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/gl.xpi -> firefox-34.0.5-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/gu-IN.xpi -> firefox-34.0.5-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/he.xpi -> firefox-34.0.5-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/hi-IN.xpi -> firefox-34.0.5-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/hr.xpi -> firefox-34.0.5-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/hu.xpi -> firefox-34.0.5-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/hy-AM.xpi -> firefox-34.0.5-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/id.xpi -> firefox-34.0.5-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/is.xpi -> firefox-34.0.5-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/it.xpi -> firefox-34.0.5-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/ja.xpi -> firefox-34.0.5-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/kk.xpi -> firefox-34.0.5-kk.xpi ) linguas_km? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/km.xpi -> firefox-34.0.5-km.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/kn.xpi -> firefox-34.0.5-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/ko.xpi -> firefox-34.0.5-ko.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/lt.xpi -> firefox-34.0.5-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/lv.xpi -> firefox-34.0.5-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/mai.xpi -> firefox-34.0.5-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/mk.xpi -> firefox-34.0.5-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/ml.xpi -> firefox-34.0.5-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/mr.xpi -> firefox-34.0.5-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/nb-NO.xpi -> firefox-34.0.5-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/nl.xpi -> firefox-34.0.5-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/nn-NO.xpi -> firefox-34.0.5-nn-NO.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/or.xpi -> firefox-34.0.5-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/pa-IN.xpi -> firefox-34.0.5-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/pl.xpi -> firefox-34.0.5-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/pt-BR.xpi -> firefox-34.0.5-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/pt-PT.xpi -> firefox-34.0.5-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/rm.xpi -> firefox-34.0.5-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/ro.xpi -> firefox-34.0.5-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/ru.xpi -> firefox-34.0.5-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/si.xpi -> firefox-34.0.5-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/sk.xpi -> firefox-34.0.5-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/sl.xpi -> firefox-34.0.5-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/son.xpi -> firefox-34.0.5-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/sq.xpi -> firefox-34.0.5-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/sr.xpi -> firefox-34.0.5-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/sv-SE.xpi -> firefox-34.0.5-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/ta.xpi -> firefox-34.0.5-ta.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/te.xpi -> firefox-34.0.5-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/th.xpi -> firefox-34.0.5-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/tr.xpi -> firefox-34.0.5-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/uk.xpi -> firefox-34.0.5-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/vi.xpi -> firefox-34.0.5-vi.xpi ) linguas_xh? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/xh.xpi -> firefox-34.0.5-xh.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/zh-CN.xpi -> firefox-34.0.5-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/linux-i686/xpi/zh-TW.xpi -> firefox-34.0.5-zh-TW.xpi ) http://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-34.0-patches-0.1.tar.xz http://dev.gentoo.org/~axs/distfiles/firefox-34.0-patches-0.1.tar.xz ftp://ftp.mozilla.org/pub/firefox/releases//34.0.5/source/firefox-34.0.5.source.tar.bz2 http://ftp.mozilla.org/pub/firefox/releases//34.0.5/source/firefox-34.0.5.source.tar.bz2 +_eclasses_=autotools c118b9a8e93bfef124f2d7a2fe56a95e check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 6faef4c127028ccbba3a11400d24ae34 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 libtool 52d0e17251d04645ffaa61bfdd858944 mozconfig-v5.34 acf30d8cbb1d4469ec32b860f2050861 mozcoreconf-v3 30c3473da4c183894e9c355b1bc0a3d6 mozextension ba6829881080a663d68531424a3dfbc6 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib 3bf24e6abb9b76d9f6c20600f0b716bf pax-utils dfe060cb70d89757fde5c1ff8405e950 python-any-r1 da352ea9da8eb9bf158d56cca65d6c82 python-utils-r1 d5328656d500f65898a5f51634722f61 toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_md5_=8e3cfdb5e4ed3e83486b3f7088138ce0 diff --git a/metadata/md5-cache/www-client/google-chrome-beta-40.0.2214.10_p1 b/metadata/md5-cache/www-client/google-chrome-beta-40.0.2214.28_p1 similarity index 92% rename from metadata/md5-cache/www-client/google-chrome-beta-40.0.2214.10_p1 rename to metadata/md5-cache/www-client/google-chrome-beta-40.0.2214.28_p1 index eaad38897e9e..bb2e3e9efa22 100644 --- a/metadata/md5-cache/www-client/google-chrome-beta-40.0.2214.10_p1 +++ b/metadata/md5-cache/www-client/google-chrome-beta-40.0.2214.28_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? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_40.0.2214.10-1_amd64.deb ) x86? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_40.0.2214.10-1_i386.deb ) +SRC_URI=amd64? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_40.0.2214.28-1_amd64.deb ) x86? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_40.0.2214.28-1_i386.deb ) _eclasses_=chromium 4a9f555199b35aa57f60b0e9b9627d2a eutils 6faef4c127028ccbba3a11400d24ae34 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 linux-info 2b8c53f6065bdee2d757472215a3088f multilib 3bf24e6abb9b76d9f6c20600f0b716bf pax-utils dfe060cb70d89757fde5c1ff8405e950 readme.gentoo 106edea5533517715013de909a333abd toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac unpacker f300a7ca9131b1024a79762e8edd3c52 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=76ecbf5d403d23c8fcc4e583fb86e37f +_md5_=ccd8f4b9776b5266069db4b999f73971 diff --git a/metadata/md5-cache/www-client/opera-26.0.1656.32 b/metadata/md5-cache/www-client/opera-26.0.1656.32 new file mode 100644 index 000000000000..fbb87d48652c --- /dev/null +++ b/metadata/md5-cache/www-client/opera-26.0.1656.32 @@ -0,0 +1,13 @@ +DEFINED_PHASES=install postinst postrm preinst prepare setup unpack +DEPEND=>=sys-apps/sed-4 +DESCRIPTION=A fast and secure web browser +EAPI=5 +HOMEPAGE=http://www.opera.com/ +IUSE=+linguas_af +linguas_az +linguas_be +linguas_bg +linguas_bn +linguas_ca +linguas_cs +linguas_da +linguas_de +linguas_el +linguas_en_GB +linguas_en_US +linguas_es_419 +linguas_es +linguas_fi +linguas_fr_CA +linguas_fr +linguas_fy +linguas_gd +linguas_hi +linguas_hr +linguas_hu +linguas_id +linguas_it +linguas_ja +linguas_kk +linguas_ko +linguas_lt +linguas_lv +linguas_me +linguas_mk +linguas_ms +linguas_nb +linguas_nl +linguas_nn +linguas_pa +linguas_pl +linguas_pt_BR +linguas_pt_PT +linguas_ro +linguas_ru +linguas_sk +linguas_sr +linguas_sv +linguas_sw +linguas_ta +linguas_te +linguas_th +linguas_tl +linguas_tr +linguas_uk +linguas_uz +linguas_vi +linguas_zh_CN +linguas_zh_TW +linguas_zu +KEYWORDS=~amd64 +LICENSE=OPERA-2014 +RDEPEND=dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss >=dev-libs/openssl-1.0.1:0 gnome-base/gconf:2 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype net-misc/curl net-print/cups sys-apps/dbus sys-libs/libcap virtual/libudev x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/pango[X] +SLOT=0 +SRC_URI=amd64? ( http://get.geo.opera.com/pub/opera/desktop/26.0.1656.32/linux/opera-stable_26.0.1656.32_amd64.deb ) +_eclasses_=chromium 4a9f555199b35aa57f60b0e9b9627d2a eutils 6faef4c127028ccbba3a11400d24ae34 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 linux-info 2b8c53f6065bdee2d757472215a3088f multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac unpacker f300a7ca9131b1024a79762e8edd3c52 versionator cd0bcdb170807e4a1984115e9d53a26f +_md5_=de01aca03dd99c271676891a6de670a7 diff --git a/metadata/md5-cache/www-plugins/chrome-binary-plugins-40.0.2214.10_beta1 b/metadata/md5-cache/www-plugins/chrome-binary-plugins-40.0.2214.28_beta1 similarity index 79% rename from metadata/md5-cache/www-plugins/chrome-binary-plugins-40.0.2214.10_beta1 rename to metadata/md5-cache/www-plugins/chrome-binary-plugins-40.0.2214.28_beta1 index d23aa23807a7..f3874e56791d 100644 --- a/metadata/md5-cache/www-plugins/chrome-binary-plugins-40.0.2214.10_beta1 +++ b/metadata/md5-cache/www-plugins/chrome-binary-plugins-40.0.2214.28_beta1 @@ -8,6 +8,6 @@ LICENSE=google-chrome RDEPEND=!www-plugins/chrome-binary-plugins:0 !www-plugins/chrome-binary-plugins:stable !www-plugins/chrome-binary-plugins:unstable RESTRICT=bindist mirror strip SLOT=beta -SRC_URI=amd64? ( https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_40.0.2214.10-1_amd64.deb ) x86? ( https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_40.0.2214.10-1_i386.deb ) +SRC_URI=amd64? ( https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_40.0.2214.28-1_amd64.deb ) x86? ( https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_40.0.2214.28-1_i386.deb ) _eclasses_=multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac unpacker f300a7ca9131b1024a79762e8edd3c52 -_md5_=cd1978b2c8b84c4984b9ab1db00573c1 +_md5_=ccae155be196c7bc669556a4aa46c52b diff --git a/metadata/md5-cache/x11-libs/fltk-1.3.3-r1 b/metadata/md5-cache/x11-libs/fltk-1.3.3-r1 deleted file mode 100644 index 3033326d3c66..000000000000 --- a/metadata/md5-cache/x11-libs/fltk-1.3.3-r1 +++ /dev/null @@ -1,13 +0,0 @@ -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-latex ) ) xinerama? ( x11-proto/xineramaproto ) !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=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 -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~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 c118b9a8e93bfef124f2d7a2fe56a95e eutils 6faef4c127028ccbba3a11400d24ae34 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac -_md5_=3ec20c7fa8868268f18099444859fada diff --git a/metadata/md5-cache/x11-libs/fltk-1.3.3 b/metadata/md5-cache/x11-libs/fltk-1.3.3-r2 similarity index 97% rename from metadata/md5-cache/x11-libs/fltk-1.3.3 rename to metadata/md5-cache/x11-libs/fltk-1.3.3-r2 index 01a088ffd420..9a96c3fc58e1 100644 --- a/metadata/md5-cache/x11-libs/fltk-1.3.3 +++ b/metadata/md5-cache/x11-libs/fltk-1.3.3-r2 @@ -10,4 +10,4 @@ RDEPEND=>=media-libs/libpng-1.2:0 virtual/jpeg:0 sys-libs/zlib x11-libs/libICE x SLOT=1 SRC_URI=http://fltk.org/pub/fltk/1.3.3/fltk-1.3.3-source.tar.gz _eclasses_=autotools c118b9a8e93bfef124f2d7a2fe56a95e eutils 6faef4c127028ccbba3a11400d24ae34 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic eda1c0b5ba85b3eeb555a071d69eb819 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0dfbfa13f57c6184f4728d12ac002aac -_md5_=99bb7ac5644c47ceb8e8936f30d9a6ac +_md5_=fd9b26bbff1c026b8e9fe6203cdafad6 diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index 02c0f38e7352..0ff724cc7291 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Wed, 03 Dec 2014 12:07:05 +0000 +Thu, 04 Dec 2014 05:37:06 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index aeee46901fca..12ee5e7d0500 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Wed Dec 3 12:07:01 UTC 2014 +Thu Dec 4 05:37:02 UTC 2014 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index d6f9e53fa992..4e5c5c9a4fee 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Wed, 03 Dec 2014 12:30:01 +0000 +Thu, 04 Dec 2014 06:00:01 +0000 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index 68b64e1a766d..f1096b17d602 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1417608301 Wed 03 Dec 2014 12:05:01 PM UTC UTC +1417671301 Thu 04 Dec 2014 05:35:01 AM UTC UTC diff --git a/net-dns/unbound/Manifest b/net-dns/unbound/Manifest index 9d95e1610bdd..a096a4cee1de 100644 --- a/net-dns/unbound/Manifest +++ b/net-dns/unbound/Manifest @@ -1,3 +1,4 @@ DIST unbound-1.4.21.tar.gz 3624553 SHA256 502f817a72721f78243923eb1d6187029639f7a8bdcc33a6ce0819bbb2a80970 SHA512 a0b6f9d0d1905a72aa62e2a7a8d15450ccd68c81bf987f53931c0bbb888d86544253d85ca467eeaf3573db443ec11020f3517dc3de84816f28a2f4dabab0ed17 WHIRLPOOL 37bdc64ba370e8f985668527bf84d745c9acac91f4f67046b329bc2edf7281726dc14db2ae14ba79e1f073e961141a9cf6206adaaf6e1bc6cda48e7822239645 DIST unbound-1.4.22.tar.gz 4735801 SHA256 1caf5081b2190ecdb23fc4d998b7999e28640c941f53baff7aee03c092a7d29f SHA512 0593cad3966f24f76b93bbc9c906c096c645e9360a57034c5ed4f04baeaa021eb9169a8e9cd0a98651c7a564d9feda8b9490e3b87ad469f6ce1dd1fcb05d9974 WHIRLPOOL 4de27d6c4548c46c83b95a7f21efd8d75898ddb92e3af84fbd1d07a39e29a121e593ddbf13676f914d4ee428942bf345c9b93937165725ece5031fc67ab9eacc DIST unbound-1.5.0.tar.gz 4811349 SHA256 9fde4aeb8258bc864cd5e5d6d9b8bcf8fa12a57059424fece1c6adcc6387b876 SHA512 698c56d10c15e952a590cfead23ef20222c21469de2c74a94dbb7238db2d9acdce146fcdd581e504501e5315c359a7adb4128b6acb844bad74e80c3a71d3a1b6 WHIRLPOOL 1ffcbbf08b97425841bcc82075aabbd47a1f33360a5453bf544599fb3caa85fa26295401768a2e8cf9ad54c2c7f3a6f9546a41d6f84b692577b31a5fa36fd66a +DIST unbound-1.5.1rc2.tar.gz 4804117 SHA256 6f12977d7915db28f7f5dc2f46911c9605e3e2f6c8d0eaa91e1ce7a81f0819ef SHA512 0c7131ff09feb82198524f8e6778d6228b3ab62abfcc241c1fd78953c3101a3336e6bf05f1c7e3c02305fbfbfa862b338241f28c0e0d4da209f140ddba97f38f WHIRLPOOL 6ac107c7a0baa441d1506838d02297dd5a97a9fb1d711f65fc5330e45c3de1ac9c92f8e67b101f85c2c915913d03d272934ea82734fb3a987ae983856327b279 diff --git a/net-dns/unbound/unbound-1.5.1_rc2.ebuild b/net-dns/unbound/unbound-1.5.1_rc2.ebuild new file mode 100644 index 000000000000..3061a418e9f1 --- /dev/null +++ b/net-dns/unbound/unbound-1.5.1_rc2.ebuild @@ -0,0 +1,121 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/unbound-1.5.1_rc2.ebuild,v 1.1 2014/12/04 01:25:56 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit eutils flag-o-matic multilib-minimal python-single-r1 systemd user + +MY_P=${PN}-${PV/_/} +DESCRIPTION="A validating, recursive and caching DNS resolver" +HOMEPAGE="http://unbound.net/" +SRC_URI="http://unbound.net/downloads/${MY_P}.tar.gz" + +LICENSE="BSD GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~x86" +IUSE="debug dnstap +ecdsa gost python selinux static-libs test threads" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + +# Note: expat is needed by executable only but the Makefile is custom +# and doesn't make it possible to easily install the library without +# the executables. MULTILIB_USEDEP may be dropped once build system +# is fixed. + +CDEPEND=">=dev-libs/expat-2.1.0-r3[${MULTILIB_USEDEP}] + >=dev-libs/libevent-2.0.21[${MULTILIB_USEDEP}] + >=dev-libs/openssl-1.0.1h-r2:0[${MULTILIB_USEDEP}] + dnstap? ( + dev-libs/fstrm[${MULTILIB_USEDEP}] + >=dev-libs/protobuf-c-1.0.2-r1[${MULTILIB_USEDEP}] + ) + ecdsa? ( dev-libs/openssl:0[-bindist] ) + python? ( ${PYTHON_DEPS} )" + +DEPEND="${CDEPEND} + python? ( dev-lang/swig ) + test? ( + net-dns/ldns-utils[examples] + dev-util/splint + app-text/wdiff + )" + +RDEPEND="${CDEPEND} + selinux? ( sec-policy/selinux-bind )" + +# bug #347415 +RDEPEND="${RDEPEND} + net-dns/dnssec-root" + +S=${WORKDIR}/${MY_P} + +pkg_setup() { + enewgroup unbound + enewuser unbound -1 -1 /etc/unbound unbound + + use python && python-single-r1_pkg_setup +} + +src_prepare() { + # To avoid below error messages, set 'trust-anchor-file' to same value in + # 'auto-trust-anchor-file'. + # [23109:0] error: Could not open autotrust file for writing, + # /etc/dnssec/root-anchors.txt: Permission denied + epatch "${FILESDIR}"/${PN}-1.4.12-gentoo.patch + + # required for the python part + multilib_copy_sources +} + +src_configure() { + [[ ${CHOST} == *-darwin* ]] || append-ldflags -Wl,-z,noexecstack + multilib-minimal_src_configure +} + +multilib_src_configure() { + econf \ + $(use_enable debug) \ + $(use_enable gost) \ + $(use_enable dnstap) \ + $(use_enable ecdsa) \ + $(use_enable static-libs static) \ + $(multilib_native_use_with python pythonmodule) \ + $(multilib_native_use_with python pyunbound) \ + $(use_with threads pthreads) \ + --disable-rpath \ + --with-libevent="${EPREFIX}"/usr \ + --with-pidfile="${EPREFIX}"/var/run/unbound.pid \ + --with-rootkey-file="${EPREFIX}"/etc/dnssec/root-anchors.txt \ + --with-ssl="${EPREFIX}"/usr \ + --with-libexpat="${EPREFIX}"/usr + + # http://unbound.nlnetlabs.nl/pipermail/unbound-users/2011-April/001801.html + # $(use_enable debug lock-checks) \ + # $(use_enable debug alloc-checks) \ + # $(use_enable debug alloc-lite) \ + # $(use_enable debug alloc-nonregional) \ +} + +multilib_src_install_all() { + prune_libtool_files --modules + use python && python_optimize + + newinitd "${FILESDIR}"/unbound.initd unbound + newconfd "${FILESDIR}"/unbound.confd unbound + + systemd_dounit "${FILESDIR}"/unbound.service + systemd_newunit "${FILESDIR}"/unbound_at.service "unbound@.service" + systemd_dounit "${FILESDIR}"/unbound-anchor.service + + dodoc doc/{README,CREDITS,TODO,Changelog,FEATURES} + + # bug #315519 + dodoc contrib/unbound_munin_ + + docinto selinux + dodoc contrib/selinux/* + + exeinto /usr/share/${PN} + doexe contrib/update-anchor.sh +} diff --git a/net-mail/imapsync/Manifest b/net-mail/imapsync/Manifest index 12d864708a34..83d3efccf756 100644 --- a/net-mail/imapsync/Manifest +++ b/net-mail/imapsync/Manifest @@ -1,3 +1,2 @@ -DIST imapsync-1.567.tgz 848206 SHA256 ea266023adc1c1ee0dab2605865c17ca78353504869415924fc6c20fea798c88 SHA512 a0107c0ae9fa05d02d0cff9088abcd9b21fad71cfe6a9f4ce1d828910f0723018a40888538212fd3350baadf0cd9d75b78eedcd8a562dff611fe0956008019bd WHIRLPOOL 4b4052dc724ca4a51b0876c6347201417e63acf2fde053ba0557bcb1cc661b1e4ecb4db6d5865d09467223e8a412b78eb16f8d107b1bd94548d0836601f9cf2a -DIST imapsync-1.584.tgz 844115 SHA256 6f5eefe7646b9d2c41f94d100ee60d390a090c45e41c244de45ac7c31efc25ae SHA512 8978cc999b9af38b8d135a226456f858e265e21b138990b926d8b569088ccafc035dba9426f1a7f0d1027ef5e4432eec9ad113d8eb18c00c199afa3fb803eebe WHIRLPOOL 8f70ebbd4a42d2e7d0e1798e8c245ae7de41e2304d6f0ed873028a28dfe07e07af984b010d0aa68a028ce2d207144186a88e182dc3dbf730b9ac9e8c984469fc DIST imapsync-1.592.tgz 906578 SHA256 dd359a5b871dd278fbb39ba0c087576e97af1d746c49a104bc00a533b463ab64 SHA512 3d41b28396d9b8bf83200b324b2e312c76ef88e42f4ff8993c8d697b18f321400d7a157b1fee2d3ad4eae11400dc2186a18528bde50e370d856eac1b09c28f68 WHIRLPOOL ab0783acc911dacf394e19c4b3bbcd0bcc6de55088e11846271a590ffd4d79935d2bcffbe601bd1e599dffd1df5d9ade0fc6578b9252d3363f81f3982e96ff34 +DIST imapsync-1.607.tgz 973467 SHA256 784331cfa6cc391751dcdc5290eba5d50bf3ddbe9b213f072b413941a3fe4f2a SHA512 2630d32683f74ec260d322d2d9f13fb30938c077275cd43cece392b43bbdf8989f8ff6df648d520b785a568bf5d6f45d43761bf4fb94649e210611224ad43841 WHIRLPOOL b2c089879a475aba14fec66912d024b1365e0b6c7bf56c3e4c291c3f5c96008ff302241d3a8675c82dc1fced36ca88a05b06054058c107edcfd7f73bac7e9544 diff --git a/net-mail/imapsync/imapsync-1.567.ebuild b/net-mail/imapsync/imapsync-1.567.ebuild deleted file mode 100644 index 7c34c73dc4c3..000000000000 --- a/net-mail/imapsync/imapsync-1.567.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/imapsync/imapsync-1.567.ebuild,v 1.4 2014/01/26 11:03:51 ago Exp $ - -EAPI=5 - -DESCRIPTION="A tool allowing incremental and recursive imap transfer from one mailbox to another" -HOMEPAGE="http://ks.lamiral.info/imapsync/" -SRC_URI="https://fedorahosted.org/released/${PN}/${P}.tgz" - -LICENSE="WTFPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" - -DEPEND="dev-lang/perl" -RDEPEND="${DEPEND} - dev-perl/Digest-HMAC - dev-perl/IO-Socket-SSL - dev-perl/Mail-IMAPClient - dev-perl/TermReadKey - virtual/perl-Digest-MD5 - virtual/perl-MIME-Base64" - -RESTRICT="test" - -src_prepare() { - sed -i -e "s/^install: testp/install:/" \ - -e "/^DO_IT/,/^$/d" "${S}"/Makefile || die -} - -src_compile() { :; } diff --git a/net-mail/imapsync/imapsync-1.584-r1.ebuild b/net-mail/imapsync/imapsync-1.607.ebuild similarity index 92% rename from net-mail/imapsync/imapsync-1.584-r1.ebuild rename to net-mail/imapsync/imapsync-1.607.ebuild index 8aae4bc9a85e..8d30f13fed47 100644 --- a/net-mail/imapsync/imapsync-1.584-r1.ebuild +++ b/net-mail/imapsync/imapsync-1.607.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/imapsync/imapsync-1.584-r1.ebuild,v 1.1 2014/04/30 20:08:13 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/imapsync/imapsync-1.607.ebuild,v 1.1 2014/12/04 04:21:10 radhermit Exp $ EAPI=5 @@ -17,6 +17,7 @@ RDEPEND="${DEPEND} dev-perl/Digest-HMAC dev-perl/File-Copy-Recursive dev-perl/IO-Socket-SSL + dev-perl/IO-Tee dev-perl/Mail-IMAPClient dev-perl/TermReadKey virtual/perl-Digest-MD5 diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest index d0aced9b7a08..d7d428bfcbd9 100644 --- a/net-misc/youtube-dl/Manifest +++ b/net-misc/youtube-dl/Manifest @@ -1,3 +1,3 @@ DIST youtube-dl-2014.11.02.1.tar.gz 1123292 SHA256 2e4ee5cc168eb56f778beec48809aa18068c22f8bbaa1911f5b69cf51edb609e SHA512 0a21d216c36642a079e837440d05338970abd30352564a41267ddb33ff4afd866a28aa678c7186b2a0dd4a11e8ec1e36b55bdf1307b3f23b9f2d3422d8ab9fbd WHIRLPOOL 6bbd185c60371ef553899a2838950fcefa849c76b8ec70d18106e38f9be3ec0bc28c799bd3de3d4ad6a0956699ed6613706b7b4205fcddef1f0ec4bc7c9772a7 -DIST youtube-dl-2014.11.27.tar.gz 1156303 SHA256 4a852a97d826561b1d63ee6ca924eb2d1758b5d80baf2b5314cd9629c7a5b22e SHA512 dc2bedebecb5dead2117af9b6d81b127e59779437a042edf2d3ff356d65d197fc5318f58b94fb78575335df1c0cb6bbabbd307f040b6b3a76a0130c4883e4004 WHIRLPOOL 9ef79d96693e8f5fff6938db378758bc73b0a298450a8a81a4ee1b654629e72349449b0338615f194295515c7fb3e8fb5b8629df0b2476b17f6a1fbecad74f59 DIST youtube-dl-2014.12.01.tar.gz 1161622 SHA256 e47cab932c1c1fcaddb8e4a3ada0560421f8d356d63c074b0a7e91b494a0ec56 SHA512 832e81a16c3a9d59c27cbda55c46e7bf3943fa5c686d4750075c207dbd331c6858898ce4dc6e18a3aea2cccdec089d858d2d24d775463a1c21aaeeb15affd306 WHIRLPOOL 79d8014672d146f783d17ea5aae14cfefb59ac747cf24de8e5e4105ccaf7b98508a0bc3ed07a74e726cffcad47f6128929206f802af46b1e3c2696098f89d4b2 +DIST youtube-dl-2014.12.03.tar.gz 1164397 SHA256 019414111094a3a1e52a14fe579fe1a52dd5a60eb19170fb6fc159aa5e1b1908 SHA512 3bf9b94d521e7105814e2a4acdef54af16de7f88eea53e09b13316cf84040c63e32e2daaf01a0661dd85613200a6142eb471decc0a9b7e394b3f765fc7e966d7 WHIRLPOOL d4c20e2bd106198616f2acf525c852dfa381a9a5484985f166b8fa4e34b7457bd50054243b5ea65a4639c18ddf5a883ab46cf3723325656e75611cb998fd17ba diff --git a/net-misc/youtube-dl/youtube-dl-2014.11.27.ebuild b/net-misc/youtube-dl/youtube-dl-2014.12.03.ebuild similarity index 96% rename from net-misc/youtube-dl/youtube-dl-2014.11.27.ebuild rename to net-misc/youtube-dl/youtube-dl-2014.12.03.ebuild index d6cd100b2de8..95847f6f1660 100644 --- a/net-misc/youtube-dl/youtube-dl-2014.11.27.ebuild +++ b/net-misc/youtube-dl/youtube-dl-2014.12.03.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/youtube-dl-2014.11.27.ebuild,v 1.1 2014/11/28 10:24:13 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/youtube-dl-2014.12.03.ebuild,v 1.1 2014/12/04 00:05:16 jer Exp $ EAPI=5 diff --git a/profiles/features/selinux/package.use.force b/profiles/features/selinux/package.use.force index afaa04933b85..78d30953028e 100644 --- a/profiles/features/selinux/package.use.force +++ b/profiles/features/selinux/package.use.force @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/features/selinux/package.use.force,v 1.8 2013/05/21 19:02:54 swift Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/features/selinux/package.use.force,v 1.10 2014/12/03 13:22:09 perfinion Exp $ # Sven Vermeulen (19 Apr 2013) # sys-apps/policycoreutils (semanage command) uses sepolgen, which requires libselinux with USE="python". @@ -14,3 +14,9 @@ app-admin/setools python # sys-apps/policycoreutils has PYTHON_USE_WITH="xml" set, so we force it # here to allow stages to build with USE=xml on python dev-lang/python xml + +# Jason Zaman (03 Dec 2014) +# sys-apps/busybox has IUSE="+static", so force static-libs on its deps +# so stages can build with no interacton. Bug #527938 +sys-libs/libselinux static-libs +dev-libs/libpcre static-libs diff --git a/profiles/hardened/linux/package.use.mask b/profiles/hardened/linux/package.use.mask index 2b87d41dc979..569920fee8c1 100644 --- a/profiles/hardened/linux/package.use.mask +++ b/profiles/hardened/linux/package.use.mask @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/linux/package.use.mask,v 1.16 2014/10/11 05:07:07 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/linux/package.use.mask,v 1.17 2014/12/04 03:34:40 axs Exp $ # Tim Harder (11 Oct 2014) # Skype doesn't work on hardened @@ -19,3 +19,7 @@ media-tv/xbmc profile # bug #468404 net-analyzer/wireshark profile + +# Ian Stakenvicius (03 Dec 2014) +# Have no way of knowing what Gecko Media Plugins will install in profiles +www-client/firefox gmp-autoupdate diff --git a/profiles/package.mask b/profiles/package.mask index 9edc874fff8e..70098491c7c2 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -1,5 +1,5 @@ #################################################################### -# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16199 2014/12/03 07:50:05 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16200 2014/12/04 04:03:36 axs Exp $ # # When you add an entry to the top of this file, add your name, the date, and # an explanation of why something is getting masked. Please be extremely @@ -30,6 +30,10 @@ #--- END OF EXAMPLES --- +# Ian Stakenvicius (03 Dec 2014) +# masked for testing +media-libs/openh264 + # Justin Lecher (02 Dec 2014) # Not supported by upstream anymore # Revdeps broken, #531392 diff --git a/profiles/use.local.desc b/profiles/use.local.desc index d37063c2e7b4..2a4bd4eecff5 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -213,6 +213,7 @@ app-admin/sagan:pcap - Add support for network packet capture via net-libs/libpc app-admin/sagan:smtp - Build witch SMTP (E-Mail) support app-admin/sagan:snort - Add support to interact with Snort IDE using net-analyzer/snortsam' app-admin/sagan-rules:lognorm - Install normalize rules support with dev-libs/liblognorm +app-admin/salt:api - Enable support for salt-api. app-admin/salt:cherrypy - Enable support for cherrypy. app-admin/salt:gnupg - Enable support for gnupg via python-gnupg. app-admin/salt:keyring - Enable support for keyrings via python-keyring. @@ -3718,6 +3719,7 @@ media-libs/opencv:ipp - Enable Intel Integrated Primitive support media-libs/opencv:opencl - Add support for OpenCL media-libs/opencv:testprograms - Build and install programs for testing OpenCV (performance) media-libs/opencv:vtk - Build new 3D visualization module viz based on sci-libs/vtk +media-libs/openh264:plugin - Install the Gecko Media Plugin (GMP) for use with Mozilla packages media-libs/openimageio:colorio - Use media-gfx/opencolorio media-libs/openimageio:opencv - Use media-libs/opencv media-libs/openimageio:tbb - Use dev-cpp/tbb @@ -6672,7 +6674,6 @@ sys-apps/pkgcore:doc - Build and install API docs. sys-apps/policycoreutils:audit - Enable support for sys-process/audit and use the audit_* functions (like audit_getuid instead of getuid()) sys-apps/portage:epydoc - Build html API documentation with epydoc. sys-apps/portage:ipc - Use inter-process communication between portage and running ebuilds. -sys-apps/portage:pypy - Use pypy as Python interpreter. sys-apps/portage:pypy2_0 - Use pypy-c2.0 as Python interpreter. sys-apps/portage:python2 - Use python2 as Python interpreter. sys-apps/portage:python3 - Use python3 as Python interpreter. @@ -7292,6 +7293,7 @@ www-client/elinks:mouse - Make elinks to grab all mouse events www-client/epiphany:nss - Import passwords from older gecko based www-client/epiphany keyring. www-client/firefox:bindist - Disable official Firefox branding (icons, name) which are not binary-redistributable according to upstream. www-client/firefox:custom-optimization - Fine-tune custom compiler optimizations (-Os, -O0, -O1, -O2, -O3) +www-client/firefox:gmp-autoupdate - Allow Gecko Media Plugins (binary blobs) to be automatically downloaded and kept up-to-date in user profiles www-client/firefox:ipc - Use inter-process communication between tabs and plugins. Allows for greater stability in case of plugin crashes www-client/firefox:minimal - Prevent sdk and headers from being installed www-client/firefox:pgo - Add support for profile-guided optimization using gcc-4.5, for faster binaries. This option will double the compile time. diff --git a/sys-apps/pciutils/Manifest b/sys-apps/pciutils/Manifest index 2b3eaa75a1da..f82340618dad 100644 --- a/sys-apps/pciutils/Manifest +++ b/sys-apps/pciutils/Manifest @@ -1,2 +1,3 @@ DIST pciutils-3.2.0.tar.gz 357003 SHA256 84e705bff712b128a942117565a3506bd4b8bf841d397c1962c6255169762f71 SHA512 ce619bca35c529f947b883858164584db9fd16be05b44bd20d7f30b73246076b8c80a9e0ff3f7b2c27366a08043488ccfee98dd3cb43e3c5ee8962efaa056fd1 WHIRLPOOL fda9efb423ba444b460986b82b89feb3e5940d63774377eab4dce6ed1a1c690824192ca25d04a4f34960412ddedbdb9c874dace2256ccd1dede61ee99618b418 DIST pciutils-3.2.1.tar.gz 367046 SHA256 b31131b721fa26378b4af61b1c49986ff40fe590bc210545b210b6b774337858 SHA512 b8b2983743728eebe9f26de3b96fc8242853bbcac07df02684510c9a3ac43b0258601f5063d16fb09407cadcda7e5778a41f57423d031244f66e34041c4dbf02 WHIRLPOOL 877cfa1d28df52389179eb5ec7bc1dab7fc1677574f2694d5ca8fe33bb76dcae04a2b25b3f0cc704dd9fe6d4cf4206671799f49aa92476e9f3f74e2ca108ff1f +DIST pciutils-3.3.0.tar.gz 424967 SHA256 4b576a1c2570046fda83fa2c5488661de698874ab04fd8e06eef4b6ab806d58a SHA512 bd8c1177dfd59250f573e22c933df1673af1489758218aeb73d1b480954993fc34e7f67ae7f1a257e8b23044f7f52a806fe37947f6ea20a39e30471d9a8a4085 WHIRLPOOL 67f99d6130344e866601f5e14ff28f0929812d7d5d36e2485e51d00d1c61a514288bb8b899703a50b90e886668a485a013b40be98475a52fbc20896d08229976 diff --git a/sys-apps/pciutils/pciutils-3.3.0.ebuild b/sys-apps/pciutils/pciutils-3.3.0.ebuild new file mode 100644 index 000000000000..51df4db13451 --- /dev/null +++ b/sys-apps/pciutils/pciutils-3.3.0.ebuild @@ -0,0 +1,84 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pciutils/pciutils-3.3.0.ebuild,v 1.1 2014/12/04 04:09:30 radhermit Exp $ + +EAPI="5" + +inherit eutils multilib toolchain-funcs + +DESCRIPTION="Various utilities dealing with the PCI bus" +HOMEPAGE="http://mj.ucw.cz/sw/pciutils/ http://git.kernel.org/?p=utils/pciutils/pciutils.git" +SRC_URI="ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${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 ~x64-freebsd ~amd64-linux ~arm-linux ~x86-linux" +IUSE="dns +kmod static-libs zlib" + +# Have the sub-libs in RDEPEND with [static-libs] since, logically, +# our libssl.a depends on libz.a/etc... at runtime. +LIB_DEPEND="zlib? ( sys-libs/zlib[static-libs(+)] )" +DEPEND="kmod? ( sys-apps/kmod ) + static-libs? ( ${LIB_DEPEND} ) + !static-libs? ( ${LIB_DEPEND//\[static-libs(+)]} )" +RDEPEND="${DEPEND} + sys-apps/hwids" +DEPEND="${DEPEND} + kmod? ( virtual/pkgconfig )" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-3.1.9-static-pc.patch + + if use static-libs ; then + cp -pPR "${S}" "${S}.static" || die + fi +} + +pemake() { + emake \ + HOST="${CHOST}" \ + CROSS_COMPILE="${CHOST}-" \ + CC="$(tc-getCC)" \ + DNS=$(usex dns) \ + IDSDIR='$(SHAREDIR)/misc' \ + MANDIR='$(SHAREDIR)/man' \ + PREFIX="${EPREFIX}/usr" \ + SHARED="yes" \ + STRIP="" \ + ZLIB=$(usex zlib) \ + PCI_COMPRESSED_IDS=0 \ + PCI_IDS=pci.ids \ + LIBDIR="\${PREFIX}/$(get_libdir)" \ + LIBKMOD=$(usex kmod) \ + "$@" +} + +src_compile() { + pemake OPT="${CFLAGS}" all + if use static-libs ; then + pemake \ + -C "${S}.static" \ + OPT="${CFLAGS}" \ + SHARED="no" \ + lib/libpci.a + fi +} + +src_install() { + pemake DESTDIR="${D}" install install-lib + use static-libs && dolib.a "${S}.static/lib/libpci.a" + dodoc ChangeLog README TODO + + rm "${ED}"/usr/sbin/update-pciids "${ED}"/usr/share/misc/pci.ids \ + "${ED}"/usr/share/man/man8/update-pciids.8* + + newinitd "${FILESDIR}"/init.d-pciparm pciparm + newconfd "${FILESDIR}"/conf.d-pciparm pciparm +} + +pkg_postinst() { + if [[ ${REPLACING_VERSIONS} ]] && [[ ${REPLACING_VERSIONS} < 3.2.0 ]]; then + elog "The 'network-cron' USE flag is gone; if you want a more up-to-date" + elog "pci.ids file, you should use sys-apps/hwids-99999999 (live ebuild)." + fi +} diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest index 8aa14ec54fb2..c566a908289b 100644 --- a/sys-apps/portage/Manifest +++ b/sys-apps/portage/Manifest @@ -1,4 +1,3 @@ -DIST portage-2.2.12.tar.bz2 879865 SHA256 d745d3d20abc0347632bf3a66bd80e5a45db24f3ba047cfbbacea8812156062f SHA512 55426a2d34227a4e0998342a62cd76ae9e1499ae5a92b62a10c93f7957012170615ab9d204878a25e815ee5ef9e925fe800f0eb7c3c35307577ba0ed8b38461c WHIRLPOOL 7f6987fbda9f59643e8693d75b3ed10a9b57ce5fa82a80679cc663ef1c02dbbf9986542c0e3b6638a3f4a5fb6058a0e06738a46e0f44fc5f56daed509f5bf12b DIST portage-2.2.14.tar.bz2 896674 SHA256 8dd65971e0f1c31dca922b0f7be06e622aabbed8d012d056ff25a169fc9946d8 SHA512 c8724b42d9932adf6065ff9f9c3bb3d22ec3258dcdb23e041ce704f2c7b634d459a36764f3ec5aa4613843733c70725025af10439816c538ec12837db50dc1ab WHIRLPOOL 82bb660fcc1f0bb4639b53829cf8207fc40ee01a0cb9935ad46fb5039f0558fbbbb3af3d12d208289e9701e0874d77a7990911fd50fe04806948c6c6955625fc -DIST portage-2.2.14_rc1.tar.bz2 896187 SHA256 fb37bba1c45dbec949fb3ecf8cb531841e87f8b2e17a426d47962c91d51b0cb5 SHA512 bc6a131c8f4f69dd114f602140c303ef880ff698913282d9db6973c84b9a1d43136f89ab4598a6b090c169f326d32fcfb8a5e587eff1dd63b365ab4f821a732d WHIRLPOOL 447fdf8e5bdf2546d2574522c650120b4be5b0056261a1cc7fda96dec0d90bf68749d9528fd8e67ea8f4f4ae06453436770fc6fcd6c5dc2f4d259ecd1f32b235 +DIST portage-2.2.15.tar.bz2 907786 SHA256 be62ee5e104272f9e6472a60db7e05136e6acf212003159b500fa3132a9a68d7 SHA512 4e0ca51ddbe94ce0595e56f549c8cdff68d3d2f7d0d7fdece78adc10a9657ed848f084672840f2533bc7c87c6aaa06e02861c7f9d92bdcc1647c9b40b7a3a5a1 WHIRLPOOL 689e62a261b8fa404c8aedfcc825135ba3005ab920db6cb2ce1040ec252f24f67a5d5c01a84db908598390fc97f6df9d9ba78a106ee16aa748a049bf425bf28d DIST portage-2.2.8.tar.bz2 874672 SHA256 c1074e01173df5384e003598dbc5f64f09e92f83fd26faab2f88f9f0bc64aa7e SHA512 acc47d94ff8c08e5a7bf2d4c4e600863430dd1e7d0bb8b4254d6477a498933cae663db84debf9487d2243c2cba689629ef8e8b6cf108e10d40e89e8e8d7e1257 WHIRLPOOL d54290ede8d3d85e5211cda7e86ed740178121ef2f47cf0858c27941d8679d29c11445befff962986d40a47ded50d0d4654de19e7d4aef3fdf2546655a0d6fe2 diff --git a/sys-apps/portage/metadata.xml b/sys-apps/portage/metadata.xml index d225c6925fc1..56738a1a33b8 100644 --- a/sys-apps/portage/metadata.xml +++ b/sys-apps/portage/metadata.xml @@ -12,7 +12,6 @@ Build html API documentation with epydoc. Use inter-process communication between portage and running ebuilds. - Use pypy as Python interpreter. Use pypy-c2.0 as Python interpreter. Use python2 as Python interpreter. Use python3 as Python interpreter. diff --git a/sys-apps/portage/portage-2.2.12.ebuild b/sys-apps/portage/portage-2.2.12.ebuild deleted file mode 100644 index ed5c9e78211c..000000000000 --- a/sys-apps/portage/portage-2.2.12.ebuild +++ /dev/null @@ -1,572 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.2.12.ebuild,v 1.1 2014/08/12 19:54:39 dolsen Exp $ - -# Require EAPI 2 since we now require at least python-2.6 (for python 3 -# syntax support) which also requires EAPI 2. -EAPI=2 -PYTHON_COMPAT=( - pypy - python3_2 python3_3 python3_4 - python2_7 -) -inherit eutils multilib - -DESCRIPTION="Portage is the package management and distribution system for Gentoo" -HOMEPAGE="http://www.gentoo.org/proj/en/portage/index.xml" -LICENSE="GPL-2" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" -SLOT="0" -IUSE="build doc epydoc +ipc linguas_ru pypy python2 python3 selinux xattr" - -for _pyimpl in ${PYTHON_COMPAT[@]} ; do - IUSE+=" python_targets_${_pyimpl}" -done -unset _pyimpl - -python_dep_ssl="python3? ( =dev-lang/python-3*[ssl] ) - !pypy? ( !python2? ( !python3? ( - >=dev-lang/python-2.7[ssl] - ) ) ) - pypy? ( !python2? ( !python3? ( virtual/pypy:0[bzip2] ) ) ) - python2? ( !python3? ( dev-lang/python:2.7[ssl] ) )" -python_dep="${python_dep_ssl//\[ssl\]}" -python_dep="${python_dep//,ssl}" -python_dep="${python_dep//ssl,}" - -python_dep="${python_dep} - python_targets_pypy? ( virtual/pypy:0 ) - python_targets_python2_7? ( dev-lang/python:2.7 ) - python_targets_python3_2? ( dev-lang/python:3.2 ) - python_targets_python3_3? ( dev-lang/python:3.3 ) - python_targets_python3_4? ( dev-lang/python:3.4 ) -" - -# The pysqlite blocker is for bug #282760. -# make-3.82 is for bug #455858 -DEPEND="${python_dep} - >=sys-devel/make-3.82 - >=sys-apps/sed-4.0.5 sys-devel/patch - doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 ) - epydoc? ( >=dev-python/epydoc-2.0 !<=dev-python/pysqlite-2.4.1 )" -# Require sandbox-2.2 for bug #288863. -# For xattr, we can spawn getfattr and setfattr from sys-apps/attr, but that's -# quite slow, so it's not considered in the dependencies as an alternative to -# to python-3.3 / pyxattr. Also, xattr support is only tested with Linux, so -# for now, don't pull in xattr deps for other kernels. -# For whirlpool hash, require python[ssl] or python-mhash (bug #425046). -# For compgen, require bash[readline] (bug #445576). -RDEPEND="${python_dep} - !build? ( >=sys-apps/sed-4.0.5 - || ( >=app-shells/bash-4.2_p37[readline] ( =app-shells/bash-3.2_p17 ) ) - >=app-admin/eselect-1.2 - || ( ${python_dep_ssl} dev-python/python-mhash ) - ) - elibc_FreeBSD? ( sys-freebsd/freebsd-bin ) - elibc_glibc? ( >=sys-apps/sandbox-2.2 ) - elibc_uclibc? ( >=sys-apps/sandbox-2.2 ) - >=app-misc/pax-utils-0.1.17 - selinux? ( >=sys-libs/libselinux-2.0.94[python] ) - xattr? ( kernel_linux? ( - >=sys-apps/install-xattr-0.3 - $(for python_impl in python{2_7,3_2} pypy; do - echo "python_targets_${python_impl}? ( dev-python/pyxattr[python_targets_${python_impl}] )" - done) ) ) - != 0x2060000 and "good" or "bad")') = good ]] -} - -current_python_has_xattr() { - [[ ${EPYTHON} ]] || die 'No Python implementation set (EPYTHON is null).' - local PYTHON=${EPREFIX}/usr/bin/${EPYTHON} - [[ $("${PYTHON}" -c 'import sys ; sys.stdout.write(sys.hexversion >= 0x3030000 and "yes" or "no")') = yes ]] || \ - "${PYTHON}" -c 'import xattr' 2>/dev/null -} - -call_with_python_impl() { - [[ ${EPYTHON} ]] || die 'No Python implementation set (EPYTHON is null).' - env EPYTHON=${EPYTHON} "$@" -} - -get_python_interpreter() { - [ $# -eq 1 ] || die "expected 1 argument, got $#: $*" - local impl=$1 python - case "${impl}" in - python*) - python=${impl/_/.} - ;; - pypy) - python=${impl} - ;; - *) - die "Unrecognized python target: ${impl}" - esac - echo ${python} -} - -get_python_sitedir() { - [ $# -eq 1 ] || die "expected 1 argument, got $#: $*" - local impl=$1 - local site_dir=usr/$(get_libdir)/${impl/_/.}/site-packages - [[ -d ${EROOT:-${ROOT}}${site_dir} ]] || \ - ewarn "site-packages dir missing for ${impl}: ${EROOT:-${ROOT}}${site_dir}" - echo "/${site_dir}" -} - -python_compileall() { - [[ ${EPYTHON} ]] || die 'No Python implementation set (EPYTHON is null).' - local d=${EPREFIX}$1 PYTHON=${EPREFIX}/usr/bin/${EPYTHON} - local d_image=${D}${d#/} - [[ -d ${d_image} ]] || die "directory does not exist: ${d_image}" - case "${EPYTHON}" in - python*) - "${PYTHON}" -m compileall -q -f -d "${d}" "${d_image}" || die - # Note: Using -OO breaks emaint, since it requires __doc__, - # and __doc__ is None when -OO is used. - "${PYTHON}" -O -m compileall -q -f -d "${d}" "${d_image}" || die - ;; - pypy) - "${PYTHON}" -m compileall -q -f -d "${d}" "${d_image}" || die - ;; - *) - die "Unrecognized EPYTHON value: ${EPYTHON}" - esac -} - -pkg_setup() { - if use python2 && use python3 ; then - ewarn "Both python2 and python3 USE flags are enabled, but only one" - ewarn "can be in the shebangs. Using python3." - fi - if use pypy && use python3 ; then - ewarn "Both pypy and python3 USE flags are enabled, but only one" - ewarn "can be in the shebangs. Using python3." - fi - if use pypy && use python2 ; then - ewarn "Both pypy and python2 USE flags are enabled, but only one" - ewarn "can be in the shebangs. Using python2" - fi - if ! use pypy && ! use python2 && ! use python3 && \ - ! compatible_python_is_selected ; then - ewarn "Attempting to select a compatible default python interpreter" - local x success=0 - for x in "${EPREFIX}"/usr/bin/python2.* ; do - x=${x#${EPREFIX}/usr/bin/python2.} - if [[ $x -ge 6 ]] 2>/dev/null ; then - eselect python set python2.$x - if compatible_python_is_selected ; then - elog "Default python interpreter is now set to python-2.$x" - success=1 - break - fi - fi - done - if [ $success != 1 ] ; then - eerror "Unable to select a compatible default python interpreter!" - die "This version of portage requires at least python-2.6 to be selected as the default python interpreter (see \`eselect python --help\`)." - fi - fi - - # We use EPYTHON to designate the active python interpreter, - # but we only export when needed, via call_with_python_impl. - EPYTHON=python - export -n EPYTHON - if use python3; then - EPYTHON=python3 - elif use python2; then - EPYTHON=python2 - elif use pypy; then - EPYTHON=pypy - fi -} - -src_prepare() { - if [ -n "${PATCHVER}" ] ; then - if [[ -L $S/bin/ebuild-helpers/portageq ]] ; then - rm "$S/bin/ebuild-helpers/portageq" \ - || die "failed to remove portageq helper symlink" - fi - epatch "${WORKDIR}/${PN}-${PATCHVER}.patch" - fi - einfo "Setting portage.VERSION to ${PVR} ..." - sed -e "s/^VERSION = .*/VERSION = \"${PVR}\"/" -i pym/portage/__init__.py || \ - die "Failed to patch portage.VERSION" - sed -e "1s/VERSION/${PVR}/" -i doc/fragment/version || \ - die "Failed to patch VERSION in doc/fragment/version" - sed -e "1s/VERSION/${PVR}/" -i $(find man -type f) || \ - die "Failed to patch VERSION in man page headers" - - if ! use ipc ; then - einfo "Disabling ipc..." - sed -e "s:_enable_ipc_daemon = True:_enable_ipc_daemon = False:" \ - -i pym/_emerge/AbstractEbuildProcess.py || \ - die "failed to patch AbstractEbuildProcess.py" - fi - - if use xattr && use kernel_linux ; then - einfo "Adding FEATURES=xattr to make.globals ..." - echo -e '\nFEATURES="${FEATURES} xattr"' >> cnf/make.globals \ - || die "failed to append to make.globals" - fi - - local set_shebang= - if use python3; then - set_shebang=python3 - elif use python2; then - set_shebang=python2 - elif use pypy; then - set_shebang=pypy - fi - if [[ -n ${set_shebang} ]] ; then - einfo "Converting shebangs for ${set_shebang}..." - while read -r -d $'\0' ; do - local shebang=$(head -n1 "$REPLY") - if [[ ${shebang} == "#!/usr/bin/python"* ]] ; then - sed -i -e "1s:python:${set_shebang}:" "$REPLY" || \ - die "sed failed" - fi - done < <(find . -type f -print0) - fi - - if [[ -n ${EPREFIX} ]] ; then - einfo "Setting portage.const.EPREFIX ..." - sed -e "s|^\(SANDBOX_BINARY[[:space:]]*=[[:space:]]*\"\)\(/usr/bin/sandbox\"\)|\\1${EPREFIX}\\2|" \ - -e "s|^\(FAKEROOT_BINARY[[:space:]]*=[[:space:]]*\"\)\(/usr/bin/fakeroot\"\)|\\1${EPREFIX}\\2|" \ - -e "s|^\(BASH_BINARY[[:space:]]*=[[:space:]]*\"\)\(/bin/bash\"\)|\\1${EPREFIX}\\2|" \ - -e "s|^\(MOVE_BINARY[[:space:]]*=[[:space:]]*\"\)\(/bin/mv\"\)|\\1${EPREFIX}\\2|" \ - -e "s|^\(PRELINK_BINARY[[:space:]]*=[[:space:]]*\"\)\(/usr/sbin/prelink\"\)|\\1${EPREFIX}\\2|" \ - -e "s|^\(EPREFIX[[:space:]]*=[[:space:]]*\"\).*|\\1${EPREFIX}\"|" \ - -i pym/portage/const.py || \ - die "Failed to patch portage.const.EPREFIX" - - einfo "Prefixing shebangs ..." - while read -r -d $'\0' ; do - local shebang=$(head -n1 "$REPLY") - if [[ ${shebang} == "#!"* && ! ${shebang} == "#!${EPREFIX}/"* ]] ; then - sed -i -e "1s:.*:#!${EPREFIX}${shebang:2}:" "$REPLY" || \ - die "sed failed" - fi - done < <(find . -type f -print0) - - einfo "Adjusting make.globals ..." - sed -e "s|\(/usr/portage\)|${EPREFIX}\\1|" \ - -e "s|^\(PORTAGE_TMPDIR=\"\)\(/var/tmp\"\)|\\1${EPREFIX}\\2|" \ - -i cnf/make.globals || die "sed failed" - - einfo "Adjusting repos.conf ..." - sed -e "s|^\(main-repo = \).*|\\1gentoo_prefix|" \ - -e "s|^\\[gentoo\\]|[gentoo_prefix]|" \ - -e "s|^\(location = \)\(/usr/portage\)|\\1${EPREFIX}\\2|" \ - -e "s|^\(sync-uri = \).*|\\1rsync://prefix.gentooexperimental.org/gentoo-portage-prefix|" \ - -i cnf/repos.conf || die "sed failed" - - einfo "Adding FEATURES=force-prefix to make.globals ..." - echo -e '\nFEATURES="${FEATURES} force-prefix"' >> cnf/make.globals \ - || die "failed to append to make.globals" - fi - - cd "${S}/cnf" || die - if [ -f "make.conf.example.${ARCH}".diff ]; then - patch make.conf.example "make.conf.example.${ARCH}".diff || \ - die "Failed to patch make.conf.example" - else - eerror "" - eerror "Portage does not have an arch-specific configuration for this arch." - eerror "Please notify the arch maintainer about this issue. Using generic." - eerror "" - fi -} - -src_compile() { - if use doc; then - call_with_python_impl \ - emake docbook || die - fi - - if use epydoc; then - einfo "Generating api docs" - call_with_python_impl \ - emake epydoc || die - fi -} - -src_test() { - # make files executable, in case they were created by patch - find bin -type f | xargs chmod +x - call_with_python_impl \ - emake test || die -} - -src_install() { - call_with_python_impl \ - emake DESTDIR="${D}" \ - sysconfdir="${EPREFIX}/etc" \ - prefix="${EPREFIX}/usr" \ - install || die - - # Use dodoc for compression, since the Makefile doesn't do that. - dodoc "${S}"/{ChangeLog,NEWS,RELEASE-NOTES} || die - - # Allow external portage API consumers to import portage python modules - # (this used to be done with PYTHONPATH setting in /etc/env.d). - # For each of PYTHON_TARGETS, install a tree of *.py symlinks in - # site-packages, and compile with the corresponding interpreter. - local impl files mod_dir dest_mod_dir python relative_path x - for impl in "${PYTHON_COMPAT[@]}" ; do - use "python_targets_${impl}" || continue - if use build && [[ ${ROOT} == / && - ! -x ${EPREFIX}/usr/bin/$(get_python_interpreter ${impl}) ]] ; then - # Tolerate --nodeps at beginning of stage1 for catalyst - ewarn "skipping python_targets_${impl}, interpreter not found" - continue - fi - while read -r mod_dir ; do - cd "${ED:-${D}}usr/lib/portage/pym/${mod_dir}" || die - files=$(echo *.py) - if [ -z "${files}" ] || [ "${files}" = "*.py" ]; then - # __pycache__ directories contain no py files - continue - fi - dest_mod_dir=$(get_python_sitedir ${impl})/${mod_dir} - dodir "${dest_mod_dir}" || die - relative_path=../../../lib/portage/pym/${mod_dir} - x=/${mod_dir} - while [ -n "${x}" ] ; do - relative_path=../${relative_path} - x=${x%/*} - done - for x in ${files} ; do - dosym "${relative_path}/${x}" \ - "${dest_mod_dir}/${x}" || die - done - done < <(cd "${ED:-${D}}"usr/lib/portage/pym || die ; find * -type d ! -path "portage/tests*") - cd "${S}" || die - EPYTHON=$(get_python_interpreter ${impl}) \ - python_compileall "$(get_python_sitedir ${impl})" - done - - # Compile /usr/lib/portage/pym with the active interpreter, since portage - # internal commands force this directory to the beginning of sys.path. - python_compileall /usr/lib/portage/pym -} - -pkg_preinst() { - if [[ $ROOT == / ]] ; then - # Run some minimal tests as a sanity check. - local test_runner=$(find "${ED:-${D}}" -name runTests) - if [[ -n $test_runner && -x $test_runner ]] ; then - einfo "Running preinst sanity tests..." - "$test_runner" || die "preinst sanity tests failed" - fi - fi - - if use xattr && ! current_python_has_xattr ; then - ewarn "For optimal performance in xattr handling, install" - ewarn "dev-python/pyxattr, or install >=dev-lang/python-3.3 and" - ewarn "enable USE=python3 for $CATEGORY/$PN." - fi - - # elog dir must exist to avoid logrotate error for bug #415911. - # This code runs in preinst in order to bypass the mapping of - # portage:portage to root:root which happens after src_install. - keepdir /var/log/portage/elog - # This is allowed to fail if the user/group are invalid for prefix users. - if chown portage:portage "${ED:-${D}}"var/log/portage{,/elog} 2>/dev/null ; then - chmod g+s,ug+rwx "${ED:-${D}}"var/log/portage{,/elog} - fi - - # If portage-2.1.6 is installed and the preserved_libs_registry exists, - # assume that the NEEDED.ELF.2 files have already been generated. - has_version "<=${CATEGORY}/${PN}-2.2_pre7" && \ - ! { [ -e "${EROOT:-${ROOT}}"var/lib/portage/preserved_libs_registry ] && \ - has_version ">=${CATEGORY}/${PN}-2.1.6_rc" ; } \ - && NEEDED_REBUILD_UPGRADE=true || NEEDED_REBUILD_UPGRADE=false - - if has_version "<${CATEGORY}/${PN}-2.1.13" || \ - { - has_version ">=${CATEGORY}/${PN}-2.2_rc0" && \ - has_version "<${CATEGORY}/${PN}-2.2.0_alpha189" - } ; then - USERPRIV_UPGRADE=true - USERSYNC_UPGRADE=true - REPOS_CONF_UPGRADE=true - REPOS_CONF_SYNC= - type -P portageq >/dev/null 2>&1 && \ - REPOS_CONF_SYNC=$("$(type -P portageq)" envvar SYNC) - else - USERPRIV_UPGRADE=false - USERSYNC_UPGRADE=false - REPOS_CONF_UPGRADE=false - fi -} - -get_ownership() { - case ${USERLAND} in - BSD) - stat -f '%Su:%Sg' "${1}" - ;; - *) - stat -c '%U:%G' "${1}" - ;; - esac -} - -new_config_protect() { - # Generate a ._cfg file even if the target file - # does not exist, ensuring that the user will - # notice the config change. - local basename=${1##*/} - local dirname=${1%/*} - local i=0 - while true ; do - local filename=$( - echo -n "${dirname}/._cfg" - printf "%04d" ${i} - echo -n "_${basename}" - ) - [[ -e ${filename} ]] || break - (( i++ )) - done - echo "${filename}" -} - -pkg_postinst() { - - if ${REPOS_CONF_UPGRADE} ; then - einfo "Generating repos.conf" - local repo_name= - [[ -f ${PORTDIR}/profiles/repo_name ]] && \ - repo_name=$(< "${PORTDIR}/profiles/repo_name") - if [[ -z ${REPOS_CONF_SYNC} ]] ; then - REPOS_CONF_SYNC=$(grep "^sync-uri =" "${EROOT:-${ROOT}}usr/share/portage/config/repos.conf") - REPOS_CONF_SYNC=${REPOS_CONF_SYNC##* } - fi - local sync_type= - [[ ${REPOS_CONF_SYNC} == git://* ]] && sync_type=git - - if [[ ${REPOS_CONF_SYNC} == cvs://* ]]; then - sync_type=cvs - REPOS_CONF_SYNC=${REPOS_CONF_SYNC#cvs://} - fi - - cat <<-EOF > "${T}/repos.conf" - [DEFAULT] - main-repo = ${repo_name:-gentoo} - - [${repo_name:-gentoo}] - location = ${PORTDIR:-${EPREFIX}/usr/portage} - sync-type = ${sync_type:-rsync} - sync-uri = ${REPOS_CONF_SYNC} - EOF - - [[ ${sync_type} == cvs ]] && echo "sync-cvs-repo = $(<"${PORTDIR}/CVS/Repository")" >> "${T}/repos.conf" - - local dest=${EROOT:-${ROOT}}etc/portage/repos.conf - if [[ ! -f ${dest} ]] && mkdir -p "${dest}" 2>/dev/null ; then - dest=${EROOT:-${ROOT}}etc/portage/repos.conf/${repo_name:-gentoo}.conf - fi - # Don't install the config update if the desired repos.conf directory - # and config file exist, since users may accept it blindly and break - # their config (bug #478726). - [[ -e ${EROOT:-${ROOT}}etc/portage/repos.conf/${repo_name:-gentoo}.conf ]] || \ - mv "${T}/repos.conf" "$(new_config_protect "${dest}")" - - if [[ ${PORTDIR} == ${EPREFIX}/usr/portage ]] ; then - einfo "Generating make.conf PORTDIR setting for backward compatibility" - for dest in "${EROOT:-${ROOT}}etc/make.conf" "${EROOT:-${ROOT}}etc/portage/make.conf" ; do - [[ -e ${dest} ]] && break - done - [[ -d ${dest} ]] && dest=${dest}/portdir.conf - rm -rf "${T}/make.conf" - [[ -f ${dest} ]] && cat "${dest}" > "${T}/make.conf" - cat <<-EOF >> "${T}/make.conf" - - # Set PORTDIR for backward compatibility with various tools: - # gentoo-bashcomp - bug #478444 - # euse - bug #474574 - # euses and ufed - bug #478318 - PORTDIR="${EPREFIX}/usr/portage" - EOF - mkdir -p "${dest%/*}" - mv "${T}/make.conf" "$(new_config_protect "${dest}")" - fi - fi - - if ${NEEDED_REBUILD_UPGRADE} ; then - einfo "rebuilding NEEDED.ELF.2 files" - local cpv filename line newline - for cpv in "${EROOT:-${ROOT}}var/db/pkg"/*/*; do - [[ -f "${cpv}/NEEDED" && ! -f "${cpv}/NEEDED.ELF.2" ]] || continue - while read -r line; do - filename=${line% *} - newline=$(scanelf -BF "%a;%F;%S;%r;%n" "${ROOT%/}${filename}") - newline=${newline// - } - [[ ${#ROOT} -gt 1 ]] && newline=${newline/${ROOT%/}} - echo "${newline:3}" >> "${cpv}/NEEDED.ELF.2" - done < "${cpv}/NEEDED" - done - fi - - local distdir=${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}} - - if ${USERSYNC_UPGRADE} && \ - [[ -d ${PORTDIR} && -w ${PORTDIR} ]] ; then - local ownership=$(get_ownership "${PORTDIR}") - if [[ -n ${ownership} ]] ; then - einfo "Adjusting PORTDIR permissions for usersync" - find "${PORTDIR}" -path "${distdir%/}" -prune -o \ - ! \( -user "${ownership%:*}" -a -group "${ownership#*:}" \) \ - -exec chown "${ownership}" {} + - fi - fi - - # Do this last, since it could take a long time if there - # are lots of live sources, and the user may be tempted - # to kill emerge while it is running. - if ${USERPRIV_UPGRADE} && \ - [[ -d ${distdir} && -w ${distdir} ]] ; then - local ownership=$(get_ownership "${distdir}") - if [[ ${ownership#*:} == portage ]] ; then - einfo "Adjusting DISTDIR permissions for userpriv" - find "${distdir}" -mindepth 1 -maxdepth 1 -type d -uid 0 \ - -exec chown -R portage:portage {} + - fi - fi -} diff --git a/sys-apps/portage/portage-2.2.14_rc1.ebuild b/sys-apps/portage/portage-2.2.15.ebuild similarity index 67% rename from sys-apps/portage/portage-2.2.14_rc1.ebuild rename to sys-apps/portage/portage-2.2.15.ebuild index e2b836cb2c58..000af42b091f 100644 --- a/sys-apps/portage/portage-2.2.14_rc1.ebuild +++ b/sys-apps/portage/portage-2.2.15.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.2.14_rc1.ebuild,v 1.2 2014/09/26 20:32:03 dolsen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.2.15.ebuild,v 1.1 2014/12/04 01:25:20 dolsen Exp $ EAPI=5 @@ -213,4 +213,110 @@ pkg_preinst() { if chown portage:portage "${ED}"var/log/portage{,/elog} 2>/dev/null ; then chmod g+s,ug+rwx "${ED}"var/log/portage{,/elog} fi + + if has_version "<${CATEGORY}/${PN}-2.1.13" || \ + { + has_version ">=${CATEGORY}/${PN}-2.2_rc0" && \ + has_version "<${CATEGORY}/${PN}-2.2.0_alpha189" + } ; then + USERPRIV_UPGRADE=true + USERSYNC_UPGRADE=true + REPOS_CONF_UPGRADE=true + REPOS_CONF_SYNC= + type -P portageq >/dev/null 2>&1 && \ + REPOS_CONF_SYNC=$("$(type -P portageq)" envvar SYNC) + else + USERPRIV_UPGRADE=false + USERSYNC_UPGRADE=false + REPOS_CONF_UPGRADE=false + fi +} + +pkg_postinst() { + + if ${REPOS_CONF_UPGRADE} ; then + einfo "Generating repos.conf" + local repo_name= + [[ -f ${PORTDIR}/profiles/repo_name ]] && \ + repo_name=$(< "${PORTDIR}/profiles/repo_name") + if [[ -z ${REPOS_CONF_SYNC} ]] ; then + REPOS_CONF_SYNC=$(grep "^sync-uri =" "${EROOT:-${ROOT}}usr/share/portage/config/repos.conf") + REPOS_CONF_SYNC=${REPOS_CONF_SYNC##* } + fi + local sync_type= + [[ ${REPOS_CONF_SYNC} == git://* ]] && sync_type=git + + if [[ ${REPOS_CONF_SYNC} == cvs://* ]]; then + sync_type=cvs + REPOS_CONF_SYNC=${REPOS_CONF_SYNC#cvs://} + fi + + cat <<-EOF > "${T}/repos.conf" + [DEFAULT] + main-repo = ${repo_name:-gentoo} + + [${repo_name:-gentoo}] + location = ${PORTDIR:-${EPREFIX}/usr/portage} + sync-type = ${sync_type:-rsync} + sync-uri = ${REPOS_CONF_SYNC} + EOF + + [[ ${sync_type} == cvs ]] && echo "sync-cvs-repo = $(<"${PORTDIR}/CVS/Repository")" >> "${T}/repos.conf" + + local dest=${EROOT:-${ROOT}}etc/portage/repos.conf + if [[ ! -f ${dest} ]] && mkdir -p "${dest}" 2>/dev/null ; then + dest=${EROOT:-${ROOT}}etc/portage/repos.conf/${repo_name:-gentoo}.conf + fi + # Don't install the config update if the desired repos.conf directory + # and config file exist, since users may accept it blindly and break + # their config (bug #478726). + [[ -e ${EROOT:-${ROOT}}etc/portage/repos.conf/${repo_name:-gentoo}.conf ]] || \ + mv "${T}/repos.conf" "$(new_config_protect "${dest}")" + + if [[ ${PORTDIR} == ${EPREFIX}/usr/portage ]] ; then + einfo "Generating make.conf PORTDIR setting for backward compatibility" + for dest in "${EROOT:-${ROOT}}etc/make.conf" "${EROOT:-${ROOT}}etc/portage/make.conf" ; do + [[ -e ${dest} ]] && break + done + [[ -d ${dest} ]] && dest=${dest}/portdir.conf + rm -rf "${T}/make.conf" + [[ -f ${dest} ]] && cat "${dest}" > "${T}/make.conf" + cat <<-EOF >> "${T}/make.conf" + + # Set PORTDIR for backward compatibility with various tools: + # gentoo-bashcomp - bug #478444 + # euse - bug #474574 + # euses and ufed - bug #478318 + PORTDIR="${EPREFIX}/usr/portage" + EOF + mkdir -p "${dest%/*}" + mv "${T}/make.conf" "$(new_config_protect "${dest}")" + fi + fi + + local distdir=${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}} + + if ${USERSYNC_UPGRADE} && \ + [[ -d ${PORTDIR} && -w ${PORTDIR} ]] ; then + local ownership=$(get_ownership "${PORTDIR}") + if [[ -n ${ownership} ]] ; then + einfo "Adjusting PORTDIR permissions for usersync" + find "${PORTDIR}" -path "${distdir%/}" -prune -o \ + ! \( -user "${ownership%:*}" -a -group "${ownership#*:}" \) \ + -exec chown "${ownership}" {} + + fi + fi + + # Do this last, since it could take a long time if there + # are lots of live sources, and the user may be tempted + # to kill emerge while it is running. + if ${USERPRIV_UPGRADE} && \ + [[ -d ${distdir} && -w ${distdir} ]] ; then + local ownership=$(get_ownership "${distdir}") + if [[ ${ownership#*:} == portage ]] ; then + einfo "Adjusting DISTDIR permissions for userpriv" + find "${distdir}" -mindepth 1 -maxdepth 1 -type d -uid 0 \ + -exec chown -R portage:portage {} + + fi + fi } diff --git a/sys-apps/usbutils/Manifest b/sys-apps/usbutils/Manifest index 267178bb304d..19bf2928615e 100644 --- a/sys-apps/usbutils/Manifest +++ b/sys-apps/usbutils/Manifest @@ -1 +1,2 @@ DIST usbutils-007.tar.xz 418264 SHA256 7593a01724bbc0fd9fe48e62bc721ceb61c76654f1d7b231b3c65f6dfbbaefa4 SHA512 ee5c9ae4b39747139dbf2c0295d0556c2087002a99c1a1c6de9b87714c0ed37c277471794f0c53b15f4f9e4323527eb5d15d7e1197f73e04f2de6978d3d85987 WHIRLPOOL 4374ba416f2bd8678ebfed25e7d5f2fccc5e49abf80716b3b96915601e801ab07686905d5c45e9ae7e7bb40c16084e97a24afc9c35d0ca743e877eea320ab9af +DIST usbutils-008.tar.xz 287052 SHA256 44741af0bae9d402a0ef160a29b2fa700bb656ab5e0a4b3343d51249c2a44c8c SHA512 ab1ad36467ff79ff5ab0b924620001612cae44def58c05ade01a4e58d8a4d48df61c09faba49a20497b7d6314045bbaf137b51a9f4e6b65ed0ea3bb339bf1c45 WHIRLPOOL 47898f8f0c8a93a200777e5006ec36c2bc805e126974ba415edc21983db9d35d3b8ec4a6be28359a36e5adda95cc4c8bc37ba4b651a9065e249b8ffe4c6b70aa diff --git a/sys-apps/usbutils/usbutils-008.ebuild b/sys-apps/usbutils/usbutils-008.ebuild new file mode 100644 index 000000000000..4426aa675ac9 --- /dev/null +++ b/sys-apps/usbutils/usbutils-008.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/usbutils/usbutils-008.ebuild,v 1.1 2014/12/04 04:06:45 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit python-single-r1 + +DESCRIPTION="USB enumeration utilities" +HOMEPAGE="http://linux-usb.sourceforge.net/" +SRC_URI="mirror://kernel/linux/utils/usb/${PN}/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux" +IUSE="python zlib" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + +RDEPEND="virtual/libusb:1= + zlib? ( sys-libs/zlib:= )" +DEPEND="${RDEPEND} + app-arch/xz-utils + virtual/pkgconfig" +RDEPEND="${RDEPEND} + sys-apps/hwids + python? ( ${PYTHON_DEPS} )" + +pkg_setup() { + use python && python-single-r1_pkg_setup +} + +src_prepare() { + epatch "${FILESDIR}"/${PN}-006-stdint.patch + sed -i -e '/^usbids/s:/usr/share:/usr/share/misc:' lsusb.py || die + use python && python_fix_shebang lsusb.py +} + +src_configure() { + econf \ + --datarootdir="${EPREFIX}/usr/share" \ + --datadir="${EPREFIX}/usr/share/misc" \ + --disable-usbids \ + $(use_enable zlib) +} + +src_install() { + default + newdoc usbhid-dump/NEWS NEWS.usbhid-dump + + use python || rm -f "${ED}"/usr/bin/lsusb.py +} diff --git a/sys-boot/grub/Manifest b/sys-boot/grub/Manifest index e67acc0644f4..e23d97861864 100644 --- a/sys-boot/grub/Manifest +++ b/sys-boot/grub/Manifest @@ -2,6 +2,7 @@ DIST dejavu-sans-ttf-2.34.zip 406977 SHA256 242e8c1cb2bdc7458bece02cca898f962c2b DIST grub-0.97-patches-1.14.tar.bz2 52916 SHA256 5c7ca31fd9b2123471daf2e46a1936c4044ad0c12e353d9d3d8c3f83a1c7a0e5 SHA512 d9a8d420fd5a36f181ca608f9b70be90f9d82cee66c8484636fda5085290586071b5d9379d917e8141b993ffc4777859cd02971c916d6167dca6f50d83282c26 WHIRLPOOL 60abd5087e85d9969784b9f5a100934606a76da03b665533d9d4d1d13f4e2d15de233a71e67a32d18a5fbfe128c2c8bf04c0d4451de24e6ca4fbd8dd862e23ea DIST grub-0.97.tar.gz 971783 SHA256 4e1d15d12dbd3e9208111d6b806ad5a9857ca8850c47877d36575b904559260b SHA512 c2bc9ffc8583aeae71cee9ddcc4418969768d4e3764d47307da54f93981c0109fb07d84b061b3a3628bd00ba4d14a54742bc04848110eb3ae8ca25dbfbaabadb WHIRLPOOL 0ad7f5dc035e2a3ad5fd29b6388f06fd12a8cc694117b4cbd42b5302433aa522db23566222d35219fe17fb95edb5090553156198507f70208eda5d858fd52dd5 DIST grub-2.00_p5107.tar.xz 5836972 SHA256 92fd8f93621e7083f32ba6ef407f2984e5d3caaafdc35fb3d89ed054ca7c4dac SHA512 a70017dfc837e8fa869af7f71ca6191973f3f44f5a93378100cff5da425aa132b3903a3602ab907ef070872bb7a17f0586c8415845645c596d0621a4929ca83d WHIRLPOOL 5d88806fc849d2ff78ca590312110be4505e2801fee7c68faba39a54a44eedc16eb25dad88f1ff0058dea2e98382944c7e7632ccfa6f4a171ff0ef00cf67fd2d +DIST grub-2.02_beta2-gentoo.tar.xz 6916 SHA256 63453b35faa6e02cc6e3067160158a591ed8d1e417fc2d1fce25556b28f76e03 SHA512 edc37adae1a4c9bad4bb29f335379e1e2b0a25ba7ef2768689fe0dfc236ea7057d80699659fd5facda431df957073827eba1cd83dd0204e81f068570de3722a7 WHIRLPOOL b463cb3f4a714b20845d3dbd493a0d3408a47a1fe140ca3a4dffa77052f9bfcf25046de7881e516022aa970c48701a1278cd8b598e8e1ce03a28347fbd68dab0 DIST grub-2.02~beta2.tar.xz 5798740 SHA256 f6c702b2a8ea58f27a2b02928bb77973cb5a827af08f63db38c471c0a01b418d SHA512 359903928febce1df53b3bd38aab701b4ea010dfad0dee434e853c865af4bbc60d115e61eac100c79f18d89aa78b2216ef20123f4ef04cc948ecbe226ea1a58c WHIRLPOOL f92e94f43888648484a972a0c82b0a2ac4dc7fbdd6e35ca8b11a6ee92168ac8cf7ee68987b84697ec46ad18189e5c5c9aee8105b91bb131cd7f6f499f45cd58f DIST splash.xpm.gz 33856 SHA256 b95600f777331b0dd31d51c68f60f0e846e4c8b628857a41165f4e6b30e6acaf SHA512 5ae1f786f7d46a95a7061068d5b2b3ad64607c7b190d6f28379508c5dce67e26308325bfd637542a84855dfcf1ea3d143947326fdb189a6a8972208d3ead23da WHIRLPOOL d95b7b588ea8ac7c2c8c53eb8057aef21c825da6411afe3b7e864c606aeffaaebce8ae41ce3e979f277bd6b48a9e82a1f2ea8afc836213b56523d8a854227d7b DIST unifont-5.1.20080820.pcf.gz 1379965 SHA256 122b9c470f29b70223b0e07404a6dfa7f339fcfa6ae74c024f478945af7a9a63 SHA512 8939e2bc82ca97b60e6678f3ff079a2be7ba9b702f2e8ee289e853af5823695f7baafbf14b674fc5e41071f2a6de4f2dadd56bf8b4653849dd756d59622f1649 WHIRLPOOL 0f083d66781cc4c3e554ebeda4e21843fa275ecf3e1908b4873fadfe37b7c88e8346a124656704bb1b29f89afee23d6301b4df0f19e788f454c60d47156fe78d diff --git a/sys-boot/grub/grub-2.02_beta2-r3.ebuild b/sys-boot/grub/grub-2.02_beta2-r3.ebuild new file mode 100644 index 000000000000..520e88a7ba38 --- /dev/null +++ b/sys-boot/grub/grub-2.02_beta2-r3.ebuild @@ -0,0 +1,322 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-2.02_beta2-r3.ebuild,v 1.3 2014/12/03 17:11:07 floppym Exp $ + +EAPI=5 + +AUTOTOOLS_AUTORECONF=1 +GRUB_AUTOGEN=1 + +if [[ -n ${GRUB_AUTOGEN} ]]; then + PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} ) + inherit python-any-r1 +fi + +inherit autotools-utils bash-completion-r1 eutils flag-o-matic mount-boot multibuild pax-utils toolchain-funcs versionator + +if [[ ${PV} != 9999 ]]; then + if [[ ${PV} == *_alpha* || ${PV} == *_beta* || ${PV} == *_rc* ]]; then + # The quote style is to work with <=bash-4.2 and >=bash-4.3 #503860 + MY_P=${P/_/'~'} + SRC_URI="mirror://gnu-alpha/${PN}/${MY_P}.tar.xz + http://dev.gentoo.org/~floppym/dist/${P}-gentoo.tar.xz" + S=${WORKDIR}/${MY_P} + else + SRC_URI="mirror://gnu/${PN}/${P}.tar.xz + http://dev.gentoo.org/~floppym/dist/${P}.tar.xz" + S=${WORKDIR}/${P%_*} + fi + KEYWORDS="amd64 x86" + PATCHES=() +else + inherit git-r3 + EGIT_REPO_URI="git://git.sv.gnu.org/grub.git + http://git.savannah.gnu.org/r/grub.git" +fi + +DEJAVU=dejavu-sans-ttf-2.34 +UNIFONT=unifont-7.0.01 +SRC_URI+=" mirror://gnu/unifont/${UNIFONT}/${UNIFONT}.pcf.gz + truetype? ( mirror://sourceforge/dejavu/${DEJAVU}.zip )" + +DESCRIPTION="GNU GRUB boot loader" +HOMEPAGE="http://www.gnu.org/software/grub/" + +# Includes licenses for dejavu and unifont +LICENSE="GPL-3 truetype? ( BitstreamVera GPL-2-with-font-exception )" +SLOT="2" +IUSE="debug device-mapper doc efiemu mount +multislot nls static sdl test truetype libzfs" + +GRUB_ALL_PLATFORMS=( + # everywhere: + emu + # mips only: + qemu-mips loongson + # amd64, x86, ppc, ppc64: + ieee1275 + # amd64, x86: + coreboot multiboot efi-32 pc qemu xen + # amd64, ia64: + efi-64 +) +IUSE+=" ${GRUB_ALL_PLATFORMS[@]/#/grub_platforms_}" + +# os-prober: Used on runtime to detect other OSes +# xorriso (dev-libs/libisoburn): Used on runtime for mkrescue +RDEPEND=" + app-arch/xz-utils + >=sys-libs/ncurses-5.2-r5 + debug? ( + sdl? ( media-libs/libsdl ) + ) + device-mapper? ( >=sys-fs/lvm2-2.02.45 ) + libzfs? ( sys-fs/zfs ) + mount? ( sys-fs/fuse ) + truetype? ( media-libs/freetype:2= ) + ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) + ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) +" +DEPEND="${RDEPEND} + ${PYTHON_DEPS} + app-misc/pax-utils + sys-devel/flex + sys-devel/bison + sys-apps/help2man + sys-apps/texinfo + grub_platforms_coreboot? ( media-libs/freetype:2 ) + grub_platforms_qemu? ( media-libs/freetype:2 ) + grub_platforms_ieee1275? ( media-libs/freetype:2 ) + grub_platforms_loongson? ( media-libs/freetype:2 ) + grub_platforms_xen? ( app-emulation/xen-tools ) + static? ( + app-arch/xz-utils[static-libs(+)] + truetype? ( + app-arch/bzip2[static-libs(+)] + media-libs/freetype[static-libs(+)] + sys-libs/zlib[static-libs(+)] + ) + ) + test? ( + dev-libs/libisoburn + app-emulation/qemu + ) + truetype? ( app-arch/unzip ) +" +RDEPEND+=" + kernel_linux? ( + grub_platforms_efi-32? ( sys-boot/efibootmgr ) + grub_platforms_efi-64? ( sys-boot/efibootmgr ) + ) + !multislot? ( !sys-boot/grub:0 ) + nls? ( sys-devel/gettext ) +" + +STRIP_MASK="*/grub/*/*.{mod,img}" +RESTRICT="test" + +QA_EXECSTACK=" + usr/bin/grub*-emu* + usr/lib*/grub/*/*.mod + usr/lib*/grub/*/*.module + usr/lib*/grub/*/kernel.exec + usr/lib*/grub/*/kernel.img +" + +QA_WX_LOAD=" + usr/lib*/grub/*/kernel.exec + usr/lib*/grub/*/kernel.img + usr/lib*/grub/*/*.image +" + +QA_PRESTRIPPED=" + usr/lib.*/grub/.*/kernel.img +" + +pkg_pretend() { + if [[ ${MERGE_TYPE} != binary ]]; then + # Bug 439082 + if ! test-flags-CC -fuse-ld=bfd > /dev/null && + $(tc-getLD) --version | grep -q "GNU gold"; then + eerror "GRUB does not function correctly when built with the gold linker." + eerror "Please select the bfd linker with binutils-config." + die "GNU gold detected" + fi + fi +} + +src_unpack() { + if [[ ${PV} == 9999 ]]; then + git-r3_src_unpack + fi + default_src_unpack +} + +src_prepare() { + EPATCH_SUFFIX="patch" EPATCH_FORCE="yes" epatch + + [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" + + sed -i -e /autoreconf/d autogen.sh || die + + if use multislot; then + # fix texinfo file name, bug 416035 + sed -i -e 's/^\* GRUB:/* GRUB2:/' -e 's/(grub)/(grub2)/' docs/grub.texi || die + fi + + epatch_user + + if [[ -n ${GRUB_AUTOGEN} ]]; then + python_setup + bash autogen.sh || die + fi + + if [[ -n ${AUTOTOOLS_AUTORECONF} ]]; then + autopoint() { return 0; } + eautoreconf + fi +} + +setup_fonts() { + ln -s "${WORKDIR}/${UNIFONT}.pcf" unifont.pcf || die + if use truetype; then + ln -s "${WORKDIR}/${DEJAVU}/ttf/DejaVuSans.ttf" DejaVuSans.ttf || die + fi +} + +grub_configure() { + local platform + + case ${MULTIBUILD_VARIANT} in + efi-32) + platform=efi + if [[ ${CTARGET:-${CHOST}} == x86_64* ]]; then + local CTARGET=${CTARGET:-i386} + fi ;; + efi-64) + platform=efi + if [[ ${CTARGET:-${CHOST}} == i?86* ]]; then + local CTARGET=${CTARGET:-x86_64} + local TARGET_CFLAGS="-Os -march=x86-64 ${TARGET_CFLAGS}" + local TARGET_CPPFLAGS="-march=x86-64 ${TARGET_CPPFLAGS}" + export TARGET_CFLAGS TARGET_CPPFLAGS + fi ;; + guessed) ;; + *) platform=${MULTIBUILD_VARIANT} ;; + esac + + local myeconfargs=( + --disable-werror + --program-prefix= + --libdir="${EPREFIX}"/usr/lib + --htmldir="${EPREFIX}"/usr/share/doc/${PF}/html + $(use_enable debug mm-debug) + $(use_enable debug grub-emu-usb) + $(use_enable device-mapper) + $(use_enable mount grub-mount) + $(use_enable nls) + $(use_enable truetype grub-mkfont) + $(use_enable libzfs) + $(use sdl && use_enable debug grub-emu-sdl) + ${platform:+--with-platform=}${platform} + + # Let configure detect this where supported + $(usex efiemu '' '--disable-efiemu') + ) + + if use multislot; then + myeconfargs+=( --program-transform-name="s,grub,grub2," ) + fi + + mkdir -p "${BUILD_DIR}" || die + run_in_build_dir setup_fonts + + autotools-utils_src_configure +} + +src_configure() { + # Bug 508758. + replace-flags -O3 -O2 + + # We don't want to leak flags onto boot code. + export HOST_CCASFLAGS=${CCASFLAGS} + export HOST_CFLAGS=${CFLAGS} + export HOST_CPPFLAGS=${CPPFLAGS} + export HOST_LDFLAGS=${LDFLAGS} + unset CCASFLAGS CFLAGS CPPFLAGS LDFLAGS + + use static && HOST_LDFLAGS+=" -static" + + export TARGET_LDFLAGS+=" $(test-flags-CC -fuse-ld=bfd)" + + tc-export CC NM OBJCOPY STRIP + export TARGET_CC=${TARGET_CC:-${CC}} + tc-export BUILD_CC # Bug 485592 + + # Portage will take care of cleaning up GRUB_PLATFORMS + MULTIBUILD_VARIANTS=( ${GRUB_PLATFORMS:-guessed} ) + multibuild_parallel_foreach_variant grub_configure +} + +src_compile() { + # Sandbox bug 404013. + use libzfs && addpredict /etc/dfs:/dev/zfs + + multibuild_foreach_variant autotools-utils_src_compile + + use doc && multibuild_for_best_variant \ + autotools-utils_src_compile -C docs html +} + +src_test() { + # The qemu dependency is a bit complex. + # You will need to adjust QEMU_SOFTMMU_TARGETS to match the cpu/platform. + multibuild_foreach_variant autotools-utils_src_test +} + +src_install() { + multibuild_foreach_variant autotools-utils_src_install \ + bashcompletiondir="$(get_bashcompdir)" + + use doc && multibuild_for_best_variant run_in_build_dir \ + emake -C docs DESTDIR="${D}" install-html + + if use multislot; then + mv "${ED%/}"/usr/share/info/grub{,2}.info || die + fi + + insinto /etc/default + newins "${FILESDIR}"/grub.default-3 grub +} + +pkg_postinst() { + mount-boot_mount_boot_partition + + if [[ -e "${ROOT%/}/boot/grub2/grub.cfg" ]]; then + ewarn "The grub directory has changed from /boot/grub2 to /boot/grub." + ewarn "Please run grub2-install and grub2-mkconfig -o /boot/grub/grub.cfg." + + if [[ ! -e "${ROOT%/}/boot/grub/grub.cfg" ]]; then + mkdir -p "${ROOT%/}/boot/grub" + ln -s ../grub2/grub.cfg "${ROOT%/}/boot/grub/grub.cfg" + fi + fi + + mount-boot_pkg_postinst + + elog "For information on how to configure GRUB2 please refer to the guide:" + elog " http://wiki.gentoo.org/wiki/GRUB2_Quick_Start" + + if has_version 'sys-boot/grub:0'; then + elog "A migration guide for GRUB Legacy users is available:" + elog " http://www.gentoo.org/doc/en/grub2-migration.xml" + fi + + if [[ -z ${REPLACING_VERSIONS} ]]; then + if ! has_version sys-boot/os-prober; then + elog "Install sys-boot/os-prober to enable detection of other operating systems using grub2-mkconfig." + fi + if ! has_version dev-libs/libisoburn; then + elog "Install dev-libs/libisoburn to enable creation of rescue media using grub2-mkrescue." + fi + fi +} diff --git a/sys-fs/lsscsi/Manifest b/sys-fs/lsscsi/Manifest index 079422dd0286..453d6dddf3c0 100644 --- a/sys-fs/lsscsi/Manifest +++ b/sys-fs/lsscsi/Manifest @@ -1,3 +1,4 @@ DIST lsscsi-0.25.tgz 126199 SHA256 002231d113eac89493ad1c154f243355bf0bb44295e9d517076a7ab7c2b94e78 SHA512 ad2b264ad607498ab1aee4918a2f8ff479b982bd8a7a6df8482331b83c77a39a0b9f1f3cdbc0b4904fee3b7282601d48c28d65a5c7b8803fcdfa027a417ecd20 WHIRLPOOL 79b84292640b24a3480eaf24d1db936714804e5da80c36e28d8fd35d96fa0aaa2a76875ae74d29109944689aa6a5f5b2bd09251ff2ae10c690dd8f749f2da36b DIST lsscsi-0.26.tgz 132506 SHA256 9c62ca3b838203f1dc374fdbf519fc1705a9f3c02049ea0205e016a624d28d7f SHA512 0d6bca3f402920f2af160f4162322d039b3bfb16de641da23ef55a3f34a14d2ffd66a1231f0ca98568c248ed3913907cf9d236de70d943ae30985293998885ff WHIRLPOOL cff3fb5719969bf42228daf692c886fc5713329802d10059ce7bc0af9488bde38701fb3f3f7dbf36f0ae5f9aa0e9dbd5513866fbef36bfa924b0dbfde46141b5 DIST lsscsi-0.27.tgz 138537 SHA256 6b8254f7b241ff0c3690e168b11a216d105962263fdd5a3da6dfb4cba5a0d9b4 SHA512 faa4404e7fcf7c00178bd26cf54bbc876e7b2d52e952c7e8dee7454fb506e641dc75b9def8c07363ed5cb75537a9b73de8bc05b1877ce8a734aa9afd80f6b22f WHIRLPOOL 7fb7c14c2cb37009eb70493ed83c69b4d5a43fa0f9afa0a9327e5969280b3880831b6301cc2fbe72f3ece1c28329bac64cf3a38fe3d753eb78636a53cd924ab6 +DIST lsscsi-0.28.tgz 150259 SHA256 025d009a1af42bc5b2fca664c44c9ecdfd754356e4a44f5c6aced2420afadd50 SHA512 6d5cf8ebc42af0d8dbe8f2a1e90f4c429d058f184027318686fd22bc117e66c0b1847e4c97964d3d0e1b7bf4a5f1e296e1e3575ed2f5ff999eef70bdfb9ea4d4 WHIRLPOOL c6606475ad9642f0a867b49ff08ccbb8390c3c0d6c912a1701b7ccabd77c400ee074127831b436252ef7665fdac7d35fe06d95c55d2d2e585000be8eafc1d321 diff --git a/sys-fs/lsscsi/lsscsi-0.28.ebuild b/sys-fs/lsscsi/lsscsi-0.28.ebuild new file mode 100644 index 000000000000..5b28410d6a41 --- /dev/null +++ b/sys-fs/lsscsi/lsscsi-0.28.ebuild @@ -0,0 +1,13 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/lsscsi/lsscsi-0.28.ebuild,v 1.1 2014/12/04 03:58:26 radhermit Exp $ + +EAPI=5 + +DESCRIPTION="SCSI sysfs query tool" +HOMEPAGE="http://sg.danny.cz/scsi/lsscsi.html" +SRC_URI="http://sg.danny.cz/scsi/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.10.61.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-3.10.61.ebuild index 80b211cc135d..f9f3e0212da3 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-3.10.61.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-3.10.61.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.10.61.ebuild,v 1.2 2014/11/28 21:25:20 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.10.61.ebuild,v 1.4 2014/12/03 18:33:02 ago Exp $ EAPI="5" ETYPE="sources" @@ -11,7 +11,7 @@ inherit kernel-2 detect_version detect_arch -KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86" HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches" IUSE="deblob experimental" diff --git a/sys-kernel/vanilla-sources/Manifest b/sys-kernel/vanilla-sources/Manifest index 2ddb75d5cfb9..6351ffae4986 100644 --- a/sys-kernel/vanilla-sources/Manifest +++ b/sys-kernel/vanilla-sources/Manifest @@ -21,4 +21,4 @@ DIST patch-3.12.33.xz 973284 SHA256 2f62c7a9941d872b05066a0807eadafba3c1820d5cf4 DIST patch-3.14.25.xz 649380 SHA256 c1a13dbaaabc0fe1330c7e0f0f6e10fbf7d384ccf7f1d15061fec4602233b142 SHA512 0ba7ac8b4bc56115d2d88258573f334cb6d1dd7d302f24ae12c1ed693fc3a568801ffa75719ac7622dedf6673e6db6827bf31066b8afde97bc36d8c897e8cfa8 WHIRLPOOL aa41dae885b99955d7cff1116d4ce33b1f1286ebc98c809efa8a978659e69b009b348f4e6b4fd4767e0816d342088c5ba0ff78eead9c35eb63c07301769e3778 DIST patch-3.17.4.xz 216560 SHA256 eeef37397a15245bd143569908be40622a87dc7673965e623e811ea3f68b8434 SHA512 aa722cf47374ab58c022ddc1dd8c2273eca4f3776139b8fb2ac61dc114ff13ac667b22427c0857ab9a2cf117b5c4d52352ae8fe9d26a30c9b48c860f93f75ce6 WHIRLPOOL b92843b47b780b7f29098fc9e0640c29a6971b98483fe64a498f2eea633a8180561b7a8075c60e92cefffd18f69687df097947caab67a1f0bff0999053b8c7b4 DIST patch-3.2.64.xz 1287500 SHA256 3e7f573b69fb1757eacc0153357d1496e83a1a3de5bcd345e41d5422ce6ac085 SHA512 8d8188821de746bdfc283553aea25ef8ccb9e87c752912088cc85f57c4737925a31a22ded0699aaa601a636621064f2cab89ff7aa7b6542bd1f0810e0daca3c9 WHIRLPOOL e266452aa48612671082d03949b25184840a886dfdcd02fd9197315abada333be8ecf0f78e015901ea6a78d5368856bb5169ed2136734e1c573b534f6940b7ce -DIST patch-3.4.104.xz 1114896 SHA256 28c3bb29c44eede52ae2eef22d5966edd811d95459615e368425a23c97180ff6 SHA512 9b8259fbd5a8d69dffeca4cf674dccba9070a220a2193b397a0cdeae747fab6e326af8838f7a3f9c4e1d048650adc5961caded69d1293549431e163c20804805 WHIRLPOOL 88c58a914d2a603471be64cf8de95501dcf32cd24e81b617b2a02e635f58d784deba86f2c4b3cbae08b2391de58a163cf809e338c112dc2547e4ea162471f42b +DIST patch-3.4.105.xz 1131748 SHA256 e596f2b874a6a8f31a6f93cb40457694d30ff641d760b70a7419c983e67d1317 SHA512 a0647b944e6bb2d2e4197e2d5ad84334088a7fcef1e09a852778ce70a63167b584b7be3073c409eb39922b2d791a657e3963fd77840dff5b8f90e27ffaac8b17 WHIRLPOOL 9ba711ef021f48ecf3f7df57e744e22a06f9a2b1078407e6f8248dbfcc8faace671a013d82531698a8c52800d0bd16e804fb28c617a81c7dd2c252d28c9b7ae8 diff --git a/sys-kernel/vanilla-sources/vanilla-sources-3.4.104.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-3.4.105.ebuild similarity index 89% rename from sys-kernel/vanilla-sources/vanilla-sources-3.4.104.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-3.4.105.ebuild index 5c4ab69752ea..778ebfeba140 100644 --- a/sys-kernel/vanilla-sources/vanilla-sources-3.4.104.ebuild +++ b/sys-kernel/vanilla-sources/vanilla-sources-3.4.105.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-3.4.104.ebuild,v 1.1 2014/09/26 09:57:16 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-3.4.105.ebuild,v 1.1 2014/12/03 16:46:38 ago Exp $ EAPI="5" K_NOUSENAME="yes" diff --git a/sys-power/powernowd/files/powernowd-1.00-buf.patch b/sys-power/powernowd/files/powernowd-1.00-buf.patch new file mode 100644 index 000000000000..56f048296ec7 --- /dev/null +++ b/sys-power/powernowd/files/powernowd-1.00-buf.patch @@ -0,0 +1,11 @@ +--- a/powernowd.c ++++ b/powernowd.c +@@ -107,7 +107,7 @@ typedef struct cpuinfo { + cpuinfo_t **all_cpus; + + /* idea stolen from procps */ +-static char buf[1024]; ++static char buf[2048]; + + enum function { + SINE, diff --git a/sys-power/powernowd/powernowd-1.00-r3.ebuild b/sys-power/powernowd/powernowd-1.00-r3.ebuild new file mode 100644 index 000000000000..f1902ed4a19b --- /dev/null +++ b/sys-power/powernowd/powernowd-1.00-r3.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-power/powernowd/powernowd-1.00-r3.ebuild,v 1.1 2014/12/03 12:39:26 jer Exp $ + +EAPI=5 +inherit eutils linux-info systemd toolchain-funcs + +DESCRIPTION="Daemon to control the speed and voltage of CPUs" +HOMEPAGE="http://www.deater.net/john/powernowd.html https://github.com/clemej/powernowd" +SRC_URI="http://www.deater.net/john/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" + +pkg_setup() { + CONFIG_CHECK="~CPU_FREQ" + WARNING_CPU_FREQ="Powernowd needs CPU_FREQ turned on!" + linux-info_pkg_setup +} + +src_prepare() { + epatch "${FILESDIR}"/${P}-buf.patch + rm -f Makefile + tc-export CC +} + +src_compile() { + emake powernowd +} + +src_install() { + dosbin powernowd + dodoc README + + newconfd "${FILESDIR}"/powernowd.confd powernowd + newinitd "${FILESDIR}"/powernowd.initd powernowd + systemd_dounit "${FILESDIR}"/${PN}.service +} diff --git a/sys-process/criu/Manifest b/sys-process/criu/Manifest index f55daea3712e..0854906bbdbd 100644 --- a/sys-process/criu/Manifest +++ b/sys-process/criu/Manifest @@ -1,2 +1,3 @@ DIST criu-1.2.tar.bz2 335531 SHA256 3ebdb544690f75c3e0f70d9af4d09f4f0d654ecea59e14abe3a5c9f536b6b413 SHA512 c7b9bcae46a262ae566108aea3a2b25560fbcd3c54803a37d4392ff0b5b993f273a4c2fe197b9f03f4f370a8cceaa9481bd73d5cc89833346e1b5b5ef8429dec WHIRLPOOL 9a8c2ffaf62923d4c1d230170aeb3dac4d3cd3adb47fee4b0591b5bd3135d7b993cdc726f33d193838d33ff61ac50bbd0185a913bb64dc712e53f90fff6475d6 DIST criu-1.3.1.tar.bz2 399588 SHA256 9c9017b64b4a63ee74cec104404c965459e13752726024a96a4ec11d331b07f9 SHA512 66845080e5d76e7c1685a914db6abe8a9cb7b94370a8af188278eccc3e3efbb601862f4053712073948eb8fdd2f7468e8b10b933f81f3f6c375ef380a878a681 WHIRLPOOL 4b159d1f7d325ae7c73b19b429bf523695f2744442940fc15195db616d70ff1b64b9e2f0f4dfebb6b04be8c885c245b5a4bf7432e0cf90f11352f63481bcbc0f +DIST criu-1.4.tar.bz2 432735 SHA256 757347b3bfe824f93b9a5c98e60dfac5a73da978eb7ebd29d721dea496eaf789 SHA512 af7aae488bff97d6079cab9d01a64df7adc21c146e56a7c2429d7654aa86a0a1d306bbb828210c0d6badf82177b3eb37541472e59ce2b40783dde9a11df76403 WHIRLPOOL 02c5fa23ca250d3a9d15d3c16a54c0f2c082d5103934c3eb03d61988013bbf4f6b8fe69524b07438e4761b4c829d6f9666c09bd367b3569014e1f0c7e6875a5a diff --git a/sys-process/criu/criu-1.4.ebuild b/sys-process/criu/criu-1.4.ebuild new file mode 100644 index 000000000000..b3e6f8f699fd --- /dev/null +++ b/sys-process/criu/criu-1.4.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-process/criu/criu-1.4.ebuild,v 1.1 2014/12/04 03:46:30 radhermit Exp $ + +EAPI=5 + +inherit eutils toolchain-funcs linux-info flag-o-matic + +DESCRIPTION="utility to checkpoint/restore a process tree" +HOMEPAGE="http://criu.org/" +SRC_URI="http://download.openvz.org/criu/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="=dev-lang/yasm-1.1" CDEPEND=" - >=dev-libs/nss-3.16.2 + >=dev-libs/nss-3.17.1 >=dev-libs/nspr-4.10.6 " @@ -150,7 +150,6 @@ src_prepare() { epatch "${WORKDIR}/firefox" epatch "${FILESDIR}"/${PN}-32.0-hppa-js-configure.patch # bug 524556 - epatch "${FILESDIR}"/${PN}-31.0-webm-disallow-negative-samples.patch # bug 527010 # Allow user to apply any additional patches without modifing ebuild epatch_user diff --git a/www-client/firefox/firefox-33.0-r1.ebuild b/www-client/firefox/firefox-34.0.5.ebuild similarity index 93% rename from www-client/firefox/firefox-33.0-r1.ebuild rename to www-client/firefox/firefox-34.0.5.ebuild index 778a2d2f91ca..d74028d3bf3d 100644 --- a/www-client/firefox/firefox-33.0-r1.ebuild +++ b/www-client/firefox/firefox-34.0.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/firefox-33.0-r1.ebuild,v 1.1 2014/11/05 23:18:28 axs Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/firefox-34.0.5.ebuild,v 1.1 2014/12/04 03:30:18 axs Exp $ EAPI="5" VIRTUALX_REQUIRED="pgo" @@ -10,9 +10,9 @@ MOZ_ESR="" # This list can be updated with scripts/get_langs.sh from the mozilla overlay MOZ_LANGS=( af ar as ast be bg bn-BD bn-IN br bs ca cs csb cy da de el en en-GB en-US en-ZA eo es-AR es-CL es-ES es-MX et eu fa fi fr fy-NL ga-IE gd -gl gu-IN he hi-IN hr hu hy-AM id is it ja kk km kn ko ku lt lv mai mk ml mr +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 zu ) +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 @@ -25,7 +25,7 @@ if [[ ${MOZ_ESR} == 1 ]]; then fi # Patch version -PATCH="${PN}-31.0-patches-0.2" +PATCH="${PN}-34.0-patches-0.1" # Upstream ftp release URI that's used by mozlinguas.eclass # We don't use the http mirror because it deletes old tarballs. MOZ_FTP_URI="ftp://ftp.mozilla.org/pub/${PN}/releases/" @@ -34,7 +34,7 @@ MOZ_HTTP_URI="http://ftp.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-v5.33 multilib pax-utils fdo-mime autotools virtualx mozlinguas +inherit check-reqs flag-o-matic toolchain-funcs eutils gnome2-utils mozconfig-v5.34 multilib pax-utils fdo-mime autotools virtualx mozlinguas DESCRIPTION="Firefox Web Browser" HOMEPAGE="http://www.mozilla.com/firefox" @@ -42,7 +42,7 @@ 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 hardened +minimal pgo test" +IUSE="bindist hardened +minimal pgo selinux +gmp-autoupdate test" # More URIs appended below... SRC_URI="${SRC_URI} @@ -51,10 +51,11 @@ SRC_URI="${SRC_URI} ASM_DEPEND=">=dev-lang/yasm-1.1" +# Mesa 7.10 needed for WebGL + bugfixes RDEPEND=" - >=dev-libs/nss-3.17.1 - >=dev-libs/nspr-4.10.6 -" + >=dev-libs/nss-3.17.2 + >=dev-libs/nspr-4.10.7 + selinux? ( sec-policy/selinux-mozilla )" DEPEND="${RDEPEND} pgo? ( @@ -143,13 +144,8 @@ src_prepare() { # Apply our patches EPATCH_SUFFIX="patch" \ EPATCH_FORCE="yes" \ - EPATCH_EXCLUDE="8000_gcc49_mozbug999496_ff31.patch" \ epatch "${WORKDIR}/firefox" - epatch "${FILESDIR}"/${P}-jemalloc-configure.patch - epatch "${FILESDIR}"/${PN}-32.0-hppa-js-configure.patch # bug 524556 - epatch "${FILESDIR}"/${PN}-31.0-webm-disallow-negative-samples.patch # bug 527010 - # Allow user to apply any additional patches without modifing ebuild epatch_user @@ -300,6 +296,14 @@ src_install() { "${S}/${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);" >> \ + "${S}/${obj_dir}/dist/bin/browser/defaults/preferences/all-gentoo.js" \ + || die + done + MOZ_MAKE_FLAGS="${MAKEOPTS}" \ emake DESTDIR="${D}" install diff --git a/www-client/firefox/metadata.xml b/www-client/firefox/metadata.xml index 9970786b8d5c..5f5f7f8eef9b 100644 --- a/www-client/firefox/metadata.xml +++ b/www-client/firefox/metadata.xml @@ -7,6 +7,8 @@ are not binary-redistributable according to upstream. Fine-tune custom compiler optimizations (-Os, -O0, -O1, -O2, -O3) + Allow Gecko Media Plugins (binary blobs) to be automatically + downloaded and kept up-to-date in user profiles Use inter-process communication between tabs and plugins. Allows for greater stability in case of plugin crashes Prevent sdk and headers from being installed diff --git a/www-client/google-chrome-beta/Manifest b/www-client/google-chrome-beta/Manifest index 2a720398b8d0..7d60fb6469ce 100644 --- a/www-client/google-chrome-beta/Manifest +++ b/www-client/google-chrome-beta/Manifest @@ -1,2 +1,2 @@ -DIST google-chrome-beta_40.0.2214.10-1_amd64.deb 48616368 SHA256 486755dbd9bbb10a1302f7da41dfa59573a4d9f593c3545c73b56d83867f942d SHA512 63d6129c1f058dd37614f922aeda1d7edd629eab5953419564d2f1c7b0b3c3b5e9244b6cb119fa88cbdf0db7da1bd552ae35ce4bf8b6508e0ffd684e890c5f61 WHIRLPOOL 8bd6250be195d47e13279b00df9c20d0e710b925f37c1a9159cdc21c4ae87aa2c082757c6d2b0def30840ace77acbe4b4fc518e81c86005afd2c3558123bffde -DIST google-chrome-beta_40.0.2214.10-1_i386.deb 48421302 SHA256 f627b4b12ce8460294dbe9e89ce309342ce647d3617c5d96cf198f76d2db2273 SHA512 3d09cea1e2130f234264dbab1b067f0c86d984cd3aaca3fcfc9c0524114253a9b15699da8add5dc9fcf8b5c0404b9f7f9b089739297791d491b89b819b6277d4 WHIRLPOOL df4e19ae3335f1ec1b9ae9554e01f1cf1f2a1d03369bbd30cf48032e69bbc94fdd8a95627e2d8084f2955475bfce458895be6c5d1500686884417233a33cdefd +DIST google-chrome-beta_40.0.2214.28-1_amd64.deb 48922416 SHA256 5cb3364a4b35c5f6fb28fdb0f4f94a1570a9bd7955a60781c6faae7a01f0f1ff SHA512 ff2485a3d9e740b1c23fe4f72c95e0840984e48f33ab8cf0be7c339bfa9756e054214026c81760f7d57e2163dc4b788b81bb6637742288ec114dd7829844e0f8 WHIRLPOOL 14534d04063984a7a359d6c3b72d4932271402e42073fe5ffd9d33e30de3b26e5b9abdfc6a1a6881bd447944c1eafa0f05f051e27aa1c5d3790373d63b11053e +DIST google-chrome-beta_40.0.2214.28-1_i386.deb 48386470 SHA256 d5c2466aa5207463ccd09e70bd3bafa872d246df2a3e4f0b1471fb162bfbed0e SHA512 49621b920deccc52e59180c423a4bcc1ce6643ecb59232517fc85b3f373b4b12e1953aa9d554c486d8aecc098737d451ddb286fb8e79416dc92a2c228e83fc5a WHIRLPOOL 43e8718d2b71c132ce167d075db0a43212928ee1e8853e9f7a05bb6127806b61c6ac32db0cfa2e30c98959923618f744eb846373f5fc2ac3f0d33c7f1536080e diff --git a/www-client/google-chrome-beta/google-chrome-beta-40.0.2214.10_p1.ebuild b/www-client/google-chrome-beta/google-chrome-beta-40.0.2214.28_p1.ebuild similarity index 98% rename from www-client/google-chrome-beta/google-chrome-beta-40.0.2214.10_p1.ebuild rename to www-client/google-chrome-beta/google-chrome-beta-40.0.2214.28_p1.ebuild index dd167921022c..f0c751e1bf48 100644 --- a/www-client/google-chrome-beta/google-chrome-beta-40.0.2214.10_p1.ebuild +++ b/www-client/google-chrome-beta/google-chrome-beta-40.0.2214.28_p1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/google-chrome-beta/google-chrome-beta-40.0.2214.10_p1.ebuild,v 1.1 2014/11/21 21:02:11 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/google-chrome-beta/google-chrome-beta-40.0.2214.28_p1.ebuild,v 1.1 2014/12/04 00:29:52 floppym Exp $ EAPI="5" diff --git a/www-client/opera/Manifest b/www-client/opera/Manifest index a340d3a7b3cc..2c4a4dfc97df 100644 --- a/www-client/opera/Manifest +++ b/www-client/opera/Manifest @@ -2,3 +2,4 @@ DIST opera-12.16-1860.amd64.freebsd.tar.xz 13312684 SHA256 ecc001605c45baa4acf60 DIST opera-12.16-1860.i386.freebsd.tar.xz 13385696 SHA256 dcd80ea7a8f090a47007fc630495817feeb167220b9a9bbffbf349687f3e29d3 SHA512 0bb2c0548765ea476cdb8be6c84faf1d60dddb5a2c08b7312027f4cd17fa8ebd4fbc1a97657bbcb0ac07733e5f3b340b181a307a778c38543140adbfe7f8b844 WHIRLPOOL 5703b2c736694cf6ffcf808872e72585b81c7fed9d2263d5679ee54f667f4eb6b9d34a73b80c8efc0a8640daf03da60dafa0defe0c560d3ef78f2a8a68cbb960 DIST opera-12.16-1860.i386.linux.tar.xz 13154668 SHA256 df640656a52b7c714faf25de92d84992116ce8f82b7a67afc1121eb3c428489d SHA512 a13ec53311e3e78f35103a9dd5337c0e9a555362860213080211ee9d21de88fbd6aae03bed20b7515874d5a09dfbab108954213745fb82175f5e48e555152613 WHIRLPOOL ae1af6858847fe51dcac8cb076a67099846ad66b734ecf92780e953daec963754c9e4352e979a636eac70e785a62bd94e084124080d7fe0f59b420a99a2133cc DIST opera-12.16-1860.x86_64.linux.tar.xz 14018800 SHA256 b3b5cada3829d2b3b0e2da25e9444ce9dff73dc6692586ce72cfd4f6431e639e SHA512 c1289f352ea5fc8133b105771f48fdc56ccd770920330b1a0ed939ff909abc68081447673572eabeb1aae6db5194b6ab35c93afad78a91d8f7a9a0f91e81ef8b WHIRLPOOL 539cdf43b4c8175c664fbf786b27ede1d33e58c44f75229a1a50612951136f526d646f3e0444b6cc69961259c3e3ef7dbf722b520abb4d4dbb98032c4de335d1 +DIST opera-stable_26.0.1656.32_amd64.deb 40673006 SHA256 e2ea368709f2ac10c3997dd361440cb39b4735b6dfe77e29a271e27f6df78a6a SHA512 5d695fc7a04a2682a1c32d504f649f11b456301b173d6c43250ed33c35f4b576d4ab1245cd8ec3eae11b88e11836ca4431a4a18b4291bbb99b2a310154f388ae WHIRLPOOL fc94da3dbc20adb10344f2c1523983f99ad382d027e1021af16bf00f86d72e530cf948d251ae0aeb9ad4951cd7ab28650f5f543c6d4e1276bfd3c36a8b551f62 diff --git a/www-client/opera/opera-26.0.1656.32.ebuild b/www-client/opera/opera-26.0.1656.32.ebuild new file mode 100644 index 000000000000..74d5e793bdb3 --- /dev/null +++ b/www-client/opera/opera-26.0.1656.32.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/opera/opera-26.0.1656.32.ebuild,v 1.1 2014/12/03 15:31:34 jer Exp $ + +EAPI=5 +CHROMIUM_LANGS=" + af az be bg bn ca cs da de el en_GB en_US es_419 es fi fr_CA fr fy gd hi hr + hu id it ja kk ko lt lv me mk ms nb nl nn pa pl pt_BR pt_PT ro ru sk sr sv + sw ta te th tl tr uk uz vi zh_CN zh_TW zu +" +inherit chromium multilib unpacker + +DESCRIPTION="A fast and secure web browser" +HOMEPAGE="http://www.opera.com/" +LICENSE="OPERA-2014" +SLOT="0" +SRC_URI_BASE="http://get.geo.opera.com/pub/" +SRC_URI=" + amd64? ( "${SRC_URI_BASE}${PN}/desktop/${PV}/linux/${PN}-stable_${PV}_amd64.deb" ) +" +KEYWORDS="~amd64" + +RDEPEND=" + dev-libs/expat + dev-libs/glib:2 + dev-libs/nspr + dev-libs/nss + >=dev-libs/openssl-1.0.1:0 + gnome-base/gconf:2 + media-libs/alsa-lib + media-libs/fontconfig + media-libs/freetype + net-misc/curl + net-print/cups + sys-apps/dbus + sys-libs/libcap + virtual/libudev + x11-libs/cairo + x11-libs/gdk-pixbuf + x11-libs/gtk+:2 + x11-libs/libX11 + x11-libs/libXScrnSaver + x11-libs/libXcomposite + x11-libs/libXcursor + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXi + x11-libs/libXrandr + x11-libs/libXrender + x11-libs/libXtst + x11-libs/pango[X] +" + +QA_PREBUILT="*" +S=${WORKDIR} +OPERA_HOME="usr/$(get_libdir)/${PN}" + +src_unpack() { + unpack_deb ${A} +} + +src_prepare() { + mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die + rm -r usr/lib || die + + rm usr/bin/${PN} || die + + rm usr/share/doc/${PN}-stable/copyright || die + mv usr/share/doc/${PN}-stable usr/share/doc/${PF} || die + + pushd "${OPERA_HOME}/localization" > /dev/null || die + chromium_remove_language_paks + popd > /dev/null || die + + sed -i \ + -e 's|^TargetEnvironment|X-&|g' \ + usr/share/applications/${PN}.desktop || die +} + +src_install() { + mv * "${D}" || die + dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN} + dodir /usr/$(get_libdir)/${PN}/lib + dosym /usr/$(get_libdir)/libudev.so /usr/$(get_libdir)/${PN}/lib/libudev.so.0 + fperms 4711 /usr/$(get_libdir)/${PN}/opera_sandbox +} diff --git a/www-plugins/chrome-binary-plugins/Manifest b/www-plugins/chrome-binary-plugins/Manifest index b2afb301d532..39d0c5321798 100644 --- a/www-plugins/chrome-binary-plugins/Manifest +++ b/www-plugins/chrome-binary-plugins/Manifest @@ -1,5 +1,5 @@ -DIST google-chrome-beta_40.0.2214.10-1_amd64.deb 48616368 SHA256 486755dbd9bbb10a1302f7da41dfa59573a4d9f593c3545c73b56d83867f942d SHA512 63d6129c1f058dd37614f922aeda1d7edd629eab5953419564d2f1c7b0b3c3b5e9244b6cb119fa88cbdf0db7da1bd552ae35ce4bf8b6508e0ffd684e890c5f61 WHIRLPOOL 8bd6250be195d47e13279b00df9c20d0e710b925f37c1a9159cdc21c4ae87aa2c082757c6d2b0def30840ace77acbe4b4fc518e81c86005afd2c3558123bffde -DIST google-chrome-beta_40.0.2214.10-1_i386.deb 48421302 SHA256 f627b4b12ce8460294dbe9e89ce309342ce647d3617c5d96cf198f76d2db2273 SHA512 3d09cea1e2130f234264dbab1b067f0c86d984cd3aaca3fcfc9c0524114253a9b15699da8add5dc9fcf8b5c0404b9f7f9b089739297791d491b89b819b6277d4 WHIRLPOOL df4e19ae3335f1ec1b9ae9554e01f1cf1f2a1d03369bbd30cf48032e69bbc94fdd8a95627e2d8084f2955475bfce458895be6c5d1500686884417233a33cdefd +DIST google-chrome-beta_40.0.2214.28-1_amd64.deb 48922416 SHA256 5cb3364a4b35c5f6fb28fdb0f4f94a1570a9bd7955a60781c6faae7a01f0f1ff SHA512 ff2485a3d9e740b1c23fe4f72c95e0840984e48f33ab8cf0be7c339bfa9756e054214026c81760f7d57e2163dc4b788b81bb6637742288ec114dd7829844e0f8 WHIRLPOOL 14534d04063984a7a359d6c3b72d4932271402e42073fe5ffd9d33e30de3b26e5b9abdfc6a1a6881bd447944c1eafa0f05f051e27aa1c5d3790373d63b11053e +DIST google-chrome-beta_40.0.2214.28-1_i386.deb 48386470 SHA256 d5c2466aa5207463ccd09e70bd3bafa872d246df2a3e4f0b1471fb162bfbed0e SHA512 49621b920deccc52e59180c423a4bcc1ce6643ecb59232517fc85b3f373b4b12e1953aa9d554c486d8aecc098737d451ddb286fb8e79416dc92a2c228e83fc5a WHIRLPOOL 43e8718d2b71c132ce167d075db0a43212928ee1e8853e9f7a05bb6127806b61c6ac32db0cfa2e30c98959923618f744eb846373f5fc2ac3f0d33c7f1536080e DIST google-chrome-stable_39.0.2171.71-1_amd64.deb 47813932 SHA256 e1a5a35b33b0198f1199de0c9c681f9d63965389afeab24b55f082c0235f6848 SHA512 ecd8bd93b9806e8e4ee985965894fae581deac183a40e9f7f6d94c3681df7d7f56b6c418e3db2216a9080491d70c233a231610e4fd8883c563b008f0a9eac685 WHIRLPOOL 2a4cbd592f923cb3b86d634095e8e3b2ec5e84f75c859f181e8e5d80611e5a12b3873fc03990cad11cfd6e914ce1f8d101e29c4adb13991d75213e74e7789137 DIST google-chrome-stable_39.0.2171.71-1_i386.deb 47416974 SHA256 038a0f5ce5e024de3b50cb6e833f368063a44fad415312fe7299143f496590fd SHA512 ccaacfe78b6941bad00bcab62f91d3a59c081034cf5cb88eea1c99522a569eb6f9ccb0adbc99468290ebcdfb2bfd3b46531feb883815a8adb555f5a4a7e07276 WHIRLPOOL e5eef38ff91ce3eea25f8842c1b28677b9a13eb44e6b833692c9e47252b5c36129fac1583fbbeba4f02978fb0963f76300f182be7a00964913dc71c47552d4a5 DIST google-chrome-unstable_41.0.2236.0-1_amd64.deb 48739896 SHA256 362f866d3ef7e19f3de5950495679a597451289ed4878175d40046f8e320402f SHA512 502abedd626f0f3dbf62dc2a2ca5f8019d9a1a1d3af0ef12191643530bb0d8c20c075d033e03a324152248b70c0f233c64c9161fbfeca658aaff572d140cdaf9 WHIRLPOOL 00dc1855b2bb7a07d27d1bac2ad732566278732c4be1870f912a9dfb220deb9ae9396cdf6d6b15661ee00003c479512cf0377ee49b7eb125cdc274babf040378 diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-40.0.2214.10_beta1.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-40.0.2214.28_beta1.ebuild similarity index 95% rename from www-plugins/chrome-binary-plugins/chrome-binary-plugins-40.0.2214.10_beta1.ebuild rename to www-plugins/chrome-binary-plugins/chrome-binary-plugins-40.0.2214.28_beta1.ebuild index 815d27bdb22b..9e484be82f6e 100644 --- a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-40.0.2214.10_beta1.ebuild +++ b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-40.0.2214.28_beta1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/chrome-binary-plugins/chrome-binary-plugins-40.0.2214.10_beta1.ebuild,v 1.1 2014/11/21 21:01:47 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-plugins/chrome-binary-plugins/chrome-binary-plugins-40.0.2214.28_beta1.ebuild,v 1.1 2014/12/04 00:30:04 floppym Exp $ EAPI=5 diff --git a/x11-libs/fltk/files/fltk-1.3.3-visibility.patch b/x11-libs/fltk/files/fltk-1.3.3-visibility.patch index 99831e8d6815..491e0a18876d 100644 --- a/x11-libs/fltk/files/fltk-1.3.3-visibility.patch +++ b/x11-libs/fltk/files/fltk-1.3.3-visibility.patch @@ -9,3 +9,14 @@ /** Sets the widget that will receive FL_KEYBOARD events. +--- a/FL/x.H ++++ b/FL/x.H +@@ -114,7 +114,7 @@ FL_EXPORT Fl_Region XRectangleRegion(int x, int y, int w, int h); // in fl_rect. + // With Xlib / X11 fonts, fl_xfont will return the current selected font. + // With XFT / X11 fonts, fl_xfont will attempt to return the bitmap "core" font most + // similar to (usually the same as) the current XFT font. +-class Fl_XFont_On_Demand ++class FL_EXPORT Fl_XFont_On_Demand + { + public: + Fl_XFont_On_Demand(XFontStruct* p = NULL) : ptr(p) { } diff --git a/x11-libs/fltk/fltk-1.3.3-r1.ebuild b/x11-libs/fltk/fltk-1.3.3-r2.ebuild similarity index 97% rename from x11-libs/fltk/fltk-1.3.3-r1.ebuild rename to x11-libs/fltk/fltk-1.3.3-r2.ebuild index 888218b09254..3f0b32e49b3e 100644 --- a/x11-libs/fltk/fltk-1.3.3-r1.ebuild +++ b/x11-libs/fltk/fltk-1.3.3-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/fltk/fltk-1.3.3-r1.ebuild,v 1.1 2014/11/19 14:06:54 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/fltk/fltk-1.3.3-r2.ebuild,v 1.1 2014/12/03 23:41:48 jer Exp $ EAPI=5 diff --git a/x11-libs/fltk/fltk-1.3.3.ebuild b/x11-libs/fltk/fltk-1.3.3.ebuild deleted file mode 100644 index 8ddc2531107f..000000000000 --- a/x11-libs/fltk/fltk-1.3.3.ebuild +++ /dev/null @@ -1,169 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/fltk/fltk-1.3.3.ebuild,v 1.2 2014/11/08 18:17:25 jer Exp $ - -EAPI=5 - -inherit autotools eutils fdo-mime flag-o-matic - -DESCRIPTION="C++ user interface toolkit for X and OpenGL" -HOMEPAGE="http://www.fltk.org/" -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 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos" -IUSE="cairo debug doc examples games opengl pdf static-libs threads xft xinerama" - -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 )" -DEPEND="${RDEPEND} - x11-proto/xextproto - doc? ( - app-doc/doxygen - pdf? ( dev-texlive/texlive-latex ) - ) - xinerama? ( x11-proto/xineramaproto )" - -FLTK_INCDIR=${EPREFIX}/usr/include/fltk -FLTK_LIBDIR=${EPREFIX}/usr/$(get_libdir)/fltk - -src_prepare() { - rm -rf zlib jpeg png || die - epatch \ - "${FILESDIR}"/${PN}-1.3.2-desktop.patch \ - "${FILESDIR}"/${PN}-1.3.0-share.patch \ - "${FILESDIR}"/${PN}-1.3.2-conf-tests.patch \ - "${FILESDIR}"/${PN}-1.3.2-jpeg-9a.patch \ - "${FILESDIR}"/${PN}-1.3.3-visibility.patch - - sed -i \ - -e 's:@HLINKS@::g' FL/Makefile.in || die - sed -i \ - -e '/C\(XX\)\?FLAGS=/s:@C\(XX\)\?FLAGS@::' \ - -e '/^LDFLAGS=/d' \ - "${S}/fltk-config.in" || die - # some fixes introduced because slotting - sed -i \ - -e '/RANLIB/s:$(libdir)/\(.*LIBNAME)\):$(libdir)/`basename \1`:g' \ - src/Makefile || die - # docs in proper docdir - sed -i \ - -e "/^docdir/s:fltk:${PF}/html:" \ - -e "/SILENT:/d" \ - makeinclude.in || die - sed -e "s/7/${PV}/" \ - < "${FILESDIR}"/FLTKConfig.cmake \ - > CMake/FLTKConfig.cmake || die - sed -e 's:-Os::g' -i configure.in || die - - use prefix && append-ldflags -Wl,-rpath -Wl,"${FLTK_LIBDIR}" - - # also in Makefile:config.guess config.sub: - cp misc/config.{guess,sub} . || die - - eautoconf -} - -src_configure() { - econf \ - --includedir=${FLTK_INCDIR}\ - --libdir=${FLTK_LIBDIR} \ - --docdir="${EPREFIX}/usr/share/doc/${PF}/html" \ - --enable-largefile \ - --enable-shared \ - --enable-xdbe \ - --disable-localjpeg \ - --disable-localpng \ - --disable-localzlib \ - $(use_enable debug) \ - $(use_enable cairo) \ - $(use_enable opengl gl) \ - $(use_enable threads) \ - $(use_enable xft) \ - $(use_enable xinerama) -} - -src_compile() { - default - if use doc; then - cd "${S}"/documentation - emake html - if use pdf; then - emake pdf - fi - fi - if use games; then - cd "${S}"/test - emake blocks checkers sudoku - fi -} - -src_test() { - emake -C test -} - -src_install() { - default - - emake -C fluid \ - DESTDIR="${D}" install-linux - if use doc; then - emake -C documentation \ - DESTDIR="${D}" install - fi - - local apps="fluid" - if use games; then - emake -C test \ - DESTDIR="${D}" install-linux - emake -C documentation \ - DESTDIR="${D}" install-linux - apps+=" sudoku blocks checkers" - fi - - for app in ${apps}; do - dosym /usr/share/icons/hicolor/32x32/apps/${app}.png \ - /usr/share/pixmaps/${app}.png - done - - dodoc CHANGES README CREDITS ANNOUNCEMENT - - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins test/*.{h,cxx,fl} test/demo.menu - fi - - insinto /usr/share/cmake/Modules - doins CMake/FLTK*.cmake - - echo "LDPATH=${FLTK_LIBDIR}" > 99fltk - echo "FLTK_DOCDIR=${EPREFIX}/usr/share/doc/${PF}/html" >> 99fltk - doenvd 99fltk - - # FIXME: This is bad, but building only shared libraries is hardly supported - # FIXME: The executables in test/ are linking statically against libfltk - if ! use static-libs; then - rm "${ED}"/usr/lib*/fltk/*.a || die - fi - - prune_libtool_files -} - -pkg_postinst() { - fdo-mime_desktop_database_update -} - -pkg_postrm() { - fdo-mime_desktop_database_update -}