Sync with portage [Thu Dec 4 10:26:09 MSK 2014].

mhiretskiy
root 10 years ago
parent 94410b7822
commit a89818811c

@ -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

@ -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)"
}

@ -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"

@ -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
}

@ -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

@ -21,6 +21,7 @@ Between the remote execution system, and state management Salt addresses the
backbone of cloud and data center management.
</longdescription>
<use>
<flag name="api">Enable support for salt-api.</flag>
<flag name="cherrypy">Enable support for cherrypy.</flag>
<flag name="libcloud">Enable salt-cloud support via libcloud.</flag>
<flag name="libvirt">Support managing virtual machines with app-emulation/libvirt.</flag>

@ -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"
}

@ -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

@ -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

@ -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

@ -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
}

@ -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

@ -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
}

@ -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")

@ -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=(

@ -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
}

@ -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

@ -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
}

@ -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
}

@ -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

@ -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
}

@ -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

@ -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
}

@ -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}"

@ -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

@ -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"

@ -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

@ -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=""

@ -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

@ -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
}

@ -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

@ -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
}

@ -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
}

@ -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

@ -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
}

@ -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

@ -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}"
}

@ -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

@ -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())

@ -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}"
}

@ -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() {

@ -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() {

@ -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

@ -0,0 +1,25 @@
From 35224edbb3647c3d0a7828584c952f254ac4eb2d Mon Sep 17 00:00:00 2001
From: Christopher Meng <i@cicku.me>
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

@ -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

@ -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
}

@ -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

@ -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 <mozilla@gentoo.org>
# @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
}

@ -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)

@ -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}"

@ -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)

@ -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

@ -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

@ -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

@ -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

@ -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

@ -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

@ -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
}

@ -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

@ -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 {} +
}

@ -0,0 +1 @@
DIST gmp-openh264-1.2_p20141104.tar.xz 11874976 SHA256 d8359d004116eba6d2444486abd81f82f9cfedf2ab209b9586fc195d199096f8 SHA512 7acd982b54cd32ee2270967131792d869a9c72dca5ba8da796c61517e99b3a40f7c53ab6228c03f72c57f4eb9d3bef536645ee33ccf08a098f0662f97f811856 WHIRLPOOL 5d997bc9349d06f5d485ce654408d5f3cd1314ccdf10c21c25c59933ffe2c4b325ec32444bb74aa754b73fcc381b5b723df9f48989cba3e7137e8a594a47e24c

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>axs@gentoo.org</email>
<name>Ian Stakenvicius</name>
</maintainer>
<use>
<flag name='plugin'>Install the Gecko Media Plugin (GMP) for use with Mozilla packages</flag>
</use>
</pkgmetadata>

@ -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 <<PREFEOF >"${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
}

@ -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

@ -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

@ -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

@ -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

@ -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."
}

@ -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

@ -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}"
}

@ -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

@ -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="!<sys-cluster/mpich2-1.4_rc2
adplug? ( media-libs/adplug )
alsa? ( media-sound/alsa-utils
media-libs/alsa-lib )
ao? ( media-libs/libao[alsa?,pulseaudio?] )
audiofile? ( media-libs/audiofile )
bzip2? ( app-arch/bzip2 )
cdio? ( dev-libs/libcdio-paranoia )
curl? ( net-misc/curl )
expat? ( dev-libs/expat )
faad? ( media-libs/faad2 )
ffmpeg? ( virtual/ffmpeg )
flac? ( media-libs/flac[ogg?] )
fluidsynth? ( media-sound/fluidsynth )
glib? ( dev-libs/glib:2 )
gme? ( >=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
}

@ -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

@ -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
}

@ -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
}

@ -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
}

@ -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 )

@ -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 )

@ -1 +1 @@
Wed, 03 Dec 2014 12:07:01 +0000
Thu, 04 Dec 2014 05:37:02 +0000

@ -1 +1 @@
Wed, 03 Dec 2014 12:07:02 +0000
Thu, 04 Dec 2014 05:37:03 +0000

@ -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

@ -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

@ -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

@ -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

@ -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

@ -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

@ -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

@ -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

@ -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

@ -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/gettext-0.18.1.1-r3 || ( >=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

@ -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

@ -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

@ -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

@ -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

@ -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

@ -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

@ -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

@ -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

@ -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

@ -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

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save