Sync with portage [Wed Mar 6 08:52:41 MSK 2019].
This commit is contained in:
parent
ba20b2cd76
commit
428f2bee3e
224 changed files with 2880 additions and 765 deletions
Binary file not shown.
Binary file not shown.
|
@ -1 +1,2 @@
|
|||
DIST conserver-8.1.18.tar.gz 323247 BLAKE2B 48176ba8be648df16ddb18c1a760af8069f7d926d2e0767e3b7ef903276d6104cfa9464a6ebdce009720fe5118862d89cf5371e104d17b967e11fe8e8968e8f9 SHA512 a8029aef5fd84f93eb3ae56ba7f751d79a6065c012bfd805e050f8c9edf09fd660c272d3f3ce0a47cfb17678574babbecad63f8bfd50ad4fdccdbabc2249435f
|
||||
DIST conserver-8.2.2.tar.gz 329048 BLAKE2B 0148a5b5b11fcc75a071b9759e129a94f1fe623df35e7549e967d0037ddb378447623070ce43429daf4868308be150f5ba318354e3181d94ccb1199655231373 SHA512 7c59dc59e59e3ee0172b2a52214cd8dd83383168fe0f145870d128b900a012cfa38c2f1ae85769c226d941ca1a764f93ec3bf353da896537ae1be5b6bc17e6c6
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Copyright 1999-2018 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="5"
|
||||
|
@ -62,7 +62,7 @@ src_install() {
|
|||
fperms 700 /var/consoles
|
||||
|
||||
## add startup and sample config
|
||||
newinitd "${FILESDIR}"/conserver.initd-r1 conserver
|
||||
newinitd "${FILESDIR}"/conserver.initd conserver
|
||||
newconfd "${FILESDIR}"/conserver.confd conserver
|
||||
|
||||
dodir /etc/conserver
|
||||
|
|
100
app-admin/conserver/conserver-8.2.2.ebuild
Normal file
100
app-admin/conserver/conserver-8.2.2.ebuild
Normal file
|
@ -0,0 +1,100 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit autotools pam ssl-cert
|
||||
|
||||
DESCRIPTION="Serial Console Manager"
|
||||
HOMEPAGE="https://www.conserver.com"
|
||||
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD BSD-with-attribution"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
|
||||
IUSE="debug ipv6 freeipmi kerberos libressl pam ssl test tcpd"
|
||||
|
||||
DEPEND="debug? ( dev-libs/dmalloc:= )
|
||||
freeipmi? ( sys-libs/freeipmi:= )
|
||||
kerberos? (
|
||||
virtual/krb5
|
||||
net-libs/libgssglue
|
||||
)
|
||||
ssl? (
|
||||
!libressl? ( dev-libs/openssl:0= )
|
||||
libressl? ( dev-libs/libressl:0= )
|
||||
)
|
||||
pam? ( virtual/pam )
|
||||
tcpd? ( sys-apps/tcp-wrappers )
|
||||
"
|
||||
RDEPEND="${DEPEND}
|
||||
pam? ( sys-auth/pambase )"
|
||||
|
||||
DOCS=( CHANGES FAQ PROTOCOL README conserver/Sun-serial contrib/maketestcerts)
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${P}-time-argument.patch"
|
||||
"${FILESDIR}/${P}-ssl-compat.patch"
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
sed -e '/^INSTALL_PROGRAM/s:-s::' \
|
||||
-i {console,conserver,autologin,contrib/chat}/Makefile.in || die
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local myconf=(
|
||||
$(use_with debug dmalloc)
|
||||
$(use_with ipv6)
|
||||
$(use_with freeipmi)
|
||||
$(use_with kerberos gssapi)
|
||||
$(use_with ssl openssl)
|
||||
$(use_with pam)
|
||||
$(use_with tcpd libwrap)
|
||||
--with-cffile=conserver/conserver.cf
|
||||
--with-logfile=/var/log/conserver.log
|
||||
--with-master=localhost
|
||||
--with-pidfile=/run/conserver.pid
|
||||
--with-port=7782
|
||||
--with-pwdfile=conserver/conserver.passwd
|
||||
)
|
||||
econf "${myconf[@]}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" exampledir="/usr/share/doc/${PF}/examples" install
|
||||
|
||||
keepdir /var/consoles
|
||||
fowners daemon:daemon /var/consoles
|
||||
fperms 700 /var/consoles
|
||||
|
||||
newinitd "${FILESDIR}"/conserver.initd-r1 conserver
|
||||
newconfd "${FILESDIR}"/conserver.confd-r1 conserver
|
||||
|
||||
dodir /etc/conserver
|
||||
fperms 700 /etc/conserver
|
||||
insinto /etc/conserver
|
||||
newins "${S}"/conserver.cf/conserver.cf conserver.cf.sample
|
||||
newins "${S}"/conserver.cf/conserver.passwd conserver.passwd.sample
|
||||
|
||||
einstalldocs
|
||||
docinto examples
|
||||
dodoc -r conserver.cf/samples/.
|
||||
|
||||
newpamd "${FILESDIR}"/conserver.pam-pambase conserver
|
||||
}
|
||||
|
||||
src_test() {
|
||||
# hangs without -j1
|
||||
emake -j1 test
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if use ssl; then
|
||||
if [[ ! -f "${EROOT}"/etc/ssl/conserver/conserver.key ]]; then
|
||||
install_cert /etc/ssl/conserver/conserver
|
||||
fi
|
||||
fi
|
||||
}
|
40
app-admin/conserver/files/conserver-8.2.2-ssl-compat.patch
Normal file
40
app-admin/conserver/files/conserver-8.2.2-ssl-compat.patch
Normal file
|
@ -0,0 +1,40 @@
|
|||
diff --git a/configure.in b/configure.in
|
||||
index a060811..00b7f8b 100644
|
||||
--- a/configure.in
|
||||
+++ b/configure.in
|
||||
@@ -535,7 +535,7 @@ AC_ARG_WITH(openssl,
|
||||
[LIBS="$LIBS -lssl -lcrypto"
|
||||
AC_MSG_CHECKING(for openssl libraries -lssl and -lcrypto)
|
||||
AC_TRY_LINK([#include <openssl/ssl.h>
|
||||
- ],[SSL_library_init()],
|
||||
+ ],[SSL_CTX_new(NULL)],
|
||||
[AC_MSG_RESULT(yes)
|
||||
cons_with_openssl="YES"
|
||||
AC_DEFINE(HAVE_OPENSSL)
|
||||
diff --git a/conserver/cutil.c b/conserver/cutil.c
|
||||
index af8196c..dcfe333 100644
|
||||
--- a/conserver/cutil.c
|
||||
+++ b/conserver/cutil.c
|
||||
@@ -57,7 +57,9 @@ Bye(int status)
|
||||
{
|
||||
DestroyDataStructures();
|
||||
#if HAVE_OPENSSL
|
||||
+# if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||
ERR_free_strings();
|
||||
+# endif
|
||||
#endif
|
||||
exit(status);
|
||||
}
|
||||
diff --git a/conserver/cutil.h b/conserver/cutil.h
|
||||
index 899da7a..63aef65 100644
|
||||
--- a/conserver/cutil.h
|
||||
+++ b/conserver/cutil.h
|
||||
@@ -7,6 +7,8 @@
|
||||
#include <stdarg.h>
|
||||
#if HAVE_OPENSSL
|
||||
# include <openssl/ssl.h>
|
||||
+# include <openssl/bn.h>
|
||||
+# include <openssl/dh.h>
|
||||
# include <openssl/err.h>
|
||||
# if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||
# define TLS_method SSLv23_method
|
|
@ -0,0 +1,22 @@
|
|||
From 3d9d5509c90524256861dd7cf0b7c0c6fdf5424a Mon Sep 17 00:00:00 2001
|
||||
From: Ed Maste <emaste@freebsd.org>
|
||||
Date: Wed, 10 Oct 2018 12:56:26 -0400
|
||||
Subject: [PATCH] Correct argument type passed to time()
|
||||
|
||||
---
|
||||
conserver/readcfg.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/conserver/readcfg.c b/conserver/readcfg.c
|
||||
index 949b9bf..d5bb90a 100644
|
||||
--- a/conserver/readcfg.c
|
||||
+++ b/conserver/readcfg.c
|
||||
@@ -3116,7 +3116,7 @@ ConsoleAdd(CONSENT *c)
|
||||
pCEmatch->logfilemax = c->logfilemax;
|
||||
if (pCEmatch->logfilemax != (off_t) 0 &&
|
||||
timers[T_ROLL] == (time_t)0)
|
||||
- timers[T_ROLL] = time((time_t)0);
|
||||
+ timers[T_ROLL] = time((time_t *)0);
|
||||
|
||||
SwapStr(&pCEmatch->motd, &c->motd);
|
||||
SwapStr(&pCEmatch->idlestring, &c->idlestring);
|
5
app-admin/conserver/files/conserver.confd-r1
Normal file
5
app-admin/conserver/files/conserver.confd-r1
Normal file
|
@ -0,0 +1,5 @@
|
|||
# Config file for /etc/init.d/conserver
|
||||
# check CONSERVER(8) for details
|
||||
|
||||
#CONSERVER_LOG="/var/log/conserver.log"
|
||||
#CONSERVER_OPTS=""
|
|
@ -1,5 +1,5 @@
|
|||
#!/sbin/openrc-run
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Copyright 1999-2018 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
depend() {
|
||||
|
@ -25,7 +25,7 @@ checkconfig() {
|
|||
start() {
|
||||
checkconfig || return 1
|
||||
ebegin "Starting conserver"
|
||||
start-stop-daemon --start --quiet --exec \
|
||||
start-stop-daemon --start --quiet --pidfile /var/run/conserver.pid --exec \
|
||||
/usr/sbin/conserver -- ${CONSERVER_OPTS} 1>/dev/null
|
||||
eend $? "Failed to start conserver"
|
||||
}
|
||||
|
|
|
@ -1,37 +1,14 @@
|
|||
#!/sbin/openrc-run
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
depend() {
|
||||
need clock
|
||||
need clock localmount
|
||||
use net
|
||||
}
|
||||
|
||||
checkconfig() {
|
||||
if [ ! -e /etc/conserver/conserver.cf ] ; then
|
||||
eerror "You need to create /etc/conserver/conserver.cf first."
|
||||
eerror "A sample is placed there to be renamed and ajusted."
|
||||
eerror "Read the man page or see /usr/share/doc/conserver-<version>/."
|
||||
return 1
|
||||
fi
|
||||
|
||||
if [ ! -e /etc/conserver/conserver.passwd ] ; then
|
||||
eerror "You need to create /etc/conserver/conserver.passwd first."
|
||||
eerror "A sample is placed there to be renamed and ajusted."
|
||||
eerror "Read the man page or see /usr/share/doc/conserver-<version>/."
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
|
||||
start() {
|
||||
checkconfig || return 1
|
||||
ebegin "Starting conserver"
|
||||
start-stop-daemon --start --quiet --pidfile /var/run/conserver.pid --exec \
|
||||
/usr/sbin/conserver -- ${CONSERVER_OPTS} 1>/dev/null
|
||||
eend $? "Failed to start conserver"
|
||||
}
|
||||
|
||||
stop() {
|
||||
ebegin "Stopping conserver"
|
||||
start-stop-daemon --stop --quiet --pidfile /var/run/conserver.pid
|
||||
eend $? "Failed to stop conserver"
|
||||
}
|
||||
command="/usr/sbin/conserver"
|
||||
command_args="-d -L ${CONSERVER_LOG:-/var/log/${RC_SVCNAME}.log} ${CONSERVER_OPTS}"
|
||||
command_background="true"
|
||||
pidfile="/run/${RC_SVCNAME}.pid"
|
||||
required_files="/etc/conserver/${RC_SVCNAME}.cf /etc/conserver/${RC_SVCNAME}.passwd"
|
||||
|
|
|
@ -5,6 +5,10 @@
|
|||
<email>dan@danweeks.net</email>
|
||||
<name>Dan Weeks</name>
|
||||
</maintainer>
|
||||
<maintainer type="person">
|
||||
<email>gyakovlev@gentoo.org</email>
|
||||
<name>Georgy Yakovlev</name>
|
||||
</maintainer>
|
||||
<maintainer type="project">
|
||||
<email>proxy-maint@gentoo.org</email>
|
||||
<name>Proxy Maintainers</name>
|
||||
|
@ -22,4 +26,7 @@
|
|||
that, assuming you have a network connection, you can interact with any
|
||||
of the equipment from home or wherever.
|
||||
</longdescription>
|
||||
<use>
|
||||
<flag name="freeipmi">Compile in FreeIPMI support via sys-libs/freeipmi</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
|
|
|
@ -1,2 +1,5 @@
|
|||
DIST filebeat-5.6.13.tar.gz 18212575 BLAKE2B a0b8810523cecd1c6c87a69832c92b39fdc4cbe199eeae3c837f60b5057915e4d1ffb0fd371b3296cea398a11135b9d8da147451997514c85447722d086b8739 SHA512 fd572666858f1aeeede9e1b2074668d0bd691f58d51acd7955a3203b27d3ee850784a39e47941a570a833926a4109645eb98c24b49263276d1df475578c17efa
|
||||
DIST filebeat-6.3.2.tar.gz 20923316 BLAKE2B 70ac7e574f94a6141a7c6a1bd0af45ddbda3d01d6ea006c90ea341d2df03cac320d53496833cace3b394b9433251ea68a248dafdc8e28a85a6014314d5a2f3c4 SHA512 3d6ed03c9286bc7784444ad979b1398fcd70d870be184f912202ee5fab7c0ff23df639f445ec14cfcfd4d41ef648f33e88c2959f3c5f966fd3986884a223623a
|
||||
DIST filebeat-6.4.3.tar.gz 22085261 BLAKE2B 466580ba371d02bd0b51bd80f0e8d9766f2af1d371f88cd01144a648cd8d5488ca54447e925e9014790a836009d76be9eec9ef9b14a102287d3f4a71b852d20d SHA512 c28d9939c2082b586ddf744b4e18427096290987efd74f7ea03d2632a1cdcbc5dd2b043ee7ceeb0457098faeb52abbac57652077c518112fb65858954ee27f34
|
||||
DIST filebeat-6.5.4.tar.gz 25286147 BLAKE2B c3eca03c8e8e2b863918f3fe65bdea46b351739569f5570daac3e321963e98190331c5bf99c2451db5faa615620e023d2fd9c73060d4d775392a86a2f5578d80 SHA512 a48b9ae267ec80c1b45e4e07644f8080f8ba280da5c3543022b73472eb70de9d836cfffd387e576298becf9313d2cfa67d835158442f163b1a1bd0e72df31297
|
||||
DIST filebeat-6.6.1.tar.gz 29108620 BLAKE2B 21dbe189dcf91efe6170574e3cff858cca4094936fbda54a343f66e61a5f0cd7d29e71d547c34ddd78776283d13e48926dd84925eed58ca07cc7bedf216c9064 SHA512 9c7646efa8aa44c2ae1cbcf85204749bc57491aad075d3ca283cd75a1b3a93d922169603407b2ea111e7e3abe0a43ce26fabccfe93d56a4232bd63e2b2e8b24a
|
||||
|
|
66
app-admin/filebeat/filebeat-6.3.2.ebuild
Normal file
66
app-admin/filebeat/filebeat-6.3.2.ebuild
Normal file
|
@ -0,0 +1,66 @@
|
|||
# Copyright 1999-2018 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
DESCRIPTION="Lightweight log shipper for Logstash and Elasticsearch"
|
||||
HOMEPAGE="https://www.elastic.co/products/beats"
|
||||
SRC_URI="https://github.com/elastic/beats/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~x86"
|
||||
RESTRICT="test"
|
||||
|
||||
DEPEND=">=dev-lang/go-1.10.3"
|
||||
RDEPEND="!app-admin/filebeat-bin"
|
||||
|
||||
# Do not complain about CFLAGS etc since go projects do not use them.
|
||||
QA_FLAGS_IGNORED='.*'
|
||||
|
||||
S="${WORKDIR}/src/github.com/elastic/beats"
|
||||
|
||||
src_unpack() {
|
||||
mkdir -p "${S%/*}" || die
|
||||
default
|
||||
mv beats-${PV} "${S}" || die
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# avoid Elastic license
|
||||
rm -r x-pack || die
|
||||
|
||||
# use ${PV} instead of git commit id
|
||||
sed -i "s/\(COMMIT_ID=\).*/\1${PV}/g" "${S}/libbeat/scripts/Makefile" || die
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
GOPATH="${WORKDIR}" emake -C "${S}/filebeat"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
keepdir /var/{lib,log}/${PN}
|
||||
|
||||
fperms 0750 /var/{lib,log}/${PN}
|
||||
|
||||
newconfd "${FILESDIR}/${PN}.confd" ${PN}
|
||||
newinitd "${FILESDIR}/${PN}.initd.1" ${PN}
|
||||
|
||||
docinto examples
|
||||
dodoc ${PN}/{filebeat.yml,filebeat.reference.yml}
|
||||
|
||||
dobin filebeat/filebeat
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if [[ -n "${REPLACING_VERSIONS}" ]]; then
|
||||
elog "Please read the migration guide at:"
|
||||
elog "https://www.elastic.co/guide/en/beats/libbeat/$(ver_cut 1-2)/upgrading.html"
|
||||
elog ""
|
||||
fi
|
||||
|
||||
elog "Example configurations:"
|
||||
elog "${EROOT}/usr/share/doc/${PF}/examples"
|
||||
}
|
66
app-admin/filebeat/filebeat-6.4.3.ebuild
Normal file
66
app-admin/filebeat/filebeat-6.4.3.ebuild
Normal file
|
@ -0,0 +1,66 @@
|
|||
# Copyright 1999-2018 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
DESCRIPTION="Lightweight log shipper for Logstash and Elasticsearch"
|
||||
HOMEPAGE="https://www.elastic.co/products/beats"
|
||||
SRC_URI="https://github.com/elastic/beats/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
RESTRICT="test"
|
||||
|
||||
DEPEND=">=dev-lang/go-1.10.3"
|
||||
RDEPEND="!app-admin/filebeat-bin"
|
||||
|
||||
# Do not complain about CFLAGS etc since go projects do not use them.
|
||||
QA_FLAGS_IGNORED='.*'
|
||||
|
||||
S="${WORKDIR}/src/github.com/elastic/beats"
|
||||
|
||||
src_unpack() {
|
||||
mkdir -p "${S%/*}" || die
|
||||
default
|
||||
mv beats-${PV} "${S}" || die
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# avoid Elastic license
|
||||
rm -r x-pack || die
|
||||
|
||||
# use ${PV} instead of git commit id
|
||||
sed -i "s/\(COMMIT_ID=\).*/\1${PV}/g" "${S}/libbeat/scripts/Makefile" || die
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
GOPATH="${WORKDIR}" emake -C "${S}/filebeat"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
keepdir /var/{lib,log}/${PN}
|
||||
|
||||
fperms 0750 /var/{lib,log}/${PN}
|
||||
|
||||
newconfd "${FILESDIR}/${PN}.confd" ${PN}
|
||||
newinitd "${FILESDIR}/${PN}.initd.1" ${PN}
|
||||
|
||||
docinto examples
|
||||
dodoc ${PN}/{filebeat.yml,filebeat.reference.yml}
|
||||
|
||||
dobin filebeat/filebeat
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if [[ -n "${REPLACING_VERSIONS}" ]]; then
|
||||
elog "Please read the migration guide at:"
|
||||
elog "https://www.elastic.co/guide/en/beats/libbeat/$(ver_cut 1-2)/upgrading.html"
|
||||
elog ""
|
||||
fi
|
||||
|
||||
elog "Example configurations:"
|
||||
elog "${EROOT}/usr/share/doc/${PF}/examples"
|
||||
}
|
66
app-admin/filebeat/filebeat-6.5.4.ebuild
Normal file
66
app-admin/filebeat/filebeat-6.5.4.ebuild
Normal file
|
@ -0,0 +1,66 @@
|
|||
# Copyright 1999-2018 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
DESCRIPTION="Lightweight log shipper for Logstash and Elasticsearch"
|
||||
HOMEPAGE="https://www.elastic.co/products/beats"
|
||||
SRC_URI="https://github.com/elastic/beats/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
RESTRICT="test"
|
||||
|
||||
DEPEND=">=dev-lang/go-1.11.2"
|
||||
RDEPEND="!app-admin/filebeat-bin"
|
||||
|
||||
# Do not complain about CFLAGS etc since go projects do not use them.
|
||||
QA_FLAGS_IGNORED='.*'
|
||||
|
||||
S="${WORKDIR}/src/github.com/elastic/beats"
|
||||
|
||||
src_unpack() {
|
||||
mkdir -p "${S%/*}" || die
|
||||
default
|
||||
mv beats-${PV} "${S}" || die
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# avoid Elastic license
|
||||
rm -r x-pack || die
|
||||
|
||||
# use ${PV} instead of git commit id
|
||||
sed -i "s/\(COMMIT_ID=\).*/\1${PV}/g" "${S}/libbeat/scripts/Makefile" || die
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
GOPATH="${WORKDIR}" emake -C "${S}/filebeat"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
keepdir /var/{lib,log}/${PN}
|
||||
|
||||
fperms 0750 /var/{lib,log}/${PN}
|
||||
|
||||
newconfd "${FILESDIR}/${PN}.confd" ${PN}
|
||||
newinitd "${FILESDIR}/${PN}.initd.1" ${PN}
|
||||
|
||||
docinto examples
|
||||
dodoc ${PN}/{filebeat.yml,filebeat.reference.yml}
|
||||
|
||||
dobin filebeat/filebeat
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if [[ -n "${REPLACING_VERSIONS}" ]]; then
|
||||
elog "Please read the migration guide at:"
|
||||
elog "https://www.elastic.co/guide/en/beats/libbeat/$(ver_cut 1-2)/upgrading.html"
|
||||
elog ""
|
||||
fi
|
||||
|
||||
elog "Example configurations:"
|
||||
elog "${EROOT}/usr/share/doc/${PF}/examples"
|
||||
}
|
|
@ -2,3 +2,4 @@ DIST fluentd-1.2.6.gem 434176 BLAKE2B 05fb0a29def48b673f458a19eb2662b0e447d94928
|
|||
DIST fluentd-1.3.1.gem 437760 BLAKE2B 59afdadc2d67e30d35df2f33c169e9f2cbfd44ac6b7497b025fd9229921f91ac37ce8b6f80f37df26a03e5062ce2f5187156a70302ca11f9a7d9db9cfccebf9c SHA512 84351148809332c9a703243416004f18d0470cafc04cf63de7c52d9b6da18f1c6f2de0682ff1d5283f28013707fcfe24cbcf67aebc3be91090c4d5cca80ec2cc
|
||||
DIST fluentd-1.3.2.gem 438272 BLAKE2B c7a239928e251b84217cba4181e81f58dda42065c07c254ec5ed1012f8ebd98323cfbd671d5e9f940025d049c67b6dedd4f0feb9a079291e83f465e107e105d3 SHA512 8357ae88ed028778f6c7ae3dca051b32840bcf8cd344292e1fd3d203dae85e32d8263dea72d657010d803bb36d78d27a8441a8a7edf49439609041acac39f967
|
||||
DIST fluentd-1.3.3.gem 438784 BLAKE2B 186aa4af59707c6a68a6f82b94b233e3f52eb11745ff4ce7f942a4fb1f8516cc966e14f541a23dfdfda72ddea058e19d1b8184d0c40bf92ce4cd48e5735946a9 SHA512 b3348939d72b07d424a8d98f0d817e72d55918be9ac4ef5f456a3c44ac1ca28944b63c943bf2bb230b58793a33c1ca12304cebed15827a3f6e32f2ae3b68f0dd
|
||||
DIST fluentd-1.4.0.gem 440832 BLAKE2B 8f25cc6ca4ceb164156fe3ff3a14a18109f0943587cc5cad49185ee442e3cf381fa6859e36c8df94241f8a9922102fd479e39b08c394c46d6edc7bcf58abecee SHA512 e817cc128a29e5c30c40e08985f84d3a8e713cdcfd0e05af7d08d3b7dd5cb6810b85c455a3c425bd84775cdc060e74530dd264bf5fe354b5038c3a2d779d42c6
|
||||
|
|
58
app-admin/fluentd/fluentd-1.4.0.ebuild
Normal file
58
app-admin/fluentd/fluentd-1.4.0.ebuild
Normal file
|
@ -0,0 +1,58 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
USE_RUBY="ruby23 ruby24 ruby25"
|
||||
|
||||
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
|
||||
|
||||
inherit ruby-fakegem user
|
||||
|
||||
DESCRIPTION="data collector and unified logging layer (project under CNCF)"
|
||||
HOMEPAGE="https://www.fluentd.org"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
ruby_add_rdepend "
|
||||
>=dev-ruby/msgpack-0.7.0
|
||||
>=dev-ruby/yajl-ruby-1.0
|
||||
>=dev-ruby/coolio-1.4.5
|
||||
>=dev-ruby/serverengine-2.0.4
|
||||
>=dev-ruby/http_parser_rb-0.5.1
|
||||
>=dev-ruby/sigdump-0.2.2
|
||||
>=dev-ruby/tzinfo-1.0
|
||||
>=dev-ruby/strptime-0.2.2"
|
||||
|
||||
pkg_setup() {
|
||||
enewgroup ${PN}
|
||||
enewuser ${PN} -1 -1 -1 ${PN}
|
||||
}
|
||||
|
||||
all_ruby_prepare() {
|
||||
sed -i \
|
||||
-e '/tzinfo-data/d' \
|
||||
-e '/dig_rb/d' \
|
||||
"${PN}".gemspec || die "'sed failed"
|
||||
}
|
||||
|
||||
all_ruby_install() {
|
||||
all_fakegem_install
|
||||
keepdir /var/log/fluentd
|
||||
fowners fluentd:adm /var/log/fluentd
|
||||
insinto /etc/fluent
|
||||
doins fluent.conf
|
||||
newconfd "${FILESDIR}"/${PN}.confd ${PN}
|
||||
newinitd "${FILESDIR}"/${PN}.initd ${PN}
|
||||
insinto /etc/logrotate.d
|
||||
newins "${FILESDIR}"/${PN}.logrotate ${PN}
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if [[ -z "${REPLACING_VERSIONS}" ]]; then
|
||||
elog "A default configuration file has been installed in"
|
||||
elog "${EROOT}etc/fluent/fluent.conf. You will need to edit"
|
||||
elog "this file to match your configuration."
|
||||
fi
|
||||
}
|
Binary file not shown.
|
@ -1 +1,2 @@
|
|||
DIST cdemu-daemon-3.2.1.tar.bz2 82426 BLAKE2B 282b1a62ca3a770e709ff31ee7b72ed9f5e102c5f318a765a99421c93881e9ecacfdc5867af494e69dddda40603c8eb6cc8904a7c82fec004a6d5644a28a9f87 SHA512 399dbb818de8a550bd31784a5a7f0adb9d2e35d922ba71f341df81d20fd7e5ebaba5f31db1554caca17919325773f9ec6bb3d5ae99afa5d6eaf5b22142e010ee
|
||||
DIST cdemu-daemon-3.2.2.tar.bz2 82366 BLAKE2B d21436a5dbf1c6d953aa7ceb58e5d4580931391ea407c45de8f7c7154c181aef76535833bf02999d77d3a9e0c624db1124a9d333d028e206844a1256b3c5dde0 SHA512 4010bad27d5f595d20e1666700d32c2fb3f943f2e50645317bcc8fbbbba58cd61b3f6d3276e91fff55f449e44291abc776a56ded7c4f0bb7901ac247da72d7fe
|
||||
|
|
42
app-cdr/cdemu-daemon/cdemu-daemon-3.2.2.ebuild
Normal file
42
app-cdr/cdemu-daemon/cdemu-daemon-3.2.2.ebuild
Normal file
|
@ -0,0 +1,42 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="6"
|
||||
|
||||
inherit cmake-utils
|
||||
|
||||
DESCRIPTION="Daemon of the CDEmu optical media image mounting suite"
|
||||
HOMEPAGE="http://cdemu.org"
|
||||
SRC_URI="mirror://sourceforge/cdemu/${P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2+"
|
||||
SLOT="0/7" # subslot = CDEMU_DAEMON_INTERFACE_VERSION_MAJOR in CMakeLists.txt
|
||||
KEYWORDS="~amd64 ~hppa ~x86"
|
||||
IUSE=""
|
||||
|
||||
COMMON_DEPEND=">=dev-libs/glib-2.38:2
|
||||
>=dev-libs/libmirage-3.2.0:=
|
||||
>=media-libs/libao-0.8.0:="
|
||||
DEPEND="${COMMON_DEPEND}
|
||||
dev-util/intltool
|
||||
sys-devel/gettext
|
||||
virtual/pkgconfig"
|
||||
RDEPEND="${COMMON_DEPEND}
|
||||
sys-apps/dbus
|
||||
>=sys-fs/vhba-20130607"
|
||||
|
||||
DOCS=( AUTHORS README )
|
||||
|
||||
pkg_postinst() {
|
||||
elog "You will need to load the vhba module to use cdemu devices:"
|
||||
elog " # modprobe vhba"
|
||||
elog "To automatically load the vhba module at boot time, edit your"
|
||||
elog "/etc/conf.d/modules file."
|
||||
|
||||
if [[ -e "${ROOT}etc/conf.d/cdemud" ]]; then
|
||||
elog
|
||||
elog "${PN} no longer installs an init.d service; instead, it is"
|
||||
elog "automatically activated when needed via dbus."
|
||||
elog "You can therefore remove ${ROOT%/}/etc/conf.d/cdemud"
|
||||
fi
|
||||
}
|
|
@ -1 +1,2 @@
|
|||
DIST cdemu-client-3.2.0.tar.bz2 43588 BLAKE2B 0f75bed1ce2a715bb7acf227ebd3da8b80cf6418e28b0d352f294121c1f67acb8c6bab5f5dc5c768150ad46830b823d66f1940887c66225d20b41827c1377d31 SHA512 778f2ecac828ba278d0ded875c7bab2415f1c1acb62f4030eaf161376869939c48bc16a6d660326d9aacd2af745ef9dc9158f922a72aa8ccbd47f05ce41b8cd7
|
||||
DIST cdemu-client-3.2.1.tar.bz2 43584 BLAKE2B d34c09203b7b4e70161d62aee48d531b083952174fd2357bf0fc7b69a0fd59200bedb9ca87fe2d2c18c953979c84e9db3fec4d5fb500375f0bcc155dcaf5cedb SHA512 913c26754d16c339d7ddb4e00cc7d5b754ad6cc7f1a156c9448b51ed09468cf9e8a2bc74ed123a621278d2ad281e447d33ee06c3416bc1d0d2e6c2becd539154
|
||||
|
|
53
app-cdr/cdemu/cdemu-3.2.1.ebuild
Normal file
53
app-cdr/cdemu/cdemu-3.2.1.ebuild
Normal file
|
@ -0,0 +1,53 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="6"
|
||||
|
||||
PYTHON_COMPAT=( python3_{4,5,6,7} )
|
||||
|
||||
inherit bash-completion-r1 cmake-utils python-single-r1 xdg-utils
|
||||
|
||||
DESCRIPTION="Command-line tool for controlling cdemu-daemon"
|
||||
HOMEPAGE="http://cdemu.org"
|
||||
SRC_URI="mirror://sourceforge/cdemu/cdemu-client-${PV}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~hppa ~x86"
|
||||
IUSE="+cdemu-daemon"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
RDEPEND="${PYTHON_DEPS}
|
||||
dev-python/pygobject:3[${PYTHON_USEDEP}]
|
||||
cdemu-daemon? ( app-cdr/cdemu-daemon:0/7 )"
|
||||
DEPEND="
|
||||
dev-util/desktop-file-utils
|
||||
>=dev-util/intltool-0.21
|
||||
>=sys-devel/gettext-0.18
|
||||
virtual/pkgconfig"
|
||||
|
||||
S=${WORKDIR}/cdemu-client-${PV}
|
||||
|
||||
DOCS=( AUTHORS README )
|
||||
|
||||
src_prepare() {
|
||||
cmake-utils_src_prepare
|
||||
|
||||
python_fix_shebang src/cdemu
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DPOST_INSTALL_HOOKS=OFF
|
||||
-DCMAKE_INSTALL_COMPLETIONSDIR="$(get_bashcompdir)"
|
||||
)
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
xdg_desktop_database_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
xdg_desktop_database_update
|
||||
}
|
|
@ -1 +1,2 @@
|
|||
DIST gcdemu-3.2.0.tar.bz2 52144 BLAKE2B f349e4482905b0ac59bce5d6af74000e05ff9b7257c7ec8755106ac8fe316d59d19de8b72705fd9cccfa888d170776667ee07fe90311a81e78f251fee85601ee SHA512 61a1775c874c9c3604ce88758039ef80b262463ae180e791eb545811fa2176e4bf07c4dbcd3be5f17d446fdef92317a0ff64ce8d27f26aeaeee9d8134b6a95ea
|
||||
DIST gcdemu-3.2.1.tar.bz2 52231 BLAKE2B f6b0025f6c5e79fe7312bf15b467327152e561db33f6190847e4e702cb98ff8005b37fe997c721b5c76cd64d64bafef1c015a9151c0ee200c52efcb849c93dba SHA512 c2da75d985981ccd0b44f210745670501fecd0ae7c60bde783fc5f91ab4c629c6eab9e8b35df906b5669b6518d3bdf36c5814b513c0f3e2d703659d23df1c82e
|
||||
|
|
54
app-cdr/gcdemu/gcdemu-3.2.1.ebuild
Normal file
54
app-cdr/gcdemu/gcdemu-3.2.1.ebuild
Normal file
|
@ -0,0 +1,54 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="6"
|
||||
|
||||
PYTHON_COMPAT=( python3_{4,5,6,7} )
|
||||
|
||||
inherit cmake-utils gnome2-utils python-single-r1 xdg-utils
|
||||
|
||||
DESCRIPTION="Gtk+ GUI for controlling cdemu-daemon"
|
||||
HOMEPAGE="http://cdemu.org/"
|
||||
SRC_URI="mirror://sourceforge/cdemu/${P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
# librsvg for pixbuf-loader
|
||||
RDEPEND="${PYTHON_DEPS}
|
||||
app-cdr/cdemu-daemon:0/7
|
||||
dev-python/pygobject:3[${PYTHON_USEDEP}]
|
||||
gnome-base/librsvg:2
|
||||
x11-libs/gdk-pixbuf[introspection]
|
||||
x11-libs/gtk+:3[introspection]
|
||||
x11-libs/libnotify[introspection]"
|
||||
DEPEND="
|
||||
dev-util/desktop-file-utils
|
||||
>=dev-util/intltool-0.21
|
||||
sys-devel/gettext
|
||||
virtual/pkgconfig"
|
||||
|
||||
DOCS=( AUTHORS README )
|
||||
|
||||
src_prepare() {
|
||||
cmake-utils_src_prepare
|
||||
python_fix_shebang src/gcdemu
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=( -DPOST_INSTALL_HOOKS=OFF )
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
xdg_desktop_database_update
|
||||
gnome2_schemas_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
xdg_desktop_database_update
|
||||
gnome2_schemas_update
|
||||
}
|
Binary file not shown.
34
app-metrics/prometheus/files/prometheus.initd
Normal file
34
app-metrics/prometheus/files/prometheus.initd
Normal file
|
@ -0,0 +1,34 @@
|
|||
#!/sbin/openrc-run
|
||||
# Copyright 2016-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
description="Prometheus monitoring system and time series database"
|
||||
pidfile=/var/run/${RC_SVCNAME}.pid
|
||||
user=${user:-${RC_SVCNAME}}
|
||||
group=${group:-${RC_SVCNAME}}
|
||||
command_user=${user}:${group}
|
||||
|
||||
command="/usr/bin/prometheus"
|
||||
command_args="${command_args:---config.file=/etc/prometheus/prometheus.yml --storage.tsdb.path=/var/lib/prometheus/data}"
|
||||
command_background="true"
|
||||
error_log=/var/log/${RC_SVCNAME}/${RC_SVCNAME}.log
|
||||
output_log=/var/log/${RC_SVCNAME}/${RC_SVCNAME}.log
|
||||
|
||||
extra_started_commands="reload"
|
||||
|
||||
depend() {
|
||||
after net
|
||||
}
|
||||
|
||||
reload() {
|
||||
ebegin "Reloading configuration for ${RC_SVCNAME}"
|
||||
case "$supervisor" in
|
||||
supervise-daemon)
|
||||
supervise-daemon ${RC_SVCNAME} --signal HUP
|
||||
;;
|
||||
*)
|
||||
start-stop-daemon --signal HUP --pidfile "${pidfile}"
|
||||
;;
|
||||
esac
|
||||
eend $? "Failed to reload ${RC_SVCNAME}"
|
||||
}
|
68
app-metrics/prometheus/prometheus-2.7.2-r1.ebuild
Normal file
68
app-metrics/prometheus/prometheus-2.7.2-r1.ebuild
Normal file
|
@ -0,0 +1,68 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
inherit user golang-build golang-vcs-snapshot
|
||||
|
||||
EGO_PN="github.com/prometheus/prometheus"
|
||||
MY_PV=v${PV/_rc/-rc.}
|
||||
PROMETHEUS_COMMIT="82f98c8"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
DESCRIPTION="Prometheus monitoring system and time series database"
|
||||
HOMEPAGE="https://github.com/prometheus/prometheus"
|
||||
SRC_URI="https://${EGO_PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
>=dev-lang/go-1.10
|
||||
dev-util/promu"
|
||||
|
||||
PROMETHEUS_HOME="/var/lib/prometheus"
|
||||
|
||||
RESTRICT="test"
|
||||
|
||||
pkg_setup() {
|
||||
enewgroup prometheus
|
||||
enewuser prometheus -1 -1 "${PROMETHEUS_HOME}" prometheus
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
sed -i -e "s/{{.Revision}}/${PROMETHEUS_COMMIT}/" src/${EGO_PN}/.promu.yml || die
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
pushd src/${EGO_PN} || die
|
||||
GO111MODULE=on GOPATH="${S}" GOCACHE="${T}/go-cache" promu build -v || die
|
||||
popd || die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
pushd src/${EGO_PN} || die
|
||||
dobin promtool prometheus
|
||||
dodoc -r {documentation,{README,CHANGELOG,CONTRIBUTING}.md}
|
||||
insinto /etc/prometheus
|
||||
doins documentation/examples/prometheus.yml
|
||||
insinto /usr/share/prometheus
|
||||
doins -r console_libraries consoles
|
||||
dosym ../../usr/share/prometheus/console_libraries /etc/prometheus/console_libraries
|
||||
dosym ../../usr/share/prometheus/consoles /etc/prometheus/consoles
|
||||
popd || die
|
||||
|
||||
newinitd "${FILESDIR}"/prometheus.initd prometheus
|
||||
newconfd "${FILESDIR}"/prometheus.confd prometheus
|
||||
keepdir /var/log/prometheus /var/lib/prometheus
|
||||
fowners prometheus:prometheus /var/log/prometheus /var/lib/prometheus
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if has_version '<net-analyzer/prometheus-2.0.0_rc0'; then
|
||||
ewarn "Old prometheus 1.x TSDB won't be converted to the new prometheus 2.0 format"
|
||||
ewarn "Be aware that the old data currently cannot be accessed with prometheus 2.0"
|
||||
ewarn "This release requires a clean storage directory and is not compatible with"
|
||||
ewarn "files created by previous beta releases"
|
||||
fi
|
||||
}
|
Binary file not shown.
|
@ -1,32 +0,0 @@
|
|||
From ef33db45a0c1d462411d4ced1857a322c0ab28f6 Mon Sep 17 00:00:00 2001
|
||||
From: Zac Medico <zmedico@gentoo.org>
|
||||
Date: Thu, 23 Jun 2016 23:22:41 -0700
|
||||
Subject: repoman: skip QA checks in manifest mode (bug 586864)
|
||||
|
||||
The relevent Scanner loop control logic broke in commit 4062c69dc27a
|
||||
because it was relying on the return value from the Manifest module's
|
||||
"check" method.
|
||||
|
||||
Fixes: 4062c69dc27a ("repoman: Move manifest generation to modules/commit/manifest.py")
|
||||
X-Gentoo-Bug: 586864
|
||||
X-Gentoo-Bug-url: https://bugs.gentoo.org/show_bug.cgi?id=586864
|
||||
---
|
||||
pym/repoman/scanner.py | 2 ++
|
||||
1 file changed, 2 insertions(+)
|
||||
|
||||
diff --git a/pym/repoman/scanner.py b/pym/repoman/scanner.py
|
||||
index d7cd81f..8999751 100644
|
||||
--- a/pym/repoman/scanner.py
|
||||
+++ b/pym/repoman/scanner.py
|
||||
@@ -294,6 +294,8 @@ class Scanner(object):
|
||||
|
||||
if self.generate_manifest:
|
||||
manifest.Manifest(**self.kwargs).update_manifest(checkdir)
|
||||
+ if self.options.mode == 'manifest':
|
||||
+ continue
|
||||
checkdirlist = os.listdir(checkdir)
|
||||
|
||||
dynamic_data = {
|
||||
--
|
||||
cgit v0.12
|
||||
|
Binary file not shown.
|
@ -11,7 +11,7 @@ SRC_URI="https://github.com/LMDB/lmdb/archive/LMDB_${PV}.tar.gz"
|
|||
|
||||
LICENSE="OPENLDAP"
|
||||
SLOT="0/${PV}"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
||||
IUSE="static-libs"
|
||||
|
||||
DEPEND=""
|
||||
|
|
|
@ -9,4 +9,4 @@ DIST mariadb-10.3.12.tar.gz 70666408 BLAKE2B 90e734a5617e44e2c273a1cd22ed2f81493
|
|||
DIST mariadb-5.5.63.tar.gz 45946425 BLAKE2B bddfd67d8393ec22c4bc8d7dab2838825394636bd690c04574bdc4da84fbf6c779fcae7f6be5d596458baa732cb5278475f308f03df083cdfcecffc486950d81 SHA512 4699d8af2210e12d0eea659a4d3fd4bfa68ce11a38cffaf939a96cb7a1fe64dd0827d39c3a0a36fa7cc1981a804a9af7a6d5cfaf23a8cfc8440e54c0163c2acb
|
||||
DIST mysql-extras-20180809-1700Z.tar.bz2 322999 BLAKE2B 8b5feb32085dc35b2f68dae985b2d266c4eaa0e956b490050a2df04bbff99bf8623b67e75af9326d84e3ad625c4d86b0d21d23c9a96df5a0c9cd5ed730958970 SHA512 fbd7af9284bbf09d55f128361e7cc52d94f24ac491aac800cd6d61f2e444aeca66a4d5e6ae94c2fb4044e00cec9b232bae9a76a229f87f19d90b7aecf70792ec
|
||||
DIST mysql-extras-20181104-2252Z.tar.bz2 328613 BLAKE2B c869dbdd8eb8ab6706b52815fae88e0789b955b9d3e89eac305e6de6e1bc9e78ea10ac58efeac0d6478c7f83587910834e9b4c44e3621224f006daae44dc2bf3 SHA512 e0dff23aa6420a9cfcf2f60464381d4b08194759dcd96910cdf94075fa71e90b74fa3dae700f279f421fee68315af37e47054c9422adeb6cc757fa968a1b65bf
|
||||
DIST mysql-extras-20181211-1735Z.tar.bz2 330779 BLAKE2B 4a41b9067a8b8bc5b595ff8dfeaa20d6577083ad1f6a0d1b56d29663cd436abc611a2ff394fafb8d466771c8676e2019a415554b830f20828ace31eb5b7e082a SHA512 03db4b1b483395eeba57d049c10a07ef50b26ba97f3fad74aa6a19f8835aea60106bbc86dea2a168ec613d9b2caa016240d8d888e42823d383fa3466f8b262d4
|
||||
DIST mysql-extras-20190305-2052Z.tar.bz2 331304 BLAKE2B 1d2c35a961159fa5ce9ee6699fce943f5a5b5cf60b11c9bb4bcccee4943f4508a9eb6d01050c642353ac592ce1a6b421abf2a1bebc706c44c4c8a36aa698ec43 SHA512 ae63403320e010acbb92f8aec6da8ed4f267cef0bad37147d594076fd94571de7f98bfc2afbe94af5d716f58d57696fd958b1e13e20e87052f252ed4a188cd3c
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="6"
|
||||
MY_EXTRAS_VER="20181104-2252Z"
|
||||
MY_EXTRAS_VER="20190305-2052Z"
|
||||
SUBSLOT="18"
|
||||
|
||||
JAVA_PKG_OPT_USE="jdbc"
|
|
@ -2,7 +2,7 @@
|
|||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="6"
|
||||
MY_EXTRAS_VER="20181211-1735Z"
|
||||
MY_EXTRAS_VER="20190305-2052Z"
|
||||
SUBSLOT="18"
|
||||
|
||||
JAVA_PKG_OPT_USE="jdbc"
|
|
@ -2,7 +2,7 @@
|
|||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="6"
|
||||
MY_EXTRAS_VER="20181211-1735Z"
|
||||
MY_EXTRAS_VER="20190305-2052Z"
|
||||
SUBSLOT="18"
|
||||
|
||||
JAVA_PKG_OPT_USE="jdbc"
|
||||
|
@ -60,7 +60,7 @@ fi
|
|||
|
||||
PATCHES=(
|
||||
"${MY_PATCH_DIR}"/20015_all_mariadb-pkgconfig-location.patch
|
||||
"${MY_PATCH_DIR}"/20018_all_mariadb-10.2.16-without-clientlibs-tools.patch
|
||||
"${MY_PATCH_DIR}"/20018_all_mariadb-10.3.12-without-clientlibs-tools.patch
|
||||
"${MY_PATCH_DIR}"/20024_all_mariadb-10.2.6-mysql_st-regression.patch
|
||||
"${MY_PATCH_DIR}"/20025_all_mariadb-10.2.6-gssapi-detect.patch
|
||||
"${MY_PATCH_DIR}"/20035_all_mariadb-10.3-atomic-detection.patch
|
194
dev-db/mysql-init-scripts/files/init.d-2.3
Normal file
194
dev-db/mysql-init-scripts/files/init.d-2.3
Normal file
|
@ -0,0 +1,194 @@
|
|||
#!/sbin/openrc-run
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
extra_commands="checkconfig"
|
||||
extra_stopped_commands="bootstrap_galera"
|
||||
|
||||
description_checkconfig="Verify the server's configuration"
|
||||
description_boostrap_galera="Start a new Galera cluster with this server as the initial node"
|
||||
|
||||
depend() {
|
||||
use net.lo
|
||||
# localmount needed for $basedir
|
||||
need localmount
|
||||
# This service has its own timeout and may need to wait for repairs
|
||||
# or remote synchronization
|
||||
keyword -timeout
|
||||
}
|
||||
|
||||
get_config() {
|
||||
my_print_defaults --defaults-file="$1" mysqld server mariadb |
|
||||
sed -n -e "s/^--$2=//p"
|
||||
}
|
||||
|
||||
mysql_svcname() {
|
||||
local ebextra=
|
||||
case "${SVCNAME}" in
|
||||
mysql*) ;;
|
||||
*) ebextra=" (mysql)" ;;
|
||||
esac
|
||||
echo "${SVCNAME}${ebextra}"
|
||||
}
|
||||
|
||||
stringContain() { [ -z "${2##*$1*}" ] && [ -z "$1" -o -n "$2" ]; }
|
||||
|
||||
bootstrap_galera() {
|
||||
MY_ARGS="--wsrep-new-cluster ${MY_ARGS}"
|
||||
mark_service_starting
|
||||
if start ; then
|
||||
mark_service_started
|
||||
return 0
|
||||
else
|
||||
mark_service_stopped
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
|
||||
start() {
|
||||
# Check for old conf.d variables that mean migration was not yet done.
|
||||
set | egrep -sq '^(mysql_slot_|MYSQL_BLOG_PID_FILE|STOPTIMEOUT)'
|
||||
rc=$?
|
||||
# Yes, MYSQL_INIT_I_KNOW_WHAT_I_AM_DOING is a hidden variable.
|
||||
# It does have a use in testing, as it is possible to build a config file
|
||||
# that works with both the old and new init scripts simulateously.
|
||||
if [ "${rc}" = 0 -a -z "${MYSQL_INIT_I_KNOW_WHAT_I_AM_DOING}" ]; then
|
||||
eerror "You have not updated your conf.d for the new mysql-init-scripts-2 revamp."
|
||||
eerror "Not proceeding because it may be dangerous."
|
||||
return 1
|
||||
fi
|
||||
|
||||
# Check the config or die
|
||||
if [ ${RC_CMD} != "restart" ] ; then
|
||||
checkconfig || return 1
|
||||
fi
|
||||
|
||||
# Now we can startup
|
||||
ebegin "Starting $(mysql_svcname)"
|
||||
|
||||
MY_CNF="${MY_CNF:-/etc/${SVCNAME}/my.cnf}"
|
||||
|
||||
if [ ! -r "${MY_CNF}" ] ; then
|
||||
eerror "Cannot read the configuration file \`${MY_CNF}'"
|
||||
return 1
|
||||
fi
|
||||
|
||||
# tail -n1 is critical as these we only want the last instance of the option
|
||||
local basedir=$(get_config "${MY_CNF}" basedir | tail -n1)
|
||||
local pidfile=$(get_config "${MY_CNF}" 'pid[_-]file' | tail -n1)
|
||||
local socket=$(get_config "${MY_CNF}" socket | tail -n1)
|
||||
local chroot=$(get_config "${MY_CNF}" chroot | tail -n1)
|
||||
local wsrep="$(get_config "${MY_CNF}" 'wsrep[_-]on' | tail -n1 | awk '{print tolower($0)}')"
|
||||
local wsrep_new=$(get_config "${MY_CNF}" 'wsrep-new-cluster' | tail -n1)
|
||||
|
||||
if [ -n "${chroot}" ] ; then
|
||||
socket="${chroot}/${socket}"
|
||||
pidfile="${chroot}/${pidfile}"
|
||||
fi
|
||||
|
||||
# Galera: Only check datadir if not starting a new cluster and galera is enabled
|
||||
# wsrep_on is not on or wsrep-new-cluster exists in the config or MY_ARGS
|
||||
[ "${wsrep}" = "1" ] && wsrep="on"
|
||||
if [ "${wsrep}" != "on" ] || [ -n "${wsrep_new}" ] || stringContain 'wsrep-new-cluster' "${MY_ARGS}" ; then
|
||||
|
||||
local datadir=$(get_config "${MY_CNF}" datadir | tail -n1)
|
||||
if [ ! -d "${datadir}" ] ; then
|
||||
eerror "MySQL datadir \`${datadir}' is empty or invalid"
|
||||
eerror "Please check your config file \`${MY_CNF}'"
|
||||
return 1
|
||||
fi
|
||||
|
||||
if [ ! -d "${datadir}"/mysql ] ; then
|
||||
# find which package is installed to report an error
|
||||
local EROOT=$(portageq envvar EROOT)
|
||||
local DBPKG_P=$(portageq match ${EROOT} $(portageq expand_virtual ${EROOT} virtual/mysql | head -n1))
|
||||
if [ -z ${DBPKG_P} ] ; then
|
||||
eerror "You don't appear to have a server package installed yet."
|
||||
else
|
||||
eerror "You don't appear to have the mysql database installed yet."
|
||||
eerror "Please run \`emerge --config =${DBPKG_P}\` to have this done..."
|
||||
fi
|
||||
return 1
|
||||
fi
|
||||
fi
|
||||
|
||||
local piddir="${pidfile%/*}"
|
||||
checkpath -d --owner mysql:mysql --mode 0755 "$piddir"
|
||||
rc=$?
|
||||
if [ $rc -ne 0 ]; then
|
||||
eerror "Directory $piddir for pidfile does not exist and cannot be created"
|
||||
return 1
|
||||
fi
|
||||
|
||||
local startup_timeout=${STARTUP_TIMEOUT:-900}
|
||||
local startup_early_timeout=${STARTUP_EARLY_TIMEOUT:-1000}
|
||||
local tmpnice="${NICE:+"--nicelevel "}${NICE}"
|
||||
local tmpionice="${IONICE:+"--ionice "}${IONICE}"
|
||||
start-stop-daemon \
|
||||
${DEBUG:+"--verbose"} \
|
||||
--start \
|
||||
--exec "${basedir}"/sbin/mysqld \
|
||||
--pidfile "${pidfile}" \
|
||||
--background \
|
||||
--wait ${startup_early_timeout} \
|
||||
${tmpnice} \
|
||||
${tmpionice} \
|
||||
-- --defaults-file="${MY_CNF}" ${MY_ARGS}
|
||||
local ret=$?
|
||||
if [ ${ret} -ne 0 ] ; then
|
||||
eend ${ret}
|
||||
return ${ret}
|
||||
fi
|
||||
|
||||
ewaitfile ${startup_timeout} "${socket}"
|
||||
eend $? || return 1
|
||||
|
||||
save_options pidfile "${pidfile}"
|
||||
save_options basedir "${basedir}"
|
||||
}
|
||||
|
||||
stop() {
|
||||
if [ ${RC_CMD} = "restart" ] ; then
|
||||
checkconfig || return 1
|
||||
fi
|
||||
|
||||
ebegin "Stopping $(mysql_svcname)"
|
||||
|
||||
local pidfile="$(get_options pidfile)"
|
||||
local basedir="$(get_options basedir)"
|
||||
local stop_timeout=${STOP_TIMEOUT:-120}
|
||||
|
||||
start-stop-daemon \
|
||||
${DEBUG:+"--verbose"} \
|
||||
--stop \
|
||||
--exec "${basedir}"/sbin/mysqld \
|
||||
--pidfile "${pidfile}" \
|
||||
--retry ${stop_timeout}
|
||||
eend $?
|
||||
}
|
||||
|
||||
checkconfig() {
|
||||
local my_cnf="${MY_CNF:-/etc/${SVCNAME}/my.cnf}"
|
||||
local basedir=$(get_config "${my_cnf}" basedir | tail -n1)
|
||||
local svc_name=$(mysql_svcname)
|
||||
ebegin "Checking mysqld configuration for ${svc_name}"
|
||||
|
||||
if [ ${RC_CMD} = "checkconfig" ] ; then
|
||||
# We are calling checkconfig specifically. Print warnings regardless.
|
||||
"${basedir}"/sbin/mysqld --defaults-file="${my_cnf}" --help --verbose > /dev/null
|
||||
else
|
||||
# Suppress output to check the return value
|
||||
"${basedir}"/sbin/mysqld --defaults-file="${my_cnf}" --help --verbose > /dev/null 2>&1
|
||||
|
||||
# If the above command does not return 0,
|
||||
# then there is an error to echo to the user
|
||||
if [ $? -ne 0 ] ; then
|
||||
"${basedir}"/sbin/mysqld --defaults-file="${my_cnf}" --help --verbose > /dev/null
|
||||
fi
|
||||
fi
|
||||
|
||||
eend $? "${svc_name} config check failed"
|
||||
}
|
||||
|
||||
# vim: filetype=gentoo-init-d sw=2 ts=2 sts=2 noet:
|
||||
|
163
dev-db/mysql-init-scripts/files/init.d-s6-2.3
Normal file
163
dev-db/mysql-init-scripts/files/init.d-s6-2.3
Normal file
|
@ -0,0 +1,163 @@
|
|||
#!/sbin/openrc-run
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
depend() {
|
||||
use net.lo
|
||||
# localmount needed for $basedir
|
||||
need localmount s6-svscan
|
||||
}
|
||||
|
||||
get_config() {
|
||||
my_print_defaults --defaults-file="$1" mysqld server mariadb |
|
||||
sed -n -e "s/^--$2=//p"
|
||||
}
|
||||
|
||||
mysql_svcname() {
|
||||
local ebextra=
|
||||
case "${svc_name}" in
|
||||
mysql*) ;;
|
||||
*) ebextra=" (mysql)" ;;
|
||||
esac
|
||||
echo "${svc_name}${ebextra}"
|
||||
}
|
||||
|
||||
stringContain() { [ -z "${2##*$1*}" ] && [ -z "$1" -o -n "$2" ]; }
|
||||
|
||||
bootstrap_galera() {
|
||||
MY_ARGS="--wsrep-new-cluster ${MY_ARGS}"
|
||||
mark_service_starting
|
||||
if start_pre && start ; then
|
||||
mark_service_started
|
||||
return 0
|
||||
else
|
||||
mark_service_stopped
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
extra_commands="checkconfig"
|
||||
extra_stopped_commands="bootstrap_galera"
|
||||
|
||||
description_checkconfig="Verify the server's configuration"
|
||||
description_boostrap_galera="Start a new Galera cluster with this server as the initial node"
|
||||
supervisor=s6
|
||||
name=$(mysql_svcname)
|
||||
s6_service_timeout_stop="$((1000*${STOP_TIMEOUT:-120}))"
|
||||
#s6_svwait_options_start="-U -t $((1000*${STARTUP_EARLY_TIMEOUT:-1000}))"
|
||||
svc_name=${RC_SVCNAME%-s6}
|
||||
s6_service_path=/var/svc.d/${svc_name}
|
||||
|
||||
start_pre() {
|
||||
# Check the config or die
|
||||
if [ ${RC_CMD} != "restart" ] ; then
|
||||
checkconfig || return 1
|
||||
fi
|
||||
|
||||
MY_CNF="${MY_CNF:-/etc/${svc_name}/my.cnf}"
|
||||
|
||||
if [ ! -r "${MY_CNF}" ] ; then
|
||||
eerror "Cannot read the configuration file \`${MY_CNF}'"
|
||||
return 1
|
||||
fi
|
||||
|
||||
# tail -n1 is critical as these we only want the last instance of the option
|
||||
local basedir=$(get_config "${MY_CNF}" basedir | tail -n1)
|
||||
local pidfile=$(get_config "${MY_CNF}" 'pid[_-]file' | tail -n1)
|
||||
local socket=$(get_config "${MY_CNF}" socket | tail -n1)
|
||||
local chroot=$(get_config "${MY_CNF}" chroot | tail -n1)
|
||||
local wsrep="$(get_config "${MY_CNF}" 'wsrep[_-]on' | tail -n1 | awk '{print tolower($0)}')"
|
||||
local wsrep_new=$(get_config "${MY_CNF}" 'wsrep-new-cluster' | tail -n1)
|
||||
|
||||
if [ -n "${chroot}" ] ; then
|
||||
socket="${chroot}/${socket}"
|
||||
pidfile="${chroot}/${pidfile}"
|
||||
fi
|
||||
|
||||
# Galera: Only check datadir if not starting a new cluster and galera is enabled
|
||||
# wsrep_on is not on or wsrep-new-cluster exists in the config or MY_ARGS
|
||||
[ "${wsrep}" = "1" ] && wsrep="on"
|
||||
if [ "${wsrep}" != "on" ] || [ -n "${wsrep_new}" ] || stringContain 'wsrep-new-cluster' "${MY_ARGS}" ; then
|
||||
|
||||
local datadir=$(get_config "${MY_CNF}" datadir | tail -n1)
|
||||
if [ ! -d "${datadir}" ] ; then
|
||||
eerror "MySQL datadir \`${datadir}' is empty or invalid"
|
||||
eerror "Please check your config file \`${MY_CNF}'"
|
||||
return 1
|
||||
fi
|
||||
|
||||
if [ ! -d "${datadir}"/mysql ] ; then
|
||||
# find which package is installed to report an error
|
||||
local EROOT=$(portageq envvar EROOT)
|
||||
local DBPKG_P=$(portageq match ${EROOT} $(portageq expand_virtual ${EROOT} virtual/mysql | head -n1))
|
||||
if [ -z ${DBPKG_P} ] ; then
|
||||
eerror "You don't appear to have a server package installed yet."
|
||||
else
|
||||
eerror "You don't appear to have the mysql database installed yet."
|
||||
eerror "Please run \`emerge --config =${DBPKG_P}\` to have this done..."
|
||||
fi
|
||||
return 1
|
||||
fi
|
||||
fi
|
||||
|
||||
local piddir="${pidfile%/*}"
|
||||
checkpath -d --owner mysql:mysql --mode 0755 "$piddir"
|
||||
rc=$?
|
||||
if [ $rc -ne 0 ]; then
|
||||
eerror "Directory $piddir for pidfile does not exist and cannot be created"
|
||||
return 1
|
||||
fi
|
||||
|
||||
# Prepare env files to source
|
||||
mkdir -p "/var/svc.d/${svc_name}"
|
||||
echo "MY_CNF=\"${MY_CNF}\"" > "/var/svc.d/${svc_name}/env"
|
||||
echo "MY_ARGS=\"${MY_ARGS}\"" >> "/var/svc.d/${svc_name}/env"
|
||||
echo "basedir=\"${basedir}\"" >> "/var/svc.d/${svc_name}/env"
|
||||
mkdir -p "/var/svc.d/${svc_name}/log"
|
||||
echo "SVCNAME=\"${svc_name}\"" > "/var/svc.d/${svc_name}/log/env"
|
||||
echo "S6_LOG_OPTIONS=\"${S6_LOG_OPTIONS}\"" > "/var/svc.d/${svc_name}/log/env"
|
||||
}
|
||||
|
||||
start_post() {
|
||||
local socket=$(get_config "${MY_CNF}" socket | tail -n1)
|
||||
local chroot=$(get_config "${MY_CNF}" chroot | tail -n1)
|
||||
local startup_timeout=${STARTUP_TIMEOUT:-900}
|
||||
|
||||
if [ -n "${chroot}" ] ; then
|
||||
socket="${chroot}/${socket}"
|
||||
fi
|
||||
ewaitfile ${startup_timeout} "${socket}"
|
||||
}
|
||||
|
||||
checkconfig() {
|
||||
local my_cnf="${MY_CNF:-/etc/${svc_name}/my.cnf}"
|
||||
local basedir=$(get_config "${my_cnf}" basedir | tail -n1)
|
||||
local svc_name=$(mysql_svcname)
|
||||
ebegin "Checking mysqld configuration for ${svc_name}"
|
||||
|
||||
if [ ${RC_CMD} = "checkconfig" ] ; then
|
||||
# We are calling checkconfig specifically. Print warnings regardless.
|
||||
"${basedir}"/sbin/mysqld --defaults-file="${my_cnf}" --help --verbose > /dev/null
|
||||
else
|
||||
# Suppress output to check the return value
|
||||
"${basedir}"/sbin/mysqld --defaults-file="${my_cnf}" --help --verbose > /dev/null 2>&1
|
||||
|
||||
# If the above command does not return 0,
|
||||
# then there is an error to echo to the user
|
||||
if [ $? -ne 0 ] ; then
|
||||
"${basedir}"/sbin/mysqld --defaults-file="${my_cnf}" --help --verbose > /dev/null
|
||||
fi
|
||||
fi
|
||||
|
||||
eend $? "${svc_name} config check failed"
|
||||
}
|
||||
|
||||
stop_pre() {
|
||||
if [ ${RC_CMD} = "restart" ] ; then
|
||||
checkconfig || return 1
|
||||
fi
|
||||
}
|
||||
|
||||
# vim: filetype=gentoo-init-d sw=2 ts=2 sts=2 noet:
|
||||
|
180
dev-db/mysql-init-scripts/files/init.d-supervise-2.3
Normal file
180
dev-db/mysql-init-scripts/files/init.d-supervise-2.3
Normal file
|
@ -0,0 +1,180 @@
|
|||
#!/sbin/openrc-run
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
extra_commands="checkconfig"
|
||||
extra_stopped_commands="boostrap_galera"
|
||||
|
||||
description_checkconfig="Verify the server's configuration"
|
||||
description_boostrap_galera="Start a new Galera cluster with this server as the initial node"
|
||||
|
||||
depend() {
|
||||
use net.lo
|
||||
# localmount needed for $basedir
|
||||
need localmount
|
||||
}
|
||||
|
||||
get_config() {
|
||||
my_print_defaults --defaults-file="$1" mysqld server mariadb |
|
||||
sed -n -e "s/^--$2=//p"
|
||||
}
|
||||
|
||||
mysql_svcname() {
|
||||
local ebextra=
|
||||
case "${SVCNAME}" in
|
||||
mysql*) ;;
|
||||
*) ebextra=" (mysql)" ;;
|
||||
esac
|
||||
echo "${SVCNAME}${ebextra}"
|
||||
}
|
||||
|
||||
stringContain() { [ -z "${2##*$1*}" ] && [ -z "$1" -o -n "$2" ]; }
|
||||
|
||||
bootstrap_galera() {
|
||||
MY_ARGS="--wsrep-new-cluster ${MY_ARGS}"
|
||||
mark_service_starting
|
||||
if start ; then
|
||||
mark_service_started
|
||||
return 0
|
||||
else
|
||||
mark_service_stopped
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
|
||||
start() {
|
||||
# Check for old conf.d variables that mean migration was not yet done.
|
||||
set | egrep -sq '^(mysql_slot_|MYSQL_BLOG_PID_FILE|STOPTIMEOUT)'
|
||||
rc=$?
|
||||
# Yes, MYSQL_INIT_I_KNOW_WHAT_I_AM_DOING is a hidden variable.
|
||||
# It does have a use in testing, as it is possible to build a config file
|
||||
# that works with both the old and new init scripts simulateously.
|
||||
if [ "${rc}" = 0 -a -z "${MYSQL_INIT_I_KNOW_WHAT_I_AM_DOING}" ]; then
|
||||
eerror "You have not updated your conf.d for the new mysql-init-scripts-2 revamp."
|
||||
eerror "Not proceeding because it may be dangerous."
|
||||
return 1
|
||||
fi
|
||||
|
||||
# Check the config or die
|
||||
if [ ${RC_CMD} != "restart" ] ; then
|
||||
checkconfig || return 1
|
||||
fi
|
||||
|
||||
# Now we can startup
|
||||
ebegin "Starting $(mysql_svcname)"
|
||||
|
||||
MY_CNF="${MY_CNF:-/etc/${SVCNAME}/my.cnf}"
|
||||
|
||||
if [ ! -r "${MY_CNF}" ] ; then
|
||||
eerror "Cannot read the configuration file \`${MY_CNF}'"
|
||||
return 1
|
||||
fi
|
||||
|
||||
# tail -n1 is critical as these we only want the last instance of the option
|
||||
local basedir=$(get_config "${MY_CNF}" basedir | tail -n1)
|
||||
local pidfile=$(get_config "${MY_CNF}" 'pid[_-]file' | tail -n1)
|
||||
local socket=$(get_config "${MY_CNF}" socket | tail -n1)
|
||||
local chroot=$(get_config "${MY_CNF}" chroot | tail -n1)
|
||||
local wsrep="$(get_config "${MY_CNF}" 'wsrep[_-]on' | tail -n1 | awk '{print tolower($0)}')"
|
||||
local wsrep_new=$(get_config "${MY_CNF}" 'wsrep-new-cluster' | tail -n1)
|
||||
|
||||
if [ -n "${chroot}" ] ; then
|
||||
socket="${chroot}/${socket}"
|
||||
pidfile="${chroot}/${pidfile}"
|
||||
fi
|
||||
|
||||
# Galera: Only check datadir if not starting a new cluster and galera is enabled
|
||||
# wsrep_on is not on or wsrep-new-cluster exists in the config or MY_ARGS
|
||||
[ "${wsrep}" = "1" ] && wsrep="on"
|
||||
if [ "${wsrep}" != "on" ] || [ -n "${wsrep_new}" ] || stringContain 'wsrep-new-cluster' "${MY_ARGS}" ; then
|
||||
|
||||
local datadir=$(get_config "${MY_CNF}" datadir | tail -n1)
|
||||
if [ ! -d "${datadir}" ] ; then
|
||||
eerror "MySQL datadir \`${datadir}' is empty or invalid"
|
||||
eerror "Please check your config file \`${MY_CNF}'"
|
||||
return 1
|
||||
fi
|
||||
|
||||
if [ ! -d "${datadir}"/mysql ] ; then
|
||||
# find which package is installed to report an error
|
||||
local EROOT=$(portageq envvar EROOT)
|
||||
local DBPKG_P=$(portageq match ${EROOT} $(portageq expand_virtual ${EROOT} virtual/mysql | head -n1))
|
||||
if [ -z ${DBPKG_P} ] ; then
|
||||
eerror "You don't appear to have a server package installed yet."
|
||||
else
|
||||
eerror "You don't appear to have the mysql database installed yet."
|
||||
eerror "Please run \`emerge --config =${DBPKG_P}\` to have this done..."
|
||||
fi
|
||||
return 1
|
||||
fi
|
||||
fi
|
||||
|
||||
local piddir="${pidfile%/*}"
|
||||
checkpath -d --owner mysql:mysql --mode 0755 "$piddir"
|
||||
rc=$?
|
||||
if [ $rc -ne 0 ]; then
|
||||
eerror "Directory $piddir for pidfile does not exist and cannot be created"
|
||||
return 1
|
||||
fi
|
||||
|
||||
local startup_timeout=${STARTUP_TIMEOUT:-900}
|
||||
# local startup_early_timeout=${STARTUP_EARLY_TIMEOUT:-1000}
|
||||
local tmpnice="${NICE:+"--nicelevel "}${NICE}"
|
||||
local tmpionice="${IONICE:+"--ionice "}${IONICE}"
|
||||
supervise-daemon \
|
||||
${DEBUG:+"--verbose"} \
|
||||
--pidfile "/run/${SVCNAME}.pid" \
|
||||
${tmpnice} \
|
||||
${tmpionice} \
|
||||
--start \
|
||||
"${basedir}"/sbin/mysqld \
|
||||
-- --defaults-file="${MY_CNF}" ${MY_ARGS}
|
||||
local ret=$?
|
||||
if [ ${ret} -ne 0 ] ; then
|
||||
eend ${ret}
|
||||
return ${ret}
|
||||
fi
|
||||
|
||||
ewaitfile ${startup_timeout} "${socket}"
|
||||
eend $? || return 1
|
||||
}
|
||||
|
||||
stop() {
|
||||
if [ ${RC_CMD} = "restart" ] ; then
|
||||
checkconfig || return 1
|
||||
fi
|
||||
|
||||
ebegin "Stopping $(mysql_svcname)"
|
||||
|
||||
supervise-daemon \
|
||||
${DEBUG:+"--verbose"} \
|
||||
--stop \
|
||||
--pidfile "/run/${SVCNAME}.pid"
|
||||
eend $?
|
||||
}
|
||||
|
||||
checkconfig() {
|
||||
local my_cnf="${MY_CNF:-/etc/${SVCNAME}/my.cnf}"
|
||||
local basedir=$(get_config "${my_cnf}" basedir | tail -n1)
|
||||
local svc_name=$(mysql_svcname)
|
||||
ebegin "Checking mysqld configuration for ${svc_name}"
|
||||
|
||||
if [ ${RC_CMD} = "checkconfig" ] ; then
|
||||
# We are calling checkconfig specifically. Print warnings regardless.
|
||||
"${basedir}"/sbin/mysqld --defaults-file="${my_cnf}" --help --verbose > /dev/null
|
||||
else
|
||||
# Suppress output to check the return value
|
||||
"${basedir}"/sbin/mysqld --defaults-file="${my_cnf}" --help --verbose > /dev/null 2>&1
|
||||
|
||||
# If the above command does not return 0,
|
||||
# then there is an error to echo to the user
|
||||
if [ $? -ne 0 ] ; then
|
||||
"${basedir}"/sbin/mysqld --defaults-file="${my_cnf}" --help --verbose > /dev/null
|
||||
fi
|
||||
fi
|
||||
|
||||
eend $? "${svc_name} config check failed"
|
||||
}
|
||||
|
||||
# vim: filetype=gentoo-init-d sw=2 ts=2 sts=2 noet:
|
||||
|
14
dev-db/mysql-init-scripts/files/logrotate.mysql-2.3
Normal file
14
dev-db/mysql-init-scripts/files/logrotate.mysql-2.3
Normal file
|
@ -0,0 +1,14 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
/var/log/mysql/mysql.err /var/log/mysql/mysql.log /var/log/mysql/mysqld.err {
|
||||
monthly
|
||||
create 660 mysql mysql
|
||||
notifempty
|
||||
size 5M
|
||||
sharedscripts
|
||||
missingok
|
||||
postrotate
|
||||
/bin/kill -HUP $(cat $(my_print_defaults server mysqld mariadb | grep 'pid[_-]file' | cut -d = -f 2))
|
||||
endscript
|
||||
}
|
67
dev-db/mysql-init-scripts/mysql-init-scripts-2.3.ebuild
Normal file
67
dev-db/mysql-init-scripts/mysql-init-scripts-2.3.ebuild
Normal file
|
@ -0,0 +1,67 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit systemd s6 tmpfiles
|
||||
|
||||
DESCRIPTION="Gentoo MySQL init scripts."
|
||||
HOMEPAGE="https://www.gentoo.org/"
|
||||
SRC_URI=""
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
# This _will_ break with MySQL 5.0, 4.x, 3.x
|
||||
# It also NEEDS openrc for the save_options/get_options builtins.
|
||||
# The s6 support was added after openrc 0.16.2
|
||||
# mysql-connector-c needed for my_print_defaults
|
||||
RDEPEND="
|
||||
!<dev-db/mysql-5.1
|
||||
!<sys-apps/openrc-0.16.2
|
||||
dev-db/mysql-connector-c
|
||||
"
|
||||
# Need to set S due to PMS saying we need it existing, but no SRC_URI
|
||||
S=${WORKDIR}
|
||||
|
||||
src_install() {
|
||||
newconfd "${FILESDIR}/conf.d-2.0" "mysql"
|
||||
|
||||
# s6 init scripts
|
||||
if use amd64 || use x86 ; then
|
||||
newconfd "${FILESDIR}/conf.d-2.0" "mysql-s6"
|
||||
newinitd "${FILESDIR}/init.d-s6-2.3" "mysql-s6"
|
||||
s6_install_service mysql "${FILESDIR}/run-s6"
|
||||
s6_install_service mysql/log "${FILESDIR}/log-s6"
|
||||
fi
|
||||
|
||||
newinitd "${FILESDIR}/init.d-2.3" "mysql"
|
||||
newinitd "${FILESDIR}/init.d-supervise-2.3" "mysql-supervise"
|
||||
|
||||
# systemd unit installation
|
||||
exeinto /usr/libexec
|
||||
doexe "${FILESDIR}"/mysqld-wait-ready
|
||||
systemd_newunit "${FILESDIR}/mysqld-v2.service" "mysqld.service"
|
||||
systemd_newunit "${FILESDIR}/mysqld_at-v2.service" "mysqld@.service"
|
||||
dotmpfiles "${FILESDIR}/mysql.conf"
|
||||
|
||||
insinto /etc/logrotate.d
|
||||
newins "${FILESDIR}/logrotate.mysql-2.3" "mysql"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
tmpfiles_process mysql.conf
|
||||
if use amd64 || use x86 ; then
|
||||
elog ""
|
||||
elog "To use the mysql-s6 script, you need to install the optional sys-apps/s6 package."
|
||||
elog "If you wish to use s6 logging support, comment out the log-error setting in your my.cnf"
|
||||
fi
|
||||
|
||||
elog ""
|
||||
elog "Starting with version 10.1.8, MariaDB includes an improved systemd unit named mariadb.service"
|
||||
elog "You should prefer that unit over this package's mysqld.service."
|
||||
einfo ""
|
||||
}
|
|
@ -37,7 +37,7 @@ RESTRICT="libressl? ( test )"
|
|||
|
||||
REQUIRED_USE="?? ( tcmalloc jemalloc ) static? ( yassl )"
|
||||
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
||||
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
||||
|
||||
# Shorten the path because the socket path length must be shorter than 107 chars
|
||||
# and we will run a mysql server during test phase
|
||||
|
|
|
@ -34,7 +34,7 @@ RESTRICT="libressl? ( test )"
|
|||
|
||||
REQUIRED_USE="?? ( tcmalloc jemalloc ) static? ( yassl )"
|
||||
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
||||
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
||||
|
||||
# Shorten the path because the socket path length must be shorter than 107 chars
|
||||
# and we will run a mysql server during test phase
|
||||
|
|
|
@ -11,7 +11,7 @@ PLOCALES="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru sk sl sv tr zh_CN
|
|||
inherit flag-o-matic l10n linux-info multilib pam prefix python-single-r1 \
|
||||
systemd user versionator
|
||||
|
||||
KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
||||
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
||||
|
||||
SLOT=$(get_major_version)
|
||||
|
||||
|
|
Binary file not shown.
|
@ -133,6 +133,9 @@ src_prepare() {
|
|||
for repo in corba hotspot jdk jaxp jaxws langtools nashorn; do
|
||||
ln -s ../"${repo}-jdk${MY_PV}" "${repo}" || die
|
||||
done
|
||||
|
||||
# linux 5 is ok https://bugs.gentoo.org/679506
|
||||
sed -i '/^SUPPORTED_OS_VERSION/ s/ 4%/ 4% 5%/' hotspot/make/linux/Makefile || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
|
|
Binary file not shown.
|
@ -2,4 +2,4 @@ DIST mono-4.4.1.0.tar.bz2 85897587 BLAKE2B 79651189e696aa7352704e1ac659302423b12
|
|||
DIST mono-4.8.0.524.tar.bz2 87392723 BLAKE2B ac17c3da6d6c08c4cb72c4fa300ded92625bd8c14c1e45ea9539efa42c8d085759f7bb298fe5df57bd41f18abf83f293d26a9e6272944933fcff0a3c16a7e4f3 SHA512 eb77b768a4a26e6a2a872f4845769cdc83f01af3377ecd6d932437d2a1b54bfd1ce727563906146195a54997b4b624fb75449a6f0bcfe818cbc4e6544841bf2b
|
||||
DIST mono-5.14.0.177.tar.bz2 219729440 BLAKE2B c21af7f541e5fcd456faeaf654ded7937da5241feb94b0de464a880915d758791ff7a645dbcb4023e7cced7ab0854bb8da0cc246abc6ab575bb278aa58fdc8c7 SHA512 f13afbe4289e177705642f79f4236710bdc8db8e956782c5370baf22207d6713f7997ec286c7742416c8206d2da205f295437d1afcdc430628d13e32f0e87d2d
|
||||
DIST mono-5.16.0.220.tar.bz2 231487021 BLAKE2B e5154c5e356bc277a8809471e5bf8a87092224f54f08535d9860229040bdd3fec304404b893ddd36253f58b351e7023ce9649521a0e850fabfefb3e6700473c1 SHA512 f5266b28747dd7735acb047e1d7a3660d9984126e518885babba6cce5b8dd9959134f7b5c6cd79309b4fb1feaf9af9d0015fdbc2d4bd088928a279b5c1dcefb3
|
||||
DIST mono-5.18.0.240.tar.bz2 246571697 BLAKE2B 92a0e096d17b28f6b185addf28acd2bfd006a099b231388faec5a6d45718f9fbbeaa80c7d8e35c287db55d1a7cb2c64dcd1337dd316cd665f8b520148dae1c5b SHA512 4add3744325d6d920d3d83f320b8ed58c48557dd6cadc44866aa137007489a376b09e2acfc82b6ce132d5a5c65b56d3ce9e2dda08e7f2f8b203117379f7f1fc6
|
||||
DIST mono-5.18.0.268.tar.bz2 246765892 BLAKE2B 28277eccf13f8c43568eb35777f8be66545f1c94a2e513c74aa75d3786ea3c7a0461b1aee58f9feb1ad8b34ebf6cc9b81c307ece6647f48658e29b0efa597af8 SHA512 cfd81fe3bc23bbef85816a30eece6860cdd8bd0c9e595b0d15b95dda0c9c408acfcae2904f6e750c24b68be571592747fb34d6bd93fb50fe9de9014e8ee88c66
|
||||
|
|
Binary file not shown.
|
@ -1 +1,2 @@
|
|||
DIST libmirage-3.2.0.tar.bz2 234214 BLAKE2B f2b8c42eed89efaeddb8051160c51814b4df45c1ca7cdb4cef683b86ea73dcd1446c6806588a9df0410da5b3971ce8945f2479022f21177237ee8b0d4b18d2d3 SHA512 15507154441b660f5a58e1101d4e6f9931a7640b90d3de5e387274c72be07f367b54a6be34dd31442bc504459414f611ffc39f86ff6a7381a820d059aef1d6d6
|
||||
DIST libmirage-3.2.1.tar.bz2 233650 BLAKE2B 2ac7bc30108c0bfbf27524819a5cb3d24fde1abc70f720bec50d37196386cfb46f7f9876c45437aadd79d6f9f3318afe50449a97ad36a7bcedd0872ef434a687 SHA512 fa22c26562eea600a1056e730bfb4690918b09f61be91319229a87975b0468803fa026e8f06bdeb9551ef5242179a3dec023e0fcd7f0773608ff77c32741dea6
|
||||
|
|
51
dev-libs/libmirage/libmirage-3.2.1.ebuild
Normal file
51
dev-libs/libmirage/libmirage-3.2.1.ebuild
Normal file
|
@ -0,0 +1,51 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="6"
|
||||
|
||||
inherit cmake-utils xdg-utils
|
||||
|
||||
DESCRIPTION="CD and DVD image access library"
|
||||
HOMEPAGE="http://cdemu.org"
|
||||
SRC_URI="mirror://sourceforge/cdemu/${P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2+"
|
||||
SLOT="0/11" # subslot = libmirage soname version
|
||||
KEYWORDS="~amd64 ~hppa ~x86"
|
||||
IUSE="doc +introspection"
|
||||
|
||||
RDEPEND=">=app-arch/bzip2-1:=
|
||||
>=app-arch/xz-utils-5:=
|
||||
>=dev-libs/glib-2.38:2
|
||||
>=media-libs/libsamplerate-0.1:=
|
||||
>=media-libs/libsndfile-1.0:=
|
||||
sys-libs/zlib:=
|
||||
introspection? ( >=dev-libs/gobject-introspection-1.30 )"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/desktop-file-utils
|
||||
dev-util/intltool
|
||||
sys-devel/gettext
|
||||
virtual/pkgconfig
|
||||
doc? ( dev-util/gtk-doc )"
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DGTKDOC_ENABLED="$(usex doc)"
|
||||
-DINTROSPECTION_ENABLED="$(usex introspection)"
|
||||
-DPOST_INSTALL_HOOKS=OFF # avoid sandbox violation, #487304
|
||||
)
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
local DOCS=( AUTHORS README )
|
||||
cmake-utils_src_install
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
xdg_mimeinfo_database_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
xdg_mimeinfo_database_update
|
||||
}
|
|
@ -18,7 +18,7 @@ fi
|
|||
|
||||
LICENSE="BSD"
|
||||
SLOT="3"
|
||||
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
||||
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
||||
IUSE="bzip2 +cxx +jit libedit pcre16 pcre32 +readline +recursion-limit static-libs unicode zlib"
|
||||
REQUIRED_USE="readline? ( !libedit )
|
||||
libedit? ( !readline )"
|
||||
|
|
Binary file not shown.
|
@ -3,3 +3,4 @@ DIST Cython-0.26.1.tar.gz 1725133 BLAKE2B b2c0433e8154ad76d921677608cae42a793326
|
|||
DIST Cython-0.28.4.tar.gz 1880943 BLAKE2B a97314147294c95fa0bd6d3fa1a1315d81f8abb46a1f2196009c1ef6f0dd7f47f81a7b31ab81d1fd00e8de37878a18a22d225055181ee74ffe4cc8105d84cd75 SHA512 67d2da2d776fc02193cfe98c8942e93905ec5e30bf4e0f9d5c965d930a034936d4c29c8248fccefff5db6d4dee054ec854994bea63fa3f64ff65df7550997c29
|
||||
DIST Cython-0.29.4.tar.gz 2044382 BLAKE2B b36d27706a3270805f66190a4cf2735eaf20b1b932365b324a433c0e58e63e860ce1500333233c3539ae697886ac0adc361a2c158d5d064a3ea05843debc3f26 SHA512 8f115e36975aaf64eda4df8b0a85378d0c80b3292dbd162be826b939def03bdc9f3eb937676e2367003c2944b570d97f50d7880becfdb2fdc5144077b4a722dc
|
||||
DIST Cython-0.29.5.tar.gz 2045488 BLAKE2B ca809728115865b7d28100943b358d8f5236382e5ae5a43d557620c3bd856407a9f52b756fc910564a6c041d64b1439d60776c90c6970614f74ee2d03f94665f SHA512 4bbf54b248b9a08b9118d751a6bb5dbb81ae7a8238c8a3124d94bf7be67f15b68820e6ce5470903fb5d5ff5c3c213e1580f1c57a8cda33b356263f9ab46e8851
|
||||
DIST Cython-0.29.6.tar.gz 2047021 BLAKE2B 32fe6697ba407a75dad79f08fd2e33ba11b083c65f69e09cd269c8a9f445d183a8cf36794fc8b2abb5e98b9626f0c62a099367359634833f36273c7681835572 SHA512 bb8095b438a7d2567b8b831628fbb32c02299c866e41113da62fb5a5d4982dc0df947a9f723a82c52086806435d8f3518e78a803166149d476f81e042a12494e
|
||||
|
|
86
dev-python/cython/cython-0.29.6.ebuild
Normal file
86
dev-python/cython/cython-0.29.6.ebuild
Normal file
|
@ -0,0 +1,86 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
|
||||
PYTHON_REQ_USE="threads(+)"
|
||||
|
||||
inherit distutils-r1 toolchain-funcs elisp-common
|
||||
|
||||
MY_PN="Cython"
|
||||
MY_P="${MY_PN}-${PV/_/}"
|
||||
|
||||
DESCRIPTION="A Python to C compiler"
|
||||
HOMEPAGE="https://cython.org https://pypi.org/project/Cython/"
|
||||
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
||||
IUSE="doc emacs test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
emacs? ( virtual/emacs )
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
|
||||
test? ( dev-python/numpy[${PYTHON_USEDEP}] )"
|
||||
|
||||
SITEFILE=50cython-gentoo.el
|
||||
S="${WORKDIR}/${MY_PN}-${PV%_*}"
|
||||
|
||||
python_prepare_all() {
|
||||
# tests behavior that is illegal in Python 3.7+
|
||||
# https://github.com/cython/cython/issues/2454
|
||||
sed -i -e '/with_outer_raising/,/return/d' tests/run/generators_py.py || die
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
||||
python_compile() {
|
||||
if ! python_is_python3; then
|
||||
local CFLAGS="${CFLAGS} -fno-strict-aliasing"
|
||||
local CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing"
|
||||
fi
|
||||
|
||||
# Python gets confused when it is in sys.path before build.
|
||||
local -x PYTHONPATH=
|
||||
|
||||
distutils-r1_python_compile
|
||||
}
|
||||
|
||||
python_compile_all() {
|
||||
use emacs && elisp-compile Tools/cython-mode.el
|
||||
|
||||
use doc && emake -C docs html
|
||||
}
|
||||
|
||||
python_test() {
|
||||
tc-export CC
|
||||
# https://github.com/cython/cython/issues/1911
|
||||
local -x CFLAGS="${CFLAGS} -fno-strict-overflow"
|
||||
"${PYTHON}" runtests.py -vv --work-dir "${BUILD_DIR}"/tests \
|
||||
|| die "Tests fail with ${EPYTHON}"
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
local DOCS=( CHANGES.rst README.rst ToDo.txt USAGE.txt )
|
||||
use doc && local HTML_DOCS=( docs/build/html/. )
|
||||
distutils-r1_python_install_all
|
||||
|
||||
if use emacs; then
|
||||
elisp-install ${PN} Tools/cython-mode.*
|
||||
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
use emacs && elisp-site-regen
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
use emacs && elisp-site-regen
|
||||
}
|
Binary file not shown.
51
gnome-base/gnome-core-apps/gnome-core-apps-3.28.2.ebuild
Normal file
51
gnome-base/gnome-core-apps/gnome-core-apps-3.28.2.ebuild
Normal file
|
@ -0,0 +1,51 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
DESCRIPTION="Sub-meta package for the core applications integrated with GNOME 3"
|
||||
HOMEPAGE="https://www.gnome.org/"
|
||||
LICENSE="metapackage"
|
||||
SLOT="3.0"
|
||||
IUSE="+bluetooth cups"
|
||||
|
||||
# when unmasking for an arch
|
||||
# double check none of the deps are still masked !
|
||||
KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86"
|
||||
|
||||
# gnome-color-manager min version enforced here due to control-center pulling it in
|
||||
RDEPEND="
|
||||
>=gnome-base/gnome-core-libs-${PV}[cups?]
|
||||
|
||||
>=gnome-base/gnome-session-3.28.1
|
||||
>=gnome-base/gnome-settings-daemon-3.28.1[cups?]
|
||||
>=gnome-base/gnome-control-center-${PV}[cups?]
|
||||
>=gnome-extra/gnome-color-manager-3.28.0
|
||||
|
||||
>=app-crypt/gcr-3.28.0
|
||||
>=gnome-base/nautilus-3.28.1
|
||||
>=gnome-base/gnome-keyring-3.28.2
|
||||
>=gnome-extra/evolution-data-server-3.28.2
|
||||
|
||||
>=app-crypt/seahorse-3.20.0
|
||||
>=app-editors/gedit-3.28.1
|
||||
>=app-text/evince-3.28.2
|
||||
>=gnome-extra/gnome-contacts-3.28.2
|
||||
>=media-gfx/eog-3.28.2
|
||||
>=media-video/totem-3.26.2
|
||||
>=x11-terms/gnome-terminal-${PV}
|
||||
|
||||
>=gnome-extra/gnome-user-docs-${PV}
|
||||
>=gnome-extra/yelp-3.28.1
|
||||
|
||||
>=x11-themes/adwaita-icon-theme-3.28.0
|
||||
|
||||
bluetooth? ( >=net-wireless/gnome-bluetooth-3.28.0 )
|
||||
"
|
||||
DEPEND=""
|
||||
|
||||
# cdr? ( >=app-cdr/brasero-3.12.2 ) # not part of gnome releng release anymore
|
||||
# >=gnome-base/gnome-menus-3.13.3:3 # not used by core gnome anymore, just gnome-classic extensions
|
||||
# >=net-im/empathy-3.12.12 # not part of gnome releng core or apps suite anymore
|
||||
|
||||
S="${WORKDIR}"
|
61
gnome-base/gnome-light/gnome-light-3.28.2.ebuild
Normal file
61
gnome-base/gnome-light/gnome-light-3.28.2.ebuild
Normal file
|
@ -0,0 +1,61 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit eapi7-ver
|
||||
|
||||
P_RELEASE="$(ver_cut 1-2)"
|
||||
|
||||
DESCRIPTION="Meta package for GNOME-Light, merge this package to install"
|
||||
HOMEPAGE="https://www.gnome.org/"
|
||||
LICENSE="metapackage"
|
||||
SLOT="2.0"
|
||||
IUSE="cups +gnome-shell"
|
||||
|
||||
# when unmasking for an arch
|
||||
# double check none of the deps are still masked !
|
||||
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
|
||||
|
||||
# XXX: Note to developers:
|
||||
# This is a wrapper for the 'light' GNOME 3 desktop, and should only consist of
|
||||
# the bare minimum of libs/apps needed. It is basically gnome-base/gnome without
|
||||
# any apps, but shouldn't be used by users unless they know what they are doing.
|
||||
# cantarell minimum version is ensured here as gnome-shell depends on it.
|
||||
RDEPEND="!gnome-base/gnome
|
||||
>=gnome-base/gnome-core-libs-${PV}[cups?]
|
||||
|
||||
>=gnome-base/gnome-session-3.28.1
|
||||
>=gnome-base/gnome-settings-daemon-3.28.1[cups?]
|
||||
>=gnome-base/gnome-control-center-${PV}[cups?]
|
||||
|
||||
>=gnome-base/nautilus-3.28.1
|
||||
|
||||
gnome-shell? (
|
||||
>=x11-wm/mutter-${PV}
|
||||
>=gnome-base/gnome-shell-${PV}
|
||||
>=media-fonts/cantarell-0.100 )
|
||||
|
||||
>=x11-themes/adwaita-icon-theme-${P_RELEASE}
|
||||
>=x11-themes/gnome-themes-standard-3.28
|
||||
>=x11-themes/gnome-backgrounds-${P_RELEASE}
|
||||
|
||||
>=x11-terms/gnome-terminal-3.28.1
|
||||
"
|
||||
DEPEND=""
|
||||
PDEPEND=">=gnome-base/gvfs-1.36.2"
|
||||
S="${WORKDIR}"
|
||||
|
||||
pkg_pretend() {
|
||||
if ! use gnome-shell; then
|
||||
# Users probably want to use e16, sawfish, etc
|
||||
ewarn "You're not installing GNOME Shell"
|
||||
ewarn "You will have to install and manage a window manager by yourself"
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
# Remember people where to find our project information
|
||||
elog "Please remember to look at https://wiki.gentoo.org/wiki/Project:GNOME"
|
||||
elog "for information about the project and documentation."
|
||||
}
|
|
@ -1,2 +1,4 @@
|
|||
DIST nautilus-3.24.2.1.tar.xz 5143440 BLAKE2B 731046b6bdd0817b770cf3e2f0667187bfde613cf1a15611e6ec06e74bc3c2432ca66894119f224023fe46b01fd777d3dde2d2ac7bba0a9eb0fd71d38e1756ff SHA512 f6868600bcdc82071b3a63f4e4a0f7decf0d72e021eb3d0c26e914413c858163ee4403c4f3ef7689556a0fc91394f30cff9a3db14da030b277b50972c7b80a07
|
||||
DIST nautilus-3.26.4.tar.xz 3267652 BLAKE2B 56986b8d87afc0ea7ce6f1f56ae06c7cfb05d060414aad428145a6c2cb631b9d4ebbeaefabb0f0ceeb5f930ae94737f8dfcabb300554a59c2b7d5a53d1ee3cd1 SHA512 2a50a2a9ae6ffbe4b706d46fb47e5f54f42e645189b3548d1904c3ddf882ef4a94819740c6821fe50c662a9013ab43bb9b7b3dbdfc779ecc82f16170b4867973
|
||||
DIST nautilus-3.28.1-patchset.tar.xz 129360 BLAKE2B 18e94e83132a8ce2e07491ce6b5cb9499141bf93e0c3ef44f2e5ac891e59d334cf310d863e8e7450fa385a6a49873d790e4f8c36a1ef8e009b1f2be2361586b4 SHA512 6c3385b4bc7020601f47dc66c0b1cabd6dadcd9f986bdaec42aeca9b43a6b8a2362651958d4e6a4738b78fbd546071678ba15ab87c268e33cfc1cca49229da48
|
||||
DIST nautilus-3.28.1.tar.xz 3262520 BLAKE2B 6f007e2327ffb108c5195737c02c7be12b874f5bc3bdfc1c84a3ba2176ff36e1843057522a54e569a7c09a056ccd888e1ddf099d6f2b527dfa109370cbe1a3a9 SHA512 6b695c097e5082062afe8cb036e819c837ce1e2570f581f81860f378e34f38f3020b8802e6a4285243c111d5208e892c419ac92621cdb1d35b2df205a3ccaa13
|
||||
|
|
42
gnome-base/nautilus/files/3.28.1-docs-build.patch
Normal file
42
gnome-base/nautilus/files/3.28.1-docs-build.patch
Normal file
|
@ -0,0 +1,42 @@
|
|||
From eaf8435005e2637ce76690c71f729e6b3685d973 Mon Sep 17 00:00:00 2001
|
||||
From: Mart Raudsepp <leio@gentoo.org>
|
||||
Date: Tue, 5 Mar 2019 19:22:58 +0200
|
||||
Subject: [PATCH] build: Always install man page
|
||||
|
||||
It's already generated and shouldn't be thrown in the same pot as
|
||||
full gtk-doc generation. It should be either a separate `man` option,
|
||||
or just always installed.
|
||||
---
|
||||
docs/meson.build | 4 +++-
|
||||
meson.build | 4 +---
|
||||
2 files changed, 4 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/docs/meson.build b/docs/meson.build
|
||||
index b039cb631..2b1800be6 100644
|
||||
--- a/docs/meson.build
|
||||
+++ b/docs/meson.build
|
||||
@@ -1,3 +1,5 @@
|
||||
install_man('nautilus.1')
|
||||
|
||||
-subdir('reference')
|
||||
+if get_option('docs')
|
||||
+ subdir('reference')
|
||||
+endif
|
||||
diff --git a/meson.build b/meson.build
|
||||
index 4b64239ac..88fe73237 100644
|
||||
--- a/meson.build
|
||||
+++ b/meson.build
|
||||
@@ -152,9 +152,7 @@ if get_option('tests') != 'none'
|
||||
endif
|
||||
subdir('data')
|
||||
subdir('po')
|
||||
-if get_option('docs')
|
||||
- subdir('docs')
|
||||
-endif
|
||||
+subdir('docs')
|
||||
if get_option('extensions')
|
||||
subdir('extensions')
|
||||
endif
|
||||
--
|
||||
2.17.0
|
||||
|
104
gnome-base/nautilus/nautilus-3.28.1.ebuild
Normal file
104
gnome-base/nautilus/nautilus-3.28.1.ebuild
Normal file
|
@ -0,0 +1,104 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit gnome.org gnome2-utils meson readme.gentoo-r1 virtualx xdg
|
||||
|
||||
DESCRIPTION="Default file manager for the GNOME desktop"
|
||||
HOMEPAGE="https://wiki.gnome.org/Apps/Nautilus"
|
||||
SRC_URI+=" https://dev.gentoo.org/~leio/distfiles/${P}-patchset.tar.xz"
|
||||
|
||||
LICENSE="GPL-3+ LGPL-2.1+"
|
||||
SLOT="0"
|
||||
IUSE="gnome gtk-doc +introspection packagekit +previewer selinux sendto"
|
||||
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
|
||||
|
||||
COMMON_DEPEND="
|
||||
>=dev-libs/glib-2.55.1:2
|
||||
>=media-libs/gexiv2-0.10.0
|
||||
>=app-arch/gnome-autoar-0.2.1
|
||||
>=gnome-base/gnome-desktop-3.0.0:3=
|
||||
>=x11-libs/pango-1.28.3
|
||||
>=x11-libs/gtk+-3.22.6:3[X,introspection?]
|
||||
selinux? ( >=sys-libs/libselinux-2.0 )
|
||||
>=app-misc/tracker-2.0:=
|
||||
x11-libs/libX11
|
||||
>=dev-libs/libxml2-2.7.8:2
|
||||
introspection? ( >=dev-libs/gobject-introspection-1.54:= )
|
||||
"
|
||||
DEPEND="${COMMON_DEPEND}
|
||||
>=dev-util/gdbus-codegen-2.51.2
|
||||
dev-util/glib-utils
|
||||
gtk-doc? (
|
||||
>=dev-util/gtk-doc-1.10
|
||||
app-text/docbook-xml-dtd:4.1.2 )
|
||||
>=sys-devel/gettext-0.19.8
|
||||
virtual/pkgconfig
|
||||
x11-base/xorg-proto
|
||||
"
|
||||
RDEPEND="${COMMON_DEPEND}
|
||||
packagekit? ( app-admin/packagekit-base )
|
||||
sendto? ( !<gnome-extra/nautilus-sendto-3.0.1 )
|
||||
"
|
||||
|
||||
PDEPEND="
|
||||
gnome? ( x11-themes/adwaita-icon-theme )
|
||||
previewer? ( >=gnome-extra/sushi-0.1.9 )
|
||||
sendto? ( >=gnome-extra/nautilus-sendto-3.0.1 )
|
||||
>=gnome-base/gvfs-1.14[gtk(+)]
|
||||
" # Need gvfs[gtk] for recent:/// support; always built (without USE=gtk) since gvfs-1.34
|
||||
|
||||
PATCHES=(
|
||||
"${WORKDIR}"/patches # gnome-3-28 + optional introspection
|
||||
"${FILESDIR}"/${PV}-docs-build.patch # Always install pregenerated manpage, keeping docs option for gtk-doc
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
if use previewer; then
|
||||
DOC_CONTENTS="nautilus uses gnome-extra/sushi to preview media files.
|
||||
To activate the previewer, select a file and press space; to
|
||||
close the previewer, press space again."
|
||||
fi
|
||||
xdg_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local emesonargs=(
|
||||
$(meson_use gtk-doc docs)
|
||||
$(meson_use introspection)
|
||||
-Dprofiling=false
|
||||
-Dextensions=true # image file properties, sendto support
|
||||
$(meson_use packagekit)
|
||||
$(meson_use selinux)
|
||||
-Dtests=$(usex test all none)
|
||||
-Dprofile=default
|
||||
)
|
||||
meson_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
use previewer && readme.gentoo_create_doc
|
||||
meson_src_install
|
||||
}
|
||||
|
||||
src_test() {
|
||||
virtx meson_src_test
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
xdg_pkg_postinst
|
||||
gnome2_schemas_update
|
||||
|
||||
if use previewer; then
|
||||
readme.gentoo_print_elog
|
||||
else
|
||||
elog "To preview media files, emerge nautilus with USE=previewer"
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
xdg_pkg_postrm
|
||||
gnome2_schemas_update
|
||||
}
|
Binary file not shown.
|
@ -56,60 +56,60 @@ DIST thunderbird-52.9.1-uk.xpi 652854 BLAKE2B bc5557a1df83f9b8ca0671fb7c76fe3a11
|
|||
DIST thunderbird-52.9.1-vi.xpi 637163 BLAKE2B 95c18bab7d30dea4a8b2241290175c77a2b47e3b02346b734e728adadfa4656e4197ceb3328de4c5a12a076dcc7b4b412b0a32e3cdef41d888865e471b2601f2 SHA512 dec44726008af723e44146abb89754f9fd0684e3cce0f0db07c05d8a100a8a862e5f7ad028c0f7d3594965ec35251e7c357ac212fb78570463bd8c18174658c9
|
||||
DIST thunderbird-52.9.1-zh-CN.xpi 593611 BLAKE2B 441b5332a08daca64282a8d4233c7d9dc2008c80c1ebeaf4d125d5c804755509b9b67dda3423cc9b9a9af3d29b386bb621b231e426bdd89879e2e620f2106dea SHA512 db0c8a338df861a43563c70fd73768a5db730ce39e7a8400de44ccada3edac1f7e3736edee5cff439df76ff17f2b4838701e95fa739f5aa04463539516a86f0b
|
||||
DIST thunderbird-52.9.1-zh-TW.xpi 595728 BLAKE2B 8e2f6bdb65418ae837cef54f042eb8aa8ae32e952cece4e3a5a8cd13a4ac99a56495b7cca900d7ecd10d82ab77ed334a8e27eba8d49aca066bd2bb7d7182deb4 SHA512 24f48563439450751066d49f609ac4df9d7e31d7cea36ce8f2ad8f38b04fc4d1be99d50463700c4ea2963948b0ec1c1b5323cada6a3b1480f1debe52d50c4f1e
|
||||
DIST thunderbird-60.5.2-ar.xpi 627181 BLAKE2B 589d93182c478f0eb5f96299c331efa2347f74c65823cb1f73757a5f3e101916a1bfc8ba64eff063295ef053b73f4bb4bcdad82d9d9eb356e2652a7a4f93c627 SHA512 37ff00c36a272fed787b313a885eb07b16da06cf74aedd83f0466ab2608c4bb8b18f0db27b15482d597c8a03f3032949da31195fb45482e21543db0b99788ba9
|
||||
DIST thunderbird-60.5.2-ast.xpi 559643 BLAKE2B 88948ed8114293653b5e31f28c8899057b284ad1bf1284428cea887f78381f05a8b36de3298d6f6d52ef68371a8f9d2541c3cc26ca82564ce6fbb3a33d50ed44 SHA512 0125df40602da85a568d9fe89970931ad2d2af599b3d3d935cdc733db300646f428a35655029b950f734708b9827f79e5c2802fa52eb75be64be3ec3812c4470
|
||||
DIST thunderbird-60.5.2-be.xpi 659080 BLAKE2B e725547ffc781831f09ed1c0d2badc07334b2e785e3c6696f07878504d2c22218307376f75d02cc1e18b4a5a70d8177bdc4d74354eb303043ec1af0571b2dd4e SHA512 e3584cdf3234de677deffb9f4033ed6e6855620c891ed4ba78d0451352b1ead56c6b01fd9844da56cabdfcc87346aa59b72519e41f5bcd38fd4f53db3388fd7d
|
||||
DIST thunderbird-60.5.2-bg.xpi 669317 BLAKE2B 3c2ccaaabdc74ffcd6b97d4157f2007260e3577b0cc2c5bb8449b35480c174ee8c53d07c06fc5b6865187f6260cb1cdcf1eb1e2bd898ce608d7a5611b55b7d44 SHA512 d632908d90938336363cd1e97c6459efce7098bd0a15700b1e87984bfc8a57dde0de42ef13f87fe3e1af582117e8a9dc35b5374e9067d7bb296a07d16f4a9682
|
||||
DIST thunderbird-60.5.2-br.xpi 580370 BLAKE2B 5e1bc167039d103ca2c5b587b262620037f08a600ca63992fc5b8095df8c73ede8f0390be15b2eb2c5ca2180c5d6424a382f41b76ca525e1c53c38de1f072f47 SHA512 d5b5a392991e83a52b4564e7f3f4f9c22a1d81dc8312fe0043c36773a23108d8bc117a6e7cadffe2b1461f9e2ffbeaae28f887a8f5156c48af1b57877ad27be4
|
||||
DIST thunderbird-60.5.2-ca.xpi 591971 BLAKE2B 3722aeec38e3a5fe3e141b6340d3bb1674051e035450a4160250981e399b9e3f56dbdfa9f82006b4926199c7260b25104b1ccd5aaa5d5de05a7b57496b585b40 SHA512 97a7a550e3411133c1a7d3416316ec94fdab367d4cb769c28169c6ea00b68fb6938a2deeff9c48f0cd50b96a60e545e28d6862a1767c259a3cb9d1619695c8c0
|
||||
DIST thunderbird-60.5.2-cs.xpi 611201 BLAKE2B bce0e594ca3bfcd04046ae97184659d97389baef217a79b06831195b5b9a72ad4e2aafb4ffd8e3103fdc333688e6a18d626070e08862e9f94f19e40a2d200706 SHA512 49e1a8e7c396705a311386e4eb17683215aaf0fa2ddb0254cc1bf0159f19d731ca76405405fc591693ef1f8064cd33046cefef32645b3ff57f79fa03047effc6
|
||||
DIST thunderbird-60.5.2-cy.xpi 586037 BLAKE2B 535e0f52406b847e3d6d97f232d9eaa9e4e907d394980a7af86cf73323d153f95e3aeae893afb08d06954f274685b8d601bbdad88380a3551c63f17ce083afe2 SHA512 df07bcccf12d489087668378968a12287e3e435d84362b9da1a0dd45e4c8e59ed4b2b32d6b12172bd6ac280b235f6d3fa57bc265a354ea6935429207c6403bc4
|
||||
DIST thunderbird-60.5.2-da.xpi 570807 BLAKE2B d4e6a21e90b2f535a07cdd479f2dc95a2a0c26a08714c4edf89c7931848384987a88fa0912f7d3f192075041888a1225859fe0b59c801de4c16aa05883e3c834 SHA512 d2539e1dd899861c669fa14dc6ee68e63d0ed40efcc2eef3c415373493834fe1ccb7408dd40c6924c95c7848712c84b49ce8849ea5ae6f28872a103590426084
|
||||
DIST thunderbird-60.5.2-de.xpi 582574 BLAKE2B 4cf65ccd34eaf61169df1329f068619db537744d59643e9167551994b2c563b436d68952d7ca3119109d2754fd1b487eab0325c6b3be1c73b4b94325cda4f3da SHA512 c0286ae7b627d9fadc9041509d079ff0859529aa444826f5f823de593a1ea4cb552ca47ce2fa3c340ec86c0836bcf8c1a5978cafa7f8f4bc1ed955310d387b9e
|
||||
DIST thunderbird-60.5.2-el.xpi 694861 BLAKE2B e03692fb9e7be064db997d45e820b66d3ce3d27904aed833d055adffec9608b4405e315c06cc738910367529e719c2a9bd9940fc10fed6f73cfc8ff2016f9804 SHA512 71f639e672791ca40524641d2f16c0a784d0230d1576044fb2269ac62846869cec3aa59486def34b356517e02f6159382a2c22339e4316020f4bb19367a705da
|
||||
DIST thunderbird-60.5.2-en-GB.xpi 553896 BLAKE2B dff58bb1bc8b53c15ca704350ba885cce226a80df73068ce520f47ea9760c5732d842860154ecf4615b94cfa487a7288cfbd29e998ac55b05b3ea6c4ad68e7ed SHA512 f65ec4027e387d32e48f7f824dd8fadb353892896b86beb7d7ab06a563b34f7a6ff197fa14001450d30bbc068b9029db8eb3660aee6b8cbef35c11ac94ecaa8d
|
||||
DIST thunderbird-60.5.2-es-AR.xpi 595047 BLAKE2B f5c47a7e4469d9615fd74a1a1466c30d4e0f844e27570cbfd879a00d6a4df867d3ee946bddcd9382473720ac1f3dec643681ca787171690539a238acb18a152b SHA512 a8cb19daaf72f03bd180d79bdd40104ae2ac7c39a5ce766579b31000360b8b8f229eb4268f13ef13aaa54503056ccfa62c1f9503e6397a06f27fa3a49962e4a3
|
||||
DIST thunderbird-60.5.2-es-ES.xpi 492210 BLAKE2B 42a0d6e5943caff39050ee8e0fd5b70fa560413e1c17ecfb5fd35dc14ed7ad5cd78465a9cff56b0c2b2c7476eb17b62e9db14e66e9b7ab219183edc7fa62c8b3 SHA512 769fa1f1da569ec9511ca3939ab54c85999d2984061490f2f0b0ec1436888ba76221b055e911f108fee1a958b47da9a793db5b5fe5fd6a01dec420d64395c43c
|
||||
DIST thunderbird-60.5.2-et.xpi 570867 BLAKE2B c935f22cd7233c85b8270a001dd5a5c4a4e8a20e937b0dd34ce5703cfb62e6229730b838a24fc8d2d02efd67089e803e29f349d82c0ae8621a82f9b69171ab84 SHA512 8e5c9f39baecc5510778fbd0cd25f277b34ff1c6b14936538d2210166b4551df8df3ed921d724f4b425832717f16b64694dd58f54ba91005c05ecd15917f5e5e
|
||||
DIST thunderbird-60.5.2-eu.xpi 581383 BLAKE2B 75718f909d9d838fcf5b556fa2d7643c17115a7c2f15dfb8f48ccaded10f792536e9d52e19a672bcac69119f4d198b6b490eede63f0c5486e107c2b1428846c9 SHA512 95184bb879e2670070e0484af2d6530079acde528c9fcc9d6f3b48f018620425131578ed9613d8a197d815fe42cb03910727719aef3d1bbe61423c9433ef94c0
|
||||
DIST thunderbird-60.5.2-fi.xpi 575753 BLAKE2B a466fe6bf4cc13dc50b1c6ac78dc8c9a57a690d0231318aa6d6e94dab9e733b8ee050a20f03ee66c249f73703aec1b4372b686b7dec3cbfade7b1c9df72ef3a0 SHA512 2b1ac714073eae1b3d084a2e660389e105eba71ceff41a1883c89c767d2f6f7e8e611b6a5eb4a2b5747dce8ecae25e7ab50a896063c66c273a89cd3410542449
|
||||
DIST thunderbird-60.5.2-fr.xpi 608466 BLAKE2B d641a60daeedb58ed44114b10670d38495d197e9c0ca7e4889128232b6e39fe9f54e6274a30f2e387e3233861c75458917b7a89e3c29e2a9ab29d74e6ea2fde3 SHA512 7e9363c21799bd2e9e8482899f6b323cebdbab220b748b6bbc6820f1233ec99a9042c0003385576c8a61a3aa85860c379cd9499cbdecb805e2fb8d646f08cd46
|
||||
DIST thunderbird-60.5.2-fy-NL.xpi 593850 BLAKE2B becc5782f76d90495ea780ddc75e7b59a19179a28ff1d9bcff3c3ef6e5ac8e0b5a6d6d0bcc511c974a84374ef151c35a44d16815c6690f68cf1f6d2a9a37f73f SHA512 ad29a0c676549db1ab1ce70a8d486e31963559fe5d0ba8afb096e7890179a67ed1920829bde3693536dd19a9825c8d89df7c617ad9c86eadb41ef77f0804527b
|
||||
DIST thunderbird-60.5.2-ga-IE.xpi 603507 BLAKE2B af10bb5b779cf9e5d5f985da23bd4c778ede76326ae816c4d0d243df7a6eda78dc7a894bfdd8aac7e07fb41261c3bb571c6b9d7949b8edcc38aeae6684e6313e SHA512 f9f8ba01b62371a21f0749302ef80334855c87fff85a75ac8f8690a10eb2f674fee61d4ee4fc62d9d3b80ba640aa9c2ec822e44225e5ffd82e94b7c8ae13be9a
|
||||
DIST thunderbird-60.5.2-gd.xpi 599262 BLAKE2B cc764bad82473722de920a5637760c6ef308e78868af1fa5a968c53e7b0e4c09952ad1e5bf7c562ccca7c35637f43e2415b7a8eaf65b6df07ea0b0771c8c24ca SHA512 a9be64f55b23255effbb37e7f8e528c1afb7f0e064f4a94578bc7562e55f8d859672f1535fa157726fcdfa23be1fc4701607f5b7640f4ba17e8ca482667835dd
|
||||
DIST thunderbird-60.5.2-gl.xpi 580353 BLAKE2B 7e110f25bb8faaedf5a6c650be18208eec85068946c435fb26f3bc3db13fe845a468b69246918d1f1172503f6a596929384b211d36a945d71ee70ee1b273ca57 SHA512 04921feeb2c4cf03cd870c63d383e3627b93a28e972f3a744e5ee0957b5cab4a9a41fc7ffd57fa48e55a00838ae6aad849985a76387f4f6cc01dc1a96898f61d
|
||||
DIST thunderbird-60.5.2-he.xpi 617142 BLAKE2B 969007d46136cfa9a1c946fd5ba122bf4c1b5887b6aaaa6ea9570706b5703d487b5804d249689684fc2e84d6827944b3af5051215737a0e228c74e19f9956cbe SHA512 dbca895ee44dccc71e9cade506b7759a7a1c241955406a1698897aa8b33156c9870f4f52e860cc39916707084701c32106873f8c5636b4b2667950fa377f42db
|
||||
DIST thunderbird-60.5.2-hr.xpi 582238 BLAKE2B 601113b6f209f7e4e14032df2507809ba66a08a847a5c8185befc600e09a66697878aa28bddd456887bc7c688bc5d10a6f9cb63547b96ffd6078e417877a7d23 SHA512 7dbdc2bb472dcee7d0c66e66f8419daa40691f115b5b567c82481662d6e2af429132a781f6b10c03df1dbac69ba950184c405d380d348ec45c66bc03edd46df6
|
||||
DIST thunderbird-60.5.2-hsb.xpi 615131 BLAKE2B 4ff992c72bf937f8f9edab268532ee4b7d5044a554553b5b7a2664c6b6aff33a7d0ad98a02710bd5486c5ca29e37e87b63314914dd7a60add0d381342e88341a SHA512 156e5b047b3448ffa9da4f5be0fca47c7fd202e5ff6a978e85ff049345298bff456ca2c824cf0caae41de9bcd614fb45be714e020d2266a9470021143ea20167
|
||||
DIST thunderbird-60.5.2-hu.xpi 615346 BLAKE2B eb57c1131375719fa0b57b13a253cedefd2ee41e51d08eab923b7adc115299e33dcfe27c32d3aebd3cddb98d9acbd090212c7e869209b1275b44b7411b2617f9 SHA512 6eeb24df9ee179f2c6c5ff725f4f34b9c2037a899fae5cb98ef4564c72fe6f6c3492af08227325c569bb160b0443988707422fe2d2c4ba1136b8289cfafdd0f7
|
||||
DIST thunderbird-60.5.2-hy-AM.xpi 653530 BLAKE2B ae9e4d1055e0d87d4b85ac58a7ed5386950125b113f3b21d6c411872e80a728feaaa9b703deb35fd15c4afcd1ffdb2ca17ba6414a3157e6b166a4222f1094815 SHA512 73136da1a107277905ae970f29cb01a325e7747cabec393cb8a0c0229cf384daecdb1c4adba07206530cdb77e2e6acfc8e8dbd4f9332b2eb1da325830c5880d5
|
||||
DIST thunderbird-60.5.2-id.xpi 568860 BLAKE2B 25be80f58ebdf4f517cb811ea3d1ee1af5a64ae65e7c386c042e8a1ce8ca43af3c80ca855496a054807d1686aa25a12e233baefa14dfe4b14656cf2f1918a322 SHA512 84640c7bf4c2258a7d106d3f0c0ba7ad1739a27d5c734dac3e1370dd9f160de9ac5a52a539e502cac44213b402b00c208ff02be1ab3a1d0d0e118bec63c96f88
|
||||
DIST thunderbird-60.5.2-is.xpi 579048 BLAKE2B 8c146eaf451601a45983cd5ca8cb364fd2cba2e43b8cb8c5fa0f4292b13dafb8a26be781def9d760b05b826efa6931dc6e64095384d14d96300fedfcb92dd81e SHA512 00efb0f9e1dd26cb1618ba9ed1c982062c421d67b43e2cabf1df08bf26e97d48fb8fff5e784874aadf3530fe66973ffb8491bbab43766006c600373ba79c088d
|
||||
DIST thunderbird-60.5.2-it.xpi 477500 BLAKE2B a75453089212896d2c8a836c98c14645c250fd31fe326b864bec97da395172b3895c55038cc92caf63f5ac2c60c5518201e0869997236da0ad1b81a09dda5a82 SHA512 618023c224280f354bf6bb634757b21d864e833294b0fb5397eb1cc872c7fdf6101d33730227b31395f48870cb0a0834d1c1f457507c9cf1a622fe6143579cc3
|
||||
DIST thunderbird-60.5.2-ja.xpi 653344 BLAKE2B 10f03d97fe2feed4cf64e9caead6cf49afb73d689e9ed48c224a61c09a2df1b6e7a93c3401e9db947fcd8d983378bfee5beb6350eefd1d70d04aa5165aa1d584 SHA512 2dde47aff5140ea5f1b7b66cd94673161a41df5bf39b95f97a7493d4bd9e61b83162b9473f3f6851af8d28951829aa4dc99b4dc837284200c7706d68b757eb90
|
||||
DIST thunderbird-60.5.2-ko.xpi 619730 BLAKE2B 4913335057a12f91eb4ed44f30b977ea07ba7ab9a984b8a4dbce5286ecb535d78263583849cd579e7477f56675aa0c9c1c0a8c116a88c2b2b94dddb4ea6c0e7d SHA512 6478218b89693bc6ab6e4240e626a3aeee130c3938809d43ec4b105275ec709f8d26e9f00548f76ad54a5b023aa55bf45d855a2949a7022b3eb9dc4fe4a014c5
|
||||
DIST thunderbird-60.5.2-lt.xpi 605440 BLAKE2B 01a94fa311a4304b38972be7c81309ed565e4a76df488990654ad49d81822363045a813308aeb3d2419fa9319bcaf7dd39b227a3782578b982cca91b9c9dfdc0 SHA512 a788c1d25da48c17e0b4ed0f294687774c2c5ee91caa8cda0de14c5560c056dbda4a5d859c4040d4625e737c21dce39bdca7209fd9549521a87f9088d83fb10f
|
||||
DIST thunderbird-60.5.2-nb-NO.xpi 577001 BLAKE2B c62edbb9c4f6454ba6100ce6ac047f2dc993a1ae3e5b0861ff96feb3da46982b1d01035c381c7ecdff4e2227bf91030a9b5cb9fcca29439fa2cbfaf83cf6c9ef SHA512 6d79b5d0e1011457b1f19935f666beb9fdf7b7bbff7c9b525f1f9e30289246b4e64ac6268330bc89a840c3c99e008033b154f156a9f0efd0391b3180e10b27ef
|
||||
DIST thunderbird-60.5.2-nl.xpi 583913 BLAKE2B 137850c48354974e88b706953d6f38b7b9c26137ca238b21d9a7d9b706bedcf07e9ca89935ed23ca8b83f194952906201a9b7ff2f294caae6115fda81f991092 SHA512 eb15367996a464adfc7689f4c30ecf244fa59d5e981aec6334c8bc1d0f4f1ee93d0f03ac305b65cdf032d26cdc9232170cbde379dc8c3f9677271532c12589a3
|
||||
DIST thunderbird-60.5.2-nn-NO.xpi 576421 BLAKE2B e9ae1fce70ad19347c3ed2c4ce59b0e6ee128e25f080c07ce4a9e80ecd9a49605fe5d0e57816e076cd212ab038a1782c30bd5d0508412bd8a6751750fbc98fce SHA512 607c29d099f25a7cb12e8e7c2eb14d96c911eb402c624d3f300ce224a11f6ee80e8a7837304800091d08efc626ef7b91e8e7c9cb4caa52767b93379cc79f50a8
|
||||
DIST thunderbird-60.5.2-pl.xpi 480725 BLAKE2B a4b9b2cb3793faaa41bb465c37c49b6aa9fad00428960f029331d9f88693a8e2530a33d007aae0c12ba914d12d46a970dcdc00585f498c46131239c817a865b3 SHA512 ec62aba601121a8762626ff5ae01f06c6cfb59f20ddf4c145c79fc5daeea92c3276c9737eec17317220c7d335426d567e7a7220b535201889ad287d0d4982619
|
||||
DIST thunderbird-60.5.2-pt-BR.xpi 588835 BLAKE2B 0a510c49d09f2f3c80a974f064aa44ab19b193ee780c34d1eb9df7daf22d3a203b2f10dcb5c074ed17d64527c063467ea0d7afd447e2243efa09685a0c48dc42 SHA512 875b04bea1f5cd9c80962c0000db9ef6fc72d02d8a770018885ec8191f7bc15e2f4a4f2dd2a0833f0046471344a4455774b9a383a9ee0bef74ecb5964746b91e
|
||||
DIST thunderbird-60.5.2-pt-PT.xpi 593186 BLAKE2B 07de1a3cf34551134d908120cf65d7f92cd2c29174073f87f0a35a29d055bfb400fc5826a04c93dc8b1ff346215e3fb15cabd7c419ad735cb0b6b0125e9ab55c SHA512 e2fb184dfb60a68a29848be32ade59be8e7ed5fe4d50a917e55cb8398f77c5b38ac93a012df8c6f0dc71440c41d3e929f110fe7b06c672ff8f74117051789584
|
||||
DIST thunderbird-60.5.2-rm.xpi 578384 BLAKE2B 74002f3c5aa82b62eafa049d4949756bff807fdb2da4ce361f4bcc994fb9201c410ec442949f94264d4827bed8548fe55286f985c86150dc4f14c22f5cc4dea1 SHA512 92e159e46fc09a0bf13861312c248af34b88dc9ef9f6e2d3a566ef8adf388efa484202aff4bc6e6785a032b9ca3b4f215f16566c6f4aea21606952aadc7598ad
|
||||
DIST thunderbird-60.5.2-ro.xpi 584308 BLAKE2B 2637d2903f0b9898dc8ace66425a1be78933108b3b72c011bd4aaf4cdba58121e39ef9f75c0975eb0fbd27e07465a2920826c38267983ff27d38a893ad7e7849 SHA512 63f9681887ef8407e42cca3257a2372f7d2e0640f1696a5e11f18d902708768e2f76ad76d93090eac8d638f4df5744a68d148adf2e414e0d2eb9f59bcc0ac80f
|
||||
DIST thunderbird-60.5.2-ru.xpi 694705 BLAKE2B 382b0f805dbd74f3bd4fc0169b9f90ff2310912d6ae35c76d1ae32689b1e6aec21d4c0c83b4c1f3652539e28284092a21aa73e4f5ef51a4b1520d3ae9978835e SHA512 0cfa206358b894f45c2a794c62bdec1e899beb53ca94e474064fbdaa92b594871f9631b4c80eb1987ef5a821f3e100aa0e772e1361011b019639977964b0112a
|
||||
DIST thunderbird-60.5.2-si.xpi 647596 BLAKE2B 2fb9b88e1c53af88049f807244bc0dd8fa738c6f186f2a7475598b97c95d11e86c25285469be73cc31742e8bd6f6250b62603e4b801ab116bf682eab9ade83d5 SHA512 493238e01bfd5e2d2f2a551f19c656fdc43ca05189bcb7ac05308289b2ff1192b025764c1fd07eaa16195bc7e691955c6f6bdd4d7dfd89df89ca8c9f787200e0
|
||||
DIST thunderbird-60.5.2-sk.xpi 612215 BLAKE2B 87ebd5db9b3bff2b61493261d18edbe4b1a1095db52649b38a8bcc2fe902d3f6e0fdd553d061bee781ffb8c96c7dfaa9dd833e07f0c4f0680124acddbd26de3d SHA512 2ef3c6cd1ab2a520b0a5446bd9e5d90e00b94998fa158b2b3b0b1993c5c1cfd2cee50f676f1d3b9ec07d898b93b0764eb104fbb812ca771195d5590b2503da1c
|
||||
DIST thunderbird-60.5.2-sl.xpi 589947 BLAKE2B 2663204b0efc75b6eecf64292f9bb059301d21aa2514b1068bfbb2eefe6dba902476268d84f80190d26c609515300a5c139c8e233a4cb399eeb6e8759c1dcac4 SHA512 25ac21bf338d05b3ca4e2fe5ac315b7e4e15f89a53d3f64bb44e44dd5feb153b1f09db56d0e701440c33e2fa2a9245c74056478f6684f2fc7cba2da4c5b55fcb
|
||||
DIST thunderbird-60.5.2-sq.xpi 593096 BLAKE2B 625b42473c31cf2c6cb8109bcf6b4f736f59cf6a62870fc1ab8c38449d1fc40bf33bbd18b3f4df728cd855d3134183b68b156967b02b82062533752346fd41c9 SHA512 2e12f8febb1d7c71654d93439cbe6c52c391fd602503187d6adc1934d9c8fc4c92b44bd3c9b3b01c4abe16317ef5d183d315ee44cfac453ed5576305574d0361
|
||||
DIST thunderbird-60.5.2-sr.xpi 641525 BLAKE2B acf0b03cb5758424442a112e7893004b508bec97ba0026aeb348503668b00a48c172507f909bae2088b46db6d3ea227b3259c0c064df32d8d11d21ccacf09b2f SHA512 0a88ea24708c21acca2bade7744f10f7a39c7d1c0af4af70b2a02a19125d3a224eab24baf7a0b96a36504b963276cc04271930e1fcca88a21698b5df313c8b79
|
||||
DIST thunderbird-60.5.2-sv-SE.xpi 594079 BLAKE2B f5e7f1f1814a4189c3e2e0ab0c85bdc553ea186a56bcaa4bdbbaa32b91f3ab24479488084ea754c7b9e1b6428d9be4cdacdc0a7b25e50fc8ac4f6369340e3b8c SHA512 dedaf44b97b3980b80af0ba2e66c8ce0adfe90199bbdc5c0279cfb7735023c3794d811a5734e05112c7481d35ac91521e1b9d1293c3e43c8063d42c69daac042
|
||||
DIST thunderbird-60.5.2-tr.xpi 598009 BLAKE2B 673201ffa10c79080632043c1dcbe5baf32a03e91ba31d25cb1e88e06717f5de63ad9919eca3297165eda9d50be9b073196049e007e4e4b2642048d1ffa66f0f SHA512 1983d8e696d51aa7d1ae2cf621a877c37a894a3084d02b4adf9387dd6476b5c838f271dc9c6503c47d967d20e9cc4ff5cbd6accba66ec36100be9ee8cbcd0855
|
||||
DIST thunderbird-60.5.2-uk.xpi 684154 BLAKE2B 1d43ab8380fa638168164703d4a9bdabc31d0261e3ab48b18439db331ef53042aeeac65bac89ca7edc8f58875f2efcd4920434316222521fb476a9a283655ea6 SHA512 758c576e7c71d2b30adf1cadabd15e305c723304cc3e4da3c460aa9fd71c9fd18ee6473212fb2f7628d93216932bc4d5c03e63e9beea21471c8237754d347c90
|
||||
DIST thunderbird-60.5.2-vi.xpi 637199 BLAKE2B 32c35742a72d026be903c593f6df1428ebe1b3ea38c822a2cd7fffc1e1d876f8285eba09163ccfef46ed14e17e34716eec8ae2fe0545bb2abcdbc35ae300b25b SHA512 d1e414d507ae4aa00d1319e2fc0262d651dae334afe84a9734d3bab9595cd4efd1ae545f7d809d186d0f6ffeff1bbb214f55619b5c56cc0c61c154e22b76e0e2
|
||||
DIST thunderbird-60.5.2-zh-CN.xpi 626282 BLAKE2B c440499bbd49f499a2f51a69bdcffff0d50d614ea2464cfd0c8b27fdafa03946a9ab850d9c064807964b9c4fc623450eab7d0254da8bc9a145853750fe3021de SHA512 728c6039dbfa79d04291f06cd38e01e66d761df6fb7982a3961f5b14cb92c07bc12fa02090859d3f486ecebc74463a86b257a65dd82070018a26928d9c002994
|
||||
DIST thunderbird-60.5.2-zh-TW.xpi 626189 BLAKE2B ba01e8eeb02e753a59be2653e9eb50c79fadf193d1b028e7791f121a3e18463d0d1af2865a44c721f82dea5effc5ebd99ca352baa9833eddbed137c0de9c657a SHA512 7b47e91277f9a24aac0e8d8f5d169ab8f9fdce44fd43b090dc45e01a3d528f0b4028f027dddfefcb03496a85828ac1bfd3d5f567341effe85bc832605ecf7cc6
|
||||
DIST thunderbird-60.5.3-ar.xpi 627181 BLAKE2B bcbbda6174b102f9110fe470a6ff338ba5b16d155344398538b806a886b8dbcea6ce05f7ca22f41354844d275fe513a25bedd3c4fc780cf9672872c81b000d59 SHA512 6aa8f6d06d03b790890d4bb38fe90bca4f5a2b93be327aa1bf149dcfd19b548f1007cbc938ce81421cb9e4f615582add43e4a81f3e325b4fe27c9fcd3facca33
|
||||
DIST thunderbird-60.5.3-ast.xpi 559643 BLAKE2B 1fd59bcbf38fc70d7b7ec8d051c91253f054c238a1d4c21df05d31f036b56b01ce8b7eddea1aa45a21e4bfd86d879b5f1f86101e16e6c4badc96357e1422df97 SHA512 5008e084f9dc26caba3c04620063a85c7db2f2b89c2eaddd77edccf8f324ee054ca92eb080a364a61e3b73cd87a314a8d41e49f8f9b27e7601fd82e1f6f1c013
|
||||
DIST thunderbird-60.5.3-be.xpi 659079 BLAKE2B d9997d70653cc422fa8a3a1bb73076691eb39f059886849637535334536cc5947b28ee3a802d9c2d51e6c03fde952a28f52d15e10fe8627406947ac70cd20720 SHA512 6232ba35db14fb99856f09c9b66827640332abc09c78ef99938050e3adbc58d039318eca3a9f1f154a2a2c526796de3d355b5c5cd789b12168c993498bb67c9e
|
||||
DIST thunderbird-60.5.3-bg.xpi 669317 BLAKE2B 2d5291c752de13714fd0a4373e43550fdec53e5ca26d7042167255854dcbf0c327b60df5037299d3a4e86224e33fad491ccd26952189c5420ff0d183487a8503 SHA512 c73f41e68e671172c877aa1a305360db7caa7894361c1d0ffb9d0e0b6b1c5c00958fdd4e4068c3bafee0da0152aa5f01f1aa115227331c5e6ebdb3b7be1f700c
|
||||
DIST thunderbird-60.5.3-br.xpi 580372 BLAKE2B 3e0bd00b75411e63faa49665d9effbbcf2286a3595b2fd04f313cfa9589990de170f028db600422cd1738a4df722722c8125ccf0e172a6cb420236436c8f37f2 SHA512 9a17707c485c3bb8203ca7daf50ed7fe36b08376fb454d3fef958dc86c10f2f898fc534b5366cf39187740d8ced3be456ad18af9da684ff7425339630dab920e
|
||||
DIST thunderbird-60.5.3-ca.xpi 591971 BLAKE2B c00610d637419eb909ed07fe0d87ebeba7aa03eece0c9b6cb8dbc5a8f9ffe34131858a6cbb07a124993f5d79be562fdd3e4be787bc150e379d32b9be5921a541 SHA512 39489e3a9c000572f8e7e36e2384f03169df30ea84dba5890260975cd99bc831f2cc9c2325b8aec64749b48f2ee8d08c803c8f637ed7ad8ed7fc70d6ce797b6b
|
||||
DIST thunderbird-60.5.3-cs.xpi 611203 BLAKE2B 0a331732009cddbaedb93d4a1cacee3762a562e18e542a442f55f3ae8ed6bedd59a5ce5b099f15e6a97b6baf05ec3c8a67fe2ada6ce4807e5da4df53124b44ae SHA512 d83e19d7a89ddc162fac3ebf71cb0c1213ed259788549fe3e75891eb8781304f9ed238e9b64133bc69d222f54b2ee4bdd7c5b4fe2eeabb98e8dc8bd5d1c93574
|
||||
DIST thunderbird-60.5.3-cy.xpi 586039 BLAKE2B 2e969443daa6ea9aef183ea46d53b1978d30712a6b85d73e796e2a94a06e6ffd3c2e99b7b9da49ebe84a36e1219bf37b408c071cbdd68cb9f997688d22e324e5 SHA512 9508ac8cac4c711bcaab9a41eebc4ac01c5fe09f2c501008643ae0b9df16fe9de0fb16a2a1362fb58732214232570f3578df6bab0cbb4a6e166e0dc92caf2934
|
||||
DIST thunderbird-60.5.3-da.xpi 570807 BLAKE2B 72f4956929d549e33cae9506de26bde8de814fef9ce04495137c2b443ef9f3cfebdca409d388652f69e5240c35b9b4e58a49c46221dec8ae1f610f4729db6e8f SHA512 c366a0d7940595c8b53e69ff961f5ed0580d291b89ecdc1db36ebd9da55153e951d790866a6f025e288856beda8fb43269d8576238a704bb651657af7ade6e7a
|
||||
DIST thunderbird-60.5.3-de.xpi 582575 BLAKE2B 5613dea86e8c725a33a2255fe1dee2f014bcd9b7f1a0828457d30293a23f5e4ca22c3398afbfba9dd9c64d9ed7bf2b6ac55dc77148b9ee53ce6ee11d23473caf SHA512 46c5405368ed6ed00c747a6449d815396a7fdae0bab5472e5b5c061acb3d8b5ffc7d08f776356a0b83bdddb77ed80bfb078253d5efdd56559838e11d4d90024d
|
||||
DIST thunderbird-60.5.3-el.xpi 694858 BLAKE2B 7a0e1af405d4cc43857aa5b23a002baf30914ed65ccee1fcc1b491c0f060a80cae736232f23504ed1a7eff53a11d1dabb4f7272fc4261ec7b791d993edc940a9 SHA512 fc9beb99c581aa381c4488c2e9396a429a3fde0407e8b2b4684182882c8b6d1551f73d0c7ba7d5c050bdee0d13487653d71a735a15ac158a0153cb82f81a920a
|
||||
DIST thunderbird-60.5.3-en-GB.xpi 553896 BLAKE2B 81669f96a10788f9a8a009d0390cf3b0dedab006d6ca3b8d6fa57d4e937386ec213dc83503d369e33e28ccb4f483821dbc1d6447009f7fdc43d6efca94d765ce SHA512 44de972f64b8c276fb1b23220666245611e771feefa37f5d293795ceca6bb9025345356ebd6d45eca4e306abfa7303404776cb4155d356af1dc4bceed282ccea
|
||||
DIST thunderbird-60.5.3-es-AR.xpi 595048 BLAKE2B 882a474d22321bece82642452f268d8c07dab7523be97551ad96dd7352ea10f1e4ac78e71b536dbda65a27fd60c14e08c1e3377838aaa8c8adfac7445b727b55 SHA512 154e2841e2c12df883ff6c381ba82b47c177c52cd831ff89d3ab809f88acc7125eb6ff7bfd4f39e7894e38b24d8992c2f174ae5b8710c5fe179ca73a6fe0e43a
|
||||
DIST thunderbird-60.5.3-es-ES.xpi 492212 BLAKE2B 50008d0c8f97e97c25f386c690ced14dce894122c41d97409c8875bf4979bf656d195ec3131f42e86c1ef0bbd8978c1bbd6cc118ebfa5372c1f893c60f31cdec SHA512 fa21fa829b64b7e68062b6c29d9a757f35d9e5be9272d772796a311576d792ea2af2e2f25e6cf81a246e6085c203c1e805e9d0dff1c6a78f498b31e17c1d2d97
|
||||
DIST thunderbird-60.5.3-et.xpi 570868 BLAKE2B a59cac3030f20345865ac1bef0a4baae8d69080286d5f24db4930c5866b235e6127d1a385510de4a10fed2fecbe0b7af74b3a505c32c24e150a5ab38703fe893 SHA512 f3df4657ef1d76c9469ee830f94aff0c0309952efad0f814755fc7fd758705b208371af15ded3b985e7555aeac4791730627cbbe719bbd9ee4350a4de88750b1
|
||||
DIST thunderbird-60.5.3-eu.xpi 581385 BLAKE2B cbe9c4b6aa8bad77a7508403944b14f4b3871641f3b0e67b892640f685389dca66d0cb99e07324eb51b2b0288987d9a8daca83fed923cf4b792a88f3c5c13c9a SHA512 33bb369235c458c468a1928d3c341f17a61965142ca7a47223e221dd3bf8162ef40349057204a05cbd7dc029529ad820beb58b70a75035680c61f82b0085a9b3
|
||||
DIST thunderbird-60.5.3-fi.xpi 575755 BLAKE2B a7de65dd9665871344dbdf524bd0b66180c53c2f0d097840d0be6d015bd23cae38c6afea5c04b94403bfb84bc66b372641aab78a52d6f8ac2a9008e47f991877 SHA512 76c150e0549b913fd76317664a4b1ef8d0ffc1ec15b03bf44244c70bf237f3540bb886ea481f02941a2abf7e04878923d6af008cd08b4894eb7a1071bafc6a01
|
||||
DIST thunderbird-60.5.3-fr.xpi 608466 BLAKE2B 9a60f7a16a43cadc2e6556ebaae404963feb5efe2a9183a40d60c04906ad95a7839895622d0be3920a203d29b026087d4a95987ba00776539ef4ac4773a071fb SHA512 a47d98577f346c02a178408b0c5fda39e28c09fd17da56275c1d83f8c2eb080d270adf4a7e14af71c3e9db917d201492819e679a089a08f16723934845fc53c0
|
||||
DIST thunderbird-60.5.3-fy-NL.xpi 593851 BLAKE2B 9bdecb6b31df3a896b2e0b07f0df6d75e83618a88a0311ff9e720c03fc16755b75201442791cc4fbf5362e798f59e6e6d23a8de7993aba9cee7326f2efa1274d SHA512 5b2c824da3bd80d9e900227e59e9e15d8de3c819deced24e163881082ce578f4f82c6fafb38c350f6f0a06375ac1ea1b0e04d45a3294619d24a14c26503362bf
|
||||
DIST thunderbird-60.5.3-ga-IE.xpi 603505 BLAKE2B 1fe6f120f1181900613db972e332e0b9249f457262ac4980059ef061e175e247ee0316776aa7e41fc1051e65cc63150f1b70d631d04d6af07b6f22e14a68e7fc SHA512 e8624d2dcc33e3dd4aa74bb51ec24f18f23fbf690b7eb147582394cb223d840cae05b8ade30dfb7a71cf08f17c7e73d110449c99a550089c1456086a731f0b7c
|
||||
DIST thunderbird-60.5.3-gd.xpi 599262 BLAKE2B aa206bcea3a21c5e487bf2f10dff0c47eb24dc56801aa56430802f952a63d8cc4f98580715b4071473df0041df97df626c704dd5a9c6954976a476f03a9471e6 SHA512 88aed8ee1748615bf217fa86c2454145bc12e1d433a10a2e0a7f47ad75251a9def540e4b419661ef987961992aa7bd294453ed222d0371aa4747efc79d9be823
|
||||
DIST thunderbird-60.5.3-gl.xpi 580352 BLAKE2B 4ad06648e88bf6d61932fb0c8703261a90e6590ef5dabd78a1d851c9b1379051aa6c3688be4fcf760909a3da663ab93e52d6f89d538b9fd6d4d507f664b0dd94 SHA512 206d41c81cef5a6388c4e9293affc7d29315db3ea96c76133cfce4a881e3a8e25582e917b2f0f42fc90a251df8dace46a85be732bc2736794983d28ddfd3e525
|
||||
DIST thunderbird-60.5.3-he.xpi 617144 BLAKE2B ac6683598fd25da35426268ccfad0fb651454aafd598fb584149ea7e53e6331d3f578bcff1537bd1cb023a3080568dde12544f1496509d78bcd393e9dc8e52d4 SHA512 72606b13bffa02aed21ca87043a72e8dededebca9045e51cbbe9fcdd378dc63e8104249c2e58562019322c0fb18a75b12b77aa3ada32874874653d60d419a896
|
||||
DIST thunderbird-60.5.3-hr.xpi 582239 BLAKE2B bfc325a8d466ad9252dc2b9caae78df8b68a5043f52297efb973732e9187605a8e17072bb36ccfca1349b7f1746249ccd79ee2e6471c99434e1c23b88877e8e4 SHA512 b4d417df37e942670354fe1013c56b2bd8bd24a65456293c21f9e1fadf1e24f2debc9f6ba74412726d59484fa9fde0ac9f3ab1c02d3c40b5c30c2a2af3e0f4e4
|
||||
DIST thunderbird-60.5.3-hsb.xpi 615132 BLAKE2B de2b4937fdb271865cfbf2f7c3d5d58e21264bf1dff866675b507a8f4bb964898ed78ca2e7ff7ec73fe7a2084c813fa833a49c544658c9a2334901829ba9942b SHA512 029c115e0fd733d6711e1de5faa6cc08823f581193fe6c3e08b1d3c9c03bd00a9f57726b862abcccc2d81d30ceebad7f2d4b806381d19c4183a98e4946b32d22
|
||||
DIST thunderbird-60.5.3-hu.xpi 615346 BLAKE2B 618357caf08541a98463fe28b1b15561a58c92192c24e4b0159c2677f5e01b393945c75b970699ae8bafae0ef32bc4efc1306a03e7c945a40e9d32f64071d63e SHA512 c911bf162971dd10fa644bc3df67dda6e58ca1b277e35c3491be8f52a177c8a0ece2944bb0357688f20c0597aa98584f79f237b5c73686162a7ddd0a5e0b2a57
|
||||
DIST thunderbird-60.5.3-hy-AM.xpi 653531 BLAKE2B 4abe52413106cfb6fb2077e65c631e689ab89e7d33cee27c407fb604cbe3975a9477e2d477dc553b2fe5eac3d378fe59a1abe456cfff9c6d935138199d99b79f SHA512 b007c0c8a9b792993f3eaaa0aa3dc875c245763b62e2ad0f1217b098057ac397dd415c29b5f1269d531dda9e3e0f7b998f10ca545ec1f12ab1074b1cf9b1674b
|
||||
DIST thunderbird-60.5.3-id.xpi 568861 BLAKE2B 8d2c50984cd6f6fa33f517fba151e5bddfa60218f7a6d13be651ffebc8afddf87a76a04ab7d71ca79588282e279cad3fa856176df4d92bb184cc589c83d4ef59 SHA512 8d8ca7af841b2d7bb69b95c425b8a94f8cb7ae896f92243edd788c21a45d0fbf08b462d7fb5bc017efa4b6e2254f06269b117abc8757b72c29bbcd027fdce0cc
|
||||
DIST thunderbird-60.5.3-is.xpi 579048 BLAKE2B eed2475a57873ed9cd078bd3d618e67468904f05dbfbb9106113537b5cdc374dad9641daad3c139cd51bd0c7f37857a9f58a83625f7bb350010e9fe790110596 SHA512 6249b0a56a73fb79f5886af127dc601e2a8b92d5afb0d57866a536d0e4b1686bc7ea71e15a18a76a1759885ffb31edf923e31dab18af36e710e128421af2856a
|
||||
DIST thunderbird-60.5.3-it.xpi 477500 BLAKE2B bb577887568e672d8c92d06cf9697aedd682883b6b6c7047845533a14a9ba13d37e685fac899758d0141136b3b76f797782d2db96e7a36e10202ff5c8c51dff0 SHA512 212c90e55a56f035bd38d60433b36a030b64572aae79d1755ef9c0884b7e071383fd1153c8ee64482e1e0dabf699ef52031ef6a722bcb160bad02d0edb789f59
|
||||
DIST thunderbird-60.5.3-ja.xpi 653345 BLAKE2B 55609176ab64d1de3a1dd5a0d26cef923fb42905d00fa9134bcc35c50b98d27a6c5472abcaf4c1272bc1ce64d7126206d40d9ddc3ac4890a337cdf0b3c96f2a1 SHA512 a0ab061dfbfe74a0709531b011f2c897625c6782601868ea12f8a85ca49615f83fb3dd5d1bed4363776e08664006e7239a0aa7c4699c5a74a7fa403a827d00d7
|
||||
DIST thunderbird-60.5.3-ko.xpi 619730 BLAKE2B 7c68c9921c125535c4de9abbf714a7dcd0ab52369a506734ed5f7253e14813adcd99a1e6861f56182b5214c63a1bbe52d7a6284713d789c7c5244c0d68cc7725 SHA512 2ef936ed6c1650cf3ddcd04d58462a4f13d0a492c32920dca2606ca6adf4d8bb78b8bbcbbc000e442e841a83e35c6ebe3e20536ca2c81d087bc5fb3f1b8c3547
|
||||
DIST thunderbird-60.5.3-lt.xpi 605442 BLAKE2B dc3076dd4869da8db04f0911f518af1c3f8d907f82bc86a51fb1d5ee701154db0d67dff945749788e5b97a5bd2f772602f7ce2f167582fdda4399ec56e99e84e SHA512 876e70411b5aa11f041b1bc8c8165263248978c2de24dc900ef89df7b862368b4d4d36fe08af0d91f0b90414d48b677fe477c7addd72b5a24ad0d0be305c5448
|
||||
DIST thunderbird-60.5.3-nb-NO.xpi 577003 BLAKE2B 58dcfa3106b47b10f7d95af8af688f7517d53325db7bd87221ceb69bf75ffe98ae2d719c6017caa477211ebed9e63d0368ce36f522c0cfa97c09c7bde105360d SHA512 a05d9e3911b7fad6b413cc341d13cbea442646d9b8ee07c61528d8682f345a08cb7295ac42cdefc25210e46b51a7086451bbacd0bf0ed4ea4d228d5928322a94
|
||||
DIST thunderbird-60.5.3-nl.xpi 583912 BLAKE2B d773069770bf0d20f8f8ab30329ea5803e3a66319f655c3c8b40058bd927bf40b495b13465ae130652a5d499e427eb6c78ad9df531b93e65cabf8e95178b9ae0 SHA512 52eb896e06672ce2a2b39c4d212c64bb9d5912bba3cb6f7d5e7b2ad7cdcad4cd6e2758aab8847e470c0ea2f8d02f2498d4bfed64094af3aedb599f94f54fe639
|
||||
DIST thunderbird-60.5.3-nn-NO.xpi 576422 BLAKE2B ce2e1361d30f7e69277328f822f2da5428d103003910df33e6a5d314ef0e4f5565804de4d0f9102545118099f22e60babfd865a89d666c14ae3babbfbb3d32fc SHA512 c214e5cbb314ba54951d7d6f9ef3c9342676f2485cefe1cb3aa2a0dac4b0258aa724eb3f2138c5a0243c8cdbc6369265d73417857a387e2fafc7bcfa87c9f54c
|
||||
DIST thunderbird-60.5.3-pl.xpi 480725 BLAKE2B 1b53c166476c94605131ce6f816e860ef574c25360ff0a971c0781dd28a71ffde3d272a41f908321d0ea8b6a78d00f453506964b79c0571728304c2651e9521b SHA512 0cc7e6b8d437d81c6448d815c028d8af4a5c8aa7f23f8d75c49e7fdc47672686c47889361db72fc6a301b7511e944fb45922182b01309de2e5d48617caafd982
|
||||
DIST thunderbird-60.5.3-pt-BR.xpi 588835 BLAKE2B caf4ed9eebb4e659375e74d1544283a51b9ff794f89ee979437f509c0806922f2038c99d8f0eccd718403280299aa7a72f8bd5d1a40f1fa5925edebef06dfeb6 SHA512 43a3379e062ecd06ad0a4ff8847d18626f334f9681ed60fa189d748307ad24b79c58d052c4f86c1296d117a2758701d27099fe28a2451e11721e645767ea67d6
|
||||
DIST thunderbird-60.5.3-pt-PT.xpi 593186 BLAKE2B 2870e5484619041676b94f672e6b94998f9b44855c07fe73ea27f5b362d9c51f4b605057909ffbc1802bfe3b47c1926940ccda6e49dec69f6d81dd131637cdf3 SHA512 13409903e2da5433461e81fa1354196b17180ea75d76924d9d34cf52c9cb15e1cc45e94357b936c9ffe8c140e81ff5153bfa4460e1cc463669f1cf7c9aeaabbd
|
||||
DIST thunderbird-60.5.3-rm.xpi 578384 BLAKE2B bff6310528b3d7d99103615a36c4e94fe0df33974fcd3c958463f1b32c59068e6b28e65a3c2969fd9b372abe109422caaadeebd6ac47cda2900eafd2cfdad16b SHA512 700ebd0466e7a82c85445b56cd8f6496b03d1f623cec9a2eff57d6cdca7dffe5d77102e5cde5707ade532a3c37899d0aac99b06f4da78aa5422ed333712407c1
|
||||
DIST thunderbird-60.5.3-ro.xpi 584309 BLAKE2B 631534a9321f4f1dc1e731f4013933ca68360cb251cbaf07dbccca2e4793b5e13c41fc95016d9cb52531d60ef9a42080c5887d264a11f309e91cc76519ec56a2 SHA512 913079718a98c4db8cabbf30dda7de4b95259b45926a07a76703b7a07649f176b6909f45d235fcd0c4c912629c3867bd559ba74f66d71aae174bc1c785c6df76
|
||||
DIST thunderbird-60.5.3-ru.xpi 694705 BLAKE2B 566c5950746274596cbbfb7e8f3eb6f63fedef91a39a3b97becc90abac28f97ac6194c9bbb64c7bc1eb7df6e818e124d56e58d8770731415835b697e1b86a4fc SHA512 89d276131c8bf95b67671c58aefaf1892faddc306a16f6dc656af4c33c80b5db87aaf229d99425d5f97561f2bf72788979d03e5b36d4dccac83678058d82c8fa
|
||||
DIST thunderbird-60.5.3-si.xpi 647592 BLAKE2B 213e0e20201758b7eb22fbd31f6bbd53eddabfc77b4ca1464cd96556f0e0793c7487aeba3b03cec45330d6d960b06b1744fd07a0869201f97194f0cb781a5b26 SHA512 457afd678e39f9f8062c2a26c6249d5be464116992080c2138528b02fdb1f0a5d141be1bd043a7866c2038ffe1146d31944a3ada836ce21fa22b904307107d15
|
||||
DIST thunderbird-60.5.3-sk.xpi 612218 BLAKE2B f281b2b86615530e396515efd1e88a3ebf83eb8a63692d2c06f21d7c91e238c6fe6069a521e47e5f3dd29f7c4b46f017cadc3e21563d38145ac1520acc13496e SHA512 3c3cdbb8f9fede704fc1bc445cf5129739e263a13d7f2c9a1171c7707a25f5079a941248ff3cc6a65e5177cfdb595e04b056bbde413ffc6225a945a18fe46632
|
||||
DIST thunderbird-60.5.3-sl.xpi 589947 BLAKE2B 1f75449b5b009965d4b378a19c3c981810bc8b9302e2098d0ee5341bb2073fbb8e6c8ba7320fd0ac07c5a927651d4ac0b6287ef6de4188aab96683473558da22 SHA512 1550fb8cafc7b6bf1ed1003324d2d6836253d7e42bbac697027a8e3bb8436bd2a176b4d0a832568aa2bd2e1a664a38d51d3bb36c22e219871caf9896299f3056
|
||||
DIST thunderbird-60.5.3-sq.xpi 593096 BLAKE2B 7d0bba5a472600b5204288c13a673e61f5e6b6bc9db0dd61c4f90ef8ba8907deac7e2bce5c7154a7d287e37f5187088ae2cf0a1f3f1f0a5ce70c0fee60ad8a8f SHA512 3bd718be055e53be9fea9a83039c1b6103b24911d0a5d3710723b64ea02c4acea349a1ad8319faf6451a55733190e4c2bd87f47358725d81aa20e77ead3bc86d
|
||||
DIST thunderbird-60.5.3-sr.xpi 641527 BLAKE2B e9b323b4ac9ed89913d364c000a504b0ba577940dffea6c30cc44f2089640e6af8acfc9bfe8af89bd6d49a7fa15bf801c343c07c0acba42ba7e8537f03edc1b2 SHA512 9eaccfba8a209dfb97cf6239422d9e12340bcb861321ed7f439f864d8834840d7e7e4f6664138ae79d4d8f865b5b72c5aec2a044aa2ab73f25a06fecd9b87d78
|
||||
DIST thunderbird-60.5.3-sv-SE.xpi 594079 BLAKE2B 668df08340d40fb6ac7b07c04b769db165996e92ef6e028357f2fb16bd695b77c820d47d11dccf4039d681033fe78699aa13042063f6be4d83201b5a50da4cb6 SHA512 5862c2736209128d2eb20b1cdc75bc1296aca3755685d962674c4e0a3b0b4441fc0f410da080bad85386474c5c1eac8f414d96fe2715343c81f3c4f18487a4e5
|
||||
DIST thunderbird-60.5.3-tr.xpi 598010 BLAKE2B 91225e58d72ff5264d13e6a3bd783ed907f7f067e9a9f7a34704d42b16f6ee596d93631cace8fa3536acaa820c826901108eb8e2e9e84c0210dd70c63b8b9295 SHA512 a368c162b19496e83a27c28161909b87e45d50a1faaee312a50ba0cd2e2380de1aa9c512d8d354cfe1972a3e2ced24d3aa62c951076a243336fbecf5b39778fe
|
||||
DIST thunderbird-60.5.3-uk.xpi 684155 BLAKE2B 079bbc16e8cc9fe64ad203d04b735a297724f55975cb4c62a78e1498f081300102907c06c3d9c3643cb6105ffd668220e6c678f05d005d292b95315a6d4401e2 SHA512 7e33ed75dda430329ea0014caa382e3f8e6c57593d2d2178bea8b14e5cc8d8df48bc7a29bc423e88bfba083d62c338a54b7a00a0ad6112861fdbfa7c4a6a5031
|
||||
DIST thunderbird-60.5.3-vi.xpi 637197 BLAKE2B aaf475ec7800c6ecd5d450c0697e6f9ef53c38a8c77ec21ff6a4637e3e496d34e671c51ff5e51b5b1f4cb88dd7afce090050c3e21c07bae7ad0f3e36d6ae4b68 SHA512 9ded56e89a932dfe84ce0505cc6f927dff4a106351483ee7ba309d45b4b663f508fd55c59b52869271798e78dfde907a4c38d091331ea1dfcdb709e4d9616934
|
||||
DIST thunderbird-60.5.3-zh-CN.xpi 626283 BLAKE2B e8f63b43a7060cd6a56696d38b7fd7a35311b015a576ce3e13dd5528cb97f914e3dbf393fe71d29f9d1355769e31b3190bb1e9584e8b9992163b24f122627b63 SHA512 a83c5e9de03027ee62402510daa6c7afa58af300b9b2605f840220ccd70361492011473f1b9b39d0162235471175c50b998aeb56649f087a87fe9cfe6225c927
|
||||
DIST thunderbird-60.5.3-zh-TW.xpi 626189 BLAKE2B 91175d151a1ae7f0a191c30b3e40ce47b2616fe7e3c8a9aaac1fb832b1dd29dbf74868015d909b17eb14356e69f80f94ed0a9126e9cdad640e571d7730a1c0f5 SHA512 a96dff2e5094746cd84ec9e14b88580fc3481a82d0f52f78ef970164bbd7093fef1eada4fb0a832397a39a98c7d4dbdac8a667e071483e36a5e888c0d6702158
|
||||
DIST thunderbird-bin_i686-52.9.1.tar.bz2 51223475 BLAKE2B a30b4679ff844fc9f9752fc6048b266662708217021b65406d587c0f8e8c0793eae3f171465bee58bdfcd635a909398bc65d3d4f07c3cd986f9edcf069d06612 SHA512 69121dd8b2445e6304f4437c06e1b7f423b19d4069290c0709a3356680613964df138c417c3d258bc978d8709b9ada28548b43c93ea9122b64daa046d96a6d78
|
||||
DIST thunderbird-bin_i686-60.5.2.tar.bz2 52623952 BLAKE2B 9db5517f837cd3f269a79d9330a07adddf6a16cdd6e7c7cfeec82675033e29fa247671cb9d44e061a92b0470d06ada5c88b0748e90e3a603de1ab41bf672f7ec SHA512 50b50e2df00fc2a71c555105806b2134ba9f7e09601e9194334ac2e89e53fb940065e604b56c22a8aeb97ec6f30fa8cda6881347a53acd22270b38767c3b00ae
|
||||
DIST thunderbird-bin_i686-60.5.3.tar.bz2 52603826 BLAKE2B ff2d5062bea2cb523cc548baa34d43d2764be6dcc3c13eac5116cebc547f6df5e946b7b47daad54f4f84b115994a23d5e452eeffd3e3af073bb4ecb2a2d334bd SHA512 8e08fd1eaaab33a18b07df167474b99ec096535cf6d90dcd54eba93b471dd80822732a84a0f10ff54c204e9f76b6fc600edae7be500b82a444a58ea3104ca982
|
||||
DIST thunderbird-bin_x86_64-52.9.1.tar.bz2 49930254 BLAKE2B d0029fc31e02f6790953fa5bdd6057be9d9aa68151bc70c6effa91c17812604998cddd14ef71f2458331ecc85422dcc069311de944e7b10019f422e50fc88fff SHA512 98a35a81f77b58e6f5fca79ee5a56330f8184072c118b571245c7f686d2a196e0cca6f4df131bee066651fcf69b83ca076bb9dd68fa71dd766962694df8e43a7
|
||||
DIST thunderbird-bin_x86_64-60.5.2.tar.bz2 50398218 BLAKE2B 81475c5e658871703409fbd189de999389502c68c020a0a9b62f223e76e70c623cd3cea2e776059fbdd9eb371ea3ac5fa91ba6ac2362053f8996d10c88225851 SHA512 89efb313ef9246590e38bec044682c0a472741be3dcb7addb982ae09072d0f63652e4bda632d76f0340417b7a4bbed4631e009300d896c0e06af7626ef2fe526
|
||||
DIST thunderbird-bin_x86_64-60.5.3.tar.bz2 50316483 BLAKE2B 7ddebb5f3a60269ebab85b1b06ad7dc7d94d3267b82d9735e586e777c278e78e7468bced55f8a7310ecced7c276919f8d4cd46c2502c44c3648cffdf7004f27c SHA512 1cdc4db705ca0e0ff75c26ee1098e2a27294b0ee2079844bf31569dee5dbeb52fa6105e2b50f19215bb4c6a0c94973e92a914836e90fa3b8b96381552c708603
|
||||
|
|
|
@ -62,57 +62,57 @@ DIST thunderbird-52.9.1-zh-CN.xpi 593611 BLAKE2B 441b5332a08daca64282a8d4233c7d9
|
|||
DIST thunderbird-52.9.1-zh-TW.xpi 595728 BLAKE2B 8e2f6bdb65418ae837cef54f042eb8aa8ae32e952cece4e3a5a8cd13a4ac99a56495b7cca900d7ecd10d82ab77ed334a8e27eba8d49aca066bd2bb7d7182deb4 SHA512 24f48563439450751066d49f609ac4df9d7e31d7cea36ce8f2ad8f38b04fc4d1be99d50463700c4ea2963948b0ec1c1b5323cada6a3b1480f1debe52d50c4f1e
|
||||
DIST thunderbird-52.9.1.source.tar.xz 230475264 BLAKE2B ec2763d21bf88779867f4478dfc544b5afbe1062ce51f09c1ecc423c3289f0cd91ae79bc87d726ae77d885290843631f36800fff18d802cd4a998966e7793b74 SHA512 0de80a5036b1e8a5a8549c546b4693cb285ee4d10f546f4b4aceed9e1d6c64b9dbafce7bacaaf057112130036f7b41fb2e0fa3343412140e6ac926dd94c27d23
|
||||
DIST thunderbird-60.0-patches-0.tar.xz 10292 BLAKE2B a81ac6708389baff21accccac1511c1fc372324cac8bb3ee0f3b5d2a0690b6e22ef658b41c887b99168b43c4ea4bb0947d3e48ad9b7e80db558db22c976df868 SHA512 1dae465676b2ff4faae08ebf69e6bac46552bc0331659bf5f444c45b026e4c8d2fc46cd3758e3bd121716aa85d5dcc56de6483919f7f0077b9d9720574dbd1aa
|
||||
DIST thunderbird-60.5.2-ar.xpi 627181 BLAKE2B 589d93182c478f0eb5f96299c331efa2347f74c65823cb1f73757a5f3e101916a1bfc8ba64eff063295ef053b73f4bb4bcdad82d9d9eb356e2652a7a4f93c627 SHA512 37ff00c36a272fed787b313a885eb07b16da06cf74aedd83f0466ab2608c4bb8b18f0db27b15482d597c8a03f3032949da31195fb45482e21543db0b99788ba9
|
||||
DIST thunderbird-60.5.2-ast.xpi 559643 BLAKE2B 88948ed8114293653b5e31f28c8899057b284ad1bf1284428cea887f78381f05a8b36de3298d6f6d52ef68371a8f9d2541c3cc26ca82564ce6fbb3a33d50ed44 SHA512 0125df40602da85a568d9fe89970931ad2d2af599b3d3d935cdc733db300646f428a35655029b950f734708b9827f79e5c2802fa52eb75be64be3ec3812c4470
|
||||
DIST thunderbird-60.5.2-be.xpi 659080 BLAKE2B e725547ffc781831f09ed1c0d2badc07334b2e785e3c6696f07878504d2c22218307376f75d02cc1e18b4a5a70d8177bdc4d74354eb303043ec1af0571b2dd4e SHA512 e3584cdf3234de677deffb9f4033ed6e6855620c891ed4ba78d0451352b1ead56c6b01fd9844da56cabdfcc87346aa59b72519e41f5bcd38fd4f53db3388fd7d
|
||||
DIST thunderbird-60.5.2-bg.xpi 669317 BLAKE2B 3c2ccaaabdc74ffcd6b97d4157f2007260e3577b0cc2c5bb8449b35480c174ee8c53d07c06fc5b6865187f6260cb1cdcf1eb1e2bd898ce608d7a5611b55b7d44 SHA512 d632908d90938336363cd1e97c6459efce7098bd0a15700b1e87984bfc8a57dde0de42ef13f87fe3e1af582117e8a9dc35b5374e9067d7bb296a07d16f4a9682
|
||||
DIST thunderbird-60.5.2-br.xpi 580370 BLAKE2B 5e1bc167039d103ca2c5b587b262620037f08a600ca63992fc5b8095df8c73ede8f0390be15b2eb2c5ca2180c5d6424a382f41b76ca525e1c53c38de1f072f47 SHA512 d5b5a392991e83a52b4564e7f3f4f9c22a1d81dc8312fe0043c36773a23108d8bc117a6e7cadffe2b1461f9e2ffbeaae28f887a8f5156c48af1b57877ad27be4
|
||||
DIST thunderbird-60.5.2-ca.xpi 591971 BLAKE2B 3722aeec38e3a5fe3e141b6340d3bb1674051e035450a4160250981e399b9e3f56dbdfa9f82006b4926199c7260b25104b1ccd5aaa5d5de05a7b57496b585b40 SHA512 97a7a550e3411133c1a7d3416316ec94fdab367d4cb769c28169c6ea00b68fb6938a2deeff9c48f0cd50b96a60e545e28d6862a1767c259a3cb9d1619695c8c0
|
||||
DIST thunderbird-60.5.2-cs.xpi 611201 BLAKE2B bce0e594ca3bfcd04046ae97184659d97389baef217a79b06831195b5b9a72ad4e2aafb4ffd8e3103fdc333688e6a18d626070e08862e9f94f19e40a2d200706 SHA512 49e1a8e7c396705a311386e4eb17683215aaf0fa2ddb0254cc1bf0159f19d731ca76405405fc591693ef1f8064cd33046cefef32645b3ff57f79fa03047effc6
|
||||
DIST thunderbird-60.5.2-cy.xpi 586037 BLAKE2B 535e0f52406b847e3d6d97f232d9eaa9e4e907d394980a7af86cf73323d153f95e3aeae893afb08d06954f274685b8d601bbdad88380a3551c63f17ce083afe2 SHA512 df07bcccf12d489087668378968a12287e3e435d84362b9da1a0dd45e4c8e59ed4b2b32d6b12172bd6ac280b235f6d3fa57bc265a354ea6935429207c6403bc4
|
||||
DIST thunderbird-60.5.2-da.xpi 570807 BLAKE2B d4e6a21e90b2f535a07cdd479f2dc95a2a0c26a08714c4edf89c7931848384987a88fa0912f7d3f192075041888a1225859fe0b59c801de4c16aa05883e3c834 SHA512 d2539e1dd899861c669fa14dc6ee68e63d0ed40efcc2eef3c415373493834fe1ccb7408dd40c6924c95c7848712c84b49ce8849ea5ae6f28872a103590426084
|
||||
DIST thunderbird-60.5.2-de.xpi 582574 BLAKE2B 4cf65ccd34eaf61169df1329f068619db537744d59643e9167551994b2c563b436d68952d7ca3119109d2754fd1b487eab0325c6b3be1c73b4b94325cda4f3da SHA512 c0286ae7b627d9fadc9041509d079ff0859529aa444826f5f823de593a1ea4cb552ca47ce2fa3c340ec86c0836bcf8c1a5978cafa7f8f4bc1ed955310d387b9e
|
||||
DIST thunderbird-60.5.2-el.xpi 694861 BLAKE2B e03692fb9e7be064db997d45e820b66d3ce3d27904aed833d055adffec9608b4405e315c06cc738910367529e719c2a9bd9940fc10fed6f73cfc8ff2016f9804 SHA512 71f639e672791ca40524641d2f16c0a784d0230d1576044fb2269ac62846869cec3aa59486def34b356517e02f6159382a2c22339e4316020f4bb19367a705da
|
||||
DIST thunderbird-60.5.2-en-GB.xpi 553896 BLAKE2B dff58bb1bc8b53c15ca704350ba885cce226a80df73068ce520f47ea9760c5732d842860154ecf4615b94cfa487a7288cfbd29e998ac55b05b3ea6c4ad68e7ed SHA512 f65ec4027e387d32e48f7f824dd8fadb353892896b86beb7d7ab06a563b34f7a6ff197fa14001450d30bbc068b9029db8eb3660aee6b8cbef35c11ac94ecaa8d
|
||||
DIST thunderbird-60.5.2-es-AR.xpi 595047 BLAKE2B f5c47a7e4469d9615fd74a1a1466c30d4e0f844e27570cbfd879a00d6a4df867d3ee946bddcd9382473720ac1f3dec643681ca787171690539a238acb18a152b SHA512 a8cb19daaf72f03bd180d79bdd40104ae2ac7c39a5ce766579b31000360b8b8f229eb4268f13ef13aaa54503056ccfa62c1f9503e6397a06f27fa3a49962e4a3
|
||||
DIST thunderbird-60.5.2-es-ES.xpi 492210 BLAKE2B 42a0d6e5943caff39050ee8e0fd5b70fa560413e1c17ecfb5fd35dc14ed7ad5cd78465a9cff56b0c2b2c7476eb17b62e9db14e66e9b7ab219183edc7fa62c8b3 SHA512 769fa1f1da569ec9511ca3939ab54c85999d2984061490f2f0b0ec1436888ba76221b055e911f108fee1a958b47da9a793db5b5fe5fd6a01dec420d64395c43c
|
||||
DIST thunderbird-60.5.2-et.xpi 570867 BLAKE2B c935f22cd7233c85b8270a001dd5a5c4a4e8a20e937b0dd34ce5703cfb62e6229730b838a24fc8d2d02efd67089e803e29f349d82c0ae8621a82f9b69171ab84 SHA512 8e5c9f39baecc5510778fbd0cd25f277b34ff1c6b14936538d2210166b4551df8df3ed921d724f4b425832717f16b64694dd58f54ba91005c05ecd15917f5e5e
|
||||
DIST thunderbird-60.5.2-eu.xpi 581383 BLAKE2B 75718f909d9d838fcf5b556fa2d7643c17115a7c2f15dfb8f48ccaded10f792536e9d52e19a672bcac69119f4d198b6b490eede63f0c5486e107c2b1428846c9 SHA512 95184bb879e2670070e0484af2d6530079acde528c9fcc9d6f3b48f018620425131578ed9613d8a197d815fe42cb03910727719aef3d1bbe61423c9433ef94c0
|
||||
DIST thunderbird-60.5.2-fi.xpi 575753 BLAKE2B a466fe6bf4cc13dc50b1c6ac78dc8c9a57a690d0231318aa6d6e94dab9e733b8ee050a20f03ee66c249f73703aec1b4372b686b7dec3cbfade7b1c9df72ef3a0 SHA512 2b1ac714073eae1b3d084a2e660389e105eba71ceff41a1883c89c767d2f6f7e8e611b6a5eb4a2b5747dce8ecae25e7ab50a896063c66c273a89cd3410542449
|
||||
DIST thunderbird-60.5.2-fr.xpi 608466 BLAKE2B d641a60daeedb58ed44114b10670d38495d197e9c0ca7e4889128232b6e39fe9f54e6274a30f2e387e3233861c75458917b7a89e3c29e2a9ab29d74e6ea2fde3 SHA512 7e9363c21799bd2e9e8482899f6b323cebdbab220b748b6bbc6820f1233ec99a9042c0003385576c8a61a3aa85860c379cd9499cbdecb805e2fb8d646f08cd46
|
||||
DIST thunderbird-60.5.2-fy-NL.xpi 593850 BLAKE2B becc5782f76d90495ea780ddc75e7b59a19179a28ff1d9bcff3c3ef6e5ac8e0b5a6d6d0bcc511c974a84374ef151c35a44d16815c6690f68cf1f6d2a9a37f73f SHA512 ad29a0c676549db1ab1ce70a8d486e31963559fe5d0ba8afb096e7890179a67ed1920829bde3693536dd19a9825c8d89df7c617ad9c86eadb41ef77f0804527b
|
||||
DIST thunderbird-60.5.2-ga-IE.xpi 603507 BLAKE2B af10bb5b779cf9e5d5f985da23bd4c778ede76326ae816c4d0d243df7a6eda78dc7a894bfdd8aac7e07fb41261c3bb571c6b9d7949b8edcc38aeae6684e6313e SHA512 f9f8ba01b62371a21f0749302ef80334855c87fff85a75ac8f8690a10eb2f674fee61d4ee4fc62d9d3b80ba640aa9c2ec822e44225e5ffd82e94b7c8ae13be9a
|
||||
DIST thunderbird-60.5.2-gd.xpi 599262 BLAKE2B cc764bad82473722de920a5637760c6ef308e78868af1fa5a968c53e7b0e4c09952ad1e5bf7c562ccca7c35637f43e2415b7a8eaf65b6df07ea0b0771c8c24ca SHA512 a9be64f55b23255effbb37e7f8e528c1afb7f0e064f4a94578bc7562e55f8d859672f1535fa157726fcdfa23be1fc4701607f5b7640f4ba17e8ca482667835dd
|
||||
DIST thunderbird-60.5.2-gl.xpi 580353 BLAKE2B 7e110f25bb8faaedf5a6c650be18208eec85068946c435fb26f3bc3db13fe845a468b69246918d1f1172503f6a596929384b211d36a945d71ee70ee1b273ca57 SHA512 04921feeb2c4cf03cd870c63d383e3627b93a28e972f3a744e5ee0957b5cab4a9a41fc7ffd57fa48e55a00838ae6aad849985a76387f4f6cc01dc1a96898f61d
|
||||
DIST thunderbird-60.5.2-he.xpi 617142 BLAKE2B 969007d46136cfa9a1c946fd5ba122bf4c1b5887b6aaaa6ea9570706b5703d487b5804d249689684fc2e84d6827944b3af5051215737a0e228c74e19f9956cbe SHA512 dbca895ee44dccc71e9cade506b7759a7a1c241955406a1698897aa8b33156c9870f4f52e860cc39916707084701c32106873f8c5636b4b2667950fa377f42db
|
||||
DIST thunderbird-60.5.2-hr.xpi 582238 BLAKE2B 601113b6f209f7e4e14032df2507809ba66a08a847a5c8185befc600e09a66697878aa28bddd456887bc7c688bc5d10a6f9cb63547b96ffd6078e417877a7d23 SHA512 7dbdc2bb472dcee7d0c66e66f8419daa40691f115b5b567c82481662d6e2af429132a781f6b10c03df1dbac69ba950184c405d380d348ec45c66bc03edd46df6
|
||||
DIST thunderbird-60.5.2-hsb.xpi 615131 BLAKE2B 4ff992c72bf937f8f9edab268532ee4b7d5044a554553b5b7a2664c6b6aff33a7d0ad98a02710bd5486c5ca29e37e87b63314914dd7a60add0d381342e88341a SHA512 156e5b047b3448ffa9da4f5be0fca47c7fd202e5ff6a978e85ff049345298bff456ca2c824cf0caae41de9bcd614fb45be714e020d2266a9470021143ea20167
|
||||
DIST thunderbird-60.5.2-hu.xpi 615346 BLAKE2B eb57c1131375719fa0b57b13a253cedefd2ee41e51d08eab923b7adc115299e33dcfe27c32d3aebd3cddb98d9acbd090212c7e869209b1275b44b7411b2617f9 SHA512 6eeb24df9ee179f2c6c5ff725f4f34b9c2037a899fae5cb98ef4564c72fe6f6c3492af08227325c569bb160b0443988707422fe2d2c4ba1136b8289cfafdd0f7
|
||||
DIST thunderbird-60.5.2-hy-AM.xpi 653530 BLAKE2B ae9e4d1055e0d87d4b85ac58a7ed5386950125b113f3b21d6c411872e80a728feaaa9b703deb35fd15c4afcd1ffdb2ca17ba6414a3157e6b166a4222f1094815 SHA512 73136da1a107277905ae970f29cb01a325e7747cabec393cb8a0c0229cf384daecdb1c4adba07206530cdb77e2e6acfc8e8dbd4f9332b2eb1da325830c5880d5
|
||||
DIST thunderbird-60.5.2-id.xpi 568860 BLAKE2B 25be80f58ebdf4f517cb811ea3d1ee1af5a64ae65e7c386c042e8a1ce8ca43af3c80ca855496a054807d1686aa25a12e233baefa14dfe4b14656cf2f1918a322 SHA512 84640c7bf4c2258a7d106d3f0c0ba7ad1739a27d5c734dac3e1370dd9f160de9ac5a52a539e502cac44213b402b00c208ff02be1ab3a1d0d0e118bec63c96f88
|
||||
DIST thunderbird-60.5.2-is.xpi 579048 BLAKE2B 8c146eaf451601a45983cd5ca8cb364fd2cba2e43b8cb8c5fa0f4292b13dafb8a26be781def9d760b05b826efa6931dc6e64095384d14d96300fedfcb92dd81e SHA512 00efb0f9e1dd26cb1618ba9ed1c982062c421d67b43e2cabf1df08bf26e97d48fb8fff5e784874aadf3530fe66973ffb8491bbab43766006c600373ba79c088d
|
||||
DIST thunderbird-60.5.2-it.xpi 477500 BLAKE2B a75453089212896d2c8a836c98c14645c250fd31fe326b864bec97da395172b3895c55038cc92caf63f5ac2c60c5518201e0869997236da0ad1b81a09dda5a82 SHA512 618023c224280f354bf6bb634757b21d864e833294b0fb5397eb1cc872c7fdf6101d33730227b31395f48870cb0a0834d1c1f457507c9cf1a622fe6143579cc3
|
||||
DIST thunderbird-60.5.2-ja.xpi 653344 BLAKE2B 10f03d97fe2feed4cf64e9caead6cf49afb73d689e9ed48c224a61c09a2df1b6e7a93c3401e9db947fcd8d983378bfee5beb6350eefd1d70d04aa5165aa1d584 SHA512 2dde47aff5140ea5f1b7b66cd94673161a41df5bf39b95f97a7493d4bd9e61b83162b9473f3f6851af8d28951829aa4dc99b4dc837284200c7706d68b757eb90
|
||||
DIST thunderbird-60.5.2-ko.xpi 619730 BLAKE2B 4913335057a12f91eb4ed44f30b977ea07ba7ab9a984b8a4dbce5286ecb535d78263583849cd579e7477f56675aa0c9c1c0a8c116a88c2b2b94dddb4ea6c0e7d SHA512 6478218b89693bc6ab6e4240e626a3aeee130c3938809d43ec4b105275ec709f8d26e9f00548f76ad54a5b023aa55bf45d855a2949a7022b3eb9dc4fe4a014c5
|
||||
DIST thunderbird-60.5.2-lt.xpi 605440 BLAKE2B 01a94fa311a4304b38972be7c81309ed565e4a76df488990654ad49d81822363045a813308aeb3d2419fa9319bcaf7dd39b227a3782578b982cca91b9c9dfdc0 SHA512 a788c1d25da48c17e0b4ed0f294687774c2c5ee91caa8cda0de14c5560c056dbda4a5d859c4040d4625e737c21dce39bdca7209fd9549521a87f9088d83fb10f
|
||||
DIST thunderbird-60.5.2-nb-NO.xpi 577001 BLAKE2B c62edbb9c4f6454ba6100ce6ac047f2dc993a1ae3e5b0861ff96feb3da46982b1d01035c381c7ecdff4e2227bf91030a9b5cb9fcca29439fa2cbfaf83cf6c9ef SHA512 6d79b5d0e1011457b1f19935f666beb9fdf7b7bbff7c9b525f1f9e30289246b4e64ac6268330bc89a840c3c99e008033b154f156a9f0efd0391b3180e10b27ef
|
||||
DIST thunderbird-60.5.2-nl.xpi 583913 BLAKE2B 137850c48354974e88b706953d6f38b7b9c26137ca238b21d9a7d9b706bedcf07e9ca89935ed23ca8b83f194952906201a9b7ff2f294caae6115fda81f991092 SHA512 eb15367996a464adfc7689f4c30ecf244fa59d5e981aec6334c8bc1d0f4f1ee93d0f03ac305b65cdf032d26cdc9232170cbde379dc8c3f9677271532c12589a3
|
||||
DIST thunderbird-60.5.2-nn-NO.xpi 576421 BLAKE2B e9ae1fce70ad19347c3ed2c4ce59b0e6ee128e25f080c07ce4a9e80ecd9a49605fe5d0e57816e076cd212ab038a1782c30bd5d0508412bd8a6751750fbc98fce SHA512 607c29d099f25a7cb12e8e7c2eb14d96c911eb402c624d3f300ce224a11f6ee80e8a7837304800091d08efc626ef7b91e8e7c9cb4caa52767b93379cc79f50a8
|
||||
DIST thunderbird-60.5.2-pl.xpi 480725 BLAKE2B a4b9b2cb3793faaa41bb465c37c49b6aa9fad00428960f029331d9f88693a8e2530a33d007aae0c12ba914d12d46a970dcdc00585f498c46131239c817a865b3 SHA512 ec62aba601121a8762626ff5ae01f06c6cfb59f20ddf4c145c79fc5daeea92c3276c9737eec17317220c7d335426d567e7a7220b535201889ad287d0d4982619
|
||||
DIST thunderbird-60.5.2-pt-BR.xpi 588835 BLAKE2B 0a510c49d09f2f3c80a974f064aa44ab19b193ee780c34d1eb9df7daf22d3a203b2f10dcb5c074ed17d64527c063467ea0d7afd447e2243efa09685a0c48dc42 SHA512 875b04bea1f5cd9c80962c0000db9ef6fc72d02d8a770018885ec8191f7bc15e2f4a4f2dd2a0833f0046471344a4455774b9a383a9ee0bef74ecb5964746b91e
|
||||
DIST thunderbird-60.5.2-pt-PT.xpi 593186 BLAKE2B 07de1a3cf34551134d908120cf65d7f92cd2c29174073f87f0a35a29d055bfb400fc5826a04c93dc8b1ff346215e3fb15cabd7c419ad735cb0b6b0125e9ab55c SHA512 e2fb184dfb60a68a29848be32ade59be8e7ed5fe4d50a917e55cb8398f77c5b38ac93a012df8c6f0dc71440c41d3e929f110fe7b06c672ff8f74117051789584
|
||||
DIST thunderbird-60.5.2-rm.xpi 578384 BLAKE2B 74002f3c5aa82b62eafa049d4949756bff807fdb2da4ce361f4bcc994fb9201c410ec442949f94264d4827bed8548fe55286f985c86150dc4f14c22f5cc4dea1 SHA512 92e159e46fc09a0bf13861312c248af34b88dc9ef9f6e2d3a566ef8adf388efa484202aff4bc6e6785a032b9ca3b4f215f16566c6f4aea21606952aadc7598ad
|
||||
DIST thunderbird-60.5.2-ro.xpi 584308 BLAKE2B 2637d2903f0b9898dc8ace66425a1be78933108b3b72c011bd4aaf4cdba58121e39ef9f75c0975eb0fbd27e07465a2920826c38267983ff27d38a893ad7e7849 SHA512 63f9681887ef8407e42cca3257a2372f7d2e0640f1696a5e11f18d902708768e2f76ad76d93090eac8d638f4df5744a68d148adf2e414e0d2eb9f59bcc0ac80f
|
||||
DIST thunderbird-60.5.2-ru.xpi 694705 BLAKE2B 382b0f805dbd74f3bd4fc0169b9f90ff2310912d6ae35c76d1ae32689b1e6aec21d4c0c83b4c1f3652539e28284092a21aa73e4f5ef51a4b1520d3ae9978835e SHA512 0cfa206358b894f45c2a794c62bdec1e899beb53ca94e474064fbdaa92b594871f9631b4c80eb1987ef5a821f3e100aa0e772e1361011b019639977964b0112a
|
||||
DIST thunderbird-60.5.2-si.xpi 647596 BLAKE2B 2fb9b88e1c53af88049f807244bc0dd8fa738c6f186f2a7475598b97c95d11e86c25285469be73cc31742e8bd6f6250b62603e4b801ab116bf682eab9ade83d5 SHA512 493238e01bfd5e2d2f2a551f19c656fdc43ca05189bcb7ac05308289b2ff1192b025764c1fd07eaa16195bc7e691955c6f6bdd4d7dfd89df89ca8c9f787200e0
|
||||
DIST thunderbird-60.5.2-sk.xpi 612215 BLAKE2B 87ebd5db9b3bff2b61493261d18edbe4b1a1095db52649b38a8bcc2fe902d3f6e0fdd553d061bee781ffb8c96c7dfaa9dd833e07f0c4f0680124acddbd26de3d SHA512 2ef3c6cd1ab2a520b0a5446bd9e5d90e00b94998fa158b2b3b0b1993c5c1cfd2cee50f676f1d3b9ec07d898b93b0764eb104fbb812ca771195d5590b2503da1c
|
||||
DIST thunderbird-60.5.2-sl.xpi 589947 BLAKE2B 2663204b0efc75b6eecf64292f9bb059301d21aa2514b1068bfbb2eefe6dba902476268d84f80190d26c609515300a5c139c8e233a4cb399eeb6e8759c1dcac4 SHA512 25ac21bf338d05b3ca4e2fe5ac315b7e4e15f89a53d3f64bb44e44dd5feb153b1f09db56d0e701440c33e2fa2a9245c74056478f6684f2fc7cba2da4c5b55fcb
|
||||
DIST thunderbird-60.5.2-sq.xpi 593096 BLAKE2B 625b42473c31cf2c6cb8109bcf6b4f736f59cf6a62870fc1ab8c38449d1fc40bf33bbd18b3f4df728cd855d3134183b68b156967b02b82062533752346fd41c9 SHA512 2e12f8febb1d7c71654d93439cbe6c52c391fd602503187d6adc1934d9c8fc4c92b44bd3c9b3b01c4abe16317ef5d183d315ee44cfac453ed5576305574d0361
|
||||
DIST thunderbird-60.5.2-sr.xpi 641525 BLAKE2B acf0b03cb5758424442a112e7893004b508bec97ba0026aeb348503668b00a48c172507f909bae2088b46db6d3ea227b3259c0c064df32d8d11d21ccacf09b2f SHA512 0a88ea24708c21acca2bade7744f10f7a39c7d1c0af4af70b2a02a19125d3a224eab24baf7a0b96a36504b963276cc04271930e1fcca88a21698b5df313c8b79
|
||||
DIST thunderbird-60.5.2-sv-SE.xpi 594079 BLAKE2B f5e7f1f1814a4189c3e2e0ab0c85bdc553ea186a56bcaa4bdbbaa32b91f3ab24479488084ea754c7b9e1b6428d9be4cdacdc0a7b25e50fc8ac4f6369340e3b8c SHA512 dedaf44b97b3980b80af0ba2e66c8ce0adfe90199bbdc5c0279cfb7735023c3794d811a5734e05112c7481d35ac91521e1b9d1293c3e43c8063d42c69daac042
|
||||
DIST thunderbird-60.5.2-tr.xpi 598009 BLAKE2B 673201ffa10c79080632043c1dcbe5baf32a03e91ba31d25cb1e88e06717f5de63ad9919eca3297165eda9d50be9b073196049e007e4e4b2642048d1ffa66f0f SHA512 1983d8e696d51aa7d1ae2cf621a877c37a894a3084d02b4adf9387dd6476b5c838f271dc9c6503c47d967d20e9cc4ff5cbd6accba66ec36100be9ee8cbcd0855
|
||||
DIST thunderbird-60.5.2-uk.xpi 684154 BLAKE2B 1d43ab8380fa638168164703d4a9bdabc31d0261e3ab48b18439db331ef53042aeeac65bac89ca7edc8f58875f2efcd4920434316222521fb476a9a283655ea6 SHA512 758c576e7c71d2b30adf1cadabd15e305c723304cc3e4da3c460aa9fd71c9fd18ee6473212fb2f7628d93216932bc4d5c03e63e9beea21471c8237754d347c90
|
||||
DIST thunderbird-60.5.2-vi.xpi 637199 BLAKE2B 32c35742a72d026be903c593f6df1428ebe1b3ea38c822a2cd7fffc1e1d876f8285eba09163ccfef46ed14e17e34716eec8ae2fe0545bb2abcdbc35ae300b25b SHA512 d1e414d507ae4aa00d1319e2fc0262d651dae334afe84a9734d3bab9595cd4efd1ae545f7d809d186d0f6ffeff1bbb214f55619b5c56cc0c61c154e22b76e0e2
|
||||
DIST thunderbird-60.5.2-zh-CN.xpi 626282 BLAKE2B c440499bbd49f499a2f51a69bdcffff0d50d614ea2464cfd0c8b27fdafa03946a9ab850d9c064807964b9c4fc623450eab7d0254da8bc9a145853750fe3021de SHA512 728c6039dbfa79d04291f06cd38e01e66d761df6fb7982a3961f5b14cb92c07bc12fa02090859d3f486ecebc74463a86b257a65dd82070018a26928d9c002994
|
||||
DIST thunderbird-60.5.2-zh-TW.xpi 626189 BLAKE2B ba01e8eeb02e753a59be2653e9eb50c79fadf193d1b028e7791f121a3e18463d0d1af2865a44c721f82dea5effc5ebd99ca352baa9833eddbed137c0de9c657a SHA512 7b47e91277f9a24aac0e8d8f5d169ab8f9fdce44fd43b090dc45e01a3d528f0b4028f027dddfefcb03496a85828ac1bfd3d5f567341effe85bc832605ecf7cc6
|
||||
DIST thunderbird-60.5.2.source.tar.xz 284520208 BLAKE2B 38a5389ac29d3424f92a3a1c52bafa18f5eeac1ea032dce093e77e884e31848ba9f66a306bb98c33ceeb4f02005be65ab3f6dd5edff275cbcc89279a21d006f2 SHA512 a53c59114523b7554a09a84b1dca4b89f624acc4ffa7453dab417c7e11fd5aab6cb6739e26b804e0c30019edec757d86dabb336256a76e02b673cfef4b2678f0
|
||||
DIST thunderbird-60.5.3-ar.xpi 627181 BLAKE2B bcbbda6174b102f9110fe470a6ff338ba5b16d155344398538b806a886b8dbcea6ce05f7ca22f41354844d275fe513a25bedd3c4fc780cf9672872c81b000d59 SHA512 6aa8f6d06d03b790890d4bb38fe90bca4f5a2b93be327aa1bf149dcfd19b548f1007cbc938ce81421cb9e4f615582add43e4a81f3e325b4fe27c9fcd3facca33
|
||||
DIST thunderbird-60.5.3-ast.xpi 559643 BLAKE2B 1fd59bcbf38fc70d7b7ec8d051c91253f054c238a1d4c21df05d31f036b56b01ce8b7eddea1aa45a21e4bfd86d879b5f1f86101e16e6c4badc96357e1422df97 SHA512 5008e084f9dc26caba3c04620063a85c7db2f2b89c2eaddd77edccf8f324ee054ca92eb080a364a61e3b73cd87a314a8d41e49f8f9b27e7601fd82e1f6f1c013
|
||||
DIST thunderbird-60.5.3-be.xpi 659079 BLAKE2B d9997d70653cc422fa8a3a1bb73076691eb39f059886849637535334536cc5947b28ee3a802d9c2d51e6c03fde952a28f52d15e10fe8627406947ac70cd20720 SHA512 6232ba35db14fb99856f09c9b66827640332abc09c78ef99938050e3adbc58d039318eca3a9f1f154a2a2c526796de3d355b5c5cd789b12168c993498bb67c9e
|
||||
DIST thunderbird-60.5.3-bg.xpi 669317 BLAKE2B 2d5291c752de13714fd0a4373e43550fdec53e5ca26d7042167255854dcbf0c327b60df5037299d3a4e86224e33fad491ccd26952189c5420ff0d183487a8503 SHA512 c73f41e68e671172c877aa1a305360db7caa7894361c1d0ffb9d0e0b6b1c5c00958fdd4e4068c3bafee0da0152aa5f01f1aa115227331c5e6ebdb3b7be1f700c
|
||||
DIST thunderbird-60.5.3-br.xpi 580372 BLAKE2B 3e0bd00b75411e63faa49665d9effbbcf2286a3595b2fd04f313cfa9589990de170f028db600422cd1738a4df722722c8125ccf0e172a6cb420236436c8f37f2 SHA512 9a17707c485c3bb8203ca7daf50ed7fe36b08376fb454d3fef958dc86c10f2f898fc534b5366cf39187740d8ced3be456ad18af9da684ff7425339630dab920e
|
||||
DIST thunderbird-60.5.3-ca.xpi 591971 BLAKE2B c00610d637419eb909ed07fe0d87ebeba7aa03eece0c9b6cb8dbc5a8f9ffe34131858a6cbb07a124993f5d79be562fdd3e4be787bc150e379d32b9be5921a541 SHA512 39489e3a9c000572f8e7e36e2384f03169df30ea84dba5890260975cd99bc831f2cc9c2325b8aec64749b48f2ee8d08c803c8f637ed7ad8ed7fc70d6ce797b6b
|
||||
DIST thunderbird-60.5.3-cs.xpi 611203 BLAKE2B 0a331732009cddbaedb93d4a1cacee3762a562e18e542a442f55f3ae8ed6bedd59a5ce5b099f15e6a97b6baf05ec3c8a67fe2ada6ce4807e5da4df53124b44ae SHA512 d83e19d7a89ddc162fac3ebf71cb0c1213ed259788549fe3e75891eb8781304f9ed238e9b64133bc69d222f54b2ee4bdd7c5b4fe2eeabb98e8dc8bd5d1c93574
|
||||
DIST thunderbird-60.5.3-cy.xpi 586039 BLAKE2B 2e969443daa6ea9aef183ea46d53b1978d30712a6b85d73e796e2a94a06e6ffd3c2e99b7b9da49ebe84a36e1219bf37b408c071cbdd68cb9f997688d22e324e5 SHA512 9508ac8cac4c711bcaab9a41eebc4ac01c5fe09f2c501008643ae0b9df16fe9de0fb16a2a1362fb58732214232570f3578df6bab0cbb4a6e166e0dc92caf2934
|
||||
DIST thunderbird-60.5.3-da.xpi 570807 BLAKE2B 72f4956929d549e33cae9506de26bde8de814fef9ce04495137c2b443ef9f3cfebdca409d388652f69e5240c35b9b4e58a49c46221dec8ae1f610f4729db6e8f SHA512 c366a0d7940595c8b53e69ff961f5ed0580d291b89ecdc1db36ebd9da55153e951d790866a6f025e288856beda8fb43269d8576238a704bb651657af7ade6e7a
|
||||
DIST thunderbird-60.5.3-de.xpi 582575 BLAKE2B 5613dea86e8c725a33a2255fe1dee2f014bcd9b7f1a0828457d30293a23f5e4ca22c3398afbfba9dd9c64d9ed7bf2b6ac55dc77148b9ee53ce6ee11d23473caf SHA512 46c5405368ed6ed00c747a6449d815396a7fdae0bab5472e5b5c061acb3d8b5ffc7d08f776356a0b83bdddb77ed80bfb078253d5efdd56559838e11d4d90024d
|
||||
DIST thunderbird-60.5.3-el.xpi 694858 BLAKE2B 7a0e1af405d4cc43857aa5b23a002baf30914ed65ccee1fcc1b491c0f060a80cae736232f23504ed1a7eff53a11d1dabb4f7272fc4261ec7b791d993edc940a9 SHA512 fc9beb99c581aa381c4488c2e9396a429a3fde0407e8b2b4684182882c8b6d1551f73d0c7ba7d5c050bdee0d13487653d71a735a15ac158a0153cb82f81a920a
|
||||
DIST thunderbird-60.5.3-en-GB.xpi 553896 BLAKE2B 81669f96a10788f9a8a009d0390cf3b0dedab006d6ca3b8d6fa57d4e937386ec213dc83503d369e33e28ccb4f483821dbc1d6447009f7fdc43d6efca94d765ce SHA512 44de972f64b8c276fb1b23220666245611e771feefa37f5d293795ceca6bb9025345356ebd6d45eca4e306abfa7303404776cb4155d356af1dc4bceed282ccea
|
||||
DIST thunderbird-60.5.3-es-AR.xpi 595048 BLAKE2B 882a474d22321bece82642452f268d8c07dab7523be97551ad96dd7352ea10f1e4ac78e71b536dbda65a27fd60c14e08c1e3377838aaa8c8adfac7445b727b55 SHA512 154e2841e2c12df883ff6c381ba82b47c177c52cd831ff89d3ab809f88acc7125eb6ff7bfd4f39e7894e38b24d8992c2f174ae5b8710c5fe179ca73a6fe0e43a
|
||||
DIST thunderbird-60.5.3-es-ES.xpi 492212 BLAKE2B 50008d0c8f97e97c25f386c690ced14dce894122c41d97409c8875bf4979bf656d195ec3131f42e86c1ef0bbd8978c1bbd6cc118ebfa5372c1f893c60f31cdec SHA512 fa21fa829b64b7e68062b6c29d9a757f35d9e5be9272d772796a311576d792ea2af2e2f25e6cf81a246e6085c203c1e805e9d0dff1c6a78f498b31e17c1d2d97
|
||||
DIST thunderbird-60.5.3-et.xpi 570868 BLAKE2B a59cac3030f20345865ac1bef0a4baae8d69080286d5f24db4930c5866b235e6127d1a385510de4a10fed2fecbe0b7af74b3a505c32c24e150a5ab38703fe893 SHA512 f3df4657ef1d76c9469ee830f94aff0c0309952efad0f814755fc7fd758705b208371af15ded3b985e7555aeac4791730627cbbe719bbd9ee4350a4de88750b1
|
||||
DIST thunderbird-60.5.3-eu.xpi 581385 BLAKE2B cbe9c4b6aa8bad77a7508403944b14f4b3871641f3b0e67b892640f685389dca66d0cb99e07324eb51b2b0288987d9a8daca83fed923cf4b792a88f3c5c13c9a SHA512 33bb369235c458c468a1928d3c341f17a61965142ca7a47223e221dd3bf8162ef40349057204a05cbd7dc029529ad820beb58b70a75035680c61f82b0085a9b3
|
||||
DIST thunderbird-60.5.3-fi.xpi 575755 BLAKE2B a7de65dd9665871344dbdf524bd0b66180c53c2f0d097840d0be6d015bd23cae38c6afea5c04b94403bfb84bc66b372641aab78a52d6f8ac2a9008e47f991877 SHA512 76c150e0549b913fd76317664a4b1ef8d0ffc1ec15b03bf44244c70bf237f3540bb886ea481f02941a2abf7e04878923d6af008cd08b4894eb7a1071bafc6a01
|
||||
DIST thunderbird-60.5.3-fr.xpi 608466 BLAKE2B 9a60f7a16a43cadc2e6556ebaae404963feb5efe2a9183a40d60c04906ad95a7839895622d0be3920a203d29b026087d4a95987ba00776539ef4ac4773a071fb SHA512 a47d98577f346c02a178408b0c5fda39e28c09fd17da56275c1d83f8c2eb080d270adf4a7e14af71c3e9db917d201492819e679a089a08f16723934845fc53c0
|
||||
DIST thunderbird-60.5.3-fy-NL.xpi 593851 BLAKE2B 9bdecb6b31df3a896b2e0b07f0df6d75e83618a88a0311ff9e720c03fc16755b75201442791cc4fbf5362e798f59e6e6d23a8de7993aba9cee7326f2efa1274d SHA512 5b2c824da3bd80d9e900227e59e9e15d8de3c819deced24e163881082ce578f4f82c6fafb38c350f6f0a06375ac1ea1b0e04d45a3294619d24a14c26503362bf
|
||||
DIST thunderbird-60.5.3-ga-IE.xpi 603505 BLAKE2B 1fe6f120f1181900613db972e332e0b9249f457262ac4980059ef061e175e247ee0316776aa7e41fc1051e65cc63150f1b70d631d04d6af07b6f22e14a68e7fc SHA512 e8624d2dcc33e3dd4aa74bb51ec24f18f23fbf690b7eb147582394cb223d840cae05b8ade30dfb7a71cf08f17c7e73d110449c99a550089c1456086a731f0b7c
|
||||
DIST thunderbird-60.5.3-gd.xpi 599262 BLAKE2B aa206bcea3a21c5e487bf2f10dff0c47eb24dc56801aa56430802f952a63d8cc4f98580715b4071473df0041df97df626c704dd5a9c6954976a476f03a9471e6 SHA512 88aed8ee1748615bf217fa86c2454145bc12e1d433a10a2e0a7f47ad75251a9def540e4b419661ef987961992aa7bd294453ed222d0371aa4747efc79d9be823
|
||||
DIST thunderbird-60.5.3-gl.xpi 580352 BLAKE2B 4ad06648e88bf6d61932fb0c8703261a90e6590ef5dabd78a1d851c9b1379051aa6c3688be4fcf760909a3da663ab93e52d6f89d538b9fd6d4d507f664b0dd94 SHA512 206d41c81cef5a6388c4e9293affc7d29315db3ea96c76133cfce4a881e3a8e25582e917b2f0f42fc90a251df8dace46a85be732bc2736794983d28ddfd3e525
|
||||
DIST thunderbird-60.5.3-he.xpi 617144 BLAKE2B ac6683598fd25da35426268ccfad0fb651454aafd598fb584149ea7e53e6331d3f578bcff1537bd1cb023a3080568dde12544f1496509d78bcd393e9dc8e52d4 SHA512 72606b13bffa02aed21ca87043a72e8dededebca9045e51cbbe9fcdd378dc63e8104249c2e58562019322c0fb18a75b12b77aa3ada32874874653d60d419a896
|
||||
DIST thunderbird-60.5.3-hr.xpi 582239 BLAKE2B bfc325a8d466ad9252dc2b9caae78df8b68a5043f52297efb973732e9187605a8e17072bb36ccfca1349b7f1746249ccd79ee2e6471c99434e1c23b88877e8e4 SHA512 b4d417df37e942670354fe1013c56b2bd8bd24a65456293c21f9e1fadf1e24f2debc9f6ba74412726d59484fa9fde0ac9f3ab1c02d3c40b5c30c2a2af3e0f4e4
|
||||
DIST thunderbird-60.5.3-hsb.xpi 615132 BLAKE2B de2b4937fdb271865cfbf2f7c3d5d58e21264bf1dff866675b507a8f4bb964898ed78ca2e7ff7ec73fe7a2084c813fa833a49c544658c9a2334901829ba9942b SHA512 029c115e0fd733d6711e1de5faa6cc08823f581193fe6c3e08b1d3c9c03bd00a9f57726b862abcccc2d81d30ceebad7f2d4b806381d19c4183a98e4946b32d22
|
||||
DIST thunderbird-60.5.3-hu.xpi 615346 BLAKE2B 618357caf08541a98463fe28b1b15561a58c92192c24e4b0159c2677f5e01b393945c75b970699ae8bafae0ef32bc4efc1306a03e7c945a40e9d32f64071d63e SHA512 c911bf162971dd10fa644bc3df67dda6e58ca1b277e35c3491be8f52a177c8a0ece2944bb0357688f20c0597aa98584f79f237b5c73686162a7ddd0a5e0b2a57
|
||||
DIST thunderbird-60.5.3-hy-AM.xpi 653531 BLAKE2B 4abe52413106cfb6fb2077e65c631e689ab89e7d33cee27c407fb604cbe3975a9477e2d477dc553b2fe5eac3d378fe59a1abe456cfff9c6d935138199d99b79f SHA512 b007c0c8a9b792993f3eaaa0aa3dc875c245763b62e2ad0f1217b098057ac397dd415c29b5f1269d531dda9e3e0f7b998f10ca545ec1f12ab1074b1cf9b1674b
|
||||
DIST thunderbird-60.5.3-id.xpi 568861 BLAKE2B 8d2c50984cd6f6fa33f517fba151e5bddfa60218f7a6d13be651ffebc8afddf87a76a04ab7d71ca79588282e279cad3fa856176df4d92bb184cc589c83d4ef59 SHA512 8d8ca7af841b2d7bb69b95c425b8a94f8cb7ae896f92243edd788c21a45d0fbf08b462d7fb5bc017efa4b6e2254f06269b117abc8757b72c29bbcd027fdce0cc
|
||||
DIST thunderbird-60.5.3-is.xpi 579048 BLAKE2B eed2475a57873ed9cd078bd3d618e67468904f05dbfbb9106113537b5cdc374dad9641daad3c139cd51bd0c7f37857a9f58a83625f7bb350010e9fe790110596 SHA512 6249b0a56a73fb79f5886af127dc601e2a8b92d5afb0d57866a536d0e4b1686bc7ea71e15a18a76a1759885ffb31edf923e31dab18af36e710e128421af2856a
|
||||
DIST thunderbird-60.5.3-it.xpi 477500 BLAKE2B bb577887568e672d8c92d06cf9697aedd682883b6b6c7047845533a14a9ba13d37e685fac899758d0141136b3b76f797782d2db96e7a36e10202ff5c8c51dff0 SHA512 212c90e55a56f035bd38d60433b36a030b64572aae79d1755ef9c0884b7e071383fd1153c8ee64482e1e0dabf699ef52031ef6a722bcb160bad02d0edb789f59
|
||||
DIST thunderbird-60.5.3-ja.xpi 653345 BLAKE2B 55609176ab64d1de3a1dd5a0d26cef923fb42905d00fa9134bcc35c50b98d27a6c5472abcaf4c1272bc1ce64d7126206d40d9ddc3ac4890a337cdf0b3c96f2a1 SHA512 a0ab061dfbfe74a0709531b011f2c897625c6782601868ea12f8a85ca49615f83fb3dd5d1bed4363776e08664006e7239a0aa7c4699c5a74a7fa403a827d00d7
|
||||
DIST thunderbird-60.5.3-ko.xpi 619730 BLAKE2B 7c68c9921c125535c4de9abbf714a7dcd0ab52369a506734ed5f7253e14813adcd99a1e6861f56182b5214c63a1bbe52d7a6284713d789c7c5244c0d68cc7725 SHA512 2ef936ed6c1650cf3ddcd04d58462a4f13d0a492c32920dca2606ca6adf4d8bb78b8bbcbbc000e442e841a83e35c6ebe3e20536ca2c81d087bc5fb3f1b8c3547
|
||||
DIST thunderbird-60.5.3-lt.xpi 605442 BLAKE2B dc3076dd4869da8db04f0911f518af1c3f8d907f82bc86a51fb1d5ee701154db0d67dff945749788e5b97a5bd2f772602f7ce2f167582fdda4399ec56e99e84e SHA512 876e70411b5aa11f041b1bc8c8165263248978c2de24dc900ef89df7b862368b4d4d36fe08af0d91f0b90414d48b677fe477c7addd72b5a24ad0d0be305c5448
|
||||
DIST thunderbird-60.5.3-nb-NO.xpi 577003 BLAKE2B 58dcfa3106b47b10f7d95af8af688f7517d53325db7bd87221ceb69bf75ffe98ae2d719c6017caa477211ebed9e63d0368ce36f522c0cfa97c09c7bde105360d SHA512 a05d9e3911b7fad6b413cc341d13cbea442646d9b8ee07c61528d8682f345a08cb7295ac42cdefc25210e46b51a7086451bbacd0bf0ed4ea4d228d5928322a94
|
||||
DIST thunderbird-60.5.3-nl.xpi 583912 BLAKE2B d773069770bf0d20f8f8ab30329ea5803e3a66319f655c3c8b40058bd927bf40b495b13465ae130652a5d499e427eb6c78ad9df531b93e65cabf8e95178b9ae0 SHA512 52eb896e06672ce2a2b39c4d212c64bb9d5912bba3cb6f7d5e7b2ad7cdcad4cd6e2758aab8847e470c0ea2f8d02f2498d4bfed64094af3aedb599f94f54fe639
|
||||
DIST thunderbird-60.5.3-nn-NO.xpi 576422 BLAKE2B ce2e1361d30f7e69277328f822f2da5428d103003910df33e6a5d314ef0e4f5565804de4d0f9102545118099f22e60babfd865a89d666c14ae3babbfbb3d32fc SHA512 c214e5cbb314ba54951d7d6f9ef3c9342676f2485cefe1cb3aa2a0dac4b0258aa724eb3f2138c5a0243c8cdbc6369265d73417857a387e2fafc7bcfa87c9f54c
|
||||
DIST thunderbird-60.5.3-pl.xpi 480725 BLAKE2B 1b53c166476c94605131ce6f816e860ef574c25360ff0a971c0781dd28a71ffde3d272a41f908321d0ea8b6a78d00f453506964b79c0571728304c2651e9521b SHA512 0cc7e6b8d437d81c6448d815c028d8af4a5c8aa7f23f8d75c49e7fdc47672686c47889361db72fc6a301b7511e944fb45922182b01309de2e5d48617caafd982
|
||||
DIST thunderbird-60.5.3-pt-BR.xpi 588835 BLAKE2B caf4ed9eebb4e659375e74d1544283a51b9ff794f89ee979437f509c0806922f2038c99d8f0eccd718403280299aa7a72f8bd5d1a40f1fa5925edebef06dfeb6 SHA512 43a3379e062ecd06ad0a4ff8847d18626f334f9681ed60fa189d748307ad24b79c58d052c4f86c1296d117a2758701d27099fe28a2451e11721e645767ea67d6
|
||||
DIST thunderbird-60.5.3-pt-PT.xpi 593186 BLAKE2B 2870e5484619041676b94f672e6b94998f9b44855c07fe73ea27f5b362d9c51f4b605057909ffbc1802bfe3b47c1926940ccda6e49dec69f6d81dd131637cdf3 SHA512 13409903e2da5433461e81fa1354196b17180ea75d76924d9d34cf52c9cb15e1cc45e94357b936c9ffe8c140e81ff5153bfa4460e1cc463669f1cf7c9aeaabbd
|
||||
DIST thunderbird-60.5.3-rm.xpi 578384 BLAKE2B bff6310528b3d7d99103615a36c4e94fe0df33974fcd3c958463f1b32c59068e6b28e65a3c2969fd9b372abe109422caaadeebd6ac47cda2900eafd2cfdad16b SHA512 700ebd0466e7a82c85445b56cd8f6496b03d1f623cec9a2eff57d6cdca7dffe5d77102e5cde5707ade532a3c37899d0aac99b06f4da78aa5422ed333712407c1
|
||||
DIST thunderbird-60.5.3-ro.xpi 584309 BLAKE2B 631534a9321f4f1dc1e731f4013933ca68360cb251cbaf07dbccca2e4793b5e13c41fc95016d9cb52531d60ef9a42080c5887d264a11f309e91cc76519ec56a2 SHA512 913079718a98c4db8cabbf30dda7de4b95259b45926a07a76703b7a07649f176b6909f45d235fcd0c4c912629c3867bd559ba74f66d71aae174bc1c785c6df76
|
||||
DIST thunderbird-60.5.3-ru.xpi 694705 BLAKE2B 566c5950746274596cbbfb7e8f3eb6f63fedef91a39a3b97becc90abac28f97ac6194c9bbb64c7bc1eb7df6e818e124d56e58d8770731415835b697e1b86a4fc SHA512 89d276131c8bf95b67671c58aefaf1892faddc306a16f6dc656af4c33c80b5db87aaf229d99425d5f97561f2bf72788979d03e5b36d4dccac83678058d82c8fa
|
||||
DIST thunderbird-60.5.3-si.xpi 647592 BLAKE2B 213e0e20201758b7eb22fbd31f6bbd53eddabfc77b4ca1464cd96556f0e0793c7487aeba3b03cec45330d6d960b06b1744fd07a0869201f97194f0cb781a5b26 SHA512 457afd678e39f9f8062c2a26c6249d5be464116992080c2138528b02fdb1f0a5d141be1bd043a7866c2038ffe1146d31944a3ada836ce21fa22b904307107d15
|
||||
DIST thunderbird-60.5.3-sk.xpi 612218 BLAKE2B f281b2b86615530e396515efd1e88a3ebf83eb8a63692d2c06f21d7c91e238c6fe6069a521e47e5f3dd29f7c4b46f017cadc3e21563d38145ac1520acc13496e SHA512 3c3cdbb8f9fede704fc1bc445cf5129739e263a13d7f2c9a1171c7707a25f5079a941248ff3cc6a65e5177cfdb595e04b056bbde413ffc6225a945a18fe46632
|
||||
DIST thunderbird-60.5.3-sl.xpi 589947 BLAKE2B 1f75449b5b009965d4b378a19c3c981810bc8b9302e2098d0ee5341bb2073fbb8e6c8ba7320fd0ac07c5a927651d4ac0b6287ef6de4188aab96683473558da22 SHA512 1550fb8cafc7b6bf1ed1003324d2d6836253d7e42bbac697027a8e3bb8436bd2a176b4d0a832568aa2bd2e1a664a38d51d3bb36c22e219871caf9896299f3056
|
||||
DIST thunderbird-60.5.3-sq.xpi 593096 BLAKE2B 7d0bba5a472600b5204288c13a673e61f5e6b6bc9db0dd61c4f90ef8ba8907deac7e2bce5c7154a7d287e37f5187088ae2cf0a1f3f1f0a5ce70c0fee60ad8a8f SHA512 3bd718be055e53be9fea9a83039c1b6103b24911d0a5d3710723b64ea02c4acea349a1ad8319faf6451a55733190e4c2bd87f47358725d81aa20e77ead3bc86d
|
||||
DIST thunderbird-60.5.3-sr.xpi 641527 BLAKE2B e9b323b4ac9ed89913d364c000a504b0ba577940dffea6c30cc44f2089640e6af8acfc9bfe8af89bd6d49a7fa15bf801c343c07c0acba42ba7e8537f03edc1b2 SHA512 9eaccfba8a209dfb97cf6239422d9e12340bcb861321ed7f439f864d8834840d7e7e4f6664138ae79d4d8f865b5b72c5aec2a044aa2ab73f25a06fecd9b87d78
|
||||
DIST thunderbird-60.5.3-sv-SE.xpi 594079 BLAKE2B 668df08340d40fb6ac7b07c04b769db165996e92ef6e028357f2fb16bd695b77c820d47d11dccf4039d681033fe78699aa13042063f6be4d83201b5a50da4cb6 SHA512 5862c2736209128d2eb20b1cdc75bc1296aca3755685d962674c4e0a3b0b4441fc0f410da080bad85386474c5c1eac8f414d96fe2715343c81f3c4f18487a4e5
|
||||
DIST thunderbird-60.5.3-tr.xpi 598010 BLAKE2B 91225e58d72ff5264d13e6a3bd783ed907f7f067e9a9f7a34704d42b16f6ee596d93631cace8fa3536acaa820c826901108eb8e2e9e84c0210dd70c63b8b9295 SHA512 a368c162b19496e83a27c28161909b87e45d50a1faaee312a50ba0cd2e2380de1aa9c512d8d354cfe1972a3e2ced24d3aa62c951076a243336fbecf5b39778fe
|
||||
DIST thunderbird-60.5.3-uk.xpi 684155 BLAKE2B 079bbc16e8cc9fe64ad203d04b735a297724f55975cb4c62a78e1498f081300102907c06c3d9c3643cb6105ffd668220e6c678f05d005d292b95315a6d4401e2 SHA512 7e33ed75dda430329ea0014caa382e3f8e6c57593d2d2178bea8b14e5cc8d8df48bc7a29bc423e88bfba083d62c338a54b7a00a0ad6112861fdbfa7c4a6a5031
|
||||
DIST thunderbird-60.5.3-vi.xpi 637197 BLAKE2B aaf475ec7800c6ecd5d450c0697e6f9ef53c38a8c77ec21ff6a4637e3e496d34e671c51ff5e51b5b1f4cb88dd7afce090050c3e21c07bae7ad0f3e36d6ae4b68 SHA512 9ded56e89a932dfe84ce0505cc6f927dff4a106351483ee7ba309d45b4b663f508fd55c59b52869271798e78dfde907a4c38d091331ea1dfcdb709e4d9616934
|
||||
DIST thunderbird-60.5.3-zh-CN.xpi 626283 BLAKE2B e8f63b43a7060cd6a56696d38b7fd7a35311b015a576ce3e13dd5528cb97f914e3dbf393fe71d29f9d1355769e31b3190bb1e9584e8b9992163b24f122627b63 SHA512 a83c5e9de03027ee62402510daa6c7afa58af300b9b2605f840220ccd70361492011473f1b9b39d0162235471175c50b998aeb56649f087a87fe9cfe6225c927
|
||||
DIST thunderbird-60.5.3-zh-TW.xpi 626189 BLAKE2B 91175d151a1ae7f0a191c30b3e40ce47b2616fe7e3c8a9aaac1fb832b1dd29dbf74868015d909b17eb14356e69f80f94ed0a9126e9cdad640e571d7730a1c0f5 SHA512 a96dff2e5094746cd84ec9e14b88580fc3481a82d0f52f78ef970164bbd7093fef1eada4fb0a832397a39a98c7d4dbdac8a667e071483e36a5e888c0d6702158
|
||||
DIST thunderbird-60.5.3.source.tar.xz 284754320 BLAKE2B 776872c255fd204ad28d8cdbf4a57d822714c0ee041c824263427aa48a7780abbf0e707ded655ec29fdd3111e5bcfe6c1dc0263d9809191178ee86bec8def768 SHA512 0b647988e711be9a113b6c520d889200898a675391e61916a4d16578d5b1335263c9ebc623369b4f5160abf08fd1be5954ede42bc17f03f1b2937d8b9fd565c9
|
||||
|
|
Binary file not shown.
|
@ -122,7 +122,7 @@ SRC_URI="https://alioth.debian.org/frs/download.php/file/${FRS_ID}/${P}.tar.gz"
|
|||
|
||||
LICENSE="GPL-2 public-domain"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
|
||||
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
|
||||
|
||||
RDEPEND="
|
||||
sane_backends_dc210? ( >=virtual/jpeg-0-r2:0=[${MULTILIB_USEDEP}] )
|
||||
|
|
Binary file not shown.
|
@ -1 +1,2 @@
|
|||
DIST dav1d-0.1.0.tar.bz2 351745 BLAKE2B 302680ddfdc8d5a3eff90541ed156e820c3322bfb93316da1b2deabeac40062103af19e99dfa810678e62ad668c4aed944ac9bf8160afb301b100063919ed2a1 SHA512 5893ad40af7c4f5c3678ecc604ad360b5d1cd3fadaa16f7183d638745097fed091aeb3456540db61a2f4f0fc8bb93f2a20f428c76a7976d3fd186cc8b8baed53
|
||||
DIST dav1d-0.2.0.tar.bz2 408361 BLAKE2B 2c5f4d7777d85ab1453a744335ee5047b2e108a70e884c5116d8d1a56b81c1f852c93666bd0bb3f4d5105f2220bbc6c92f893848f0cf1bfc0bce1ee1f551287c SHA512 378060ed6762f9f6baf7addfa7382cb0873bbc606f0389eee4ed7537dcfc851f5b159a34af0f15d9f8d345a9b2a950f38078a419144b0458aa3464e54ea5d490
|
||||
|
|
58
media-libs/dav1d/dav1d-0.2.0.ebuild
Normal file
58
media-libs/dav1d/dav1d-0.2.0.ebuild
Normal file
|
@ -0,0 +1,58 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
SCM=""
|
||||
if [[ "${PV}" == "9999" ]]; then
|
||||
SCM="git-r3"
|
||||
EGIT_REPO_URI="https://code.videolan.org/videolan/dav1d"
|
||||
else
|
||||
KEYWORDS="~amd64"
|
||||
SRC_URI="https://code.videolan.org/videolan/dav1d/-/archive/${PV}/${P}.tar.bz2"
|
||||
fi
|
||||
|
||||
inherit ${SCM} meson ninja-utils multilib-minimal
|
||||
|
||||
DESCRIPTION="dav1d is an AV1 Decoder :)"
|
||||
HOMEPAGE="https://code.videolan.org/videolan/dav1d"
|
||||
|
||||
LICENSE="BSD-2"
|
||||
SLOT="0"
|
||||
IUSE="+8bit +10bit +asm"
|
||||
|
||||
ASM_DEPEND=">=dev-lang/nasm-2.13"
|
||||
RDEPEND=""
|
||||
DEPEND="${RDEPEND}
|
||||
asm? (
|
||||
abi_x86_32? ( ${ASM_DEPEND} )
|
||||
abi_x86_64? ( ${ASM_DEPEND} )
|
||||
)"
|
||||
|
||||
DOCS=( README.md doc/PATENTS )
|
||||
|
||||
multilib_src_configure() {
|
||||
local -a bits=()
|
||||
use 8bit && bits+=( 8 )
|
||||
use 10bit && bits+=( 16 )
|
||||
|
||||
if [[ ${MULTILIB_ABI_FLAG} == abi_x86_x32 ]]; then
|
||||
build_asm=false
|
||||
else
|
||||
build_asm=$(usex asm true false)
|
||||
fi
|
||||
|
||||
local emesonargs=(
|
||||
-D bitdepths=$(IFS=,; echo "${bits[*]}")
|
||||
-D build_asm=$build_asm
|
||||
)
|
||||
meson_src_configure
|
||||
}
|
||||
|
||||
multilib_src_compile() {
|
||||
eninja
|
||||
}
|
||||
|
||||
multilib_src_install() {
|
||||
DESTDIR="${D}" eninja install
|
||||
}
|
|
@ -11,7 +11,7 @@ SRC_URI="https://launchpad.net/${PN}/trunk/${P}/+download/${P}.tar.bz2"
|
|||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm ~arm64 ~hppa ~mips ppc ppc64 x86"
|
||||
KEYWORDS="amd64 arm ~arm64 hppa ~mips ppc ppc64 x86"
|
||||
IUSE="expat static-libs test xml"
|
||||
|
||||
RDEPEND="expat? ( >=dev-libs/expat-2.1.0-r3[${MULTILIB_USEDEP}] )
|
||||
|
|
Binary file not shown.
|
@ -1,3 +1,4 @@
|
|||
DIST kodi-pvr-dvblink-3.3.11.tar.gz 150155 BLAKE2B a3c3a224885324f82d19d6b4fb467699cccacefa21729ee736c57f8823228a8b701335aba06c393542c5f4080a445b9a244c6c420e7134c5ef74284f70e8035f SHA512 4bc6b6c468c4578528e105003d37bf1b18d6decfd61144ec6e92cb9cc4c05e03d5fb0e475d48674f43b7feb5957f1d891cda6afe72e9f50c0834bdf4519074bb
|
||||
DIST kodi-pvr-dvblink-3.4.5.tar.gz 152982 BLAKE2B d74d7c33aeddbbbe588cb61e84ee06590a324ceace3c6cf1cd83d8f14ed7888376a237a9b5d6fc795e980da5f9f63fe9a4ed096dcccb8aed3fe549f07acedd1f SHA512 094781e1c944c7a64797f092404aa5eaa267fe31dcbf266441bcbe003362ca78e1732bf80ee26f703f3cdbe8f375f82131a0e6e2865b678e3c99c67220bb38e9
|
||||
DIST kodi-pvr-dvblink-4.7.1.tar.gz 181247 BLAKE2B a9368ed515f942a7144a50e02c5ada8029d3b87a61230ad9021065c90587afd449ef56e402e36e0cb0c9aefa226486ac793b11c2d509c9559a91c81b50753cab SHA512 66e132274632c10034c8dff78e1b72cf273b6e9e3dffff4ab2efb877ed509a88c8afda600734c93cb228ad7879a5e6815e89ae83d8b5e8d9d88c0c8b8dd3e25e
|
||||
DIST kodi-pvr-dvblink-4.7.2.tar.gz 180347 BLAKE2B 83ca3cf04de7cfda420da8f068022062ee08920d5313cf2e740c1512bc5c1ec3dc8cd1613f5aa1f30049193d777773d5e73ae66e616dc3e5ea4064cac72b4f01 SHA512 9057a066fa228a271e4b21935bf1b823bd7184d3cea62bdb358932d3a8018c86a1129548c5e54414bf068bcdaad7726a8355d5bc5c61f64130396fef8e089be5
|
||||
|
|
38
media-plugins/kodi-pvr-dvblink/kodi-pvr-dvblink-4.7.2.ebuild
Normal file
38
media-plugins/kodi-pvr-dvblink/kodi-pvr-dvblink-4.7.2.ebuild
Normal file
|
@ -0,0 +1,38 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit cmake-utils kodi-addon
|
||||
|
||||
DESCRIPTION="Kodi's DVBLink client addon"
|
||||
HOMEPAGE="https://github.com/kodi-pvr/pvr.dvblink"
|
||||
SRC_URI=""
|
||||
|
||||
case ${PV} in
|
||||
9999)
|
||||
SRC_URI=""
|
||||
EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.dvblink.git"
|
||||
inherit git-r3
|
||||
;;
|
||||
*)
|
||||
CODENAME="Leia"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
SRC_URI="https://github.com/kodi-pvr/pvr.dvblink/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/pvr.dvblink-${PV}-${CODENAME}"
|
||||
;;
|
||||
esac
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
=media-tv/kodi-18*
|
||||
=media-libs/kodi-platform-18*
|
||||
dev-libs/tinyxml2
|
||||
"
|
||||
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
|
@ -1,3 +1,4 @@
|
|||
DIST kodi-pvr-vuplus-2.4.10.tar.gz 80514 BLAKE2B d84f0da7f8473456ce6258b2602fb2ddc7631080d951ac33f603d9b649369c6cfd1fc36421ac200de7aaacd09cd23797c70e9f187bb011353889144aa8014f70 SHA512 b9569a85a6cb2c02b72f9494148f55874acc7c4a826704abfd4bd1d29c96b6221dbc62510c3823947b6496bd3465d6d9cd2089009d984fa706efc5b8ea882fa1
|
||||
DIST kodi-pvr-vuplus-3.17.0.tar.gz 160410 BLAKE2B 0eae7616abf01713148f6ac5370ccc2de9ee47dcb4b024119c16b1417fe1c655a8f1e9d9af188ae5106399cd321303f2ceb232b037f220411b15990986a6cea9 SHA512 a9c7e46af9bc1cdc18aeacac6f219c3c4210854287e086870e64b1cf2350b69b32d8ec3e980805be00093020ff3423b1cf7eb47dabcca4b14eee1f1cbe49e9f1
|
||||
DIST kodi-pvr-vuplus-3.18.1.tar.gz 163398 BLAKE2B 30cab3bcd9e0750c116f2e95170fd5d9fdc5c1be0f8068ed58aafc265454105d70504c6bf661d0b4c2e21eb9ca9e1868ec8da8e32bd39a054feae5bf8804ab46 SHA512 eadfb01b5a9d478d03bf720133c5de163b5fc1b8789dd2f756724dd180bc00ae593c43a4e727d6f6c9646a99626cc8dd6ee72cb054db65c2a49acc08ebb00ccc
|
||||
DIST kodi-pvr-vuplus-3.19.0.tar.gz 168331 BLAKE2B 141de1df21ae4149be56be3d952edd15792567aae39b337671c8f53cf28b1208dd69993a3680deb25b006b1d92eaa1a5b151ebc394f84d041d7cf99e56c206a4 SHA512 3a59aa691b0982cfbae466a3fa148a9ab71c7daeaeff1b91fdb71da4fbb406a6fa0346551bf7da37a4ba4dd6c1f58a2a3e41b0533b69afa4e28ecdf52be0029c
|
||||
|
|
39
media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.19.0.ebuild
Normal file
39
media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.19.0.ebuild
Normal file
|
@ -0,0 +1,39 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit cmake-utils kodi-addon
|
||||
|
||||
DESCRIPTION="Kodi's VuPlus client addon"
|
||||
HOMEPAGE="https://github.com/kodi-pvr/pvr.vuplus"
|
||||
SRC_URI=""
|
||||
|
||||
case ${PV} in
|
||||
9999)
|
||||
SRC_URI=""
|
||||
EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vuplus.git"
|
||||
inherit git-r3
|
||||
;;
|
||||
*)
|
||||
CODENAME="Leia"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
SRC_URI="https://github.com/kodi-pvr/pvr.vuplus/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/pvr.vuplus-${PV}-${CODENAME}"
|
||||
;;
|
||||
esac
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
=media-tv/kodi-18*
|
||||
=media-libs/kodi-platform-18*
|
||||
dev-libs/tinyxml
|
||||
dev-cpp/nlohmann_json
|
||||
"
|
||||
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
Binary file not shown.
|
@ -1,2 +1,3 @@
|
|||
DIST pragha-1.3.3.tar.bz2 679754 BLAKE2B e9e785998d5ae805aa8427d18d1cbdcdd1e23224ce18b3927933c0986fd8793dec9457eedcb005be498b37940cc3c7e36e68940ccaa675f4b350931315c3d997 SHA512 3dc87d4e75cd9f145c3921af4c09140a705611d72176fd80db2d89048bc22c8edda5f87bce75f26e0cce4f6934c927e814e5c54fec7820116485cf4e04e876a9
|
||||
DIST pragha-1.3.4.tar.bz2 691256 BLAKE2B af1455633a4f9d3c40f6b97051692fa301cfb763d0ca5f03c3ae932513556ff7a6fed5c68cdd3f7e86dbca305598cb9495221e1b2c841f7e1cb56905fa742130 SHA512 65aadf68f427f03ea7ca07d2002806eb94019c8091a80320da7d8ff4c2f0cd912e9c346956188b42d2b7a68c56c79ee5af8e8327c69ad69f4a1fa5b9e3b3ca58
|
||||
DIST pragha-1.3.99.tar.bz2 781892 BLAKE2B 9d73dd2859db0c7ab7ac66fdafe873bd78b019408682828ddd05aa18a1591576df667e326037a7ca28eaed227fcbce943209fad16c9f55bb38c0c2c808275104 SHA512 df032fe16932ad464417306d8d01373b8e415f5f810a06b1baff647a395b10bdee5c912f36a3f6e3ea6a0e04d399257e202112c1838444d23dfc17b5fd34e12b
|
||||
|
|
88
media-sound/pragha/pragha-1.3.4.ebuild
Normal file
88
media-sound/pragha/pragha-1.3.4.ebuild
Normal file
|
@ -0,0 +1,88 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit gnome2-utils xdg-utils
|
||||
|
||||
DESCRIPTION="A lightweight music player (for Xfce)"
|
||||
HOMEPAGE="https://github.com/pragha-music-player/pragha"
|
||||
SRC_URI="https://github.com/pragha-music-player/${PN}/releases/download/v${PV}/${P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="cdda +glyr grilo +keybinder lastfm libnotify mtp +peas +playlist rygel soup +udev"
|
||||
|
||||
COMMON_DEPEND=">=dev-db/sqlite-3.4:3=
|
||||
>=dev-libs/glib-2.36:=
|
||||
media-libs/gstreamer:1.0=
|
||||
media-libs/gst-plugins-base:1.0=
|
||||
>=media-libs/taglib-1.8:=
|
||||
>=x11-libs/gtk+-3.8:3=
|
||||
>=xfce-base/libxfce4ui-4.11:=[gtk3(+)]
|
||||
cdda? ( >=dev-libs/libcdio-0.90:=
|
||||
>=dev-libs/libcdio-paranoia-0.90:=
|
||||
>=media-libs/libcddb-1.3.0:= )
|
||||
glyr? ( >=media-libs/glyr-1.0.1:= )
|
||||
grilo? ( media-libs/grilo:0.3=[network] )
|
||||
keybinder? ( >=dev-libs/keybinder-0.2.0:3= )
|
||||
lastfm? ( >=media-libs/libclastfm-0.5:= )
|
||||
libnotify? ( >=x11-libs/libnotify-0.7.5:= )
|
||||
mtp? ( >=media-libs/libmtp-1.1.0:= )
|
||||
peas? ( >=dev-libs/libpeas-1.0.0:=[gtk] )
|
||||
playlist? ( >=dev-libs/totem-pl-parser-2.26:= )
|
||||
rygel? ( >=net-misc/rygel-0.20:= )
|
||||
soup? ( >=net-libs/libsoup-2.38:= )
|
||||
udev? ( virtual/libgudev:= )"
|
||||
RDEPEND="${COMMON_DEPEND}
|
||||
media-plugins/gst-plugins-meta:1.0"
|
||||
DEPEND="${COMMON_DEPEND}
|
||||
dev-util/intltool
|
||||
>=dev-util/xfce4-dev-tools-4.10
|
||||
sys-devel/gettext
|
||||
virtual/pkgconfig"
|
||||
REQUIRED_USE="glyr? ( peas )
|
||||
grilo? ( peas )
|
||||
libnotify? ( peas )
|
||||
mtp? ( udev )
|
||||
rygel? ( peas )
|
||||
soup? ( peas )
|
||||
udev? ( peas )"
|
||||
|
||||
src_configure() {
|
||||
local myconf=(
|
||||
$(use_enable peas libpeas-1.0)
|
||||
$(use_enable glyr libglyr)
|
||||
$(use_enable lastfm libclastfm)
|
||||
$(use_enable cdda libcdio)
|
||||
$(use_enable cdda libcdio_paranoia)
|
||||
$(use_enable cdda libcddb)
|
||||
$(use_enable playlist totem-plparser)
|
||||
|
||||
$(use_enable libnotify)
|
||||
$(use_enable keybinder)
|
||||
$(use_enable udev gudev-1.0)
|
||||
$(use_enable mtp libmtp)
|
||||
$(use_enable soup libsoup-2.4)
|
||||
$(use_enable rygel rygel-server-2.6)
|
||||
$(use_enable grilo grilo-0.3)
|
||||
--disable-grilo-0.2
|
||||
)
|
||||
econf "${myconf[@]}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
find "${D}" -name '*.la' -delete || die
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
gnome2_icon_cache_update
|
||||
xdg_desktop_database_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
gnome2_icon_cache_update
|
||||
xdg_desktop_database_update
|
||||
}
|
Binary file not shown.
|
@ -1,46 +0,0 @@
|
|||
From f585edfffa79ebbbcb0557be2e889809b76b5def Mon Sep 17 00:00:00 2001
|
||||
From: Rechi <Rechi@users.noreply.github.com>
|
||||
Date: Wed, 21 Dec 2016 17:10:54 +0100
|
||||
Subject: [PATCH 1/2] [cmake] build TestWebServer only if HTTPRequestHandlers
|
||||
are build
|
||||
|
||||
---
|
||||
xbmc/network/test/CMakeLists.txt | 6 ++++--
|
||||
1 file changed, 4 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/xbmc/network/test/CMakeLists.txt b/xbmc/network/test/CMakeLists.txt
|
||||
index 5d1dab328160..a323d1835b07 100644
|
||||
--- a/xbmc/network/test/CMakeLists.txt
|
||||
+++ b/xbmc/network/test/CMakeLists.txt
|
||||
@@ -1,3 +1,5 @@
|
||||
-set(SOURCES TestWebServer.cpp)
|
||||
+if(MICROHTTPD_FOUND)
|
||||
+ set(SOURCES TestWebServer.cpp)
|
||||
|
||||
-core_add_test_library(network_test)
|
||||
+ core_add_test_library(network_test)
|
||||
+endif()
|
||||
|
||||
From f7a514064923d0d693c122cc8fbe3b72cc205820 Mon Sep 17 00:00:00 2001
|
||||
From: Rechi <Rechi@users.noreply.github.com>
|
||||
Date: Wed, 21 Dec 2016 17:10:57 +0100
|
||||
Subject: [PATCH 2/2] [win] remove HAS_WEB_SERVER & HAS_WEB_INTERFACE defines,
|
||||
they are handled trough HAVE_LIBMICROHTTPD (cmake)
|
||||
|
||||
---
|
||||
xbmc/system.h | 2 --
|
||||
1 file changed, 2 deletions(-)
|
||||
|
||||
diff --git a/xbmc/system.h b/xbmc/system.h
|
||||
index 07dfe87e4a01..26757ca90642 100644
|
||||
--- a/xbmc/system.h
|
||||
+++ b/xbmc/system.h
|
||||
@@ -97,8 +97,6 @@
|
||||
#define HAS_WIN32_NETWORK
|
||||
#define HAS_IRSERVERSUITE
|
||||
#define HAS_AUDIO
|
||||
-#define HAS_WEB_SERVER
|
||||
-#define HAS_WEB_INTERFACE
|
||||
#define HAS_FILESYSTEM_SMB
|
||||
#define HAS_ZEROCONF
|
||||
#define HAS_MDNS
|
Binary file not shown.
|
@ -1 +1 @@
|
|||
Tue, 05 Mar 2019 13:38:41 +0000
|
||||
Wed, 06 Mar 2019 05:08:41 +0000
|
||||
|
|
|
@ -1 +1 @@
|
|||
Tue, 05 Mar 2019 13:38:41 +0000
|
||||
Wed, 06 Mar 2019 05:08:41 +0000
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -10,4 +10,4 @@ RDEPEND=ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:
|
|||
SLOT=0
|
||||
SRC_URI=https://www.conserver.com/conserver-8.1.18.tar.gz
|
||||
_eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 pam 3e788d86170dfcd5b06824d898315e18 preserve-libs ef207dc62baddfddfd39a164d9797648 ssl-cert a1a4daed6b2479901759d6fe367c4c29 toolchain-funcs f164325a2cdb5b3ea39311d483988861 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf
|
||||
_md5_=89cdb42927dd147112106c4f69996e4d
|
||||
_md5_=28737db6bdea110ab32c8910abe42f77
|
||||
|
|
13
metadata/md5-cache/app-admin/conserver-8.2.2
Normal file
13
metadata/md5-cache/app-admin/conserver-8.2.2
Normal file
|
@ -0,0 +1,13 @@
|
|||
DEFINED_PHASES=configure install postinst prepare test
|
||||
DEPEND=debug? ( dev-libs/dmalloc:= ) freeipmi? ( sys-libs/freeipmi:= ) kerberos? ( virtual/krb5 net-libs/libgssglue ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) pam? ( virtual/pam ) tcpd? ( sys-apps/tcp-wrappers ) >=app-portage/elt-patches-20170815 !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 ssl? ( || ( dev-libs/openssl:0 dev-libs/libressl:0 ) )
|
||||
DESCRIPTION=Serial Console Manager
|
||||
EAPI=6
|
||||
HOMEPAGE=https://www.conserver.com
|
||||
IUSE=debug ipv6 freeipmi kerberos libressl pam ssl test tcpd ssl
|
||||
KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86
|
||||
LICENSE=BSD BSD-with-attribution
|
||||
RDEPEND=debug? ( dev-libs/dmalloc:= ) freeipmi? ( sys-libs/freeipmi:= ) kerberos? ( virtual/krb5 net-libs/libgssglue ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) pam? ( virtual/pam ) tcpd? ( sys-apps/tcp-wrappers ) pam? ( sys-auth/pambase )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/conserver/conserver/releases/download/v8.2.2/conserver-8.2.2.tar.gz
|
||||
_eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 pam 3e788d86170dfcd5b06824d898315e18 preserve-libs ef207dc62baddfddfd39a164d9797648 ssl-cert a1a4daed6b2479901759d6fe367c4c29 toolchain-funcs f164325a2cdb5b3ea39311d483988861 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf
|
||||
_md5_=b50ff7affdd04b83d9ffa1dfcab82de3
|
12
metadata/md5-cache/app-admin/filebeat-6.3.2
Normal file
12
metadata/md5-cache/app-admin/filebeat-6.3.2
Normal file
|
@ -0,0 +1,12 @@
|
|||
DEFINED_PHASES=compile install postinst prepare unpack
|
||||
DEPEND=>=dev-lang/go-1.10.3
|
||||
DESCRIPTION=Lightweight log shipper for Logstash and Elasticsearch
|
||||
EAPI=7
|
||||
HOMEPAGE=https://www.elastic.co/products/beats
|
||||
KEYWORDS=amd64 ~x86
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=!app-admin/filebeat-bin
|
||||
RESTRICT=test
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/elastic/beats/archive/v6.3.2.tar.gz -> filebeat-6.3.2.tar.gz
|
||||
_md5_=e62a202124eb552a3bf39b3ecbaa85dc
|
12
metadata/md5-cache/app-admin/filebeat-6.4.3
Normal file
12
metadata/md5-cache/app-admin/filebeat-6.4.3
Normal file
|
@ -0,0 +1,12 @@
|
|||
DEFINED_PHASES=compile install postinst prepare unpack
|
||||
DEPEND=>=dev-lang/go-1.10.3
|
||||
DESCRIPTION=Lightweight log shipper for Logstash and Elasticsearch
|
||||
EAPI=7
|
||||
HOMEPAGE=https://www.elastic.co/products/beats
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=!app-admin/filebeat-bin
|
||||
RESTRICT=test
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/elastic/beats/archive/v6.4.3.tar.gz -> filebeat-6.4.3.tar.gz
|
||||
_md5_=e15a9189da38d02b01d817831b82d1d1
|
12
metadata/md5-cache/app-admin/filebeat-6.5.4
Normal file
12
metadata/md5-cache/app-admin/filebeat-6.5.4
Normal file
|
@ -0,0 +1,12 @@
|
|||
DEFINED_PHASES=compile install postinst prepare unpack
|
||||
DEPEND=>=dev-lang/go-1.11.2
|
||||
DESCRIPTION=Lightweight log shipper for Logstash and Elasticsearch
|
||||
EAPI=7
|
||||
HOMEPAGE=https://www.elastic.co/products/beats
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=!app-admin/filebeat-bin
|
||||
RESTRICT=test
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/elastic/beats/archive/v6.5.4.tar.gz -> filebeat-6.5.4.tar.gz
|
||||
_md5_=ec582d09aa0fae819bffb14b4c280207
|
14
metadata/md5-cache/app-admin/fluentd-1.4.0
Normal file
14
metadata/md5-cache/app-admin/fluentd-1.4.0
Normal file
|
@ -0,0 +1,14 @@
|
|||
DEFINED_PHASES=compile configure install postinst prepare setup test unpack
|
||||
DEPEND=test? ( ruby_targets_ruby23? ( >=dev-ruby/msgpack-0.7.0[ruby_targets_ruby23] >=dev-ruby/yajl-ruby-1.0[ruby_targets_ruby23] >=dev-ruby/coolio-1.4.5[ruby_targets_ruby23] >=dev-ruby/serverengine-2.0.4[ruby_targets_ruby23] >=dev-ruby/http_parser_rb-0.5.1[ruby_targets_ruby23] >=dev-ruby/sigdump-0.2.2[ruby_targets_ruby23] >=dev-ruby/tzinfo-1.0[ruby_targets_ruby23] >=dev-ruby/strptime-0.2.2[ruby_targets_ruby23] ) ruby_targets_ruby24? ( >=dev-ruby/msgpack-0.7.0[ruby_targets_ruby24] >=dev-ruby/yajl-ruby-1.0[ruby_targets_ruby24] >=dev-ruby/coolio-1.4.5[ruby_targets_ruby24] >=dev-ruby/serverengine-2.0.4[ruby_targets_ruby24] >=dev-ruby/http_parser_rb-0.5.1[ruby_targets_ruby24] >=dev-ruby/sigdump-0.2.2[ruby_targets_ruby24] >=dev-ruby/tzinfo-1.0[ruby_targets_ruby24] >=dev-ruby/strptime-0.2.2[ruby_targets_ruby24] ) ruby_targets_ruby25? ( >=dev-ruby/msgpack-0.7.0[ruby_targets_ruby25] >=dev-ruby/yajl-ruby-1.0[ruby_targets_ruby25] >=dev-ruby/coolio-1.4.5[ruby_targets_ruby25] >=dev-ruby/serverengine-2.0.4[ruby_targets_ruby25] >=dev-ruby/http_parser_rb-0.5.1[ruby_targets_ruby25] >=dev-ruby/sigdump-0.2.2[ruby_targets_ruby25] >=dev-ruby/tzinfo-1.0[ruby_targets_ruby25] >=dev-ruby/strptime-0.2.2[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rake[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rake[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) test? ( ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) )
|
||||
DESCRIPTION=data collector and unified logging layer (project under CNCF)
|
||||
EAPI=6
|
||||
HOMEPAGE=https://www.fluentd.org
|
||||
IUSE=test elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 doc test test
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=ruby_targets_ruby23? ( >=dev-ruby/msgpack-0.7.0[ruby_targets_ruby23] >=dev-ruby/yajl-ruby-1.0[ruby_targets_ruby23] >=dev-ruby/coolio-1.4.5[ruby_targets_ruby23] >=dev-ruby/serverengine-2.0.4[ruby_targets_ruby23] >=dev-ruby/http_parser_rb-0.5.1[ruby_targets_ruby23] >=dev-ruby/sigdump-0.2.2[ruby_targets_ruby23] >=dev-ruby/tzinfo-1.0[ruby_targets_ruby23] >=dev-ruby/strptime-0.2.2[ruby_targets_ruby23] ) ruby_targets_ruby24? ( >=dev-ruby/msgpack-0.7.0[ruby_targets_ruby24] >=dev-ruby/yajl-ruby-1.0[ruby_targets_ruby24] >=dev-ruby/coolio-1.4.5[ruby_targets_ruby24] >=dev-ruby/serverengine-2.0.4[ruby_targets_ruby24] >=dev-ruby/http_parser_rb-0.5.1[ruby_targets_ruby24] >=dev-ruby/sigdump-0.2.2[ruby_targets_ruby24] >=dev-ruby/tzinfo-1.0[ruby_targets_ruby24] >=dev-ruby/strptime-0.2.2[ruby_targets_ruby24] ) ruby_targets_ruby25? ( >=dev-ruby/msgpack-0.7.0[ruby_targets_ruby25] >=dev-ruby/yajl-ruby-1.0[ruby_targets_ruby25] >=dev-ruby/coolio-1.4.5[ruby_targets_ruby25] >=dev-ruby/serverengine-2.0.4[ruby_targets_ruby25] >=dev-ruby/http_parser_rb-0.5.1[ruby_targets_ruby25] >=dev-ruby/sigdump-0.2.2[ruby_targets_ruby25] >=dev-ruby/tzinfo-1.0[ruby_targets_ruby25] >=dev-ruby/strptime-0.2.2[ruby_targets_ruby25] ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] )
|
||||
REQUIRED_USE=|| ( ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://rubygems/fluentd-1.4.0.gem
|
||||
_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 99ea75c9f08fd38989951c554dfa56ea ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs f164325a2cdb5b3ea39311d483988861 user 8bd74731cafdcdad8f7a63637302e073 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748
|
||||
_md5_=ae970460f208820ef188406646336c87
|
Binary file not shown.
14
metadata/md5-cache/app-cdr/cdemu-3.2.1
Normal file
14
metadata/md5-cache/app-cdr/cdemu-3.2.1
Normal file
|
@ -0,0 +1,14 @@
|
|||
DEFINED_PHASES=compile configure install postinst postrm prepare setup test
|
||||
DEPEND=dev-util/desktop-file-utils >=dev-util/intltool-0.21 >=sys-devel/gettext-0.18 virtual/pkgconfig sys-devel/make >=dev-util/cmake-3.9.6
|
||||
DESCRIPTION=Command-line tool for controlling cdemu-daemon
|
||||
EAPI=6
|
||||
HOMEPAGE=http://cdemu.org
|
||||
IUSE=+cdemu-daemon python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 python_single_target_python3_4 python_single_target_python3_5 python_single_target_python3_6 python_single_target_python3_7
|
||||
KEYWORDS=~amd64 ~hppa ~x86
|
||||
LICENSE=GPL-2+
|
||||
RDEPEND=python_single_target_python3_4? ( dev-lang/python:3.4 ) python_single_target_python3_5? ( dev-lang/python:3.5 ) python_single_target_python3_6? ( dev-lang/python:3.6 ) python_single_target_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] dev-python/pygobject:3[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] cdemu-daemon? ( app-cdr/cdemu-daemon:0/7 )
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_4 python_single_target_python3_5 python_single_target_python3_6 python_single_target_python3_7 ) python_single_target_python3_4? ( python_targets_python3_4 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) python_single_target_python3_7? ( python_targets_python3_7 )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://sourceforge/cdemu/cdemu-client-3.2.1.tar.bz2
|
||||
_eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs f164325a2cdb5b3ea39311d483988861 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213
|
||||
_md5_=9505d0e00e0e45c1225973ede4312d51
|
12
metadata/md5-cache/app-cdr/cdemu-daemon-3.2.2
Normal file
12
metadata/md5-cache/app-cdr/cdemu-daemon-3.2.2
Normal file
|
@ -0,0 +1,12 @@
|
|||
DEFINED_PHASES=compile configure install postinst prepare test
|
||||
DEPEND=>=dev-libs/glib-2.38:2 >=dev-libs/libmirage-3.2.0:= >=media-libs/libao-0.8.0:= dev-util/intltool sys-devel/gettext virtual/pkgconfig sys-devel/make >=dev-util/cmake-3.9.6
|
||||
DESCRIPTION=Daemon of the CDEmu optical media image mounting suite
|
||||
EAPI=6
|
||||
HOMEPAGE=http://cdemu.org
|
||||
KEYWORDS=~amd64 ~hppa ~x86
|
||||
LICENSE=GPL-2+
|
||||
RDEPEND=>=dev-libs/glib-2.38:2 >=dev-libs/libmirage-3.2.0:= >=media-libs/libao-0.8.0:= sys-apps/dbus >=sys-fs/vhba-20130607
|
||||
SLOT=0/7
|
||||
SRC_URI=mirror://sourceforge/cdemu/cdemu-daemon-3.2.2.tar.bz2
|
||||
_eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs f164325a2cdb5b3ea39311d483988861 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213
|
||||
_md5_=8eff5398077928e43357c45fb1d5528a
|
14
metadata/md5-cache/app-cdr/gcdemu-3.2.1
Normal file
14
metadata/md5-cache/app-cdr/gcdemu-3.2.1
Normal file
|
@ -0,0 +1,14 @@
|
|||
DEFINED_PHASES=compile configure install postinst postrm prepare setup test
|
||||
DEPEND=dev-util/desktop-file-utils >=dev-util/intltool-0.21 sys-devel/gettext virtual/pkgconfig sys-devel/make >=dev-util/cmake-3.9.6
|
||||
DESCRIPTION=Gtk+ GUI for controlling cdemu-daemon
|
||||
EAPI=6
|
||||
HOMEPAGE=http://cdemu.org/
|
||||
IUSE=python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 python_single_target_python3_4 python_single_target_python3_5 python_single_target_python3_6 python_single_target_python3_7
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-2+
|
||||
RDEPEND=python_single_target_python3_4? ( dev-lang/python:3.4 ) python_single_target_python3_5? ( dev-lang/python:3.5 ) python_single_target_python3_6? ( dev-lang/python:3.6 ) python_single_target_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] app-cdr/cdemu-daemon:0/7 dev-python/pygobject:3[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] gnome-base/librsvg:2 x11-libs/gdk-pixbuf[introspection] x11-libs/gtk+:3[introspection] x11-libs/libnotify[introspection]
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_4 python_single_target_python3_5 python_single_target_python3_6 python_single_target_python3_7 ) python_single_target_python3_4? ( python_targets_python3_4 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) python_single_target_python3_7? ( python_targets_python3_7 )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://sourceforge/cdemu/gcdemu-3.2.1.tar.bz2
|
||||
_eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs f164325a2cdb5b3ea39311d483988861 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213
|
||||
_md5_=4e0ed5c2c4c18e1fa34e1f2a915f03d0
|
Binary file not shown.
12
metadata/md5-cache/app-metrics/prometheus-2.7.2-r1
Normal file
12
metadata/md5-cache/app-metrics/prometheus-2.7.2-r1
Normal file
|
@ -0,0 +1,12 @@
|
|||
DEFINED_PHASES=compile install postinst prepare setup test unpack
|
||||
DEPEND=>=dev-lang/go-1.10 dev-util/promu >=dev-lang/go-1.10
|
||||
DESCRIPTION=Prometheus monitoring system and time series database
|
||||
EAPI=6
|
||||
HOMEPAGE=https://github.com/prometheus/prometheus
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=Apache-2.0
|
||||
RESTRICT=test
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/prometheus/prometheus/archive/v2.7.2.tar.gz -> prometheus-2.7.2.tar.gz
|
||||
_eclasses_=golang-base c57d2c3f9e1a02d0feb8b87c7b689892 golang-build dc25bafa8fc1305a4de66a0a448472e7 golang-vcs-snapshot 12177e83bede6f7fb87eae383864b40b user 8bd74731cafdcdad8f7a63637302e073
|
||||
_md5_=52c6fe7623f8d78374227085a6d6a2a3
|
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue