Sync with portage [Wed Sep 18 22:37:05 MSK 2013].

mhiretskiy
root 11 years ago
parent 389b855e5b
commit da37d1e6ab

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/augeas/augeas-0.10.0-r1.ebuild,v 1.3 2013/02/03 13:19:20 prometheanfire Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/augeas/augeas-0.10.0-r1.ebuild,v 1.4 2013/09/18 14:12:17 jer Exp $
EAPI=5
@ -12,7 +12,7 @@ SRC_URI="http://augeas.net/download/${P}.tar.gz"
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="~alpha ~amd64 ~hppa ia64 ~ppc ~sparc ~x86"
KEYWORDS="~alpha ~amd64 hppa ia64 ~ppc ~sparc ~x86"
IUSE="static-libs test"
RDEPEND="

@ -1,2 +1 @@
DIST mktwpol-0.1.4.tar.gz 29991 SHA256 a4670e4a2833dbc8cd75543b77304f99f4f433cbe62a3d9579e8e55a5ac86b3b SHA512 c10d578a4ae5f99fcd16cf0a1e41e91e28968c2e5d9c3851e73f8b6049964a89f52ef3b101365800da979a669cbbcc426a35edec09f29baade39a7369f482491 WHIRLPOOL d743db33a0f0f6dce641df92f1845da5baa414b5cd46fd43bed614fd4cf9abf5fefaf3d99c2e756cb6f41d3e426d3e53674256684a71f080a958c15bcde1197f
DIST mktwpol-0.1.5.tar.gz 31101 SHA256 4ea6b935d0a8998f875657acabb06a75eadceaaf2ff054b211a9c18ee30f1939 SHA512 70d96cdba80f33921b108a66aad07dfa057f852adb3cf28c1acaeacd538591295274ab23b436551d3e71bfe20f3d42cf0bb4e8917cca6507c8b55fb91869ae61 WHIRLPOOL 43f0cf684cdfdda365aedf052346bacb587df8ad90a1e484462af8c1a1ad033ee4e6b204021c6302df6da43ead207169e70f1eb88aef8fd0cac6856efdd3017b

@ -1,39 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/mktwpol/mktwpol-0.1.4.ebuild,v 1.1 2013/09/10 21:40:15 nimiux Exp $
EAPI=5
DESCRIPTION="Bash scripts to create and maintain tripwire database"
HOMEPAGE="https://sourceforge.net/projects/mktwpol"
SRC_URI="mirror://sourceforge/mktwpol/${P}.tar.gz"
LICENSE="CC-BY-SA-3.0"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
IUSE=""
DEPEND="app-shells/bash"
RDEPEND="app-admin/tripwire"
src_install() {
dosbin mktwpol.sh twsetup.sh
fperms 750 /usr/sbin/mktwpol.sh /usr/sbin/twsetup.sh
local d
for d in README* ChangeLog AUTHORS NEWS TODO CHANGES THANKS BUGS \
FAQ CREDITS CHANGELOG ; do
[[ -s "${d}" ]] && dodoc "${d}"
done
}
pkg_postinst() {
elog
elog "Installation and setup of tripwire ..."
elog " - Run: \`twsetup.sh\`"
elog
elog "Maintenance of tripwire as packages are added and/or deleted ..."
elog " - Run: \`mktwpol.sh -u\` to update tripwire policy"
elog
}

@ -1,10 +1,10 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/mktwpol/mktwpol-0.1.5.ebuild,v 1.1 2013/09/16 22:23:41 nimiux Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/mktwpol/mktwpol-0.1.5.ebuild,v 1.2 2013/09/18 10:26:05 nimiux Exp $
EAPI=5
DESCRIPTION="Bash scripts to create and maintain tripwire database"
DESCRIPTION="Bash scripts to install tripwire and generate tripwire policy files"
HOMEPAGE="https://sourceforge.net/projects/mktwpol"
SRC_URI="mirror://sourceforge/mktwpol/${P}.tar.gz"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/lz4/lz4-9999.ebuild,v 1.2 2013/08/10 11:06:46 ryao Exp $
# $Header: /var/cvsroot/gentoo-x86/app-arch/lz4/lz4-9999.ebuild,v 1.3 2013/09/18 16:28:36 mgorny Exp $
EAPI=4
@ -32,7 +32,7 @@ src_prepare() {
src_install() {
cmake-utils_src_install
if [ -f "${S}/usr/bin/lz4c64" ]
if [ -f "${ED%/}/usr/bin/lz4c64" ]
then
dosym /usr/bin/{lz4c64,lz4c}
else

@ -0,0 +1,17 @@
--- ./CPP/7zip/Crypto/Sha1.cpp 2010-10-20 06:56:08.000000000 +0200
+++ CPP/7zip/Crypto/Sha1.cpp.new 2013-09-15 09:19:51.000000000 +0200
@@ -148,10 +148,10 @@
for (int i = 0; i < kBlockSizeInWords; i++)
{
UInt32 d = _buffer[i];
- data[i * 4 + 0 - kBlockSize] = (Byte)(d);
- data[i * 4 + 1 - kBlockSize] = (Byte)(d >> 8);
- data[i * 4 + 2 - kBlockSize] = (Byte)(d >> 16);
- data[i * 4 + 3 - kBlockSize] = (Byte)(d >> 24);
+ data[(int)i * 4 + 0 - (int)kBlockSize] = (Byte)(d);
+ data[(int)i * 4 + 1 - (int)kBlockSize] = (Byte)(d >> 8);
+ data[(int)i * 4 + 2 - (int)kBlockSize] = (Byte)(d >> 16);
+ data[(int)i * 4 + 3 - (int)kBlockSize] = (Byte)(d >> 24);
}
returnRes = rar350Mode;
}

@ -0,0 +1,159 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/p7zip/p7zip-9.20.1-r5.ebuild,v 1.1 2013/09/18 13:27:55 jlec Exp $
EAPI=5
WX_GTK_VER="2.8"
inherit eutils multilib toolchain-funcs wxwidgets
DESCRIPTION="Port of 7-Zip archiver for Unix"
HOMEPAGE="http://p7zip.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}_src_all.tar.bz2"
LICENSE="LGPL-2.1 rar? ( unRAR )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
IUSE="doc kde rar +pch static wxwidgets"
REQUIRED_USE="kde? ( wxwidgets )"
RDEPEND="
kde? ( x11-libs/wxGTK:2.8[X,-odbc] kde-base/kdelibs )
wxwidgets? ( x11-libs/wxGTK:2.8[X,-odbc] )"
DEPEND="${RDEPEND}
amd64? ( dev-lang/yasm )
x86? ( dev-lang/nasm )"
S=${WORKDIR}/${PN}_${PV}
pkg_setup() {
use wxwidgets && wxwidgets_pkg_setup
}
src_prepare() {
epatch \
"${FILESDIR}"/${P}-execstack.patch \
"${FILESDIR}"/${P}-QA.patch \
"${FILESDIR}"/${P}-long_rar_pwd.patch
if ! use pch; then
sed "s:PRE_COMPILED_HEADER=StdAfx.h.gch:PRE_COMPILED_HEADER=:g" -i makefile.* || die
fi
sed \
-e 's:-m32 ::g' \
-e 's:-m64 ::g' \
-e 's:-O::g' \
-e 's:-pipe::g' \
-e "/^CC/s:\$(ALLFLAGS):${CFLAGS} \$(ALLFLAGS):g" \
-e "/^CXX/s:\$(ALLFLAGS):${CXXFLAGS} \$(ALLFLAGS):g" \
-i makefile* || die
# remove non-free RAR codec
if use rar; then
ewarn "Enabling nonfree RAR decompressor"
else
sed -e '/Rar/d' -i makefile* || die
rm -rf CPP/7zip/Compress/Rar || die
epatch "${FILESDIR}"/9.04-makefile.patch
fi
sed -i \
-e "/^CXX=/s:g++:$(tc-getCXX):" \
-e "/^CC=/s:gcc:$(tc-getCC):" \
-e '/ALLFLAGS/s:-s ::' \
makefile* || die "changing makefiles"
if use amd64; then
cp -f makefile.linux_amd64_asm makefile.machine || die
elif use x86; then
cp -f makefile.linux_x86_asm_gcc_4.X makefile.machine || die
elif [[ ${CHOST} == *-darwin* ]] ; then
# Mac OS X needs this special makefile, because it has a non-GNU linker
[[ ${CHOST} == *64-* ]] \
&& cp -f makefile.macosx_64bits makefile.machine \
|| cp -f makefile.macosx_32bits makefile.machine
# bundles have extension .bundle but don't die because USE=-rar
# removes the Rar directory
sed -i -e '/strcpy(name/s/\.so/.bundle/' \
CPP/Windows/DLL.cpp || die
sed -i -e '/^PROG=/s/\.so/.bundle/' \
CPP/7zip/Bundles/Format7zFree/makefile \
$(use rar && echo CPP/7zip/Compress/Rar/makefile) || die
elif use x86-fbsd; then
# FreeBSD needs this special makefile, because it hasn't -ldl
sed -e 's/-lc_r/-pthread/' makefile.freebsd > makefile.machine
fi
use static && sed -i -e '/^LOCAL_LIBS=/s/LOCAL_LIBS=/&-static /' makefile.machine
if use kde || use wxwidgets; then
einfo "Preparing dependency list"
emake depend
fi
}
src_compile() {
emake all3
if use kde || use wxwidgets; then
emake -- 7zG
emake -- 7zFM
fi
}
src_test() {
emake test test_7z test_7zr
}
src_install() {
# this wrappers can not be symlinks, p7zip should be called with full path
make_wrapper 7zr "/usr/$(get_libdir)/${PN}/7zr"
make_wrapper 7za "/usr/$(get_libdir)/${PN}/7za"
make_wrapper 7z "/usr/$(get_libdir)/${PN}/7z"
if use kde || use wxwidgets; then
make_wrapper 7zG "/usr/$(get_libdir)/${PN}/7zG"
make_wrapper 7zFM "/usr/$(get_libdir)/${PN}/7zFM"
make_desktop_entry 7zFM "${PN} FM" ${PN}.png "GTK;Utility;Archiving;Compression"
make_desktop_entry 7zG "${PN} GUI" ${PN}.png "GTK;Utility;Archiving;Compression"
dobin GUI/p7zipForFilemanager
exeinto /usr/$(get_libdir)/${PN}
doexe bin/7z{G,FM}
insinto /usr/$(get_libdir)/${PN}
doins -r GUI/{Lang,help}
insinto /usr/share/icons/hicolor/16x16/apps/
newins GUI/p7zip_16_ok.png p7zip.png
if use kde; then
rm GUI/kde4/p7zip_compress.desktop
insinto /usr/share/kde4/services/ServiceMenus
doins GUI/kde4/*.desktop
fi
fi
dobin contrib/gzip-like_CLI_wrapper_for_7z/p7zip
doman contrib/gzip-like_CLI_wrapper_for_7z/man1/p7zip.1
exeinto /usr/$(get_libdir)/${PN}
doexe bin/7z bin/7za bin/7zr bin/7zCon.sfx
doexe bin/*$(get_modname)
if use rar; then
exeinto /usr/$(get_libdir)/${PN}/Codecs/
doexe bin/Codecs/*$(get_modname)
fi
doman man1/7z.1 man1/7za.1 man1/7zr.1
dodoc ChangeLog README TODO
if use doc; then
dodoc DOCS/*.txt
dohtml -r DOCS/MANUAL/*
fi
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/grc/grc-1.5.ebuild,v 1.2 2013/09/05 18:23:06 mgorny Exp $
# $Header: /var/cvsroot/gentoo-x86/app-misc/grc/grc-1.5.ebuild,v 1.3 2013/09/18 13:46:59 jlec Exp $
EAPI=5
@ -35,6 +35,6 @@ src_install() {
insinto /etc
doins grc.conf
dodoc README INSTALL TODO CHANGES CREDITS
dodoc README INSTALL TODO debian/changelog CREDITS
doman grc.1 grcat.1
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/pandoc/pandoc-1.12.ebuild,v 1.1 2013/09/17 17:15:50 qnikst Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/pandoc/pandoc-1.12.ebuild,v 1.2 2013/09/18 11:04:06 qnikst Exp $
EAPI=5
@ -51,6 +51,8 @@ RDEPEND=">=dev-haskell/aeson-0.6:=[profile?] <dev-haskell/aeson-0.7:=[profile?]
"
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.10.0.0
dev-haskell/alex
dev-haskell/happy
test? ( >=dev-haskell/ansi-terminal-0.5 <dev-haskell/ansi-terminal-0.7
>=dev-haskell/diff-0.2 <dev-haskell/diff-0.4
>=dev-haskell/hunit-1.2 <dev-haskell/hunit-1.3

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/poppler-0.22.5.ebuild,v 1.3 2013/08/27 16:01:38 kensington Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/poppler-0.22.5.ebuild,v 1.4 2013/09/18 14:34:19 jer Exp $
EAPI=5
@ -11,7 +11,7 @@ HOMEPAGE="http://poppler.freedesktop.org/"
SRC_URI="http://poppler.freedesktop.org/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
SLOT="0/37"
IUSE="cairo cjk curl cxx debug doc +introspection +jpeg jpeg2k +lcms png qt4 tiff +utils"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-vim/puppet-syntax/puppet-syntax-3.0.1.ebuild,v 1.1 2012/11/06 22:42:02 tampakrap Exp $
# $Header: /var/cvsroot/gentoo-x86/app-vim/puppet-syntax/puppet-syntax-3.0.1.ebuild,v 1.2 2013/09/18 14:33:22 jer Exp $
EAPI=4
@ -10,7 +10,7 @@ DESCRIPTION="vim plugin: Puppet configuration files syntax"
HOMEPAGE="http://puppetlabs.com/"
SRC_URI="http://dev.gentoo.org/~tampakrap/tarballs/${P}.tar.gz"
LICENSE="Apache-2.0 GPL-2"
KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
KEYWORDS="~amd64 hppa ~ppc ~sparc ~x86"
VIM_PLUGIN_HELPTEXT=\
"This plugin provides syntax highlighting for Puppet configuration

@ -1,5 +1,2 @@
DIST MicroJSON-0.2.0.tar.bz2 4681 SHA256 9cb90f1b529475a39894584a79abfe7c1274261f2d1d789cf87425f98ca43766 SHA512 926a41b2f2abe36116864f3d063c4f047f8e18d772b56bf47ecb6b2e5907f72cf85e7b49f253e62813d2df74b2d575bd4a7b267dca367623678f17f95fb23560 WHIRLPOOL c9cedf289c306eb4017f04c2f3c6bb2bd6e74fc3634c77d6d8a3cca232e88e2459e3779f2cbc75e4a63447545d1729c969bde7e736e146779b736ee825f06666
DIST MicroJSON-0.2.1.tar.bz2 5309 SHA256 bc20ec1336fdc0bcd0ee14bfb2224bf067eed25bd817b2c08ee6369081f47df2 SHA512 90b571aa87bd5625f9b94db77e453168b0f1ff38eaef04403d979cf8ca65c875f47a6b8632ff6441226ddef26fd47459c3ca036bc2eb9e3b79aba21880f28c88 WHIRLPOOL 15768c232d11ee2a6f4eca71a6de046e2f989a8241b965a96e0d2761370ee82c0189e4edc1d58aee8fb70cb151e3dca6f3391d6688d15d43ecb422661b4e3f78
DIST MicroJSON-0.3.0.tar.bz2 5558 SHA256 562b1a016eab711c9017e3ede5a16fdaedd87a89fd6464a6259b7ac378493ddb SHA512 cf02e44531ee512397128b7893861af9f8bf330aed5cb97fdb0915341f62a0570b32653eb361081f37a055ba959ca58c30fefa05b96373c96b0eb485b96720de WHIRLPOOL 7403354de6ede792fd57f6a78c588c8d357f00c466b442076a04d765c048680824020d8a1877a28d0194f45d1fbd86e15c47f7da88e9e583d1f2888311d00344
DIST MicroJSON-0.3.1.tar.bz2 5585 SHA256 5eeca2a13081f5a9c1796786cd0d5a449879067b62214d308c75fb1b1e24fed7 SHA512 de4a7e0268898704872e4bff81c3dc4083702f497e7a8772773bfb1930448f692ede29684741eb6b5bfeff7bb918577a14e79652e6b5e513965a81a69b5b6991 WHIRLPOOL b504e3371fbc90dd3fdfba65a558d96331aeb586372ea72236d43fbf1e50915752fa8f75a3038289d1b5b11c1c544a784baee44ef9a75c4014c6cf0407126345
DIST MicroJSON-0.3.2.tar.bz2 5657 SHA256 a93f9333c9bb0867722fb0fb74dbc7f4142752e39a9195436faa67cb3efeff4a SHA512 06dced1f9ae4ef955b6e730e222266d89604ca8e38326c692eceac9f641a3233df8d90c41a10d2a360057320be9ce4e1b5ba70fa5e8934cfea7028f53a102a88 WHIRLPOOL a0557ca78a00fb6a2c83643a0f3a74373fc35460312ed526d87a10d49db9e012afd490ed2e8d5190a77e23b53e44e6401d923a84d551c271d5799a993562e5d5

@ -1,19 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/MicroJSON/MicroJSON-0.2.0.ebuild,v 1.2 2013/03/06 20:28:14 tomwij Exp $
EAPI="5"
inherit cmake-utils
DESCRIPTION="Small and simple to use JSON generation and parsing library."
HOMEPAGE="http://grigory.info/${PN}.About.html"
SRC_URI="http://grigory.info/distfiles/${P}.tar.bz2"
LICENSE="GPL-3"
KEYWORDS="~amd64 ~x86"
SLOT="0"
RDEPEND=">=dev-libs/UTF8Strings-1.12.0"
DEPEND="${RDEPEND}"

@ -1,19 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/MicroJSON/MicroJSON-0.2.1.ebuild,v 1.1 2013/03/07 13:07:34 tomwij Exp $
EAPI="5"
inherit cmake-utils
DESCRIPTION="Small and simple to use JSON generation and parsing library."
HOMEPAGE="http://grigory.info/${PN}.About.html"
SRC_URI="http://grigory.info/distfiles/${P}.tar.bz2"
LICENSE="GPL-3"
KEYWORDS="~amd64 ~x86"
SLOT="0"
RDEPEND=">=dev-libs/UTF8Strings-1.12.0"
DEPEND="${RDEPEND}"

@ -1,19 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/MicroJSON/MicroJSON-0.3.0.ebuild,v 1.3 2013/03/27 15:30:16 ago Exp $
EAPI="5"
inherit cmake-utils
DESCRIPTION="Small and simple to use JSON generation and parsing library."
HOMEPAGE="http://grigory.info/${PN}.About.html"
SRC_URI="http://grigory.info/distfiles/${P}.tar.bz2"
LICENSE="GPL-3"
KEYWORDS="amd64 x86"
SLOT="0"
RDEPEND=">=dev-libs/UTF8Strings-1.12.0"
DEPEND="${RDEPEND}"

@ -1,7 +1,2 @@
DIST UTF8Strings-1.12.0.tar.bz2 6616 SHA256 7acf9b0123dd0178a0bb06218895fec3e8ff4679d03688efddb9625696999df8 SHA512 db1eda28481ad38c37d48a297924957efe310d15177437ab4923881e4a98bec52005fdb9d841824806604224cc94211d506636d471c535ba0d3a9330bfd6543a WHIRLPOOL c624ec2cf6342a388f1e9fc1c600fafb9997a20151c97ff26a776e1fcd7e507a3c2ac35670c169f7755f82f9c5d7c64079f61d48e2467ca2e0fdaa09e72a8724
DIST UTF8Strings-1.12.1.tar.bz2 6699 SHA256 73f464e23fd30ca8770c0b22141740a195453c6c866cb329d3ad6f1626703981 SHA512 936d357c7a8310bcee5b00d82ec7193b590385026ea37460e6f4976eb9a1b2bf9b5c8b8af029163e012baf373f33c1f3c5dd254b9ceda4369cb74495d6947c74 WHIRLPOOL 1541316b7b4bf189ded8cab446d37dcb3dccaea0473797ba01336ac9bf1babffb0cc326b760deebe6b5fe784e8d497df5fba63a627d46f41f0ce81368ebb92f6
DIST UTF8Strings-1.13.0.tar.bz2 7073 SHA256 c8d9af929b986e7f9a3ac5a7b3e6f8306e4f0a402f37b7002f2a132e75b4d657 SHA512 7fe02d096cb9d52adff15365f8a827fa1b4f10951e5b716f4df76df25ca6d937611c261a33cb9acb3fecce9e0ffb00fa105c2d6eb0c9af00d2f7062b99bc40c2 WHIRLPOOL 5cf868caf6dacce8da21aa791e66fce998e559ad00329939d520205e9ef56fe36c9d4a171849d60106a431ecea078904535074163bea5e75879e4b37e9db030b
DIST UTF8Strings-1.13.1.tar.bz2 7083 SHA256 efbbdcb75f11419b6b951361434a8745259807b3f9451c4e1e627ba8b6c11820 SHA512 1f6e09c6d8cf40d7963f7826a30fbd2dfab8078d8a96ce2522e954395c51e07eaa9c127062d5a3d4e206acc1e18b7b4135ed8fbf945cce300169053191d700a0 WHIRLPOOL 35cd3053021aee93cec9a31d90959d70a71dd68cc75adb0159f0af7f8c4e12c87d7c7d91a24653de1cbd5c29e726922283376f3db75f97b0e99730c2fc1ef9df
DIST UTF8Strings-1.13.2.tar.bz2 7083 SHA256 f01dbd557c337a4d543ce2b536fcaf9ba5043d3d42bfcc96cf985b44edbf188b SHA512 7d88c92c26c73db8c0f31e3dee35d85898c97047a5b32737c70f957ad8115f07768469ad62af5517c0cdaa2707f0a5240d2c495c759f29b45615acf62f8515d5 WHIRLPOOL a5ed7bf37feecf886a5f1b64d23b34b47fa1d9ee0e7854a4eaed1a3effbe6a96f4694f02fb5fa28e33bce47f8ce8394e220f70aca02f3d1b8997d15f64a1f20a
DIST UTF8Strings-1.14.0.tar.bz2 7135 SHA256 4b150da1579261692079046fa0db61b5bda9ebeeeb8ac26034d7d73fd3ec75fd SHA512 12d06aecf0ea0c29067932e08e4854038f053a10e99c5fbb6912a8ec17c9eb687fe06fb8267a8db9e8d775379ce0cb4339b75e2338a014c449d89f74a09e1ab4 WHIRLPOOL 4750f99cb419fe0382c25822fbc2c9395208ea68bfd610ba7ebefa35e350f2eaede9c7ca79277c3c9a6c617262f1a0aea75c57f0fb8248f4691dd45f8423d781
DIST UTF8Strings-1.9.tar.bz2 5708 SHA256 7933b8a56fc83da34a49f0da67c056eb0340d20b544aa403ed2c5a076c72a054 SHA512 9d965a05fdd21109f14ca2b72a2c03484230f2824063beb676eda6eb022df0289c7596af0dbaa8732dc05b884a4cba695471dc47769c91792fee5ea3aafc398a WHIRLPOOL 7cc2bc5457c32bd00bc9a1932d9f5d16d3cf818ccb9b1b4556d19146243fac4697c28b82cbc155cd106c1b969699488417ad1b151529bd487028b2dfb4407d4d

@ -1,15 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/UTF8Strings/UTF8Strings-1.12.0.ebuild,v 1.2 2013/02/22 17:04:56 tomwij Exp $
EAPI="5"
inherit cmake-utils
DESCRIPTION="C++ library that provides ability to work natively with UTF8 strings in a very simple way."
HOMEPAGE="http://grigory.info/${PN}.About.html"
SRC_URI="http://grigory.info/distfiles/${P}.tar.bz2"
LICENSE="GPL-3"
KEYWORDS="~amd64 ~x86"
SLOT="0"

@ -1,15 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/UTF8Strings/UTF8Strings-1.12.1.ebuild,v 1.3 2013/02/24 12:15:25 ago Exp $
EAPI="5"
inherit cmake-utils
DESCRIPTION="C++ library that provides ability to work natively with UTF8 strings in a very simple way."
HOMEPAGE="http://grigory.info/${PN}.About.html"
SRC_URI="http://grigory.info/distfiles/${P}.tar.bz2"
LICENSE="GPL-3"
KEYWORDS="amd64 x86"
SLOT="0"

@ -1,15 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/UTF8Strings/UTF8Strings-1.13.0.ebuild,v 1.1 2013/03/04 13:36:37 tomwij Exp $
EAPI="5"
inherit cmake-utils
DESCRIPTION="C++ library that provides ability to work natively with UTF8 strings in a very simple way."
HOMEPAGE="http://grigory.info/${PN}.About.html"
SRC_URI="http://grigory.info/distfiles/${P}.tar.bz2"
LICENSE="GPL-3"
KEYWORDS="~amd64 ~x86"
SLOT="0"

@ -1,15 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/UTF8Strings/UTF8Strings-1.13.1.ebuild,v 1.1 2013/03/12 15:13:47 tomwij Exp $
EAPI="5"
inherit cmake-utils
DESCRIPTION="C++ library that provides ability to work natively with UTF8 strings in a very simple way."
HOMEPAGE="http://grigory.info/${PN}.About.html"
SRC_URI="http://grigory.info/distfiles/${P}.tar.bz2"
LICENSE="GPL-3"
KEYWORDS="~amd64 ~x86"
SLOT="0"

@ -1,15 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/UTF8Strings/UTF8Strings-1.9.ebuild,v 1.2 2013/02/22 17:04:56 tomwij Exp $
EAPI="5"
inherit cmake-utils
DESCRIPTION="C++ library that provides ability to work natively with UTF8 strings in a very simple way."
HOMEPAGE="http://grigory.info/${PN}.About.html"
SRC_URI="http://grigory.info/distfiles/${P}.tar.bz2"
LICENSE="GPL-3"
KEYWORDS="~amd64 ~x86"
SLOT="0"

@ -1,3 +1,5 @@
DIST Botan-1.10.1.tbz 2195784 SHA256 205a3c011391d01ca3e4f127a2ffbf993a4f59788ffa45a6df06ef4ff382a89e SHA512 6e1fecf6cb9103428c444a13b89eb21983c054f1327fcc48ff89876749644c1e635e09d8af595e8ff31ab9c657a11cf4953e9c262a6ee42bce3f68370f0636fa WHIRLPOOL 39e881806a4ee24ed75c6ac1cad8cd7ded962026138641da70ea672a45982fe9d8c6d3b41302c5b5b96567809377bcbcf3801aea8e6792f9d5e8705f6b6c3533
DIST Botan-1.10.3.tbz 2215991 SHA256 e1db6af2deb230699b076cde893ad949f0580d4fd7b030fcd791ae982d184734 SHA512 e14a961dca2ece04b20a574ad1eb4467f1d94ac1c1fb3b66db704d750aa9953dd78e5700065b896eea63effeffdeb6c529cc8de6eea30c3acef851cd7ddb872b WHIRLPOOL 2b400ec5f6bbaf235a88a057a5dbde05987894a6f8cbf3a8fc0447192d42ce13d4fe9a06060ef09d5eaafe5357ee726345b1e753654136f1612a7c7912688fd5
DIST Botan-1.10.5.tbz 2214817 SHA256 2934c00533847dc93c485081d3ce6aae4a110151a69b587b895241159da77cf3 SHA512 7456eaf2bbdabac9438cdd28dbc0735924480034d848c40039b5b58d52924b4cb065316989d6902201bc62fb5c19cba109b550b6865ca4d11748e3a3a1ececa6 WHIRLPOOL 7fd3de981d55a03925e78a4afcee55c0f3cf7e2dc88bd503f9c5705e5cc73293cf3bdcf3c3fdf54b6d1b77ba7dc32cf6fa46720635b922e368aaf12a39339fcd
DIST Botan-1.11.4.tbz 2346343 SHA256 ebbcc493ef2f13f536597b72e317462e1503c83f7e18e1fe10887f16b5f4da0f SHA512 c5c521a78b50de6c6e2bba912f0697e507a8432bd7f348e3e41856cc2ed60fea5877df4957d74887419208f8df63224a4c6726c94eef58fc1b255133b1f0ee22 WHIRLPOOL 41a024e3698fa2ede2a5124b6c5d2400e969f2cddfec6e7e9e43e549097dd606d105d6e02d6268e322d98e83300c76eb4f7783ee54699a7fa85addcf9adc3aa2
DIST Botan-1.8.11.tbz 2808114 SHA256 c3b60a2c3dfcbe7b21626e8459e5134d3cbabe45b6d94f454860b99798739ba4 SHA512 03577a01e464841e7c985ce6323c4eeaf8d5fc968786d058139e8f965d81900ceb17c7e3f54c948b9dbb602717fec0eff153e1f140c4016aef97c7adb317e5d1 WHIRLPOOL a7f1283ca50d52ccff025a74c10cd7b973a196f873b8386e0efc73af84d0e765a127448f999be9e76e90e772dc20950bf0ae9972fad99840b0045caea41ee811

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/botan-1.10.3-r1.ebuild,v 1.3 2013/09/05 18:29:52 mgorny Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/botan-1.10.3-r1.ebuild,v 1.4 2013/09/18 11:11:26 pinkbyte Exp $
EAPI="5"
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@ -142,11 +142,3 @@ src_install() {
popd > /dev/null
fi
}
pkg_postinst() {
use python && python_mod_optimize botan
}
pkg_postrm() {
use python && python_mod_cleanup botan
}

@ -0,0 +1,148 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/botan-1.10.5.ebuild,v 1.2 2013/09/18 11:11:26 pinkbyte Exp $
EAPI="5"
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
inherit eutils multilib python-r1 toolchain-funcs
MY_PN="Botan"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="A C++ crypto library"
HOMEPAGE="http://botan.randombit.net/"
SRC_URI="http://files.randombit.net/botan/${MY_P}.tbz"
KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86 ~ppc-macos"
SLOT="0"
LICENSE="BSD"
IUSE="bindist doc python bzip2 gmp ssl static-libs threads zlib"
S="${WORKDIR}/${MY_P}"
RDEPEND="bzip2? ( >=app-arch/bzip2-1.0.5 )
zlib? ( >=sys-libs/zlib-1.2.3 )
python? ( ${PYTHON_DEPS} >=dev-libs/boost-1.48[python,${PYTHON_USEDEP}] )
gmp? ( >=dev-libs/gmp-4.2.2 )
ssl? ( >=dev-libs/openssl-0.9.8g[bindist=] )"
DEPEND="${RDEPEND}
doc? ( dev-python/sphinx )"
src_prepare() {
sed -e "s/-Wl,-soname,\$@ //" -i src/build-data/makefile/python.in || die "sed failed"
sed \
-e "/DOCDIR/d" \
-e "/^install:/s/ docs//" \
-i src/build-data/makefile/unix_shr.in || die "sed failed"
# Fix ImportError with Python 3.
sed -e "s/_botan/.&/" -i src/wrap/python/__init__.py || die "sed failed"
use python && python_copy_sources
}
src_configure() {
local disable_modules="proc_walk,unix_procs"
use threads || disable_modules+=",pthreads"
use bindist && disable_modules+=",ecdsa"
elog "Disabling modules: ${disable_modules}"
# Enable v9 instructions for sparc64
if [[ "${PROFILE_ARCH}" = "sparc64" ]]; then
CHOSTARCH="sparc32-v9"
else
CHOSTARCH="${CHOST%%-*}"
fi
local myos=
case ${CHOST} in
*-darwin*) myos=darwin ;;
*) myos=linux ;;
esac
# foobared buildsystem, --prefix translates into DESTDIR, see also make
# install in src_install, we need the correct live-system prefix here on
# Darwin for a shared lib with correct install_name
./configure.py \
--prefix="${EPREFIX}/usr" \
--libdir=$(get_libdir) \
--docdir=share/doc \
--cc=gcc \
--os=${myos} \
--cpu=${CHOSTARCH} \
--with-endian="$(tc-endian)" \
--without-sphinx \
--with-tr1=system \
$(use_with bzip2) \
$(use_with gmp gnump) \
$(use_with python boost-python) \
$(use_with ssl openssl) \
$(use_with zlib) \
--disable-modules=${disable_modules} \
|| die "configure.py failed"
}
src_compile() {
emake CXX="$(tc-getCXX)" AR="$(tc-getAR) crs" LIB_OPT="${CXXFLAGS}" MACH_OPT=""
if use python; then
building() {
rm -fr build/python
ln -s "${BUILD_DIR}" build/python
cp Makefile.python build/python
sed -i \
-e "s/-lboost_python/-lboost_python-$(echo ${EPYTHON} | sed 's/python//')/" \
build/python/Makefile.python
emake -f build/python/Makefile.python \
CXX="$(tc-getCXX)" \
CFLAGS="${CXXFLAGS}" \
LDFLAGS="${LDFLAGS}" \
PYTHON_ROOT="/usr/$(get_libdir)" \
PYTHON_INC="-I$(python_get_includedir)"
}
python_foreach_impl building
fi
if use doc; then
einfo "Generation of documentation"
sphinx-build doc doc_output
fi
}
src_test() {
chmod -R ugo+rX "${S}"
emake CXX="$(tc-getCXX)" CHECK_OPT="${CXXFLAGS}" check
LD_LIBRARY_PATH="${S}" ./check --validate || die "Validation tests failed"
}
src_install() {
emake DESTDIR="${ED}usr" install
if ! use static-libs; then
rm "${ED}usr/$(get_libdir)/libbotan"*.a || die 'remove of static libs failed'
fi
# Add compatibility symlinks.
[[ -e "${ED}usr/bin/botan-config" ]] && die "Compatibility code no longer needed"
[[ -e "${ED}usr/$(get_libdir)/pkgconfig/botan.pc" ]] && die "Compatibility code no longer needed"
dosym botan-config-1.10 /usr/bin/botan-config
dosym botan-1.10.pc /usr/$(get_libdir)/pkgconfig/botan.pc
if use python; then
installation() {
rm -fr build/python
ln -s "${BUILD_DIR}" build/python
emake -f Makefile.python \
PYTHON_SITE_PACKAGE_DIR="${ED}$(python_get_sitedir)" \
install
}
python_foreach_impl installation
fi
if use doc; then
pushd doc_output > /dev/null
insinto /usr/share/doc/${PF}/html
doins -r [a-z]* _static
popd > /dev/null
fi
}

@ -0,0 +1,160 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/botan-1.11.4.ebuild,v 1.1 2013/09/18 13:13:58 pinkbyte Exp $
EAPI="5"
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
inherit eutils multilib python-r1 toolchain-funcs
MY_PN="Botan"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="A C++ crypto library"
HOMEPAGE="http://botan.randombit.net/"
SRC_URI="http://files.randombit.net/botan/${MY_P}.tbz"
KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86 ~ppc-macos"
SLOT="0"
LICENSE="BSD"
IUSE="bindist doc python bzip2 gmp lzma sqlite ssl static-libs threads zlib"
S="${WORKDIR}/${MY_P}"
RDEPEND="bzip2? ( >=app-arch/bzip2-1.0.5 )
zlib? ( >=sys-libs/zlib-1.2.3 )
python? ( ${PYTHON_DEPS} >=dev-libs/boost-1.48[python,${PYTHON_USEDEP}] )
gmp? ( >=dev-libs/gmp-4.2.2 )
lzma? ( app-arch/xz-utils )
sqlite? ( dev-db/sqlite:3 )
ssl? ( >=dev-libs/openssl-0.9.8g[bindist=] )"
DEPEND="${RDEPEND}
doc? ( dev-python/sphinx )"
pkg_pretend() {
# Botan 1.11 requires -std=c++11
if [[ ${MERGE_TYPE} != binary ]]; then
[[ $(gcc-major-version) -lt 4 ]] || \
( [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 7 ]] ) \
&& die "Sorry, but gcc 4.7 or higher is required."
fi
}
src_prepare() {
sed -e "s/-Wl,-soname,\$@ //" -i src/build-data/makefile/python.in || die "sed failed"
sed \
-e "/DOCDIR/d" \
-e "/^install:/s/ docs//" \
-i src/build-data/makefile/unix_shr.in || die "sed failed"
# Fix ImportError with Python 3.
sed -e "s/_botan/.&/" -i src/wrap/python/__init__.py || die "sed failed"
use python && python_copy_sources
}
src_configure() {
local disable_modules="proc_walk,unix_procs"
use threads || disable_modules+=",pthreads"
use bindist && disable_modules+=",ecdsa"
elog "Disabling modules: ${disable_modules}"
# Enable v9 instructions for sparc64
if [[ "${PROFILE_ARCH}" = "sparc64" ]]; then
CHOSTARCH="sparc32-v9"
else
CHOSTARCH="${CHOST%%-*}"
fi
local myos=
case ${CHOST} in
*-darwin*) myos=darwin ;;
*) myos=linux ;;
esac
# foobared buildsystem, --prefix translates into DESTDIR, see also make
# install in src_install, we need the correct live-system prefix here on
# Darwin for a shared lib with correct install_name
./configure.py \
--prefix="${EPREFIX}/usr" \
--libdir=$(get_libdir) \
--docdir=share/doc \
--cc=gcc \
--os=${myos} \
--cpu=${CHOSTARCH} \
--with-endian="$(tc-endian)" \
--without-sphinx \
$(use_with bzip2) \
$(use_with gmp gnump) \
$(use_with lzma) \
$(use_with python boost-python) \
$(use_with sqlite sqlite3) \
$(use_with ssl openssl) \
$(use_with zlib) \
--disable-modules=${disable_modules} \
|| die "configure.py failed"
}
src_compile() {
emake CXX="$(tc-getCXX)" AR="$(tc-getAR) crs" LIB_OPT="${CXXFLAGS}" MACH_OPT=""
if use python; then
building() {
rm -fr build/python
ln -s "${BUILD_DIR}" build/python
cp Makefile.python build/python
sed -i \
-e "s/-lboost_python/-lboost_python-$(echo ${EPYTHON} | sed 's/python//')/" \
build/python/Makefile.python
emake -f build/python/Makefile.python \
CXX="$(tc-getCXX)" \
CFLAGS="${CXXFLAGS}" \
LDFLAGS="${LDFLAGS}" \
PYTHON_ROOT="/usr/$(get_libdir)" \
PYTHON_INC="-I$(python_get_includedir)"
}
python_foreach_impl building
fi
if use doc; then
einfo "Generation of documentation"
sphinx-build doc doc_output
fi
}
src_test() {
chmod -R ugo+rX "${S}"
emake CXX="$(tc-getCXX)" CHECK_OPT="${CXXFLAGS}" check
LD_LIBRARY_PATH="${S}" ./check --validate || die "Validation tests failed"
}
src_install() {
emake DESTDIR="${ED}usr" install
if ! use static-libs; then
rm "${ED}usr/$(get_libdir)/libbotan"*.a || die 'remove of static libs failed'
fi
# Add compatibility symlinks.
[[ -e "${ED}usr/bin/botan-config" ]] && die "Compatibility code no longer needed"
[[ -e "${ED}usr/$(get_libdir)/pkgconfig/botan.pc" ]] && die "Compatibility code no longer needed"
dosym botan-config-1.11 /usr/bin/botan-config
dosym botan-1.11.pc /usr/$(get_libdir)/pkgconfig/botan.pc
if use python; then
installation() {
rm -fr build/python
ln -s "${BUILD_DIR}" build/python
emake -f Makefile.python \
PYTHON_SITE_PACKAGE_DIR="${ED}$(python_get_sitedir)" \
install
}
python_foreach_impl installation
fi
if use doc; then
pushd doc_output > /dev/null
insinto /usr/share/doc/${PF}/html
doins -r [a-z]* _static
popd > /dev/null
fi
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-nbxmpp/python-nbxmpp-0.2.ebuild,v 1.1 2013/07/28 09:09:41 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-nbxmpp/python-nbxmpp-0.2.ebuild,v 1.2 2013/09/18 14:18:39 jer Exp $
EAPI=5
@ -14,7 +14,7 @@ SRC_URI="http://python-nbxmpp.gajim.org/downloads/2 -> ${P}.tar.gz"
SLOT="0"
LICENSE="BSD"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="~amd64 ~hppa ~x86 ~amd64-linux ~x86-linux"
IUSE=""
S="${WORKDIR}"/nbxmpp-${PV}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtlockedfile/qtlockedfile-2.4.1.ebuild,v 1.1 2013/09/04 14:34:43 kensington Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtlockedfile/qtlockedfile-2.4.1.ebuild,v 1.2 2013/09/18 11:51:10 pinkbyte Exp $
EAPI=5
@ -14,7 +14,7 @@ SRC_URI="http://dev.gentoo.org/~kensington/distfiles/${MY_P}.tar.gz"
LICENSE="|| ( LGPL-2.1 GPL-3 )"
SLOT="0"
KEYWORDS="~amd64"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
DEPEND="dev-qt/qtcore:4"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/gource/gource-0.40.ebuild,v 1.1 2013/07/16 11:06:20 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-util/gource/gource-0.40.ebuild,v 1.2 2013/09/18 08:28:37 flameeyes Exp $
EAPI=5
@ -23,8 +23,8 @@ RDEPEND="
>=dev-libs/boost-1.46:=[threads(+)]
>=media-libs/glew-1.5
>=media-libs/libpng-1.2
>=media-libs/libsdl-1.2.10[video,opengl,X]
>=media-libs/sdl-image-1.2[jpeg,png]
<media-libs/libsdl-2[video,opengl,X]
<media-libs/sdl-image-2[jpeg,png]
dev-libs/libpcre:3
dev-libs/tinyxml
media-fonts/freefont

@ -2,3 +2,4 @@ DIST umockdev-0.3.2.tar.xz 399596 SHA256 e9ab4a02ebbd4ba551ae8d29b1529344b452c3c
DIST umockdev-0.4.1.tar.xz 411428 SHA256 98e8c008197ad49d302a6daf143b3679cc81cbfb476c6268f07469af1c84c188 SHA512 c86fa459b86939831ef9dd6115fb2b1ed8678ffe8e4f0a9fc082511225291fbad9b7fab7d3878df4645cb7b2378d578b4ffd87bae05cac7198ab7db0e05c5cae WHIRLPOOL 548f9f21a8a9f2cc05994c27beb5597d58739a6d8b42e02167705211f1a252a25fb912577320cd4acac5f874c34518264d3ca6b90818d41e0611cea9febe1604
DIST umockdev-0.4.3.tar.xz 713144 SHA256 6eba567933e8671e80b4d63858e93f1b56d914433c6e6045104758e5be04fe7a SHA512 78f284ff8ed243aecb2923c9daf2c2e90f0418b01befbe4d2ac69542afc4030f7ffc0b1b8d1b7f6bbb11529d11d00589c00d7360d5a0c7534c958565c9c4090f WHIRLPOOL c2406a4badc6e780db9d36f780012ddf1e75460b1c55e6bdec20b83684027c57246db6ad34b7c748a45998493b6bacf0737cf13771f81a1094c04dbc1da38c03
DIST umockdev-0.4.4.tar.xz 717232 SHA256 dde0caaa0cac3dc6b5d8734de0ef95c2c025fba9f42689e83fe6b9b75b3daede SHA512 5f8590cf5a4043768956d0763285f84380b320539ebec93dc3ae7ac1cf4d54fd875ee9d7f73baf70cbeae7da8ef4e111b05fc6c4aab4ac1fa526cf6f18a2379e WHIRLPOOL bb7360c9f389f23326a6106731d30d990a56efb9cc8297a9204f04ea28f479b62d1844d7792f1223ed38d11939251c9b0786a7ca555657718babd018d1dd1bb1
DIST umockdev-0.4.5.tar.xz 717636 SHA256 6ceb9f97ab5abf0e66fe22c2a6ac5d408559f98ce3b777acd4ff53190733daae SHA512 7cde928e8f917b768ddc8bfa67aaa3a2eef9608d54324d38794686537c684d0cef4cefdadcd78bcfd6a0b25fd57e2f824fa51d3a2ffb175e28ae8b3d4207a358 WHIRLPOOL 529847e0a28290348db917c40e12d8dff978bf15994789337cc0c8cc50f2bfefce1035e4ca20217eb918434112ee5dc5e7163bb4639410be419d27ad13169ae2

@ -0,0 +1,26 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/umockdev/umockdev-0.4.5.ebuild,v 1.1 2013/09/18 15:53:58 radhermit Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
inherit python-any-r1 autotools-utils
DESCRIPTION="Mock hardware devices for creating unit tests"
HOMEPAGE="https://github.com/martinpitt/umockdev/"
SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.xz"
LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="static-libs test"
RDEPEND="virtual/udev[gudev]
>=dev-libs/glib-2.32:2"
DEPEND="${RDEPEND}
test? ( ${PYTHON_DEPS} )
app-arch/xz-utils
virtual/pkgconfig"
RESTRICT="test"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/leechcraft.eclass,v 1.10 2013/05/08 10:25:48 pinkbyte Exp $
# $Header: /var/cvsroot/gentoo-x86/eclass/leechcraft.eclass,v 1.11 2013/09/18 13:39:36 pinkbyte Exp $
#
# @ECLASS: leechcraft.eclass
# @MAINTAINER:
@ -36,7 +36,8 @@ if [[ ${PV} == 9999 ]]; then
inherit git-2
else
DEPEND="app-arch/xz-utils"
SRC_URI="mirror://sourceforge/leechcraft/leechcraft-${PV}.tar.xz"
SRC_URI="mirror://sourceforge/leechcraft/leechcraft-${PV}.tar.xz
http://dist.leechcraft.org/LeechCraft/${PV}/${P}.tar.xz"
S="${WORKDIR}/leechcraft-${PV}"
fi

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/multibuild.eclass,v 1.13 2013/09/10 09:10:22 mgorny Exp $
# $Header: /var/cvsroot/gentoo-x86/eclass/multibuild.eclass,v 1.14 2013/09/18 08:49:33 mgorny Exp $
# @ECLASS: multibuild
# @MAINTAINER:
@ -28,7 +28,7 @@ if [[ ! ${_MULTIBUILD} ]]; then
inherit multiprocessing
RDEPEND="userland_GNU? ( >=sys-apps/coreutils-8.5 )"
DEPEND="userland_GNU? ( >=sys-apps/coreutils-8.5 )"
# @ECLASS-VARIABLE: MULTIBUILD_VARIANTS
# @DESCRIPTION:

@ -1,11 +1,9 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1.ebuild,v 1.9 2013/02/10 15:13:50 hasufell Exp $
EAPI=2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1.ebuild,v 1.10 2013/09/18 16:53:46 mr_bones_ Exp $
EAPI=5
MY_P=${P/_/-}
inherit eutils gnome2-utils perl-module toolchain-funcs games
DESCRIPTION="A Puzzle Bubble clone written in perl (now with network support)"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-simulation/lincity/lincity-1.13.1.ebuild,v 1.1 2013/02/05 02:07:46 hasufell Exp $
# $Header: /var/cvsroot/gentoo-x86/games-simulation/lincity/lincity-1.13.1.ebuild,v 1.2 2013/09/18 10:41:30 nimiux Exp $
EAPI=5
inherit eutils games
@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/lincity/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
KEYWORDS="amd64 ~ppc ~sparc ~x86"
IUSE="nls"
# dep fix (bug #82318)

@ -1,159 +1,3 @@
DIST thunderbird-17.0.5esr-ar.xpi 445976 SHA256 a895c50567eb0060854019921ab1b7f9d68ca56d76f7f73d7d2fe4fa201fbb50 SHA512 73ef90e9a7c0ef67c512f844dc237ca3c581bbe144acafc834c5131596c3cde393e2cd3a9ae703a3e11968f603f97e3c34161f4c13bd5830ef21645c0f69b5e2 WHIRLPOOL e3f8d970ac62f45aead2d57a2e0dd20661582b1a6e3509920d6218be7188fee1c63a4f3a752b538dc42c777a84acdec944793b54e6aa0fef7183032aed79041f
DIST thunderbird-17.0.5esr-ast.xpi 388038 SHA256 7afb6f84579dfa49e2b0059358c8e6aebc7b5783950ba47fc3426ff55e16d937 SHA512 eefa2d7aef3fa23cee741555bf7c6504049fb51568c8e44dbc88dcd4f62064e756376dba0fa63e3a812a5f7e313c34c66522f0517d9f06902f815c4fa0f377f3 WHIRLPOOL 6f59a451a467dd6c32d1d8cb872bcd650f6b5eb3a7f3cac06e8447261d23a25fc9362985696eba5860cd1389935462217cc7f4da63f22fd67ead1517c24e4a0b
DIST thunderbird-17.0.5esr-be.xpi 426695 SHA256 d704cb0b07c6915e80c4a8ee3c397831989b7b210e7f0e696a28e1c3948ab498 SHA512 72a9af581c63df99954f891c3ab6e1b983231d56ddd5312cb3f3e210550257c520c00c505d10176933d75f07e24642ab9decae12548589e7ccce5562ff881906 WHIRLPOOL 69bd6139c6c9489157e287499a822e5a463d4a8640bb6a9cead6619e10bcf732bc7cd96eb448b6efcf8ee7f9be9f04235e5859b30b8434a4fec2f2f498620290
DIST thunderbird-17.0.5esr-bg.xpi 467637 SHA256 4697a9a45c41116f101bff7b0a01dacdb79ac040dbd932fc70ed081cdc45d173 SHA512 3dc424a5f36b700d6489a36cc984d4687ed1abf7958d15484e3f70df5178302da5b94c527e61803254514754bf10d88a91b3278c4559114efdf656455d5865a2 WHIRLPOOL 04b822c5af856b69b8f673fa461df7bd215a7a160dfd8a11fdfdafe892733ec4367d0182a0b00bdba5781dfe13181488736bef86a9fb53d978acc31e8745dc11
DIST thunderbird-17.0.5esr-bn-BD.xpi 520602 SHA256 f773657f5931ba744c80acf74480c25431e088c6eeea82c5d3ded5407449df33 SHA512 af7a7721bf018f7d879bad0b957acac02df685f22021fb2d9564e791db0c474e6a3bd49b22fef56a05617cdf8bccb790ad4d66a0811d71157e36741227055b10 WHIRLPOOL 97fe048b0844d56933817fab7f9c70769a2046f81d45236a5885d71c26bec082598ac9461f58571fcce423bf930df98395f23a56eb46ceae3ebe8d9c845c1192
DIST thunderbird-17.0.5esr-br.xpi 417071 SHA256 e43198ba660f8b2b5c9ef2dd428549c98c27cf3398eccb6e4d2e77e4bd79eaad SHA512 393fbecaff671c91d90053a0c53bb8d3d8689e090b0216a8610f7579df4ac65a2a550bf2f32bf0cfda2264a3a07336b68a10244aff98923407050efc0dc99eb9 WHIRLPOOL 929d2ff88849e78b9b0b3055fb2f7f2f5b16baf753f4ac4192be0c803840a5c2f19ff969224ec7fc5fead7a4bfd9c6dfee12cf612e8f8a4ddfbb6468b887666e
DIST thunderbird-17.0.5esr-ca.xpi 418407 SHA256 644a001ee2100ab455b66cfcaba491af6ba75120f69d4cc8ac5b927339c529f0 SHA512 ee73b50f565dd7d54a694ac27a3ee95806fcf03a39c54ef1d820afc5895ffc4245228919fa1e146f197eb9f13cfb2d49107158f6de76f0c6b97470accffe8fd2 WHIRLPOOL ec8db1a503f6465af1ecbea064c9ae45637e749780084b52302b7898159a97feb084325bad1f987067b2815092eeb902dede979a0aa49bf7690e4cc05e95b68c
DIST thunderbird-17.0.5esr-cs.xpi 420627 SHA256 357bee0902b90a1210aa9843c8e7857eae1b94370020c8487282d59a488bcc78 SHA512 141feafd81e7abe82878fcb46a4c515ad8479d6909c7f4092cc0dfa8442513d8c0d6f226580b2bfef1ce7a6b9330f0e30086ede99ae45f65f561c2a875b75bea WHIRLPOOL d1bc41a68ca261608df69c5d52b8dc0391ede3661a4ce25070c8b61caac7d6f0f5112617026d3c8ab88bb5b53fd4172117ba4a1c68366618dd766f83f23afe94
DIST thunderbird-17.0.5esr-da.xpi 398980 SHA256 c8ec9031d017d4bbb90eafa98fae5c784d08c0dd4358b4f4574d6c317548caeb SHA512 cedb879aa9606245a1df71d8225f6095befe7a536892bffeac4db278b9373209024c8bfe16fc9edff6e7585e27c6e587302e2dc630e73f1ddea3607b68b6bef1 WHIRLPOOL 2eb51e304297a1ea5ea86625ab965064bad2ce62cc242127f4536fe9c8b63343448be245c8cea7f84805a3ac4a813a12bb1b98ca9f55611df751f888135590d7
DIST thunderbird-17.0.5esr-de.xpi 393632 SHA256 20246a979c14a4544fac5ea35d319258d51d593eff2a602d04c80d62f7d61574 SHA512 5abc724011729dcd9f52958dc8a11bcdbda0964b160741a74429df1e8980ea4594da68e15f3a71aef7aa670f9608bece61df9fabf4ad73bb7a98b74d14cb9fa7 WHIRLPOOL 64f462f5a57dd120275215d69533c7221c03818e9468695b75ec1339535589605579a41102c4a9ca50c7a3939ca667bcc8bc0b8aaf2b2c6179b5a037e9dc444f
DIST thunderbird-17.0.5esr-el.xpi 447926 SHA256 1fc60b83adc7c86f93252e842475f3194f12520b50518ab70dc1c2b0b540bf82 SHA512 a4e47b3174ed35e2ebc89b42d5b55b7850c655f358a64aec380b6296fa6e284b057a79fa27471661a05f197618f702195f749db267597c9848a0e39740b08990 WHIRLPOOL 36cdcced6047d431f1b4ceb8da7f32d87b1de332b5085dca9d714526344f1345073b333aa39888a0206a510c1d6ff6ba7ba226de975faea1ac1cd4711756fb42
DIST thunderbird-17.0.5esr-en-GB.xpi 390694 SHA256 d622039e5f4c0871508fdb654ed96ff2cda85721535e08e16962aa9a700c83d8 SHA512 86fe9bf8585e763ba46a9af5cdfb64c9c10741e3031e61c2e059748b06d905cca78bbdabbb1ec9a6df60837cdada5907ce8aefb5b62f0f6e0dc654df8b42d468 WHIRLPOOL 1b100b09a7afca70c2a36aff6b7e37d9e2675a9db5e129badfcc917c7f327332ab53b3b84c851640829f41b72afba997c1a2a5eed0a0752836f5c397914a79b3
DIST thunderbird-17.0.5esr-es-AR.xpi 415499 SHA256 9f56e7295c4de06c4cabcc0fc64db26423f9415ba419202b016dcd61cf397ed2 SHA512 10165118939ef6c7892457ea30041dcecabe8a9f321b7f9ae386ecb9b5cbfeb3e5e464f5639f559caabeb275decd89cc5beac3af084f32250a8845add304f030 WHIRLPOOL 923ce62590c24a588ee55f5d1fb2b87adecdfc8fc2f19dadca774fe0fc72bad90b362c25523d517aa510352a41aac02c27877af0ffe58325baacd0bb70e6ded1
DIST thunderbird-17.0.5esr-es-ES.xpi 356861 SHA256 1e9f7b437ab08e91e5fb039dd617891229357acf3b4a2ef487c4449521c86656 SHA512 9e3ae4de6f72673aac4f679dcf66e9d8045f14cce85e4da72affb96f75c5515a66d1f0a3496774925f659d453e209edee90c03810cb81ae35d6a5240bb34d696 WHIRLPOOL dab5488816b034b935e1cb3108a303d7cd24be9b9b19590db3aba78e83c6585965ed4816d95aa17feef002dc434ec70592968d4f1912bfe192cffe9701d73b24
DIST thunderbird-17.0.5esr-et.xpi 411892 SHA256 7c515dd0615c14ef1bf26dbbaeb8324d5597b547c03ff7b8201e1007661be845 SHA512 50a172d088acea6eb0cf8ce76125f3ce4d424ebaf76dc34fdea107e9eaaa85a04d4c628a2fe06696f426057aeafe3a4d99da0e5c04cf8e52ef7d93be541d8ce1 WHIRLPOOL df9cea0eb44a1e3f41485d49e73e1846ad7861f5c8667ded4c52dd9a3d55b90595c7b940a62355e21c3206dbaef612783a41575b9d90392bf45672b5becdee7c
DIST thunderbird-17.0.5esr-eu.xpi 407189 SHA256 6b241859c6eb30dd4ec3ea3f436da426475e677257586e1a3126ac8a6668afc7 SHA512 1698fe569d161168e17b910bde1d1c456cd54e7f78bbafb8dcc4fc3bcb653e884a6fcfe1972d7e4d4acdf47cfd898bb8a2e5df3ae08b7ea83e9bbe0e4c1a6fa6 WHIRLPOOL 4c6d975c861277e43e2e7c5b78c7d332247f09bc2df45c90a0e7b2926879731e73fdfef88b7b562aaaf91dce43c48a85a2793567939382e9a2d3edc17ed7c89a
DIST thunderbird-17.0.5esr-fi.xpi 413620 SHA256 f039a084cc38d9e1f33ccb6cb579b8abe4f7ae95a9fc04d84734859990191475 SHA512 8b601ef64bccf3b80ef2afffec90fb72aca50046c40bdba1e4fe26226377d74aa414688320d817f76ebcceef8a6276b65e702ae8ced1256933d3411bcd3896f0 WHIRLPOOL 284398a9dec0c5b6bc5b4bbe448922f57054e219a55090641073598aa28be4d0d3a48f418226f6a0ec3a58b2df0fdb5996a35191e56327b7a598cc5cc287ff68
DIST thunderbird-17.0.5esr-fr.xpi 420826 SHA256 2ad4ae0da6e482cb667deaa9fd439806c72d1f14b8530aff3c8e3750b1d47ec0 SHA512 790847e08c3560010df004665cf465560883ee13e7fcd2ce368c791f31ac2325c39e840a4c9a870a72117412fa16a64adf20fdfcad8cadac3ca731346c6a85ad WHIRLPOOL 755c4cd80bd5ac02fb87bd4cbc99df3d17826e61f02d0e8d89f65f10ea713ed0452f31bc40ee125009b704d894b0483a40f230d2796445002dd580b81fe4ba85
DIST thunderbird-17.0.5esr-fy-NL.xpi 415712 SHA256 ef09775e3974be8b6994770793dd9edd008e27b0841194d91f5ec020b5676c49 SHA512 37acb4691109846052a02fd7992a131fb0fdea830552dfa13c15da0deb4b68c2d356e2dedd1837b7f82754586afde0b73b98f8ed002c0ab1893c5f4e9544dc13 WHIRLPOOL a2ca9a249975f4bfbf504546979c7bbd45c71944f980e65e8883a0b73dbd22143d031c022734b226f11f3263f0b12175ff4663cb5fdcf051f84bcac563a84a04
DIST thunderbird-17.0.5esr-ga-IE.xpi 425395 SHA256 823d78e621fecca08589773ded8dd6099faecedf5ef4097da66ffe16c78e29ed SHA512 4d5989b6403213b00811ee19e75a4428a3c2b09be13500476577239ea269a4234faec560d826a2d5d8648c50119ac5f535b5ab3b2c49e8b42f43fd389bf2744a WHIRLPOOL 049b1d276a468238e0ed0571f8508322dc633eb391c481b3ce97853cf61aa00cc3c0e63d4a9cb2801dace38b2c1390af8988295d8ad5d3bfe480bca153a3d990
DIST thunderbird-17.0.5esr-gd.xpi 428939 SHA256 587dbff956aca0f295322b847f927c74c8d032ed4ae0f566a11a5de0c6811f85 SHA512 1645a99b35e97ec8e4cd35bc47683cbf348ae590edf688203b67c85603fcb3df58652a15014734d3b4517212988adff793a8c133e54235af3fcdc5d2b6812396 WHIRLPOOL 09c4843c802ce25cfdeb8ad9ed7f81a00c8202e9f35278e7c6d107153ee69e622eaaf2af3436a6c55672568ecfebdd897cfe2bb00bf23c6137cab24265f52f41
DIST thunderbird-17.0.5esr-gl.xpi 410370 SHA256 125a14bccb420d71792e8fc52655032baffde887d2c322527f3e11e5c2d47069 SHA512 75863e489f379b55e05aaf6c4ba37458cb6a31b8d70ef329c2db9e8733f2dce2952bb9496f691484195602946d9ba179da9ef6637298933b5053862f4c2b9271 WHIRLPOOL 25f9c5dc9615597c65c216fcfd7febf2741d95134bbaa677ab83d92b24b9df4029b8c2098282ca8806071a556844f7e61ea6a769aca4770f63e14865f3f62e5e
DIST thunderbird-17.0.5esr-he.xpi 439504 SHA256 f15933476b38aaeead09a9517c2bc89f236b5dbf595f65e8be05e0f85ac96fb1 SHA512 c7f27727a6e3431f487e3b1b7b13d5c13619d34fb79b591325e36ae5993086e10a5844c5503dc151698acfc4adfa3b3a529267f9a8912a97e4d955de4337120b WHIRLPOOL fac370f2da361ccc8fff2150dc542c16629de674de5cf1628386040cf668a71ee0a33b76ca2844f8063783f4addb0ea15c4e76a6f472864c5254bac0bc1a9bc3
DIST thunderbird-17.0.5esr-hu.xpi 433186 SHA256 77292c922fd097fbbce065b7ce95e95890159bdf496e0fdc36f7cfeeecd12da3 SHA512 8661c092255b943e6ef1588e6e91bf3cd33c7683c91421710e7adac59a023b8e3276bc0510c44ab1d67a78509008badfc6c8e090d075ddbbc6ad3a82b3c409a0 WHIRLPOOL 800b7e68a16972179524318d5f5fd53dcdbd924e21abe2ca74fb4b7f5c5b709a930b9b54e0b6aa6f08a4894655ebf3e34623c6c9eead6d39d768ec43dfc0f5ee
DIST thunderbird-17.0.5esr-id.xpi 439574 SHA256 3e7833b9469107adab3f2fd89526299e641f166ae58ac47e3f4978f14b08eae9 SHA512 70a662acee534599fbdc3d8f03d1f35d9116f09b4d17c3c10ab49171b17b83f38758c606836343cfde52ceede2e9843466277ca7de44a685489cf97177a1d359 WHIRLPOOL dda8add108849164a7a775a785b5d0614c2a76debe9c65423af4304e38222340a1c29d6d3e0319b27b4d2ac7243b135628e8599f7d81e2b317d4314716d52e32
DIST thunderbird-17.0.5esr-is.xpi 414068 SHA256 a1a1664d4ef35af52aa701231d6cee733e70411d24f3c6bb27a2d003022f5dcf SHA512 20dee74f13c95d540ab8ad4f64483511383ce8d7d0c9d0c8d9f7371a859966e76871baf6fc98b1ee1d3fb9672372df46838663de6f3eb735493865f1ea0f2b16 WHIRLPOOL c67af1841b879c0fce81e4074e9a64b43cb6205dad2c5cfa37d657d91005b7a9e8fc8c42b742e3b421ea4c89b71056644fdaf181f0bf803483b8ee2bf052ff11
DIST thunderbird-17.0.5esr-it.xpi 348621 SHA256 e94ff8019ba450384155b9191a10a6df15860360a01d79b0b72d19ab9f60c004 SHA512 8715fe3fc1632421327853621fb430c3f59d2c1dea29d9d2016ab8feeb7bc2cc6c637868a4bb423fa35d3859a09313d9ab0e2787ad289ecb3385ffc0e0c1f403 WHIRLPOOL a4408a371b330e995e359614427cd8892fcae0e4371ca830884f93289e2371f59a8b56dff15c2f1180fd6be465039134c6d04d3b26029b7bcd424e4f901802cd
DIST thunderbird-17.0.5esr-ja.xpi 463488 SHA256 e0c40d7192c30a8ec3b2a04eab251aac8e16b99ecd53e5de880dbbfa3cf549a1 SHA512 49995b772ecd4b24cc033d12112eba3485318bb1aafa02269b133a0a94e00809f70876299d0e56be898fa8080700e32a2590749b64d212fe5d49771b5a3a3612 WHIRLPOOL 904b4b0fc5e321c4817310360bcb10b5d0575e2852b33ed6b5964b4462a6ba843bd0471913992f98523ae72ae57160283bbb011a076477a9ebbec54591273c03
DIST thunderbird-17.0.5esr-ko.xpi 412964 SHA256 b5e4beca15983d134bd92d09a8f2846bd0e1a7469d896d6f83f6c1eccab244a8 SHA512 049a7b57a9b10a012009d89b2ed47e754a39822aa4bd614aac354b4ab411ae53f0a13bd9f9cf87812b4f931115448bccaff3fa1defc7a0172ba7370114f6be5f WHIRLPOOL a229695810bbd9e38d98babf5ee01a2510f76f38066b3917fb8426c179156667db83e856946aac66d949e79fcd4783577d9d478ccb20015cf90ed8b2770fa1e4
DIST thunderbird-17.0.5esr-lt.xpi 519802 SHA256 8412dd792bda43c960f4f86070b5645e6b30b7ace9cf478f27b83a2ae2001107 SHA512 e17a1cc71cb1f73d01a9ded9ae60d4ef920abbcba5291d048eb3b04cfed453c6e23b3cdb5e9f781757a8095a111d403c01fa743efec6df293728e7f4597fca64 WHIRLPOOL aa4b57d835cfa63f0662a57684bbfe08068d12abb5752ca0695c74370e2942f347acc4624a1944238aca30b5e377dc180da0714292a897abdd6e6d99667eba50
DIST thunderbird-17.0.5esr-nb-NO.xpi 408519 SHA256 0ff536aad4b03355d221a084110ac37162096c5e7e0eaec267bcf15766bcb582 SHA512 86895dc2256e31c4b00fa3f883804d5873d98967bf3d9f87d874620ea39b722752a8877bf4411f715a74bcfc6596e04439f13e0d576ad69a54aa2be6d62d41eb WHIRLPOOL f429990e68e472995f4fa415f419fc9635d097d322579f6153f743970189f8e2845bf54948817a857bed0dc108b59b3125584f23f5311c9bee8d6c56a4891a62
DIST thunderbird-17.0.5esr-nl.xpi 408527 SHA256 65c3926f247080a11dd7e6dd24e4ecaef251ee0ff1188db3b338e193ab849e7a SHA512 82a8a08f6cd257d5fabd8472deff12fff851a1458a028ebe9f2da9b515cf73dc82034e4a82ee6829188c8aceedbb8735ab95994c2f53e5c5b5b72ef8338d04ac WHIRLPOOL 435cd3e95ab7187d861e6e133159771b39120c81b0ff2389eb662a4f8175cae0a49e05f9f94fe55dd09c8fddfc481d1223b628a96e0d6285bec17612e186833f
DIST thunderbird-17.0.5esr-nn-NO.xpi 431472 SHA256 3efbf9f409b38cf742c974a6c418e2d44bd80c040a0d2cd0c88548dc3265e428 SHA512 48566e78b773f31f1fb75656d5d9ada6437c80cd5e6334cb819ac017a466ced58717e3f9ed11dd146c17f7be50892ab3407706c96acc25bd8c502290457d2a1a WHIRLPOOL 708d22823594ebef057503b8264b26f079149a645c1e00079804dfd348789f1a9201c9e7b20dcf09500647c8fab216cedd0b9dbae2b96fa686db7a85ae3da7ca
DIST thunderbird-17.0.5esr-pa-IN.xpi 492444 SHA256 da1c113a07407ecf61c20a65f98c0fb364e6a6df573875135d31c4caf31c1272 SHA512 3a398340db08bd74017304183fa63e819e588e957044b5635789fbe82c7397a63f0e8d98fd27393bd190302f642cf832cee51a630c76568a0e8ff955b03d049d WHIRLPOOL 8f301fa58c20a432245f2353c09e3bb101e8abc1fa0b5a65a848c40bfaca64eb487746f100b8de1c20c8c2c2f874089943040d684e2b01bde1ee736a5fc4b407
DIST thunderbird-17.0.5esr-pl.xpi 402114 SHA256 26079889be42bbfe0a561f3c72a2bef89470a4312544c600dde7fb9106725280 SHA512 8e5ad4d630ae589edcfe91c083729925e8c2ea25040dfbacdd2c273c5cf9afb119667357cb6b0dfb34d860918badc48c9e81ea79f42264cab9206953803b5eb1 WHIRLPOOL 8e8e32b18376bc544d6666bf27925ba27f4b811143e059bf83e12a893d49bdc3170f298c73830fc1e876a59a4eee5ec9ae6b40d2ac8029c841f7d44403c2824a
DIST thunderbird-17.0.5esr-pt-BR.xpi 415778 SHA256 aea1e660b1da7b6af02b44b211e5945acdc4186573dd0fb0e6c486d5155eb41f SHA512 67ac80f839c4f39f6df04f6ca4258ca259500009d17df4e1fa84602b5b3584855ce9f15a0800a5d3352723265f58aff75cc53e0a447d08f9eec357528511ff94 WHIRLPOOL 05181f26479e745f9b6e6e14a4febee3cbfd82f744cbb88aef26de27cbe19efe4914005ae4616cb34f80ee1ba63cb8fd386181aa0738274fb686f20e59e234f5
DIST thunderbird-17.0.5esr-pt-PT.xpi 445754 SHA256 85747c873660d5a4f3e94e2eedcfdbe63a73292ffb77b9d3a182bd5b682c116e SHA512 03f07a60451538ee23be6da2086d7755964a61c402873a689299ec1fe87f93840b58f63df891233cf70e76eb834b81b43bb015bed14a33cb33f4926b00f283ed WHIRLPOOL 270b042ed4ed0df5db0fdc0d7ef66a097b8851cfdb2b54c132c31c31ee9d0d5886b77c4203eb431b5301d64f09f4069a746123184c51d99910e7baccc6d5bbd2
DIST thunderbird-17.0.5esr-rm.xpi 415531 SHA256 f76e4465a280f8b71f9937dc902d1c4dcf1adf835b1daed1916f619b87831f39 SHA512 89150dcc5aa4a2646fcf05bddb39148b553a93fb64d6b5be5d99956b49883aee1ad1871274fc0a6c78a79387e61167f74222f32f551fc61a187bc73f6d65395b WHIRLPOOL d2b545353dc15d6e002887a3218e5dc592c6c6bc90fe13012690467a7dea2bbf80f8bab0f1f40882218b31360c6b51e1ce158e8e254b89f8f44276d27233df47
DIST thunderbird-17.0.5esr-ro.xpi 480493 SHA256 be2f2bd46ad248dc54e05f4e84f883c5ee7b5fc68f1983b5ce731460a537f96e SHA512 2449fa305ca59440eb3db270d044da49aba514909ad3d8d3308a7183892064929a4ff9cf832b8dfb86e45f6d6bec00eea4116b84202c2594e728d10195f7fc23 WHIRLPOOL e5a63f2a52719c531f54117c956c2ae94990db8d244a685b4fe2ddcb6c84e042aa4364feb0cc716ed0847342b52e7cb253321b02e3028e00db3bb91107eb7ac0
DIST thunderbird-17.0.5esr-ru.xpi 415708 SHA256 85b306fcc0032ab81b86ef03549ccf019a32a9d811c38e796d796523f30e36f8 SHA512 7f3ab47e8b5102f76be1ff18877e43e4516826fe9eee2aa46d713b2b91e393720596152235c6c02094a02052b2825768b00e3161608fcd05975571dae2762ccd WHIRLPOOL 9325c7eae41ffcfb9a572c754a48d6317c77b597d1a24eded17810a958d6d45e5e9a3d4622431d2e01864d3f95d1773d64f8eced8f7d27f71ead3ae4e893db2b
DIST thunderbird-17.0.5esr-si.xpi 494162 SHA256 6c9222d802c3aad59c68b8d165dc0ed433cdc07ca12196f1e0c58ee7aec3fc7d SHA512 7d08684ee08d1c41aa62d0c338eba3a93255bd135884226c6fdc4c5b49a4e7ee9194af303659a85aee92bdaaddd8e2767e99267e64b7716fd5c1fd3b906da662 WHIRLPOOL e4e21d61e1c09e09fd914359d7c95be7b1c1715821fde388ed1dd2d28fab9c2c2d0960b8baa4675f82c48d9254ee41d4ad1554ed100c1d01609ccd43f8bc61f8
DIST thunderbird-17.0.5esr-sk.xpi 429756 SHA256 df616a212daf49a45a0aff11bc9264e99ee2854691cc569cd6f4aa7b57a4ca98 SHA512 ac8466d613ab92de620bed35fbaea47e4f143526d09e3f462913036d2b7264439294957a68d177212565a6d303b0718a7880ba16c2f35bb584d040b5b498eadf WHIRLPOOL aec9e8eb20b2a98d2ab65f716163d17ac6c07903e23d8986ecd7de532f530fdf5ac58c6f95650d07a57010297a6d696dc97db6208823b652da4d0f028706c614
DIST thunderbird-17.0.5esr-sl.xpi 442096 SHA256 bcc2badb1cc8e7d94621e558fa2ad7f1608011d243f7c23f952a8b6a19afd907 SHA512 857e11e2b5f0dc01dbecd68213dd7712a6d27243c13ff0e872b5803d019867fc4382e3de036162621f6427f5ac2053c5297ceab87ac782edaff1d8a02313feac WHIRLPOOL ce5877ed9ae9b601483a3cc28ee5dad1d59d2006c32a6627417e732762959bbac841603f4b460c091d5144d2f93c583bbd1b4fd1367d93ff85531478a70e8760
DIST thunderbird-17.0.5esr-sq.xpi 418781 SHA256 47f5d71fd8e0b0e4250d544564ad8d91149c5311c4f04fa1c215979d52f72b9f SHA512 1a8797be51f260c303fe27b67c8a42f2c8969d325ba46fdbbf5a31f90881640a0edd784208d6965a7139e7cd28b9ad521a8913be3b78a3c85077adda28c50cc4 WHIRLPOOL c67387d11ec09000e09d0bdc982169dc1f8b0a19e94c34c778d105c182ae0c783f237f09d1a7d27872e44bf3b21a94ed36c19464316715f69afbbbd77836acfb
DIST thunderbird-17.0.5esr-sr.xpi 502501 SHA256 4f3ab13893ccbb7c7ed0d648ebf0457669f0149fdf2d4226c1d76748f621c82f SHA512 510d7f06de9c2c915da69074eee0195ef20cd54d744f4d5ed29c15ea888082e49a101ef1a8df0ff86bf840a3a9a37ddb01f9081fcd3da02b4ee015b4a6a5a6f1 WHIRLPOOL 8d4244741a01be5890d1267b15178b92d1ab548fce01d8159be2cbc011206f393b4088ea39a28a04b5e0aa639dd7233107e8beffa36b26f1cc9d5bd0957dba41
DIST thunderbird-17.0.5esr-sv-SE.xpi 413218 SHA256 ab121125b9714b5b8acd6fc52415d47d53df4ef561188b65dd4b9b687b6c1c7a SHA512 12597c5d9b04457b4f199d9d01607f4b3230ef9d502497a41cc06bb756a3d3989fec9e150720b004a0e5fc74cf970cd2d78bd4a03a608a69624a6494c41ec09a WHIRLPOOL fd3f913118774dbb353ea8eed099258e090a05254a504f0d776dc2e0b5436c74822379b1fd3b5fa47a9224c3986d62829f76d965dbd14731f3776a8b54e6b807
DIST thunderbird-17.0.5esr-ta-LK.xpi 517912 SHA256 789946d7a9f3a04ea37fd43b6c4e6b9907611e2ecf9428e471c1162bfbbd47a2 SHA512 f75599e51465d6d13809d65b18ac21e68cb7e16f75aef677253e17259b863cc8a61ae04120826563a4ae443a4dbdccd86fefe11cab9b1731bd6586f07b597652 WHIRLPOOL 9c475f385905fef6996eec7b93d7371e638308ebc10bd925b4c2200f584e48a9d590105acb90d369800949c6c59eebae485325d1063a50c8934afbc04ca6e303
DIST thunderbird-17.0.5esr-tr.xpi 444945 SHA256 420969d11d6f2e8945ab3a50bc0779cbdc135f32cdd7423ac3f6d8042abdc4f7 SHA512 5652af13046b7d7fc5559bce3337e3954cf89e9eb255cc6395e54babbb1c78f072cd1b3da6bedf6946556ede6684a3a84849c7fb9b071ed0ce0c52a5e9fde9c2 WHIRLPOOL da97fb658215431d814f2ff4bfa81a0258fa00b86d96e3679397873f7255cbaad7ab086c0f1b0230e459b844be9b7cc0208d91f37a22f77b5cd57acc554e7dc2
DIST thunderbird-17.0.5esr-uk.xpi 471142 SHA256 30270bfb9b6a99cae60a37fa08614af1ed0deb2044f6de52c79c56da5ab4ffeb SHA512 ec23a81d9c3866b2a395b9092e659cd26739ce721c86a6318eeef7999a6378a31ce844c7c8cb8b06a27367e87a6547def89ff70ae17483b0094b5e3ad00a61e4 WHIRLPOOL db25c58b3d42886dbaff83f557937488cc263716d0b7c76fca426a925b17996a22d28d48203da874d132001e25768b1b7bea52d5021748eaf3a4873b60dfbb6e
DIST thunderbird-17.0.5esr-vi.xpi 478454 SHA256 b48c5fa9fe9d3c7719e45955730e01fead4f28dd8f4d72df75e247c57fce3326 SHA512 1c741c8c6a78c191467c6f21f6de37e200bfee3703146999d4f141ea91adfceb4e8188e1397758569d120e6a2cbcd947515dae0fb2a5596a025729ee042a1adb WHIRLPOOL 704009c7bc31bc99bbe5e103cdb84e855c96a8863aa738660c21f993bcf503d6d1df4345228513c0c8403d510c2ef20f67005dda43614c5e4c50e4fc4ca64984
DIST thunderbird-17.0.5esr-zh-CN.xpi 436082 SHA256 0c775bc64658bfd657a1125e776b529a6097c25dd760e8ef74e8e9ac58065d04 SHA512 f827cbd42865ed5395a1121902d835c00395559db32b7328febc301122d365edd0daafc805457ec81667165017fca75c3dd88e7befd0cbcb4b8f998c6aefce5e WHIRLPOOL fee45c4d16c40fd7ab96885de2a07fbacea53906eb0934187a810a4227639f91b469815e393f0bcfb2f1313d089ce23649f524b9ec6cc95472609f7272d7f71e
DIST thunderbird-17.0.5esr-zh-TW.xpi 437591 SHA256 194b9a773cdf8a078b11928e56807b58a111d849af272116c8323d5c147ceb69 SHA512 acba4f4e5fe86c17c10c333b5a70fce7220d6161141f307d9ecc410185c8de8fc23db2445955e615d6eecfd2af75ca5b43ea0bc8d737bf2a8d8f33938823cb5a WHIRLPOOL e43115377eb2345d6b27789e382f368e76fa733352e4a5d1c8ffc12b460d13775da2a97af8df79f754a9f2ad57631ec85d8775a1e366210dab96f599b6c53b9e
DIST thunderbird-17.0.6esr-ar.xpi 445977 SHA256 3cac8aefb6a36adff9ba9b863435b1ec43b439325659fd14cd2b392226f3eb70 SHA512 2cfbffd451d7ca2d5022f32984332fcf0bc3cbde8e21e66723dbc854758308fbf595ccdebb8d32dbce01746d69c828d957aa802ee7acc241c53f2f943b3aba63 WHIRLPOOL d10716f1c6e8d238bd44a79999230ec89e01e9382c276a037f8d1194b1eede6077068ac283e5b772de3265cff5269d41dc8d97061b0125bb244a32ae2d8941bb
DIST thunderbird-17.0.6esr-ast.xpi 388039 SHA256 fd8c488f2b6bc7d5ad5d73c78a906b2134680eac57f1c892b935e58e659b7ddf SHA512 2e2ff438967116c3c329bceaaa70ba127f4a377d1045a2683548ca79388b702472132a8fe91e1f45d7d3bc264554dc4c4f57d92fc25fbf6518d9b2bc36c308fe WHIRLPOOL da15aecdee0a7a8c9b14c50126e803be230c30e476c07fa3e7bbd78165beaf7772c0b1b43fdab4d283b05a62084f2bd2dba63c9891ab514992970fa086fbb37e
DIST thunderbird-17.0.6esr-be.xpi 426695 SHA256 ee253179135b8d935d2eadfe97d508bb31ea3041fafba2bb9b7e4811e16e7015 SHA512 3c0b3851c4f419e856d0dfe06ce2364dd13c2179690d9dee7bd90086737f775d11858c0ac4ca19c1e99def8e887603cb3d18db7dc0cc1caacadf4996fbb9f831 WHIRLPOOL 204498ea97600c91142e2b95d36a28fc4e2b5cd1f440db62038e9284cfd09c2500eed99123c156712a6b2ad9656d458fe338b0edb161f33a0ec7ee5344275347
DIST thunderbird-17.0.6esr-bg.xpi 467638 SHA256 8b95e8817b3af4a54cdc2634621b58e6b1dfaf192eb6d6d450873727ed1a3a38 SHA512 12af3954322af52a7e315d6cb6c00b335151a4b4a43d309ba76574dcd3c58caca58c00512439782ee76895035be0fac0d5d87bd866257d808095729080103cf7 WHIRLPOOL 630c6b85a5ecff1a4f03fef8883332e97477d0a9d0bbaf58cd60c837d6396213293131ea1dd4727992e9e86cb2fed7051e5f50522da0c2a94385e050ef5cb708
DIST thunderbird-17.0.6esr-bn-BD.xpi 520602 SHA256 fae5d2d937ea0460aaf025c3b6328af7a9f3637a7cc5f6861d2cda08183e5c45 SHA512 40df7d6c16c0973b4e85174e3c61acc228fead4d04d1cb0e5424d89bb10a78c79f524b31095d14514b502f5e41ede0ffeebd4a519568b4fe45af673f8ba10376 WHIRLPOOL f98330c83d3531db3ebf02ea1e83279d95c88625e7e88188836df1b03244244e2a2ce1fe137e5233f1c8842cbdb74de0045e75b5a78fa38cc7bcb0af34d3d93f
DIST thunderbird-17.0.6esr-br.xpi 417072 SHA256 c54258f01e83f71bb1826fbea344028524dddcc77539d03fe9376832ada6f54e SHA512 4fd805da87a02512f6d882800b5b190c5a1ff5b65757284d9dbf2239d86472122d8e7631becbc0949503f97ba88bce6c8a78690026f98eb26c2ff778f7a43166 WHIRLPOOL 8b77401d42fbb696afc645af1a464ae5b7ef202dc99248dc71dcba8db1378639390cd21e1be89ffaa2a667fa8beddf501aaf09870f9a76b52161840f83ba8ddb
DIST thunderbird-17.0.6esr-ca.xpi 418408 SHA256 e6ace93ff41867080f42ed5adfb70803986ec0b54811683621e6944492cdfc41 SHA512 9bd5e7c97d3bf809e22345856541215e7ed2be93442f2fc6104af7e6aa05f68c60ce8d95349611aa1df1aeae5fb0bd302e365e84552947692a473e28d0ec4329 WHIRLPOOL a8476e8da39baff855e8133f0c8b93c54737b0218dcfaf7e5f18b5c80a99d2a777b7a1f848b385a187239f75c2babd697e6b2861e46feeefebd279895267a2a8
DIST thunderbird-17.0.6esr-cs.xpi 420627 SHA256 2e7dd4e30935f78772f38a133a3695e36d511c8defb5b02181708b8f50bd4e60 SHA512 b84bb94093c2c80e78f8286aee8961922e7ca6b071818ca670a454afd78a1b8a13a9b0b1f2256b0b810627d6cd71828f2eeb38eebe0a5b824587413ce66daccc WHIRLPOOL 31740fda9e888f3e4cea5c2428b6a75ea583a79ecb09194becdd6f5f8988e994f98a31eeff5550f688b572bb05d8a11df819bf8ad59ec6044d7b0696ba0a859f
DIST thunderbird-17.0.6esr-da.xpi 398981 SHA256 f37bd8014c1288cf40084c07d97e0abee47fe973d826e2faf7689d221abdc9d7 SHA512 7e012838b6cc27a9db79c7efb129c12dec873b8f418b4aba131a98fa902fbe01e2d519af0b865e94e1ea7ab8653f4a9cf210bef2c724bb7a8de10c0b7b3ad531 WHIRLPOOL d5d9a53ba8e0b9c7292857fa215a1a42a79cfb9058d410fff3a190353c228e87d6712c15a2380a63ac1b6f3aa64cda9a7d69fb6f20b245168f89612a617da7d7
DIST thunderbird-17.0.6esr-de.xpi 393632 SHA256 216ad172402e3e041894a108aab8c149954742a086d6d9caf61fa5abea09133a SHA512 0667f0d02a313a5339c84c67e90108f7191828ad28b6d65271d2a1a7fb3d57568bf14774475c516326f9ce16e4a27ec35abe4f1268f8516c8830ca8e235e4e33 WHIRLPOOL 771626b0bc867311e60c2cbb7bcc0f7032c7352a4ccc2a566fd4fc7d608c52823d0686426464bcc774b4517bcfb2e7aa4c8d5a102f5888cb3fd0b850c487eab8
DIST thunderbird-17.0.6esr-el.xpi 447926 SHA256 662050e75367c4253b782943e3e6e73067c8c830f0256aa53560744b38902976 SHA512 fd18bc39bd7ef4a6239bf5903f85b799cdb0887fadf51323977714c35ae761565cfdc8c3394b96024b4ffdc53d731d0f09c8e4c0a21fd2dda0d2821945dd9dd6 WHIRLPOOL 01812e022d0e99b2949ea6e0771112b0e8ea7ce563d5c22722a778f4cff086cdcb2297e7a989847cc92757ab03aa5930b936190116266afeba768e753f387852
DIST thunderbird-17.0.6esr-en-GB.xpi 390694 SHA256 e560d585b29e0aa20fc023e1378cb38b1c3da900e38ea7f454b9587d4bd93d88 SHA512 73d8f709c097561a83a50ba826f0b2821eb067012728e4853d0e47e7ee29f7a11aa2cff576d9438bc8db92ce8e0f7366864bd601431481d86a16b340ae817590 WHIRLPOOL eaaa7d8f04339500d853f33bef130f35602f940be899f7303a3d46dd03ae33ea9301bc4ca86c43b723bd5d3b43170c805e0063c2a6a98dab1f04d76555d35e10
DIST thunderbird-17.0.6esr-es-AR.xpi 415499 SHA256 0980cd1b1731d57144906aa0f13670c7a0f37f89b39c3236e7037b84d4dab1cc SHA512 fdea2358323e35110c7b9188fcc0ce4e63fb0ee7519f13d82d1102f6e1f2c0eb446b469d2e347027bda165bed66ac5ef2b709cd7d0130a1fa45fb964745c694d WHIRLPOOL 61bd588b47a9edcc3e6a3afa27994bba1c90a5dbc06f8a7c076b34c0d1e59bffff905d6200684e809df0a2993f4ed0849113323422a66eb5b57c792e9d30719e
DIST thunderbird-17.0.6esr-es-ES.xpi 356861 SHA256 e1d1f79b2a5159d909ef0c85c8245872f63e12b5548891f0d4b57d5331082c5a SHA512 5cdd78e60816b1ed62836569d764209f34769aa768278ad965f7ec01d483d9b28e3919f26301758df219bb09cb57db1872950ead670c698f46ad74bda368769b WHIRLPOOL d7793b096aa01285205f17f69f99a20bd96b2981e8c56553e931786b83694066d971759b34ece323ac5d08284630cad6d94d29c19ebbb3b070ecc84da19c3887
DIST thunderbird-17.0.6esr-et.xpi 411892 SHA256 b8c0c3312b90fab5d39a1ee546c0e7b01b4ea342ad6cfae4a6f6853b083d6568 SHA512 35115b27b5496b6d6f17b52a0db0a9ce4ac92ac46c99d3dea37eb36883b64163c33f95ebcaa7cd8223278d02ff4e036c271266821231e3145ada8f01742aad0e WHIRLPOOL 1dbb3fbc6fd34b0516d0472c1a002b43c257618402fa704779fda62d192d0a221364e4eb390f5fc0bc00ea401d5697d19ef4f2557b74d542ebbb04a19c7f4221
DIST thunderbird-17.0.6esr-eu.xpi 407190 SHA256 9974a9dd3769fb04236d15d294f51833f9274f59593139290ae62cbfb01211a8 SHA512 611369e31ab72a882015b30bb794932f077555aee7b2ca3e542694f67650478f9570c96109963cd425bd532c7fc6299414cc5f31dc00e97460503db5af520fae WHIRLPOOL 447acbe87fd861f8337ac5b99c84304348b9de350c5c31af39064d9e890c6897c9c15bbd1a3ec76ab46e6964b6bc04c98f28ee4c717a21d2ba36012d428f0eb8
DIST thunderbird-17.0.6esr-fi.xpi 413620 SHA256 22808e9a1bcfa24519242a1743e1023128c8ca4a837dd7354a74f215fad889b3 SHA512 c91b759a434ee37af95745f477ee0d33dd49e23961d462764a10cebd94acce8797088aff661ca999291b9c80655751cd359967f368e48b3396418baa6f79092a WHIRLPOOL 453941b7696fa130e70858a49356e8f7b73e38d289455f39be2d235fcd113375a1fdcef08062645cee47dd9b93b91e09f00f9b50cd45e668e21280348875c2e1
DIST thunderbird-17.0.6esr-fr.xpi 420826 SHA256 c140e599ba4f9d93bf9b69a54357dba336537f54f9f7458c1e030bdf3c78d18f SHA512 68719860cad36c8602e2042b30956745b6183b2e65d075949d6f298b6e61b84f4f3c5ea70734bdb91ba628805bef83002d3ad61453d77af814ac586b86014c15 WHIRLPOOL 3afb2f647c31395d9959e7efb1470d6ed8960b36c0a69f2cf11444edf0043b2b69703fe3e77b22a03dbeb5639f300fe0179e409caa1aa6954df9c199269c9cac
DIST thunderbird-17.0.6esr-fy-NL.xpi 415713 SHA256 8c562f6b66ed4d9d695cad38516234ea8cd7d465ada90a5e5fdccc58cf6edcab SHA512 d3976aa3b3ea9eca0bd71cd40ec8de0c3b1d748cae52ca1d7f711ca351a145189d152118472e8b42af22d4a8eade6048a0afe412a7cee1295a4fdab1a41e2b7b WHIRLPOOL 85787e00188ca290e095ad60361d4493a7ba4397a23f731f38ed15c67414cda6625c457c8b167f2219b03ec56e8c0c8416370ea31906541ffe5fb5356ec5d830
DIST thunderbird-17.0.6esr-ga-IE.xpi 425395 SHA256 ff11b04d4fe79dc0ff4068ce65eb405ee6a3765e38b90b0b7b1715d5e9efba81 SHA512 8bc1299c10f9eee3cff5fcfc49ded5ceab2eec6ded68446282404152e4a9d003f2d004d78374f5d4d52eb8dca6ce8c9e8c46a209ee2dc51ff42f0b3f6755640f WHIRLPOOL 399d938f168936af27c790e700c14c24627103fc9514f6a86be24414ddf89fa5a7d65f9db4c7ad0961a14ca1add2761247b16b97a7e3df57304c42f2641db8ef
DIST thunderbird-17.0.6esr-gd.xpi 428940 SHA256 61e544331e78964c8e525ac2c1ac96f1fcb7f1af6daa94fc49c3550537f876a0 SHA512 6c80bdd7f8de681f2fbb4ae77f275ee33a10cc0cfd835f32652da95454161790200f3dff76099538262bb3f3ccf34f29d99fbffe09188e18f832547eef6c9758 WHIRLPOOL df665d708857b4ad1b0b1fdd75410dc0b310518fd2a481638547e3e2fc7be598dcdc9276d6fb3b9582bd14eee00cfbaa6ad449ab9659f93ea26d154a68ad307b
DIST thunderbird-17.0.6esr-gl.xpi 410370 SHA256 2839ae526fe12a88555df178ec4bd2b37fa9af3296c3bd58762a4227cee69329 SHA512 c8452917e108ac9f76a345d26ef7652db8672cfcd9fa728ef8d91dc5c041d6716601c0f37e056854a062498d39a766a057e678b2af551ca4e722b082ce2347b2 WHIRLPOOL 48e5d7bde45ad101c4cf64d25ccf46e8c9d5b93d32b4bad1af47d3d75b0229e6895872c629b4cfc389988f53024a95051bd39c80b97b5b5bec75cd71183ec860
DIST thunderbird-17.0.6esr-he.xpi 439504 SHA256 d0fa6eeacd87f4dc4951ba5b024a1cfe68f89dc5f82bd68216c75afa34580cff SHA512 3ae443aca082f147b448359eed58647e61d36cd43a0b57240dc9fb098372e4368d72941de9eb694c7d0047338985479a0ca885b409f2d4179f2302e7b1e860f4 WHIRLPOOL a974a4e852a690fed2ad293f2657d36232fe5c5598989d652a19afcc8489fe0ba2a3539939ffb30e4abb5115b4bbe21328214185b9d4570078f6b1fb45b188ff
DIST thunderbird-17.0.6esr-hu.xpi 433187 SHA256 dffe35138492e2b2a10192d8e57316c4a06fdd456e8f1f8c502e7298b831f88c SHA512 80ca414b22dcdac4a8a08bdf2ac9cab6dc906a788224bc31fe3c80b66a536bd6c2d5a982e6b2c4e7cebb9b1dd172d45c53c05a802ee85c52b37288a6e924effd WHIRLPOOL c79afaf05f139d0ac730895050efb52848c279819b30c39e5a56c4dc200297e4a2aba9e430d4e898201e3362ddf2b0a885d6cbac681a9926a9fe4534dcc153c9
DIST thunderbird-17.0.6esr-id.xpi 439575 SHA256 8950f4c44591362299b7fd6eaa4182f8fdb5c994d5252ac59fcab332ee543beb SHA512 dabadc2f4a1576e4fa5393db6b8df460d6cf6a9100cb49e0f9433b1945a415ffb160b8dff8617bc41b7b1a366626e45c27ca80d9ef6af3717ed65c608594ca8c WHIRLPOOL 2bf0944c2e4dcb455f86adddbb33e9d70f643f67f3a140c2491a6f82776f98b8018a5fcb3b9c6969a44a559942009810369e7e24418d925b76ff66304456f298
DIST thunderbird-17.0.6esr-is.xpi 414069 SHA256 3baa04190b767a4823fda7f17ca9d11469936268b985ebb615369b5971bd252f SHA512 f5e4501b348e9980d3411b45703cf8be7ff8c319608951c46334d5412c8bb807460f9528377877f2f592c1efda2574cab1e336ac9e121eb97652c848bae8e070 WHIRLPOOL 9f8c806a4421c2a1f6f2348e2d456ebe84ad9f88fbe5934541a6212bb298dd4173fccba00f6b48dd6dc1ed181cfa5f0b19b4df1adf868a77d3815c1a4297b473
DIST thunderbird-17.0.6esr-it.xpi 348621 SHA256 4d50e3b0e7d557fbf600e50a9776ce7bcbe6f9f7ffc2d9e9d617b69ffcdb96de SHA512 230ed9f01e45f048a8d17c060ff1f134d85cfa905ec84e81d915aa610a4e95dfcd3db6651d4641d672e759fa7108ee259db18c8fd5dfd10cf4e5d21392a1172c WHIRLPOOL ad6c5fa8f7abd59f822126f705d07533f8e2d8ea5312a8c26e9778bd8083e44e536cb29c29b1e38a96d9b4b08ae8ab1bfb22a0548645d191f621340d7d721db7
DIST thunderbird-17.0.6esr-ja.xpi 463488 SHA256 3fb3a5b08020d1af7723f30b69bbc787f2b443231ee567aaf1d90bef040be11c SHA512 2fd5aa6c27324972a2a3ecf5a236e991eeca8814ea986651accc2ca6f879861cdb6eef072f71b5f3b9b0ec0832fb504b161d23e91ddd38122f2f5b9c84e58e55 WHIRLPOOL 9a9f8791ba5fc9f20686e2e2823e0100da7410b5fa9e24b81721181ddd4e204520d9df61518feae9804b4bbae0d02f7c7710023a6b01a49c7f325715c80c8f14
DIST thunderbird-17.0.6esr-ko.xpi 412964 SHA256 bfc853f8b7731838e6a61709ffb1ffdbf883119161b38174ceb7a7874469e21c SHA512 77da488f379e8bcfec8bc6c8822dbd9b81e9c6c3de8663d2acc5c9fa0d0660454091044e327922d153a45a192b72f341e3fba156750b6e3a4763679e26d0d003 WHIRLPOOL 3d4a6aefeb44e75d80437e5b8370e0f3cb3602188eace0c8ad7531e9036ae82de422e72c03902bbc44ccf3e6e5a367ee6ed078a38b38028c765045bd2dcf0952
DIST thunderbird-17.0.6esr-lt.xpi 519803 SHA256 cd7b6c6de154036e04ce6bf3370728fd29f26edee22456d7b7eb277c9025dee2 SHA512 6f630d741f6bff7ea71d3ac8b065c87a1626a6edfc2882eab8fbbe15bb96cdb1b18210815aa075513565f95f724344e156c887b2d21c696b321d007b8b58c289 WHIRLPOOL f713138c83e232e41302d918e3a7e30f39c6308c2b0861d0964c4314aa409f64f3298de1b48ec26e119b201102d6e85e90690d1127480567af1149d2cfcb20dd
DIST thunderbird-17.0.6esr-nb-NO.xpi 408520 SHA256 026ed27e8a71b9cd2fd334d8ada33d9519e3abdb57f3ee4c197ed41dad6940c5 SHA512 54b7b2978fc0af27875757590015b6cd429e01239974aae19eb0e87e7019959d767cbd1355a1888e88444c7692feefd402a6dcb9f893aeb7d1cf3397400dd684 WHIRLPOOL cd80ddc6a38d033161f999c480f3ec464cb840eeb76008529d00f1a77cf4887c94b46d60e4db53bd95467646f784c96c4f823d3f5b084bfe6d1826c796606f2d
DIST thunderbird-17.0.6esr-nl.xpi 408527 SHA256 e96e603afbe588e53488344ba58d0c3c9cafef70c66728ab5dbf5d6dae247421 SHA512 84cce2f8b291bd150e4bcb0cde1271e294934096d16aff57e8d9a73e58b07a449ab806d61ee6ed5ee90f2e79bd2dd5032510e4d1168eef7b0ac51b47e7329f4f WHIRLPOOL eb6d7b3842c0d5bfa4b4eac6813211d4b0bc6de7ceea029fd13cb312bd602651ea2a89bdfb64ca2146ef075df67a47de0a22814d4db3c884e21250132105c3d1
DIST thunderbird-17.0.6esr-nn-NO.xpi 431472 SHA256 dbc77a175cb9ef75b6c6dd7a10ca6a1bfaa26e5820e666972f5c6b2203676039 SHA512 c4cac1ab2d2771c12746b4a81ac50d59f310699160d9854600192c4afbfd9083f00bbc29f207fe34166ccc72b7ed863487563fbd8368dc0b75ad2fda5ce63072 WHIRLPOOL 39ee856f193a456b85b9f7b9ff5a0d2841fe92b7a276961c8e5261f5ea2b705ac7c035b2b018a9223feeca50c55d92d178ff579d0c6ec87021dae3094f7cabb5
DIST thunderbird-17.0.6esr-pa-IN.xpi 492444 SHA256 b56035f2c92882a852d1611b3d3f330b1a7a53d2b44be58e274257cb720dcee1 SHA512 d528bbedf08a3658820b03ab321931d2e8b557751a8fac35c5554c7f06d6875053b23df73e1535b92c62c0731de39f37296687c9715f4eaea67859b621b2fca5 WHIRLPOOL cf8607fb98ad0f0a13a6f7a41d480da500725ea255ffe70cf979f475ccb92450e51efb5031487ef7614abf62a1bd7a772ba381720a0980698b107222f38169d2
DIST thunderbird-17.0.6esr-pl.xpi 402114 SHA256 bb74a6496498925cd37b1bcbdb68bd3ae7c6edc6e65fbe813682ad8c0018cf5d SHA512 f47decae165c0aad0cf3f8c21be5a96d8c142b084d6ffad32beb9e6b84b712ab301945dde9b0885ec627c219080d9ce697da9a989f0cb5a1b8effb42919e0077 WHIRLPOOL 327e1b31d7bece41a70c523f40a4b2f7eb360fb7d20a838da5bc0b066f10ab2be46c850353c13fa97e1744c2d9f791659c427dd6a074db38c58f9ba90eb4451d
DIST thunderbird-17.0.6esr-pt-BR.xpi 415778 SHA256 d83dd1f78bfe2f052b154e437cc73f8398657ebeeca3889728f04ed13c9c6bf6 SHA512 799c406dd8da52afb9e8a92a582c36f3f201fbe803da5b99dfe1868f521bd79eae7b6fddd032eeb1108b8238eb4e182c40bfd770bb21ba522e6fa4afeecd6a1c WHIRLPOOL cc1066b04c39a7bc09b82d12f6c4b6e15a56f94aab31b4729bea39ca25d72a1c377db71201b78bd6d473e4d2d70afe9a053c989c7be137b2783d644b25c838d2
DIST thunderbird-17.0.6esr-pt-PT.xpi 445754 SHA256 729df52370439dfb18760e6a02ef7b4a24f6061135aa09a95fa7848d6f9f1b49 SHA512 f343b25b693e6bd15373b77dcefed908bc61c35460c019ec189c10f93731e2bc79040e11700ca35b748b9b1aa7705e0fe65a3ef2312bc7ee27516be95823bc1a WHIRLPOOL 6a922e199c746ec3643bd1576b24b46b371df5f78dc7be68aa0b8a14e403fb79461ba6781116c39104006b60f46cad2c70dc4d8fcf195dc2462f5f9ac98f633b
DIST thunderbird-17.0.6esr-rm.xpi 415531 SHA256 2cb0f3b87a62306de65d36fac4fd42f14841adf8737a6b2d801065fca549d087 SHA512 243dd39be450714dc32f0fb7bbdc57653215d41d55ab56f9dc16557f89fdabb37e413fc979dba162285f271f78e49b39a3f8d43216b48d2df856721b9c58bc3b WHIRLPOOL 620f429c94cc068a300f3f33fb8fdb9496149639210df3721a4ec9bb1b27e4fc79daedb04173b0ab59dc81b92f4291907eb5f859fbab9081fa77119a78b65284
DIST thunderbird-17.0.6esr-ro.xpi 480494 SHA256 180835cafe1ae745a34c6bd3a8c7ee1b7557e70525a11135de1eea6c59722a43 SHA512 06c2f1bb94049f01801379ef1b9d233b803e95c450285693b0e77a84737bae4f61c2806e85042a5226a8b40084a87a097ce8a22387bc250edbb1347a89c1f639 WHIRLPOOL 612e48d3441bd26fcefc239449ef2d4dbe58e8699c339d5996dc91ae83d247ab0d6cff68a9043c398e9ce356b0e657cef27aad2cac892934f9119fb2b5d9ad1d
DIST thunderbird-17.0.6esr-ru.xpi 415708 SHA256 7735bc42e44569710c3de2e9481820ffca910ea19dd22c247416de6c0de3fd80 SHA512 6e77775c39a7b42d9c3753b7fa78a3896436e41c539cd1403da987ab71e3d2e31c309e2159798d90308e1f8bf7b07ea1abc77049664e77b67d9ea537d8c25ef6 WHIRLPOOL 91eac634dd64b413096f355ff07eb060d710ba4e3ffc3eefcd46fbaa5cffc0a1eb4f3239a41f1787f09b7643bcfb3df1e97809723872ef99b55465c2d2bae110
DIST thunderbird-17.0.6esr-si.xpi 494164 SHA256 caa7a9b73b6a7a618ab70fdb660eee14c89721ff195f5f07c54acdb7ffe6fd4a SHA512 0357598f81a90e58865b17f9035355819d7786f388083a558e53fa0c5348fc1537291b4d5b662201797ed1cff1b4d41e41505bc304e3f44c7cb87b030b65d2b9 WHIRLPOOL 192ab1b5e0bfe3ef5eac5e1cc42cf63ad520e2a0c9b71f6cb7aab04d725a8337d89e99b58a1f961a82e2cbbc232d255c9f81eb52a371673b286bb6252ba8f7e0
DIST thunderbird-17.0.6esr-sk.xpi 429757 SHA256 f755108b99a804494854e88ee080039237bb9eac987dbf848fc84b8b4869eb3c SHA512 9a50500d59992c6b8854ed41860c3886684516385be00644a820be1a42bf09f36d1082341f595ebb421070f2df09bf85488ce282179b093f38bfeb1a2ffe84dd WHIRLPOOL 5b368ca60303c3b989c03dc2eb561be5a8921104a8bb6b66ca8d2a33c08644efdc8dd43aebe6bb504ae181a725eec1945810f9cd292709ff91b99bc5944573bd
DIST thunderbird-17.0.6esr-sl.xpi 442096 SHA256 ca0ac38dfb6b391ca450f0978f2c88a61c8d98f1b6d5aac57c45ca43b59b8d4b SHA512 4319d729481687234333ffad6c9c26d0f7f5e2c392e8cc3eab83596104109a7fc1bb5c072c9c1f3390eec97503bcdd3f8f4f23b2e8ceb58c1ddb35a3217cfd4a WHIRLPOOL a138335a0294903003a7ee095e9d63a5d789a23ae03ea15395dd254950e51c76405f3784a66018f59529c8ac31252dbc2cdfe6903e69a57f48a256906903af1a
DIST thunderbird-17.0.6esr-sq.xpi 418781 SHA256 7f6c59a15722e2c1e297579bd528c4647424c0bfbc12da1ce95a89bc4cd4fe95 SHA512 892c5fcba6fec7fbb31efc05b1fc27c0c2c653b3d51d958ee3dc92ccd79e7313272c2e0fe29666844f2e5c2e50a08f153f1ad76b60acb8d4bc0dbc47b8a4cd77 WHIRLPOOL 12dd30e90d78c1e064cbee07367d99aa85607063865926e4d57f6be04c1df3fb355b9db6a3a1ce56ac5b9f7ee6c41aba165c3b101e2ed45dff560f0706c29ed7
DIST thunderbird-17.0.6esr-sr.xpi 502502 SHA256 72649975597b5cfa4127334b104688ce1feeb7e62e82282debafdf8914506794 SHA512 9524c55f4a2b62593140280458595c5a7cfd11d0ddbd60ccea320a88437f05f7b9e263e705fd04461756603cfda66db8c7aba55061a7027276f092c41127d5f5 WHIRLPOOL 1526a3a8deb651ea2203400b6df4bf5f903f07f8b4aafc524127618c0a32a47d28bc462eaf2b0b086b0b6b42f34796036984d9938e4972d0b42c426f0718e07b
DIST thunderbird-17.0.6esr-sv-SE.xpi 413218 SHA256 59750592767c531c44f09e2812de432f7f5bb27bcd25433a05172f427feac392 SHA512 163d4266a814e9b15fc5dbb6e68b12d83ec82368a84520ed1c94d82e6b415ba1f7d4ba5bde477260c372550545bac4736dcd0334ea5c4598d02c177df18adc47 WHIRLPOOL 280c319a5857d26b14940bfa9f5cd32ceb0540a186a732ae9f878a44d854b91031b944ebdad61d85b006adef4c3471f81544eee98f0403e1517ded3bb3a0bf90
DIST thunderbird-17.0.6esr-ta-LK.xpi 517913 SHA256 a02df902d82d648599f842a116ac84257e8186b60d8d127075fb267193b7efa7 SHA512 febcd6f68fd538bac0dec8e734cf5df117e05806bbb70e92dc44c4b33bc7d8a7ccdcf26b93e16aee0470ac866a8164e9d1c326aa267a7561e9427fbc99216a32 WHIRLPOOL ad915e37e37c5944ed458824b645c8b6e65a368a4d85652d6f2d5e13df7427b33512d855f01e37feb9717d8570f91dbaebeed21790efd272ee5209338986fa0c
DIST thunderbird-17.0.6esr-tr.xpi 444945 SHA256 3397f9de18a0665f01951daca8cd2d4f82ed64d0d52279ddcc9727a7357e2c51 SHA512 7f506b732cc3ba1cd8ee96bd7aa8e36130ef8d3318ef530552d0f3ae73c4e6e3e5550bb0119f4adcdc74b4a0af746a74dcc5e39f64e139c78603736c6a371ba3 WHIRLPOOL 569d4a4fce1c47e12a3e6450839ec398099ee0a46e8e3b72d59e04ed21bf545c97935b9bddbd2ed12b718aea2e4df4fd115c4b637f5960293e3aab0fce8bc08a
DIST thunderbird-17.0.6esr-uk.xpi 471143 SHA256 b77465dee6e83506077a7738362b143ce6fb71e46a774074ace3054dd1dbcbf1 SHA512 3b7a8d2107e35f4dd75b179b137f57de62c8af056a5df6375ae590e42143ccc7895e90c47de18f39e52c858c74cc63ec341507a7f4c16bd7008621592d74db95 WHIRLPOOL d7c3ff548460eae0fd3c1fd56f30783607e55e6f87755b9167808d3a67f0aae82aa8bf4f57ec6b0d3e0cfc0213b6a04a6eae8013ace0b240d91d8c2a2271208a
DIST thunderbird-17.0.6esr-vi.xpi 478454 SHA256 1b45a26d5fe25968afa67820a3e917124bccc088a57a95f8667f01d05af853fc SHA512 e4d58c9de87015c58e6cf24cbd91fd93db3debeb09e54e0f75403729ad5850741c65b7b26ddc250d3ee3d7c502b46ae60ce88dbb2b77e664a32ea858e64fb372 WHIRLPOOL 23225c568300cb13f37f03da06990c5234470d28c398510e3da83a98aa9fd0e476155f65ce09292e121e4cc22a22bb0bc36f2bf4dd6059be92fc642f86f4cb9b
DIST thunderbird-17.0.6esr-zh-CN.xpi 436083 SHA256 ab7bb32363d8681d961f5affa41070965b1d63e700506b744b529adabf329c87 SHA512 3025a64c2150275abf6557c0bea4743860333d92bfd3370b1ef4e9231d3a9bc982bb73c111b64346ae79831614fbac5e9f8e01e47625d3d397f36795851c2a71 WHIRLPOOL 39d0608a0c65bdc066b9126fc1b7b724675cce4f68205160093c3a2f89769fc2b9aacebb7850daaba71ca953badb0feba998dea47f29050167ed7d1b8f26a872
DIST thunderbird-17.0.6esr-zh-TW.xpi 437591 SHA256 4c11cdaf70f57ec3e09fdd68476bcb73aa0a7eb2c3519e8c4bb14397cba94011 SHA512 03211b5252b24b9552a7d45d312d54217759c6e7092799bb2cb8f40b6bbadeff8d804a8d3c371b8ec5b0d6ec537bff5b5123fd154b0f31cb5af76ef87aa82dac WHIRLPOOL a615fd6bffc22cb8784bc86b670b195768acc4ed9d6e45f42fec1714798e88eee5bfb6347f1f5d0355fa5d156a848c54574dc9961b28933acc0e67b7cef501bc
DIST thunderbird-17.0.7esr-ar.xpi 445976 SHA256 44fe3d4de0116dc9a429ab11be394ee588e1c0f5317c5ffc8e0e24e587fb99f8 SHA512 94a2a58393dd8305a029683f73a695fafbdfa20ea4435a80dd644de2462bdfc76194552b9a68397209f939799340b992c2e8303c34b76d339b03d00d2f3e1cc1 WHIRLPOOL 704d2ed3ca102ec19d0f89edb3bc9aaf925bfb067ca5695d58e21ff5b7361bfe0a26fc946a6f7830dcb12e45366d29c35a545d32568e1b7845a20970de5bb821
DIST thunderbird-17.0.7esr-ast.xpi 388038 SHA256 dd038c92429108a128e226b17c63a23de220a771cce14eeb33804f7cb60d677f SHA512 7714d57ac08b54fd1d2630ea9a4e59ebc74a428d57cd84ec35cc0755ebd03a90fe131ad032dbf45cf565ee14291c73e10a058c7ad5f98025b17dd0e7793770f6 WHIRLPOOL 99f0615bf7b788b320baf48dfd5170adb58f029385fe8365df21593f07c4350a3b9eff8572499a366e7b30407b812a6d0a26ce858552468c5aa80c715fbe638a
DIST thunderbird-17.0.7esr-be.xpi 426695 SHA256 b3f4dc9d47ceadba8c924cd01fc9d99589c9349b09aa5980968a7747a6b1b163 SHA512 f8e4caa5028aaf00a9fd07ffdfccb8fad0aafb7525aa0a0166c333005ad76916550422bb346765e90896d5c39e970cefea19c53ff96e1ee89ee3e400f54e6307 WHIRLPOOL 1f28ed82de37ce6e54cdcb4b71c85dc541eb6e855d1ed0e23b0ef4944d71430eb5c307cc0fa08a90ceba0d1951f391d2c5eb5d26c9f9d85f21fbbfc61c4253cd
DIST thunderbird-17.0.7esr-bg.xpi 467638 SHA256 34efa1f65bcf5c2ca44901834b7845d55503aa1d7aec8a24a7411624067f9367 SHA512 1c5982ffaacd0f0795e23e2a7c759496d7e0be19b45651307068a988626ac3751cfc5833d8a2fccda8a02666dc9fb6bbfa6c6e16bcbb48dee0086ada0aa210d2 WHIRLPOOL e5930147b006042bde9857250715b507884b6e19ea60ed362d37da41bb4dc410d2b6251ff01a70c549ac2fe76f963d1cf6d867d0c5d5fbcd9634040348d3defa
DIST thunderbird-17.0.7esr-bn-BD.xpi 520602 SHA256 b6207538a1f41b2ea5b47cf6687c9258b62ffb3af694ad52a50a20b02cc5a733 SHA512 8ffd6b0d5b530f2e7428db613c5601b4ca13d3ba4f40f52a4bcb0958c7dec2884729d0f0a19f602f6e422639eecdadb7f2d09104091528447d098bdd05edc06a WHIRLPOOL b92423b4693a413a12f4e2b7d267c4f1549e222a59c6cfbdbefe188c8332779a4af035ed1e1ff3d39b148c054c3e84c3786fbd6f98aa8b45e0dadfbb1ed757a2
DIST thunderbird-17.0.7esr-br.xpi 417071 SHA256 398adbed46ebd2cf1ac24224d0511236b27de23ff5593d4a7516ade97d80d17f SHA512 c1643d6d7c0c1892b9cd1895151b3d394140e61ae3c6d44370bc7f1d032e896eea1eb0245118f3de0bfe1117f53d9bc8294fd3303e0d415f23833784b5b51f3b WHIRLPOOL 1653d85ac74f866c9d6d7af6445ad36dd7eb5d10a4b4a0397d66e2e0462027d029baed7d68a9216818fc854721b4cdd398edb9c1e0cbfb4520359303dfe1e044
DIST thunderbird-17.0.7esr-ca.xpi 418407 SHA256 62d22918155f64c981e1a2020ebc084b48fbc274b72e05c0e45844d73d059706 SHA512 2ebcc72c8208f45c80bcadd7d58c9a886802bb8b5993b80fd8bca36f3569329efae8aa6d29ba3899dc9390a7c6a09bb64ec067cc696eb97b920ae3b72e6a8fd6 WHIRLPOOL 17af44ffb27fdc5557c2897b7e034c8a4296194251755f695b89c11b2718ba950b20048672a41285a9fbab1fa9cec53df73594c02cf826d328b3ea53493b707e
DIST thunderbird-17.0.7esr-cs.xpi 420627 SHA256 f3e5fb42eb4e1e17a99529ce30bac387570b5a5434a23488e3be0fb70db0bd57 SHA512 4ba3bfaa4a0ca25f95b99becaff6894481ce3ba98876e7d27b7e1b3282921b410360d13c4f6ab28ce57fc68eacbfa39118c6dac15313b71b22a516cece864bce WHIRLPOOL 2c082a448605b61bdb2fbdee67966e58a1d79314124b50398b91aa6c5bd5a4d507a53ffe55f62f7ab65a1772c6683eb4fc54b6a92ed6581599795e1cdba8c241
DIST thunderbird-17.0.7esr-da.xpi 398980 SHA256 d0a7943308f308d06899daa28317ca989fdaf75919bed5ee8361132e38d0020d SHA512 3249df05abef39e6ed119358fd9fa7f08be2cd817ab673d179677ded9129f01f9473c191c289207cb154803cd0b1d0d2631842bcb2811e765a6a53c459c6226c WHIRLPOOL a90ea915062db4da3f7d7d5d5a6dd9019a6572269d6639ef29c53eecf3c43dce6aa7cb7615ad763733909c0dbbf5c1adfece5d8fbd616e90996c9d476a3e3a16
DIST thunderbird-17.0.7esr-de.xpi 393632 SHA256 b67a0d7400b260f91dda55975f0a5aa8638acd095666bb7e84df1efad266b914 SHA512 a554d27e2c71b44725e157ccd0bb5660921375cdbb65ffcb09946af24f9eb44dc5752a43638c675e51d1d2a8a3c504f618d0b14fa9bfacf90b04157bdb63b8c1 WHIRLPOOL b7b108b4ea6c2830d4ddb4f4b5ca8af7872f22070a063caad6e8918ca1ef1c9eeb9653e4c8b071654e3ca01ef6cb4d8f45b7fbd1f1a6a859c33f4a1a15f02d4a
DIST thunderbird-17.0.7esr-el.xpi 447926 SHA256 0e1ef3069982eaf53bd902838f2f01ee9fe5ed701127985c4e353f52431b4ea2 SHA512 f9f458c89bfa46ee9922867edd49bb74d941608516af067d566c590ed2712a735581be4464798e7700b4fcceece6eb885de2b7e6be9fac3a549586cf8f609def WHIRLPOOL cd189b6cbe3df9bd2c74fd03e55182e498691052655dae64dce1910b401a26ece6ef4f5d64c797de16f00d84647acd2ec77c1b36b8438708079a71b4b202a6df
DIST thunderbird-17.0.7esr-en-GB.xpi 390694 SHA256 ff44cb57de261674ab2fb1620914c926555e5561387451353230eb94007290a2 SHA512 9963f1025084c4c2bbe83380a803039bea29e68864e8da9b6374638110044a9fd0fde480420532a8eddcb7024b7dc6c35ca1988d58c8898a397b5795654b1900 WHIRLPOOL 3f3848d2234f64aaabaf03634badeb810075506b47b4e46f8d6fd19df4f64a97d55dbeb7f814a288b8192bfdc4d0b09bed29eef805ecb647a7f005b24440f643
DIST thunderbird-17.0.7esr-es-AR.xpi 415499 SHA256 e507feb192e0f1e89df2579417ea2e850bc073887bf89ddefb984200d589ea83 SHA512 1d0ad93e9f73abc1e9c15408df3fb857b30d99d78c3303dde2edbd0f46ea5746e87c8979075ae72ee6941ee131f89c64d82336cb354dfdc61b704918aba18fbc WHIRLPOOL 704bcfd29bb072dbc1ae77d016d46f077bb12d4a25cd71f6704e1ecc145126f281236bf4eb67eed9aa4315b09561aac2551d01da653d8cba88c9f08ef98f50b4
DIST thunderbird-17.0.7esr-es-ES.xpi 356861 SHA256 9422bc6a60e130921e68ee9a438aa9d4e8ebf55c8c96e6859773ace71d535e0b SHA512 7787653ad9d9355bbb6977a0a9c7aab4cd91960269d600b02d0cb8016a7a279155cb0c2ec0047e37c7d05a96d5f33e9140a598ae93b92b380adf915d8998732d WHIRLPOOL 64a9544c8b9267ed816131d4ca0933a52d96bd44d61b18bb2215fb412c490f3681052317abcaca8eb50612b371fdf7f0df26f291fa2bd13b0f76d4aa14c95547
DIST thunderbird-17.0.7esr-et.xpi 411892 SHA256 8cbde9ab3162eb4ecb3efffaa09c9fccafc01dc8ccaf49c7d827e8f9b66ea291 SHA512 234443f877ef3df9db41252182e3a9deb684b64e79a39d67323167eead5d70c866ae1e97c626808052206a9c0744fee6e5e9428b3594e9b737976853dc7f89ee WHIRLPOOL daa837398456b2d27ba8d32468e07a96b058df6db480f27f5a57f16d80d1db8984e3553892f1f034e6590fc0205e6efe41904646f7420b7cf412ba36b6b56639
DIST thunderbird-17.0.7esr-eu.xpi 407189 SHA256 2a583bb8ebf691f0b8c8dde4be24c1b788d76a553069ff81f03072ebb0b46a4e SHA512 2c1a16d5efc92fe2f4ec71cd2358b55a27fe7d61c09a316dbe6a07f42cb0dd1c0bbc574d5001fe5f5537b4943c1a6b893d8c74ce4c15626f484594e3ea77b102 WHIRLPOOL 6b8377e69bed3f4bbc7927ad7af8f7184499140de0c7d1a245f5658c734d52b0148870abf876938fab45e528303f7df67752ff9f0645b3df3dbeca5061595883
DIST thunderbird-17.0.7esr-fi.xpi 413620 SHA256 7211be29a9a4201bacb6c49746115d71399d077dffc53f31ada7222b2b7f666b SHA512 7eadea35c839dc939376b540ca887135460533034a71edc2374135475901b9e450de860299072e9446110f5f3b34390bfbecb64820936f28372783a3cb908804 WHIRLPOOL 7fa252a0c9cb16e94446d09f8a3e3414a5bfbd37881f08775ec3406ebb0cd0648152614fd73ed943602696eecbcc43655d06190df052cf64b163983844380a22
DIST thunderbird-17.0.7esr-fr.xpi 420826 SHA256 19118767c853d85a2bc8433b685f3c177ab4e44409b200fc6654e00f54351d04 SHA512 8270aec2e6fd323f7c9d60ec4a8ba58818e24fe4ec0a1281e40f1390cdfcdb87d8a0e9529f3967b27fe68ee8a2e70e20db2008269fcdb134fb1afef3410a03a0 WHIRLPOOL 16a29b46252be6662d8e95d0139ad94ab1542327ec895509f6d0c7dea50420653549ebc978e6255e8f57da7fd76708e6ab6c511339c716987fcf043e1ef78d82
DIST thunderbird-17.0.7esr-fy-NL.xpi 415712 SHA256 fc54a98367f053ccdc3d052cb2d4280da8761c1a98e7af2768c73b9a5c3e5d41 SHA512 8a09769771c9947a37f2d9e5e0a0dd9e121032c1e4250e7618ab6660d8b5ab4132440960a6bf4ae95af4853c0083a9c10da58602cfc1bd13d52ec30a2a878f45 WHIRLPOOL b915c126a42e64bf0decca732a4823e2ac0a2d79413fc7cbdfe31410cea992a242358b9bcaa3ae42fc0b32d9a6d00fb7e058d64953dc9dd8110b50d67107c7f7
DIST thunderbird-17.0.7esr-ga-IE.xpi 425395 SHA256 885564443522cc29dfcb593332b5dc0908783f82df52ef247262fcb662e63896 SHA512 5fea7eeb2a165d45b3b5625bbcea58f88f5d5782f0aec16024bea79a5447c29504713b18f6fc6e6eff065f4dec695357f6153eb50ad8cdf24bf4c3a61b231bc4 WHIRLPOOL 983e2edfb32416efa50f7d248a373e8eb60af3553a1b3aa2f0f6e365621c51ec68640d6b72e839b751a4b6e061db1f17c9a912524a6cf6e7945708d6fa67bf17
DIST thunderbird-17.0.7esr-gd.xpi 428939 SHA256 33cdc4a93d89ae0e3b2b4b5ac6782b052073d2d3cd478e28592f6de1d351dd91 SHA512 574519f069562257cd7fcb0ed1b04881fb39c10560b637b5e496cd77c87800c986ec91106671f0e163d498cd233f293a5e1ed6cbdc0855e6a4d35edc725f8046 WHIRLPOOL 03c6cf046a84b23e360a90c4d55cb7c01d10d2c5f1446163cca6f14616aea025d8f727debbf0f7a1aade553b216d7876dfa6292bddf1ef4763bca346660bdcbd
DIST thunderbird-17.0.7esr-gl.xpi 410370 SHA256 7a5b48676696deebc3e8797b13f6b907b4f9cac7b2217cb70e09a1a9a6b0eeb8 SHA512 b73c122f9385a38ba52cc34bc60b602210b0c86e3722a44036ce49ce61ab57c8411382cb7b48f18ad5608603981a9eaa3ba4c125b8ed709d95e63415c4caa7a8 WHIRLPOOL 466758f11e61395b10afaac14533ab5f7f1b50ed33def0dbaee74fcf37dd999e7d4dfe6bad2265871bea493ce3c401436ecf75c26a93ecb41362c96b1a8ff3c8
DIST thunderbird-17.0.7esr-he.xpi 439504 SHA256 78139a85717ea42393e8e2f6c3da5192442abdc9d91e7ca052e48cc759859784 SHA512 1fec8d921357cebd20d13e8753cb84d80f07e78a8218adca0919329b65b9a97d70618ddb35366aab2519425296ac27ecb5608feaf98aa96c996b7253a8758ffa WHIRLPOOL 39248e21ec45f841177153dcd84e5a9a18d6082358ceb7dbebadeb0025f5262a8a2b040db4b1c244e087bffdedeb8c8177b7ea70e9c7e6189dbbf8650e996dbd
DIST thunderbird-17.0.7esr-hu.xpi 433187 SHA256 b0df73e923c31beb7846589898efe76c87e091498b66b62a0edf7c642174884c SHA512 ed151bc64e7a5bba3822f6742c7c86fe5aa0ff407bd507f6ba87f4e4343c5b126633461c85b14dfafe23ed28b67734340d3469e4b5796f58a104508682b8c36a WHIRLPOOL 6a095d8eba3b090e5121b86ba1bde397b4bfd136c21749fe3834dca752eec55d38eec392a33f313d49aa84beb9f0e3591e46dbe65efd132f6222d2abfd794b4d
DIST thunderbird-17.0.7esr-id.xpi 439574 SHA256 ae0ba39e445a0a03386b6ae25ebb079b7e03b49034df2d4f40da75fe566fd005 SHA512 b590c5ce35a5bc4d9e92229dd6bca1285152f6528ae2510765166087d9e0fccc153042d02e678311b4099c05d6f39c6cf6a79c649533004e56f9b64662e5b74c WHIRLPOOL 2c4c72febc99fc7b5fd7d0f0dfc642f0569d37521a89ce6e66048c48dea46ce78d6d3d525433a1010949708df509726debcb071aa0de35fc4a9f1ce3e0e8cfcb
DIST thunderbird-17.0.7esr-is.xpi 414068 SHA256 154aff2b1ab9d8267e3b7ef7a0339fc239dc7bb0975c0429033be8beeb4e8fc8 SHA512 08f0195eac0dc5ecab45e59a5ad01f728c7172898e2af702c20c2e390c6f23fc9ee4dbc0f03379bbcd1fc56746e85f6543698abf8d818e0d4802e21318566da6 WHIRLPOOL 37f62af5b34eda2d01d6d9b44670418f0d7f32c2d81c40aed8d2a129ca416eba779c3ea0a9b55d2eb7466108ee5a5406dbf9976d5e5b54f21bad109a8a325e7a
DIST thunderbird-17.0.7esr-it.xpi 348621 SHA256 af798f3dd93d5d843a2dcbcd77866f970a78be4b172e9abc9e4af9365c835ad3 SHA512 ffbbee4f1bb289f648039fd673cb08aee39e88cf52848c18cace013a65be0644674781f5b1d47c40545b88fec6acd279bf87487fe5cc26ab07a0cf7cc24567cd WHIRLPOOL 095e90c4776ce9899a15c54bf2db6ddbc6aa15f32519ace6927705e478fc11e243bcda091a7f2583ff4ee54ed9537d2afe52e0919c3249722b872829b4c4c770
DIST thunderbird-17.0.7esr-ja.xpi 463488 SHA256 fa155cb29ea3a25e5d0efb42514a970c92cb2512f6d2836737e1b78c4fe69d4b SHA512 1eb2817205ed0e94861f4319fa911002d14f4f96a75f4728b6bf1767b6faea6ec5d23e1f7a0ef284218abb4897dd731cf37dfaffcd3d674630a0a87ffb5df2df WHIRLPOOL c346a195b6b0d9b84b79463d847b4d047be3dc5cba3c64e42cf2818c76e9fa97e2e245b3d6a04ee2eec68931802a75c590aa2c019a6ff13704d18b174bf23324
DIST thunderbird-17.0.7esr-ko.xpi 412964 SHA256 d337a8056ac11663a21ff6d53ac41db3de610c601c88bb05d244ea4123694496 SHA512 85894bed65bc924bf8226993c514daff7c998b5fd89c5375db0808236990d58efd210517efce43cd44fd96db4490c80da1ea3557917f430286ed0387f6f65e11 WHIRLPOOL 446e2ef299d35077f1e768f6f00c1c00b45b8aab92295fab390c1890f3d0512104c739af2d575c52f213ff375971d8a23972602a94a0f3d1560fce024eace923
DIST thunderbird-17.0.7esr-lt.xpi 519802 SHA256 4b03c05bc812e78fc5a6a8d95aa57d58faa9c5125ab211ba41c4947e53b872ec SHA512 9dd4fdf944dc798102a7f453f45eb66e5aa1fe14f9bbca3239a2a093f31c6c94340157ff6e4ef3f3b9800f7b1a2657b89f533a5a66cfa054a56392816b4e0ed9 WHIRLPOOL a778689a9022c36f10d118e18bfb5fc444b22519212650edce5e49cedbbb879c20457b69f4afa0156c243bfd2908666dfd96ca853a41dd897c471226088c5d67
DIST thunderbird-17.0.7esr-nb-NO.xpi 408520 SHA256 977d9db36ed32d5b736fca430317891ece6f80ddf101d9ff0b27bd792bc664ea SHA512 db46832f97885789c2804cdc5d47cac18fe0a3db1dc98fcfacfe3f0ce4d1e038280b0bcbfb39b154e22762c3cfb77e3b2b86f20d9730419eaeaefe8b85667f32 WHIRLPOOL 1c3dfd4226edc420a708e352c9f9cdf252a8b03b74952ce09d5be657cbcaf6e9f6c75a3d094e2c94327cf195bf112ff7a3a1bc2d9ddb7dc610a67b12aba7ff1e
DIST thunderbird-17.0.7esr-nl.xpi 408527 SHA256 188b116c6b78a85f999cdfda1d217a300a964eec7af78098bf8d336ad8cc4526 SHA512 531c47cddc2af25314f99009389e097102957e682a557c4ad833b8d9891d11b16dc85f2c9e5d256249969717c839b9bd92dc95a3a859433caa832355e686c735 WHIRLPOOL 8865d569973e6faa21292f7d5776c22ee022da917268b8671a6fe9053862340584dcfd8f7fe61e12cad2cce87ab92e0482619d82c39e6cff45de366498b8bb5b
DIST thunderbird-17.0.7esr-nn-NO.xpi 431472 SHA256 51aec0a0b303b6babd2ab00e024dc0bdcb58f7134feca13a0166007c160946dc SHA512 2caf4e3ad05f67411125b6bcf4b70907daff64ae549386b82bd959ed413b2b110dfa82fc1b9efbc8ff4ba8b3c2bcf3d61484573d653a96d52cb49ab0992ea37f WHIRLPOOL ba1632bce698ff7627d274aa5169fd2f6dd568382c4537b10d96be0b75a761133cc3e0180d8e19b770aa8e63257043d53860c4d0ec0127cd4d12bfaf0071c008
DIST thunderbird-17.0.7esr-pa-IN.xpi 492445 SHA256 59a45eb8f63d593035fd92cedbd6c6522e4b8ffb69dce5ec41802b4c17cfd808 SHA512 b3bfed339ec571019e770b1eaef105aa0546d19b398a3dc1be3721e2df4cd96a778d800e3a0ae01205e0e2a65cea4bd0df06c9c71beae4035cc8c2725930a48f WHIRLPOOL 6741959c8b725eceacb8619258f0d373dee43bf43fb53e132eee5977157ec4f14ba9f1e6b2ae752dcbf129150cbc4b631c9ff882d540d34e7b742ed97e85b299
DIST thunderbird-17.0.7esr-pl.xpi 402114 SHA256 224079ebee813160fd743ea3da291430dedc53fec040864d5aa13d0ad226e70b SHA512 931c9c1259b547d8dee2a942d86f92add52c589c795acd536f2f363061eb7018346b50f013cb774843ae6ecbd391465a65ab044340e84f1891d6d2c987369c27 WHIRLPOOL 12a6adb103b244542449ceba0d23726a9050f054ffb7acc5df33bd9c8399ee18e6f1a6c30afd6f50384d0254e8ac4fd1db98918cae39a7f85e39d5c029f7a1ee
DIST thunderbird-17.0.7esr-pt-BR.xpi 415778 SHA256 faee7b566a253be5fdd4fee26a02b8bb2caca4c37246ddcaefde2a4323f09234 SHA512 a45f391e5b2346019a98caa524ec2ebbe0823697fc32a2d09c8daac15776255ef51ac7f686e89c4358438875ea7e511bf41890783ab0ea3e3aa932351cbb57b0 WHIRLPOOL db7ecec8e69fbe0f51a7cdd2b96f5de58f939d89895bea51cc099b672f5aca3d2633b9b7a1bd4b7938130b6a2d874b66266787a788419357a9ec05d4c359ecc5
DIST thunderbird-17.0.7esr-pt-PT.xpi 445754 SHA256 9de9c419f89804503f74013eb1d613c7224ead72b664270383c3672df9ff7786 SHA512 5a99e5923442a2f37cf9fde410d093eb3275f9c122270079b43a29113afcedd29582996de60df4a188db3ac4f0921ac3ded4912597c4196e370117b01b1f0fbf WHIRLPOOL 398878c10c15417f946ee792d65b3cf1870515c9ac11127eb058a5f4ccd54fe6b421af4a7432a4888aac2b90b85441bbca0baceaff7f32f56768ec9fa4df6c29
DIST thunderbird-17.0.7esr-rm.xpi 415531 SHA256 a3d1c1af367d836415a2ed03f25020c4e820996285ff47adca84a0b9ea8ca4b2 SHA512 90f73a6a5de4e4bd35aca345de6f749366218b3c7f28083428b20f4c401876b0752cb9b3aa780389dae28798067ed8f691d9ecf428852f4501b5dbebfadcd994 WHIRLPOOL 1fa731283234ef136d6384f13169e18cfcc2b36a79847ce653e1a41e1c98976442d1de0b4cfa84adcaec0148f5d4d3148ff7e4c6ce43835db6a112929f3202ee
DIST thunderbird-17.0.7esr-ro.xpi 480494 SHA256 00cd8179470260800481e98eb925cec1797f808e1fcefae8bd923bf2d4b1556f SHA512 57c92540b54b416f31536e1a456901837adc60098345d7a2a579ab99732720be21c38042007963240ffccc57bacb5c8eb34eead076856e2d68f682c28f34a949 WHIRLPOOL 0584684d9366d44b20bbfc7200edadfb062cdbfb3f29225d6caf1bf6b3c9cc51884471ebc405ae992c8a1ff9e93beb19f85e9d2620b63c293450338be1b4a7dc
DIST thunderbird-17.0.7esr-ru.xpi 415709 SHA256 3a3a5aad50a6e13914fea177b13a0d118ff0ee9954500a537c8d05037108d0aa SHA512 12bfa522900ec67a0ce9f34930f95d25fa199a1a88085f24aecd8fbb192ddbb5609d2a0a5e4e1143e9be3b6080a655d08b13e0fa899d7799cd774ad0f4bfdc7b WHIRLPOOL c7e2843bf80653c62ede3a15bfb7d3fffcd9e3fd12d6e90c9bf57fc97dfc120a1621b679e24588780ee6119e3916081c8c4d83978fc8904b8a19da6f5ee5084f
DIST thunderbird-17.0.7esr-si.xpi 494163 SHA256 03adeffcae250398946958c56c6db75736e571acfc7f8c99547af68a4b764085 SHA512 06ed0dc5694fc07720fd70f55d7d237ebaf976e7c6b9373abfd725879cfa948830551f3e5633020deff1e11e15ebe600f929bc393585bb2092a36df69bb8b016 WHIRLPOOL a8b5e9cc5704cb9fa35b509d71dac723db17cddfb2ce1751111bd1b7ad7d882bc7ad4b7bd2e8768cc4ebec1dbed2e0d1d08b977903399f17b2c67aee8700e9be
DIST thunderbird-17.0.7esr-sk.xpi 429756 SHA256 22a4483584bb969e098569379795b46c276db450c8066b85b41e8c7cd4316eb3 SHA512 5a803f576dc9f2f643256c37308288e454a67548cc880a2dccdefca4080ff197340e95edb50f8f18f5351c2342636ca53eb6c6adddb082abf071470940989f34 WHIRLPOOL 7cca4b4b0e39553209c6adefa92334d53bd9aa9164fbfd31129432c4f903ac54284e576f277c1ecbcba32921b322dd91dfb60e5e95c63bc3dae39cb92e416344
DIST thunderbird-17.0.7esr-sl.xpi 442096 SHA256 799eae2ede769e5289ea226d736fba5e91906ea43db96428899b70603caa6fe1 SHA512 207170ff5d8157c4d6807d61629357ead51b29720e8b5874b75cff76a98634d2023db8a9f1774ff239d1ce698c9e719129529427d3f2697fb2673e7e159fbef8 WHIRLPOOL bfb93b67cf2ad1477f990df7d1a5b7e9fc51abd28fba6f3cdc6ad2f9221e940a0533cbcf2164f208b8aaa540dcf73196a394378879160ca9c1474d925b4de98c
DIST thunderbird-17.0.7esr-sq.xpi 418780 SHA256 89c8320f66324f15a28da27165bfcbac3ab9a7bfb6922676261f513ebd9f0edc SHA512 4a590ab80e7defbd8f8fe73e03a690149db526689988a2521dacd2d51f3b1e42204f2d6c0ba7c7a5582ebd430b521df6366552278950f258bf184b59991c9024 WHIRLPOOL 77ccef0d8f5d59ec8e72166e3d9ff40b55fc1a191da579638be06eb7eebe163d77f39b285a09bc2e1a434ce56a6ec1e705de98950c652e640cafe95bb293d60a
DIST thunderbird-17.0.7esr-sr.xpi 502502 SHA256 ec227b4d1997f87224e5c776d78b24104c76994acec21cf59918809756b2bbcf SHA512 58d682bf22d9d79e7602c7f49ed8502d256cad6755722d4548a318b6153746e61438a9077ae452b66000d20c5f69f540758f9f89cbf218848cb7432366854bcb WHIRLPOOL de8d2af9244fadd7225dcf7163d87e6e21ce5312c97f036cbd5e81374068ec8a7f3e13e0bd8c20992d6a2b5d589b1d49a9e434b611794934a0818a8f70049cb2
DIST thunderbird-17.0.7esr-sv-SE.xpi 413218 SHA256 4ceb3a1db101b9a724f82005f85a397be9e7a118a89370b089a26aeac152372a SHA512 c772eac5ae9e6780fef99bdba69345b03f13d09afe059e26bb0f8dc5bd5fc6153fefd6a4ea1dddda779df6db997a93957a3ad07b7f7b59a03dc05b55b56e8de0 WHIRLPOOL 7e5e536002ba07af3effd47c7dc5cd22470940e17f0709c97d572d65d932180639b281b98687b0a82ac22eed5761b66cf70de64ce63e0039713ec9cbd0c696f6
DIST thunderbird-17.0.7esr-ta-LK.xpi 517912 SHA256 10f6a01416ba512eb46be7b782d519e5ab92216eacf9a0d2aefca01cf96ffcc0 SHA512 9fd66019f160b14b795957747f1da523ad667cb0fb4e47508b9804b7c71554e1396dce0ea98198e6434b41a26db333a0ba996d92177195bcbc7b63e18588227f WHIRLPOOL bbff97e7f0dff84972f36e2906883c2ccfd9e7cd651bac4d931f3b208d4b7f71584d4fd81748b39c050ecadf7b98549cd096f99fb406852e165a3a3aa7745cc0
DIST thunderbird-17.0.7esr-tr.xpi 444945 SHA256 e00f52cce549ca0da209a7b7fd1d3906dcc06e2457d92a5a92e9284714a3fe68 SHA512 792981c14d6a81ccbc93fb3d8d663d78abec6d85373bab90e3ac607885727a288edee9457314529519303e9e121f15131d40b468f05329eeb130ab2cf030a602 WHIRLPOOL 0198d1ceefc84a3e84d9a77290810468cfbf25b5b2d4d9e03ad333bdab1eb30a3225b09107520a100c1174bdceda78210410c0dd02a58bf55991f93ce859ce2a
DIST thunderbird-17.0.7esr-uk.xpi 471143 SHA256 797591405e0bf09da2cce4efb19e46ac6de6c65e01b0577e21d791ca4776184f SHA512 3eae32cbeda32c9aef6d77276e33c947efa9bd748fb311dd0cc527c3e9d32bd1e84263b03f45efadb81ae4b709d80c138f5efb00869343498a44c0e612eda69c WHIRLPOOL 6b744f1ae2eaa4cda26633a1b933bc0312c061c91fddf6260df1caba885802dfba1b2ec1360dce6576a6c32c81f98c4ff5adafc20d35e3be02b647568fbe4cc8
DIST thunderbird-17.0.7esr-vi.xpi 478454 SHA256 e1f47794851168e7f5ba342fbec9a62d1bf7dba9cbd27dd60cceeeff3c0295be SHA512 4c4127ee7060fb5ce2ad3eeea4f658a23991a8da49a2e96ced953d6f5dc0c375bf7607894168bed12baebbd1873dcd7580ac8dd3975ffb868b1f9bcc24e89865 WHIRLPOOL b5ec3e0e818aabb82e3fa50b81826466afc4b2985c54c0ee7cd65e666129899ea88e6c95a0ec63cfacaa5252dc12fadb04e755da4f2a64ab4e5f5a8e61ff6f40
DIST thunderbird-17.0.7esr-zh-CN.xpi 436082 SHA256 1b6be4f02f49176af074c71932aef5699fd2aad7e1e2660acabda60a2f66f8f2 SHA512 82c40b6ab2fb24b6d4497c980988ea889002efb2f0de802a7eefaa6280b736559fdfacd70002dbf46cf4559164a8f1fd3aa757dc4ebcc21ba544af08f7fd2529 WHIRLPOOL 6ae8b46b8b8e9eace60b9a8c5a28ec48114a28e50bbc844690c9264e6742da84c595869dff5ce051edc30396ae4e4fca01c1a484d8face0f0bd6e775acd6d2d4
DIST thunderbird-17.0.7esr-zh-TW.xpi 437591 SHA256 cd2e425035e76c6a2eddc54996fe539cf1724502f13277c054fbd7a95cb59803 SHA512 b68f2b3f7761685cca34c7459447b36776a1f240727be2ddbf249231d522a1536a3ab9d7cca5d85b7e63b599bdbf2700dbbe6a0fa3923d47cb85659c3836a516 WHIRLPOOL 1ad7e605a28db1d3520d3942242a54b7794d37f38b31987fce46e068d7191a6040d2c49ca8135caecbed0fd230b72dad5dc92ec217616c4248a11f03f21b9e85
DIST thunderbird-17.0.8esr-ar.xpi 445976 SHA256 06aa4989dafac30777a9f1733372038bf27ea6ebe2689bbfb1f32ee84bbce570 SHA512 82fdb89a520af2d3fe8ea8b1d11f99750a8b48ff0959814f2d5fffd182ddfccb16f878478eba638ebcbd718bc09432e8ae8517799d58e1105dbfff85269d31d5 WHIRLPOOL 51a5b93f3f9a0c67240d13a756e33b1ef0c57b1f561ea51ae148c68a3abadffd53dab634b6d2e4c493c83931dc15e2a06465a64a4d464e9a1a15a507f05fb372
DIST thunderbird-17.0.8esr-ast.xpi 388037 SHA256 39d5b94e2600309e6ff965525b3d5de4d75c344f2d51612cd2c2916cdb3b2b0c SHA512 c7947491841c70c1774f3ac40b0df63e803d70a0d6da242e3ef956675ebdb48aa97e573cc724975ee418fd5e5224de52121dcb3c5119b6102156bb1f08991c87 WHIRLPOOL f46f49638f98462a63bc7192da252714800a2253b76cd503ad348e61b6df14dbbbb5d33cf0b7c787f7dc227f1a79e887a153526e55ce4b671530b19624426503
DIST thunderbird-17.0.8esr-be.xpi 426694 SHA256 395a7ab747168ea62685e531d820744fea33b8284134387e721d00629b574eba SHA512 48cb0e63d39ac35ad2dfd1cee264e2852a053a134b58cd332c6af7bdc295070b7a7c03ba3ceee4f485ec02f87d51a44c6603d85b0d07be76011f32252273f65c WHIRLPOOL a37f2721d8040f5a6094db79f3c1bd5056a4b5c9cecbf29f444dde1ee183c63093794964135ef715c287833392257567962128a35548a80ea104e97f3329a722
@ -206,11 +50,59 @@ DIST thunderbird-17.0.8esr-uk.xpi 471142 SHA256 77ea7dcee6ea87dafcf0ea49800c6a43
DIST thunderbird-17.0.8esr-vi.xpi 478453 SHA256 85db63c42eea3ffef6227a22ba917877624a2a80bc9192bcf1a68da32f98cff3 SHA512 621f5f815a7ba17f7cc0980cc7c7d30f3e45e40e629a61bff3bf32c47c78cdbb1c039658274be432910282a8ba1c06cc84afa14d09e07e8d622b0d909e051114 WHIRLPOOL cd8699a7f408403246b2262cd839d2b792c818bf92bf6c7467246d9ef2291785ffd814efef531f776284068930b076ce17f84859d1eb967fd048fb12bf4bd493
DIST thunderbird-17.0.8esr-zh-CN.xpi 436082 SHA256 1622e9a29f660744b4370a3340632ff52f28af072ffc424def8470c9190e4f2e SHA512 4f9865ba074d13c089a01be3ef4d45d4df4bf3eced18c4ff9c631ea1a26011c13318c128b36755205b48e708f645c3066c1c02a568b96f1c51b98a9dfe64e314 WHIRLPOOL 94068890e872a7d5c61499f9193acd2890584a44ee53bfc58a8c67a6cb55bfc67e0f71d73ebef56cafb84242a146f28f81c00f141df7695d82556913a9624760
DIST thunderbird-17.0.8esr-zh-TW.xpi 437590 SHA256 bdda98eaebcd1c8104100002ef1c25db939039e533646f74ffd72b8faf381b10 SHA512 c97f0198cca9ad46cabbff1c88a634c88c2f67c8e92a2e71ecbc8849687157437baf6e08eb91aa260417ae41efdf0e70950827a0a266b5c4b6f87c57b735fbe5 WHIRLPOOL e1324d76ea7a22e157d0beee0a2bc3bf8371dd118d3b408b2e864189ca49f86497de97934f953e47ef1396c3e7580764848ec166b24d36efccb267f37a447c86
DIST thunderbird-bin_i686-17.0.5.tar.bz2 21480241 SHA256 e1a0282baff12d00c5fe58e7e7f4058eecacd99911d79c5d473b2814042d8f3e SHA512 6b2e51f52745456b60f5517dfb26f5404e0248f414531147a9822feb45a0aa6df791fe1d63f2949ead4268ba3f37945bc2bd3a1fc7c51e8bb9e517bbe95d9da5 WHIRLPOOL 9649cb0bd5c17947fc7ad11a956ff63eb32045f006aa56880c18349e6a49b05244647a55ad5aa59728ab5990f9ca1465c6abc2685ad7dba4b8f5b660f5eec5ea
DIST thunderbird-bin_i686-17.0.6.tar.bz2 21509701 SHA256 f498d80615659890cfcc641dd436aec5ac5c46ed1082d27ae85700a8c39b4f91 SHA512 90454981e362927f80d76c50a75cfed36263955d43a69c9ab37759e4d19aad57b242f3291e37311eced456bff4f2fd849adbb8138786a64b8cc0b6f1f5c24cd6 WHIRLPOOL dc1da3175aae0277ef7a2734cbe50f04f79d693a7bb28152fadfcc8730735b03530d4672da38321251be79a53a003628441f83616442aac2cf9b93aeaad8aa88
DIST thunderbird-bin_i686-17.0.7.tar.bz2 21511954 SHA256 b6af8d3b5950dab46e7ab5868091177f2da8474e879080e273ff816f4f460c5a SHA512 96d9632488ea33fb0c9b23cfee05fef3965be577661fa205cf4cddc4f3ebda73b63ef83eadb2e1141db64e2cc9888f403985f210f0643833263b5ce248d0ceb1 WHIRLPOOL 216bf2696cb07d0cae6d10d8e07509374369f59e02b73f950564dc36571feff379786af2c05a24d6ba25070967107fa8999106c285505786944bff40fad87c7e
DIST thunderbird-17.0.9esr-ar.xpi 445976 SHA256 c28b2a296a252a221701524cd778d88b6a35389cf969822ecbc3174e9397ceca SHA512 2a559f7fad5eaf18727e9f594e282a498de1d63d54c11ed8720da165bfb722f0783747fe2acdd0a81315b041793dd5d4821dc9f6196d085fc104671b38e14d18 WHIRLPOOL 8ac2f5a41d355b8ca82199a60116fc83ed443d586ce3889a1ce8e3399b4b6442b2c2bec32761eacbdb9c1153651a6b7dfd5de9eb3fd8439edfd11e5012ca4cfe
DIST thunderbird-17.0.9esr-ast.xpi 388038 SHA256 dcf4f2a49752dc992deee1e9c9d0899604470c546561b6b50976bfab0963bc0a SHA512 7e2595fbad33433634f7b2b2f3b43fd68272abc0d95afc899cc701524eae485e9c1ae83e7f0b3d0c1bbcc62981982ffd111b808b41effcd0985ac63371469d35 WHIRLPOOL 19e4de77b769e1615978949a87e7c48785a848cfa09b488554c5cf926fad9c6afe3acea9ea083d77c78145a4e2cd5a765258f838d82bbcf86cb1e8ea3e0cd383
DIST thunderbird-17.0.9esr-be.xpi 426695 SHA256 e02ccf74cdee89eef7daabbfdf8da8545baf3b2434a73b2be97c01f082521227 SHA512 4ec5fe75282471d7351ba6e7253c05ebb90fd4208cedc8ff20d3b35191029e8ff42144515354bb8a495d2de63de0df18d97f8170baaeccf324dac8aae256b53c WHIRLPOOL df1b72e79927528c9ad8c7dee93bba13afed3b196f137230eadefbc770fa869c00bef3bb10c2d331ead88d99f5b09b7237ee9b6ffc5c7b59c49717336c47cd54
DIST thunderbird-17.0.9esr-bg.xpi 467637 SHA256 23d90abe1dbb788ad30306ec77cf787a68da95506cc1b662fef46691badf809c SHA512 53760833b906104aa5da40685c2dc1028f87df86b919bd66d311e7880363e7d0e5194a9b1a3e0520ef0eed3822e911657006a6d410d7aa7bdf01904392137d87 WHIRLPOOL e2a1c89308131d29cad564653880d94204997ff2c1d502832599ec991b0a6da322c85259e014655a1848762f970a00f0740ad1e0d9127a63ea258372d8ac0417
DIST thunderbird-17.0.9esr-bn-BD.xpi 520602 SHA256 3fd646ad74d0216d017891d56e9ce37ddb36388160bdf8fb40e3ad48e63875a5 SHA512 602f12198fd760a1342d9747a1428864682e048c7939a810c0d85139c724015bf2a3aebbe245c0b058e7dd276718713b710fc42f3f9a6f05d3053329b1645a33 WHIRLPOOL c9772721d68b3701a7bffb2447ff04add33e71dbe94642d7c72d3b46b0aafe814f9141d12c7aefc804269ae617b988ca969f5a3c8404fd64ee56dfd5b042a82d
DIST thunderbird-17.0.9esr-br.xpi 417071 SHA256 dbfb78a8ca268ae6736e46407db31cec61989fb1d942c85964557f596809ea68 SHA512 a9c01673e78c5ed31b2d400de8a11cb4b039967dff8c8d514083306aed4323f3c601322c593800fec8d51e5e98e9566d7fd5bbfc35d2cbd70612141e8a750503 WHIRLPOOL fe41607935058aa903fd84abed819a8921bc506bf99e2a0faff4d2ce99192115eb49d29ca792190769354d3d015bb2bbdcfeeab1aa5a9d7bfb4763bd879f185a
DIST thunderbird-17.0.9esr-ca.xpi 418407 SHA256 514e13b8998d72623e2128c39425cd041988f0c76d456eee73052aceb322867b SHA512 07f62757f8e106c3ef80ea4c0e2f19431e25d56c5de17d7e6df96ca41847db6939635f47c28547cc8581f10c406f4085cf35e4402c811740fd4b0c9e23721b06 WHIRLPOOL 8677490a46a2cd19be09ffa9e5fa39bb4a5f1fbaef1c4eeac0b32618748c2f301ee6dcdde500c451a4f020727ec3f8876fd92e0f3a5ee75f2a808b83064bcd8b
DIST thunderbird-17.0.9esr-cs.xpi 420627 SHA256 fde86acf952d05c11f34e255b9fcbc688adffcca004c9f123ea1867717a74826 SHA512 f119a15ac7f808ed32364284bac956ede6ea4acc2c25dabf09f615553f033f71ad0aae42b7b9ed9d136a1a51333983f9d9b45c5316e447973a5a296c4f812a2b WHIRLPOOL 3a4d3019196942c5f9b4eb0de5961e1e26203d6b025619a9c44da8510558bbbaefce8521047b9c787946074ae8b806ec754cffc0b2771775fc77ae26e6e5973e
DIST thunderbird-17.0.9esr-da.xpi 398980 SHA256 7d3684557526b48413a53eeee9704bb1ee9343131558d8ac809e5d82aabbcfb0 SHA512 3a31c88e268a8f761a20deceb1f265c8f76a83693027a0b3ff6760ac9fd1c5ecf36fa02eb55c55e80602845cdc4183a32676b61f7f9867b6c69336fa9b6d211f WHIRLPOOL a3a9a7c2787dfd516d224614b3c8383d079af5e3272c1f55400ea72ffff2e6fd3ccdeb9f24be2131faf22562be9d7b374a4f3bed3d31e8228c59def244bcaa7c
DIST thunderbird-17.0.9esr-de.xpi 393632 SHA256 c9d62930decce5eb50ae30986c2a9e37c2c9df7e40c3c016d586438527a0b994 SHA512 47560130dbedc46a7679f57f3f52c10636e2f878727428c04f7668d0cdc79c4832b37452fca89f92fce54f8b0f5b3ceae475211ef6155e2c1bd68259e8ea562e WHIRLPOOL e72711127ea18c7e6148031c01cacab6204c3df5f09df57b38b63aabbcdcd0e1fc110f1260289e0e60e4f41136c3c0cebe90ce182a5e701401b23cfba61cce2e
DIST thunderbird-17.0.9esr-el.xpi 447926 SHA256 b4d4453be84339a05b1b1bde22e86f72204576ddd43585c69fdff85deb12db23 SHA512 8d0a3bc02148474c6b6244540a31f0e795c306a118955dbba704569d419a1ef279fed7e185d6f6fe7753ad7e05581192dc0b961c902d7d41d60b52b0c7e8199d WHIRLPOOL 2fb382e28b33023d27cef7d2d7bf306be1643dfbb6223bdba085efc514bbd3a7985d81ffc77975493c8f1345c34665421a831836230db208ba99d5dd5635df1b
DIST thunderbird-17.0.9esr-en-GB.xpi 390694 SHA256 90b96d0efcd844dbc4bf6ebd3fba205cb15edb10b25d73c561bd6b77d2f2da3e SHA512 d27e5b721244e2e7936e1af1807dd4f46225228c5d0945ef21cec3b4522b866661c5a8c8ceee8196ef10a831a2453b88d07e21b76e9d38333e6e61c46da18e6c WHIRLPOOL adc651f27706aeba67133af6352ebe181dc4cc53c976b54c173d7bf2001e9174ff83ab22adbb91f20bbb65b870b42352d28097c307989e96e3556808d2c2a26d
DIST thunderbird-17.0.9esr-es-AR.xpi 415499 SHA256 f07a8132cf12db55686a3953d97a6b1a3aeb7124c5addd2bea3967cc7ff1df30 SHA512 22b4f4606c5157a18bd2c73c5380e7d4a8e4a3c5a67bc48e7057d5915b82ce859d08ab50624cc5e5132a1b4e2311878d8d79416b12e14ee71a4a1c49915a580a WHIRLPOOL 239ccba9d97bd1d1f70e354d30ff80c0bf553acd0b5b972af62f0bd63142d05a4b2c7d3dbe6f8e7e2c35b714572c052e0cc415bcae7118ce823060610112e58b
DIST thunderbird-17.0.9esr-es-ES.xpi 356861 SHA256 aba31e9c726e9c6cf8165bbdc2d1c98eda73dbb6fe9df85e35022c820e6f77ea SHA512 7a5eae9fb4a4102b425b6815f6274623e442fccc14e75d2760e2f7bd261a5522ccf93893c6af6cbe3d0dc4ba919b92cb2914d8593b84d3bdbfec0cafa88190a9 WHIRLPOOL f37c28dac66d027a2f80807b40bbe12c526d2c38316c9fc0fb63173f918231f5fe3ee886eb2a25b29f92f7c0274f59786f3edb0cc2098aa15514e31ca3349ad1
DIST thunderbird-17.0.9esr-et.xpi 411892 SHA256 5627cbb067a4432f1ec3303c39ac63ea85d18fcf2005e1ea95984d7ceb504f5e SHA512 91e3ecb4f098b17e6955c2fd2c5833e4bd050b9f57c0524fe3cc6b8770d32fe3aadfd84477cfc958e2db06377cb80374d85bea992c694d429045a8c44112ad7a WHIRLPOOL 4f49c46179101cf6d7bb469efdbfc04915a344c4169b9b64ce1667f465457f93464dc0e81790ed9fccd9b287c7941c7b562f54c5f3f91eaee5e34dfccf5d6409
DIST thunderbird-17.0.9esr-eu.xpi 407189 SHA256 ed9dc79fcfdf77f0dc104d6af01423a67305e07a62acd5868feba3e1048b06b4 SHA512 c58e6a97d7cfe87e177acf0c25683681fd286e45e493842d14a4baf8cdcf9272354adec321faf1b180086db96d40b9c2d5cc0af06d4a4558ef0f963c0a060a9e WHIRLPOOL 73c6b3c1960f893591605779f3d8d767f6c8b047180a9d5849c907f4b19a2ba407d22e97cb09ee47934a7a2042c0f175ea8938614fc8e86ae29eb8e1c0d70e86
DIST thunderbird-17.0.9esr-fi.xpi 413620 SHA256 851a9b964cba577114ccce606fd6265bc44f1dd67dd48ebd1968d88c4815b9e9 SHA512 a9caf8c6cdbba2839caa3fee6051b163fcf9b01850c94163b5a93aa1b6d400308b250e2fab9d6c624d01d81391da95d14a2f4c6f34a78cdac97b5ab7a5496af6 WHIRLPOOL 1e09bfbf3b25ad0093059f18dac438e5d1169e64aa38c4360121ecfe6067392ab3f472b852edce4b93c705246ec08451c16ddb85488ccf4f930302fa9f34014e
DIST thunderbird-17.0.9esr-fr.xpi 420826 SHA256 364a9445d3e3650af6f248266a4c9870bd1dbf531b2d28dc64632cbf6d6ce4b3 SHA512 7b3adba972703d3eaf7c4d5e854b40ac342c423f1203abbe732f95a0a5205b18a276a859dbfb319bedda0097cbb787af010e97abf78217e94d10865b2e9d87df WHIRLPOOL 1f1b047a0abcf5921a8abdfeadb299d80ccaaff220a4c222ecb108775ad93346ab04c3dfa88ac2996c308a9db85d4e379512268bd11e5559e6dbddc9f49a7283
DIST thunderbird-17.0.9esr-fy-NL.xpi 415712 SHA256 0359548d3a83a52b9c6231f1320d4fb8f4d510ce745e9a89780cbb72e824e52e SHA512 61f381cd42752c35eb608bcfa8640b0e201824762c58405ce38fb3c9a49dc9eaac6241a34307da7480312151674bc16ba07454a404d2cd606a03aab773d3b79f WHIRLPOOL e9421d2145cab1c12a271a335b1d4cfbdcb3abc54691c71cffd6246c3531ab5be245a4f7c17c49c412d45161bc9d77b25517354293f580481ee3d7c97853329d
DIST thunderbird-17.0.9esr-ga-IE.xpi 425395 SHA256 cc546d6bbeb690223ab00c98b51df8e06984b54b3e478d5f1340c83e7690af47 SHA512 13c58e3d9f28c5a08ce06051786482c1a857cde5c1e8bce910f59e1ef9baa81efe59d76c7ae1cd688629f6de4f78dacb8c50e30b5b87dec1072c52b257194260 WHIRLPOOL c2bb856d107fe4fd7f9d7351ff224e0def3e3ffdd5629ca99c592b7ee52af3753d033a976e7082ec88d14d4821dcdf53cfb902a23b5cfacab9f92234f0d4fb4b
DIST thunderbird-17.0.9esr-gd.xpi 428939 SHA256 2d714adbf5b3b02a958f86162a2d70ffcccc7537f956db5490ae1f0a24fc2289 SHA512 dbee10ac700fedda0416c54eace6113f6d1c1f51813c779ff40ed87515c639b469c8fc672a89911afd9f04055cce5956c242c2db65a33a99f95ff773c9af5ca3 WHIRLPOOL c8a0dafae211708ec3c34b480793befb0635280ef62e2672291682749aeaa739a15377cb6f31590ae1be97302da29c762481b1bb6c6a08e7755999932cd9f2ef
DIST thunderbird-17.0.9esr-gl.xpi 410370 SHA256 82758ac35196e9c43ff5e163956f6a7724f8c2558881ec3ff2d6bce0f76cefa3 SHA512 5b63388fb201139e8ce7c8377611405cca0f75e94c2fb2eeb49b0d6add4d68a761a3d865e83ded8510dd1cd5dc64ca1d62ee1a5916cbbd53824d559caaae4fc5 WHIRLPOOL cd60acfab6ab305352c98bd36b9522ce6ed1edeead29dce0a88b1b47dc45b8585dfa54de810141e003d760b196fea49f38e287893432766064230eebd8d58edd
DIST thunderbird-17.0.9esr-he.xpi 439504 SHA256 6577a9bdb5bf3d7feaf52d2ccbd32de4a81b4d7fe767dd543f0164fb77d21705 SHA512 d5dc72c65b4ce73e98648cea36bcc3d505f58dce542ac786e1cbe700958b175e71eca820f31bab8094c885058bdcc6f815ea67d587337edccb55913d51338177 WHIRLPOOL 3fbd7ae54df924ba59180be9ae943348ce406b29f51236951432b9d16e10dd6921ba27bf80a3864f7bcc5f432c6eeaf4817fc817f95898419246d4b81d30ab5c
DIST thunderbird-17.0.9esr-hu.xpi 433186 SHA256 1cff0a7563801b1eb29667737a69801e4edb24f6b5ded60c47862359edfdf7fc SHA512 d44ac386550b3f65eadf05e97845a8849732c5ccc11e53d4dc60b5c77713fe3622f2c685d4875a7dce22ff9d08f3a739ed474ae862c3ed5e5c91f8a775cef8e5 WHIRLPOOL 27f2e31e5fd164cb42e447b6175aaffd236c1b16cf51ddd07b9da342b52050aab1d9bff57f96db2f4b39793d8b010b682e96b61c58dcb581aabb639bf97323bc
DIST thunderbird-17.0.9esr-id.xpi 439574 SHA256 6a1c82039e8fbf467fa53eaf25b327aafbcfed7a83e0963a4252577756c81f30 SHA512 390f3c38c2640de84b0892fb2cff4fadaa228e7c0ce473fc0ee82e2a9337ed71a48fd5b84692ee8ab55b3b1c0932bec162089641f9e2550236f46bfb8823aca4 WHIRLPOOL 5800fac1e6c0c6a0840a21da3827aeedbe14c8f4baba60c7a265bcbf8c3779e36d6ab8ee78591be89a38c626329157d670c6914c2719b60b442ec5e5492f2356
DIST thunderbird-17.0.9esr-is.xpi 414068 SHA256 620db0517b91ff6a87ac2647704eaeacd174271532d5ba78f2f7b6c1c0cc6f27 SHA512 4fcfe539730edc85de2520eed603c8999f58522d55f52ee92674a480e85048a0a2d0309c8db7908af7460e15ff02918207ce8e6ce058cd2a946237f2093e7c4c WHIRLPOOL 67cd2dcd73ea4538747fcf54caf5d301bd06c8ae144f7bf547fe898bc9e8ddf1b11a5f4bf0c6bdac6b1e9a1cc28f87b47f15e5c7812907f28774211cf0da00db
DIST thunderbird-17.0.9esr-it.xpi 348621 SHA256 cb3c1f4af7d3ef3616b3a8a90b72ab706ceb44f3d1eb86354f211ff1d3159402 SHA512 0cbdba4814945f1fc49150771f1e5b340aa664b5bf0d61e6ea53477e3fbac6bec7341dfb963fcfd1514112f20381dfe33765bfd0c6baecf2ffe75fc877e025bf WHIRLPOOL 1813bfa77949f03d7850cabb39c0fe6ee5914bc3b8ba48a66257e3f00974a20fec8db77c6d31170ffe4c7046a49861327fff5d77a76eac2f052d589e459df385
DIST thunderbird-17.0.9esr-ja.xpi 463488 SHA256 1cb49f15d2ecc5d8e7d28df48140bee47adff09eae5d335c115f5a1b26a693fe SHA512 cfb15ec2b63c7f715f46a809a07edb5c06a8dc59fd0a5f229b20f4e80666c829f0fc702dcaf775de7f29d065b21bf940ede449aa7ae7c487d711b62d542eb1a5 WHIRLPOOL 16ee4b461ea90c4803fa4f5f2575e105c004be9222b5e27c07fdfb7bd30b7af2a5b28f3d2e740634641c8554039c645892ae02787ea2570c25aa1706dde7b529
DIST thunderbird-17.0.9esr-ko.xpi 412964 SHA256 60982a14e282c085af2cbad1da26cb7964ca5a3f2ab1cefc21d3a2db1d0d5a27 SHA512 b782c99ce934aaab75a942c199fe36c196c44203fc3c8c335dc7a7e3bb5f1193032563ab6e70e8cce1a4deee2f2fb43a7db48c5169cd9acee5c98c679a4e7341 WHIRLPOOL 476e554b7d3c9d8d8ff1b2870f9e9f5d3211fdb27516e8c50a88a72440c811fedb5311c76c16eacd205e32e83efcd12613ac0d4c7af76f09c80b50bc86b158b6
DIST thunderbird-17.0.9esr-lt.xpi 519802 SHA256 79055050636741bbc88066da54f7f4a2e095d15080dd689c442a50bcbf7500a3 SHA512 3bd6609ad614009567c7ba43ed7c08dc5a530338936d79ca48878edab37722e51b87765ccec8969e61068b9a0765d4b0e4b274f5a4e665cfbbc3220a264003d1 WHIRLPOOL cc5720f55eb7bc496d5d6cef09189731df1ea857698307d96497a595881b4c36e5e7e09be5581f959839c76e56400e09d1654fa5382156031be3284d3c286cd4
DIST thunderbird-17.0.9esr-nb-NO.xpi 408519 SHA256 e6ab2156ac23c7a305dbae9982efdcd625169a7f0428751924f022eaff584111 SHA512 218d0b20428125b62b3a0c7c9dfbbcc22430c59d8784655ab0b1e68816b00c2752a968abf9003fa66e0f7af3bc97612a276b26c86d3159ff971ca710828dfedd WHIRLPOOL 1c5a9659abd7b28fef42c3313f2a2c80dbd54e18216337fb4f04f97fa83a22aa95316c85ddc77df6907b9e0404260e414720e343e8a78f5882c983937511dd99
DIST thunderbird-17.0.9esr-nl.xpi 408527 SHA256 bf7c41f8814ae2505efce8a4f4e03c08c4fac8c9151e71be91087e68220a3cc7 SHA512 f6458a839fc4eb6ca2fa4287d09c16b527d832ef9fbed1bb121a6c12dea7ebcb8fb8717b0592a5fef7c6cbe8852e43dc605235d9197b4cf8969b2728d7b67f98 WHIRLPOOL c1cf312519f321f7c86e875558d747bb738a7d9622f783483d77a812b77f0e0634ddb345a9a68e412e3f5536f16e085cda11bd29719963aad4d202275d6f623f
DIST thunderbird-17.0.9esr-nn-NO.xpi 431472 SHA256 cffb3ebc6f8f037015c96a68d21e9fdaf7597e0da9b7cc060ab563981904b37f SHA512 f547d9a7400503cc5e0ad16a2ecc87966422e811ce2d1ec8076ec34dbfa5cab739e1c9ba8c6cdc2779a1ba01a369d8416d1f2bbe6f8b3ed60ecfb1a50b2a31cb WHIRLPOOL d3ef56ae032a3275f70c6d4fa37cf05e40595be19227d6b77374b88f906a3cbbfce5558379e0971e77054790b10ffcd4a07df87ed00381169a4a0dd409c3b6e9
DIST thunderbird-17.0.9esr-pa-IN.xpi 492445 SHA256 9da1879c3d202333b197316a933a9bddb604eef588808ae5aafede66072678aa SHA512 e8a8c2d727bbe89d9bbaf35afce41c29d45fd7690408192923927ad7f33b9408a815141b7ef1963f87b8733708aad195ce7d34eab1c1c4576ba6f9299eb5fe51 WHIRLPOOL 6ae23f8b294c350bb66b359f50eb6b9e496cb0f6a5763d0732a3e0df1b2bc165babf737c242cd09e7bdb9659a5fbad53de299a66b0efba2a587e9a5c3c41560e
DIST thunderbird-17.0.9esr-pl.xpi 402114 SHA256 430f92c221970b7080cce017276af1e582213bb798809cc5e00b6a99181044d8 SHA512 af5a0cd5cbd5f27a80e40b970ecdef3f2e38028d11d37211e3b79b7b5ea925708ee8fdd04aa50d4daadaa80f98aad24cc740aa15d2a20e7b2e24486356b3e561 WHIRLPOOL f4db5e5b0886aadc5d4de5916b4a81feba4c8092e0ef86740c6864b85b9629ffdf9212871cc676404a6277d45ab35506170753b0eb5cf12102241c2af1f74aeb
DIST thunderbird-17.0.9esr-pt-BR.xpi 415778 SHA256 ec2193cd3c50a3b2a59d2b0373c52cac58924ea933bb014552de88a4ff6b3b92 SHA512 bca128a56c96651c6634009290946ddf8ab74f1f391432f9689ec3e384468995c9b070554ef46b0f487ae46992e379b76710513c4b484e4d6529fc7df3a8547c WHIRLPOOL 19b7f2ce2eec6cfbe58bf8ff802654546c9a6934cbf30df18b5915b57d0e9768a9dcd588f07b801f42e5a03902f5811841a97d6f33fbe33ee5322552a32e3f97
DIST thunderbird-17.0.9esr-pt-PT.xpi 445754 SHA256 59832be543ada94ca6fcc8bf69dd5b9cbaa49194eb0fc0a7c0b033ca235f532a SHA512 9dab0bf3d1620cfc018330ab6f89631bf80473cd10010358bc4b9be4a5de2a9dcddd80fcbc79cef47fb71cdbdcb87e6ca63927aaf349d6cd05b2c0aedb67becb WHIRLPOOL 860e8ae963cd120ada6f602d6676ee01ec240604fa349cf61df9cf658d089282017a74985fdac6303f40d61ec6f73ff6e27160b289c89e49b8162ae6b9c158a6
DIST thunderbird-17.0.9esr-rm.xpi 415531 SHA256 705d4dbbe6a25411929551bfa723ea1db00ae7a391ae2458527a597cb0cb2478 SHA512 2e954429bf3006d305612dfa5fa7393b43329ed383f625dab897239895f5822c091284c1b56f6af4abcb5de721204c32e3252badbc837b5d73ee237d2a8ed4d1 WHIRLPOOL 856cbf109e6f8fb68ed5b5bd418572f5c0d1b662113fd29c80cd4132bc6262607f26c98783c607ec6eac0ffb906824503680485133ec1ce2e2f8c8d5e12ea88a
DIST thunderbird-17.0.9esr-ro.xpi 480493 SHA256 17fee29176d3bb52f922568ffa7bd35c7e32bf24f82f0ef0bc887d0339516f5b SHA512 74951558e5413efef09eaab95d232f3356700467671a56f2209befa6696db96309a349210aa6cc843369b3bd71f187452419f698a55360beab5f70067e707401 WHIRLPOOL cd374e3e5aaac458838fe561dab4842e2df268368e5f7e70216a0ff33a161a3553c29fd2a09ec87ce3a118f69262e181b86971a1ff6d4b233450548638a35231
DIST thunderbird-17.0.9esr-ru.xpi 415708 SHA256 16959792649d77f70066b6235d1318c3a1650337065229b9f791028eed460f5c SHA512 bc9658806c95e49dbc85c98e11e8717353d47a8596910a91d865b70d1f9892175aecaa47c6907b80c77c5a66de3139a669390214fa1d5c9a87f470959e000f63 WHIRLPOOL 06ecb59970d40ad7f98fbef8b06044bbf7168d568a63db661bfb5de49b13b27bb79ec41fcfd1a77e016606b1450a9e0395cf9474d9cd98e9342365389fbb34d8
DIST thunderbird-17.0.9esr-si.xpi 494162 SHA256 9b5054587259c21e301c25e55c4908c25581e8e98c8ee0b800542fbcceaccc2c SHA512 1da84d717235e6876c7522ea684701e636d2c8b2e1f3343f5e2f7e4e89cc2ecd73c99e5ebb432804efa8537d5fb4bc31b924e5bb88d99a7875b90e4368218a4a WHIRLPOOL baeeb3846a7a0c0e93298ebebd65047f965dea857507c9fb95696c399ac2b20eea7b426ef65f0308d0b1ea438b03b9dc72323363874630d2ef1a153f6b6240a1
DIST thunderbird-17.0.9esr-sk.xpi 429756 SHA256 93f4b27cb13ca05eb7589eba262153bbc40b403ee9d9bf6e37682fc04b962359 SHA512 03e19ec4434b2e60073d14acc4801412d2fb4c375862a7866467cc2afc5165fc47f08a247be3273b52dbd6030fcd1e2f1fc2b5f521c02a6f67fd8213ce45da36 WHIRLPOOL 8465d030c7b90162eb01b7553234a59bbd561ca96257de49f18245bd78d268289d90b9da979abe0bc3e2d11b7f834a7e3148c984c8b8498691b285096d7bc426
DIST thunderbird-17.0.9esr-sl.xpi 442096 SHA256 b3d5e1d30865a0063cfbc84b9c8f529b605634e4b2c47480ecb7cd7bd62b22e8 SHA512 5f6c1bd3fe68a4da9ad08df72dd76341d631f4247cb4cb55d5a1b9ef3300805aba0dad115f73728c373ec7cab720ce117ddcf7db510443b18a4caa23d6f2356f WHIRLPOOL 7864fb82a71333feea755162e0090c5af0e41940f022f97e0cbfbe47dd5b98068bc6d3ccaa4253b659f091da93abe8fefd4e04acb506aaf6d5bea2dd886d934c
DIST thunderbird-17.0.9esr-sq.xpi 418781 SHA256 d7930811e9b937da6cfc8482a13a866e56f55da0e3eb41abd7a3ba1e089437b9 SHA512 37f0d7b1f31f9fc0e08fcf72999d872fe142e835826132f5be64002af6b4de5bdfda78fcd14c13d03502f572473eb9ef1e2ab383ea1ef08e0133b13384d6353c WHIRLPOOL c03def8d46d47b3e7b1d0c9c9fa4a0a1a52ce4b6c403971935a5ae4055ffef9cfa888291653fd84b80b95e084748f961e662a9481ed594a8297bc47628d735ca
DIST thunderbird-17.0.9esr-sr.xpi 502500 SHA256 6dd80acb8a555875e4dc589d8c1b46ac26c8eec26d303e411ba343ec062fce97 SHA512 3bfc4fbc03fef56bcdfcc1ee62543a293dab7de39d7ad9c927f902e83317112af196647dc34d8b51f1382bbe07010c5bfc3ff35491cfb5f4e529cea57be68052 WHIRLPOOL f8212836d0eb269fb07a4fd9bea37c8cd028c69aea4e2edc333213d305dfeb08c6baa7f10334f1c102dbb7f4569569e3caa749911d0d9163a69973b0e3491775
DIST thunderbird-17.0.9esr-sv-SE.xpi 413218 SHA256 fff7d750c4fb1d1b9bfb9ac79c7dc3eeb3677b871e3e2a3bdf684d2b80aea69a SHA512 3d574a31da8716f991d7e4f5df9a96614be5323fc06b75460e47aa19289ac9c2ec17dcc2910e9e50969e41bb9829eb8bae0620cf423dabbecb36b10fa229bd00 WHIRLPOOL 7e2d63f17eeaa920d1c7bb711a08f98eb7f61eef5337c3a54cf11b3a66e2eed44c3f59203a8fd18fad80e1e5f50a2281d7a12b231052f4d9810f2cf1da82bd62
DIST thunderbird-17.0.9esr-ta-LK.xpi 517912 SHA256 295ecf13dc82894f3e71fd5d8e6a6999205309e093945faf24871c375bf05b16 SHA512 ba1abc25b66f5bded56b0bc2c8536308058ad52661e7b0d72e91c6dc31eb6d002b446f6def7e2659bd5752f2cba088425c491f0d34474de20cfb3f2d61715510 WHIRLPOOL 6afe4b53ab526a250c1ec3969f3e28987c2976389af44e8d652674adc56ee5280c85d27c584cd93567d960d232f9e70537209514b4fa37fb85fb324340e38fc6
DIST thunderbird-17.0.9esr-tr.xpi 444945 SHA256 c51a6afe47366c5407b13aca33e2d50d3c11e3f5be87422f45d430acf82474ed SHA512 a3cc4b4c9a8a155f4a2f5e21721868d20470937b585356f19b9e9044f57bad7a61ab816e9dbf7f0e49001ad61081dc27b60473d53f98cb39fcb89ab53a49de44 WHIRLPOOL 269529b6e38b0c8f64c09ead706bdc5f1f9a81ae696d43446d90a9f730aee1d1aa7cc288d87a234d4ee5b8f8829e8315ade1f2b068107cfc8e03dfa457ce4891
DIST thunderbird-17.0.9esr-uk.xpi 471142 SHA256 31b391426fbf0685f858e41d20cc41881fa14b08cf7b25b315efae578135b9b9 SHA512 2a306a6e4e96a7b3e38b57038e7fc1b281ce36d66557ba0e22b3345ac94dc8557e3c4414613219556563c4776e5cd8f891d62e6d317de2426236895a482456ff WHIRLPOOL a09774a78659433b1ad4039049121bddbb4d04f4c0323553bbb90fed44c70dbc9739161586f041915547874b39d74ac55092541e063ed5c32cec98845ca4d3b1
DIST thunderbird-17.0.9esr-vi.xpi 478454 SHA256 02952f9e9797bbeafecfe760664222fb58dd64f21be0cd89b0eedc6068c49aec SHA512 79b93eece8c1f4514368f38e38aa3e4d0188f1550cf207d2cbff83f10ef29b13f886ac1995809618b61f280fb66af12ff4f6a93d7986f4c1ce091927284adff7 WHIRLPOOL b35d7a7ea02024131010ac934a77def68cab2535cc6a496be320fb2e655a3eb1d00799238b2613a3079d7df0fc7c7f15cd61be6a8b0714bfb2716b7b294b9525
DIST thunderbird-17.0.9esr-zh-CN.xpi 436082 SHA256 0e7b80289addfd1cb030dd8d16a7fcb749ecb410504e4c50489e62cc5f0ccbeb SHA512 0f9db08d5973b38b49e056b42c3487219da7921a641c1a16daade5dcf064429b090c0d40b2c719a83932349b58bd137f0ca7fa313f6abf288f2e2be6c5178622 WHIRLPOOL 7e12310b57b9632652da0ddc259e349262c5512495c3bcbc4552c8d4819c59e39de9be1ff6971122caac4f04e8781fe2d5e867c467ef191c55d80131bcadc226
DIST thunderbird-17.0.9esr-zh-TW.xpi 437591 SHA256 f44b738f76292ad20b87b1afa148e7cd13e60c4f4ddc456ac2cfb7dfcf9d836d SHA512 05ddc92a6df7c7f2ad1e5b55cfffe716ed54ae0ed64df72e3813823477d57e91bdfe3c3ae08bc544461e70e90cfdec997384031e04193a9761b122d315fc9e05 WHIRLPOOL dead2063e57d174daf6e9923ce21b6627642aca3579692f7c72c2e9dde14b62073b62fac6101d62063430349eb97f52044eb9db4f34e02f381944e6970354b1a
DIST thunderbird-bin_i686-17.0.8.tar.bz2 21488005 SHA256 50a79b52784c8f7611c5ca491a5668f712485483494a7b3e18030a0cc89eb9bb SHA512 11750c89fde562e5b93326c4f2bd2c4606e5732abf9b6ae722d89c162149c68109d9478be74731fb285b4087a227e9870279ffb33a9951ed607a69bf9c620997 WHIRLPOOL 2bcf3826fe9836d0ed5f97a4ab7b77d217034fb01f8a42d4fb58e4d3bafb557b164df38a73b0d5229c824466177e67e2ef3f6c9a38558886980f828956f4e16e
DIST thunderbird-bin_x86_64-17.0.5.tar.bz2 25986322 SHA256 a715ed8d694c5df39cec0387dd8a64e07de484f995c5213882bb9e336b3a917b SHA512 fefb1bfd2689811cf3abae70217171ca74a370e0681c10bb67035dfade60e73ee993fafe4cab98c9b6b5a7ab05c6ea80486299e96d8426c206bd02d4691b1cf0 WHIRLPOOL 4d365c9de3aa52bff976d4ad135d9d4e4528eb3a49d63da8810b9523af8a9f491dc02b89cdc13e70c24192892ca69f78627546a831f2921692a74b461b22966d
DIST thunderbird-bin_x86_64-17.0.6.tar.bz2 25984715 SHA256 5b2b458b12d49f95b6f1bf1f39999d6966d72e2104b661fc7f59146959cbeff2 SHA512 1c5dbb9ddcaba1c69691fe82aae91437c824ae05297fb8e13603c15d0d10f03d1925ae7bb0dc2229278d23ad03999e60a202b93d2f6871bbd4da778eaf28118d WHIRLPOOL 1940e257fbff03720ea4d672a307c6d4419056bfed3ed09cd120626fc12475bf24b0f29e42b2d1200cb50ddecc0581cc0809b311acaeb212ee762dbc63d24eaf
DIST thunderbird-bin_x86_64-17.0.7.tar.bz2 25991559 SHA256 31a507f4de348c3bf9f0157a57522843fd48e7cda5e3db520827e7f65eb30c8c SHA512 4ec5f1393b5e29a729866b1f5640d3d322bd9fda04b48933c53bd5e51423023bff6531188dfb678d897da8ae12baa2f6973731a1af595a59e1ac2ef49e75170e WHIRLPOOL 576f41833310297edd7b4545411f86a5ec133901faff91377f2a483715e56ff0f24bd69eab0a9729c188620ca5176b51882026d3122752dbacf21d64597c1f86
DIST thunderbird-bin_i686-17.0.9.tar.bz2 21483685 SHA256 9d356f6f4fe2aebd35cc002c8a8df3c4497743b982dad5f148b3f5ea2f659126 SHA512 052703a5c36943a4157a7c0b9472a00daa8ad42575ea54327443f91f7dc797aee78a36eb47baffc6229babaeffbff941dfb5e69f9e43ada436e79cb239cae88a WHIRLPOOL 0e4761bcd8301afca1473c9952e7af7e0699d52ae3fcc54394402a3247276efa19e2bc7b576d8a3164e40e8cdad89bf7531595a72fcacf7bcfd0fcaed5e1dda5
DIST thunderbird-bin_x86_64-17.0.8.tar.bz2 25993562 SHA256 1ebddfe2ce98d220e7498f0ec8150da4ef9ad17f67771200d76c4cfb7c3c4655 SHA512 61f465379faa3cf0a85b7f7b07702f4c55601191b9febf58a31e0a5b1b3ec25afc8db06ee0347c23c7c4dd142e948a8f4c017e772367ff660ec579902bc1f8cb WHIRLPOOL ff230a5f4ad8591455a1e13558ef511a6f5e2ae7d57e628aff076635abcab8147dc68a95a515b671fa7c449c76d806aab891288d1163de8e70cb694fbb8d641e
DIST thunderbird-bin_x86_64-17.0.9.tar.bz2 25951910 SHA256 0e7d90e18507420ccbf74cc8ee8de17a2da983c7031cfbd08c490f49de1476f9 SHA512 8b77306cc41133ca4ff04f49220f36f6d8c73117e1742cad5b6172a2151cc293459282d6202cea1c5871bfa2f780f025974b989f7016cce2c06cf5eb914a2b38 WHIRLPOOL 7f0e0c8c1c96c93cc6ebae90046ce4b8c9d27385ace6a00d5dd0ebfd4a0c152e5cb2465b908136d850569a89516d133db8fd4ea668026e3c954c4a6735615a9e

@ -1,137 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird-bin/thunderbird-bin-17.0.6.ebuild,v 1.3 2013/05/17 10:06:30 ago Exp $
EAPI="5"
MOZ_ESR="1"
# Can be updated using scripts/get_langs.sh from mozilla overlay
MOZ_LANGS=(ar ast be bg bn-BD br ca cs da de el en en-GB en-US es-AR es-ES et eu
fi fr fy-NL ga-IE gd gl he hu id is it ja ko lt nb-NO nl nn-NO pa-IN pl pt-BR
pt-PT rm ro ru si sk sl sq sr sv-SE ta-LK tr uk vi zh-CN zh-TW)
# Convert the ebuild version to the upstream mozilla version, used by
MOZ_PN="${PN/-bin}"
MOZ_PV="${PV/_beta/b}"
MOZ_PV="${MOZ_PV/_rc/rc}"
if [[ ${MOZ_ESR} == 1 ]]; then
# ESR releases have slightly version numbers
MOZ_PV="${MOZ_PV}esr"
fi
MOZ_P="${MOZ_PN}-${MOZ_PV}"
# Upstream ftp release URI that's used by mozlinguas.eclass
# We don't use the http mirror because it deletes old tarballs.
MOZ_FTP_URI="ftp://ftp.mozilla.org/pub/mozilla.org/${MOZ_PN}/releases/"
inherit eutils multilib pax-utils fdo-mime gnome2-utils mozlinguas nsplugins
DESCRIPTION="Thunderbird Mail Client"
SRC_URI="${SRC_URI}
amd64? ( ${MOZ_FTP_URI}/${MOZ_PV}/linux-x86_64/en-US/${MOZ_P}.tar.bz2 -> ${PN}_x86_64-${PV}.tar.bz2 )
x86? ( ${MOZ_FTP_URI}/${MOZ_PV}/linux-i686/en-US/${MOZ_P}.tar.bz2 -> ${PN}_i686-${PV}.tar.bz2 )"
HOMEPAGE="http://www.mozilla.com/thunderbird"
RESTRICT="strip mirror"
KEYWORDS="-* amd64 x86"
SLOT="0"
LICENSE="MPL-2.0 GPL-2 LGPL-2.1"
IUSE="+crashreporter"
DEPEND="app-arch/unzip"
RDEPEND="virtual/freedesktop-icon-theme
dev-libs/dbus-glib
gnome-base/gconf
gnome-base/orbit
=media-libs/libpng-1.5*
x11-libs/libXrender
x11-libs/libXt
x11-libs/libXmu
>=x11-libs/gtk+-2.2:2
>=media-libs/alsa-lib-1.0.16
crashreporter? ( net-misc/curl )
!net-libs/libproxy[spidermonkey]
"
QA_PREBUILT="
opt/${MOZ_PN}/*.so
opt/${MOZ_PN}/${MOZ_PN}
opt/${MOZ_PN}/${PN}
opt/${MOZ_PN}/crashreporter
opt/${MOZ_PN}/plugin-container
opt/${MOZ_PN}/mozilla-xremote-client
opt/${MOZ_PN}/updater
"
S="${WORKDIR}/${MOZ_PN}"
src_unpack() {
unpack ${A}
# Unpack language packs
mozlinguas_src_unpack
}
src_install() {
declare MOZILLA_FIVE_HOME="/opt/${MOZ_PN}"
local size sizes icon_path name
sizes="16 22 24 32 48 256"
icon_path="${S}/chrome/icons/default"
name="Thunderbird"
# Install icons and .desktop for menu entry
for size in ${sizes}; do
newicon -s ${size} "${icon_path}/default${size}.png" "${PN}-icon.png"
done
# Install a 48x48 icon into /usr/share/pixmaps for legacy DEs
newicon "${S}"/chrome/icons/default/default48.png ${PN}-icon.png
domenu "${FILESDIR}"/icon/${PN}.desktop
# Install thunderbird in /opt
dodir ${MOZILLA_FIVE_HOME%/*}
mv "${S}" "${D}"${MOZILLA_FIVE_HOME}
# Install language packs
mozlinguas_src_install
# Create /usr/bin/thunderbird-bin
dodir /usr/bin/
cat <<EOF >"${D}"/usr/bin/${PN}
#!/bin/sh
unset LD_PRELOAD
LD_LIBRARY_PATH="${MOZILLA_FIVE_HOME}"
exec ${MOZILLA_FIVE_HOME}/thunderbird "\$@"
EOF
fperms 0755 /usr/bin/${PN}
# revdep-rebuild entry
insinto /etc/revdep-rebuild
doins "${FILESDIR}"/10${PN}
# Enable very specific settings for thunderbird-3
cp "${FILESDIR}"/thunderbird-gentoo-default-prefs.js \
"${D}/${MOZILLA_FIVE_HOME}/defaults/pref/all-gentoo.js" || \
die "failed to cp thunderbird-gentoo-default-prefs.js"
# Plugins dir
share_plugins_dir
pax-mark mr "${ED}"/${MOZILLA_FIVE_HOME}/{thunderbird-bin,thunderbird,plugin-container}
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
fdo-mime_desktop_database_update
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_icon_cache_update
}

@ -1,137 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird-bin/thunderbird-bin-17.0.7.ebuild,v 1.3 2013/06/27 20:49:18 ago Exp $
EAPI="5"
MOZ_ESR="1"
# Can be updated using scripts/get_langs.sh from mozilla overlay
MOZ_LANGS=(ar ast be bg bn-BD br ca cs da de el en en-GB en-US es-AR es-ES et eu
fi fr fy-NL ga-IE gd gl he hu id is it ja ko lt nb-NO nl nn-NO pa-IN pl pt-BR
pt-PT rm ro ru si sk sl sq sr sv-SE ta-LK tr uk vi zh-CN zh-TW)
# Convert the ebuild version to the upstream mozilla version, used by
MOZ_PN="${PN/-bin}"
MOZ_PV="${PV/_beta/b}"
MOZ_PV="${MOZ_PV/_rc/rc}"
if [[ ${MOZ_ESR} == 1 ]]; then
# ESR releases have slightly version numbers
MOZ_PV="${MOZ_PV}esr"
fi
MOZ_P="${MOZ_PN}-${MOZ_PV}"
# Upstream ftp release URI that's used by mozlinguas.eclass
# We don't use the http mirror because it deletes old tarballs.
MOZ_FTP_URI="ftp://ftp.mozilla.org/pub/mozilla.org/${MOZ_PN}/releases/"
inherit eutils multilib pax-utils fdo-mime gnome2-utils mozlinguas nsplugins
DESCRIPTION="Thunderbird Mail Client"
SRC_URI="${SRC_URI}
amd64? ( ${MOZ_FTP_URI}/${MOZ_PV}/linux-x86_64/en-US/${MOZ_P}.tar.bz2 -> ${PN}_x86_64-${PV}.tar.bz2 )
x86? ( ${MOZ_FTP_URI}/${MOZ_PV}/linux-i686/en-US/${MOZ_P}.tar.bz2 -> ${PN}_i686-${PV}.tar.bz2 )"
HOMEPAGE="http://www.mozilla.com/thunderbird"
RESTRICT="strip mirror"
KEYWORDS="-* amd64 x86"
SLOT="0"
LICENSE="MPL-2.0 GPL-2 LGPL-2.1"
IUSE="+crashreporter"
DEPEND="app-arch/unzip"
RDEPEND="virtual/freedesktop-icon-theme
dev-libs/dbus-glib
gnome-base/gconf
gnome-base/orbit
=media-libs/libpng-1.5*
x11-libs/libXrender
x11-libs/libXt
x11-libs/libXmu
>=x11-libs/gtk+-2.2:2
>=media-libs/alsa-lib-1.0.16
crashreporter? ( net-misc/curl )
!net-libs/libproxy[spidermonkey]
"
QA_PREBUILT="
opt/${MOZ_PN}/*.so
opt/${MOZ_PN}/${MOZ_PN}
opt/${MOZ_PN}/${PN}
opt/${MOZ_PN}/crashreporter
opt/${MOZ_PN}/plugin-container
opt/${MOZ_PN}/mozilla-xremote-client
opt/${MOZ_PN}/updater
"
S="${WORKDIR}/${MOZ_PN}"
src_unpack() {
unpack ${A}
# Unpack language packs
mozlinguas_src_unpack
}
src_install() {
declare MOZILLA_FIVE_HOME="/opt/${MOZ_PN}"
local size sizes icon_path name
sizes="16 22 24 32 48 256"
icon_path="${S}/chrome/icons/default"
name="Thunderbird"
# Install icons and .desktop for menu entry
for size in ${sizes}; do
newicon -s ${size} "${icon_path}/default${size}.png" "${PN}-icon.png"
done
# Install a 48x48 icon into /usr/share/pixmaps for legacy DEs
newicon "${S}"/chrome/icons/default/default48.png ${PN}-icon.png
domenu "${FILESDIR}"/icon/${PN}.desktop
# Install thunderbird in /opt
dodir ${MOZILLA_FIVE_HOME%/*}
mv "${S}" "${D}"${MOZILLA_FIVE_HOME}
# Install language packs
mozlinguas_src_install
# Create /usr/bin/thunderbird-bin
dodir /usr/bin/
cat <<EOF >"${D}"/usr/bin/${PN}
#!/bin/sh
unset LD_PRELOAD
LD_LIBRARY_PATH="${MOZILLA_FIVE_HOME}"
exec ${MOZILLA_FIVE_HOME}/thunderbird "\$@"
EOF
fperms 0755 /usr/bin/${PN}
# revdep-rebuild entry
insinto /etc/revdep-rebuild
doins "${FILESDIR}"/10${PN}
# Enable very specific settings for thunderbird-3
cp "${FILESDIR}"/thunderbird-gentoo-default-prefs.js \
"${D}/${MOZILLA_FIVE_HOME}/defaults/pref/all-gentoo.js" || \
die "failed to cp thunderbird-gentoo-default-prefs.js"
# Plugins dir
share_plugins_dir
pax-mark mr "${ED}"/${MOZILLA_FIVE_HOME}/{thunderbird-bin,thunderbird,plugin-container}
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
fdo-mime_desktop_database_update
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_icon_cache_update
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird-bin/thunderbird-bin-17.0.5.ebuild,v 1.10 2013/04/11 14:22:17 zerochaos Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird-bin/thunderbird-bin-17.0.9.ebuild,v 1.1 2013/09/18 14:14:33 polynomial-c Exp $
EAPI="5"
MOZ_ESR="1"
@ -35,7 +35,7 @@ SRC_URI="${SRC_URI}
HOMEPAGE="http://www.mozilla.com/thunderbird"
RESTRICT="strip mirror"
KEYWORDS="-* amd64 x86"
KEYWORDS="-* ~amd64 ~x86"
SLOT="0"
LICENSE="MPL-2.0 GPL-2 LGPL-2.1"
IUSE="+crashreporter"

@ -1,173 +1,6 @@
DIST enigmail-1.5.1.tar.gz 1213954 SHA256 234ca3c8f7c74afb64ebdaa4762e358f35a72c1f8de007b992497fc2db803af0 SHA512 90d0fa7ce4aa8edd788be234cd85e8e10b6ed7043f1f7aab23a94f0f7958b23b37dce4b96fd552d523c9bdccf13da1dab5624d279a1bc0c4b35be2712c379cf2 WHIRLPOOL c8ffaef0f89f5403f2ba51f2d37eb23a1ae0b3d5abcc28328b6e293ad2a6498368863df0e718ae339b7b7e1622d78d95e1575080b3f600861daafe59a43c8aec
DIST enigmail-1.5.2.tar.gz 1211395 SHA256 f20d6d1be1ab12dc2f1208d8f01227fd7e5c4dcf5d6f4bd0833a932b58973a26 SHA512 21df4726b203c5840134eb925df79c8bcb06b201217000fc636cf43b6d7d7fc8850c90de8998838f3d07b02e027f7cab09b719d600d034c4110cce6befd690c5 WHIRLPOOL 496320d20af8b8254d55976a269cececd27efc8d948cd85c016b4a34bab5f600a9698f423a6dae4f003fa2020ad6e7e475d2c1a1819f529b14e7bd13d26aaa51
DIST firefox-17.0-patches-0.5.tar.xz 52792 SHA256 832d8bb1575473773dc78a66ab2bbf14a1de429f3ca8dc09600f0aa41747b1e1 SHA512 7a28c4c8253e73ab9ffa273ea6b8da7bf2a9422e31dcc1ec6fad1c17e5d8490c9432b517952c1db4b29ea93bbbb8e0f5727dd6ac476d670115810d4cf4b002b7 WHIRLPOOL a2a4c1a9d0503471c206def35452b113e9aadd3a8136d343e45955dba70fb39dfa6f649fdacab54e1b1f606037189e3cbc42743a6ed43aa912a42e4fe43e3529
DIST firefox-17.0-patches-0.6.tar.xz 52684 SHA256 780d7aa5990e39ad105b21fa2584379357749e0eb16e0eaf9be66464a02f3de1 SHA512 56fc3970233e144bea5f6d6be6fdc7c17b1095172dc600c02be4a0cd3764958480e934a0b2ce1ab2a3edc237ece9cf1b7a2f7914828e6c5a3f519860ea2a5b5d WHIRLPOOL 4e2bdb64dfb23f66bec5bf41e34d61aff22e4f7bc14c7c981077575364c8a5aae889d941b99fbf21d248854648b70f6e4c2e6a2e06ab70b1d4495d539e2962a4
DIST thunderbird-17.0-patches-01.tar.xz 820 SHA256 79bf322258e0efc7682ce71ea84398e4dbec55b912acb264e16ddae72917bd8e SHA512 94ad743f86d95cb437bbe3be52beb8ab7c97acd9f703841f9445f94672d764cf6b9a3dfc065a6c54f24eeb16113a62708290512a3f54389c538a52fa93be7e06 WHIRLPOOL eb234826caf0f648d3ea8043b49fc2650f3a011eb28db661122e50abab0a6098b467e580d3c120b97a29919934c072e931f956bfa6676a2759cf46a2db88f282
DIST thunderbird-17.0.5esr-ar.xpi 445976 SHA256 a895c50567eb0060854019921ab1b7f9d68ca56d76f7f73d7d2fe4fa201fbb50 SHA512 73ef90e9a7c0ef67c512f844dc237ca3c581bbe144acafc834c5131596c3cde393e2cd3a9ae703a3e11968f603f97e3c34161f4c13bd5830ef21645c0f69b5e2 WHIRLPOOL e3f8d970ac62f45aead2d57a2e0dd20661582b1a6e3509920d6218be7188fee1c63a4f3a752b538dc42c777a84acdec944793b54e6aa0fef7183032aed79041f
DIST thunderbird-17.0.5esr-ast.xpi 388038 SHA256 7afb6f84579dfa49e2b0059358c8e6aebc7b5783950ba47fc3426ff55e16d937 SHA512 eefa2d7aef3fa23cee741555bf7c6504049fb51568c8e44dbc88dcd4f62064e756376dba0fa63e3a812a5f7e313c34c66522f0517d9f06902f815c4fa0f377f3 WHIRLPOOL 6f59a451a467dd6c32d1d8cb872bcd650f6b5eb3a7f3cac06e8447261d23a25fc9362985696eba5860cd1389935462217cc7f4da63f22fd67ead1517c24e4a0b
DIST thunderbird-17.0.5esr-be.xpi 426695 SHA256 d704cb0b07c6915e80c4a8ee3c397831989b7b210e7f0e696a28e1c3948ab498 SHA512 72a9af581c63df99954f891c3ab6e1b983231d56ddd5312cb3f3e210550257c520c00c505d10176933d75f07e24642ab9decae12548589e7ccce5562ff881906 WHIRLPOOL 69bd6139c6c9489157e287499a822e5a463d4a8640bb6a9cead6619e10bcf732bc7cd96eb448b6efcf8ee7f9be9f04235e5859b30b8434a4fec2f2f498620290
DIST thunderbird-17.0.5esr-bg.xpi 467637 SHA256 4697a9a45c41116f101bff7b0a01dacdb79ac040dbd932fc70ed081cdc45d173 SHA512 3dc424a5f36b700d6489a36cc984d4687ed1abf7958d15484e3f70df5178302da5b94c527e61803254514754bf10d88a91b3278c4559114efdf656455d5865a2 WHIRLPOOL 04b822c5af856b69b8f673fa461df7bd215a7a160dfd8a11fdfdafe892733ec4367d0182a0b00bdba5781dfe13181488736bef86a9fb53d978acc31e8745dc11
DIST thunderbird-17.0.5esr-bn-BD.xpi 520602 SHA256 f773657f5931ba744c80acf74480c25431e088c6eeea82c5d3ded5407449df33 SHA512 af7a7721bf018f7d879bad0b957acac02df685f22021fb2d9564e791db0c474e6a3bd49b22fef56a05617cdf8bccb790ad4d66a0811d71157e36741227055b10 WHIRLPOOL 97fe048b0844d56933817fab7f9c70769a2046f81d45236a5885d71c26bec082598ac9461f58571fcce423bf930df98395f23a56eb46ceae3ebe8d9c845c1192
DIST thunderbird-17.0.5esr-br.xpi 417071 SHA256 e43198ba660f8b2b5c9ef2dd428549c98c27cf3398eccb6e4d2e77e4bd79eaad SHA512 393fbecaff671c91d90053a0c53bb8d3d8689e090b0216a8610f7579df4ac65a2a550bf2f32bf0cfda2264a3a07336b68a10244aff98923407050efc0dc99eb9 WHIRLPOOL 929d2ff88849e78b9b0b3055fb2f7f2f5b16baf753f4ac4192be0c803840a5c2f19ff969224ec7fc5fead7a4bfd9c6dfee12cf612e8f8a4ddfbb6468b887666e
DIST thunderbird-17.0.5esr-ca.xpi 418407 SHA256 644a001ee2100ab455b66cfcaba491af6ba75120f69d4cc8ac5b927339c529f0 SHA512 ee73b50f565dd7d54a694ac27a3ee95806fcf03a39c54ef1d820afc5895ffc4245228919fa1e146f197eb9f13cfb2d49107158f6de76f0c6b97470accffe8fd2 WHIRLPOOL ec8db1a503f6465af1ecbea064c9ae45637e749780084b52302b7898159a97feb084325bad1f987067b2815092eeb902dede979a0aa49bf7690e4cc05e95b68c
DIST thunderbird-17.0.5esr-cs.xpi 420627 SHA256 357bee0902b90a1210aa9843c8e7857eae1b94370020c8487282d59a488bcc78 SHA512 141feafd81e7abe82878fcb46a4c515ad8479d6909c7f4092cc0dfa8442513d8c0d6f226580b2bfef1ce7a6b9330f0e30086ede99ae45f65f561c2a875b75bea WHIRLPOOL d1bc41a68ca261608df69c5d52b8dc0391ede3661a4ce25070c8b61caac7d6f0f5112617026d3c8ab88bb5b53fd4172117ba4a1c68366618dd766f83f23afe94
DIST thunderbird-17.0.5esr-da.xpi 398980 SHA256 c8ec9031d017d4bbb90eafa98fae5c784d08c0dd4358b4f4574d6c317548caeb SHA512 cedb879aa9606245a1df71d8225f6095befe7a536892bffeac4db278b9373209024c8bfe16fc9edff6e7585e27c6e587302e2dc630e73f1ddea3607b68b6bef1 WHIRLPOOL 2eb51e304297a1ea5ea86625ab965064bad2ce62cc242127f4536fe9c8b63343448be245c8cea7f84805a3ac4a813a12bb1b98ca9f55611df751f888135590d7
DIST thunderbird-17.0.5esr-de.xpi 393632 SHA256 20246a979c14a4544fac5ea35d319258d51d593eff2a602d04c80d62f7d61574 SHA512 5abc724011729dcd9f52958dc8a11bcdbda0964b160741a74429df1e8980ea4594da68e15f3a71aef7aa670f9608bece61df9fabf4ad73bb7a98b74d14cb9fa7 WHIRLPOOL 64f462f5a57dd120275215d69533c7221c03818e9468695b75ec1339535589605579a41102c4a9ca50c7a3939ca667bcc8bc0b8aaf2b2c6179b5a037e9dc444f
DIST thunderbird-17.0.5esr-el.xpi 447926 SHA256 1fc60b83adc7c86f93252e842475f3194f12520b50518ab70dc1c2b0b540bf82 SHA512 a4e47b3174ed35e2ebc89b42d5b55b7850c655f358a64aec380b6296fa6e284b057a79fa27471661a05f197618f702195f749db267597c9848a0e39740b08990 WHIRLPOOL 36cdcced6047d431f1b4ceb8da7f32d87b1de332b5085dca9d714526344f1345073b333aa39888a0206a510c1d6ff6ba7ba226de975faea1ac1cd4711756fb42
DIST thunderbird-17.0.5esr-en-GB.xpi 390694 SHA256 d622039e5f4c0871508fdb654ed96ff2cda85721535e08e16962aa9a700c83d8 SHA512 86fe9bf8585e763ba46a9af5cdfb64c9c10741e3031e61c2e059748b06d905cca78bbdabbb1ec9a6df60837cdada5907ce8aefb5b62f0f6e0dc654df8b42d468 WHIRLPOOL 1b100b09a7afca70c2a36aff6b7e37d9e2675a9db5e129badfcc917c7f327332ab53b3b84c851640829f41b72afba997c1a2a5eed0a0752836f5c397914a79b3
DIST thunderbird-17.0.5esr-es-AR.xpi 415499 SHA256 9f56e7295c4de06c4cabcc0fc64db26423f9415ba419202b016dcd61cf397ed2 SHA512 10165118939ef6c7892457ea30041dcecabe8a9f321b7f9ae386ecb9b5cbfeb3e5e464f5639f559caabeb275decd89cc5beac3af084f32250a8845add304f030 WHIRLPOOL 923ce62590c24a588ee55f5d1fb2b87adecdfc8fc2f19dadca774fe0fc72bad90b362c25523d517aa510352a41aac02c27877af0ffe58325baacd0bb70e6ded1
DIST thunderbird-17.0.5esr-es-ES.xpi 356861 SHA256 1e9f7b437ab08e91e5fb039dd617891229357acf3b4a2ef487c4449521c86656 SHA512 9e3ae4de6f72673aac4f679dcf66e9d8045f14cce85e4da72affb96f75c5515a66d1f0a3496774925f659d453e209edee90c03810cb81ae35d6a5240bb34d696 WHIRLPOOL dab5488816b034b935e1cb3108a303d7cd24be9b9b19590db3aba78e83c6585965ed4816d95aa17feef002dc434ec70592968d4f1912bfe192cffe9701d73b24
DIST thunderbird-17.0.5esr-et.xpi 411892 SHA256 7c515dd0615c14ef1bf26dbbaeb8324d5597b547c03ff7b8201e1007661be845 SHA512 50a172d088acea6eb0cf8ce76125f3ce4d424ebaf76dc34fdea107e9eaaa85a04d4c628a2fe06696f426057aeafe3a4d99da0e5c04cf8e52ef7d93be541d8ce1 WHIRLPOOL df9cea0eb44a1e3f41485d49e73e1846ad7861f5c8667ded4c52dd9a3d55b90595c7b940a62355e21c3206dbaef612783a41575b9d90392bf45672b5becdee7c
DIST thunderbird-17.0.5esr-eu.xpi 407189 SHA256 6b241859c6eb30dd4ec3ea3f436da426475e677257586e1a3126ac8a6668afc7 SHA512 1698fe569d161168e17b910bde1d1c456cd54e7f78bbafb8dcc4fc3bcb653e884a6fcfe1972d7e4d4acdf47cfd898bb8a2e5df3ae08b7ea83e9bbe0e4c1a6fa6 WHIRLPOOL 4c6d975c861277e43e2e7c5b78c7d332247f09bc2df45c90a0e7b2926879731e73fdfef88b7b562aaaf91dce43c48a85a2793567939382e9a2d3edc17ed7c89a
DIST thunderbird-17.0.5esr-fi.xpi 413620 SHA256 f039a084cc38d9e1f33ccb6cb579b8abe4f7ae95a9fc04d84734859990191475 SHA512 8b601ef64bccf3b80ef2afffec90fb72aca50046c40bdba1e4fe26226377d74aa414688320d817f76ebcceef8a6276b65e702ae8ced1256933d3411bcd3896f0 WHIRLPOOL 284398a9dec0c5b6bc5b4bbe448922f57054e219a55090641073598aa28be4d0d3a48f418226f6a0ec3a58b2df0fdb5996a35191e56327b7a598cc5cc287ff68
DIST thunderbird-17.0.5esr-fr.xpi 420826 SHA256 2ad4ae0da6e482cb667deaa9fd439806c72d1f14b8530aff3c8e3750b1d47ec0 SHA512 790847e08c3560010df004665cf465560883ee13e7fcd2ce368c791f31ac2325c39e840a4c9a870a72117412fa16a64adf20fdfcad8cadac3ca731346c6a85ad WHIRLPOOL 755c4cd80bd5ac02fb87bd4cbc99df3d17826e61f02d0e8d89f65f10ea713ed0452f31bc40ee125009b704d894b0483a40f230d2796445002dd580b81fe4ba85
DIST thunderbird-17.0.5esr-fy-NL.xpi 415712 SHA256 ef09775e3974be8b6994770793dd9edd008e27b0841194d91f5ec020b5676c49 SHA512 37acb4691109846052a02fd7992a131fb0fdea830552dfa13c15da0deb4b68c2d356e2dedd1837b7f82754586afde0b73b98f8ed002c0ab1893c5f4e9544dc13 WHIRLPOOL a2ca9a249975f4bfbf504546979c7bbd45c71944f980e65e8883a0b73dbd22143d031c022734b226f11f3263f0b12175ff4663cb5fdcf051f84bcac563a84a04
DIST thunderbird-17.0.5esr-ga-IE.xpi 425395 SHA256 823d78e621fecca08589773ded8dd6099faecedf5ef4097da66ffe16c78e29ed SHA512 4d5989b6403213b00811ee19e75a4428a3c2b09be13500476577239ea269a4234faec560d826a2d5d8648c50119ac5f535b5ab3b2c49e8b42f43fd389bf2744a WHIRLPOOL 049b1d276a468238e0ed0571f8508322dc633eb391c481b3ce97853cf61aa00cc3c0e63d4a9cb2801dace38b2c1390af8988295d8ad5d3bfe480bca153a3d990
DIST thunderbird-17.0.5esr-gd.xpi 428939 SHA256 587dbff956aca0f295322b847f927c74c8d032ed4ae0f566a11a5de0c6811f85 SHA512 1645a99b35e97ec8e4cd35bc47683cbf348ae590edf688203b67c85603fcb3df58652a15014734d3b4517212988adff793a8c133e54235af3fcdc5d2b6812396 WHIRLPOOL 09c4843c802ce25cfdeb8ad9ed7f81a00c8202e9f35278e7c6d107153ee69e622eaaf2af3436a6c55672568ecfebdd897cfe2bb00bf23c6137cab24265f52f41
DIST thunderbird-17.0.5esr-gl.xpi 410370 SHA256 125a14bccb420d71792e8fc52655032baffde887d2c322527f3e11e5c2d47069 SHA512 75863e489f379b55e05aaf6c4ba37458cb6a31b8d70ef329c2db9e8733f2dce2952bb9496f691484195602946d9ba179da9ef6637298933b5053862f4c2b9271 WHIRLPOOL 25f9c5dc9615597c65c216fcfd7febf2741d95134bbaa677ab83d92b24b9df4029b8c2098282ca8806071a556844f7e61ea6a769aca4770f63e14865f3f62e5e
DIST thunderbird-17.0.5esr-he.xpi 439504 SHA256 f15933476b38aaeead09a9517c2bc89f236b5dbf595f65e8be05e0f85ac96fb1 SHA512 c7f27727a6e3431f487e3b1b7b13d5c13619d34fb79b591325e36ae5993086e10a5844c5503dc151698acfc4adfa3b3a529267f9a8912a97e4d955de4337120b WHIRLPOOL fac370f2da361ccc8fff2150dc542c16629de674de5cf1628386040cf668a71ee0a33b76ca2844f8063783f4addb0ea15c4e76a6f472864c5254bac0bc1a9bc3
DIST thunderbird-17.0.5esr-hr.xpi 411413 SHA256 3028f454170dfbb772134b4c62d00135ca7533127ecb54bb9202fd9765fbdf5f SHA512 ae8721d4d3428037b8598d07a4db8b677ab0426faf7570f7e84baacc3257c2d45dde5e47fc0fb8625b13b61c208bf23165ffce4ff343704367c7cc0c57852537 WHIRLPOOL d30e641ffb44f1f7fddb8b37ed72312241747023406874bbdfcd22eafff8c326a5ee7bf6e9bf31d86eb6d5d25ce8119f76b37dd7106276a58bdfe9f6aae1a461
DIST thunderbird-17.0.5esr-hu.xpi 433186 SHA256 77292c922fd097fbbce065b7ce95e95890159bdf496e0fdc36f7cfeeecd12da3 SHA512 8661c092255b943e6ef1588e6e91bf3cd33c7683c91421710e7adac59a023b8e3276bc0510c44ab1d67a78509008badfc6c8e090d075ddbbc6ad3a82b3c409a0 WHIRLPOOL 800b7e68a16972179524318d5f5fd53dcdbd924e21abe2ca74fb4b7f5c5b709a930b9b54e0b6aa6f08a4894655ebf3e34623c6c9eead6d39d768ec43dfc0f5ee
DIST thunderbird-17.0.5esr-hy-AM.xpi 611963 SHA256 bdcfa641e2bdb455869e00029a0e5d2420ab3e76cfa16b02ec739bc08ea5cb88 SHA512 733fbba9919461433375acfe6cefb9677dee0e4da7cf6ee5989d3252b32c9f3b1dcf29b01371834782701df446eb1896ce44e7d12e6265b6dcef929cf484dc59 WHIRLPOOL 3840a1fbd13803822180b3f4c0612ebb19e75ffc3456547935b9831d857cf921f628de829b4f4d0199717b70f83d56eeca5d54dcfb72fcadfce56a3c7695715d
DIST thunderbird-17.0.5esr-id.xpi 439574 SHA256 3e7833b9469107adab3f2fd89526299e641f166ae58ac47e3f4978f14b08eae9 SHA512 70a662acee534599fbdc3d8f03d1f35d9116f09b4d17c3c10ab49171b17b83f38758c606836343cfde52ceede2e9843466277ca7de44a685489cf97177a1d359 WHIRLPOOL dda8add108849164a7a775a785b5d0614c2a76debe9c65423af4304e38222340a1c29d6d3e0319b27b4d2ac7243b135628e8599f7d81e2b317d4314716d52e32
DIST thunderbird-17.0.5esr-is.xpi 414068 SHA256 a1a1664d4ef35af52aa701231d6cee733e70411d24f3c6bb27a2d003022f5dcf SHA512 20dee74f13c95d540ab8ad4f64483511383ce8d7d0c9d0c8d9f7371a859966e76871baf6fc98b1ee1d3fb9672372df46838663de6f3eb735493865f1ea0f2b16 WHIRLPOOL c67af1841b879c0fce81e4074e9a64b43cb6205dad2c5cfa37d657d91005b7a9e8fc8c42b742e3b421ea4c89b71056644fdaf181f0bf803483b8ee2bf052ff11
DIST thunderbird-17.0.5esr-it.xpi 348621 SHA256 e94ff8019ba450384155b9191a10a6df15860360a01d79b0b72d19ab9f60c004 SHA512 8715fe3fc1632421327853621fb430c3f59d2c1dea29d9d2016ab8feeb7bc2cc6c637868a4bb423fa35d3859a09313d9ab0e2787ad289ecb3385ffc0e0c1f403 WHIRLPOOL a4408a371b330e995e359614427cd8892fcae0e4371ca830884f93289e2371f59a8b56dff15c2f1180fd6be465039134c6d04d3b26029b7bcd424e4f901802cd
DIST thunderbird-17.0.5esr-ja.xpi 463488 SHA256 e0c40d7192c30a8ec3b2a04eab251aac8e16b99ecd53e5de880dbbfa3cf549a1 SHA512 49995b772ecd4b24cc033d12112eba3485318bb1aafa02269b133a0a94e00809f70876299d0e56be898fa8080700e32a2590749b64d212fe5d49771b5a3a3612 WHIRLPOOL 904b4b0fc5e321c4817310360bcb10b5d0575e2852b33ed6b5964b4462a6ba843bd0471913992f98523ae72ae57160283bbb011a076477a9ebbec54591273c03
DIST thunderbird-17.0.5esr-ko.xpi 412964 SHA256 b5e4beca15983d134bd92d09a8f2846bd0e1a7469d896d6f83f6c1eccab244a8 SHA512 049a7b57a9b10a012009d89b2ed47e754a39822aa4bd614aac354b4ab411ae53f0a13bd9f9cf87812b4f931115448bccaff3fa1defc7a0172ba7370114f6be5f WHIRLPOOL a229695810bbd9e38d98babf5ee01a2510f76f38066b3917fb8426c179156667db83e856946aac66d949e79fcd4783577d9d478ccb20015cf90ed8b2770fa1e4
DIST thunderbird-17.0.5esr-lt.xpi 519802 SHA256 8412dd792bda43c960f4f86070b5645e6b30b7ace9cf478f27b83a2ae2001107 SHA512 e17a1cc71cb1f73d01a9ded9ae60d4ef920abbcba5291d048eb3b04cfed453c6e23b3cdb5e9f781757a8095a111d403c01fa743efec6df293728e7f4597fca64 WHIRLPOOL aa4b57d835cfa63f0662a57684bbfe08068d12abb5752ca0695c74370e2942f347acc4624a1944238aca30b5e377dc180da0714292a897abdd6e6d99667eba50
DIST thunderbird-17.0.5esr-nb-NO.xpi 408519 SHA256 0ff536aad4b03355d221a084110ac37162096c5e7e0eaec267bcf15766bcb582 SHA512 86895dc2256e31c4b00fa3f883804d5873d98967bf3d9f87d874620ea39b722752a8877bf4411f715a74bcfc6596e04439f13e0d576ad69a54aa2be6d62d41eb WHIRLPOOL f429990e68e472995f4fa415f419fc9635d097d322579f6153f743970189f8e2845bf54948817a857bed0dc108b59b3125584f23f5311c9bee8d6c56a4891a62
DIST thunderbird-17.0.5esr-nl.xpi 408527 SHA256 65c3926f247080a11dd7e6dd24e4ecaef251ee0ff1188db3b338e193ab849e7a SHA512 82a8a08f6cd257d5fabd8472deff12fff851a1458a028ebe9f2da9b515cf73dc82034e4a82ee6829188c8aceedbb8735ab95994c2f53e5c5b5b72ef8338d04ac WHIRLPOOL 435cd3e95ab7187d861e6e133159771b39120c81b0ff2389eb662a4f8175cae0a49e05f9f94fe55dd09c8fddfc481d1223b628a96e0d6285bec17612e186833f
DIST thunderbird-17.0.5esr-nn-NO.xpi 431472 SHA256 3efbf9f409b38cf742c974a6c418e2d44bd80c040a0d2cd0c88548dc3265e428 SHA512 48566e78b773f31f1fb75656d5d9ada6437c80cd5e6334cb819ac017a466ced58717e3f9ed11dd146c17f7be50892ab3407706c96acc25bd8c502290457d2a1a WHIRLPOOL 708d22823594ebef057503b8264b26f079149a645c1e00079804dfd348789f1a9201c9e7b20dcf09500647c8fab216cedd0b9dbae2b96fa686db7a85ae3da7ca
DIST thunderbird-17.0.5esr-pa-IN.xpi 492444 SHA256 da1c113a07407ecf61c20a65f98c0fb364e6a6df573875135d31c4caf31c1272 SHA512 3a398340db08bd74017304183fa63e819e588e957044b5635789fbe82c7397a63f0e8d98fd27393bd190302f642cf832cee51a630c76568a0e8ff955b03d049d WHIRLPOOL 8f301fa58c20a432245f2353c09e3bb101e8abc1fa0b5a65a848c40bfaca64eb487746f100b8de1c20c8c2c2f874089943040d684e2b01bde1ee736a5fc4b407
DIST thunderbird-17.0.5esr-pl.xpi 402114 SHA256 26079889be42bbfe0a561f3c72a2bef89470a4312544c600dde7fb9106725280 SHA512 8e5ad4d630ae589edcfe91c083729925e8c2ea25040dfbacdd2c273c5cf9afb119667357cb6b0dfb34d860918badc48c9e81ea79f42264cab9206953803b5eb1 WHIRLPOOL 8e8e32b18376bc544d6666bf27925ba27f4b811143e059bf83e12a893d49bdc3170f298c73830fc1e876a59a4eee5ec9ae6b40d2ac8029c841f7d44403c2824a
DIST thunderbird-17.0.5esr-pt-BR.xpi 415778 SHA256 aea1e660b1da7b6af02b44b211e5945acdc4186573dd0fb0e6c486d5155eb41f SHA512 67ac80f839c4f39f6df04f6ca4258ca259500009d17df4e1fa84602b5b3584855ce9f15a0800a5d3352723265f58aff75cc53e0a447d08f9eec357528511ff94 WHIRLPOOL 05181f26479e745f9b6e6e14a4febee3cbfd82f744cbb88aef26de27cbe19efe4914005ae4616cb34f80ee1ba63cb8fd386181aa0738274fb686f20e59e234f5
DIST thunderbird-17.0.5esr-pt-PT.xpi 445754 SHA256 85747c873660d5a4f3e94e2eedcfdbe63a73292ffb77b9d3a182bd5b682c116e SHA512 03f07a60451538ee23be6da2086d7755964a61c402873a689299ec1fe87f93840b58f63df891233cf70e76eb834b81b43bb015bed14a33cb33f4926b00f283ed WHIRLPOOL 270b042ed4ed0df5db0fdc0d7ef66a097b8851cfdb2b54c132c31c31ee9d0d5886b77c4203eb431b5301d64f09f4069a746123184c51d99910e7baccc6d5bbd2
DIST thunderbird-17.0.5esr-rm.xpi 415531 SHA256 f76e4465a280f8b71f9937dc902d1c4dcf1adf835b1daed1916f619b87831f39 SHA512 89150dcc5aa4a2646fcf05bddb39148b553a93fb64d6b5be5d99956b49883aee1ad1871274fc0a6c78a79387e61167f74222f32f551fc61a187bc73f6d65395b WHIRLPOOL d2b545353dc15d6e002887a3218e5dc592c6c6bc90fe13012690467a7dea2bbf80f8bab0f1f40882218b31360c6b51e1ce158e8e254b89f8f44276d27233df47
DIST thunderbird-17.0.5esr-ro.xpi 480493 SHA256 be2f2bd46ad248dc54e05f4e84f883c5ee7b5fc68f1983b5ce731460a537f96e SHA512 2449fa305ca59440eb3db270d044da49aba514909ad3d8d3308a7183892064929a4ff9cf832b8dfb86e45f6d6bec00eea4116b84202c2594e728d10195f7fc23 WHIRLPOOL e5a63f2a52719c531f54117c956c2ae94990db8d244a685b4fe2ddcb6c84e042aa4364feb0cc716ed0847342b52e7cb253321b02e3028e00db3bb91107eb7ac0
DIST thunderbird-17.0.5esr-ru.xpi 415708 SHA256 85b306fcc0032ab81b86ef03549ccf019a32a9d811c38e796d796523f30e36f8 SHA512 7f3ab47e8b5102f76be1ff18877e43e4516826fe9eee2aa46d713b2b91e393720596152235c6c02094a02052b2825768b00e3161608fcd05975571dae2762ccd WHIRLPOOL 9325c7eae41ffcfb9a572c754a48d6317c77b597d1a24eded17810a958d6d45e5e9a3d4622431d2e01864d3f95d1773d64f8eced8f7d27f71ead3ae4e893db2b
DIST thunderbird-17.0.5esr-si.xpi 494162 SHA256 6c9222d802c3aad59c68b8d165dc0ed433cdc07ca12196f1e0c58ee7aec3fc7d SHA512 7d08684ee08d1c41aa62d0c338eba3a93255bd135884226c6fdc4c5b49a4e7ee9194af303659a85aee92bdaaddd8e2767e99267e64b7716fd5c1fd3b906da662 WHIRLPOOL e4e21d61e1c09e09fd914359d7c95be7b1c1715821fde388ed1dd2d28fab9c2c2d0960b8baa4675f82c48d9254ee41d4ad1554ed100c1d01609ccd43f8bc61f8
DIST thunderbird-17.0.5esr-sk.xpi 429756 SHA256 df616a212daf49a45a0aff11bc9264e99ee2854691cc569cd6f4aa7b57a4ca98 SHA512 ac8466d613ab92de620bed35fbaea47e4f143526d09e3f462913036d2b7264439294957a68d177212565a6d303b0718a7880ba16c2f35bb584d040b5b498eadf WHIRLPOOL aec9e8eb20b2a98d2ab65f716163d17ac6c07903e23d8986ecd7de532f530fdf5ac58c6f95650d07a57010297a6d696dc97db6208823b652da4d0f028706c614
DIST thunderbird-17.0.5esr-sl.xpi 442096 SHA256 bcc2badb1cc8e7d94621e558fa2ad7f1608011d243f7c23f952a8b6a19afd907 SHA512 857e11e2b5f0dc01dbecd68213dd7712a6d27243c13ff0e872b5803d019867fc4382e3de036162621f6427f5ac2053c5297ceab87ac782edaff1d8a02313feac WHIRLPOOL ce5877ed9ae9b601483a3cc28ee5dad1d59d2006c32a6627417e732762959bbac841603f4b460c091d5144d2f93c583bbd1b4fd1367d93ff85531478a70e8760
DIST thunderbird-17.0.5esr-sq.xpi 418781 SHA256 47f5d71fd8e0b0e4250d544564ad8d91149c5311c4f04fa1c215979d52f72b9f SHA512 1a8797be51f260c303fe27b67c8a42f2c8969d325ba46fdbbf5a31f90881640a0edd784208d6965a7139e7cd28b9ad521a8913be3b78a3c85077adda28c50cc4 WHIRLPOOL c67387d11ec09000e09d0bdc982169dc1f8b0a19e94c34c778d105c182ae0c783f237f09d1a7d27872e44bf3b21a94ed36c19464316715f69afbbbd77836acfb
DIST thunderbird-17.0.5esr-sr.xpi 502501 SHA256 4f3ab13893ccbb7c7ed0d648ebf0457669f0149fdf2d4226c1d76748f621c82f SHA512 510d7f06de9c2c915da69074eee0195ef20cd54d744f4d5ed29c15ea888082e49a101ef1a8df0ff86bf840a3a9a37ddb01f9081fcd3da02b4ee015b4a6a5a6f1 WHIRLPOOL 8d4244741a01be5890d1267b15178b92d1ab548fce01d8159be2cbc011206f393b4088ea39a28a04b5e0aa639dd7233107e8beffa36b26f1cc9d5bd0957dba41
DIST thunderbird-17.0.5esr-sv-SE.xpi 413218 SHA256 ab121125b9714b5b8acd6fc52415d47d53df4ef561188b65dd4b9b687b6c1c7a SHA512 12597c5d9b04457b4f199d9d01607f4b3230ef9d502497a41cc06bb756a3d3989fec9e150720b004a0e5fc74cf970cd2d78bd4a03a608a69624a6494c41ec09a WHIRLPOOL fd3f913118774dbb353ea8eed099258e090a05254a504f0d776dc2e0b5436c74822379b1fd3b5fa47a9224c3986d62829f76d965dbd14731f3776a8b54e6b807
DIST thunderbird-17.0.5esr-ta-LK.xpi 517912 SHA256 789946d7a9f3a04ea37fd43b6c4e6b9907611e2ecf9428e471c1162bfbbd47a2 SHA512 f75599e51465d6d13809d65b18ac21e68cb7e16f75aef677253e17259b863cc8a61ae04120826563a4ae443a4dbdccd86fefe11cab9b1731bd6586f07b597652 WHIRLPOOL 9c475f385905fef6996eec7b93d7371e638308ebc10bd925b4c2200f584e48a9d590105acb90d369800949c6c59eebae485325d1063a50c8934afbc04ca6e303
DIST thunderbird-17.0.5esr-tr.xpi 444945 SHA256 420969d11d6f2e8945ab3a50bc0779cbdc135f32cdd7423ac3f6d8042abdc4f7 SHA512 5652af13046b7d7fc5559bce3337e3954cf89e9eb255cc6395e54babbb1c78f072cd1b3da6bedf6946556ede6684a3a84849c7fb9b071ed0ce0c52a5e9fde9c2 WHIRLPOOL da97fb658215431d814f2ff4bfa81a0258fa00b86d96e3679397873f7255cbaad7ab086c0f1b0230e459b844be9b7cc0208d91f37a22f77b5cd57acc554e7dc2
DIST thunderbird-17.0.5esr-uk.xpi 471142 SHA256 30270bfb9b6a99cae60a37fa08614af1ed0deb2044f6de52c79c56da5ab4ffeb SHA512 ec23a81d9c3866b2a395b9092e659cd26739ce721c86a6318eeef7999a6378a31ce844c7c8cb8b06a27367e87a6547def89ff70ae17483b0094b5e3ad00a61e4 WHIRLPOOL db25c58b3d42886dbaff83f557937488cc263716d0b7c76fca426a925b17996a22d28d48203da874d132001e25768b1b7bea52d5021748eaf3a4873b60dfbb6e
DIST thunderbird-17.0.5esr-vi.xpi 478454 SHA256 b48c5fa9fe9d3c7719e45955730e01fead4f28dd8f4d72df75e247c57fce3326 SHA512 1c741c8c6a78c191467c6f21f6de37e200bfee3703146999d4f141ea91adfceb4e8188e1397758569d120e6a2cbcd947515dae0fb2a5596a025729ee042a1adb WHIRLPOOL 704009c7bc31bc99bbe5e103cdb84e855c96a8863aa738660c21f993bcf503d6d1df4345228513c0c8403d510c2ef20f67005dda43614c5e4c50e4fc4ca64984
DIST thunderbird-17.0.5esr-zh-CN.xpi 436082 SHA256 0c775bc64658bfd657a1125e776b529a6097c25dd760e8ef74e8e9ac58065d04 SHA512 f827cbd42865ed5395a1121902d835c00395559db32b7328febc301122d365edd0daafc805457ec81667165017fca75c3dd88e7befd0cbcb4b8f998c6aefce5e WHIRLPOOL fee45c4d16c40fd7ab96885de2a07fbacea53906eb0934187a810a4227639f91b469815e393f0bcfb2f1313d089ce23649f524b9ec6cc95472609f7272d7f71e
DIST thunderbird-17.0.5esr-zh-TW.xpi 437591 SHA256 194b9a773cdf8a078b11928e56807b58a111d849af272116c8323d5c147ceb69 SHA512 acba4f4e5fe86c17c10c333b5a70fce7220d6161141f307d9ecc410185c8de8fc23db2445955e615d6eecfd2af75ca5b43ea0bc8d737bf2a8d8f33938823cb5a WHIRLPOOL e43115377eb2345d6b27789e382f368e76fa733352e4a5d1c8ffc12b460d13775da2a97af8df79f754a9f2ad57631ec85d8775a1e366210dab96f599b6c53b9e
DIST thunderbird-17.0.5esr.source.tar.bz2 113259410 SHA256 d8a6ff5c35fb030514d24eb7b6e224cb0dc69dce85051a2d03952d5308bc67f6 SHA512 a8419129f97be1d628935da2a10de6af955c0976aa100d7731cf925003c45cdf2711491747c724f23fb37d4d5752dea29d51c3c782a729d4d6f7d331905056ab WHIRLPOOL 0f90e02f43148b31eddf8a22b8b5af29d9e37484a17c8efaefa318657b3a8bfda806a65052c3d5b15f1490dbc6cf426bcc77915c1a88ca1fb4447fc641fa14d8
DIST thunderbird-17.0.6esr-ar.xpi 445977 SHA256 3cac8aefb6a36adff9ba9b863435b1ec43b439325659fd14cd2b392226f3eb70 SHA512 2cfbffd451d7ca2d5022f32984332fcf0bc3cbde8e21e66723dbc854758308fbf595ccdebb8d32dbce01746d69c828d957aa802ee7acc241c53f2f943b3aba63 WHIRLPOOL d10716f1c6e8d238bd44a79999230ec89e01e9382c276a037f8d1194b1eede6077068ac283e5b772de3265cff5269d41dc8d97061b0125bb244a32ae2d8941bb
DIST thunderbird-17.0.6esr-ast.xpi 388039 SHA256 fd8c488f2b6bc7d5ad5d73c78a906b2134680eac57f1c892b935e58e659b7ddf SHA512 2e2ff438967116c3c329bceaaa70ba127f4a377d1045a2683548ca79388b702472132a8fe91e1f45d7d3bc264554dc4c4f57d92fc25fbf6518d9b2bc36c308fe WHIRLPOOL da15aecdee0a7a8c9b14c50126e803be230c30e476c07fa3e7bbd78165beaf7772c0b1b43fdab4d283b05a62084f2bd2dba63c9891ab514992970fa086fbb37e
DIST thunderbird-17.0.6esr-be.xpi 426695 SHA256 ee253179135b8d935d2eadfe97d508bb31ea3041fafba2bb9b7e4811e16e7015 SHA512 3c0b3851c4f419e856d0dfe06ce2364dd13c2179690d9dee7bd90086737f775d11858c0ac4ca19c1e99def8e887603cb3d18db7dc0cc1caacadf4996fbb9f831 WHIRLPOOL 204498ea97600c91142e2b95d36a28fc4e2b5cd1f440db62038e9284cfd09c2500eed99123c156712a6b2ad9656d458fe338b0edb161f33a0ec7ee5344275347
DIST thunderbird-17.0.6esr-bg.xpi 467638 SHA256 8b95e8817b3af4a54cdc2634621b58e6b1dfaf192eb6d6d450873727ed1a3a38 SHA512 12af3954322af52a7e315d6cb6c00b335151a4b4a43d309ba76574dcd3c58caca58c00512439782ee76895035be0fac0d5d87bd866257d808095729080103cf7 WHIRLPOOL 630c6b85a5ecff1a4f03fef8883332e97477d0a9d0bbaf58cd60c837d6396213293131ea1dd4727992e9e86cb2fed7051e5f50522da0c2a94385e050ef5cb708
DIST thunderbird-17.0.6esr-bn-BD.xpi 520602 SHA256 fae5d2d937ea0460aaf025c3b6328af7a9f3637a7cc5f6861d2cda08183e5c45 SHA512 40df7d6c16c0973b4e85174e3c61acc228fead4d04d1cb0e5424d89bb10a78c79f524b31095d14514b502f5e41ede0ffeebd4a519568b4fe45af673f8ba10376 WHIRLPOOL f98330c83d3531db3ebf02ea1e83279d95c88625e7e88188836df1b03244244e2a2ce1fe137e5233f1c8842cbdb74de0045e75b5a78fa38cc7bcb0af34d3d93f
DIST thunderbird-17.0.6esr-br.xpi 417072 SHA256 c54258f01e83f71bb1826fbea344028524dddcc77539d03fe9376832ada6f54e SHA512 4fd805da87a02512f6d882800b5b190c5a1ff5b65757284d9dbf2239d86472122d8e7631becbc0949503f97ba88bce6c8a78690026f98eb26c2ff778f7a43166 WHIRLPOOL 8b77401d42fbb696afc645af1a464ae5b7ef202dc99248dc71dcba8db1378639390cd21e1be89ffaa2a667fa8beddf501aaf09870f9a76b52161840f83ba8ddb
DIST thunderbird-17.0.6esr-ca.xpi 418408 SHA256 e6ace93ff41867080f42ed5adfb70803986ec0b54811683621e6944492cdfc41 SHA512 9bd5e7c97d3bf809e22345856541215e7ed2be93442f2fc6104af7e6aa05f68c60ce8d95349611aa1df1aeae5fb0bd302e365e84552947692a473e28d0ec4329 WHIRLPOOL a8476e8da39baff855e8133f0c8b93c54737b0218dcfaf7e5f18b5c80a99d2a777b7a1f848b385a187239f75c2babd697e6b2861e46feeefebd279895267a2a8
DIST thunderbird-17.0.6esr-cs.xpi 420627 SHA256 2e7dd4e30935f78772f38a133a3695e36d511c8defb5b02181708b8f50bd4e60 SHA512 b84bb94093c2c80e78f8286aee8961922e7ca6b071818ca670a454afd78a1b8a13a9b0b1f2256b0b810627d6cd71828f2eeb38eebe0a5b824587413ce66daccc WHIRLPOOL 31740fda9e888f3e4cea5c2428b6a75ea583a79ecb09194becdd6f5f8988e994f98a31eeff5550f688b572bb05d8a11df819bf8ad59ec6044d7b0696ba0a859f
DIST thunderbird-17.0.6esr-da.xpi 398981 SHA256 f37bd8014c1288cf40084c07d97e0abee47fe973d826e2faf7689d221abdc9d7 SHA512 7e012838b6cc27a9db79c7efb129c12dec873b8f418b4aba131a98fa902fbe01e2d519af0b865e94e1ea7ab8653f4a9cf210bef2c724bb7a8de10c0b7b3ad531 WHIRLPOOL d5d9a53ba8e0b9c7292857fa215a1a42a79cfb9058d410fff3a190353c228e87d6712c15a2380a63ac1b6f3aa64cda9a7d69fb6f20b245168f89612a617da7d7
DIST thunderbird-17.0.6esr-de.xpi 393632 SHA256 216ad172402e3e041894a108aab8c149954742a086d6d9caf61fa5abea09133a SHA512 0667f0d02a313a5339c84c67e90108f7191828ad28b6d65271d2a1a7fb3d57568bf14774475c516326f9ce16e4a27ec35abe4f1268f8516c8830ca8e235e4e33 WHIRLPOOL 771626b0bc867311e60c2cbb7bcc0f7032c7352a4ccc2a566fd4fc7d608c52823d0686426464bcc774b4517bcfb2e7aa4c8d5a102f5888cb3fd0b850c487eab8
DIST thunderbird-17.0.6esr-el.xpi 447926 SHA256 662050e75367c4253b782943e3e6e73067c8c830f0256aa53560744b38902976 SHA512 fd18bc39bd7ef4a6239bf5903f85b799cdb0887fadf51323977714c35ae761565cfdc8c3394b96024b4ffdc53d731d0f09c8e4c0a21fd2dda0d2821945dd9dd6 WHIRLPOOL 01812e022d0e99b2949ea6e0771112b0e8ea7ce563d5c22722a778f4cff086cdcb2297e7a989847cc92757ab03aa5930b936190116266afeba768e753f387852
DIST thunderbird-17.0.6esr-en-GB.xpi 390694 SHA256 e560d585b29e0aa20fc023e1378cb38b1c3da900e38ea7f454b9587d4bd93d88 SHA512 73d8f709c097561a83a50ba826f0b2821eb067012728e4853d0e47e7ee29f7a11aa2cff576d9438bc8db92ce8e0f7366864bd601431481d86a16b340ae817590 WHIRLPOOL eaaa7d8f04339500d853f33bef130f35602f940be899f7303a3d46dd03ae33ea9301bc4ca86c43b723bd5d3b43170c805e0063c2a6a98dab1f04d76555d35e10
DIST thunderbird-17.0.6esr-es-AR.xpi 415499 SHA256 0980cd1b1731d57144906aa0f13670c7a0f37f89b39c3236e7037b84d4dab1cc SHA512 fdea2358323e35110c7b9188fcc0ce4e63fb0ee7519f13d82d1102f6e1f2c0eb446b469d2e347027bda165bed66ac5ef2b709cd7d0130a1fa45fb964745c694d WHIRLPOOL 61bd588b47a9edcc3e6a3afa27994bba1c90a5dbc06f8a7c076b34c0d1e59bffff905d6200684e809df0a2993f4ed0849113323422a66eb5b57c792e9d30719e
DIST thunderbird-17.0.6esr-es-ES.xpi 356861 SHA256 e1d1f79b2a5159d909ef0c85c8245872f63e12b5548891f0d4b57d5331082c5a SHA512 5cdd78e60816b1ed62836569d764209f34769aa768278ad965f7ec01d483d9b28e3919f26301758df219bb09cb57db1872950ead670c698f46ad74bda368769b WHIRLPOOL d7793b096aa01285205f17f69f99a20bd96b2981e8c56553e931786b83694066d971759b34ece323ac5d08284630cad6d94d29c19ebbb3b070ecc84da19c3887
DIST thunderbird-17.0.6esr-et.xpi 411892 SHA256 b8c0c3312b90fab5d39a1ee546c0e7b01b4ea342ad6cfae4a6f6853b083d6568 SHA512 35115b27b5496b6d6f17b52a0db0a9ce4ac92ac46c99d3dea37eb36883b64163c33f95ebcaa7cd8223278d02ff4e036c271266821231e3145ada8f01742aad0e WHIRLPOOL 1dbb3fbc6fd34b0516d0472c1a002b43c257618402fa704779fda62d192d0a221364e4eb390f5fc0bc00ea401d5697d19ef4f2557b74d542ebbb04a19c7f4221
DIST thunderbird-17.0.6esr-eu.xpi 407190 SHA256 9974a9dd3769fb04236d15d294f51833f9274f59593139290ae62cbfb01211a8 SHA512 611369e31ab72a882015b30bb794932f077555aee7b2ca3e542694f67650478f9570c96109963cd425bd532c7fc6299414cc5f31dc00e97460503db5af520fae WHIRLPOOL 447acbe87fd861f8337ac5b99c84304348b9de350c5c31af39064d9e890c6897c9c15bbd1a3ec76ab46e6964b6bc04c98f28ee4c717a21d2ba36012d428f0eb8
DIST thunderbird-17.0.6esr-fi.xpi 413620 SHA256 22808e9a1bcfa24519242a1743e1023128c8ca4a837dd7354a74f215fad889b3 SHA512 c91b759a434ee37af95745f477ee0d33dd49e23961d462764a10cebd94acce8797088aff661ca999291b9c80655751cd359967f368e48b3396418baa6f79092a WHIRLPOOL 453941b7696fa130e70858a49356e8f7b73e38d289455f39be2d235fcd113375a1fdcef08062645cee47dd9b93b91e09f00f9b50cd45e668e21280348875c2e1
DIST thunderbird-17.0.6esr-fr.xpi 420826 SHA256 c140e599ba4f9d93bf9b69a54357dba336537f54f9f7458c1e030bdf3c78d18f SHA512 68719860cad36c8602e2042b30956745b6183b2e65d075949d6f298b6e61b84f4f3c5ea70734bdb91ba628805bef83002d3ad61453d77af814ac586b86014c15 WHIRLPOOL 3afb2f647c31395d9959e7efb1470d6ed8960b36c0a69f2cf11444edf0043b2b69703fe3e77b22a03dbeb5639f300fe0179e409caa1aa6954df9c199269c9cac
DIST thunderbird-17.0.6esr-fy-NL.xpi 415713 SHA256 8c562f6b66ed4d9d695cad38516234ea8cd7d465ada90a5e5fdccc58cf6edcab SHA512 d3976aa3b3ea9eca0bd71cd40ec8de0c3b1d748cae52ca1d7f711ca351a145189d152118472e8b42af22d4a8eade6048a0afe412a7cee1295a4fdab1a41e2b7b WHIRLPOOL 85787e00188ca290e095ad60361d4493a7ba4397a23f731f38ed15c67414cda6625c457c8b167f2219b03ec56e8c0c8416370ea31906541ffe5fb5356ec5d830
DIST thunderbird-17.0.6esr-ga-IE.xpi 425395 SHA256 ff11b04d4fe79dc0ff4068ce65eb405ee6a3765e38b90b0b7b1715d5e9efba81 SHA512 8bc1299c10f9eee3cff5fcfc49ded5ceab2eec6ded68446282404152e4a9d003f2d004d78374f5d4d52eb8dca6ce8c9e8c46a209ee2dc51ff42f0b3f6755640f WHIRLPOOL 399d938f168936af27c790e700c14c24627103fc9514f6a86be24414ddf89fa5a7d65f9db4c7ad0961a14ca1add2761247b16b97a7e3df57304c42f2641db8ef
DIST thunderbird-17.0.6esr-gd.xpi 428940 SHA256 61e544331e78964c8e525ac2c1ac96f1fcb7f1af6daa94fc49c3550537f876a0 SHA512 6c80bdd7f8de681f2fbb4ae77f275ee33a10cc0cfd835f32652da95454161790200f3dff76099538262bb3f3ccf34f29d99fbffe09188e18f832547eef6c9758 WHIRLPOOL df665d708857b4ad1b0b1fdd75410dc0b310518fd2a481638547e3e2fc7be598dcdc9276d6fb3b9582bd14eee00cfbaa6ad449ab9659f93ea26d154a68ad307b
DIST thunderbird-17.0.6esr-gl.xpi 410370 SHA256 2839ae526fe12a88555df178ec4bd2b37fa9af3296c3bd58762a4227cee69329 SHA512 c8452917e108ac9f76a345d26ef7652db8672cfcd9fa728ef8d91dc5c041d6716601c0f37e056854a062498d39a766a057e678b2af551ca4e722b082ce2347b2 WHIRLPOOL 48e5d7bde45ad101c4cf64d25ccf46e8c9d5b93d32b4bad1af47d3d75b0229e6895872c629b4cfc389988f53024a95051bd39c80b97b5b5bec75cd71183ec860
DIST thunderbird-17.0.6esr-he.xpi 439504 SHA256 d0fa6eeacd87f4dc4951ba5b024a1cfe68f89dc5f82bd68216c75afa34580cff SHA512 3ae443aca082f147b448359eed58647e61d36cd43a0b57240dc9fb098372e4368d72941de9eb694c7d0047338985479a0ca885b409f2d4179f2302e7b1e860f4 WHIRLPOOL a974a4e852a690fed2ad293f2657d36232fe5c5598989d652a19afcc8489fe0ba2a3539939ffb30e4abb5115b4bbe21328214185b9d4570078f6b1fb45b188ff
DIST thunderbird-17.0.6esr-hr.xpi 411413 SHA256 9395959e09e6c5cd9735e81ab8d5ecf791aac5815e27fd7f8a9ac332d0a34442 SHA512 cd42f4d869f1e05a92494696be0f938a019877f1dc50e0229b9c0be8f6942f80c1d0560280df49ed8506ba6d414dafa27aa77680614f91906db2f71952eae957 WHIRLPOOL 0e5ed4fd8fcb653c8d4b35bf1badad4f6ee20028a4068cdc3d330e02ccdbb11e44ac078e1df9584f09f5bd8549dd490c681f882e9fd659656b9230513edeaa8a
DIST thunderbird-17.0.6esr-hu.xpi 433187 SHA256 dffe35138492e2b2a10192d8e57316c4a06fdd456e8f1f8c502e7298b831f88c SHA512 80ca414b22dcdac4a8a08bdf2ac9cab6dc906a788224bc31fe3c80b66a536bd6c2d5a982e6b2c4e7cebb9b1dd172d45c53c05a802ee85c52b37288a6e924effd WHIRLPOOL c79afaf05f139d0ac730895050efb52848c279819b30c39e5a56c4dc200297e4a2aba9e430d4e898201e3362ddf2b0a885d6cbac681a9926a9fe4534dcc153c9
DIST thunderbird-17.0.6esr-hy-AM.xpi 611964 SHA256 6be4a5ae2b44cb65206b14a4ca11a4a1e8a322a804a5a69f834a14256c5d8a41 SHA512 4f277ff3839d4a935df7a929b8a0018ca73083c5f88d170872b717484f94a288b105037b934918fb48682db57d8701912cc4d9c006e6e21235533cf63b46d244 WHIRLPOOL 3a49137d93c95668aa58145946496bc5ed2d74a0f84b955df58a851ab1ad353d93ddf10d1c00d5d29d1a64014f7110a408eff95018f5c02ddbd750996ef4a02b
DIST thunderbird-17.0.6esr-id.xpi 439575 SHA256 8950f4c44591362299b7fd6eaa4182f8fdb5c994d5252ac59fcab332ee543beb SHA512 dabadc2f4a1576e4fa5393db6b8df460d6cf6a9100cb49e0f9433b1945a415ffb160b8dff8617bc41b7b1a366626e45c27ca80d9ef6af3717ed65c608594ca8c WHIRLPOOL 2bf0944c2e4dcb455f86adddbb33e9d70f643f67f3a140c2491a6f82776f98b8018a5fcb3b9c6969a44a559942009810369e7e24418d925b76ff66304456f298
DIST thunderbird-17.0.6esr-is.xpi 414069 SHA256 3baa04190b767a4823fda7f17ca9d11469936268b985ebb615369b5971bd252f SHA512 f5e4501b348e9980d3411b45703cf8be7ff8c319608951c46334d5412c8bb807460f9528377877f2f592c1efda2574cab1e336ac9e121eb97652c848bae8e070 WHIRLPOOL 9f8c806a4421c2a1f6f2348e2d456ebe84ad9f88fbe5934541a6212bb298dd4173fccba00f6b48dd6dc1ed181cfa5f0b19b4df1adf868a77d3815c1a4297b473
DIST thunderbird-17.0.6esr-it.xpi 348621 SHA256 4d50e3b0e7d557fbf600e50a9776ce7bcbe6f9f7ffc2d9e9d617b69ffcdb96de SHA512 230ed9f01e45f048a8d17c060ff1f134d85cfa905ec84e81d915aa610a4e95dfcd3db6651d4641d672e759fa7108ee259db18c8fd5dfd10cf4e5d21392a1172c WHIRLPOOL ad6c5fa8f7abd59f822126f705d07533f8e2d8ea5312a8c26e9778bd8083e44e536cb29c29b1e38a96d9b4b08ae8ab1bfb22a0548645d191f621340d7d721db7
DIST thunderbird-17.0.6esr-ja.xpi 463488 SHA256 3fb3a5b08020d1af7723f30b69bbc787f2b443231ee567aaf1d90bef040be11c SHA512 2fd5aa6c27324972a2a3ecf5a236e991eeca8814ea986651accc2ca6f879861cdb6eef072f71b5f3b9b0ec0832fb504b161d23e91ddd38122f2f5b9c84e58e55 WHIRLPOOL 9a9f8791ba5fc9f20686e2e2823e0100da7410b5fa9e24b81721181ddd4e204520d9df61518feae9804b4bbae0d02f7c7710023a6b01a49c7f325715c80c8f14
DIST thunderbird-17.0.6esr-ko.xpi 412964 SHA256 bfc853f8b7731838e6a61709ffb1ffdbf883119161b38174ceb7a7874469e21c SHA512 77da488f379e8bcfec8bc6c8822dbd9b81e9c6c3de8663d2acc5c9fa0d0660454091044e327922d153a45a192b72f341e3fba156750b6e3a4763679e26d0d003 WHIRLPOOL 3d4a6aefeb44e75d80437e5b8370e0f3cb3602188eace0c8ad7531e9036ae82de422e72c03902bbc44ccf3e6e5a367ee6ed078a38b38028c765045bd2dcf0952
DIST thunderbird-17.0.6esr-lt.xpi 519803 SHA256 cd7b6c6de154036e04ce6bf3370728fd29f26edee22456d7b7eb277c9025dee2 SHA512 6f630d741f6bff7ea71d3ac8b065c87a1626a6edfc2882eab8fbbe15bb96cdb1b18210815aa075513565f95f724344e156c887b2d21c696b321d007b8b58c289 WHIRLPOOL f713138c83e232e41302d918e3a7e30f39c6308c2b0861d0964c4314aa409f64f3298de1b48ec26e119b201102d6e85e90690d1127480567af1149d2cfcb20dd
DIST thunderbird-17.0.6esr-nb-NO.xpi 408520 SHA256 026ed27e8a71b9cd2fd334d8ada33d9519e3abdb57f3ee4c197ed41dad6940c5 SHA512 54b7b2978fc0af27875757590015b6cd429e01239974aae19eb0e87e7019959d767cbd1355a1888e88444c7692feefd402a6dcb9f893aeb7d1cf3397400dd684 WHIRLPOOL cd80ddc6a38d033161f999c480f3ec464cb840eeb76008529d00f1a77cf4887c94b46d60e4db53bd95467646f784c96c4f823d3f5b084bfe6d1826c796606f2d
DIST thunderbird-17.0.6esr-nl.xpi 408527 SHA256 e96e603afbe588e53488344ba58d0c3c9cafef70c66728ab5dbf5d6dae247421 SHA512 84cce2f8b291bd150e4bcb0cde1271e294934096d16aff57e8d9a73e58b07a449ab806d61ee6ed5ee90f2e79bd2dd5032510e4d1168eef7b0ac51b47e7329f4f WHIRLPOOL eb6d7b3842c0d5bfa4b4eac6813211d4b0bc6de7ceea029fd13cb312bd602651ea2a89bdfb64ca2146ef075df67a47de0a22814d4db3c884e21250132105c3d1
DIST thunderbird-17.0.6esr-nn-NO.xpi 431472 SHA256 dbc77a175cb9ef75b6c6dd7a10ca6a1bfaa26e5820e666972f5c6b2203676039 SHA512 c4cac1ab2d2771c12746b4a81ac50d59f310699160d9854600192c4afbfd9083f00bbc29f207fe34166ccc72b7ed863487563fbd8368dc0b75ad2fda5ce63072 WHIRLPOOL 39ee856f193a456b85b9f7b9ff5a0d2841fe92b7a276961c8e5261f5ea2b705ac7c035b2b018a9223feeca50c55d92d178ff579d0c6ec87021dae3094f7cabb5
DIST thunderbird-17.0.6esr-pa-IN.xpi 492444 SHA256 b56035f2c92882a852d1611b3d3f330b1a7a53d2b44be58e274257cb720dcee1 SHA512 d528bbedf08a3658820b03ab321931d2e8b557751a8fac35c5554c7f06d6875053b23df73e1535b92c62c0731de39f37296687c9715f4eaea67859b621b2fca5 WHIRLPOOL cf8607fb98ad0f0a13a6f7a41d480da500725ea255ffe70cf979f475ccb92450e51efb5031487ef7614abf62a1bd7a772ba381720a0980698b107222f38169d2
DIST thunderbird-17.0.6esr-pl.xpi 402114 SHA256 bb74a6496498925cd37b1bcbdb68bd3ae7c6edc6e65fbe813682ad8c0018cf5d SHA512 f47decae165c0aad0cf3f8c21be5a96d8c142b084d6ffad32beb9e6b84b712ab301945dde9b0885ec627c219080d9ce697da9a989f0cb5a1b8effb42919e0077 WHIRLPOOL 327e1b31d7bece41a70c523f40a4b2f7eb360fb7d20a838da5bc0b066f10ab2be46c850353c13fa97e1744c2d9f791659c427dd6a074db38c58f9ba90eb4451d
DIST thunderbird-17.0.6esr-pt-BR.xpi 415778 SHA256 d83dd1f78bfe2f052b154e437cc73f8398657ebeeca3889728f04ed13c9c6bf6 SHA512 799c406dd8da52afb9e8a92a582c36f3f201fbe803da5b99dfe1868f521bd79eae7b6fddd032eeb1108b8238eb4e182c40bfd770bb21ba522e6fa4afeecd6a1c WHIRLPOOL cc1066b04c39a7bc09b82d12f6c4b6e15a56f94aab31b4729bea39ca25d72a1c377db71201b78bd6d473e4d2d70afe9a053c989c7be137b2783d644b25c838d2
DIST thunderbird-17.0.6esr-pt-PT.xpi 445754 SHA256 729df52370439dfb18760e6a02ef7b4a24f6061135aa09a95fa7848d6f9f1b49 SHA512 f343b25b693e6bd15373b77dcefed908bc61c35460c019ec189c10f93731e2bc79040e11700ca35b748b9b1aa7705e0fe65a3ef2312bc7ee27516be95823bc1a WHIRLPOOL 6a922e199c746ec3643bd1576b24b46b371df5f78dc7be68aa0b8a14e403fb79461ba6781116c39104006b60f46cad2c70dc4d8fcf195dc2462f5f9ac98f633b
DIST thunderbird-17.0.6esr-rm.xpi 415531 SHA256 2cb0f3b87a62306de65d36fac4fd42f14841adf8737a6b2d801065fca549d087 SHA512 243dd39be450714dc32f0fb7bbdc57653215d41d55ab56f9dc16557f89fdabb37e413fc979dba162285f271f78e49b39a3f8d43216b48d2df856721b9c58bc3b WHIRLPOOL 620f429c94cc068a300f3f33fb8fdb9496149639210df3721a4ec9bb1b27e4fc79daedb04173b0ab59dc81b92f4291907eb5f859fbab9081fa77119a78b65284
DIST thunderbird-17.0.6esr-ro.xpi 480494 SHA256 180835cafe1ae745a34c6bd3a8c7ee1b7557e70525a11135de1eea6c59722a43 SHA512 06c2f1bb94049f01801379ef1b9d233b803e95c450285693b0e77a84737bae4f61c2806e85042a5226a8b40084a87a097ce8a22387bc250edbb1347a89c1f639 WHIRLPOOL 612e48d3441bd26fcefc239449ef2d4dbe58e8699c339d5996dc91ae83d247ab0d6cff68a9043c398e9ce356b0e657cef27aad2cac892934f9119fb2b5d9ad1d
DIST thunderbird-17.0.6esr-ru.xpi 415708 SHA256 7735bc42e44569710c3de2e9481820ffca910ea19dd22c247416de6c0de3fd80 SHA512 6e77775c39a7b42d9c3753b7fa78a3896436e41c539cd1403da987ab71e3d2e31c309e2159798d90308e1f8bf7b07ea1abc77049664e77b67d9ea537d8c25ef6 WHIRLPOOL 91eac634dd64b413096f355ff07eb060d710ba4e3ffc3eefcd46fbaa5cffc0a1eb4f3239a41f1787f09b7643bcfb3df1e97809723872ef99b55465c2d2bae110
DIST thunderbird-17.0.6esr-si.xpi 494164 SHA256 caa7a9b73b6a7a618ab70fdb660eee14c89721ff195f5f07c54acdb7ffe6fd4a SHA512 0357598f81a90e58865b17f9035355819d7786f388083a558e53fa0c5348fc1537291b4d5b662201797ed1cff1b4d41e41505bc304e3f44c7cb87b030b65d2b9 WHIRLPOOL 192ab1b5e0bfe3ef5eac5e1cc42cf63ad520e2a0c9b71f6cb7aab04d725a8337d89e99b58a1f961a82e2cbbc232d255c9f81eb52a371673b286bb6252ba8f7e0
DIST thunderbird-17.0.6esr-sk.xpi 429757 SHA256 f755108b99a804494854e88ee080039237bb9eac987dbf848fc84b8b4869eb3c SHA512 9a50500d59992c6b8854ed41860c3886684516385be00644a820be1a42bf09f36d1082341f595ebb421070f2df09bf85488ce282179b093f38bfeb1a2ffe84dd WHIRLPOOL 5b368ca60303c3b989c03dc2eb561be5a8921104a8bb6b66ca8d2a33c08644efdc8dd43aebe6bb504ae181a725eec1945810f9cd292709ff91b99bc5944573bd
DIST thunderbird-17.0.6esr-sl.xpi 442096 SHA256 ca0ac38dfb6b391ca450f0978f2c88a61c8d98f1b6d5aac57c45ca43b59b8d4b SHA512 4319d729481687234333ffad6c9c26d0f7f5e2c392e8cc3eab83596104109a7fc1bb5c072c9c1f3390eec97503bcdd3f8f4f23b2e8ceb58c1ddb35a3217cfd4a WHIRLPOOL a138335a0294903003a7ee095e9d63a5d789a23ae03ea15395dd254950e51c76405f3784a66018f59529c8ac31252dbc2cdfe6903e69a57f48a256906903af1a
DIST thunderbird-17.0.6esr-sq.xpi 418781 SHA256 7f6c59a15722e2c1e297579bd528c4647424c0bfbc12da1ce95a89bc4cd4fe95 SHA512 892c5fcba6fec7fbb31efc05b1fc27c0c2c653b3d51d958ee3dc92ccd79e7313272c2e0fe29666844f2e5c2e50a08f153f1ad76b60acb8d4bc0dbc47b8a4cd77 WHIRLPOOL 12dd30e90d78c1e064cbee07367d99aa85607063865926e4d57f6be04c1df3fb355b9db6a3a1ce56ac5b9f7ee6c41aba165c3b101e2ed45dff560f0706c29ed7
DIST thunderbird-17.0.6esr-sr.xpi 502502 SHA256 72649975597b5cfa4127334b104688ce1feeb7e62e82282debafdf8914506794 SHA512 9524c55f4a2b62593140280458595c5a7cfd11d0ddbd60ccea320a88437f05f7b9e263e705fd04461756603cfda66db8c7aba55061a7027276f092c41127d5f5 WHIRLPOOL 1526a3a8deb651ea2203400b6df4bf5f903f07f8b4aafc524127618c0a32a47d28bc462eaf2b0b086b0b6b42f34796036984d9938e4972d0b42c426f0718e07b
DIST thunderbird-17.0.6esr-sv-SE.xpi 413218 SHA256 59750592767c531c44f09e2812de432f7f5bb27bcd25433a05172f427feac392 SHA512 163d4266a814e9b15fc5dbb6e68b12d83ec82368a84520ed1c94d82e6b415ba1f7d4ba5bde477260c372550545bac4736dcd0334ea5c4598d02c177df18adc47 WHIRLPOOL 280c319a5857d26b14940bfa9f5cd32ceb0540a186a732ae9f878a44d854b91031b944ebdad61d85b006adef4c3471f81544eee98f0403e1517ded3bb3a0bf90
DIST thunderbird-17.0.6esr-ta-LK.xpi 517913 SHA256 a02df902d82d648599f842a116ac84257e8186b60d8d127075fb267193b7efa7 SHA512 febcd6f68fd538bac0dec8e734cf5df117e05806bbb70e92dc44c4b33bc7d8a7ccdcf26b93e16aee0470ac866a8164e9d1c326aa267a7561e9427fbc99216a32 WHIRLPOOL ad915e37e37c5944ed458824b645c8b6e65a368a4d85652d6f2d5e13df7427b33512d855f01e37feb9717d8570f91dbaebeed21790efd272ee5209338986fa0c
DIST thunderbird-17.0.6esr-tr.xpi 444945 SHA256 3397f9de18a0665f01951daca8cd2d4f82ed64d0d52279ddcc9727a7357e2c51 SHA512 7f506b732cc3ba1cd8ee96bd7aa8e36130ef8d3318ef530552d0f3ae73c4e6e3e5550bb0119f4adcdc74b4a0af746a74dcc5e39f64e139c78603736c6a371ba3 WHIRLPOOL 569d4a4fce1c47e12a3e6450839ec398099ee0a46e8e3b72d59e04ed21bf545c97935b9bddbd2ed12b718aea2e4df4fd115c4b637f5960293e3aab0fce8bc08a
DIST thunderbird-17.0.6esr-uk.xpi 471143 SHA256 b77465dee6e83506077a7738362b143ce6fb71e46a774074ace3054dd1dbcbf1 SHA512 3b7a8d2107e35f4dd75b179b137f57de62c8af056a5df6375ae590e42143ccc7895e90c47de18f39e52c858c74cc63ec341507a7f4c16bd7008621592d74db95 WHIRLPOOL d7c3ff548460eae0fd3c1fd56f30783607e55e6f87755b9167808d3a67f0aae82aa8bf4f57ec6b0d3e0cfc0213b6a04a6eae8013ace0b240d91d8c2a2271208a
DIST thunderbird-17.0.6esr-vi.xpi 478454 SHA256 1b45a26d5fe25968afa67820a3e917124bccc088a57a95f8667f01d05af853fc SHA512 e4d58c9de87015c58e6cf24cbd91fd93db3debeb09e54e0f75403729ad5850741c65b7b26ddc250d3ee3d7c502b46ae60ce88dbb2b77e664a32ea858e64fb372 WHIRLPOOL 23225c568300cb13f37f03da06990c5234470d28c398510e3da83a98aa9fd0e476155f65ce09292e121e4cc22a22bb0bc36f2bf4dd6059be92fc642f86f4cb9b
DIST thunderbird-17.0.6esr-zh-CN.xpi 436083 SHA256 ab7bb32363d8681d961f5affa41070965b1d63e700506b744b529adabf329c87 SHA512 3025a64c2150275abf6557c0bea4743860333d92bfd3370b1ef4e9231d3a9bc982bb73c111b64346ae79831614fbac5e9f8e01e47625d3d397f36795851c2a71 WHIRLPOOL 39d0608a0c65bdc066b9126fc1b7b724675cce4f68205160093c3a2f89769fc2b9aacebb7850daaba71ca953badb0feba998dea47f29050167ed7d1b8f26a872
DIST thunderbird-17.0.6esr-zh-TW.xpi 437591 SHA256 4c11cdaf70f57ec3e09fdd68476bcb73aa0a7eb2c3519e8c4bb14397cba94011 SHA512 03211b5252b24b9552a7d45d312d54217759c6e7092799bb2cb8f40b6bbadeff8d804a8d3c371b8ec5b0d6ec537bff5b5123fd154b0f31cb5af76ef87aa82dac WHIRLPOOL a615fd6bffc22cb8784bc86b670b195768acc4ed9d6e45f42fec1714798e88eee5bfb6347f1f5d0355fa5d156a848c54574dc9961b28933acc0e67b7cef501bc
DIST thunderbird-17.0.6esr.source.tar.bz2 113885201 SHA256 ddae9e083f14e248d1b552c93d8aecf7989795a494f7b45492bbceb0b8c495e7 SHA512 df41ff680d4f99193555a45bb02395020d76600d7c2bcae8a85b7c69e2d71bd8169dfcca975cae52de77f8eb37a13a667393b1532ad43e9555e9bc70cb4f6f89 WHIRLPOOL e96fef6f49e1a436372acec4be8d9487c1d0942336b96a289333975b8877888c27be5ce0f45b00651fe18d1c73258c43ffcba928afc18789457e3549802bfccd
DIST thunderbird-17.0.7esr-ar.xpi 445976 SHA256 44fe3d4de0116dc9a429ab11be394ee588e1c0f5317c5ffc8e0e24e587fb99f8 SHA512 94a2a58393dd8305a029683f73a695fafbdfa20ea4435a80dd644de2462bdfc76194552b9a68397209f939799340b992c2e8303c34b76d339b03d00d2f3e1cc1 WHIRLPOOL 704d2ed3ca102ec19d0f89edb3bc9aaf925bfb067ca5695d58e21ff5b7361bfe0a26fc946a6f7830dcb12e45366d29c35a545d32568e1b7845a20970de5bb821
DIST thunderbird-17.0.7esr-ast.xpi 388038 SHA256 dd038c92429108a128e226b17c63a23de220a771cce14eeb33804f7cb60d677f SHA512 7714d57ac08b54fd1d2630ea9a4e59ebc74a428d57cd84ec35cc0755ebd03a90fe131ad032dbf45cf565ee14291c73e10a058c7ad5f98025b17dd0e7793770f6 WHIRLPOOL 99f0615bf7b788b320baf48dfd5170adb58f029385fe8365df21593f07c4350a3b9eff8572499a366e7b30407b812a6d0a26ce858552468c5aa80c715fbe638a
DIST thunderbird-17.0.7esr-be.xpi 426695 SHA256 b3f4dc9d47ceadba8c924cd01fc9d99589c9349b09aa5980968a7747a6b1b163 SHA512 f8e4caa5028aaf00a9fd07ffdfccb8fad0aafb7525aa0a0166c333005ad76916550422bb346765e90896d5c39e970cefea19c53ff96e1ee89ee3e400f54e6307 WHIRLPOOL 1f28ed82de37ce6e54cdcb4b71c85dc541eb6e855d1ed0e23b0ef4944d71430eb5c307cc0fa08a90ceba0d1951f391d2c5eb5d26c9f9d85f21fbbfc61c4253cd
DIST thunderbird-17.0.7esr-bg.xpi 467638 SHA256 34efa1f65bcf5c2ca44901834b7845d55503aa1d7aec8a24a7411624067f9367 SHA512 1c5982ffaacd0f0795e23e2a7c759496d7e0be19b45651307068a988626ac3751cfc5833d8a2fccda8a02666dc9fb6bbfa6c6e16bcbb48dee0086ada0aa210d2 WHIRLPOOL e5930147b006042bde9857250715b507884b6e19ea60ed362d37da41bb4dc410d2b6251ff01a70c549ac2fe76f963d1cf6d867d0c5d5fbcd9634040348d3defa
DIST thunderbird-17.0.7esr-bn-BD.xpi 520602 SHA256 b6207538a1f41b2ea5b47cf6687c9258b62ffb3af694ad52a50a20b02cc5a733 SHA512 8ffd6b0d5b530f2e7428db613c5601b4ca13d3ba4f40f52a4bcb0958c7dec2884729d0f0a19f602f6e422639eecdadb7f2d09104091528447d098bdd05edc06a WHIRLPOOL b92423b4693a413a12f4e2b7d267c4f1549e222a59c6cfbdbefe188c8332779a4af035ed1e1ff3d39b148c054c3e84c3786fbd6f98aa8b45e0dadfbb1ed757a2
DIST thunderbird-17.0.7esr-br.xpi 417071 SHA256 398adbed46ebd2cf1ac24224d0511236b27de23ff5593d4a7516ade97d80d17f SHA512 c1643d6d7c0c1892b9cd1895151b3d394140e61ae3c6d44370bc7f1d032e896eea1eb0245118f3de0bfe1117f53d9bc8294fd3303e0d415f23833784b5b51f3b WHIRLPOOL 1653d85ac74f866c9d6d7af6445ad36dd7eb5d10a4b4a0397d66e2e0462027d029baed7d68a9216818fc854721b4cdd398edb9c1e0cbfb4520359303dfe1e044
DIST thunderbird-17.0.7esr-ca.xpi 418407 SHA256 62d22918155f64c981e1a2020ebc084b48fbc274b72e05c0e45844d73d059706 SHA512 2ebcc72c8208f45c80bcadd7d58c9a886802bb8b5993b80fd8bca36f3569329efae8aa6d29ba3899dc9390a7c6a09bb64ec067cc696eb97b920ae3b72e6a8fd6 WHIRLPOOL 17af44ffb27fdc5557c2897b7e034c8a4296194251755f695b89c11b2718ba950b20048672a41285a9fbab1fa9cec53df73594c02cf826d328b3ea53493b707e
DIST thunderbird-17.0.7esr-cs.xpi 420627 SHA256 f3e5fb42eb4e1e17a99529ce30bac387570b5a5434a23488e3be0fb70db0bd57 SHA512 4ba3bfaa4a0ca25f95b99becaff6894481ce3ba98876e7d27b7e1b3282921b410360d13c4f6ab28ce57fc68eacbfa39118c6dac15313b71b22a516cece864bce WHIRLPOOL 2c082a448605b61bdb2fbdee67966e58a1d79314124b50398b91aa6c5bd5a4d507a53ffe55f62f7ab65a1772c6683eb4fc54b6a92ed6581599795e1cdba8c241
DIST thunderbird-17.0.7esr-da.xpi 398980 SHA256 d0a7943308f308d06899daa28317ca989fdaf75919bed5ee8361132e38d0020d SHA512 3249df05abef39e6ed119358fd9fa7f08be2cd817ab673d179677ded9129f01f9473c191c289207cb154803cd0b1d0d2631842bcb2811e765a6a53c459c6226c WHIRLPOOL a90ea915062db4da3f7d7d5d5a6dd9019a6572269d6639ef29c53eecf3c43dce6aa7cb7615ad763733909c0dbbf5c1adfece5d8fbd616e90996c9d476a3e3a16
DIST thunderbird-17.0.7esr-de.xpi 393632 SHA256 b67a0d7400b260f91dda55975f0a5aa8638acd095666bb7e84df1efad266b914 SHA512 a554d27e2c71b44725e157ccd0bb5660921375cdbb65ffcb09946af24f9eb44dc5752a43638c675e51d1d2a8a3c504f618d0b14fa9bfacf90b04157bdb63b8c1 WHIRLPOOL b7b108b4ea6c2830d4ddb4f4b5ca8af7872f22070a063caad6e8918ca1ef1c9eeb9653e4c8b071654e3ca01ef6cb4d8f45b7fbd1f1a6a859c33f4a1a15f02d4a
DIST thunderbird-17.0.7esr-el.xpi 447926 SHA256 0e1ef3069982eaf53bd902838f2f01ee9fe5ed701127985c4e353f52431b4ea2 SHA512 f9f458c89bfa46ee9922867edd49bb74d941608516af067d566c590ed2712a735581be4464798e7700b4fcceece6eb885de2b7e6be9fac3a549586cf8f609def WHIRLPOOL cd189b6cbe3df9bd2c74fd03e55182e498691052655dae64dce1910b401a26ece6ef4f5d64c797de16f00d84647acd2ec77c1b36b8438708079a71b4b202a6df
DIST thunderbird-17.0.7esr-en-GB.xpi 390694 SHA256 ff44cb57de261674ab2fb1620914c926555e5561387451353230eb94007290a2 SHA512 9963f1025084c4c2bbe83380a803039bea29e68864e8da9b6374638110044a9fd0fde480420532a8eddcb7024b7dc6c35ca1988d58c8898a397b5795654b1900 WHIRLPOOL 3f3848d2234f64aaabaf03634badeb810075506b47b4e46f8d6fd19df4f64a97d55dbeb7f814a288b8192bfdc4d0b09bed29eef805ecb647a7f005b24440f643
DIST thunderbird-17.0.7esr-es-AR.xpi 415499 SHA256 e507feb192e0f1e89df2579417ea2e850bc073887bf89ddefb984200d589ea83 SHA512 1d0ad93e9f73abc1e9c15408df3fb857b30d99d78c3303dde2edbd0f46ea5746e87c8979075ae72ee6941ee131f89c64d82336cb354dfdc61b704918aba18fbc WHIRLPOOL 704bcfd29bb072dbc1ae77d016d46f077bb12d4a25cd71f6704e1ecc145126f281236bf4eb67eed9aa4315b09561aac2551d01da653d8cba88c9f08ef98f50b4
DIST thunderbird-17.0.7esr-es-ES.xpi 356861 SHA256 9422bc6a60e130921e68ee9a438aa9d4e8ebf55c8c96e6859773ace71d535e0b SHA512 7787653ad9d9355bbb6977a0a9c7aab4cd91960269d600b02d0cb8016a7a279155cb0c2ec0047e37c7d05a96d5f33e9140a598ae93b92b380adf915d8998732d WHIRLPOOL 64a9544c8b9267ed816131d4ca0933a52d96bd44d61b18bb2215fb412c490f3681052317abcaca8eb50612b371fdf7f0df26f291fa2bd13b0f76d4aa14c95547
DIST thunderbird-17.0.7esr-et.xpi 411892 SHA256 8cbde9ab3162eb4ecb3efffaa09c9fccafc01dc8ccaf49c7d827e8f9b66ea291 SHA512 234443f877ef3df9db41252182e3a9deb684b64e79a39d67323167eead5d70c866ae1e97c626808052206a9c0744fee6e5e9428b3594e9b737976853dc7f89ee WHIRLPOOL daa837398456b2d27ba8d32468e07a96b058df6db480f27f5a57f16d80d1db8984e3553892f1f034e6590fc0205e6efe41904646f7420b7cf412ba36b6b56639
DIST thunderbird-17.0.7esr-eu.xpi 407189 SHA256 2a583bb8ebf691f0b8c8dde4be24c1b788d76a553069ff81f03072ebb0b46a4e SHA512 2c1a16d5efc92fe2f4ec71cd2358b55a27fe7d61c09a316dbe6a07f42cb0dd1c0bbc574d5001fe5f5537b4943c1a6b893d8c74ce4c15626f484594e3ea77b102 WHIRLPOOL 6b8377e69bed3f4bbc7927ad7af8f7184499140de0c7d1a245f5658c734d52b0148870abf876938fab45e528303f7df67752ff9f0645b3df3dbeca5061595883
DIST thunderbird-17.0.7esr-fi.xpi 413620 SHA256 7211be29a9a4201bacb6c49746115d71399d077dffc53f31ada7222b2b7f666b SHA512 7eadea35c839dc939376b540ca887135460533034a71edc2374135475901b9e450de860299072e9446110f5f3b34390bfbecb64820936f28372783a3cb908804 WHIRLPOOL 7fa252a0c9cb16e94446d09f8a3e3414a5bfbd37881f08775ec3406ebb0cd0648152614fd73ed943602696eecbcc43655d06190df052cf64b163983844380a22
DIST thunderbird-17.0.7esr-fr.xpi 420826 SHA256 19118767c853d85a2bc8433b685f3c177ab4e44409b200fc6654e00f54351d04 SHA512 8270aec2e6fd323f7c9d60ec4a8ba58818e24fe4ec0a1281e40f1390cdfcdb87d8a0e9529f3967b27fe68ee8a2e70e20db2008269fcdb134fb1afef3410a03a0 WHIRLPOOL 16a29b46252be6662d8e95d0139ad94ab1542327ec895509f6d0c7dea50420653549ebc978e6255e8f57da7fd76708e6ab6c511339c716987fcf043e1ef78d82
DIST thunderbird-17.0.7esr-fy-NL.xpi 415712 SHA256 fc54a98367f053ccdc3d052cb2d4280da8761c1a98e7af2768c73b9a5c3e5d41 SHA512 8a09769771c9947a37f2d9e5e0a0dd9e121032c1e4250e7618ab6660d8b5ab4132440960a6bf4ae95af4853c0083a9c10da58602cfc1bd13d52ec30a2a878f45 WHIRLPOOL b915c126a42e64bf0decca732a4823e2ac0a2d79413fc7cbdfe31410cea992a242358b9bcaa3ae42fc0b32d9a6d00fb7e058d64953dc9dd8110b50d67107c7f7
DIST thunderbird-17.0.7esr-ga-IE.xpi 425395 SHA256 885564443522cc29dfcb593332b5dc0908783f82df52ef247262fcb662e63896 SHA512 5fea7eeb2a165d45b3b5625bbcea58f88f5d5782f0aec16024bea79a5447c29504713b18f6fc6e6eff065f4dec695357f6153eb50ad8cdf24bf4c3a61b231bc4 WHIRLPOOL 983e2edfb32416efa50f7d248a373e8eb60af3553a1b3aa2f0f6e365621c51ec68640d6b72e839b751a4b6e061db1f17c9a912524a6cf6e7945708d6fa67bf17
DIST thunderbird-17.0.7esr-gd.xpi 428939 SHA256 33cdc4a93d89ae0e3b2b4b5ac6782b052073d2d3cd478e28592f6de1d351dd91 SHA512 574519f069562257cd7fcb0ed1b04881fb39c10560b637b5e496cd77c87800c986ec91106671f0e163d498cd233f293a5e1ed6cbdc0855e6a4d35edc725f8046 WHIRLPOOL 03c6cf046a84b23e360a90c4d55cb7c01d10d2c5f1446163cca6f14616aea025d8f727debbf0f7a1aade553b216d7876dfa6292bddf1ef4763bca346660bdcbd
DIST thunderbird-17.0.7esr-gl.xpi 410370 SHA256 7a5b48676696deebc3e8797b13f6b907b4f9cac7b2217cb70e09a1a9a6b0eeb8 SHA512 b73c122f9385a38ba52cc34bc60b602210b0c86e3722a44036ce49ce61ab57c8411382cb7b48f18ad5608603981a9eaa3ba4c125b8ed709d95e63415c4caa7a8 WHIRLPOOL 466758f11e61395b10afaac14533ab5f7f1b50ed33def0dbaee74fcf37dd999e7d4dfe6bad2265871bea493ce3c401436ecf75c26a93ecb41362c96b1a8ff3c8
DIST thunderbird-17.0.7esr-he.xpi 439504 SHA256 78139a85717ea42393e8e2f6c3da5192442abdc9d91e7ca052e48cc759859784 SHA512 1fec8d921357cebd20d13e8753cb84d80f07e78a8218adca0919329b65b9a97d70618ddb35366aab2519425296ac27ecb5608feaf98aa96c996b7253a8758ffa WHIRLPOOL 39248e21ec45f841177153dcd84e5a9a18d6082358ceb7dbebadeb0025f5262a8a2b040db4b1c244e087bffdedeb8c8177b7ea70e9c7e6189dbbf8650e996dbd
DIST thunderbird-17.0.7esr-hr.xpi 411413 SHA256 7ff19b08761adc3f04a5456b63ebce2ecaa963f96ea4e4b0e0bf06cee27d0eea SHA512 dbca3fad39df68891cfc2bbd87fb904e31572a464e7a1e9cf5408eb155174bccde1150abb669a03ab59ff1b3635380da5e644c488651f4448da8b4a542189527 WHIRLPOOL 4bc0e034a2ef7e127461afb837891fa2a58352fd04e068ea2476c692e83b21c220ac3a032e9507ee21e374778fe7148a22d7f78ef368d57feb44ad6aa451b552
DIST thunderbird-17.0.7esr-hu.xpi 433187 SHA256 b0df73e923c31beb7846589898efe76c87e091498b66b62a0edf7c642174884c SHA512 ed151bc64e7a5bba3822f6742c7c86fe5aa0ff407bd507f6ba87f4e4343c5b126633461c85b14dfafe23ed28b67734340d3469e4b5796f58a104508682b8c36a WHIRLPOOL 6a095d8eba3b090e5121b86ba1bde397b4bfd136c21749fe3834dca752eec55d38eec392a33f313d49aa84beb9f0e3591e46dbe65efd132f6222d2abfd794b4d
DIST thunderbird-17.0.7esr-hy-AM.xpi 611963 SHA256 5dc0960312cc60ba8ab2777ca110e3367c88ef28287eeb0f6e6eb6b9161886f7 SHA512 3f60e078c7769e67e6defc96176f71ff913fdf24c74ff5d6a5906dd1a1591b716f8f069eb672ff62c3939e9a2d0d1a1427c87d5177df3f725672e58eb7158789 WHIRLPOOL c4c762c8fd056cba65c9a4be3bf258dc9711b7ad745a9e78c5fc187de5109d210b2be9f03f99184f98559fa9f24a295c6e6d524b480297b9a8decc1260dfd081
DIST thunderbird-17.0.7esr-id.xpi 439574 SHA256 ae0ba39e445a0a03386b6ae25ebb079b7e03b49034df2d4f40da75fe566fd005 SHA512 b590c5ce35a5bc4d9e92229dd6bca1285152f6528ae2510765166087d9e0fccc153042d02e678311b4099c05d6f39c6cf6a79c649533004e56f9b64662e5b74c WHIRLPOOL 2c4c72febc99fc7b5fd7d0f0dfc642f0569d37521a89ce6e66048c48dea46ce78d6d3d525433a1010949708df509726debcb071aa0de35fc4a9f1ce3e0e8cfcb
DIST thunderbird-17.0.7esr-is.xpi 414068 SHA256 154aff2b1ab9d8267e3b7ef7a0339fc239dc7bb0975c0429033be8beeb4e8fc8 SHA512 08f0195eac0dc5ecab45e59a5ad01f728c7172898e2af702c20c2e390c6f23fc9ee4dbc0f03379bbcd1fc56746e85f6543698abf8d818e0d4802e21318566da6 WHIRLPOOL 37f62af5b34eda2d01d6d9b44670418f0d7f32c2d81c40aed8d2a129ca416eba779c3ea0a9b55d2eb7466108ee5a5406dbf9976d5e5b54f21bad109a8a325e7a
DIST thunderbird-17.0.7esr-it.xpi 348621 SHA256 af798f3dd93d5d843a2dcbcd77866f970a78be4b172e9abc9e4af9365c835ad3 SHA512 ffbbee4f1bb289f648039fd673cb08aee39e88cf52848c18cace013a65be0644674781f5b1d47c40545b88fec6acd279bf87487fe5cc26ab07a0cf7cc24567cd WHIRLPOOL 095e90c4776ce9899a15c54bf2db6ddbc6aa15f32519ace6927705e478fc11e243bcda091a7f2583ff4ee54ed9537d2afe52e0919c3249722b872829b4c4c770
DIST thunderbird-17.0.7esr-ja.xpi 463488 SHA256 fa155cb29ea3a25e5d0efb42514a970c92cb2512f6d2836737e1b78c4fe69d4b SHA512 1eb2817205ed0e94861f4319fa911002d14f4f96a75f4728b6bf1767b6faea6ec5d23e1f7a0ef284218abb4897dd731cf37dfaffcd3d674630a0a87ffb5df2df WHIRLPOOL c346a195b6b0d9b84b79463d847b4d047be3dc5cba3c64e42cf2818c76e9fa97e2e245b3d6a04ee2eec68931802a75c590aa2c019a6ff13704d18b174bf23324
DIST thunderbird-17.0.7esr-ko.xpi 412964 SHA256 d337a8056ac11663a21ff6d53ac41db3de610c601c88bb05d244ea4123694496 SHA512 85894bed65bc924bf8226993c514daff7c998b5fd89c5375db0808236990d58efd210517efce43cd44fd96db4490c80da1ea3557917f430286ed0387f6f65e11 WHIRLPOOL 446e2ef299d35077f1e768f6f00c1c00b45b8aab92295fab390c1890f3d0512104c739af2d575c52f213ff375971d8a23972602a94a0f3d1560fce024eace923
DIST thunderbird-17.0.7esr-lt.xpi 519802 SHA256 4b03c05bc812e78fc5a6a8d95aa57d58faa9c5125ab211ba41c4947e53b872ec SHA512 9dd4fdf944dc798102a7f453f45eb66e5aa1fe14f9bbca3239a2a093f31c6c94340157ff6e4ef3f3b9800f7b1a2657b89f533a5a66cfa054a56392816b4e0ed9 WHIRLPOOL a778689a9022c36f10d118e18bfb5fc444b22519212650edce5e49cedbbb879c20457b69f4afa0156c243bfd2908666dfd96ca853a41dd897c471226088c5d67
DIST thunderbird-17.0.7esr-nb-NO.xpi 408520 SHA256 977d9db36ed32d5b736fca430317891ece6f80ddf101d9ff0b27bd792bc664ea SHA512 db46832f97885789c2804cdc5d47cac18fe0a3db1dc98fcfacfe3f0ce4d1e038280b0bcbfb39b154e22762c3cfb77e3b2b86f20d9730419eaeaefe8b85667f32 WHIRLPOOL 1c3dfd4226edc420a708e352c9f9cdf252a8b03b74952ce09d5be657cbcaf6e9f6c75a3d094e2c94327cf195bf112ff7a3a1bc2d9ddb7dc610a67b12aba7ff1e
DIST thunderbird-17.0.7esr-nl.xpi 408527 SHA256 188b116c6b78a85f999cdfda1d217a300a964eec7af78098bf8d336ad8cc4526 SHA512 531c47cddc2af25314f99009389e097102957e682a557c4ad833b8d9891d11b16dc85f2c9e5d256249969717c839b9bd92dc95a3a859433caa832355e686c735 WHIRLPOOL 8865d569973e6faa21292f7d5776c22ee022da917268b8671a6fe9053862340584dcfd8f7fe61e12cad2cce87ab92e0482619d82c39e6cff45de366498b8bb5b
DIST thunderbird-17.0.7esr-nn-NO.xpi 431472 SHA256 51aec0a0b303b6babd2ab00e024dc0bdcb58f7134feca13a0166007c160946dc SHA512 2caf4e3ad05f67411125b6bcf4b70907daff64ae549386b82bd959ed413b2b110dfa82fc1b9efbc8ff4ba8b3c2bcf3d61484573d653a96d52cb49ab0992ea37f WHIRLPOOL ba1632bce698ff7627d274aa5169fd2f6dd568382c4537b10d96be0b75a761133cc3e0180d8e19b770aa8e63257043d53860c4d0ec0127cd4d12bfaf0071c008
DIST thunderbird-17.0.7esr-pa-IN.xpi 492445 SHA256 59a45eb8f63d593035fd92cedbd6c6522e4b8ffb69dce5ec41802b4c17cfd808 SHA512 b3bfed339ec571019e770b1eaef105aa0546d19b398a3dc1be3721e2df4cd96a778d800e3a0ae01205e0e2a65cea4bd0df06c9c71beae4035cc8c2725930a48f WHIRLPOOL 6741959c8b725eceacb8619258f0d373dee43bf43fb53e132eee5977157ec4f14ba9f1e6b2ae752dcbf129150cbc4b631c9ff882d540d34e7b742ed97e85b299
DIST thunderbird-17.0.7esr-pl.xpi 402114 SHA256 224079ebee813160fd743ea3da291430dedc53fec040864d5aa13d0ad226e70b SHA512 931c9c1259b547d8dee2a942d86f92add52c589c795acd536f2f363061eb7018346b50f013cb774843ae6ecbd391465a65ab044340e84f1891d6d2c987369c27 WHIRLPOOL 12a6adb103b244542449ceba0d23726a9050f054ffb7acc5df33bd9c8399ee18e6f1a6c30afd6f50384d0254e8ac4fd1db98918cae39a7f85e39d5c029f7a1ee
DIST thunderbird-17.0.7esr-pt-BR.xpi 415778 SHA256 faee7b566a253be5fdd4fee26a02b8bb2caca4c37246ddcaefde2a4323f09234 SHA512 a45f391e5b2346019a98caa524ec2ebbe0823697fc32a2d09c8daac15776255ef51ac7f686e89c4358438875ea7e511bf41890783ab0ea3e3aa932351cbb57b0 WHIRLPOOL db7ecec8e69fbe0f51a7cdd2b96f5de58f939d89895bea51cc099b672f5aca3d2633b9b7a1bd4b7938130b6a2d874b66266787a788419357a9ec05d4c359ecc5
DIST thunderbird-17.0.7esr-pt-PT.xpi 445754 SHA256 9de9c419f89804503f74013eb1d613c7224ead72b664270383c3672df9ff7786 SHA512 5a99e5923442a2f37cf9fde410d093eb3275f9c122270079b43a29113afcedd29582996de60df4a188db3ac4f0921ac3ded4912597c4196e370117b01b1f0fbf WHIRLPOOL 398878c10c15417f946ee792d65b3cf1870515c9ac11127eb058a5f4ccd54fe6b421af4a7432a4888aac2b90b85441bbca0baceaff7f32f56768ec9fa4df6c29
DIST thunderbird-17.0.7esr-rm.xpi 415531 SHA256 a3d1c1af367d836415a2ed03f25020c4e820996285ff47adca84a0b9ea8ca4b2 SHA512 90f73a6a5de4e4bd35aca345de6f749366218b3c7f28083428b20f4c401876b0752cb9b3aa780389dae28798067ed8f691d9ecf428852f4501b5dbebfadcd994 WHIRLPOOL 1fa731283234ef136d6384f13169e18cfcc2b36a79847ce653e1a41e1c98976442d1de0b4cfa84adcaec0148f5d4d3148ff7e4c6ce43835db6a112929f3202ee
DIST thunderbird-17.0.7esr-ro.xpi 480494 SHA256 00cd8179470260800481e98eb925cec1797f808e1fcefae8bd923bf2d4b1556f SHA512 57c92540b54b416f31536e1a456901837adc60098345d7a2a579ab99732720be21c38042007963240ffccc57bacb5c8eb34eead076856e2d68f682c28f34a949 WHIRLPOOL 0584684d9366d44b20bbfc7200edadfb062cdbfb3f29225d6caf1bf6b3c9cc51884471ebc405ae992c8a1ff9e93beb19f85e9d2620b63c293450338be1b4a7dc
DIST thunderbird-17.0.7esr-ru.xpi 415709 SHA256 3a3a5aad50a6e13914fea177b13a0d118ff0ee9954500a537c8d05037108d0aa SHA512 12bfa522900ec67a0ce9f34930f95d25fa199a1a88085f24aecd8fbb192ddbb5609d2a0a5e4e1143e9be3b6080a655d08b13e0fa899d7799cd774ad0f4bfdc7b WHIRLPOOL c7e2843bf80653c62ede3a15bfb7d3fffcd9e3fd12d6e90c9bf57fc97dfc120a1621b679e24588780ee6119e3916081c8c4d83978fc8904b8a19da6f5ee5084f
DIST thunderbird-17.0.7esr-si.xpi 494163 SHA256 03adeffcae250398946958c56c6db75736e571acfc7f8c99547af68a4b764085 SHA512 06ed0dc5694fc07720fd70f55d7d237ebaf976e7c6b9373abfd725879cfa948830551f3e5633020deff1e11e15ebe600f929bc393585bb2092a36df69bb8b016 WHIRLPOOL a8b5e9cc5704cb9fa35b509d71dac723db17cddfb2ce1751111bd1b7ad7d882bc7ad4b7bd2e8768cc4ebec1dbed2e0d1d08b977903399f17b2c67aee8700e9be
DIST thunderbird-17.0.7esr-sk.xpi 429756 SHA256 22a4483584bb969e098569379795b46c276db450c8066b85b41e8c7cd4316eb3 SHA512 5a803f576dc9f2f643256c37308288e454a67548cc880a2dccdefca4080ff197340e95edb50f8f18f5351c2342636ca53eb6c6adddb082abf071470940989f34 WHIRLPOOL 7cca4b4b0e39553209c6adefa92334d53bd9aa9164fbfd31129432c4f903ac54284e576f277c1ecbcba32921b322dd91dfb60e5e95c63bc3dae39cb92e416344
DIST thunderbird-17.0.7esr-sl.xpi 442096 SHA256 799eae2ede769e5289ea226d736fba5e91906ea43db96428899b70603caa6fe1 SHA512 207170ff5d8157c4d6807d61629357ead51b29720e8b5874b75cff76a98634d2023db8a9f1774ff239d1ce698c9e719129529427d3f2697fb2673e7e159fbef8 WHIRLPOOL bfb93b67cf2ad1477f990df7d1a5b7e9fc51abd28fba6f3cdc6ad2f9221e940a0533cbcf2164f208b8aaa540dcf73196a394378879160ca9c1474d925b4de98c
DIST thunderbird-17.0.7esr-sq.xpi 418780 SHA256 89c8320f66324f15a28da27165bfcbac3ab9a7bfb6922676261f513ebd9f0edc SHA512 4a590ab80e7defbd8f8fe73e03a690149db526689988a2521dacd2d51f3b1e42204f2d6c0ba7c7a5582ebd430b521df6366552278950f258bf184b59991c9024 WHIRLPOOL 77ccef0d8f5d59ec8e72166e3d9ff40b55fc1a191da579638be06eb7eebe163d77f39b285a09bc2e1a434ce56a6ec1e705de98950c652e640cafe95bb293d60a
DIST thunderbird-17.0.7esr-sr.xpi 502502 SHA256 ec227b4d1997f87224e5c776d78b24104c76994acec21cf59918809756b2bbcf SHA512 58d682bf22d9d79e7602c7f49ed8502d256cad6755722d4548a318b6153746e61438a9077ae452b66000d20c5f69f540758f9f89cbf218848cb7432366854bcb WHIRLPOOL de8d2af9244fadd7225dcf7163d87e6e21ce5312c97f036cbd5e81374068ec8a7f3e13e0bd8c20992d6a2b5d589b1d49a9e434b611794934a0818a8f70049cb2
DIST thunderbird-17.0.7esr-sv-SE.xpi 413218 SHA256 4ceb3a1db101b9a724f82005f85a397be9e7a118a89370b089a26aeac152372a SHA512 c772eac5ae9e6780fef99bdba69345b03f13d09afe059e26bb0f8dc5bd5fc6153fefd6a4ea1dddda779df6db997a93957a3ad07b7f7b59a03dc05b55b56e8de0 WHIRLPOOL 7e5e536002ba07af3effd47c7dc5cd22470940e17f0709c97d572d65d932180639b281b98687b0a82ac22eed5761b66cf70de64ce63e0039713ec9cbd0c696f6
DIST thunderbird-17.0.7esr-ta-LK.xpi 517912 SHA256 10f6a01416ba512eb46be7b782d519e5ab92216eacf9a0d2aefca01cf96ffcc0 SHA512 9fd66019f160b14b795957747f1da523ad667cb0fb4e47508b9804b7c71554e1396dce0ea98198e6434b41a26db333a0ba996d92177195bcbc7b63e18588227f WHIRLPOOL bbff97e7f0dff84972f36e2906883c2ccfd9e7cd651bac4d931f3b208d4b7f71584d4fd81748b39c050ecadf7b98549cd096f99fb406852e165a3a3aa7745cc0
DIST thunderbird-17.0.7esr-tr.xpi 444945 SHA256 e00f52cce549ca0da209a7b7fd1d3906dcc06e2457d92a5a92e9284714a3fe68 SHA512 792981c14d6a81ccbc93fb3d8d663d78abec6d85373bab90e3ac607885727a288edee9457314529519303e9e121f15131d40b468f05329eeb130ab2cf030a602 WHIRLPOOL 0198d1ceefc84a3e84d9a77290810468cfbf25b5b2d4d9e03ad333bdab1eb30a3225b09107520a100c1174bdceda78210410c0dd02a58bf55991f93ce859ce2a
DIST thunderbird-17.0.7esr-uk.xpi 471143 SHA256 797591405e0bf09da2cce4efb19e46ac6de6c65e01b0577e21d791ca4776184f SHA512 3eae32cbeda32c9aef6d77276e33c947efa9bd748fb311dd0cc527c3e9d32bd1e84263b03f45efadb81ae4b709d80c138f5efb00869343498a44c0e612eda69c WHIRLPOOL 6b744f1ae2eaa4cda26633a1b933bc0312c061c91fddf6260df1caba885802dfba1b2ec1360dce6576a6c32c81f98c4ff5adafc20d35e3be02b647568fbe4cc8
DIST thunderbird-17.0.7esr-vi.xpi 478454 SHA256 e1f47794851168e7f5ba342fbec9a62d1bf7dba9cbd27dd60cceeeff3c0295be SHA512 4c4127ee7060fb5ce2ad3eeea4f658a23991a8da49a2e96ced953d6f5dc0c375bf7607894168bed12baebbd1873dcd7580ac8dd3975ffb868b1f9bcc24e89865 WHIRLPOOL b5ec3e0e818aabb82e3fa50b81826466afc4b2985c54c0ee7cd65e666129899ea88e6c95a0ec63cfacaa5252dc12fadb04e755da4f2a64ab4e5f5a8e61ff6f40
DIST thunderbird-17.0.7esr-zh-CN.xpi 436082 SHA256 1b6be4f02f49176af074c71932aef5699fd2aad7e1e2660acabda60a2f66f8f2 SHA512 82c40b6ab2fb24b6d4497c980988ea889002efb2f0de802a7eefaa6280b736559fdfacd70002dbf46cf4559164a8f1fd3aa757dc4ebcc21ba544af08f7fd2529 WHIRLPOOL 6ae8b46b8b8e9eace60b9a8c5a28ec48114a28e50bbc844690c9264e6742da84c595869dff5ce051edc30396ae4e4fca01c1a484d8face0f0bd6e775acd6d2d4
DIST thunderbird-17.0.7esr-zh-TW.xpi 437591 SHA256 cd2e425035e76c6a2eddc54996fe539cf1724502f13277c054fbd7a95cb59803 SHA512 b68f2b3f7761685cca34c7459447b36776a1f240727be2ddbf249231d522a1536a3ab9d7cca5d85b7e63b599bdbf2700dbbe6a0fa3923d47cb85659c3836a516 WHIRLPOOL 1ad7e605a28db1d3520d3942242a54b7794d37f38b31987fce46e068d7191a6040d2c49ca8135caecbed0fd230b72dad5dc92ec217616c4248a11f03f21b9e85
DIST thunderbird-17.0.7esr.source.tar.bz2 113569841 SHA256 cc1e1e1be3fd1ad26520f433ccb1c37a416236055e6cbdb223742248f28a9a8b SHA512 0a93b5d8c756dd34b713ddf5407896bf532d3fa904c479d21fe4939fa0e090f7c3f421909e679dfbf9e332c6a43a5fd83cbc4a3ff3ad0185ae940f150fd23d4c WHIRLPOOL 48375079ac758fe0b8b901c217b450f87c91759eb2ccfc12295bc1ecbcac39e8eabf97c2977501ea35f38b3182837848e92c54e580f2a57414f5b23f7ca43398
DIST thunderbird-17.0.8esr-ar.xpi 445976 SHA256 06aa4989dafac30777a9f1733372038bf27ea6ebe2689bbfb1f32ee84bbce570 SHA512 82fdb89a520af2d3fe8ea8b1d11f99750a8b48ff0959814f2d5fffd182ddfccb16f878478eba638ebcbd718bc09432e8ae8517799d58e1105dbfff85269d31d5 WHIRLPOOL 51a5b93f3f9a0c67240d13a756e33b1ef0c57b1f561ea51ae148c68a3abadffd53dab634b6d2e4c493c83931dc15e2a06465a64a4d464e9a1a15a507f05fb372
DIST thunderbird-17.0.8esr-ast.xpi 388037 SHA256 39d5b94e2600309e6ff965525b3d5de4d75c344f2d51612cd2c2916cdb3b2b0c SHA512 c7947491841c70c1774f3ac40b0df63e803d70a0d6da242e3ef956675ebdb48aa97e573cc724975ee418fd5e5224de52121dcb3c5119b6102156bb1f08991c87 WHIRLPOOL f46f49638f98462a63bc7192da252714800a2253b76cd503ad348e61b6df14dbbbb5d33cf0b7c787f7dc227f1a79e887a153526e55ce4b671530b19624426503
DIST thunderbird-17.0.8esr-be.xpi 426694 SHA256 395a7ab747168ea62685e531d820744fea33b8284134387e721d00629b574eba SHA512 48cb0e63d39ac35ad2dfd1cee264e2852a053a134b58cd332c6af7bdc295070b7a7c03ba3ceee4f485ec02f87d51a44c6603d85b0d07be76011f32252273f65c WHIRLPOOL a37f2721d8040f5a6094db79f3c1bd5056a4b5c9cecbf29f444dde1ee183c63093794964135ef715c287833392257567962128a35548a80ea104e97f3329a722
@ -223,3 +56,58 @@ DIST thunderbird-17.0.8esr-vi.xpi 478453 SHA256 85db63c42eea3ffef6227a22ba917877
DIST thunderbird-17.0.8esr-zh-CN.xpi 436082 SHA256 1622e9a29f660744b4370a3340632ff52f28af072ffc424def8470c9190e4f2e SHA512 4f9865ba074d13c089a01be3ef4d45d4df4bf3eced18c4ff9c631ea1a26011c13318c128b36755205b48e708f645c3066c1c02a568b96f1c51b98a9dfe64e314 WHIRLPOOL 94068890e872a7d5c61499f9193acd2890584a44ee53bfc58a8c67a6cb55bfc67e0f71d73ebef56cafb84242a146f28f81c00f141df7695d82556913a9624760
DIST thunderbird-17.0.8esr-zh-TW.xpi 437590 SHA256 bdda98eaebcd1c8104100002ef1c25db939039e533646f74ffd72b8faf381b10 SHA512 c97f0198cca9ad46cabbff1c88a634c88c2f67c8e92a2e71ecbc8849687157437baf6e08eb91aa260417ae41efdf0e70950827a0a266b5c4b6f87c57b735fbe5 WHIRLPOOL e1324d76ea7a22e157d0beee0a2bc3bf8371dd118d3b408b2e864189ca49f86497de97934f953e47ef1396c3e7580764848ec166b24d36efccb267f37a447c86
DIST thunderbird-17.0.8esr.source.tar.bz2 113699743 SHA256 6e9f5899f97a6efd11b231909d534b2dec40502a20e1ab06eb12a4953e3deb54 SHA512 75557a7941daef59eed127a2a23716ed18a47899bb49780300053b1b8ebd03abefdd21cb71669f04b4cebab9e57e04a05448005b3916d03a508111f9f3a9134d WHIRLPOOL 3f218a5c58ece8d9f572e1f1c954b8d1320e2b15547a96ba34d7cb4be11a6ff79645167fec0654720fbc57f7cebc6c98dca368b59db9507ee4fc208b353c20f8
DIST thunderbird-17.0.9esr-ar.xpi 445976 SHA256 c28b2a296a252a221701524cd778d88b6a35389cf969822ecbc3174e9397ceca SHA512 2a559f7fad5eaf18727e9f594e282a498de1d63d54c11ed8720da165bfb722f0783747fe2acdd0a81315b041793dd5d4821dc9f6196d085fc104671b38e14d18 WHIRLPOOL 8ac2f5a41d355b8ca82199a60116fc83ed443d586ce3889a1ce8e3399b4b6442b2c2bec32761eacbdb9c1153651a6b7dfd5de9eb3fd8439edfd11e5012ca4cfe
DIST thunderbird-17.0.9esr-ast.xpi 388038 SHA256 dcf4f2a49752dc992deee1e9c9d0899604470c546561b6b50976bfab0963bc0a SHA512 7e2595fbad33433634f7b2b2f3b43fd68272abc0d95afc899cc701524eae485e9c1ae83e7f0b3d0c1bbcc62981982ffd111b808b41effcd0985ac63371469d35 WHIRLPOOL 19e4de77b769e1615978949a87e7c48785a848cfa09b488554c5cf926fad9c6afe3acea9ea083d77c78145a4e2cd5a765258f838d82bbcf86cb1e8ea3e0cd383
DIST thunderbird-17.0.9esr-be.xpi 426695 SHA256 e02ccf74cdee89eef7daabbfdf8da8545baf3b2434a73b2be97c01f082521227 SHA512 4ec5fe75282471d7351ba6e7253c05ebb90fd4208cedc8ff20d3b35191029e8ff42144515354bb8a495d2de63de0df18d97f8170baaeccf324dac8aae256b53c WHIRLPOOL df1b72e79927528c9ad8c7dee93bba13afed3b196f137230eadefbc770fa869c00bef3bb10c2d331ead88d99f5b09b7237ee9b6ffc5c7b59c49717336c47cd54
DIST thunderbird-17.0.9esr-bg.xpi 467637 SHA256 23d90abe1dbb788ad30306ec77cf787a68da95506cc1b662fef46691badf809c SHA512 53760833b906104aa5da40685c2dc1028f87df86b919bd66d311e7880363e7d0e5194a9b1a3e0520ef0eed3822e911657006a6d410d7aa7bdf01904392137d87 WHIRLPOOL e2a1c89308131d29cad564653880d94204997ff2c1d502832599ec991b0a6da322c85259e014655a1848762f970a00f0740ad1e0d9127a63ea258372d8ac0417
DIST thunderbird-17.0.9esr-bn-BD.xpi 520602 SHA256 3fd646ad74d0216d017891d56e9ce37ddb36388160bdf8fb40e3ad48e63875a5 SHA512 602f12198fd760a1342d9747a1428864682e048c7939a810c0d85139c724015bf2a3aebbe245c0b058e7dd276718713b710fc42f3f9a6f05d3053329b1645a33 WHIRLPOOL c9772721d68b3701a7bffb2447ff04add33e71dbe94642d7c72d3b46b0aafe814f9141d12c7aefc804269ae617b988ca969f5a3c8404fd64ee56dfd5b042a82d
DIST thunderbird-17.0.9esr-br.xpi 417071 SHA256 dbfb78a8ca268ae6736e46407db31cec61989fb1d942c85964557f596809ea68 SHA512 a9c01673e78c5ed31b2d400de8a11cb4b039967dff8c8d514083306aed4323f3c601322c593800fec8d51e5e98e9566d7fd5bbfc35d2cbd70612141e8a750503 WHIRLPOOL fe41607935058aa903fd84abed819a8921bc506bf99e2a0faff4d2ce99192115eb49d29ca792190769354d3d015bb2bbdcfeeab1aa5a9d7bfb4763bd879f185a
DIST thunderbird-17.0.9esr-ca.xpi 418407 SHA256 514e13b8998d72623e2128c39425cd041988f0c76d456eee73052aceb322867b SHA512 07f62757f8e106c3ef80ea4c0e2f19431e25d56c5de17d7e6df96ca41847db6939635f47c28547cc8581f10c406f4085cf35e4402c811740fd4b0c9e23721b06 WHIRLPOOL 8677490a46a2cd19be09ffa9e5fa39bb4a5f1fbaef1c4eeac0b32618748c2f301ee6dcdde500c451a4f020727ec3f8876fd92e0f3a5ee75f2a808b83064bcd8b
DIST thunderbird-17.0.9esr-cs.xpi 420627 SHA256 fde86acf952d05c11f34e255b9fcbc688adffcca004c9f123ea1867717a74826 SHA512 f119a15ac7f808ed32364284bac956ede6ea4acc2c25dabf09f615553f033f71ad0aae42b7b9ed9d136a1a51333983f9d9b45c5316e447973a5a296c4f812a2b WHIRLPOOL 3a4d3019196942c5f9b4eb0de5961e1e26203d6b025619a9c44da8510558bbbaefce8521047b9c787946074ae8b806ec754cffc0b2771775fc77ae26e6e5973e
DIST thunderbird-17.0.9esr-da.xpi 398980 SHA256 7d3684557526b48413a53eeee9704bb1ee9343131558d8ac809e5d82aabbcfb0 SHA512 3a31c88e268a8f761a20deceb1f265c8f76a83693027a0b3ff6760ac9fd1c5ecf36fa02eb55c55e80602845cdc4183a32676b61f7f9867b6c69336fa9b6d211f WHIRLPOOL a3a9a7c2787dfd516d224614b3c8383d079af5e3272c1f55400ea72ffff2e6fd3ccdeb9f24be2131faf22562be9d7b374a4f3bed3d31e8228c59def244bcaa7c
DIST thunderbird-17.0.9esr-de.xpi 393632 SHA256 c9d62930decce5eb50ae30986c2a9e37c2c9df7e40c3c016d586438527a0b994 SHA512 47560130dbedc46a7679f57f3f52c10636e2f878727428c04f7668d0cdc79c4832b37452fca89f92fce54f8b0f5b3ceae475211ef6155e2c1bd68259e8ea562e WHIRLPOOL e72711127ea18c7e6148031c01cacab6204c3df5f09df57b38b63aabbcdcd0e1fc110f1260289e0e60e4f41136c3c0cebe90ce182a5e701401b23cfba61cce2e
DIST thunderbird-17.0.9esr-el.xpi 447926 SHA256 b4d4453be84339a05b1b1bde22e86f72204576ddd43585c69fdff85deb12db23 SHA512 8d0a3bc02148474c6b6244540a31f0e795c306a118955dbba704569d419a1ef279fed7e185d6f6fe7753ad7e05581192dc0b961c902d7d41d60b52b0c7e8199d WHIRLPOOL 2fb382e28b33023d27cef7d2d7bf306be1643dfbb6223bdba085efc514bbd3a7985d81ffc77975493c8f1345c34665421a831836230db208ba99d5dd5635df1b
DIST thunderbird-17.0.9esr-en-GB.xpi 390694 SHA256 90b96d0efcd844dbc4bf6ebd3fba205cb15edb10b25d73c561bd6b77d2f2da3e SHA512 d27e5b721244e2e7936e1af1807dd4f46225228c5d0945ef21cec3b4522b866661c5a8c8ceee8196ef10a831a2453b88d07e21b76e9d38333e6e61c46da18e6c WHIRLPOOL adc651f27706aeba67133af6352ebe181dc4cc53c976b54c173d7bf2001e9174ff83ab22adbb91f20bbb65b870b42352d28097c307989e96e3556808d2c2a26d
DIST thunderbird-17.0.9esr-es-AR.xpi 415499 SHA256 f07a8132cf12db55686a3953d97a6b1a3aeb7124c5addd2bea3967cc7ff1df30 SHA512 22b4f4606c5157a18bd2c73c5380e7d4a8e4a3c5a67bc48e7057d5915b82ce859d08ab50624cc5e5132a1b4e2311878d8d79416b12e14ee71a4a1c49915a580a WHIRLPOOL 239ccba9d97bd1d1f70e354d30ff80c0bf553acd0b5b972af62f0bd63142d05a4b2c7d3dbe6f8e7e2c35b714572c052e0cc415bcae7118ce823060610112e58b
DIST thunderbird-17.0.9esr-es-ES.xpi 356861 SHA256 aba31e9c726e9c6cf8165bbdc2d1c98eda73dbb6fe9df85e35022c820e6f77ea SHA512 7a5eae9fb4a4102b425b6815f6274623e442fccc14e75d2760e2f7bd261a5522ccf93893c6af6cbe3d0dc4ba919b92cb2914d8593b84d3bdbfec0cafa88190a9 WHIRLPOOL f37c28dac66d027a2f80807b40bbe12c526d2c38316c9fc0fb63173f918231f5fe3ee886eb2a25b29f92f7c0274f59786f3edb0cc2098aa15514e31ca3349ad1
DIST thunderbird-17.0.9esr-et.xpi 411892 SHA256 5627cbb067a4432f1ec3303c39ac63ea85d18fcf2005e1ea95984d7ceb504f5e SHA512 91e3ecb4f098b17e6955c2fd2c5833e4bd050b9f57c0524fe3cc6b8770d32fe3aadfd84477cfc958e2db06377cb80374d85bea992c694d429045a8c44112ad7a WHIRLPOOL 4f49c46179101cf6d7bb469efdbfc04915a344c4169b9b64ce1667f465457f93464dc0e81790ed9fccd9b287c7941c7b562f54c5f3f91eaee5e34dfccf5d6409
DIST thunderbird-17.0.9esr-eu.xpi 407189 SHA256 ed9dc79fcfdf77f0dc104d6af01423a67305e07a62acd5868feba3e1048b06b4 SHA512 c58e6a97d7cfe87e177acf0c25683681fd286e45e493842d14a4baf8cdcf9272354adec321faf1b180086db96d40b9c2d5cc0af06d4a4558ef0f963c0a060a9e WHIRLPOOL 73c6b3c1960f893591605779f3d8d767f6c8b047180a9d5849c907f4b19a2ba407d22e97cb09ee47934a7a2042c0f175ea8938614fc8e86ae29eb8e1c0d70e86
DIST thunderbird-17.0.9esr-fi.xpi 413620 SHA256 851a9b964cba577114ccce606fd6265bc44f1dd67dd48ebd1968d88c4815b9e9 SHA512 a9caf8c6cdbba2839caa3fee6051b163fcf9b01850c94163b5a93aa1b6d400308b250e2fab9d6c624d01d81391da95d14a2f4c6f34a78cdac97b5ab7a5496af6 WHIRLPOOL 1e09bfbf3b25ad0093059f18dac438e5d1169e64aa38c4360121ecfe6067392ab3f472b852edce4b93c705246ec08451c16ddb85488ccf4f930302fa9f34014e
DIST thunderbird-17.0.9esr-fr.xpi 420826 SHA256 364a9445d3e3650af6f248266a4c9870bd1dbf531b2d28dc64632cbf6d6ce4b3 SHA512 7b3adba972703d3eaf7c4d5e854b40ac342c423f1203abbe732f95a0a5205b18a276a859dbfb319bedda0097cbb787af010e97abf78217e94d10865b2e9d87df WHIRLPOOL 1f1b047a0abcf5921a8abdfeadb299d80ccaaff220a4c222ecb108775ad93346ab04c3dfa88ac2996c308a9db85d4e379512268bd11e5559e6dbddc9f49a7283
DIST thunderbird-17.0.9esr-fy-NL.xpi 415712 SHA256 0359548d3a83a52b9c6231f1320d4fb8f4d510ce745e9a89780cbb72e824e52e SHA512 61f381cd42752c35eb608bcfa8640b0e201824762c58405ce38fb3c9a49dc9eaac6241a34307da7480312151674bc16ba07454a404d2cd606a03aab773d3b79f WHIRLPOOL e9421d2145cab1c12a271a335b1d4cfbdcb3abc54691c71cffd6246c3531ab5be245a4f7c17c49c412d45161bc9d77b25517354293f580481ee3d7c97853329d
DIST thunderbird-17.0.9esr-ga-IE.xpi 425395 SHA256 cc546d6bbeb690223ab00c98b51df8e06984b54b3e478d5f1340c83e7690af47 SHA512 13c58e3d9f28c5a08ce06051786482c1a857cde5c1e8bce910f59e1ef9baa81efe59d76c7ae1cd688629f6de4f78dacb8c50e30b5b87dec1072c52b257194260 WHIRLPOOL c2bb856d107fe4fd7f9d7351ff224e0def3e3ffdd5629ca99c592b7ee52af3753d033a976e7082ec88d14d4821dcdf53cfb902a23b5cfacab9f92234f0d4fb4b
DIST thunderbird-17.0.9esr-gd.xpi 428939 SHA256 2d714adbf5b3b02a958f86162a2d70ffcccc7537f956db5490ae1f0a24fc2289 SHA512 dbee10ac700fedda0416c54eace6113f6d1c1f51813c779ff40ed87515c639b469c8fc672a89911afd9f04055cce5956c242c2db65a33a99f95ff773c9af5ca3 WHIRLPOOL c8a0dafae211708ec3c34b480793befb0635280ef62e2672291682749aeaa739a15377cb6f31590ae1be97302da29c762481b1bb6c6a08e7755999932cd9f2ef
DIST thunderbird-17.0.9esr-gl.xpi 410370 SHA256 82758ac35196e9c43ff5e163956f6a7724f8c2558881ec3ff2d6bce0f76cefa3 SHA512 5b63388fb201139e8ce7c8377611405cca0f75e94c2fb2eeb49b0d6add4d68a761a3d865e83ded8510dd1cd5dc64ca1d62ee1a5916cbbd53824d559caaae4fc5 WHIRLPOOL cd60acfab6ab305352c98bd36b9522ce6ed1edeead29dce0a88b1b47dc45b8585dfa54de810141e003d760b196fea49f38e287893432766064230eebd8d58edd
DIST thunderbird-17.0.9esr-he.xpi 439504 SHA256 6577a9bdb5bf3d7feaf52d2ccbd32de4a81b4d7fe767dd543f0164fb77d21705 SHA512 d5dc72c65b4ce73e98648cea36bcc3d505f58dce542ac786e1cbe700958b175e71eca820f31bab8094c885058bdcc6f815ea67d587337edccb55913d51338177 WHIRLPOOL 3fbd7ae54df924ba59180be9ae943348ce406b29f51236951432b9d16e10dd6921ba27bf80a3864f7bcc5f432c6eeaf4817fc817f95898419246d4b81d30ab5c
DIST thunderbird-17.0.9esr-hr.xpi 411413 SHA256 1a15a8151f19725e49cf248981de36d3967e4b6c17a56fac92b79fc46673ef7d SHA512 19267dd110964b2d07e733c4066e73fd2592186666ed64181943da3f1899326bf2b3c7464e41150e31930b9fb0132ad1b367bd941dea9b2e976640a860c0f1ee WHIRLPOOL 9c91a0d97bd21550b59d0d4fd9fa8151a7dbbd22c8a6d67efb98c2962a79079e7771069a1541825262c0c74489df52686136e866a48267ad0a91b1b965f7ad1b
DIST thunderbird-17.0.9esr-hu.xpi 433186 SHA256 1cff0a7563801b1eb29667737a69801e4edb24f6b5ded60c47862359edfdf7fc SHA512 d44ac386550b3f65eadf05e97845a8849732c5ccc11e53d4dc60b5c77713fe3622f2c685d4875a7dce22ff9d08f3a739ed474ae862c3ed5e5c91f8a775cef8e5 WHIRLPOOL 27f2e31e5fd164cb42e447b6175aaffd236c1b16cf51ddd07b9da342b52050aab1d9bff57f96db2f4b39793d8b010b682e96b61c58dcb581aabb639bf97323bc
DIST thunderbird-17.0.9esr-hy-AM.xpi 611963 SHA256 cb90665cf68c1f5487218a02961a8fdcfbb62ff415198eb7ec40d599d30b6085 SHA512 268f7dfd2cf555ade0bc1b44ad490eb9f76cab65113a249eadc363aa1d01c4031f6da993126fa410e245f3365e83c27d0cd1709d4074288dea185718aa37b495 WHIRLPOOL 3d1795d190a3f36312cb53b4fb22022795a1d03292a80b3ace7d2b60b48962a030c14d4edfbbf74ebb5b3579eab0e52257cc55ae506380bba5457e560cb6ce34
DIST thunderbird-17.0.9esr-id.xpi 439574 SHA256 6a1c82039e8fbf467fa53eaf25b327aafbcfed7a83e0963a4252577756c81f30 SHA512 390f3c38c2640de84b0892fb2cff4fadaa228e7c0ce473fc0ee82e2a9337ed71a48fd5b84692ee8ab55b3b1c0932bec162089641f9e2550236f46bfb8823aca4 WHIRLPOOL 5800fac1e6c0c6a0840a21da3827aeedbe14c8f4baba60c7a265bcbf8c3779e36d6ab8ee78591be89a38c626329157d670c6914c2719b60b442ec5e5492f2356
DIST thunderbird-17.0.9esr-is.xpi 414068 SHA256 620db0517b91ff6a87ac2647704eaeacd174271532d5ba78f2f7b6c1c0cc6f27 SHA512 4fcfe539730edc85de2520eed603c8999f58522d55f52ee92674a480e85048a0a2d0309c8db7908af7460e15ff02918207ce8e6ce058cd2a946237f2093e7c4c WHIRLPOOL 67cd2dcd73ea4538747fcf54caf5d301bd06c8ae144f7bf547fe898bc9e8ddf1b11a5f4bf0c6bdac6b1e9a1cc28f87b47f15e5c7812907f28774211cf0da00db
DIST thunderbird-17.0.9esr-it.xpi 348621 SHA256 cb3c1f4af7d3ef3616b3a8a90b72ab706ceb44f3d1eb86354f211ff1d3159402 SHA512 0cbdba4814945f1fc49150771f1e5b340aa664b5bf0d61e6ea53477e3fbac6bec7341dfb963fcfd1514112f20381dfe33765bfd0c6baecf2ffe75fc877e025bf WHIRLPOOL 1813bfa77949f03d7850cabb39c0fe6ee5914bc3b8ba48a66257e3f00974a20fec8db77c6d31170ffe4c7046a49861327fff5d77a76eac2f052d589e459df385
DIST thunderbird-17.0.9esr-ja.xpi 463488 SHA256 1cb49f15d2ecc5d8e7d28df48140bee47adff09eae5d335c115f5a1b26a693fe SHA512 cfb15ec2b63c7f715f46a809a07edb5c06a8dc59fd0a5f229b20f4e80666c829f0fc702dcaf775de7f29d065b21bf940ede449aa7ae7c487d711b62d542eb1a5 WHIRLPOOL 16ee4b461ea90c4803fa4f5f2575e105c004be9222b5e27c07fdfb7bd30b7af2a5b28f3d2e740634641c8554039c645892ae02787ea2570c25aa1706dde7b529
DIST thunderbird-17.0.9esr-ko.xpi 412964 SHA256 60982a14e282c085af2cbad1da26cb7964ca5a3f2ab1cefc21d3a2db1d0d5a27 SHA512 b782c99ce934aaab75a942c199fe36c196c44203fc3c8c335dc7a7e3bb5f1193032563ab6e70e8cce1a4deee2f2fb43a7db48c5169cd9acee5c98c679a4e7341 WHIRLPOOL 476e554b7d3c9d8d8ff1b2870f9e9f5d3211fdb27516e8c50a88a72440c811fedb5311c76c16eacd205e32e83efcd12613ac0d4c7af76f09c80b50bc86b158b6
DIST thunderbird-17.0.9esr-lt.xpi 519802 SHA256 79055050636741bbc88066da54f7f4a2e095d15080dd689c442a50bcbf7500a3 SHA512 3bd6609ad614009567c7ba43ed7c08dc5a530338936d79ca48878edab37722e51b87765ccec8969e61068b9a0765d4b0e4b274f5a4e665cfbbc3220a264003d1 WHIRLPOOL cc5720f55eb7bc496d5d6cef09189731df1ea857698307d96497a595881b4c36e5e7e09be5581f959839c76e56400e09d1654fa5382156031be3284d3c286cd4
DIST thunderbird-17.0.9esr-nb-NO.xpi 408519 SHA256 e6ab2156ac23c7a305dbae9982efdcd625169a7f0428751924f022eaff584111 SHA512 218d0b20428125b62b3a0c7c9dfbbcc22430c59d8784655ab0b1e68816b00c2752a968abf9003fa66e0f7af3bc97612a276b26c86d3159ff971ca710828dfedd WHIRLPOOL 1c5a9659abd7b28fef42c3313f2a2c80dbd54e18216337fb4f04f97fa83a22aa95316c85ddc77df6907b9e0404260e414720e343e8a78f5882c983937511dd99
DIST thunderbird-17.0.9esr-nl.xpi 408527 SHA256 bf7c41f8814ae2505efce8a4f4e03c08c4fac8c9151e71be91087e68220a3cc7 SHA512 f6458a839fc4eb6ca2fa4287d09c16b527d832ef9fbed1bb121a6c12dea7ebcb8fb8717b0592a5fef7c6cbe8852e43dc605235d9197b4cf8969b2728d7b67f98 WHIRLPOOL c1cf312519f321f7c86e875558d747bb738a7d9622f783483d77a812b77f0e0634ddb345a9a68e412e3f5536f16e085cda11bd29719963aad4d202275d6f623f
DIST thunderbird-17.0.9esr-nn-NO.xpi 431472 SHA256 cffb3ebc6f8f037015c96a68d21e9fdaf7597e0da9b7cc060ab563981904b37f SHA512 f547d9a7400503cc5e0ad16a2ecc87966422e811ce2d1ec8076ec34dbfa5cab739e1c9ba8c6cdc2779a1ba01a369d8416d1f2bbe6f8b3ed60ecfb1a50b2a31cb WHIRLPOOL d3ef56ae032a3275f70c6d4fa37cf05e40595be19227d6b77374b88f906a3cbbfce5558379e0971e77054790b10ffcd4a07df87ed00381169a4a0dd409c3b6e9
DIST thunderbird-17.0.9esr-pa-IN.xpi 492445 SHA256 9da1879c3d202333b197316a933a9bddb604eef588808ae5aafede66072678aa SHA512 e8a8c2d727bbe89d9bbaf35afce41c29d45fd7690408192923927ad7f33b9408a815141b7ef1963f87b8733708aad195ce7d34eab1c1c4576ba6f9299eb5fe51 WHIRLPOOL 6ae23f8b294c350bb66b359f50eb6b9e496cb0f6a5763d0732a3e0df1b2bc165babf737c242cd09e7bdb9659a5fbad53de299a66b0efba2a587e9a5c3c41560e
DIST thunderbird-17.0.9esr-pl.xpi 402114 SHA256 430f92c221970b7080cce017276af1e582213bb798809cc5e00b6a99181044d8 SHA512 af5a0cd5cbd5f27a80e40b970ecdef3f2e38028d11d37211e3b79b7b5ea925708ee8fdd04aa50d4daadaa80f98aad24cc740aa15d2a20e7b2e24486356b3e561 WHIRLPOOL f4db5e5b0886aadc5d4de5916b4a81feba4c8092e0ef86740c6864b85b9629ffdf9212871cc676404a6277d45ab35506170753b0eb5cf12102241c2af1f74aeb
DIST thunderbird-17.0.9esr-pt-BR.xpi 415778 SHA256 ec2193cd3c50a3b2a59d2b0373c52cac58924ea933bb014552de88a4ff6b3b92 SHA512 bca128a56c96651c6634009290946ddf8ab74f1f391432f9689ec3e384468995c9b070554ef46b0f487ae46992e379b76710513c4b484e4d6529fc7df3a8547c WHIRLPOOL 19b7f2ce2eec6cfbe58bf8ff802654546c9a6934cbf30df18b5915b57d0e9768a9dcd588f07b801f42e5a03902f5811841a97d6f33fbe33ee5322552a32e3f97
DIST thunderbird-17.0.9esr-pt-PT.xpi 445754 SHA256 59832be543ada94ca6fcc8bf69dd5b9cbaa49194eb0fc0a7c0b033ca235f532a SHA512 9dab0bf3d1620cfc018330ab6f89631bf80473cd10010358bc4b9be4a5de2a9dcddd80fcbc79cef47fb71cdbdcb87e6ca63927aaf349d6cd05b2c0aedb67becb WHIRLPOOL 860e8ae963cd120ada6f602d6676ee01ec240604fa349cf61df9cf658d089282017a74985fdac6303f40d61ec6f73ff6e27160b289c89e49b8162ae6b9c158a6
DIST thunderbird-17.0.9esr-rm.xpi 415531 SHA256 705d4dbbe6a25411929551bfa723ea1db00ae7a391ae2458527a597cb0cb2478 SHA512 2e954429bf3006d305612dfa5fa7393b43329ed383f625dab897239895f5822c091284c1b56f6af4abcb5de721204c32e3252badbc837b5d73ee237d2a8ed4d1 WHIRLPOOL 856cbf109e6f8fb68ed5b5bd418572f5c0d1b662113fd29c80cd4132bc6262607f26c98783c607ec6eac0ffb906824503680485133ec1ce2e2f8c8d5e12ea88a
DIST thunderbird-17.0.9esr-ro.xpi 480493 SHA256 17fee29176d3bb52f922568ffa7bd35c7e32bf24f82f0ef0bc887d0339516f5b SHA512 74951558e5413efef09eaab95d232f3356700467671a56f2209befa6696db96309a349210aa6cc843369b3bd71f187452419f698a55360beab5f70067e707401 WHIRLPOOL cd374e3e5aaac458838fe561dab4842e2df268368e5f7e70216a0ff33a161a3553c29fd2a09ec87ce3a118f69262e181b86971a1ff6d4b233450548638a35231
DIST thunderbird-17.0.9esr-ru.xpi 415708 SHA256 16959792649d77f70066b6235d1318c3a1650337065229b9f791028eed460f5c SHA512 bc9658806c95e49dbc85c98e11e8717353d47a8596910a91d865b70d1f9892175aecaa47c6907b80c77c5a66de3139a669390214fa1d5c9a87f470959e000f63 WHIRLPOOL 06ecb59970d40ad7f98fbef8b06044bbf7168d568a63db661bfb5de49b13b27bb79ec41fcfd1a77e016606b1450a9e0395cf9474d9cd98e9342365389fbb34d8
DIST thunderbird-17.0.9esr-si.xpi 494162 SHA256 9b5054587259c21e301c25e55c4908c25581e8e98c8ee0b800542fbcceaccc2c SHA512 1da84d717235e6876c7522ea684701e636d2c8b2e1f3343f5e2f7e4e89cc2ecd73c99e5ebb432804efa8537d5fb4bc31b924e5bb88d99a7875b90e4368218a4a WHIRLPOOL baeeb3846a7a0c0e93298ebebd65047f965dea857507c9fb95696c399ac2b20eea7b426ef65f0308d0b1ea438b03b9dc72323363874630d2ef1a153f6b6240a1
DIST thunderbird-17.0.9esr-sk.xpi 429756 SHA256 93f4b27cb13ca05eb7589eba262153bbc40b403ee9d9bf6e37682fc04b962359 SHA512 03e19ec4434b2e60073d14acc4801412d2fb4c375862a7866467cc2afc5165fc47f08a247be3273b52dbd6030fcd1e2f1fc2b5f521c02a6f67fd8213ce45da36 WHIRLPOOL 8465d030c7b90162eb01b7553234a59bbd561ca96257de49f18245bd78d268289d90b9da979abe0bc3e2d11b7f834a7e3148c984c8b8498691b285096d7bc426
DIST thunderbird-17.0.9esr-sl.xpi 442096 SHA256 b3d5e1d30865a0063cfbc84b9c8f529b605634e4b2c47480ecb7cd7bd62b22e8 SHA512 5f6c1bd3fe68a4da9ad08df72dd76341d631f4247cb4cb55d5a1b9ef3300805aba0dad115f73728c373ec7cab720ce117ddcf7db510443b18a4caa23d6f2356f WHIRLPOOL 7864fb82a71333feea755162e0090c5af0e41940f022f97e0cbfbe47dd5b98068bc6d3ccaa4253b659f091da93abe8fefd4e04acb506aaf6d5bea2dd886d934c
DIST thunderbird-17.0.9esr-sq.xpi 418781 SHA256 d7930811e9b937da6cfc8482a13a866e56f55da0e3eb41abd7a3ba1e089437b9 SHA512 37f0d7b1f31f9fc0e08fcf72999d872fe142e835826132f5be64002af6b4de5bdfda78fcd14c13d03502f572473eb9ef1e2ab383ea1ef08e0133b13384d6353c WHIRLPOOL c03def8d46d47b3e7b1d0c9c9fa4a0a1a52ce4b6c403971935a5ae4055ffef9cfa888291653fd84b80b95e084748f961e662a9481ed594a8297bc47628d735ca
DIST thunderbird-17.0.9esr-sr.xpi 502500 SHA256 6dd80acb8a555875e4dc589d8c1b46ac26c8eec26d303e411ba343ec062fce97 SHA512 3bfc4fbc03fef56bcdfcc1ee62543a293dab7de39d7ad9c927f902e83317112af196647dc34d8b51f1382bbe07010c5bfc3ff35491cfb5f4e529cea57be68052 WHIRLPOOL f8212836d0eb269fb07a4fd9bea37c8cd028c69aea4e2edc333213d305dfeb08c6baa7f10334f1c102dbb7f4569569e3caa749911d0d9163a69973b0e3491775
DIST thunderbird-17.0.9esr-sv-SE.xpi 413218 SHA256 fff7d750c4fb1d1b9bfb9ac79c7dc3eeb3677b871e3e2a3bdf684d2b80aea69a SHA512 3d574a31da8716f991d7e4f5df9a96614be5323fc06b75460e47aa19289ac9c2ec17dcc2910e9e50969e41bb9829eb8bae0620cf423dabbecb36b10fa229bd00 WHIRLPOOL 7e2d63f17eeaa920d1c7bb711a08f98eb7f61eef5337c3a54cf11b3a66e2eed44c3f59203a8fd18fad80e1e5f50a2281d7a12b231052f4d9810f2cf1da82bd62
DIST thunderbird-17.0.9esr-ta-LK.xpi 517912 SHA256 295ecf13dc82894f3e71fd5d8e6a6999205309e093945faf24871c375bf05b16 SHA512 ba1abc25b66f5bded56b0bc2c8536308058ad52661e7b0d72e91c6dc31eb6d002b446f6def7e2659bd5752f2cba088425c491f0d34474de20cfb3f2d61715510 WHIRLPOOL 6afe4b53ab526a250c1ec3969f3e28987c2976389af44e8d652674adc56ee5280c85d27c584cd93567d960d232f9e70537209514b4fa37fb85fb324340e38fc6
DIST thunderbird-17.0.9esr-tr.xpi 444945 SHA256 c51a6afe47366c5407b13aca33e2d50d3c11e3f5be87422f45d430acf82474ed SHA512 a3cc4b4c9a8a155f4a2f5e21721868d20470937b585356f19b9e9044f57bad7a61ab816e9dbf7f0e49001ad61081dc27b60473d53f98cb39fcb89ab53a49de44 WHIRLPOOL 269529b6e38b0c8f64c09ead706bdc5f1f9a81ae696d43446d90a9f730aee1d1aa7cc288d87a234d4ee5b8f8829e8315ade1f2b068107cfc8e03dfa457ce4891
DIST thunderbird-17.0.9esr-uk.xpi 471142 SHA256 31b391426fbf0685f858e41d20cc41881fa14b08cf7b25b315efae578135b9b9 SHA512 2a306a6e4e96a7b3e38b57038e7fc1b281ce36d66557ba0e22b3345ac94dc8557e3c4414613219556563c4776e5cd8f891d62e6d317de2426236895a482456ff WHIRLPOOL a09774a78659433b1ad4039049121bddbb4d04f4c0323553bbb90fed44c70dbc9739161586f041915547874b39d74ac55092541e063ed5c32cec98845ca4d3b1
DIST thunderbird-17.0.9esr-vi.xpi 478454 SHA256 02952f9e9797bbeafecfe760664222fb58dd64f21be0cd89b0eedc6068c49aec SHA512 79b93eece8c1f4514368f38e38aa3e4d0188f1550cf207d2cbff83f10ef29b13f886ac1995809618b61f280fb66af12ff4f6a93d7986f4c1ce091927284adff7 WHIRLPOOL b35d7a7ea02024131010ac934a77def68cab2535cc6a496be320fb2e655a3eb1d00799238b2613a3079d7df0fc7c7f15cd61be6a8b0714bfb2716b7b294b9525
DIST thunderbird-17.0.9esr-zh-CN.xpi 436082 SHA256 0e7b80289addfd1cb030dd8d16a7fcb749ecb410504e4c50489e62cc5f0ccbeb SHA512 0f9db08d5973b38b49e056b42c3487219da7921a641c1a16daade5dcf064429b090c0d40b2c719a83932349b58bd137f0ca7fa313f6abf288f2e2be6c5178622 WHIRLPOOL 7e12310b57b9632652da0ddc259e349262c5512495c3bcbc4552c8d4819c59e39de9be1ff6971122caac4f04e8781fe2d5e867c467ef191c55d80131bcadc226
DIST thunderbird-17.0.9esr-zh-TW.xpi 437591 SHA256 f44b738f76292ad20b87b1afa148e7cd13e60c4f4ddc456ac2cfb7dfcf9d836d SHA512 05ddc92a6df7c7f2ad1e5b55cfffe716ed54ae0ed64df72e3813823477d57e91bdfe3c3ae08bc544461e70e90cfdec997384031e04193a9761b122d315fc9e05 WHIRLPOOL dead2063e57d174daf6e9923ce21b6627642aca3579692f7c72c2e9dde14b62073b62fac6101d62063430349eb97f52044eb9db4f34e02f381944e6970354b1a
DIST thunderbird-17.0.9esr.source.tar.bz2 113699896 SHA256 eb4a2387c28185e992e9b807adc8619b7e1b77296a4e461108741a00da7a3099 SHA512 dc74196c953a792f724f0de8ee26092dafaca3bf11a77450b6f621488ad70a147d874d4e5449a4f29742ec7d99a51cc883b40649c1c278af005e862ed114a535 WHIRLPOOL 586e565dbc5ac8e776a1826680dc743a04018ef4a21cd4cc6f6f2107f830f5c4a384f46b60374cbf4ddda8ae82e08375c9d2dd98abe6b9e4c9b20116e4e97c9f

@ -1,342 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird/thunderbird-17.0.5.ebuild,v 1.7 2013/04/16 05:56:30 polynomial-c Exp $
EAPI="3"
WANT_AUTOCONF="2.1"
MOZ_ESR="1"
# 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
es-ES et eu fi fr fy-NL ga-IE gd gl he hr hu hy-AM id is it ja ko lt nb-NO
nl nn-NO pa-IN pl pt-BR pt-PT rm ro ru si sk sl sq sr sv-SE ta-LK tr uk vi
zh-CN zh-TW )
# Convert the ebuild version to the upstream mozilla version, used by mozlinguas
MOZ_PV="${PV/_beta/b}"
# ESR releases have slightly version numbers
if [[ ${MOZ_ESR} == 1 ]]; then
MOZ_PV="${MOZ_PV}esr"
fi
MOZ_P="${PN}-${MOZ_PV}"
# Enigmail version
EMVER="1.5.1"
# Upstream ftp release URI that's used by mozlinguas.eclass
# We don't use the http mirror because it deletes old tarballs.
MOZ_FTP_URI="ftp://ftp.mozilla.org/pub/${PN}/releases/"
inherit flag-o-matic toolchain-funcs mozconfig-3 makeedit multilib autotools pax-utils check-reqs nsplugins mozlinguas
DESCRIPTION="Thunderbird Mail Client"
HOMEPAGE="http://www.mozilla.com/en-US/thunderbird/"
KEYWORDS="~alpha amd64 arm ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
SLOT="0"
LICENSE="MPL-2.0 GPL-2 LGPL-2.1"
IUSE="bindist gconf +crypt +jit +ipc ldap +lightning +minimal mozdom selinux"
PATCH="thunderbird-17.0-patches-01"
PATCHFF="firefox-17.0-patches-0.5"
SRC_URI="${SRC_URI}
${MOZ_FTP_URI}${MOZ_PV}/source/${MOZ_P}.source.tar.bz2
crypt? ( http://www.mozilla-enigmail.org/download/source/enigmail-${EMVER}.tar.gz )
http://dev.gentoo.org/~anarchy/mozilla/patchsets/${PATCH}.tar.xz
http://dev.gentoo.org/~anarchy/mozilla/patchsets/${PATCHFF}.tar.xz
http://dev.gentoo.org/~nirbheek/mozilla/patchsets/${PATCHFF}.tar.xz
http://dev.gentoo.org/~polynomial-c/mozilla/patchsets/${PATCH}.tar.xz"
ASM_DEPEND=">=dev-lang/yasm-1.1"
RDEPEND=">=sys-devel/binutils-2.16.1
>=dev-libs/nss-3.14.1
>=dev-libs/nspr-4.9.4
>=dev-libs/glib-2.26
gconf? ( >=gnome-base/gconf-1.2.1:2 )
>=media-libs/libpng-1.5.11[apng]
>=x11-libs/cairo-1.10
>=x11-libs/pango-1.14.0
>=x11-libs/gtk+-2.14
kernel_linux? ( media-libs/alsa-lib )
>=media-libs/libvpx-1.0.0
virtual/libffi
!x11-plugins/enigmail
system-sqlite? ( || (
>=dev-db/sqlite-3.7.16:3[secure-delete,debug=]
=dev-db/sqlite-3.7.15*[fts3,secure-delete,threadsafe,unlock-notify,debug=]
=dev-db/sqlite-3.7.14*[fts3,secure-delete,threadsafe,unlock-notify,debug=]
=dev-db/sqlite-3.7.13*[fts3,secure-delete,threadsafe,unlock-notify,debug=]
) )
selinux? ( sec-policy/selinux-thunderbird )
crypt? ( || (
( >=app-crypt/gnupg-2.0
|| (
app-crypt/pinentry[gtk]
app-crypt/pinentry[qt4]
)
)
=app-crypt/gnupg-1.4*
) )"
DEPEND="${RDEPEND}
!elibc_glibc? ( dev-libs/libexecinfo )
virtual/pkgconfig
amd64? ( ${ASM_DEPEND}
virtual/opengl )
x86? ( ${ASM_DEPEND}
virtual/opengl )"
if [[ ${PV} =~ beta ]]; then
S="${WORKDIR}/comm-beta"
elif [[ ${MOZ_ESR} == 1 ]]; then
S="${WORKDIR}/comm-esr${PV%%.*}"
else
S="${WORKDIR}/comm-release"
fi
pkg_setup() {
moz_pkgsetup
export MOZILLA_DIR="${S}/mozilla"
if ! use bindist ; then
elog "You are enabling official branding. You may not redistribute this build"
elog "to any users on your network or the internet. Doing so puts yourself into"
elog "a legal problem with Mozilla Foundation"
elog "You can disable it by emerging ${PN} _with_ the bindist USE-flag"
elog
fi
# Ensure we have enough disk space to compile
CHECKREQS_DISK_BUILD="4G"
check-reqs_pkg_setup
}
src_unpack() {
unpack ${A}
# Unpack language packs
mozlinguas_src_unpack
}
src_prepare() {
# Apply our Thunderbird patchset
EPATCH_SUFFIX="patch" \
EPATCH_FORCE="yes" \
epatch "${WORKDIR}/thunderbird"
# Apply our patchset from firefox to thunderbird as well
pushd "${S}"/mozilla &>/dev/null || die
EPATCH_SUFFIX="patch" \
EPATCH_FORCE="yes" \
epatch "${WORKDIR}/firefox"
popd &>/dev/null || die
if use crypt ; then
mv "${WORKDIR}"/enigmail "${S}"/mailnews/extensions/enigmail
cd "${S}"
fi
# Disable gnomevfs extension
sed -i -e "s:gnomevfs::" "${S}/"mozilla/browser/confvars.sh \
-e "s:gnomevfs::" "${S}/"mozilla/xulrunner/confvars.sh \
|| die "Failed to remove gnomevfs extension"
#Fix compilation with curl-7.21.7 bug 376027
sed -e '/#include <curl\/types.h>/d' \
-i "${S}"/mozilla/toolkit/crashreporter/google-breakpad/src/common/linux/http_upload.cc \
-i "${S}"/mozilla/toolkit/crashreporter/google-breakpad/src/common/linux/libcurl_wrapper.cc \
-i "${S}"/mozilla/config/system-headers \
-i "${S}"/mozilla/js/src/config/system-headers || die "Sed failed"
# Don't error out when there's no files to be removed:
sed 's@\(xargs rm\)$@\1 -f@' \
-i "${S}"/mozilla/toolkit/mozapps/installer/packager.mk || die
# Shell scripts sometimes contain DOS line endings; bug 391889
grep -rlZ --include="*.sh" $'\r$' . |
while read -r -d $'\0' file ; do
einfo edos2unix "${file}"
edos2unix "${file}"
done
# Allow user to apply any additional patches without modifing ebuild
epatch_user
eautoreconf
# Ensure we run eautoreconf in mozilla to regenerate configure
cd "${S}"/mozilla
eautoconf
}
src_configure() {
declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}"
MEXTENSIONS="default"
####################################
#
# mozconfig, CFLAGS and CXXFLAGS setup
#
####################################
mozconfig_init
mozconfig_config
# It doesn't compile on alpha without this LDFLAGS
use alpha && append-ldflags "-Wl,--no-relax"
# We must force enable jemalloc 3 threw .mozconfig
echo "export MOZ_JEMALLOC=1" >> ${S}/.mozconfig
mozconfig_annotate '' --prefix="${EPREFIX}"/usr
mozconfig_annotate '' --libdir="${EPREFIX}"/usr/$(get_libdir)
mozconfig_annotate '' --enable-extensions="${MEXTENSIONS}"
mozconfig_annotate '' --with-default-mozilla-five-home="${EPREFIX}${MOZILLA_FIVE_HOME}"
mozconfig_annotate '' --with-user-appdir=.thunderbird
mozconfig_annotate '' --with-system-png
mozconfig_annotate '' --enable-system-ffi
mozconfig_annotate '' --target="${CTARGET:-${CHOST}}"
mozconfig_annotate '' --build="${CTARGET:-${CHOST}}"
# Use enable features
mozconfig_use_enable lightning calendar
mozconfig_use_enable gconf
mozconfig_use_enable ldap
# Features know to cause problems with hardened.
mozconfig_use_enable jit methodjit
mozconfig_use_enable jit tracejit
# Bug #72667
if use mozdom; then
MEXTENSIONS="${MEXTENSIONS},inspector"
fi
# Use an objdir to keep things organized.
echo "mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/tbird" >> "${S}"/.mozconfig
# Finalize and report settings
mozconfig_final
####################################
#
# Configure and build
#
####################################
# Disable no-print-directory
MAKEOPTS=${MAKEOPTS/--no-print-directory/}
if [[ $(gcc-major-version) -lt 4 ]]; then
append-cxxflags -fno-stack-protector
elif [[ $(gcc-major-version) -gt 4 || $(gcc-minor-version) -gt 3 ]]; then
if use amd64 || use x86; then
append-flags -mno-avx
fi
fi
}
src_compile() {
CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getLD)" \
MOZ_MAKE_FLAGS="${MAKEOPTS}" \
emake -f client.mk || die
# Only build enigmail extension if crypt enabled.
if use crypt ; then
cd "${S}"/mailnews/extensions/enigmail || die
./makemake -r 2&> /dev/null
cd "${S}"/tbird/mailnews/extensions/enigmail
emake || die "make enigmail failed"
emake xpi || die "make enigmail xpi failed"
fi
}
src_install() {
declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}"
declare emid
local obj_dir="tbird"
cd "${S}/${obj_dir}"
# Copy our preference before omnijar is created.
cp "${FILESDIR}"/thunderbird-gentoo-default-prefs-1.js-1 \
"${S}/${obj_dir}/mozilla/dist/bin/defaults/pref/all-gentoo.js" || die
# Without methodjit and tracejit there's no conflict with PaX
if use jit; then
# Pax mark xpcshell for hardened support, only used for startupcache creation.
pax-mark m "${S}"/${obj_dir}/mozilla/dist/bin/xpcshell
fi
emake DESTDIR="${D}" install || die "emake install failed"
# Install language packs
mozlinguas_src_install
if ! use bindist; then
newicon "${S}"/other-licenses/branding/thunderbird/content/icon48.png thunderbird-icon.png
domenu "${FILESDIR}"/icon/${PN}.desktop
else
newicon "${S}"/mail/branding/aurora/content/icon48.png thunderbird-icon-unbranded.png
newmenu "${FILESDIR}"/icon/${PN}-unbranded.desktop \
${PN}.desktop
sed -i -e "s:Mozilla\ Thunderbird:EarlyBird:g" \
"${ED}"/usr/share/applications/${PN}.desktop
fi
if use crypt ; then
cd "${T}" || die
unzip "${S}"/${obj_dir}/mozilla/dist/bin/enigmail*.xpi install.rdf || die
emid=$(sed -n '/<em:id>/!d; s/.*\({.*}\).*/\1/; p; q' install.rdf)
dodir ${MOZILLA_FIVE_HOME}/extensions/${emid} || die
cd "${D}"${MOZILLA_FIVE_HOME}/extensions/${emid} || die
unzip "${S}"/${obj_dir}/mozilla/dist/bin/enigmail*.xpi || die
fi
if use lightning ; then
emid="{a62ef8ec-5fdc-40c2-873c-223b8a6925cc}"
dodir ${MOZILLA_FIVE_HOME}/extensions/${emid}
cd "${ED}"${MOZILLA_FIVE_HOME}/extensions/${emid}
unzip "${S}"/${obj_dir}/mozilla/dist/xpi-stage/gdata-provider.xpi
emid="calendar-timezones@mozilla.org"
dodir ${MOZILLA_FIVE_HOME}/extensions/${emid}
cd "${ED}"${MOZILLA_FIVE_HOME}/extensions/${emid}
unzip "${S}"/${obj_dir}/mozilla/dist/xpi-stage/calendar-timezones.xpi
emid="{e2fda1a4-762b-4020-b5ad-a41df1933103}"
dodir ${MOZILLA_FIVE_HOME}/extensions/${emid}
cd "${ED}"${MOZILLA_FIVE_HOME}/extensions/${emid}
unzip "${S}"/${obj_dir}/mozilla/dist/xpi-stage/lightning.xpi
# Fix mimetype so it shows up as a calendar application in GNOME 3
# This requires that the .desktop file was already installed earlier
sed -e "s:^\(MimeType=\):\1text/calendar;:" \
-e "s:^\(Categories=\):\1Calendar;:" \
-i "${ED}"/usr/share/applications/${PN}.desktop
fi
if use jit ; then
pax-mark m "${ED}"/${MOZILLA_FIVE_HOME}/{thunderbird-bin,thunderbird}
fi
# Plugin-container needs to be pax-marked for hardened to ensure plugins such as flash
# continue to work as expected.
pax-mark m "${ED}"${MOZILLA_FIVE_HOME}/plugin-container
# Plugins dir
share_plugins_dir
if use minimal; then
rm -rf "${ED}"/usr/include "${ED}${MOZILLA_FIVE_HOME}"/{idl,include,lib,sdk} || \
die "Failed to remove sdk and headers"
fi
}
pkg_postinst() {
elog
elog "If you are experience problems with plugins please issue the"
elog "following command : rm \${HOME}/.thunderbird/*/extensions.sqlite ,"
elog "then restart thunderbird"
}

@ -1,342 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird/thunderbird-17.0.6.ebuild,v 1.6 2013/05/25 20:47:56 ago Exp $
EAPI="3"
WANT_AUTOCONF="2.1"
MOZ_ESR="1"
# 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
es-ES et eu fi fr fy-NL ga-IE gd gl he hr hu hy-AM id is it ja ko lt nb-NO
nl nn-NO pa-IN pl pt-BR pt-PT rm ro ru si sk sl sq sr sv-SE ta-LK tr uk vi
zh-CN zh-TW )
# Convert the ebuild version to the upstream mozilla version, used by mozlinguas
MOZ_PV="${PV/_beta/b}"
# ESR releases have slightly version numbers
if [[ ${MOZ_ESR} == 1 ]]; then
MOZ_PV="${MOZ_PV}esr"
fi
MOZ_P="${PN}-${MOZ_PV}"
# Enigmail version
EMVER="1.5.1"
# Upstream ftp release URI that's used by mozlinguas.eclass
# We don't use the http mirror because it deletes old tarballs.
MOZ_FTP_URI="ftp://ftp.mozilla.org/pub/${PN}/releases/"
inherit flag-o-matic toolchain-funcs mozconfig-3 makeedit multilib autotools pax-utils check-reqs nsplugins mozlinguas
DESCRIPTION="Thunderbird Mail Client"
HOMEPAGE="http://www.mozilla.com/en-US/thunderbird/"
KEYWORDS="~alpha amd64 arm ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
SLOT="0"
LICENSE="MPL-2.0 GPL-2 LGPL-2.1"
IUSE="bindist gconf +crypt +jit +ipc ldap +lightning +minimal mozdom selinux"
PATCH="thunderbird-17.0-patches-01"
PATCHFF="firefox-17.0-patches-0.5"
SRC_URI="${SRC_URI}
${MOZ_FTP_URI}${MOZ_PV}/source/${MOZ_P}.source.tar.bz2
crypt? ( http://www.mozilla-enigmail.org/download/source/enigmail-${EMVER}.tar.gz )
http://dev.gentoo.org/~anarchy/mozilla/patchsets/${PATCH}.tar.xz
http://dev.gentoo.org/~anarchy/mozilla/patchsets/${PATCHFF}.tar.xz
http://dev.gentoo.org/~nirbheek/mozilla/patchsets/${PATCHFF}.tar.xz
http://dev.gentoo.org/~polynomial-c/mozilla/patchsets/${PATCH}.tar.xz"
ASM_DEPEND=">=dev-lang/yasm-1.1"
RDEPEND=">=sys-devel/binutils-2.16.1
>=dev-libs/nss-3.14.1
>=dev-libs/nspr-4.9.4
>=dev-libs/glib-2.26
gconf? ( >=gnome-base/gconf-1.2.1:2 )
>=media-libs/libpng-1.5.11[apng]
>=x11-libs/cairo-1.10
>=x11-libs/pango-1.14.0
>=x11-libs/gtk+-2.14
kernel_linux? ( media-libs/alsa-lib )
>=media-libs/libvpx-1.0.0
virtual/libffi
!x11-plugins/enigmail
system-sqlite? ( || (
>=dev-db/sqlite-3.7.16:3[secure-delete,debug=]
=dev-db/sqlite-3.7.15*[fts3,secure-delete,threadsafe,unlock-notify,debug=]
=dev-db/sqlite-3.7.14*[fts3,secure-delete,threadsafe,unlock-notify,debug=]
=dev-db/sqlite-3.7.13*[fts3,secure-delete,threadsafe,unlock-notify,debug=]
) )
selinux? ( sec-policy/selinux-thunderbird )
crypt? ( || (
( >=app-crypt/gnupg-2.0
|| (
app-crypt/pinentry[gtk]
app-crypt/pinentry[qt4]
)
)
=app-crypt/gnupg-1.4*
) )"
DEPEND="${RDEPEND}
!elibc_glibc? ( dev-libs/libexecinfo )
virtual/pkgconfig
amd64? ( ${ASM_DEPEND}
virtual/opengl )
x86? ( ${ASM_DEPEND}
virtual/opengl )"
if [[ ${PV} =~ beta ]]; then
S="${WORKDIR}/comm-beta"
elif [[ ${MOZ_ESR} == 1 ]]; then
S="${WORKDIR}/comm-esr${PV%%.*}"
else
S="${WORKDIR}/comm-release"
fi
pkg_setup() {
moz_pkgsetup
export MOZILLA_DIR="${S}/mozilla"
if ! use bindist ; then
elog "You are enabling official branding. You may not redistribute this build"
elog "to any users on your network or the internet. Doing so puts yourself into"
elog "a legal problem with Mozilla Foundation"
elog "You can disable it by emerging ${PN} _with_ the bindist USE-flag"
elog
fi
# Ensure we have enough disk space to compile
CHECKREQS_DISK_BUILD="4G"
check-reqs_pkg_setup
}
src_unpack() {
unpack ${A}
# Unpack language packs
mozlinguas_src_unpack
}
src_prepare() {
# Apply our Thunderbird patchset
EPATCH_SUFFIX="patch" \
EPATCH_FORCE="yes" \
epatch "${WORKDIR}/thunderbird"
# Apply our patchset from firefox to thunderbird as well
pushd "${S}"/mozilla &>/dev/null || die
EPATCH_SUFFIX="patch" \
EPATCH_FORCE="yes" \
epatch "${WORKDIR}/firefox"
popd &>/dev/null || die
if use crypt ; then
mv "${WORKDIR}"/enigmail "${S}"/mailnews/extensions/enigmail
cd "${S}"
fi
# Disable gnomevfs extension
sed -i -e "s:gnomevfs::" "${S}/"mozilla/browser/confvars.sh \
-e "s:gnomevfs::" "${S}/"mozilla/xulrunner/confvars.sh \
|| die "Failed to remove gnomevfs extension"
#Fix compilation with curl-7.21.7 bug 376027
sed -e '/#include <curl\/types.h>/d' \
-i "${S}"/mozilla/toolkit/crashreporter/google-breakpad/src/common/linux/http_upload.cc \
-i "${S}"/mozilla/toolkit/crashreporter/google-breakpad/src/common/linux/libcurl_wrapper.cc \
-i "${S}"/mozilla/config/system-headers \
-i "${S}"/mozilla/js/src/config/system-headers || die "Sed failed"
# Don't error out when there's no files to be removed:
sed 's@\(xargs rm\)$@\1 -f@' \
-i "${S}"/mozilla/toolkit/mozapps/installer/packager.mk || die
# Shell scripts sometimes contain DOS line endings; bug 391889
grep -rlZ --include="*.sh" $'\r$' . |
while read -r -d $'\0' file ; do
einfo edos2unix "${file}"
edos2unix "${file}"
done
# Allow user to apply any additional patches without modifing ebuild
epatch_user
eautoreconf
# Ensure we run eautoreconf in mozilla to regenerate configure
cd "${S}"/mozilla
eautoconf
}
src_configure() {
declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}"
MEXTENSIONS="default"
####################################
#
# mozconfig, CFLAGS and CXXFLAGS setup
#
####################################
mozconfig_init
mozconfig_config
# It doesn't compile on alpha without this LDFLAGS
use alpha && append-ldflags "-Wl,--no-relax"
# We must force enable jemalloc 3 threw .mozconfig
echo "export MOZ_JEMALLOC=1" >> ${S}/.mozconfig
mozconfig_annotate '' --prefix="${EPREFIX}"/usr
mozconfig_annotate '' --libdir="${EPREFIX}"/usr/$(get_libdir)
mozconfig_annotate '' --enable-extensions="${MEXTENSIONS}"
mozconfig_annotate '' --with-default-mozilla-five-home="${EPREFIX}${MOZILLA_FIVE_HOME}"
mozconfig_annotate '' --with-user-appdir=.thunderbird
mozconfig_annotate '' --with-system-png
mozconfig_annotate '' --enable-system-ffi
mozconfig_annotate '' --target="${CTARGET:-${CHOST}}"
mozconfig_annotate '' --build="${CTARGET:-${CHOST}}"
# Use enable features
mozconfig_use_enable lightning calendar
mozconfig_use_enable gconf
mozconfig_use_enable ldap
# Features know to cause problems with hardened.
mozconfig_use_enable jit methodjit
mozconfig_use_enable jit tracejit
# Bug #72667
if use mozdom; then
MEXTENSIONS="${MEXTENSIONS},inspector"
fi
# Use an objdir to keep things organized.
echo "mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/tbird" >> "${S}"/.mozconfig
# Finalize and report settings
mozconfig_final
####################################
#
# Configure and build
#
####################################
# Disable no-print-directory
MAKEOPTS=${MAKEOPTS/--no-print-directory/}
if [[ $(gcc-major-version) -lt 4 ]]; then
append-cxxflags -fno-stack-protector
elif [[ $(gcc-major-version) -gt 4 || $(gcc-minor-version) -gt 3 ]]; then
if use amd64 || use x86; then
append-flags -mno-avx
fi
fi
}
src_compile() {
CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getLD)" \
MOZ_MAKE_FLAGS="${MAKEOPTS}" \
emake -f client.mk || die
# Only build enigmail extension if crypt enabled.
if use crypt ; then
cd "${S}"/mailnews/extensions/enigmail || die
./makemake -r 2&> /dev/null
cd "${S}"/tbird/mailnews/extensions/enigmail
emake || die "make enigmail failed"
emake xpi || die "make enigmail xpi failed"
fi
}
src_install() {
declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}"
declare emid
local obj_dir="tbird"
cd "${S}/${obj_dir}"
# Copy our preference before omnijar is created.
cp "${FILESDIR}"/thunderbird-gentoo-default-prefs-1.js-1 \
"${S}/${obj_dir}/mozilla/dist/bin/defaults/pref/all-gentoo.js" || die
# Without methodjit and tracejit there's no conflict with PaX
if use jit; then
# Pax mark xpcshell for hardened support, only used for startupcache creation.
pax-mark m "${S}"/${obj_dir}/mozilla/dist/bin/xpcshell
fi
emake DESTDIR="${D}" install || die "emake install failed"
# Install language packs
mozlinguas_src_install
if ! use bindist; then
newicon "${S}"/other-licenses/branding/thunderbird/content/icon48.png thunderbird-icon.png
domenu "${FILESDIR}"/icon/${PN}.desktop
else
newicon "${S}"/mail/branding/aurora/content/icon48.png thunderbird-icon-unbranded.png
newmenu "${FILESDIR}"/icon/${PN}-unbranded.desktop \
${PN}.desktop
sed -i -e "s:Mozilla\ Thunderbird:EarlyBird:g" \
"${ED}"/usr/share/applications/${PN}.desktop
fi
if use crypt ; then
cd "${T}" || die
unzip "${S}"/${obj_dir}/mozilla/dist/bin/enigmail*.xpi install.rdf || die
emid=$(sed -n '/<em:id>/!d; s/.*\({.*}\).*/\1/; p; q' install.rdf)
dodir ${MOZILLA_FIVE_HOME}/extensions/${emid} || die
cd "${D}"${MOZILLA_FIVE_HOME}/extensions/${emid} || die
unzip "${S}"/${obj_dir}/mozilla/dist/bin/enigmail*.xpi || die
fi
if use lightning ; then
emid="{a62ef8ec-5fdc-40c2-873c-223b8a6925cc}"
dodir ${MOZILLA_FIVE_HOME}/extensions/${emid}
cd "${ED}"${MOZILLA_FIVE_HOME}/extensions/${emid}
unzip "${S}"/${obj_dir}/mozilla/dist/xpi-stage/gdata-provider.xpi
emid="calendar-timezones@mozilla.org"
dodir ${MOZILLA_FIVE_HOME}/extensions/${emid}
cd "${ED}"${MOZILLA_FIVE_HOME}/extensions/${emid}
unzip "${S}"/${obj_dir}/mozilla/dist/xpi-stage/calendar-timezones.xpi
emid="{e2fda1a4-762b-4020-b5ad-a41df1933103}"
dodir ${MOZILLA_FIVE_HOME}/extensions/${emid}
cd "${ED}"${MOZILLA_FIVE_HOME}/extensions/${emid}
unzip "${S}"/${obj_dir}/mozilla/dist/xpi-stage/lightning.xpi
# Fix mimetype so it shows up as a calendar application in GNOME 3
# This requires that the .desktop file was already installed earlier
sed -e "s:^\(MimeType=\):\1text/calendar;:" \
-e "s:^\(Categories=\):\1Calendar;:" \
-i "${ED}"/usr/share/applications/${PN}.desktop
fi
if use jit ; then
pax-mark m "${ED}"/${MOZILLA_FIVE_HOME}/{thunderbird-bin,thunderbird}
fi
# Plugin-container needs to be pax-marked for hardened to ensure plugins such as flash
# continue to work as expected.
pax-mark m "${ED}"${MOZILLA_FIVE_HOME}/plugin-container
# Plugins dir
share_plugins_dir
if use minimal; then
rm -rf "${ED}"/usr/include "${ED}${MOZILLA_FIVE_HOME}"/{idl,include,lib,sdk} || \
die "Failed to remove sdk and headers"
fi
}
pkg_postinst() {
elog
elog "If you are experience problems with plugins please issue the"
elog "following command : rm \${HOME}/.thunderbird/*/extensions.sqlite ,"
elog "then restart thunderbird"
}

@ -1,350 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird/thunderbird-17.0.7.ebuild,v 1.6 2013/06/29 15:29:43 ago Exp $
EAPI="3"
WANT_AUTOCONF="2.1"
MOZ_ESR="1"
# 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
es-ES et eu fi fr fy-NL ga-IE gd gl he hr hu hy-AM id is it ja ko lt nb-NO
nl nn-NO pa-IN pl pt-BR pt-PT rm ro ru si sk sl sq sr sv-SE ta-LK tr uk vi
zh-CN zh-TW )
# Convert the ebuild version to the upstream mozilla version, used by mozlinguas
MOZ_PV="${PV/_beta/b}"
# ESR releases have slightly version numbers
if [[ ${MOZ_ESR} == 1 ]]; then
MOZ_PV="${MOZ_PV}esr"
fi
MOZ_P="${PN}-${MOZ_PV}"
# Enigmail version
EMVER="1.5.1"
# Upstream ftp release URI that's used by mozlinguas.eclass
# We don't use the http mirror because it deletes old tarballs.
MOZ_FTP_URI="ftp://ftp.mozilla.org/pub/${PN}/releases/"
MOZ_HTTP_URI="http://ftp.mozilla.org/pub/${PN}/releases/"
inherit flag-o-matic toolchain-funcs mozconfig-3 makeedit multilib autotools pax-utils check-reqs nsplugins mozlinguas
DESCRIPTION="Thunderbird Mail Client"
HOMEPAGE="http://www.mozilla.com/en-US/thunderbird/"
KEYWORDS="~alpha amd64 arm ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
SLOT="0"
LICENSE="MPL-2.0 GPL-2 LGPL-2.1"
IUSE="bindist gconf +crypt +jit +ipc ldap +lightning +minimal mozdom selinux"
PATCH="thunderbird-17.0-patches-01"
PATCHFF="firefox-17.0-patches-0.6"
SRC_URI="${SRC_URI}
${MOZ_FTP_URI}${MOZ_PV}/source/${MOZ_P}.source.tar.bz2
${MOZ_HTTP_URI}${MOZ_PV}/source/${MOZ_P}.source.tar.bz2
crypt? ( http://www.mozilla-enigmail.org/download/source/enigmail-${EMVER}.tar.gz )
http://dev.gentoo.org/~anarchy/mozilla/patchsets/${PATCH}.tar.xz
http://dev.gentoo.org/~anarchy/mozilla/patchsets/${PATCHFF}.tar.xz
http://dev.gentoo.org/~nirbheek/mozilla/patchsets/${PATCHFF}.tar.xz
http://dev.gentoo.org/~polynomial-c/mozilla/patchsets/${PATCH}.tar.xz"
ASM_DEPEND=">=dev-lang/yasm-1.1"
RDEPEND=">=sys-devel/binutils-2.16.1
>=dev-libs/nss-3.14.1
>=dev-libs/nspr-4.9.4
>=dev-libs/glib-2.26
gconf? ( >=gnome-base/gconf-1.2.1:2 )
>=media-libs/libpng-1.5.11[apng]
>=x11-libs/cairo-1.10
>=x11-libs/pango-1.14.0
>=x11-libs/gtk+-2.14
kernel_linux? ( media-libs/alsa-lib )
>=media-libs/libvpx-1.0.0
virtual/libffi
!x11-plugins/enigmail
system-sqlite? ( || (
>=dev-db/sqlite-3.7.16:3[secure-delete,debug=]
=dev-db/sqlite-3.7.15*[fts3,secure-delete,threadsafe,unlock-notify,debug=]
=dev-db/sqlite-3.7.14*[fts3,secure-delete,threadsafe,unlock-notify,debug=]
=dev-db/sqlite-3.7.13*[fts3,secure-delete,threadsafe,unlock-notify,debug=]
) )
selinux? ( sec-policy/selinux-thunderbird )
crypt? ( || (
( >=app-crypt/gnupg-2.0
|| (
app-crypt/pinentry[gtk]
app-crypt/pinentry[qt4]
)
)
=app-crypt/gnupg-1.4*
) )"
DEPEND="${RDEPEND}
!elibc_glibc? ( dev-libs/libexecinfo )
virtual/pkgconfig
amd64? ( ${ASM_DEPEND}
virtual/opengl )
x86? ( ${ASM_DEPEND}
virtual/opengl )"
if [[ ${PV} =~ beta ]]; then
S="${WORKDIR}/comm-beta"
elif [[ ${MOZ_ESR} == 1 ]]; then
S="${WORKDIR}/comm-esr${PV%%.*}"
else
S="${WORKDIR}/comm-release"
fi
pkg_setup() {
moz_pkgsetup
export MOZILLA_DIR="${S}/mozilla"
if ! use bindist ; then
elog "You are enabling official branding. You may not redistribute this build"
elog "to any users on your network or the internet. Doing so puts yourself into"
elog "a legal problem with Mozilla Foundation"
elog "You can disable it by emerging ${PN} _with_ the bindist USE-flag"
elog
fi
# Ensure we have enough disk space to compile
CHECKREQS_DISK_BUILD="4G"
check-reqs_pkg_setup
}
src_unpack() {
unpack ${A}
# Unpack language packs
mozlinguas_src_unpack
}
src_prepare() {
# Apply our Thunderbird patchset
EPATCH_SUFFIX="patch" \
EPATCH_FORCE="yes" \
epatch "${WORKDIR}/thunderbird"
# Apply our patchset from firefox to thunderbird as well
pushd "${S}"/mozilla &>/dev/null || die
EPATCH_SUFFIX="patch" \
EPATCH_FORCE="yes" \
epatch "${WORKDIR}/firefox"
popd &>/dev/null || die
if use crypt ; then
mv "${WORKDIR}"/enigmail "${S}"/mailnews/extensions/enigmail
cd "${S}"
fi
# Disable gnomevfs extension
sed -i -e "s:gnomevfs::" "${S}/"mozilla/browser/confvars.sh \
-e "s:gnomevfs::" "${S}/"mozilla/xulrunner/confvars.sh \
|| die "Failed to remove gnomevfs extension"
#Fix compilation with curl-7.21.7 bug 376027
sed -e '/#include <curl\/types.h>/d' \
-i "${S}"/mozilla/toolkit/crashreporter/google-breakpad/src/common/linux/http_upload.cc \
-i "${S}"/mozilla/toolkit/crashreporter/google-breakpad/src/common/linux/libcurl_wrapper.cc \
-i "${S}"/mozilla/config/system-headers \
-i "${S}"/mozilla/js/src/config/system-headers || die "Sed failed"
# Don't error out when there's no files to be removed:
sed 's@\(xargs rm\)$@\1 -f@' \
-i "${S}"/mozilla/toolkit/mozapps/installer/packager.mk || die
# Shell scripts sometimes contain DOS line endings; bug 391889
grep -rlZ --include="*.sh" $'\r$' . |
while read -r -d $'\0' file ; do
einfo edos2unix "${file}"
edos2unix "${file}"
done
# Allow user to apply any additional patches without modifing ebuild
epatch_user
eautoreconf
# Ensure we run eautoreconf in mozilla to regenerate configure
cd "${S}"/mozilla
eautoconf
}
src_configure() {
declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}"
MEXTENSIONS="default"
####################################
#
# mozconfig, CFLAGS and CXXFLAGS setup
#
####################################
mozconfig_init
mozconfig_config
# It doesn't compile on alpha without this LDFLAGS
use alpha && append-ldflags "-Wl,--no-relax"
# We must force enable jemalloc 3 threw .mozconfig
echo "export MOZ_JEMALLOC=1" >> ${S}/.mozconfig
mozconfig_annotate '' --prefix="${EPREFIX}"/usr
mozconfig_annotate '' --libdir="${EPREFIX}"/usr/$(get_libdir)
mozconfig_annotate '' --enable-extensions="${MEXTENSIONS}"
mozconfig_annotate '' --with-default-mozilla-five-home="${EPREFIX}${MOZILLA_FIVE_HOME}"
mozconfig_annotate '' --with-user-appdir=.thunderbird
mozconfig_annotate '' --with-system-png
mozconfig_annotate '' --enable-system-ffi
mozconfig_annotate '' --target="${CTARGET:-${CHOST}}"
mozconfig_annotate '' --build="${CTARGET:-${CHOST}}"
# Use enable features
mozconfig_use_enable lightning calendar
mozconfig_use_enable gconf
mozconfig_use_enable ldap
# Features know to cause problems with hardened.
mozconfig_use_enable jit methodjit
mozconfig_use_enable jit tracejit
# Bug #72667
if use mozdom; then
MEXTENSIONS="${MEXTENSIONS},inspector"
fi
# Use an objdir to keep things organized.
echo "mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/tbird" >> "${S}"/.mozconfig
# Finalize and report settings
mozconfig_final
####################################
#
# Configure and build
#
####################################
# Disable no-print-directory
MAKEOPTS=${MAKEOPTS/--no-print-directory/}
if [[ $(gcc-major-version) -lt 4 ]]; then
append-cxxflags -fno-stack-protector
elif [[ $(gcc-major-version) -gt 4 || $(gcc-minor-version) -gt 3 ]]; then
if use amd64 || use x86; then
append-flags -mno-avx
fi
fi
}
src_compile() {
CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getLD)" \
MOZ_MAKE_FLAGS="${MAKEOPTS}" \
emake -f client.mk || die
# Only build enigmail extension if crypt enabled.
if use crypt ; then
cd "${S}"/mailnews/extensions/enigmail || die
./makemake -r 2&> /dev/null
cd "${S}"/tbird/mailnews/extensions/enigmail
emake || die "make enigmail failed"
emake xpi || die "make enigmail xpi failed"
fi
}
src_install() {
declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}"
DICTPATH="\"${EPREFIX}/usr/share/myspell\""
declare emid
local obj_dir="tbird"
cd "${S}/${obj_dir}"
# Copy our preference before omnijar is created.
cp "${FILESDIR}"/thunderbird-gentoo-default-prefs-1.js-1 \
"${S}/${obj_dir}/mozilla/dist/bin/defaults/pref/all-gentoo.js" || die
# Set default path to search for dictionaries.
echo "pref(\"spellchecker.dictionary_path\", ${DICTPATH});" \
>> "${S}/${obj_dir}/mozilla/dist/bin/defaults/pref/all-gentoo.js" || die
# Without methodjit and tracejit there's no conflict with PaX
if use jit; then
# Pax mark xpcshell for hardened support, only used for startupcache creation.
pax-mark m "${S}"/${obj_dir}/mozilla/dist/bin/xpcshell
fi
emake DESTDIR="${D}" install || die "emake install failed"
# Install language packs
mozlinguas_src_install
if ! use bindist; then
newicon "${S}"/other-licenses/branding/thunderbird/content/icon48.png thunderbird-icon.png
domenu "${FILESDIR}"/icon/${PN}.desktop
else
newicon "${S}"/mail/branding/aurora/content/icon48.png thunderbird-icon-unbranded.png
newmenu "${FILESDIR}"/icon/${PN}-unbranded.desktop \
${PN}.desktop
sed -i -e "s:Mozilla\ Thunderbird:EarlyBird:g" \
"${ED}"/usr/share/applications/${PN}.desktop
fi
if use crypt ; then
cd "${T}" || die
unzip "${S}"/${obj_dir}/mozilla/dist/bin/enigmail*.xpi install.rdf || die
emid=$(sed -n '/<em:id>/!d; s/.*\({.*}\).*/\1/; p; q' install.rdf)
dodir ${MOZILLA_FIVE_HOME}/extensions/${emid} || die
cd "${D}"${MOZILLA_FIVE_HOME}/extensions/${emid} || die
unzip "${S}"/${obj_dir}/mozilla/dist/bin/enigmail*.xpi || die
fi
if use lightning ; then
emid="{a62ef8ec-5fdc-40c2-873c-223b8a6925cc}"
dodir ${MOZILLA_FIVE_HOME}/extensions/${emid}
cd "${ED}"${MOZILLA_FIVE_HOME}/extensions/${emid}
unzip "${S}"/${obj_dir}/mozilla/dist/xpi-stage/gdata-provider.xpi
emid="calendar-timezones@mozilla.org"
dodir ${MOZILLA_FIVE_HOME}/extensions/${emid}
cd "${ED}"${MOZILLA_FIVE_HOME}/extensions/${emid}
unzip "${S}"/${obj_dir}/mozilla/dist/xpi-stage/calendar-timezones.xpi
emid="{e2fda1a4-762b-4020-b5ad-a41df1933103}"
dodir ${MOZILLA_FIVE_HOME}/extensions/${emid}
cd "${ED}"${MOZILLA_FIVE_HOME}/extensions/${emid}
unzip "${S}"/${obj_dir}/mozilla/dist/xpi-stage/lightning.xpi
# Fix mimetype so it shows up as a calendar application in GNOME 3
# This requires that the .desktop file was already installed earlier
sed -e "s:^\(MimeType=\):\1text/calendar;:" \
-e "s:^\(Categories=\):\1Calendar;:" \
-i "${ED}"/usr/share/applications/${PN}.desktop
fi
if use jit ; then
pax-mark m "${ED}"/${MOZILLA_FIVE_HOME}/{thunderbird-bin,thunderbird}
fi
# Plugin-container needs to be pax-marked for hardened to ensure plugins such as flash
# continue to work as expected.
pax-mark m "${ED}"${MOZILLA_FIVE_HOME}/plugin-container
# Plugins dir
share_plugins_dir
if use minimal; then
rm -rf "${ED}"/usr/include "${ED}"${MOZILLA_FIVE_HOME}/{idl,include,lib,sdk} || \
die "Failed to remove sdk and headers"
fi
}
pkg_postinst() {
elog
elog "If you are experience problems with plugins please issue the"
elog "following command : rm \${HOME}/.thunderbird/*/extensions.sqlite ,"
elog "then restart thunderbird"
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird/thunderbird-17.0.7-r1.ebuild,v 1.1 2013/07/08 02:51:20 anarchy Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird/thunderbird-17.0.9.ebuild,v 1.1 2013/09/18 14:11:09 polynomial-c Exp $
EAPI="3"
WANT_AUTOCONF="2.1"

@ -1,3 +1,3 @@
DIST abcMIDI-2013-05-10.zip 496011 SHA256 232c84d5d75b446f12804ad9021577b8c9843b6e51f94e6ea2d7af566a7f871a SHA512 ba075519d06761bfbcf1cb22283af6f180527ea2ee29f0814091a6a072ef79afb8de2b77e700dfe2b5980ce49e33ec7ec1f37a7238614bac580ae4c4274ac753 WHIRLPOOL 009886fe0018b88795ed3b224657439af08fac58928aa2acec672b9ffca37fa99cdb16711f839ec2b0cac7b7610b943bb87e98b44179c9e37ba483aa7adbc457
DIST abcMIDI-2013-06-09.zip 496621 SHA256 53b877acb968c270419e70efa61fa2ef47d5aad3ba2d481eb64ac2b35d52d19b SHA512 8e4e39fe98eb70ce415eb37a3a97e5a4b101bbf32476636e9469615d62fac33e1f894b2f5a41eee4c862ccdff6d91245ea3b6618aff1228a2db685976a266064 WHIRLPOOL eb43225bf6d8a1cbcde0552d8f68450a4a8c0c2be935d66cd59cde2cb46e445dcab628b9ebe2585dbe1a71679a3a3f7b9d66f16a1d67960ad5fe4ff70cf31f4b
DIST abcMIDI-2013-09-10.zip 498750 SHA256 7bd41ab2e352312593baeacef195a4a3fc1b6d46fdffa7cd0674f3fc0cf50e33 SHA512 7c4fc0827fdbc17d810f5f3597264dcbdc89029e027efd1120acf0927cd7ddee0e9d2958ea08fca4d973949c843744858518a6b6e990dbfd94a4854f056aa3a0 WHIRLPOOL 8cf0c2f614d8d65c0ef208fd461c13f09f21424176dd49b4e61421c89fd2d98f24048a307cb359b0a48f1c989da882769ded1db5ada6d9726da8894c74e84957
DIST abcMIDI-2013-09-15.zip 498862 SHA256 dec459f74e16539c83c77686e58907eaaa1bbaf76864136ddc6424b88699e7f7 SHA512 229d8a2a097437794ed4225bea05db19ca458fdc3d575b8a5c6676990e7edd7e596353a068353e4581d26b944ca34dec0b8f57e40c92ec8475558779c8878445 WHIRLPOOL 6e492d423cbc4438a5a33b7f22e2372f47006b27bad9732e349e3d44babb2ab6048452bbfa9f74b6f1c4fe779024ee929d8e252b2abc9cfecb1110c50435c5b6

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/abcmidi/abcmidi-2013.09.10.ebuild,v 1.1 2013/09/16 15:54:25 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/media-sound/abcmidi/abcmidi-2013.09.15.ebuild,v 1.1 2013/09/18 14:31:11 radhermit Exp $
EAPI=5

@ -1 +1 @@
Wed, 18 Sep 2013 07:06:57 +0000
Wed, 18 Sep 2013 17:06:57 +0000

@ -1 +1 @@
Wed, 18 Sep 2013 07:06:57 +0000
Wed, 18 Sep 2013 17:06:57 +0000

@ -1,13 +1,13 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack
DEPEND=>=app-accessibility/at-spi2-core-2.1.5:2 >=dev-python/pygobject-2.90.3:3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=x11-libs/gtk+-3.1.13:3[introspection] dev-libs/atk[introspection] >=dev-libs/glib-2.28:2 dev-libs/gobject-introspection >=dev-python/ipython-0.11[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pyatspi-2.1.5[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycairo[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] x11-libs/gdk-pixbuf[introspection] x11-libs/libwnck:3[introspection] x11-libs/pango[introspection] python_targets_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] app-text/yelp-tools >=dev-util/intltool-0.35 sys-devel/gettext virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4
DEPEND=>=app-accessibility/at-spi2-core-2.1.5:2 >=dev-python/pygobject-2.90.3:3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=x11-libs/gtk+-3.1.13:3[introspection] dev-libs/atk[introspection] >=dev-libs/glib-2.28:2 dev-libs/gobject-introspection >=dev-python/ipython-0.11[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pyatspi-2.1.5[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycairo[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] x11-libs/gdk-pixbuf[introspection] x11-libs/libwnck:3[introspection] x11-libs/pango[introspection] python_targets_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] app-text/yelp-tools >=dev-util/intltool-0.35 sys-devel/gettext virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=Interactive Python accessibility explorer
EAPI=5
HOMEPAGE=http://live.gnome.org/Accerciser
IUSE=python_targets_python2_7
KEYWORDS=~amd64 ~x86
LICENSE=BSD CC-BY-SA-3.0
RDEPEND=>=app-accessibility/at-spi2-core-2.1.5:2 >=dev-python/pygobject-2.90.3:3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=x11-libs/gtk+-3.1.13:3[introspection] dev-libs/atk[introspection] >=dev-libs/glib-2.28:2 dev-libs/gobject-introspection >=dev-python/ipython-0.11[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pyatspi-2.1.5[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycairo[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] x11-libs/gdk-pixbuf[introspection] x11-libs/libwnck:3[introspection] x11-libs/pango[introspection] python_targets_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=>=app-accessibility/at-spi2-core-2.1.5:2 >=dev-python/pygobject-2.90.3:3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=x11-libs/gtk+-3.1.13:3[introspection] dev-libs/atk[introspection] >=dev-libs/glib-2.28:2 dev-libs/gobject-introspection >=dev-python/ipython-0.11[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pyatspi-2.1.5[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycairo[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] x11-libs/gdk-pixbuf[introspection] x11-libs/libwnck:3[introspection] x11-libs/pango[introspection] python_targets_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
SLOT=0
SRC_URI=mirror://gnome/sources/accerciser/3.6/accerciser-3.6.2.tar.xz
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 60f01dcce699345bbe95db0476914874 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 60f01dcce699345bbe95db0476914874 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=6c14c0216399f5690399023ad3ca39b0

@ -1,13 +1,13 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack
DEPEND=>=app-accessibility/at-spi2-core-2.5.2:2 >=dev-python/pygobject-2.90.3:3[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=x11-libs/gtk+-3.1.13:3[introspection] dev-libs/atk[introspection] >=dev-libs/glib-2.28:2 dev-libs/gobject-introspection >=dev-python/ipython-0.11[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=dev-python/pyatspi-2.1.5[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] dev-python/pycairo[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] x11-libs/gdk-pixbuf[introspection] x11-libs/libwnck:3[introspection] x11-libs/pango[introspection] python_targets_python3_2? ( dev-lang/python:3.2[xml] ) dev-python/python-exec:=[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] app-text/yelp-tools >=dev-util/intltool-0.35 sys-devel/gettext virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4
DEPEND=>=app-accessibility/at-spi2-core-2.5.2:2 >=dev-python/pygobject-2.90.3:3[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=x11-libs/gtk+-3.1.13:3[introspection] dev-libs/atk[introspection] >=dev-libs/glib-2.28:2 dev-libs/gobject-introspection >=dev-python/ipython-0.11[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=dev-python/pyatspi-2.1.5[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] dev-python/pycairo[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] x11-libs/gdk-pixbuf[introspection] x11-libs/libwnck:3[introspection] x11-libs/pango[introspection] python_targets_python3_2? ( dev-lang/python:3.2[xml] ) dev-python/python-exec:=[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] app-text/yelp-tools >=dev-util/intltool-0.35 sys-devel/gettext virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=Interactive Python accessibility explorer
EAPI=5
HOMEPAGE=http://live.gnome.org/Accerciser
IUSE=python_targets_python3_2
KEYWORDS=~amd64 ~x86
LICENSE=BSD CC-BY-SA-3.0
RDEPEND=>=app-accessibility/at-spi2-core-2.5.2:2 >=dev-python/pygobject-2.90.3:3[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=x11-libs/gtk+-3.1.13:3[introspection] dev-libs/atk[introspection] >=dev-libs/glib-2.28:2 dev-libs/gobject-introspection >=dev-python/ipython-0.11[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=dev-python/pyatspi-2.1.5[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] dev-python/pycairo[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] x11-libs/gdk-pixbuf[introspection] x11-libs/libwnck:3[introspection] x11-libs/pango[introspection] python_targets_python3_2? ( dev-lang/python:3.2[xml] ) dev-python/python-exec:=[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=>=app-accessibility/at-spi2-core-2.5.2:2 >=dev-python/pygobject-2.90.3:3[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=x11-libs/gtk+-3.1.13:3[introspection] dev-libs/atk[introspection] >=dev-libs/glib-2.28:2 dev-libs/gobject-introspection >=dev-python/ipython-0.11[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=dev-python/pyatspi-2.1.5[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] dev-python/pycairo[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] x11-libs/gdk-pixbuf[introspection] x11-libs/libwnck:3[introspection] x11-libs/pango[introspection] python_targets_python3_2? ( dev-lang/python:3.2[xml] ) dev-python/python-exec:=[python_targets_python3_2(-)?,-python_single_target_python3_2(-)]
SLOT=0
SRC_URI=mirror://gnome/sources/accerciser/3.8/accerciser-3.8.0.tar.xz
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 60f01dcce699345bbe95db0476914874 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 60f01dcce699345bbe95db0476914874 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=806522a3b7e08af684ed741283a8d05e

@ -1,13 +1,13 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack
DEPEND=>=app-accessibility/at-spi2-core-2.5.2:2 >=dev-python/pygobject-2.90.3:3[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=x11-libs/gtk+-3.1.13:3[introspection] dev-libs/atk[introspection] >=dev-libs/glib-2.28:2 dev-libs/gobject-introspection >=dev-python/ipython-0.11[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=dev-python/pyatspi-2.1.5[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] dev-python/pycairo[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] x11-libs/gdk-pixbuf[introspection] x11-libs/libwnck:3[introspection] x11-libs/pango[introspection] python_targets_python3_2? ( dev-lang/python:3.2[xml] ) dev-python/python-exec:=[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] app-text/yelp-tools >=dev-util/intltool-0.35 sys-devel/gettext virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4
DEPEND=>=app-accessibility/at-spi2-core-2.5.2:2 >=dev-python/pygobject-2.90.3:3[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=x11-libs/gtk+-3.1.13:3[introspection] dev-libs/atk[introspection] >=dev-libs/glib-2.28:2 dev-libs/gobject-introspection >=dev-python/ipython-0.11[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=dev-python/pyatspi-2.1.5[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] dev-python/pycairo[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] x11-libs/gdk-pixbuf[introspection] x11-libs/libwnck:3[introspection] x11-libs/pango[introspection] python_targets_python3_2? ( dev-lang/python:3.2[xml] ) dev-python/python-exec:=[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] app-text/yelp-tools >=dev-util/intltool-0.35 sys-devel/gettext virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=Interactive Python accessibility explorer
EAPI=5
HOMEPAGE=http://live.gnome.org/Accerciser
IUSE=python_targets_python3_2
KEYWORDS=~amd64 ~x86
LICENSE=BSD CC-BY-SA-3.0
RDEPEND=>=app-accessibility/at-spi2-core-2.5.2:2 >=dev-python/pygobject-2.90.3:3[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=x11-libs/gtk+-3.1.13:3[introspection] dev-libs/atk[introspection] >=dev-libs/glib-2.28:2 dev-libs/gobject-introspection >=dev-python/ipython-0.11[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=dev-python/pyatspi-2.1.5[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] dev-python/pycairo[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] x11-libs/gdk-pixbuf[introspection] x11-libs/libwnck:3[introspection] x11-libs/pango[introspection] python_targets_python3_2? ( dev-lang/python:3.2[xml] ) dev-python/python-exec:=[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=>=app-accessibility/at-spi2-core-2.5.2:2 >=dev-python/pygobject-2.90.3:3[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=x11-libs/gtk+-3.1.13:3[introspection] dev-libs/atk[introspection] >=dev-libs/glib-2.28:2 dev-libs/gobject-introspection >=dev-python/ipython-0.11[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=dev-python/pyatspi-2.1.5[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] dev-python/pycairo[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] x11-libs/gdk-pixbuf[introspection] x11-libs/libwnck:3[introspection] x11-libs/pango[introspection] python_targets_python3_2? ( dev-lang/python:3.2[xml] ) dev-python/python-exec:=[python_targets_python3_2(-)?,-python_single_target_python3_2(-)]
SLOT=0
SRC_URI=mirror://gnome/sources/accerciser/3.8/accerciser-3.8.2.tar.xz
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 60f01dcce699345bbe95db0476914874 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 60f01dcce699345bbe95db0476914874 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=c3e443c0348996958c30e75453d92a0f

@ -1,13 +1,13 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare test unpack
DEPEND=app-accessibility/at-spi2-core >=dev-python/pygobject-2.90.3:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=x11-libs/gtk+-3:3[introspection] x11-libs/gtk+:2 >=dev-libs/gobject-introspection-0.10.7 dev-libs/libgee:0.8 dev-libs/libxml2 >=media-libs/clutter-1.5.11:1.0[introspection] x11-libs/libX11 x11-libs/libxklavier x11-libs/libXtst dev-libs/libxslt >=dev-util/intltool-0.35.5 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4
DEPEND=app-accessibility/at-spi2-core >=dev-python/pygobject-2.90.3:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=x11-libs/gtk+-3:3[introspection] x11-libs/gtk+:2 >=dev-libs/gobject-introspection-0.10.7 dev-libs/libgee:0.8 dev-libs/libxml2 >=media-libs/clutter-1.5.11:1.0[introspection] x11-libs/libX11 x11-libs/libxklavier x11-libs/libXtst dev-libs/libxslt >=dev-util/intltool-0.35.5 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=Input assistive technology intended for switch and pointer users
EAPI=5
HOMEPAGE=https://live.gnome.org/Caribou
IUSE=python_targets_python2_6 python_targets_python2_7
KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86
LICENSE=LGPL-2.1
RDEPEND=app-accessibility/at-spi2-core >=dev-python/pygobject-2.90.3:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=x11-libs/gtk+-3:3[introspection] x11-libs/gtk+:2 >=dev-libs/gobject-introspection-0.10.7 dev-libs/libgee:0.8 dev-libs/libxml2 >=media-libs/clutter-1.5.11:1.0[introspection] x11-libs/libX11 x11-libs/libxklavier x11-libs/libXtst >=dev-python/pyatspi-2.1.90[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=gnome-base/gsettings-desktop-schemas-3 gnome-base/librsvg:2 sys-apps/dbus virtual/python-argparse[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=app-accessibility/at-spi2-core >=dev-python/pygobject-2.90.3:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=x11-libs/gtk+-3:3[introspection] x11-libs/gtk+:2 >=dev-libs/gobject-introspection-0.10.7 dev-libs/libgee:0.8 dev-libs/libxml2 >=media-libs/clutter-1.5.11:1.0[introspection] x11-libs/libX11 x11-libs/libxklavier x11-libs/libXtst >=dev-python/pyatspi-2.1.90[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=gnome-base/gsettings-desktop-schemas-3 gnome-base/librsvg:2 sys-apps/dbus virtual/python-argparse[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
SLOT=0
SRC_URI=mirror://gnome/sources/caribou/0.4/caribou-0.4.10.tar.xz
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 60f01dcce699345bbe95db0476914874 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 60f01dcce699345bbe95db0476914874 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=432f282aa2143cbf909b3075529fa7a9

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare test unpack
DEPEND=app-accessibility/at-spi2-core >=dev-python/pygobject-2.90.3:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=x11-libs/gtk+-3:3[introspection] x11-libs/gtk+:2 >=dev-libs/gobject-introspection-0.10.7 dev-libs/libgee:0.8 dev-libs/libxml2 >=media-libs/clutter-1.5.11:1.0[introspection] x11-libs/libX11 x11-libs/libxklavier x11-libs/libXtst dev-libs/libxslt >=dev-util/intltool-0.35.5 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4
DEPEND=app-accessibility/at-spi2-core >=dev-python/pygobject-2.90.3:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=x11-libs/gtk+-3:3[introspection] x11-libs/gtk+:2 >=dev-libs/gobject-introspection-0.10.7 dev-libs/libgee:0.8 dev-libs/libxml2 >=media-libs/clutter-1.5.11:1.0[introspection] x11-libs/libX11 x11-libs/libxklavier x11-libs/libXtst dev-libs/libxslt >=dev-util/intltool-0.35.5 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=Input assistive technology intended for switch and pointer users
EAPI=5
HOMEPAGE=https://live.gnome.org/Caribou
IUSE=python_targets_python2_6 python_targets_python2_7
KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86
LICENSE=LGPL-2.1
RDEPEND=app-accessibility/at-spi2-core >=dev-python/pygobject-2.90.3:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=x11-libs/gtk+-3:3[introspection] x11-libs/gtk+:2 >=dev-libs/gobject-introspection-0.10.7 dev-libs/libgee:0.8 dev-libs/libxml2 >=media-libs/clutter-1.5.11:1.0[introspection] x11-libs/libX11 x11-libs/libxklavier x11-libs/libXtst >=dev-python/pyatspi-2.1.90[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=gnome-base/gsettings-desktop-schemas-3 gnome-base/librsvg:2 sys-apps/dbus virtual/python-argparse[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=app-accessibility/at-spi2-core >=dev-python/pygobject-2.90.3:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=x11-libs/gtk+-3:3[introspection] x11-libs/gtk+:2 >=dev-libs/gobject-introspection-0.10.7 dev-libs/libgee:0.8 dev-libs/libxml2 >=media-libs/clutter-1.5.11:1.0[introspection] x11-libs/libX11 x11-libs/libxklavier x11-libs/libXtst >=dev-python/pyatspi-2.1.90[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=gnome-base/gsettings-desktop-schemas-3 gnome-base/librsvg:2 sys-apps/dbus virtual/python-argparse[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=mirror://gnome/sources/caribou/0.4/caribou-0.4.11.tar.xz
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 60f01dcce699345bbe95db0476914874 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 60f01dcce699345bbe95db0476914874 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=bdf64d58b95b8ba0f2d84572ad8fce8f

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare test unpack
DEPEND=app-accessibility/at-spi2-core >=dev-python/pygobject-2.90.3:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=x11-libs/gtk+-3:3[introspection] x11-libs/gtk+:2 >=dev-libs/gobject-introspection-0.10.7 dev-libs/libgee:0.8 dev-libs/libxml2 >=media-libs/clutter-1.5.11:1.0[introspection] x11-libs/libX11 x11-libs/libxklavier x11-libs/libXtst dev-libs/libxslt >=dev-util/intltool-0.35.5 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4
DEPEND=app-accessibility/at-spi2-core >=dev-python/pygobject-2.90.3:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=x11-libs/gtk+-3:3[introspection] x11-libs/gtk+:2 >=dev-libs/gobject-introspection-0.10.7 dev-libs/libgee:0.8 dev-libs/libxml2 >=media-libs/clutter-1.5.11:1.0[introspection] x11-libs/libX11 x11-libs/libxklavier x11-libs/libXtst dev-libs/libxslt >=dev-util/intltool-0.35.5 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=Input assistive technology intended for switch and pointer users
EAPI=5
HOMEPAGE=https://live.gnome.org/Caribou
IUSE=python_targets_python2_6 python_targets_python2_7
KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86
LICENSE=LGPL-2.1
RDEPEND=app-accessibility/at-spi2-core >=dev-python/pygobject-2.90.3:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=x11-libs/gtk+-3:3[introspection] x11-libs/gtk+:2 >=dev-libs/gobject-introspection-0.10.7 dev-libs/libgee:0.8 dev-libs/libxml2 >=media-libs/clutter-1.5.11:1.0[introspection] x11-libs/libX11 x11-libs/libxklavier x11-libs/libXtst >=dev-python/pyatspi-2.1.90[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=gnome-base/gsettings-desktop-schemas-3 gnome-base/librsvg:2 sys-apps/dbus virtual/python-argparse[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=app-accessibility/at-spi2-core >=dev-python/pygobject-2.90.3:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=x11-libs/gtk+-3:3[introspection] x11-libs/gtk+:2 >=dev-libs/gobject-introspection-0.10.7 dev-libs/libgee:0.8 dev-libs/libxml2 >=media-libs/clutter-1.5.11:1.0[introspection] x11-libs/libX11 x11-libs/libxklavier x11-libs/libXtst >=dev-python/pyatspi-2.1.90[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=gnome-base/gsettings-desktop-schemas-3 gnome-base/librsvg:2 sys-apps/dbus virtual/python-argparse[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=mirror://gnome/sources/caribou/0.4/caribou-0.4.12.tar.xz
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 60f01dcce699345bbe95db0476914874 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 60f01dcce699345bbe95db0476914874 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=6d1f5a535840f1995d4ac591514c21bd

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack
DEPEND=>=app-accessibility/at-spi2-atk-2.5.91:2 >=app-accessibility/at-spi2-core-2.5.91:2 >=dev-libs/atk-2.5.91 >=dev-libs/glib-2.28:2 >=dev-python/pygobject-3.2.2:3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=x11-libs/gtk+-3.5.16:3[introspection] python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] app-text/yelp-tools >=dev-util/intltool-0.40 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4
DEPEND=>=app-accessibility/at-spi2-atk-2.5.91:2 >=app-accessibility/at-spi2-core-2.5.91:2 >=dev-libs/atk-2.5.91 >=dev-libs/glib-2.28:2 >=dev-python/pygobject-3.2.2:3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=x11-libs/gtk+-3.5.16:3[introspection] python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] app-text/yelp-tools >=dev-util/intltool-0.40 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=Extensible screen reader that provides access to the desktop
EAPI=5
HOMEPAGE=http://projects.gnome.org/orca/
IUSE=python_targets_python2_7
KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
LICENSE=LGPL-2.1+ CC-BY-SA-3.0
RDEPEND=>=app-accessibility/at-spi2-atk-2.5.91:2 >=app-accessibility/at-spi2-core-2.5.91:2 >=dev-libs/atk-2.5.91 >=dev-libs/glib-2.28:2 >=dev-python/pygobject-3.2.2:3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=x11-libs/gtk+-3.5.16:3[introspection] python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] app-accessibility/speech-dispatcher[python,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-libs/atk[introspection] dev-python/pyatspi[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycairo[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/setproctitle[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] x11-libs/libwnck:3[introspection] x11-libs/pango[introspection] userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=>=app-accessibility/at-spi2-atk-2.5.91:2 >=app-accessibility/at-spi2-core-2.5.91:2 >=dev-libs/atk-2.5.91 >=dev-libs/glib-2.28:2 >=dev-python/pygobject-3.2.2:3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=x11-libs/gtk+-3.5.16:3[introspection] python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] app-accessibility/speech-dispatcher[python,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-libs/atk[introspection] dev-python/pyatspi[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycairo[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/setproctitle[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] x11-libs/libwnck:3[introspection] x11-libs/pango[introspection]
REQUIRED_USE=|| ( python_targets_python2_7 )
SLOT=0
SRC_URI=mirror://gnome/sources/orca/3.6/orca-3.6.3.tar.xz
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 60f01dcce699345bbe95db0476914874 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 60f01dcce699345bbe95db0476914874 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=1aa678f9eed1c55c923f985a1c99c087

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack
DEPEND=>=app-accessibility/at-spi2-atk-2.5.91:2 >=app-accessibility/at-spi2-core-2.5.91:2 >=dev-libs/atk-2.5.91 >=dev-libs/glib-2.28:2 >=dev-python/pygobject-3.2.2:3[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] >=x11-libs/gtk+-3.5.16:3[introspection] python_targets_python3_3? ( dev-lang/python:3.3[threads] ) dev-python/python-exec:=[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] app-text/yelp-tools >=dev-util/intltool-0.40 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4
DEPEND=>=app-accessibility/at-spi2-atk-2.5.91:2 >=app-accessibility/at-spi2-core-2.5.91:2 >=dev-libs/atk-2.5.91 >=dev-libs/glib-2.28:2 >=dev-python/pygobject-3.2.2:3[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] >=x11-libs/gtk+-3.5.16:3[introspection] python_targets_python3_3? ( dev-lang/python:3.3[threads] ) dev-python/python-exec:=[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] app-text/yelp-tools >=dev-util/intltool-0.40 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=Extensible screen reader that provides access to the desktop
EAPI=5
HOMEPAGE=http://projects.gnome.org/orca/
IUSE=python_targets_python3_3
KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
LICENSE=LGPL-2.1+ CC-BY-SA-3.0
RDEPEND=>=app-accessibility/at-spi2-atk-2.5.91:2 >=app-accessibility/at-spi2-core-2.5.91:2 >=dev-libs/atk-2.5.91 >=dev-libs/glib-2.28:2 >=dev-python/pygobject-3.2.2:3[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] >=x11-libs/gtk+-3.5.16:3[introspection] python_targets_python3_3? ( dev-lang/python:3.3[threads] ) dev-python/python-exec:=[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] >=app-accessibility/speech-dispatcher-0.8[python,python_targets_python3_3(-)?,-python_single_target_python3_3(-)] dev-libs/atk[introspection] dev-python/pyatspi[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] dev-python/pycairo[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] dev-python/setproctitle[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] x11-libs/libwnck:3[introspection] x11-libs/pango[introspection] userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=>=app-accessibility/at-spi2-atk-2.5.91:2 >=app-accessibility/at-spi2-core-2.5.91:2 >=dev-libs/atk-2.5.91 >=dev-libs/glib-2.28:2 >=dev-python/pygobject-3.2.2:3[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] >=x11-libs/gtk+-3.5.16:3[introspection] python_targets_python3_3? ( dev-lang/python:3.3[threads] ) dev-python/python-exec:=[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] >=app-accessibility/speech-dispatcher-0.8[python,python_targets_python3_3(-)?,-python_single_target_python3_3(-)] dev-libs/atk[introspection] dev-python/pyatspi[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] dev-python/pycairo[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] dev-python/setproctitle[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] x11-libs/libwnck:3[introspection] x11-libs/pango[introspection]
REQUIRED_USE=|| ( python_targets_python3_3 )
SLOT=0
SRC_URI=mirror://gnome/sources/orca/3.8/orca-3.8.1.tar.xz
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 60f01dcce699345bbe95db0476914874 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 60f01dcce699345bbe95db0476914874 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=b32a20c84960b2c2988081fc2be9884a

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack
DEPEND=>=app-accessibility/at-spi2-atk-2.5.91:2 >=app-accessibility/at-spi2-core-2.5.91:2 >=dev-libs/atk-2.5.91 >=dev-libs/glib-2.28:2 >=dev-python/pygobject-3.2.2:3[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] >=x11-libs/gtk+-3.5.16:3[introspection] python_targets_python3_3? ( dev-lang/python:3.3[threads] ) dev-python/python-exec:=[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] app-text/yelp-tools >=dev-util/intltool-0.40 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4
DEPEND=>=app-accessibility/at-spi2-atk-2.5.91:2 >=app-accessibility/at-spi2-core-2.5.91:2 >=dev-libs/atk-2.5.91 >=dev-libs/glib-2.28:2 >=dev-python/pygobject-3.2.2:3[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] >=x11-libs/gtk+-3.5.16:3[introspection] python_targets_python3_3? ( dev-lang/python:3.3[threads] ) dev-python/python-exec:=[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] app-text/yelp-tools >=dev-util/intltool-0.40 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=Extensible screen reader that provides access to the desktop
EAPI=5
HOMEPAGE=http://projects.gnome.org/orca/
IUSE=python_targets_python3_3
KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
LICENSE=LGPL-2.1+ CC-BY-SA-3.0
RDEPEND=>=app-accessibility/at-spi2-atk-2.5.91:2 >=app-accessibility/at-spi2-core-2.5.91:2 >=dev-libs/atk-2.5.91 >=dev-libs/glib-2.28:2 >=dev-python/pygobject-3.2.2:3[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] >=x11-libs/gtk+-3.5.16:3[introspection] python_targets_python3_3? ( dev-lang/python:3.3[threads] ) dev-python/python-exec:=[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] >=app-accessibility/speech-dispatcher-0.8[python,python_targets_python3_3(-)?,-python_single_target_python3_3(-)] dev-libs/atk[introspection] dev-python/pyatspi[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] dev-python/pycairo[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] dev-python/setproctitle[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] x11-libs/libwnck:3[introspection] x11-libs/pango[introspection] userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=>=app-accessibility/at-spi2-atk-2.5.91:2 >=app-accessibility/at-spi2-core-2.5.91:2 >=dev-libs/atk-2.5.91 >=dev-libs/glib-2.28:2 >=dev-python/pygobject-3.2.2:3[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] >=x11-libs/gtk+-3.5.16:3[introspection] python_targets_python3_3? ( dev-lang/python:3.3[threads] ) dev-python/python-exec:=[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] >=app-accessibility/speech-dispatcher-0.8[python,python_targets_python3_3(-)?,-python_single_target_python3_3(-)] dev-libs/atk[introspection] dev-python/pyatspi[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] dev-python/pycairo[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] dev-python/setproctitle[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] x11-libs/libwnck:3[introspection] x11-libs/pango[introspection]
REQUIRED_USE=|| ( python_targets_python3_3 )
SLOT=0
SRC_URI=mirror://gnome/sources/orca/3.8/orca-3.8.2.tar.xz
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 60f01dcce699345bbe95db0476914874 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 60f01dcce699345bbe95db0476914874 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=eafe0b6c88c7986d4750546878e13b44

@ -1,13 +1,13 @@
DEFINED_PHASES=compile configure install
DEPEND=app-accessibility/sphinxbase media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 python? ( python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) virtual/pkgconfig
DEPEND=app-accessibility/sphinxbase media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 python? ( python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) virtual/pkgconfig userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=Large open source vocabulary, speaker-independent continuous speech recognition engine
EAPI=5
HOMEPAGE=https://sourceforge.net/projects/cmusphinx/
IUSE=python static-libs python_targets_python2_6 python_targets_python2_7
KEYWORDS=amd64 x86
LICENSE=BSD-2
RDEPEND=app-accessibility/sphinxbase media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 python? ( python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=app-accessibility/sphinxbase media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 python? ( python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] )
SLOT=0
SRC_URI=mirror://sourceforge/cmusphinx/pocketsphinx-0.8.tar.gz
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=fa272912b9f6c26a9ccd40fd183c98cd

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install postinst prepare test
DEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy2_0(-)] dev-libs/dotconf >=dev-libs/glib-2 alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) espeak? ( app-accessibility/espeak ) flite? ( app-accessibility/flite ) nas? ( media-libs/nas ) pulseaudio? ( media-sound/pulseaudio ) virtual/pkgconfig || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
DEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy2_0(-)] dev-libs/dotconf >=dev-libs/glib-2 alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) espeak? ( app-accessibility/espeak ) flite? ( app-accessibility/flite ) nas? ( media-libs/nas ) pulseaudio? ( media-sound/pulseaudio ) virtual/pkgconfig || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=Speech synthesis interface
EAPI=5
HOMEPAGE=http://www.freebsoft.org/speechd
IUSE=alsa ao +espeak flite nas pulseaudio python static-libs python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux
LICENSE=GPL-2
RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy2_0(-)] dev-libs/dotconf >=dev-libs/glib-2 alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) espeak? ( app-accessibility/espeak ) flite? ( app-accessibility/flite ) nas? ( media-libs/nas ) pulseaudio? ( media-sound/pulseaudio ) userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy2_0(-)] dev-libs/dotconf >=dev-libs/glib-2 alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) espeak? ( app-accessibility/espeak ) flite? ( app-accessibility/flite ) nas? ( media-libs/nas ) pulseaudio? ( media-sound/pulseaudio )
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 )
SLOT=0
SRC_URI=http://www.freebsoft.org/pub/projects/speechd/speech-dispatcher-0.7.1.tar.gz
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 0954dce983a8c7cfe4e2b55263cb7a05 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 0954dce983a8c7cfe4e2b55263cb7a05 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=e725b0db4c07c2ca00b049b56cf2dced

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install postinst prepare test
DEPEND=python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec:=[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=dev-libs/glib-2.28:2 >=media-libs/libsndfile-1.0.2 alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) espeak? ( app-accessibility/espeak ) flite? ( app-accessibility/flite ) nas? ( media-libs/nas ) pulseaudio? ( media-sound/pulseaudio ) >=dev-libs/dotconf-1.3 >=dev-util/intltool-0.40.0 virtual/pkgconfig
DEPEND=python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec:=[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=dev-libs/glib-2.28:2 >=media-libs/libsndfile-1.0.2 alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) espeak? ( app-accessibility/espeak ) flite? ( app-accessibility/flite ) nas? ( media-libs/nas ) pulseaudio? ( media-sound/pulseaudio ) >=dev-libs/dotconf-1.3 >=dev-util/intltool-0.40.0 virtual/pkgconfig userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=Speech synthesis interface
EAPI=5
HOMEPAGE=http://www.freebsoft.org/speechd
IUSE=alsa ao +espeak flite nas pulseaudio python static-libs python_targets_python3_2
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux
LICENSE=GPL-2
RDEPEND=python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec:=[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=dev-libs/glib-2.28:2 >=media-libs/libsndfile-1.0.2 alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) espeak? ( app-accessibility/espeak ) flite? ( app-accessibility/flite ) nas? ( media-libs/nas ) pulseaudio? ( media-sound/pulseaudio ) userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec:=[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=dev-libs/glib-2.28:2 >=media-libs/libsndfile-1.0.2 alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) espeak? ( app-accessibility/espeak ) flite? ( app-accessibility/flite ) nas? ( media-libs/nas ) pulseaudio? ( media-sound/pulseaudio )
REQUIRED_USE=|| ( python_targets_python3_2 )
SLOT=0
SRC_URI=http://www.freebsoft.org/pub/projects/speechd/speech-dispatcher-0.8.tar.gz
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 0954dce983a8c7cfe4e2b55263cb7a05 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 0954dce983a8c7cfe4e2b55263cb7a05 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=3464acc145c7bc071a5c66ddec397150

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install postinst
DEPEND=python? ( python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec:=[python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) >=dev-libs/dotconf-1.3 >=dev-libs/glib-2.28:2 >=media-libs/libsndfile-1.0.2 alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) espeak? ( app-accessibility/espeak ) flite? ( app-accessibility/flite ) nas? ( media-libs/nas ) pulseaudio? ( media-sound/pulseaudio ) >=dev-util/intltool-0.40.0 virtual/pkgconfig
DEPEND=python? ( python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec:=[python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) >=dev-libs/dotconf-1.3 >=dev-libs/glib-2.28:2 >=media-libs/libsndfile-1.0.2 alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) espeak? ( app-accessibility/espeak ) flite? ( app-accessibility/flite ) nas? ( media-libs/nas ) pulseaudio? ( media-sound/pulseaudio ) >=dev-util/intltool-0.40.0 virtual/pkgconfig userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=Speech synthesis interface
EAPI=5
HOMEPAGE=http://www.freebsoft.org/speechd
IUSE=alsa ao +espeak flite nas pulseaudio python static-libs python_targets_python3_2 python_targets_python3_3
KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux
LICENSE=GPL-2
RDEPEND=python? ( python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec:=[python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) >=dev-libs/dotconf-1.3 >=dev-libs/glib-2.28:2 >=media-libs/libsndfile-1.0.2 alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) espeak? ( app-accessibility/espeak ) flite? ( app-accessibility/flite ) nas? ( media-libs/nas ) pulseaudio? ( media-sound/pulseaudio ) userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=python? ( python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec:=[python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) >=dev-libs/dotconf-1.3 >=dev-libs/glib-2.28:2 >=media-libs/libsndfile-1.0.2 alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) espeak? ( app-accessibility/espeak ) flite? ( app-accessibility/flite ) nas? ( media-libs/nas ) pulseaudio? ( media-sound/pulseaudio )
REQUIRED_USE=python? ( || ( python_targets_python3_2 python_targets_python3_3 ) )
SLOT=0
SRC_URI=http://www.freebsoft.org/pub/projects/speechd/speech-dispatcher-0.8.tar.gz
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=c1d63a32fd3eb255eb074b30b1367129

@ -1,13 +1,13 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=media-sound/pulseaudio lapack? ( virtual/lapack ) python? ( python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) doc? ( >=app-doc/doxygen-1.4.7 ) || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
DEPEND=media-sound/pulseaudio lapack? ( virtual/lapack ) python? ( python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) doc? ( >=app-doc/doxygen-1.4.7 ) || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=Support library required by the Sphinx Speech Recognition Engine
EAPI=5
HOMEPAGE=http://cmusphinx.sourceforge.net/
IUSE=doc lapack python static-libs python_targets_python2_6 python_targets_python2_7
KEYWORDS=amd64 x86
LICENSE=BSD-2 HPND MIT
RDEPEND=media-sound/pulseaudio lapack? ( virtual/lapack ) python? ( python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=media-sound/pulseaudio lapack? ( virtual/lapack ) python? ( python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] )
SLOT=0
SRC_URI=mirror://sourceforge/cmusphinx/sphinxbase-0.8.tar.gz
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 0954dce983a8c7cfe4e2b55263cb7a05 distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 0954dce983a8c7cfe4e2b55263cb7a05 distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=b133da8fea81f2bb4eaa44d92d01cdbd

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install postinst prepare test
DEPEND=test? ( dev-python/nose dev-vcs/git ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DEPEND=test? ( dev-python/nose dev-vcs/git ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DESCRIPTION=Radically simple deployment, model-driven configuration management, and command execution framework
EAPI=5
HOMEPAGE=http://ansible.cc/
IUSE=test python_targets_python2_6 python_targets_python2_7
KEYWORDS=amd64 x86
LICENSE=GPL-3
RDEPEND=dev-python/jinja dev-python/pyyaml dev-python/paramiko net-misc/sshpass virtual/ssh userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
RDEPEND=dev-python/jinja dev-python/pyyaml dev-python/paramiko net-misc/sshpass virtual/ssh python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=https://github.com/ansible/ansible/archive/v1.2.1.tar.gz -> ansible-1.2.1.tar.gz
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=9d2c16965f7e9bc9b625b649839a177e

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install postinst prepare test
DEPEND=test? ( dev-python/nose dev-vcs/git ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DEPEND=test? ( dev-python/nose dev-vcs/git ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DESCRIPTION=Radically simple deployment, model-driven configuration management, and command execution framework
EAPI=5
HOMEPAGE=http://ansible.cc/
IUSE=test python_targets_python2_6 python_targets_python2_7
KEYWORDS=amd64 x86
LICENSE=GPL-3
RDEPEND=dev-python/jinja dev-python/pyyaml dev-python/paramiko net-misc/sshpass virtual/ssh userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
RDEPEND=dev-python/jinja dev-python/pyyaml dev-python/paramiko net-misc/sshpass virtual/ssh python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=https://github.com/ansible/ansible/archive/v1.2.3.tar.gz -> ansible-1.2.3.tar.gz
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=4040dd20eb911ca44bef0444f5f6d1a7

@ -1,12 +1,12 @@
DEFINED_PHASES=compile configure install postinst prepare test unpack
DEPEND=test? ( dev-python/nose dev-vcs/git ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-vcs/git
DEPEND=test? ( dev-python/nose dev-vcs/git ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-vcs/git
DESCRIPTION=Radically simple deployment, model-driven configuration management, and command execution framework
EAPI=5
HOMEPAGE=http://ansible.cc/
IUSE=test python_targets_python2_6 python_targets_python2_7
LICENSE=GPL-3
RDEPEND=dev-python/jinja dev-python/pyyaml dev-python/paramiko net-misc/sshpass virtual/ssh userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
RDEPEND=dev-python/jinja dev-python/pyyaml dev-python/paramiko net-misc/sshpass virtual/ssh python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 9d623256bd82ddbcc6783ae996e178fd git-r3 15008bd9efc886328f21807b0a6ca839 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 9d623256bd82ddbcc6783ae996e178fd git-r3 15008bd9efc886328f21807b0a6ca839 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=e2e9527c7b5bbb133de3e102f54ccb52

@ -4,10 +4,10 @@ DESCRIPTION=A library for changing configuration files
EAPI=5
HOMEPAGE=http://augeas.net/
IUSE=static-libs test
KEYWORDS=~alpha ~amd64 ~hppa ia64 ~ppc ~sparc ~x86
KEYWORDS=~alpha ~amd64 hppa ia64 ~ppc ~sparc ~x86
LICENSE=LGPL-2.1
RDEPEND=dev-libs/libxml2 sys-libs/readline
SLOT=0
SRC_URI=http://augeas.net/download/augeas-0.10.0.tar.gz
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 0954dce983a8c7cfe4e2b55263cb7a05 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=4144e6777fe34840a228787b548c6674
_md5_=3b00e61730388053acdd581a2ec00db5

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install postinst prepare test
DEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DESCRIPTION=Python framework for efficient cluster administration
EAPI=5
HOMEPAGE=http://cea-hpc.github.com/clustershell/
IUSE=doc python_targets_python2_6 python_targets_python2_7
KEYWORDS=amd64 x86
LICENSE=CeCILL-C
RDEPEND=dev-libs/openssl userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
RDEPEND=dev-libs/openssl python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=https://github.com/cea-hpc/clustershell/archive/v1.6.tar.gz -> clustershell-1.6.tar.gz
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=ae387dc19d60d1ea25c04fff09a232c2

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install postinst prepare test
DEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] virtual/pkgconfig
DEPEND=userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] virtual/pkgconfig
DESCRIPTION=DenyHosts is a utility to help sys admins thwart ssh hackers
EAPI=5
HOMEPAGE=http://www.denyhosts.net
IUSE=python_targets_python2_6 python_targets_python2_7
KEYWORDS=alpha amd64 arm hppa ppc sparc x86
LICENSE=GPL-2
RDEPEND=userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=mirror://sourceforge/denyhosts/DenyHosts-2.6.tar.gz
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 systemd e80fe2d5b43ec0f0160c6e8ef931fa4c toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 systemd e80fe2d5b43ec0f0160c6e8ef931fa4c toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=aac0cb45cf0c7306b8559d72e50f600a

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)]
DEPEND=userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)]
DESCRIPTION=Remove outdated built kernels
EAPI=5
HOMEPAGE=https://bitbucket.org/mgorny/eclean-kernel/
IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0
KEYWORDS=~amd64 ~mips ~x86 ~x86-fbsd
LICENSE=BSD
RDEPEND=kernel_linux? ( dev-python/pymountboot[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)]
RDEPEND=kernel_linux? ( dev-python/pymountboot[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 )
SLOT=0
SRC_URI=mirror://bitbucket/mgorny/eclean-kernel/downloads/eclean-kernel-0.4.tar.bz2
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=852ae3d7d779df1afb9899ca3d5745fc

@ -1,12 +1,12 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] dev-vcs/git
DEPEND=userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] dev-vcs/git
DESCRIPTION=Remove outdated built kernels
EAPI=5
HOMEPAGE=https://bitbucket.org/mgorny/eclean-kernel/
IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0
LICENSE=BSD
RDEPEND=kernel_linux? ( dev-python/pymountboot[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)]
RDEPEND=kernel_linux? ( dev-python/pymountboot[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 )
SLOT=0
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 9d623256bd82ddbcc6783ae996e178fd git-r3 15008bd9efc886328f21807b0a6ca839 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 9d623256bd82ddbcc6783ae996e178fd git-r3 15008bd9efc886328f21807b0a6ca839 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=705ad992d4a4ab902781dba268a27ad5

@ -1,13 +1,13 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=!amd64? ( dev-libs/libxml2 ) amd64? ( abi_x86_64? ( dev-libs/libxml2 ) abi_x86_32? ( app-emulation/emul-linux-x86-baselibs ) ) !amd64? ( sys-devel/libtool ) amd64? ( abi_x86_64? ( sys-devel/libtool ) ) iconv? ( virtual/libiconv ) !amd64? ( test? ( dev-libs/libxml2[static-libs] ) ) || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
DEPEND=!amd64? ( dev-libs/libxml2 ) amd64? ( abi_x86_64? ( dev-libs/libxml2 ) abi_x86_32? ( app-emulation/emul-linux-x86-baselibs ) ) !amd64? ( sys-devel/libtool ) amd64? ( abi_x86_64? ( sys-devel/libtool ) ) iconv? ( virtual/libiconv ) !amd64? ( test? ( dev-libs/libxml2[static-libs] ) ) || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=universal and secure framework to store config parameters in a hierarchical key-value pair mechanism
EAPI=5
HOMEPAGE=http://freedesktop.org/wiki/Software/Elektra
IUSE=gcov iconv static-libs test abi_x86_32 abi_x86_64 abi_x86_x32 abi_x86_32 abi_x86_64 abi_mips_n32 abi_mips_n64 abi_mips_o32
KEYWORDS=~amd64 ~x86
LICENSE=BSD
RDEPEND=!amd64? ( dev-libs/libxml2 ) amd64? ( abi_x86_64? ( dev-libs/libxml2 ) abi_x86_32? ( app-emulation/emul-linux-x86-baselibs ) ) userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=!amd64? ( dev-libs/libxml2 ) amd64? ( abi_x86_64? ( dev-libs/libxml2 ) abi_x86_32? ( app-emulation/emul-linux-x86-baselibs ) )
SLOT=0
SRC_URI=ftp://ftp.markus-raab.org/elektra/elektra-0.7.1.tar.gz
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-multilib c576ed7a3d3613a39130380c3d008357 autotools-utils 0954dce983a8c7cfe4e2b55263cb7a05 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 6edec89368c3aae614d551d0d5020f82 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-multilib c576ed7a3d3613a39130380c3d008357 autotools-utils 0954dce983a8c7cfe4e2b55263cb7a05 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 6edec89368c3aae614d551d0d5020f82 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=a09e206071c89b1504dc0f88da5bace9

@ -1,13 +1,13 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-libs/libxml2 sys-devel/libtool doc? ( app-doc/doxygen ) iconv? ( virtual/libiconv ) test? ( dev-libs/libxml2[static-libs] ) yajl? ( <dev-libs/yajl-2 ) sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
DEPEND=dev-libs/libxml2 sys-devel/libtool doc? ( app-doc/doxygen ) iconv? ( virtual/libiconv ) test? ( dev-libs/libxml2[static-libs] ) yajl? ( <dev-libs/yajl-2 ) sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=universal and secure framework to store config parameters in a hierarchical key-value pair mechanism
EAPI=5
HOMEPAGE=http://freedesktop.org/wiki/Software/Elektra
IUSE=dbus doc examples iconv inifile simpleini static-libs syslog tcl test xml yajl abi_x86_32 abi_x86_64 abi_x86_x32 abi_x86_32 abi_x86_64 abi_mips_n32 abi_mips_n64 abi_mips_o32
KEYWORDS=~amd64 ~x86
LICENSE=BSD
RDEPEND=dev-libs/libxml2 userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=dev-libs/libxml2
SLOT=0
SRC_URI=ftp://ftp.markus-raab.org/elektra/releases/elektra-0.8.3.tar.gz
_eclasses_=cmake-multilib bc410003ceff930ee594cc9e8f96d58a cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 2ff578fb151da221e1797f12e2990e72 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 6edec89368c3aae614d551d0d5020f82 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=cmake-multilib bc410003ceff930ee594cc9e8f96d58a cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 2ff578fb151da221e1797f12e2990e72 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 6edec89368c3aae614d551d0d5020f82 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=b66b7ed4998128fd5840cce753a89357

@ -1,13 +1,13 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=!amd64? ( dev-libs/libxml2 ) amd64? ( abi_x86_64? ( dev-libs/libxml2 ) abi_x86_32? ( app-emulation/emul-linux-x86-baselibs ) ) !amd64? ( sys-devel/libtool ) doc? ( app-doc/doxygen ) iconv? ( virtual/libiconv ) !amd64? ( test? ( dev-libs/libxml2[static-libs] ) ) yajl? ( <dev-libs/yajl-2 ) sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
DEPEND=!amd64? ( dev-libs/libxml2 ) amd64? ( abi_x86_64? ( dev-libs/libxml2 ) abi_x86_32? ( app-emulation/emul-linux-x86-baselibs ) ) !amd64? ( sys-devel/libtool ) doc? ( app-doc/doxygen ) iconv? ( virtual/libiconv ) !amd64? ( test? ( dev-libs/libxml2[static-libs] ) ) yajl? ( <dev-libs/yajl-2 ) sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=universal and secure framework to store config parameters in a hierarchical key-value pair mechanism
EAPI=5
HOMEPAGE=http://freedesktop.org/wiki/Software/Elektra
IUSE=dbus doc examples iconv inifile simpleini static-libs syslog tcl test xml yajl abi_x86_32 abi_x86_64 abi_x86_x32 abi_x86_32 abi_x86_64 abi_mips_n32 abi_mips_n64 abi_mips_o32
KEYWORDS=~amd64 ~x86
LICENSE=BSD
RDEPEND=!amd64? ( dev-libs/libxml2 ) amd64? ( abi_x86_64? ( dev-libs/libxml2 ) abi_x86_32? ( app-emulation/emul-linux-x86-baselibs ) ) userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=!amd64? ( dev-libs/libxml2 ) amd64? ( abi_x86_64? ( dev-libs/libxml2 ) abi_x86_32? ( app-emulation/emul-linux-x86-baselibs ) )
SLOT=0
SRC_URI=ftp://ftp.markus-raab.org/elektra/releases/elektra-0.8.3.tar.gz
_eclasses_=cmake-multilib bc410003ceff930ee594cc9e8f96d58a cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 2ff578fb151da221e1797f12e2990e72 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 6edec89368c3aae614d551d0d5020f82 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=cmake-multilib bc410003ceff930ee594cc9e8f96d58a cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 2ff578fb151da221e1797f12e2990e72 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 6edec89368c3aae614d551d0d5020f82 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=f7d68d9ed3f363c2d5f2ccdabb879747

@ -1,13 +1,13 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=|| ( net-nds/rpcbind >=net-nds/portmap-5b-r6 ) !app-admin/gamin || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
DEPEND=|| ( net-nds/rpcbind >=net-nds/portmap-5b-r6 ) !app-admin/gamin || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=FAM, the File Alteration Monitor
EAPI=5
HOMEPAGE=http://oss.sgi.com/projects/fam/
IUSE=static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_x86_32 abi_x86_64 abi_mips_n32 abi_mips_n64 abi_mips_o32
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
LICENSE=GPL-2 LGPL-2.1
RDEPEND=|| ( net-nds/rpcbind >=net-nds/portmap-5b-r6 ) !app-admin/gamin userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=|| ( net-nds/rpcbind >=net-nds/portmap-5b-r6 ) !app-admin/gamin
SLOT=0
SRC_URI=ftp://oss.sgi.com/projects/fam/download/stable/fam-2.7.0.tar.gz mirror://debian/pool/main/f/fam/fam_2.7.0-17.diff.gz
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 6edec89368c3aae614d551d0d5020f82 multilib-minimal 09c985fcba99d0f16fc7161fffa80730 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 6edec89368c3aae614d551d0d5020f82 multilib-minimal 09c985fcba99d0f16fc7161fffa80730 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=ba8ef18748c7d05ceb6266fc765c6048

@ -1,4 +1,5 @@
DEFINED_PHASES=-
DEPEND=userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=Meta package providing the File Alteration Monitor API & Server
EAPI=5
HOMEPAGE=http://www.gnome.org/~veillard/gamin/
@ -6,7 +7,7 @@ IUSE=abi_x86_32 abi_x86_64 abi_x86_x32 abi_x86_32 abi_x86_64 abi_mips_n32 abi_mi
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris
LICENSE=LGPL-2
PDEPEND=>=app-admin/gam-server-0.1.10
RDEPEND=!app-admin/fam >=dev-libs/libgamin-0.1.10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_x86_32(-)?,abi_x86_64(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?] userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=!app-admin/fam >=dev-libs/libgamin-0.1.10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_x86_32(-)?,abi_x86_64(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?]
SLOT=0
_eclasses_=multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 6edec89368c3aae614d551d0d5020f82 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f
_eclasses_=multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 6edec89368c3aae614d551d0d5020f82 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f
_md5_=3b054d5e5858293fac051e23927fea70

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
DESCRIPTION=Provides services for discovering, registering, and retrieving virtual machine images with Openstack
EAPI=5
HOMEPAGE=https://launchpad.net/glance
IUSE=ldap mysql postgres +sqlite +swift python_targets_python2_7
KEYWORDS=~amd64 ~x86
LICENSE=Apache-2.0
RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/boto-2.1.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/anyjson[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.9.12[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/greenlet-0.3.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/iso8601[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/jsonschema[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/kombu[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/lxml[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/passlib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pastedeploy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-glanceclient[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/routes[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-migrate-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/webob-1.0.8-r1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] swift? ( >=dev-python/python-swiftclient-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/python-swiftclient-2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) mysql? ( >=dev-python/sqlalchemy-0.7.8[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) postgres? ( >=dev-python/sqlalchemy-0.7.8[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/boto-2.1.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/anyjson[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.9.12[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/greenlet-0.3.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/iso8601[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/jsonschema[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/kombu[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/lxml[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/passlib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pastedeploy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-glanceclient[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/routes[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-migrate-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/webob-1.0.8-r1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] swift? ( >=dev-python/python-swiftclient-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/python-swiftclient-2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) mysql? ( >=dev-python/sqlalchemy-0.7.8[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) postgres? ( >=dev-python/sqlalchemy-0.7.8[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( ldap mysql postgres sqlite ) || ( python_targets_python2_7 )
SLOT=0
SRC_URI=http://launchpad.net/glance/folsom/2012.2.4/+download/glance-2012.2.4.tar.gz
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=507fdb7f3749c19e046de8e4e860d0b7

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
DESCRIPTION=Provides services for discovering, registering, and retrieving virtual machine images with Openstack
EAPI=5
HOMEPAGE=https://launchpad.net/glance
IUSE=ldap mysql postgres +sqlite +swift python_targets_python2_7
KEYWORDS=~amd64 ~x86
LICENSE=Apache-2.0
RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/boto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/anyjson[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.9.12[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/greenlet-0.3.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/iso8601[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/jsonschema-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/jsonschema-1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/kombu[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/lxml[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-config-1.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/passlib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pastedeploy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-keystoneclient-0.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-glanceclient[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/routes[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-migrate-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/webob-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] swift? ( >=dev-python/python-swiftclient-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/python-swiftclient-2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) mysql? ( >=dev-python/sqlalchemy-0.7.8[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) postgres? ( >=dev-python/sqlalchemy-0.7.8[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/boto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/anyjson[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.9.12[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/greenlet-0.3.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/iso8601[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/jsonschema-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/jsonschema-1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/kombu[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/lxml[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-config-1.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/passlib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pastedeploy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-keystoneclient-0.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-glanceclient[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/routes[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-migrate-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/webob-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] swift? ( >=dev-python/python-swiftclient-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/python-swiftclient-2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) mysql? ( >=dev-python/sqlalchemy-0.7.8[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) postgres? ( >=dev-python/sqlalchemy-0.7.8[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( ldap mysql postgres sqlite ) || ( python_targets_python2_7 )
SLOT=0
SRC_URI=http://launchpad.net/glance/grizzly/2013.1.3/+download/glance-2013.1.3.tar.gz
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=bf7bc077fbbf270b71dd5a7b17ac1852

@ -1,12 +1,12 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-vcs/git python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-vcs/git userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
DESCRIPTION=Provides services for discovering, registering, and retrieving virtual machine images with Openstack
EAPI=5
HOMEPAGE=https://launchpad.net/glance
IUSE=ldap mysql postgres +sqlite +swift python_targets_python2_7
LICENSE=Apache-2.0
RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/boto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/anyjson[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.9.12[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/greenlet-0.3.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/iso8601[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/jsonschema-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/jsonschema-1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/kombu[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/lxml[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-config-1.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/passlib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pastedeploy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-keystoneclient-0.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-glanceclient[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/routes[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-migrate-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/webob-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] swift? ( >=dev-python/python-swiftclient-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/python-swiftclient-2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) mysql? ( >=dev-python/sqlalchemy-0.7.8[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) postgres? ( >=dev-python/sqlalchemy-0.7.8[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/boto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/anyjson[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.9.12[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/greenlet-0.3.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/iso8601[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/jsonschema-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/jsonschema-1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/kombu[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/lxml[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-config-1.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/passlib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pastedeploy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-keystoneclient-0.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-glanceclient[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/routes[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-migrate-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/webob-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] swift? ( >=dev-python/python-swiftclient-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/python-swiftclient-2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) mysql? ( >=dev-python/sqlalchemy-0.7.8[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) postgres? ( >=dev-python/sqlalchemy-0.7.8[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( ldap mysql postgres sqlite ) || ( python_targets_python2_7 )
SLOT=0
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 9d623256bd82ddbcc6783ae996e178fd git-r3 15008bd9efc886328f21807b0a6ca839 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 9d623256bd82ddbcc6783ae996e178fd git-r3 15008bd9efc886328f21807b0a6ca839 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=ac4713c51607107d59ef1e7635e4f6c6

@ -1,12 +1,12 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-vcs/git python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-vcs/git userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
DESCRIPTION=Provides services for discovering, registering, and retrieving virtual machine images with Openstack
EAPI=5
HOMEPAGE=https://launchpad.net/glance
IUSE=ldap mysql postgres +sqlite +swift python_targets_python2_7
LICENSE=Apache-2.0
RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/boto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/anyjson[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.9.12[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/greenlet-0.3.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/iso8601[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/jsonschema-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/jsonschema-1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/kombu[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/lxml[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-config-1.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/passlib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pastedeploy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-keystoneclient-0.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-glanceclient[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/routes[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-migrate-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/webob-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] swift? ( >=dev-python/python-swiftclient-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/python-swiftclient-2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) mysql? ( >=dev-python/sqlalchemy-0.7.8[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) postgres? ( >=dev-python/sqlalchemy-0.7.8[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/boto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/anyjson[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.9.12[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/greenlet-0.3.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/iso8601[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/jsonschema-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/jsonschema-1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/kombu[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/lxml[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-config-1.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/passlib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pastedeploy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-keystoneclient-0.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-glanceclient[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/routes[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-migrate-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/webob-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] swift? ( >=dev-python/python-swiftclient-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/python-swiftclient-2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) mysql? ( >=dev-python/sqlalchemy-0.7.8[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) postgres? ( >=dev-python/sqlalchemy-0.7.8[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/sqlalchemy-0.7.10[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( ldap mysql postgres sqlite ) || ( python_targets_python2_7 )
SLOT=0
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 9d623256bd82ddbcc6783ae996e178fd git-r3 15008bd9efc886328f21807b0a6ca839 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 9d623256bd82ddbcc6783ae996e178fd git-r3 15008bd9efc886328f21807b0a6ca839 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=542990dd9df054871ebe4336b2041c01

@ -1,14 +1,14 @@
DEFINED_PHASES=install test
DEPEND=python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] test? ( dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] )
DEPEND=python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] test? ( dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=Checks /proc for libraries being mapped but marked as deleted
EAPI=5
HOMEPAGE=http://schwarzvogel.de/software-misc.shtml
IUSE=test python_targets_python2_7 python_targets_python3_2 python_targets_python3_3
KEYWORDS=~alpha ~amd64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux
LICENSE=GPL-2
RDEPEND=python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)]
REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 )
SLOT=0
SRC_URI=http://schwarzvogel.de/pkgs/lib_users-0.6.tar.gz
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=122ecf10a622816590062e64310b3f76

@ -1,11 +0,0 @@
DEFINED_PHASES=install postinst
DEPEND=app-shells/bash
DESCRIPTION=Bash scripts to create and maintain tripwire database
EAPI=5
HOMEPAGE=https://sourceforge.net/projects/mktwpol
KEYWORDS=~amd64 ~ppc ~x86 ~x86-fbsd
LICENSE=CC-BY-SA-3.0
RDEPEND=app-admin/tripwire
SLOT=0
SRC_URI=mirror://sourceforge/mktwpol/mktwpol-0.1.4.tar.gz
_md5_=331cfc937f35d0b1fc2b67c41602c36b

@ -1,5 +1,5 @@
DEFINED_PHASES=install postinst
DESCRIPTION=Bash scripts to create and maintain tripwire database
DESCRIPTION=Bash scripts to install tripwire and generate tripwire policy files
EAPI=5
HOMEPAGE=https://sourceforge.net/projects/mktwpol
KEYWORDS=~amd64 ~ppc ~x86 ~x86-fbsd
@ -7,4 +7,4 @@ LICENSE=CC-BY-SA-3.0
RDEPEND=app-admin/tripwire
SLOT=0
SRC_URI=mirror://sourceforge/mktwpol/mktwpol-0.1.5.tar.gz
_md5_=c93feb526484c910bc1a8b770003b6ee
_md5_=2218f4cf4ee11044388a7c63ab3b389f

@ -1,14 +1,14 @@
DEFINED_PHASES=install prepare
DEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)]
DEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=Enhanced df with colors
EAPI=5
HOMEPAGE=http://kassiopeia.juls.savba.sk/~garabik/software/pydf/
IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux
LICENSE=public-domain
RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 )
SLOT=0
SRC_URI=http://kassiopeia.juls.savba.sk/~garabik/software/pydf/pydf_10.tar.gz
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=77ff844059ee0257b21ba51dbee7c4c5

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=test? ( dev-python/virtualenv >=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DEPEND=test? ( dev-python/virtualenv >=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DESCRIPTION=Salt is a remote execution and configuration manager.
EAPI=5
HOMEPAGE=http://saltstack.org/
IUSE=ldap libvirt mako mongodb mysql openssl redis test python_targets_python2_6 python_targets_python2_7
KEYWORDS=~x86 ~amd64
LICENSE=Apache-2.0
RDEPEND=>=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
RDEPEND=>=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=mirror://pypi/s/salt/salt-0.16.0.tar.gz
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=4e332d30c0312aa8f6f73c260ab5e469

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=test? ( dev-python/virtualenv >=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DEPEND=test? ( dev-python/virtualenv >=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DESCRIPTION=Salt is a remote execution and configuration manager.
EAPI=5
HOMEPAGE=http://saltstack.org/
IUSE=ldap libvirt mako mongodb mysql openssl redis test python_targets_python2_6 python_targets_python2_7
KEYWORDS=~x86 ~amd64
LICENSE=Apache-2.0
RDEPEND=>=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
RDEPEND=>=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=mirror://pypi/s/salt/salt-0.16.2.tar.gz
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=5cc665eb61127ed24de6bf3e1baea369

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=test? ( dev-python/virtualenv >=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DEPEND=test? ( dev-python/virtualenv >=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DESCRIPTION=Salt is a remote execution and configuration manager.
EAPI=5
HOMEPAGE=http://saltstack.org/
IUSE=ldap libvirt mako mongodb mysql openssl redis test python_targets_python2_6 python_targets_python2_7
KEYWORDS=~x86 ~amd64
LICENSE=Apache-2.0
RDEPEND=>=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
RDEPEND=>=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=mirror://pypi/s/salt/salt-0.16.3.tar.gz
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=9bbc9a1b89de2bcca9441d3c4d5eb49a

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=test? ( dev-python/virtualenv >=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DEPEND=test? ( dev-python/virtualenv >=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DESCRIPTION=Salt is a remote execution and configuration manager.
EAPI=5
HOMEPAGE=http://saltstack.org/
IUSE=ldap libvirt mako mongodb mysql openssl redis test python_targets_python2_6 python_targets_python2_7
KEYWORDS=~x86 ~amd64
LICENSE=Apache-2.0
RDEPEND=>=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
RDEPEND=>=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=mirror://pypi/s/salt/salt-0.16.4.tar.gz
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=ee1fc03a10115f3754c74a1a60dba470

@ -1,12 +1,12 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=test? ( dev-python/virtualenv >=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-vcs/git
DEPEND=test? ( dev-python/virtualenv >=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-vcs/git
DESCRIPTION=Salt is a remote execution and configuration manager.
EAPI=5
HOMEPAGE=http://saltstack.org/
IUSE=ldap libvirt mako mongodb mysql openssl redis test python_targets_python2_6 python_targets_python2_7
LICENSE=Apache-2.0
RDEPEND=>=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
RDEPEND=>=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 9d623256bd82ddbcc6783ae996e178fd git-r3 15008bd9efc886328f21807b0a6ca839 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 9d623256bd82ddbcc6783ae996e178fd git-r3 15008bd9efc886328f21807b0a6ca839 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=e13d4cc8f2a09b3615b4c10d8e38d61a

@ -1,15 +1,15 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=>=dev-python/meld3-0.6.10-r1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] test? ( dev-python/mock[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DEPEND=>=dev-python/meld3-0.6.10-r1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] test? ( dev-python/mock[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DESCRIPTION=A system for controlling process state under UNIX
EAPI=5
HOMEPAGE=http://supervisord.org/ http://pypi.python.org/pypi/supervisor
IUSE=test python_targets_python2_6 python_targets_python2_7
KEYWORDS=~amd64 ~x86
LICENSE=repoze ZPL BSD HPND GPL-2
RDEPEND=>=dev-python/meld3-0.6.10-r1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
RDEPEND=>=dev-python/meld3-0.6.10-r1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
RESTRICT=test
SLOT=0
SRC_URI=mirror://pypi/s/supervisor/supervisor-3.0.tar.gz
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=7d27fac82a89568a2e12637d5909c8d8

@ -1,15 +1,15 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=>=dev-python/meld3-0.6.10-r1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] test? ( dev-python/mock[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DEPEND=>=dev-python/meld3-0.6.10-r1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] test? ( dev-python/mock[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DESCRIPTION=A system for controlling process state under UNIX
EAPI=5
HOMEPAGE=http://supervisord.org/ http://pypi.python.org/pypi/supervisor
IUSE=test python_targets_python2_6 python_targets_python2_7
KEYWORDS=~amd64 ~x86
LICENSE=repoze ZPL BSD HPND GPL-2
RDEPEND=>=dev-python/meld3-0.6.10-r1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
RDEPEND=>=dev-python/meld3-0.6.10-r1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
RESTRICT=test
SLOT=0
SRC_URI=mirror://pypi/s/supervisor/supervisor-3.0b2.tar.gz
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=4c7fa960562371bde22132dd42074217

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install postinst prepare test
DEPEND=app-text/xmlto python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy2_0(-)]
DEPEND=app-text/xmlto userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy2_0(-)]
DESCRIPTION=Gentoo's installer for web-based applications
EAPI=5
HOMEPAGE=http://sourceforge.net/projects/webapp-config/
IUSE=+portage python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd
LICENSE=GPL-2
RDEPEND=portage? ( sys-apps/portage[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy2_0(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy2_0(-)]
RDEPEND=portage? ( sys-apps/portage[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy2_0(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy2_0(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 )
SLOT=0
SRC_URI=http://dev.gentoo.org/~blueness/webapp-config/webapp-config-1.50.19.tar.bz2
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=15bf15c33233fd8249b948b832ef4aa7

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install postinst prepare test
DEPEND=app-text/xmlto python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)]
DEPEND=app-text/xmlto userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)]
DESCRIPTION=Gentoo's installer for web-based applications
EAPI=5
HOMEPAGE=http://sourceforge.net/projects/webapp-config/
IUSE=+portage python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd
LICENSE=GPL-2
RDEPEND=portage? ( sys-apps/portage[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)]
RDEPEND=portage? ( sys-apps/portage[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 )
SLOT=0
SRC_URI=http://dev.gentoo.org/~blueness/webapp-config/webapp-config-1.51.tar.bz2
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=72464e75d0164c0c70e2c233d134b874

@ -1,12 +1,12 @@
DEFINED_PHASES=compile configure install postinst prepare test unpack
DEPEND=app-text/xmlto python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] dev-vcs/git
DEPEND=app-text/xmlto userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] dev-vcs/git
DESCRIPTION=Gentoo's installer for web-based applications
EAPI=5
HOMEPAGE=http://sourceforge.net/projects/webapp-config/
IUSE=+portage python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0
LICENSE=GPL-2
RDEPEND=portage? ( sys-apps/portage[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)]
RDEPEND=portage? ( sys-apps/portage[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 )
SLOT=0
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 9d623256bd82ddbcc6783ae996e178fd git-r3 15008bd9efc886328f21807b0a6ca839 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 9d623256bd82ddbcc6783ae996e178fd git-r3 15008bd9efc886328f21807b0a6ca839 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=09c903b09cd12ac4d962471121993a0b

@ -1,12 +1,13 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=A high-quality data compressor used extensively by Gentoo Linux
EAPI=4
HOMEPAGE=http://www.bzip.org/
IUSE=static static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_x86_32 abi_x86_64 abi_mips_n32 abi_mips_n64 abi_mips_o32
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd
LICENSE=BZIP2
RDEPEND=abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )
SLOT=0
SRC_URI=http://www.bzip.org/1.0.6/bzip2-1.0.6.tar.gz
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 2ff578fb151da221e1797f12e2990e72 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 6edec89368c3aae614d551d0d5020f82 multilib-minimal 09c985fcba99d0f16fc7161fffa80730 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 2ff578fb151da221e1797f12e2990e72 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 6edec89368c3aae614d551d0d5020f82 multilib-minimal 09c985fcba99d0f16fc7161fffa80730 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=0ebba07fe57c73f1cec3389392632224

@ -6,4 +6,4 @@ HOMEPAGE=https://code.google.com/p/lz4/
LICENSE=BSD-2
SLOT=0
_eclasses_=cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 2ff578fb151da221e1797f12e2990e72 multilib 892e597faee02a5b94eb02ab512e7622 subversion e80e84db0fc102c2959858102060bec9 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=373c26e96a745b1deeb6227f65e85576
_md5_=4b6d9bdc26ff8bf301e0eb6db64554dd

@ -0,0 +1,14 @@
DEFINED_PHASES=compile install prepare setup test
DEPEND=kde? ( x11-libs/wxGTK:2.8[X,-odbc] kde-base/kdelibs ) wxwidgets? ( x11-libs/wxGTK:2.8[X,-odbc] ) amd64? ( dev-lang/yasm ) x86? ( dev-lang/nasm )
DESCRIPTION=Port of 7-Zip archiver for Unix
EAPI=5
HOMEPAGE=http://p7zip.sourceforge.net/
IUSE=doc kde rar +pch static wxwidgets
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris
LICENSE=LGPL-2.1 rar? ( unRAR )
RDEPEND=kde? ( x11-libs/wxGTK:2.8[X,-odbc] kde-base/kdelibs ) wxwidgets? ( x11-libs/wxGTK:2.8[X,-odbc] )
REQUIRED_USE=kde? ( wxwidgets )
SLOT=0
SRC_URI=mirror://sourceforge/p7zip/p7zip_9.20.1_src_all.tar.bz2
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 wxwidgets 3315ffba81a98dea5d9837edb418a587
_md5_=622a522108b78db6f67068af6f358945

@ -1,13 +1,13 @@
DEFINED_PHASES=compile configure install postinst preinst prepare test
DEPEND=!<app-arch/lzma-4.63 !app-arch/lzma-utils !<app-arch/p7zip-4.57
DEPEND=!<app-arch/lzma-4.63 !app-arch/lzma-utils !<app-arch/p7zip-4.57 userland_GNU? ( >=sys-apps/coreutils-8.5 )
DESCRIPTION=utils for managing LZMA compressed files
EAPI=4
HOMEPAGE=http://tukaani.org/xz/
IUSE=nls static-libs +threads abi_x86_32 abi_x86_64 abi_x86_x32 abi_x86_32 abi_x86_64 abi_mips_n32 abi_mips_n64 abi_mips_o32
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
LICENSE=LGPL-2.1
RDEPEND=!<app-arch/lzma-4.63 !app-arch/lzma-utils !<app-arch/p7zip-4.57 userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=!<app-arch/lzma-4.63 !app-arch/lzma-utils !<app-arch/p7zip-4.57
SLOT=0
SRC_URI=http://tukaani.org/xz/xz-5.0.5.tar.gz
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 6edec89368c3aae614d551d0d5020f82 multilib-minimal 09c985fcba99d0f16fc7161fffa80730 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 6edec89368c3aae614d551d0d5020f82 multilib-minimal 09c985fcba99d0f16fc7161fffa80730 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=55f0d1c45f96c83a21146ffc17fce4a1

@ -1,11 +1,11 @@
DEFINED_PHASES=compile configure install postinst preinst prepare test unpack
DEPEND=!<app-arch/lzma-4.63 !app-arch/lzma-utils !<app-arch/p7zip-4.57 sys-devel/gettext dev-vcs/cvs >=sys-devel/libtool-2 dev-vcs/git || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
DEPEND=!<app-arch/lzma-4.63 !app-arch/lzma-utils !<app-arch/p7zip-4.57 sys-devel/gettext dev-vcs/cvs >=sys-devel/libtool-2 userland_GNU? ( >=sys-apps/coreutils-8.5 ) dev-vcs/git || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
DESCRIPTION=utils for managing LZMA compressed files
EAPI=4
HOMEPAGE=http://tukaani.org/xz/
IUSE=nls static-libs +threads abi_x86_32 abi_x86_64 abi_x86_x32 abi_x86_32 abi_x86_64 abi_mips_n32 abi_mips_n64 abi_mips_o32
LICENSE=LGPL-2.1
RDEPEND=!<app-arch/lzma-4.63 !app-arch/lzma-utils !<app-arch/p7zip-4.57 userland_GNU? ( >=sys-apps/coreutils-8.5 )
RDEPEND=!<app-arch/lzma-4.63 !app-arch/lzma-utils !<app-arch/p7zip-4.57
SLOT=0
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 9d623256bd82ddbcc6783ae996e178fd git-r3 15008bd9efc886328f21807b0a6ca839 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 6edec89368c3aae614d551d0d5020f82 multilib-minimal 09c985fcba99d0f16fc7161fffa80730 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 9d623256bd82ddbcc6783ae996e178fd git-r3 15008bd9efc886328f21807b0a6ca839 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 6edec89368c3aae614d551d0d5020f82 multilib-minimal 09c985fcba99d0f16fc7161fffa80730 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=145c63213ac155a9448743cbba76612e

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=net-libs/librsync app-crypt/gnupg python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DEPEND=net-libs/librsync app-crypt/gnupg userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DESCRIPTION=Secure backup system using gnupg to encrypt data
EAPI=5
HOMEPAGE=http://www.nongnu.org/duplicity/
IUSE=s3 python_targets_python2_6 python_targets_python2_7
KEYWORDS=~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos
LICENSE=GPL-3
RDEPEND=net-libs/librsync app-crypt/gnupg dev-python/paramiko[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] s3? ( dev-python/boto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
RDEPEND=net-libs/librsync app-crypt/gnupg dev-python/paramiko[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] s3? ( dev-python/boto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=http://code.launchpad.net/duplicity/0.6-series/0.6.22/+download/duplicity-0.6.22.tar.gz
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=03e77601c0056956b5a26880aba66a76

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install postinst prepare test
DEPEND=python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/cliapp >=dev-python/larch-1.20121216 dev-python/paramiko dev-python/tracing dev-python/ttystatus python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DEPEND=python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/cliapp >=dev-python/larch-1.20121216 dev-python/paramiko dev-python/tracing dev-python/ttystatus userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DESCRIPTION=A backup program that supports encryption and deduplication
EAPI=5
HOMEPAGE=http://liw.fi/obnam/
IUSE=python_targets_python2_6 python_targets_python2_7
KEYWORDS=~amd64 ~x86
LICENSE=GPL-3
RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/cliapp >=dev-python/larch-1.20121216 dev-python/paramiko dev-python/tracing dev-python/ttystatus userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/cliapp >=dev-python/larch-1.20121216 dev-python/paramiko dev-python/tracing dev-python/ttystatus python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=http://code.liw.fi/debian/pool/main/o/obnam/obnam_1.4.orig.tar.gz
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=b1a9ff4ea96a349146b7f78881672162

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install postinst prepare test
DEPEND=python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/cliapp >=dev-python/larch-1.20130808 dev-python/paramiko dev-python/tracing dev-python/ttystatus python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DEPEND=python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/cliapp >=dev-python/larch-1.20130808 dev-python/paramiko dev-python/tracing dev-python/ttystatus userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DESCRIPTION=A backup program that supports encryption and deduplication
EAPI=5
HOMEPAGE=http://liw.fi/obnam/
IUSE=python_targets_python2_6 python_targets_python2_7
KEYWORDS=~amd64 ~x86
LICENSE=GPL-3
RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/cliapp >=dev-python/larch-1.20130808 dev-python/paramiko dev-python/tracing dev-python/ttystatus userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/cliapp >=dev-python/larch-1.20130808 dev-python/paramiko dev-python/tracing dev-python/ttystatus python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=http://code.liw.fi/debian/pool/main/o/obnam/obnam_1.5.orig.tar.gz
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 66ecd0bd5a9e66ba44af9d01ac66360f multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 0d8cd7220d2bf75b999ed76b525565b0 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 2876e182a9a350a7e0049caf3bf3be12 python-utils-r1 a4940acdd0a5ebdc58aaedd38de4983a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=7118b296feaf56f24f2bf2e31e8042b1

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

Loading…
Cancel
Save