Sync with portage [Tue May 18 08:42:42 MSK 2021].

akrasnyh 1967
Calculate Linux 3 years ago
parent 32e57a8478
commit 770532170a

Binary file not shown.

Binary file not shown.

@ -5,10 +5,6 @@
<email>juippis@gentoo.org</email>
<name>Joonas Niilola</name>
</maintainer>
<maintainer type="project">
<email>perl@gentoo.org</email>
<name>Gentoo Perl Project</name>
</maintainer>
<stabilize-allarches/>
<upstream>
<remote-id type="sourceforge">kpcli</remote-id>

@ -1,2 +0,0 @@
DIST lastpass-cli-1.3.3.tar.gz 116434 BLAKE2B 341f99a7a5edd157c271a0989a004ace8300f2121230b4c0b7c23152643ebc0e3f60717a057b4e6acc802fe641ccd84c770bfcb3d89c505713aea23692d1542b SHA512 9b9274cae1fe4045b7df4402170c522ab5765929739e76141b35a75ce3c8af824acd881e194face45e8721d6ce778bde97ff1a1ac23515de0c6dba28d61a8c7e
DIST lastpass-cli-man-1.3.1.tar.xz 5700 BLAKE2B 736ab71ad55cfcb657c727f3dc9dc15775dab1a0232d1ffc51b8794e49911531c96a841b4a5ac0b31f0516cd7aa54027ac7d0eb096816730cdfd192c04d99449 SHA512 e60807683ecd681b3937ef447d3e6a487d25418fe99f51ba99e54bf643c5254dd18427a03e7f035198ef34ff578bbb6116baf04eb554f54d85e7d059b6bfed7e

@ -1,82 +0,0 @@
From 6b69a534863741734b550daf43b5d06c8d899b9a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Robert-Andr=C3=A9=20Mauchin?= <zebob.m@gmail.com>
Date: Thu, 23 Jan 2020 00:25:50 +0100
Subject: [PATCH] Mark global variable as extern
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
GCC now defaults to -fno-common. As a result, global variable accesses
are more efficient on various targets. In C, global variables with
multiple tentative definitions now result in linker errors.
Fix #532
Signed-off-by: Robert-André Mauchin <zebob.m@gmail.com>
---
globals.c | 40 ++++++++++++++++++++++++++++++++++++++++
process.h | 4 ++--
2 files changed, 42 insertions(+), 2 deletions(-)
create mode 100644 globals.c
diff --git a/globals.c b/globals.c
new file mode 100644
index 0000000..59e9c30
--- /dev/null
+++ b/globals.c
@@ -0,0 +1,40 @@
+/*
+ *
+ * Copyright (C) 2014-2018 LastPass.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * In addition, as a special exception, the copyright holders give
+ * permission to link the code of portions of this program with the
+ * OpenSSL library under certain conditions as described in each
+ * individual source file, and distribute linked combinations
+ * including the two.
+ *
+ * You must obey the GNU General Public License in all respects
+ * for all of the code used other than OpenSSL. If you modify
+ * file(s) with this exception, you may extend this exception to your
+ * version of the file(s), but you are not obligated to do so. If you
+ * do not wish to do so, delete this exception statement from your
+ * version. If you delete this exception statement from all source
+ * files in the program, then also delete it here.
+ *
+ * See LICENSE.OpenSSL for more details regarding this exception.
+ */
+
+#include "process.h"
+
+/* Globals */
+int ARGC;
+char **ARGV;
diff --git a/process.h b/process.h
index 58c2480..4cc2cf4 100644
--- a/process.h
+++ b/process.h
@@ -4,8 +4,8 @@
#include <stdbool.h>
#include <sys/types.h>
-int ARGC;
-char **ARGV;
+extern int ARGC;
+extern char **ARGV;
void process_set_name(const char *name);
void process_disable_ptrace(void);

@ -1,69 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
CMAKE_WARN_UNUSED_CLI=no
inherit cmake-utils bash-completion-r1
DESCRIPTION="Interfaces with LastPass.com from the command line."
HOMEPAGE="https://github.com/lastpass/lastpass-cli"
SRC_URI="https://github.com/lastpass/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
https://dev.gentoo.org/~gokturk/distfiles/app-admin/lastpass-cli/${PN}-man-1.3.1.tar.xz"
SLOT="0"
LICENSE="GPL-2+ GPL-2+-with-openssl-exception"
KEYWORDS="amd64 x86"
IUSE="X +pinentry test"
RESTRICT="!test? ( test )"
RDEPEND="
X? ( || ( x11-misc/xclip x11-misc/xsel ) )
dev-libs/openssl:0=
net-misc/curl
dev-libs/libxml2
pinentry? ( app-crypt/pinentry )
"
DEPEND="${RDEPEND}
virtual/pkgconfig
"
PATCHES=(
"${FILESDIR}"/"${PN}"-1.3.3-gcc10-fix.patch
)
src_configure() {
local mycmakeargs=(
-DBASH_COMPLETION_COMPLETIONSDIR="$(get_bashcompdir)"
)
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile all $(usex test lpass-test '')
}
src_install() {
cmake-utils_src_install install
doman "${WORKDIR}"/man/lpass.1
# Version 1.3.2 uses automagic detection for bashcomp
# To preserve backwards compatibility, we unconditionally
# install the completion file
newbashcomp contrib/lpass_bash_completion lpass
}
src_test() {
local myctestargs=(
-j1 # Parallel tests fail
)
# The path to lpass-test is hardcoded to "${S}"/build/lpass-test
# which is incorrect for our out-of-source build
sed -e "s|TEST_LPASS=.*|TEST_LPASS=\"${BUILD_DIR}/lpass-test\"|" \
-i "${S}"/test/include.sh || die
cmake-utils_src_test
}

@ -1,20 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>gokturk@gentoo.org</email>
<name>Göktürk Yüksek</name>
</maintainer>
<use>
<flag name="X">
Use <pkg>x11-misc/xclip</pkg> or <pkg>x11-misc/xsel</pkg> to copy passwords to the clipboard.
</flag>
<flag name="pinentry">
Use <pkg>app-crypt/pinentry</pkg> to prompt for passwords.
</flag>
</use>
<upstream>
<remote-id type="github">lastpass/lastpass-cli</remote-id>
<bugs-to>https://github.com/lastpass/lastpass-cli/issues</bugs-to>
</upstream>
</pkgmetadata>

@ -15,7 +15,8 @@ LICENSE="GPL-2+ LGPL-2.1+"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
IUSE="amqp caps dbi geoip2 http ipv6 json kafka mongodb pacct python redis smtp snmp test spoof-source systemd tcpd"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
test? ( python )"
RESTRICT="!test? ( test )"
RDEPEND="

Binary file not shown.

@ -0,0 +1,2 @@
DIST openpgp-keys-libidn-20210517-simonjosefsson-0424D4EE81A0E3D119C6F835EDA21E94B565716F.asc 5925 BLAKE2B 50df50ba10a69f0be231356f319036083c7f7198e8caa757b1766538b5e34114291cdb47ba3a8d880e2143d3e93e98ad99e4c3f7221a5f51c755db7456b00439 SHA512 35f629f471220c9179bfd2919277495c4de3264bf1270ef0a1839e6d3e864fb09479ab82a5f5f612c5955697ce78c411244a8f8b48c0c4f5f53e2bfb2ade78b5
DIST openpgp-keys-libidn-20210517-timruehsen-99415CE1905D0E55A9F88026860B7FBB32F8119D.asc 5986 BLAKE2B d6bab47834e2ba470d3c8a0c1b72cdbb6d12423cdb66b6fa6db5f5dc52270315171a04989b838017418f7a6bd90417f3fc5249c0c4b1c6151e811bc46a180c97 SHA512 5980ae33d6158d34ad31f49eb8c4dac87a92ce37ee07f45e54388912fdf794c181e88118c5efa81d4e030795baa82140aa8f1123910746d978f02a9c04089436

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<maintainer type="person">
<email>sam@gentoo.org</email>
<name>Sam James</name>
</maintainer>
</pkgmetadata>

@ -0,0 +1,23 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="OpenPGP keys used to sign libidn releases"
HOMEPAGE="https://www.gnu.org/software/libidn/"
# Simon Josefsson
SRC_URI="https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-simonjosefsson-0424D4EE81A0E3D119C6F835EDA21E94B565716F.asc"
# Tim Rühsen
SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-timruehsen-99415CE1905D0E55A9F88026860B7FBB32F8119D.asc"
S="${WORKDIR}"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
src_install() {
local files=( ${A} )
insinto /usr/share/openpgp-keys
newins - libidn.asc < <(cat "${files[@]/#/${DISTDIR}/}" || die)
}

Binary file not shown.

@ -1 +1,2 @@
DIST vile-9.8t.tgz 2352119 BLAKE2B fc1c75eba09e8be99945ba0d178fd150576d8108f906afb20dba265adaee9e5bea4869415d3ebceabf0b6b56c147add79e9c7e4fe34d7f4744930c3728e4a4a4 SHA512 4be4e37c7231395cae9236796073c2c3e428f1945283785a931c5d4cce94e0f970efa6634b0f9053679a00f4b4577704ea38ded2129e444b26ee9935a1c3d229
DIST vile-9.8u.tgz 2375989 BLAKE2B 86e2bb01fab7c429233484493aa33c0b807f7babedf6e69f4c526a6677471ff8e43287114073d22ebb229a801ef003779ab587c9a17474519148e1f64d58460e SHA512 fad06c8e341feec7e9aed1e53cd9a1e7fe79fdeb050aba743ac4edfb6096db88c1ef63377d6ecbeddd0eb8ad46a323bcc55d09b1ff221a75cd74a3f991e3f24d

@ -0,0 +1,48 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="VI Like Emacs -- yet another full-featured vi clone"
HOMEPAGE="https://invisible-island.net/vile/"
SRC_URI="ftp://ftp.invisible-island.net/vile/current/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="perl iconv"
RDEPEND="app-eselect/eselect-vi
>=sys-libs/ncurses-5.2:0=
iconv? ( virtual/libiconv )
perl? ( dev-lang/perl )"
DEPEND="${RDEPEND}"
BDEPEND="sys-devel/flex
virtual/pkgconfig"
src_configure() {
econf \
--disable-stripping \
--with-ncurses \
--with-pkg-config \
$(use_with iconv) \
$(use_with perl)
}
src_install() {
emake DESTDIR="${D}" install
dodoc CHANGES* README doc/*.doc
docinto html
dodoc doc/*.html
}
pkg_postinst() {
einfo "Updating ${EPREFIX}/usr/bin/vi symlink"
eselect vi update --if-unset
}
pkg_postrm() {
einfo "Updating ${EPREFIX}/usr/bin/vi symlink"
eselect vi update --if-unset
}

Binary file not shown.

@ -1,2 +0,0 @@
DIST classmate-0.9.0.tar.gz 57752 BLAKE2B 31247d159be4898b9ae71024da41c8602fe4d82f4ee10edab3146355cac06b23991fe926397737c43341085f35b392fc3f8a6b8278b9e47706f6fd06012f4c59 SHA512 7fb331c462458c8aab143f23c0d128a0e4e976f9d12bd181eb5658961b217bd1fe0871d056fc38bff794522c8b3118a2a017eab265afffc1d60b5580df1237a2
DIST classmate-1.2.0.tar.gz 62150 BLAKE2B fac7cb24e527f69863cfb4c59e634ac77165aa5a1ecae9d887511818a87ae9cd2652eb47e72844f3e38bed3c4856185020db6ece90553d14ce84cf6ce859cae7 SHA512 82f38229cbe57531354300b967589afcf064970a2b41ac56ad3520582719416ca878d9a4adc46d46a4470077e5f14ddcf2906b0af03156863301dca0b20d4151

@ -1,47 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
JAVA_PKG_IUSE="doc source test"
inherit java-pkg-2 java-pkg-simple vcs-snapshot
DESCRIPTION="Zero-dependency Java library for accurately introspecting type information"
HOMEPAGE="https://github.com/cowtowncoder/java-classmate/"
SRC_URI="https://github.com/cowtowncoder/java-classmate/archive/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND=">=virtual/jre-1.6"
DEPEND=">=virtual/jdk-1.6
test? ( dev-java/junit:4 )"
S="${WORKDIR}/${P}"
JAVA_SRC_DIR="src/main/java"
# This one test is buggy.
JAVA_RM_FILES=(
src/test/java/com/fasterxml/classmate/AnnotationsTest.java
)
java_prepare() {
rm pom.xml || die
}
src_test() {
testcp="${S}/${PN}.jar:$(java-pkg_getjars junit-4):target/tests"
mkdir target/tests || die
ejavac -cp "${testcp}" -d target/tests $(find src/test/java -name "*.java")
tests=$(find target/tests -name "*Test.class" -not -name "BaseTest.class" \
| sed -e 's/target\/tests\///g' -e "s/\.class//" -e "s/\//./g" \
| grep -vP '\$');
ejunit4 -cp "${testcp}" ${tests}
}

@ -1,45 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
JAVA_PKG_IUSE="doc source test"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="Zero-dependency Java library for accurately introspecting type information"
HOMEPAGE="https://github.com/cowtowncoder/java-classmate/"
SRC_URI="https://github.com/cowtowncoder/java-classmate/archive/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
>=virtual/jre-1.6"
DEPEND="
>=virtual/jdk-1.6
test? ( dev-java/junit:4 )"
S="${WORKDIR}/java-${PN}-${P}"
JAVA_SRC_DIR="src/main/java"
src_prepare() {
default
rm -v pom.xml \
src/test/java/com/fasterxml/classmate/AnnotationsTest.java || die
}
src_test() {
testcp="${S}/${PN}.jar:$(java-pkg_getjars junit-4):target/tests"
mkdir target/tests || die
ejavac -cp "${testcp}" -d target/tests $(find src/test/java -name "*.java")
tests=$(find target/tests -name "*Test.class" -not -name "BaseTest.class" \
| sed -e 's/target\/tests\///g' -e "s/\.class//" -e "s/\//./g" \
| grep -vP '\$');
ejunit4 -cp "${testcp}" ${tests}
}

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>java@gentoo.org</email>
<name>Java</name>
</maintainer>
<upstream>
<remote-id type="github">cowtowncoder/java-classmate</remote-id>
</upstream>
</pkgmetadata>

@ -1 +0,0 @@
DIST commons-configuration-1.6-src.tar.gz 559621 BLAKE2B ce6ca821c03b4948796c46fe796684dbcc8eafbc6004e2abace573f8fa316f638056c03684d10d29c0f3126554bc8cf2c9195228044a2db7203f847d2b71b22e SHA512 5d82b844cf39162976820d030d05afeeec1151aa33bf4353f9ca844e552c55ea26daa1b74158baa31d0677e311e9dd83a1d9721c8d5f4e23d21068c4ca2eeb01

@ -1,67 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
JAVA_PKG_IUSE="doc source"
inherit epatch java-pkg-2 java-ant-2
DESCRIPTION="Generic interface for reading configuration data from a variety of sources"
HOMEPAGE="http://commons.apache.org/configuration/"
SRC_URI="mirror://apache/commons/configuration/source/${P}-src.tar.gz"
# it needs functionality from ant-core, although not providing an ant task
# the functionality is apparently needed only for 1.4 jdk
# but I don't feel like adding virtual for this
CDEPEND="
>=dev-java/commons-beanutils-1.7.0:1.7
>=dev-java/commons-codec-1.3:0
>=dev-java/commons-collections-3.1:0
>=dev-java/commons-digester-1.8:0
>=dev-java/commons-jxpath-1.2:0
>=dev-java/commons-lang-2.4:2.1
>=dev-java/commons-logging-1.1.1:0
java-virtuals/servlet-api:3.0
dev-java/ant-core:0"
DEPEND=">=virtual/jdk-1.6
${CDEPEND}"
RDEPEND=">=virtual/jre-1.6
${CDEPEND}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 ppc64 x86"
IUSE=""
S="${WORKDIR}/${P}-src"
JAVA_ANT_REWRITE_CLASSPATH="yes"
java_prepare() {
# Tweak build classpath and don't automatically run tests
epatch "${FILESDIR}/${P}-gentoo.patch"
}
EANT_GENTOO_CLASSPATH="
commons-beanutils-1.7
commons-codec
commons-collections
commons-digester
commons-jxpath
commons-lang-2.1
commons-logging
servlet-api-3.0
ant-core"
# Would need mockobjects with j2ee support which we don't have
# Check overlay for ebuild with test support
RESTRICT="test"
src_install() {
java-pkg_newjar target/${P}.jar
dodoc RELEASE-NOTES.txt
use doc && java-pkg_dohtml -r dist/docs/api
use source && java-pkg_dosrc src/java/*
}

@ -1,19 +0,0 @@
--- build.xml.orig 2006-10-13 00:00:17.000000000 +0200
+++ build.xml 2006-10-13 00:02:37.000000000 +0200
@@ -97,13 +97,13 @@
</copy>
</target>
- <target name="jar" description="o Create the jar" depends="compile,test">
+ <target name="jar" description="o Create the jar" depends="compile">
<mkdir dir="${classesdir}/META-INF"/>
<copy file="LICENSE.txt" todir="${metadir}"/>
<copy file="NOTICE.txt" todir="${metadir}"/>
- <copy file="${conf.home}/manifest.mf" todir="${defaulttargetdir}" filtering="on"/>
+ <copy file="${conf.home}/MANIFEST.MF" todir="${defaulttargetdir}" filtering="on"/>
<jar jarfile="${defaulttargetdir}/${final.name}.jar" basedir="${classesdir}"
- manifest="${defaulttargetdir}/manifest.mf" excludes="**/package.html">
+ manifest="${defaulttargetdir}/MANIFEST.MF" excludes="**/package.html">
</jar>
</target>
<target name="clean" description="o Clean up the generated directories">

@ -1,13 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>java@gentoo.org</email>
<name>Java</name>
</maintainer>
<longdescription>
Commons Configuration provides a generic configuration interface
which enables an application to read configuration data from
a variety of sources.
</longdescription>
</pkgmetadata>

@ -1 +0,0 @@
DIST commons-jelly-1.0-src.tar.gz 174769 BLAKE2B 2dc43eef28c76252976616f0509aacbfed31ec0b99916730d86d084ec54bacc4f49000d04a953002717670d17a4ae2ae7249d57b327258414c3515dbb8abde7f SHA512 a72ae2dc8eea3fc19838f386dca38807a16326a3a93f483219212844f8ec033088b7721c78a4370f78a06cbee0c685144a2b16f171d54134822d06f653bcef35

@ -1,63 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
JAVA_PKG_IUSE="doc source test"
inherit java-pkg-2 java-ant-2
MY_P="${P}-src"
DESCRIPTION="A Java and XML based scripting and processing engine"
HOMEPAGE="http://commons.apache.org/jelly/"
SRC_URI="mirror://apache/jakarta/commons/jelly/source/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="1"
KEYWORDS="~amd64 ~x86"
IUSE=""
CDEPEND="
dev-java/dom4j:1
dev-java/junit:0
dev-java/jaxen:1.1
dev-java/commons-cli:1
dev-java/commons-lang:0
dev-java/commons-jexl:1.0
dev-java/commons-logging:0
dev-java/commons-discovery:0
dev-java/commons-collections:0
dev-java/commons-beanutils:1.7
dev-java/tomcat-jstl-spec:0
java-virtuals/servlet-api:3.0"
RDEPEND="${CDEPEND}
>=virtual/jre-1.6"
DEPEND="${CDEPEND}
>=virtual/jdk-1.6
test? ( dev-java/ant-junit:0 )"
S=${WORKDIR}/${MY_P}
java_prepare() {
# disables dependency fetching, and remove tests as a dependency of jar
epatch "${FILESDIR}/${P}-gentoo.patch"
}
JAVA_ANT_REWRITE_CLASSPATH="yes"
EANT_EXTRA_ARGS="-Dlibdir=."
EANT_GENTOO_CLASSPATH="
commons-beanutils-1.7,commons-cli-1,commons-collections,commons-discovery
commons-jexl-1.0,commons-lang,commons-logging,dom4j-1,tomcat-jstl-spec
jaxen-1.1,junit,servlet-api-3.0"
src_test() {
java-pkg-2_src_test
}
src_install() {
java-pkg_newjar target/${P}.jar ${PN}.jar
dodoc NOTICE.txt README.txt RELEASE-NOTES.txt
use doc && java-pkg_dojavadoc dist/docs/api
use source && java-pkg_dosrc src/java/*
}

@ -1,59 +0,0 @@
diff -ru commons-jelly-1.0-src/build.xml commons-jelly-1.0-src-patched/build.xml
--- commons-jelly-1.0-src/build.xml 2005-06-16 10:39:44.000000000 -0400
+++ commons-jelly-1.0-src-patched/build.xml 2005-09-04 19:39:19.000000000 -0400
@@ -37,6 +37,8 @@
<property name="proxy.password" value="">
</property>
<path id="build.classpath">
+ <fileset dir="${libdir}" includes="**/*.jar"/>
+ <!--
<pathelement location="${libdir}/servletapi/jars/servletapi-2.3.jar">
</pathelement>
<pathelement location="${libdir}/commons-cli/jars/commons-cli-1.0.jar">
@@ -67,6 +69,7 @@
</pathelement>
<pathelement location="${libdir}/xerces/jars/xerces-2.2.1.jar">
</pathelement>
+ -->
</path>
<target name="init" description="o Initializes some properties">
<mkdir dir="${libdir}">
@@ -92,7 +95,7 @@
</and>
</condition>
</target>
- <target name="compile" description="o Compile the code" depends="get-deps">
+ <target name="compile" description="o Compile the code" depends="">
<mkdir dir="${classesdir}">
</mkdir>
<javac destdir="${classesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html">
@@ -120,10 +123,12 @@
<copy todir="${classesdir}/META-INF" file="${basedir}/LICENSE.txt">
</copy>
</target>
- <target name="jar" description="o Create the jar" depends="compile,test">
+
+ <target name="jar" description="o Create the jar" depends="compile">
<jar jarfile="${defaulttargetdir}/${final.name}.jar" excludes="**/package.html" basedir="${classesdir}">
</jar>
</target>
+
<target name="clean" description="o Clean up the generated directories">
<delete dir="${defaulttargetdir}">
</delete>
@@ -213,7 +218,7 @@
</fileset>
</copy>
</target>
- <target name="javadoc" description="o Generate javadoc" depends="get-deps">
+ <target name="javadoc" description="o Generate javadoc" depends="">
<mkdir dir="${javadocdir}">
</mkdir>
<tstamp>
@@ -432,4 +437,4 @@
<unjar dest="${maven.home}" src="${user.home}/maven-install-latest.jar">
</unjar>
</target>
-</project>
\ No newline at end of file
+</project>

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>java@gentoo.org</email>
<name>Java</name>
</maintainer>
</pkgmetadata>

@ -1 +0,0 @@
DIST ezmorph-1.0.6-sources.jar 68198 BLAKE2B c8df2da6282361932041de5cb7200119dd70279b1b4a0aa0ecdb8b87d5582fddd8716c593850af6d3da972b51dcee9f62eb5bfee83e698a1ce1c3b6f23f359df SHA512 a8f88ff38e2d2815ee64436af87c4dc5a9858edec729c8db3ebda6d64d2fe2644b5e56deafedcf242caffa523643ccb978cd775c85793df6e2e5487c6d878cea

@ -1,44 +0,0 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
JAVA_PKG_IUSE="doc source test"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="A simple Java library for transforming an Object to another Object"
HOMEPAGE="http://ezmorph.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}-sources.jar"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
COMMON_DEP="dev-java/commons-lang:2.1
dev-java/commons-beanutils:1.7
dev-java/commons-logging:0"
RDEPEND=">=virtual/jre-1.4
${COMMON_DEP}"
DEPEND=">=virtual/jdk-1.4
app-arch/unzip
${COMMON_DEP}"
JAVA_GENTOO_CLASSPATH="
commons-lang-2.1
commons-beanutils-1.7
commons-logging"
RESTRICT=test #564158
java_prepare() {
# Don't build tests all the time
if ! use test ; then
rm -r net/sf/ezmorph/test || die
fi
}
src_install() {
java-pkg_dojar ${PN}.jar
use doc && java-pkg_dojavadoc target/api
use source && java-pkg_dosrc net
}

@ -1,22 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>java@gentoo.org</email>
<name>Java</name>
</maintainer>
<longdescription lang="en">
EZMorph is simple java library for transforming an Object to another Object.
EZMorph's key strengths are:
Supports transformations for primitives and Objects
Supports transformations for multidimensional arrays
Supports transformations with DynaBeans
JDK 1.3.1 compatible
Small memory footprint (~76K)
</longdescription>
<upstream>
<remote-id type="sourceforge">ezmorph</remote-id>
</upstream>
</pkgmetadata>

@ -1 +0,0 @@
DIST ical4j-1.0.5-src.tar.bz2 9307268 BLAKE2B f72cb77a73e1b1740f52accf5296630ba4e2ef9d4610a384a400ea50e84f245c2d320e05b2702e963ef3d7097e073687343fe2e924eca5e64b80a8f2dc1adcdf SHA512 1c2c1eb6207094fd12036d4eb93afaef820c19c7bce99611ddb9115cd62ece76972b7280364b49643147e4456ef4afca4df23ce4413e0288804183f33c2cc286

@ -1,80 +0,0 @@
diff --git a/ical4j-1.0.5/build.xml b/ical4j-1.0.5/build.xml
index 512738c..be5aac9 100644
--- a/ical4j-1.0.5/build.xml
+++ b/ical4j-1.0.5/build.xml
@@ -14,7 +14,7 @@
<property file="build.properties" />
<!-- Project paths -->
- <property name="source.dir" location="source" />
+ <property name="source.dir" location="src" />
<property name="test.source.dir" location="test" />
<property name="output.dir" location="bin" />
<property name="package.dir" location="build" />
@@ -99,7 +99,7 @@
<echo message="Compiling source from classpath: ${project.classpath}" />
<mkdir dir="${output.dir}" />
- <copy file="${source.dir}/net/fortuna/ical4j/model/tz.alias" todir="${output.dir}/net/fortuna/ical4j/model" />
+ <copy file="src/main/resources/net/fortuna/ical4j/model/tz.alias" todir="${output.dir}/net/fortuna/ical4j/model" />
<javac source="1.4" target="1.4" srcdir="${source.dir}" destdir="${output.dir}" debug="true" debuglevel="lines,source,vars" deprecation="true" classpathref="project.classpath" />
</target>
@@ -123,7 +123,7 @@
<attribute name="Class-Path" value="commons-logging.jar,commons-codec.jar,commons-lang.jar" />
</manifest>
<jar basedir="${output.dir}" compress="true" jarfile="${package.dir}/${package.file}" manifest="etc/manifest.mf">
- <zipfileset dir="etc/zoneinfo" prefix="zoneinfo" excludes="zones.h,zones.tab" />
+ <zipfileset dir="/usr/share/zoneinfo" prefix="zoneinfo" excludes="zones.h,zones.tab" />
</jar>
</target>
@@ -187,10 +187,8 @@
<instr instrpathref="coverage.classpath" destdir="${out.instr.dir}" metadatafile="${coverage.dir}/metadata.emma" merge="true" />
</emma>
- <junit printsummary="withOutAndErr" showoutput="yes" fork="yes">
- <!--
- <classpath path="${project.classpath}"/>
- -->
+ <junit printSummary="yes" haltonerror="true" haltonfailure="true" fork="true" dir=".">
+
<classpath>
<pathelement location="${out.instr.dir}" />
<path refid="coverage.classpath" />
@@ -198,22 +196,19 @@
</classpath>
<jvmarg value="-Demma.coverage.out.file=${coverage.dir}/coverage.emma" />
<jvmarg value="-Demma.coverage.out.merge=false" />
- <test name="net.fortuna.ical4j.AllTests" />
- <!--
- <batchtest>
- <fileset dir="${test.source.dir}">
- <include name="**/*Test.java"/>
- </fileset>
- </batchtest>
- -->
-
- <!--
- <test name="net.fortuna.ical4j.data.CalendarOutputterTest"/>
- <test name="net.fortuna.ical4j.model.component.VTimeZoneTest"/>
- <test name="net.fortuna.ical4j.model.component.VEventTest"/>
- <test name="net.fortuna.ical4j.data.CalendarBuilderTest"/>
- -->
- </junit>
+
+
+ <sysproperty key="basedir" value="."/>
+ <formatter type="xml"/>
+ <formatter type="plain" usefile="false"/>
+
+ <batchtest>
+ <fileset dir="${test.source.dir}">
+ <include name="**/*Test.java"/>
+ <exclude name="**/*Abstract*Test.java"/>
+ </fileset>
+ </batchtest>
+ </junit>
<emma enabled="${emma.enabled}">
<report sourcepath="${src.dir}">

@ -1,57 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
JAVA_PKG_IUSE="doc examples source"
inherit java-pkg-2 java-ant-2
DESCRIPTION="a Java library for handling iCalendar data streams"
HOMEPAGE="http://ical4j.sourceforge.net/"
MY_PV=${PV/_/-}
MY_P=${PN}-${MY_PV}
SRC_URI="mirror://sourceforge/${PN}/${MY_P}-src.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 x86"
COMMON_DEP="
dev-java/commons-logging:0
dev-java/commons-codec:0
dev-java/commons-lang:2.1
dev-java/backport-util-concurrent:0"
RDEPEND=">=virtual/jre-1.4
${COMMON_DEP}"
DEPEND=">=virtual/jdk-1.4
dev-java/emma:0
${COMMON_DEP}"
S=${WORKDIR}/${MY_P}
java_prepare() {
epatch "${FILESDIR}"/${PV}-build.xml.patch
rm -v lib/*.jar || die "rm jar failed"
#mkdir bin || die "mkdir bin failed"
java-pkg_filter-compiler jikes
}
EANT_ANT_TASKS="emma"
JAVA_ANT_REWRITE_CLASSPATH="true"
EANT_BUILD_TARGET="package"
EANT_GENTOO_CLASSPATH="commons-logging,commons-codec,commons-lang-2.1,backport-util-concurrent"
EANT_EXTRA_ARGS="-Demma.dir=/usr/share/emma/lib/ -Dsource.dir=src/main/java"
RESTRICT="test"
# two tests fail with maven, they work in HEAD
src_install() {
java-pkg_dojar build/*.jar
dodoc README AUTHORS CHANGELOG etc/FAQ \
etc/TODO etc/standard_deviations.txt
use doc && java-pkg_dojavadoc docs/api
use source && java-pkg_dosrc src/main/java/net
use examples && java-pkg_doexamples etc/samples
}

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>java@gentoo.org</email>
<name>Java</name>
</maintainer>
<longdescription lang="en">
iCal4j is a Java library used to read and write iCalendar data streams
as defined in RFC2445. The iCalendar standard provides a common data
format used to store information about calendar-specific data such as
events, appointments, to-do lists, etc. All of the popular calendaring
tools, such as Lotus Notes, Outlook and Apple's iCal also support the
iCalendar standard.
Providing both a parser and an object model, iCal4j allows you to either
modify existing iCalendar data or create new data models. Validation is
also provided to ensure the data maintains a state consistent with the
specification.
</longdescription>
<upstream>
<remote-id type="sourceforge">ical4j</remote-id>
</upstream>
</pkgmetadata>

@ -1 +0,0 @@
DIST Tapestry-3.0.4-src.zip 1174780 BLAKE2B 2f2ad5e3860ed6852962b282431df15ae4f6f17f0d08e4246dcef69bcdd033acafe881ea3ba33bd38c2dcf8843caf37fb0b46da84c5b107c2d1c4a0d77aaf89a SHA512 ab94cee9745fceeecbc98a27ace90567b3bc8ab880408da0a32526ba3a68b24f90daeca5d2ea0180b5693ae4fd12f01f0db98e78f176cdc0a0370b5554aa9d10

@ -1,5 +0,0 @@
# $Id: Version.properties 390452 2006-03-31 11:34:17 -0500 (Fri, 31 Mar 2006) jkuhnert $
#
# Stores the version number of the framework.
framework.version=3.0.4

@ -1,32 +0,0 @@
# $Id: build.properties.sample 243768 2004-02-04 13:04:22Z mindbridge $
# This file is used to configure the Tapestry build.
# Copy it as "build.properties" and fill in the necessary data.
# The absolute path to the directory where external distributions
# used in the building process will be downloaded and installed
base.path=/usr/share/java
# The absolute path to the directory containing the JBoss installation.
# Required to execute the configure and run-jboss targets.
jboss.dir=
# The absolute path to the directory containing the Tomcat installation.
# Required to execute the deploy-tomcat target.
#
tomcat.dir=
# The absolute path to the directory containing the Jetty installation.
# Required to execute the run-workbench target.
jetty.dir=
# The absolute path to the directory containing the Jython installation.
# Required to execute the junit target.
jython.dir=
# Home for xml-forrest, used to build documentation.
# Available from :pserver:anoncvs@cvs.apache.org:/home/cvspublic as module xml-forrest
# Build forrest, then set to the shbat directory, i.e.
# C:/workspace/xml-forrest/build/dist/shbat
forrest.home=

@ -1,94 +0,0 @@
# $Id: common.properties 385802 2006-03-14 13:47:10Z jkuhnert $
#
# Specifies some general properties used throughout.
# Each build.xml must specify root.dir (as a relative path).
lib.dir=lib
root.lib.dir=${root.dir}/${lib.dir}
ext.dist.dir=${root.dir}/ext-dist
root.config.dir=${root.dir}/config
framework.jar=tapestry-${framework.version}.jar
contrib.jar=tapestry-contrib-${framework.version}.jar
examples.dir=${root.lib.dir}/examples
vlib.war=vlib.war
vlib.ear=vlib.ear
vlibbeans.jar=vlibbeans.jar
workbench.war=workbench.war
wap.war=wap.war
ext.download.dir=${ext.dist.dir}/downloads
# Names of directories under lib
ext.dir=ext
j2ee.dir=j2ee
runtime.dir=runtime
jboss.lib.dir=${jboss.dir}/lib
jboss.client.dir=${jboss.dir}/client
jboss.server.all.lib.dir=${jboss.dir}/server/all/lib
# Directory containing source code and package resources
src.dir=src
# Directory containing compiled Java code
classes.dir=classes
# Used as part of copyrights
copyright.years=2000-2004
# ----- JUnit Unit Test Suite, version 3.8 or later -----
junit.home=${ext.download.dir}/junit3.8.1
junit.lib=${junit.home}
junit.jar=${junit.lib}/junit.jar
junit.ext.jar=${ext.dist.dir}/junit.jar
junit.loc=http://telia.dl.sourceforge.net/sourceforge/junit/junit3.8.1.zip
# ----- JDOM Library, version 1.0 -----
jdom.home=${ext.download.dir}/jdom-1.0
jdom.lib=${jdom.home}
jdom.jar=${jdom.lib}/build/jdom.jar
jdom.ext.jar=${ext.dist.dir}/jdom-1.0.jar
jdom.loc=http://www.jdom.org/dist/binary/jdom-1.0.tar.gz
# ----- McKoi Pure Java Database, version 1.0.2 -----
mckoi.home=${ext.download.dir}/mckoi1.0.2
mckoi.lib=${mckoi.home}
mckoi.jar=${mckoi.lib}/mckoidb.jar
mckoi.ext.jar=${ext.dist.dir}/mckoidb.jar
mckoi.loc=http://www.mckoi.com/database/ver/mckoi1.0.2.zip
# ----- DocBook XML, version 4.1.2 -----
docbookxml.file=${ext.dist.dir}/docbkx412.zip
docbookxml.loc=http://www.docbook.org/xml/4.1.2/docbkx412.zip
# ----- DocBook XSL, version 1.64.1 -----
docbookxsl.file=${ext.dist.dir}/docbook-xsl-1.64.1.zip
docbookxsl.loc=http://telia.dl.sourceforge.net/sourceforge/docbook/docbook-xsl-1.64.1.zip
# ----- Apache Forrest, version 0.5.1 -----
forrestdl.home=${ext.download.dir}/apache-forrest-0.5.1-bin
forrestdl.ant.xml=${forrestdl.home}/forrest.antproxy.xml
forrestdl.loc=http://archive.apache.org/dist/forrest/pre-0.6/apache-forrest-0.5.1-bin.zip
# ---- OGNL ----
ognl.version=2.6.7
ognl.loc=http://ognl.org/${ognl.version}/ognl-${ognl.version}.jar
ognl.dest=${root.lib.dir}/${ext.dir}/ognl-${ognl.version}.jar
# ---- Javassist ----
javassist.version=2.5.1
javassist.loc=http://umn.dl.sourceforge.net/sourceforge/jboss/javassist-${javassist.version}.zip
javassist.dest=${ext.download.dir}/javassist-${javassist.version}
javassist.ext.jar=${root.lib.dir}/${ext.dir}/javassist-${javassist.version}.jar
javassist.jar=${javassist.dest}/javassist.jar

@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>java@gentoo.org</email>
<name>Java</name>
</maintainer>
<longdescription lang="en">
Tapestry is a powerful, open-source, all-Java framework for creating leading edge web applications in Java.
Tapestry reconceptualizes web application development in terms of objects, methods and properties instead of URLs and query parameters.
Tapestry is an alternative to scripting environments such as JavaServer Pages or Velocity. Tapestry goes far further, providing a complete framework for creating extremely dynamic applications with minimal amounts of coding.
</longdescription>
</pkgmetadata>

@ -1,70 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-ant-2
DESCRIPTION="Dynamic, robust, highly scalable web framework in Java"
HOMEPAGE="https://tapestry.apache.org/"
SRC_URI="mirror://apache/${PN}/Tapestry-${PV}-src.zip"
IUSE="${JAVA_PKG_IUSE}"
LICENSE="Apache-2.0"
SLOT="3.0"
KEYWORDS="amd64 x86"
CDEPEND="
dev-java/bsf:2.3
dev-java/commons-beanutils:1.7
dev-java/commons-codec:0
dev-java/commons-digester:0
dev-java/commons-fileupload:0
dev-java/commons-lang:2.1
dev-java/commons-logging:0
dev-java/jakarta-oro:2.0
dev-java/javassist:2
dev-java/ognl:3.0
dev-java/tomcat-servlet-api:2.4
"
RDEPEND="
${CDEPEND}
>=virtual/jre-1.4
"
DEPEND="
${CDEPEND}
app-arch/unzip
>=virtual/jdk-1.4
"
S="${WORKDIR}/Tapestry-${PV}"
EANT_GENTOO_CLASSPATH="commons-logging,commons-fileupload,commons-lang-2.1"
EANT_GENTOO_CLASSPATH+=",commons-codec,commons-beanutils-1.7,commons-digester"
EANT_GENTOO_CLASSPATH+=",tomcat-servlet-api-2.4,ognl-3.0,bsf-2.3,jakarta-oro-2.0"
EANT_GENTOO_CLASSPATH+=",javassist-2"
JAVA_ANT_REWRITE_CLASSPATH="true"
src_prepare() {
default
mkdir config lib || die
cp "${FILESDIR}/Version.properties" config/ || die
cp "${FILESDIR}/build.properties" config/ || die
cp "${FILESDIR}/common.properties" config/ || die
}
src_compile() {
cd "${S}/framework" || die
eant -Dgentoo.classpath="$(java-pkg_getjars ${EANT_GENTOO_CLASSPATH})"
use doc && javadoc -sourcepath src/ org.apache.tapestry -d ../javadoc
}
src_install() {
java-pkg_newjar "lib/${P}.jar"
use source && java-pkg_dosrc framework/src/org
use doc && java-pkg_dojavadoc javadoc
}

Binary file not shown.

@ -1 +1,2 @@
DIST cdk-5.0-20160131.tgz 516298 BLAKE2B 5e899afea1f034a48e46fef073303d0069e14310194342094392da517fa47793a1ac3ac33774369842daa1966dc9a4ad7404046874bc9cae24ceaa98a3dd7c47 SHA512 f8f7fc5fec3c040cdbfc2a0d886e9d9d9d231e56ed69adae0b91e03243b5edd550c5435f973a93d4cf7ab723bd27b55712af75162c4bfd3ae28b3c16cd68f755
DIST cdk-5.0-20210324.tgz 548203 BLAKE2B 7a944f347bf30a6bf602b9ac61fa547c7b4aef073db54272e4a8d2bd7d83093888f2ca9e5ee9c2d067777472d2abb87cca42b2912b0491b81472cfce086640b8 SHA512 72d62307824708858ca4fb3865d332cc81e987d7ef685011cf127c8f77cee3e19fe9dd6a35009d4416769cb00f04e937ebaec686c61ca0ba58655f522a175a59

@ -1,4 +1,4 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@ -8,7 +8,7 @@ inherit versionator
MY_P="${PN}-$(replace_version_separator 2 -)"
DESCRIPTION="A library of curses widgets"
HOMEPAGE="https://dickey.his.com/cdk/cdk.html"
SRC_URI="ftp://invisible-island.net/cdk/${MY_P}.tgz"
SRC_URI="ftp://ftp.invisible-island.net/cdk/${MY_P}.tgz"
LICENSE="BSD"
SLOT="0/6" # subslot = soname version

@ -0,0 +1,53 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_P="${PN}-$(ver_rs 2 -)"
DESCRIPTION="A library of curses widgets"
HOMEPAGE="https://dickey.his.com/cdk/cdk.html"
SRC_URI="ftp://ftp.invisible-island.net/cdk/${MY_P}.tgz"
S="${WORKDIR}"/${MY_P}
LICENSE="BSD"
SLOT="0/6" # subslot = soname version
KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
IUSE="examples unicode"
DEPEND=">=sys-libs/ncurses-5.2:0=[unicode?]"
RDEPEND="${DEPEND}"
BDEPEND="sys-devel/libtool
virtual/pkgconfig"
PATCHES=( "${FILESDIR}"/${PN}-5.0.20120323-parallel-make.patch )
src_configure() {
if [[ ${CHOST} == *-*-darwin* ]] ; then
export ac_cv_prog_LIBTOOL=glibtool
fi
econf \
--disable-rpath-hack \
--with-libtool \
--with-shared \
--with-pkg-config \
--with-ncurses$(usex unicode "w" "")
}
src_install() {
# parallel make installs duplicate libs
emake -j1 \
DESTDIR="${D}" \
DOCUMENT_DIR="${ED}/usr/share/doc/${PF}" install
if use examples ; then
local x
for x in include c++ demos examples cli cli/utils cli/samples ; do
docinto ${x}
find ${x} -maxdepth 1 -mindepth 1 -type f -print0 | xargs -0 dodoc || die
done
fi
find "${ED}" \( -name '*.a' -or -name '*.la' \) -delete || die
}

@ -3,7 +3,7 @@
EAPI=7
inherit cmake multibuild
inherit cmake multibuild flag-o-matic
DESCRIPTION="Library for manipulating zip archives"
HOMEPAGE="https://nih.at/libzip/"
@ -43,6 +43,7 @@ pkg_setup() {
}
src_configure() {
append-lfs-flags
myconfigure() {
local mycmakeargs=(
-DBUILD_EXAMPLES=OFF # nothing is installed

@ -1,4 +1,4 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@ -12,7 +12,7 @@ SRC_URI="https://github.com/nanomsg/nanomsg/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0/5.0.0"
KEYWORDS="amd64 ~arm ~arm64 ~x86"
KEYWORDS="amd64 ~arm ~arm64 ~ppc ~x86"
IUSE="doc static-libs"
DEPEND="doc? ( dev-ruby/asciidoctor )"

Binary file not shown.

@ -1 +0,0 @@
DIST pep8-1.7.1.tar.gz 80334 BLAKE2B 71a038c8fbcbd7c94ff713d1eb8fa248106d283fb520f97fe35819b14382eff6e55683b739acd933cfe22001ed262f76a9b6f3f55661938b3b199ec1f4c35745 SHA512 d20d6a6f91bc865580e3d39c50e26f9c6be81fd8e80a1b9a029d7ea9c906748e46080b841dc5507004089e5ee0d0cb3f70a74bb35131c58113ff5571153af4da

@ -1,13 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
<stabilize-allarches/>
<upstream>
<remote-id type="pypi">pep8</remote-id>
<remote-id type="github">PyCQA/pycodestyle</remote-id>
</upstream>
</pkgmetadata>

@ -1,28 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DISTUTILS_USE_SETUPTOOLS=rdepend
PYTHON_COMPAT=( python3_{7,8} pypy3 )
inherit distutils-r1
DESCRIPTION="Python style guide checker"
HOMEPAGE="https://github.com/PyCQA/pycodestyle/ https://pypi.org/project/pep8/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
distutils_enable_sphinx docs dev-python/sphinx_rtd_theme
distutils_enable_tests pytest
python_prepare_all() {
# AssertionError: 7 is not false : 7 failure(s)
sed -i -e 's:test_checkers_testsuite:_&:' \
testsuite/test_all.py || die
distutils-r1_python_prepare_all
}

@ -22,6 +22,8 @@ fi
IUSE=""
DEPEND="dev-python/numpy[${PYTHON_USEDEP}]
dev-python/cython[${PYTHON_USEDEP}]
>=sci-libs/fftw-3.3:3.0="
RDEPEND="${DEPEND}"
>=sci-libs/fftw-3.3:3.0=[threads]"
RDEPEND="${PYTHON_DEPS}
${DEPEND}"
BDEPEND="${PYTHON_DEPS}
dev-python/cython[${PYTHON_USEDEP}]"

@ -22,6 +22,8 @@ fi
IUSE=""
DEPEND="dev-python/numpy[${PYTHON_USEDEP}]
dev-python/cython[${PYTHON_USEDEP}]
>=sci-libs/fftw-3.3:3.0="
RDEPEND="${DEPEND}"
>=sci-libs/fftw-3.3:3.0=[threads]"
RDEPEND="${DEPEND}
${PYTHON_DEPS}"
BDEPEND="${PYTHON_DEPS}
dev-python/cython[${PYTHON_USEDEP}]"

@ -1 +0,0 @@
DIST pytest-pep8-1.0.6.tar.gz 7271 BLAKE2B edfe2ac899586be9f7fd88f8bad5e5a18200da128d291735a30e374316b5ad449a08956b839605bf3f83b91931fb6890557445fd94f3a5136c7a44ee5e7f91f3 SHA512 162d9e25c264ecd82a51c6798ae75493c724a847ad8cdd953225f73e587f9a14298a6281e541695f6e7471a6121e9b0e4f694270f45ead851e392efcd7aeb758

@ -1,9 +0,0 @@
diff --git a/MANIFEST.in b/MANIFEST.in
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -4,5 +4,3 @@
include tox.ini
include LICENSE
include test_pep8.py
-graft doc
-graft test_pep8.py

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
<upstream>
<remote-id type="pypi">pytest-pep8</remote-id>
</upstream>
</pkgmetadata>

@ -1,32 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7,8} pypy3 )
inherit distutils-r1
DESCRIPTION="pytest plugin to check PEP8 requirements"
HOMEPAGE="https://pypi.org/project/pytest-pep8/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
SLOT="0"
LICENSE="MIT"
KEYWORDS="amd64 ~arm64 x86"
IUSE=""
RDEPEND="
>=dev-python/pep8-1.3[${PYTHON_USEDEP}]
>=dev-python/pytest-2.4.2[${PYTHON_USEDEP}]
dev-python/pytest-cache[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}"/1.0.6-MANIFEST.patch
)
python_test() {
${EPYTHON} test_pep8.py || die
}

@ -18,10 +18,10 @@ LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
RDEPEND="dev-python/toml[${PYTHON_USEDEP}]"
BDEPEND="
!!<dev-python/setuptools_scm-2
test? (
dev-python/toml[${PYTHON_USEDEP}]
dev-vcs/git
!sparc? ( dev-vcs/mercurial ) )"

Binary file not shown.

@ -1,4 +1,3 @@
DIST qtwebengine-5.15.2-chromium87-ppc64le.tar.xz 28536 BLAKE2B 98f8e01e7026d9df1d30ae453d4394d3c4ad04c0620a2496235d45f5f1080c2280e040826cde7f72d9771bfc80d0c3df56c9dcbe4f763cec432ad56de37d64c5 SHA512 c90a76f44a9d720624016fd082ab3036f12e13b9789e869ebaf5e4774afca7d4187faf187f365f696d1a7eda05ca75516556ee9d291cdb3408d57cc4b23e2654
DIST qtwebengine-5.15.2_p20210224.tar.xz 320052028 BLAKE2B a1ebaae7cf114041576f4920de1e484bea70c715a470e83e7c47bd8ff95480fc4e408bba173990480732bd464a9eb07d304f4afdb90d943c0a8cbe1e8299df84 SHA512 939292511703f3a6d758d38f1c860ffacd003be65761b19f23e8817bf1121cb9e6351216f737126d8defb1c97ca877e1c6f352e7cfee8e9289274d0793348b51
DIST qtwebengine-5.15.2_p20210406.tar.xz 320144324 BLAKE2B 45aafc32f4642fee5525f0504d61ed47c3085d5eff566271701805942ce5fcb2233655111592059775991da5b89dc1702031373f6ff171722ed163265d894daa SHA512 c4a0d5fec3247c04acc447c1c819d1e5dcb1d3c0cbb57a87a5cfa5c0c2b765e82c9f75a7297ba57303df5e1004d75dc554ffd70e24ecb8655126136672f38fdb
DIST qtwebengine-5.15.2_p20210421.tar.xz 320142308 BLAKE2B 1ed6e3daad8e8da7336c1575f524f1474eb043a44a86eebdc2375e9a01dbb21a4bf622b01525c627ff5846bb375b19617ca78f418749d6e4ce53b376da0b8317 SHA512 3a57cc8eb1aab086ae2ef69b1b1eaac47827d1f460ff53d5954b0dcb6753cc0e5fb24db490ea186141e6659e26a59862e8096126450a9fde6ed1230c00e4ceaa

@ -0,0 +1,372 @@
diff --git a/src/core/web_contents_adapter.cpp b/src/core/web_contents_adapter.cpp
index 5597c69f9..2cd48907b 100644
--- a/src/core/web_contents_adapter.cpp
+++ b/src/core/web_contents_adapter.cpp
@@ -716,8 +716,7 @@ void WebContentsAdapter::load(const QWebEngineHttpRequest &request)
m_adapterClient->loadFinished(false, request.url(), false,
net::ERR_DISALLOWED_URL_SCHEME,
QCoreApplication::translate("WebContentsAdapter",
- "HTTP-POST data can only be sent over HTTP(S) protocol"),
- false);
+ "HTTP-POST data can only be sent over HTTP(S) protocol"));
return;
}
params.post_data = network::ResourceRequestBody::CreateFromBytes(
@@ -773,7 +772,7 @@ void WebContentsAdapter::setContent(const QByteArray &data, const QString &mimeT
GURL dataUrlToLoad(urlString);
if (dataUrlToLoad.spec().size() > url::kMaxURLChars) {
- m_adapterClient->loadFinished(false, baseUrl, false, net::ERR_ABORTED, QString(), false);
+ m_adapterClient->loadFinished(false, baseUrl, false, net::ERR_ABORTED, QString());
return;
}
content::NavigationController::LoadURLParams params((dataUrlToLoad));
@@ -1995,6 +1994,7 @@ void WebContentsAdapter::discard()
if (m_webContents->IsLoading()) {
m_webContentsDelegate->didFailLoad(m_webContentsDelegate->url(webContents()), net::Error::ERR_ABORTED,
QStringLiteral("Discarded"));
+ m_webContentsDelegate->DidStopLoading();
}
content::WebContents::CreateParams createParams(m_profileAdapter->profile());
diff --git a/src/core/web_contents_adapter_client.h b/src/core/web_contents_adapter_client.h
index 267266d81..afc43806a 100644
--- a/src/core/web_contents_adapter_client.h
+++ b/src/core/web_contents_adapter_client.h
@@ -466,8 +466,7 @@ public:
virtual void loadStarted(const QUrl &provisionalUrl, bool isErrorPage = false) = 0;
virtual void loadCommitted() = 0;
virtual void loadVisuallyCommitted() = 0;
- virtual void loadFinished(bool success, const QUrl &url, bool isErrorPage, int errorCode,
- const QString &errorDescription, bool triggersErrorPage) = 0;
+ virtual void loadFinished(bool success, const QUrl &url, bool isErrorPage, int errorCode, const QString &errorDescription) = 0;
virtual void focusContainer() = 0;
virtual void unhandledKeyEvent(QKeyEvent *event) = 0;
virtual QSharedPointer<WebContentsAdapter>
diff --git a/src/core/web_contents_delegate_qt.cpp b/src/core/web_contents_delegate_qt.cpp
index 1e92a46f8..f0e4130e8 100644
--- a/src/core/web_contents_delegate_qt.cpp
+++ b/src/core/web_contents_delegate_qt.cpp
@@ -259,14 +259,12 @@ void WebContentsDelegateQt::CloseContents(content::WebContents *source)
void WebContentsDelegateQt::LoadProgressChanged(double progress)
{
- QUrl current_url(m_viewClient->webContentsAdapter()->getNavigationEntryOriginalUrl(m_viewClient->webContentsAdapter()->currentNavigationEntryIndex()));
- int p = qMin(qRound(progress * 100), 100);
-
- if (!m_loadingErrorFrameList.isEmpty() || !m_loadProgressMap.contains(current_url) || m_loadProgressMap[current_url] == 100 || p == 100)
+ if (!m_loadingErrorFrameList.isEmpty() || !m_loadingInfo.isLoading()) // suppress signals that aren't between loadStarted and loadFinished
return;
- if (p > m_loadProgressMap[current_url]) { // ensure strict monotonic increase
- m_loadProgressMap[current_url] = p;
+ int p = qMin(qRound(progress * 100), 100);
+ if (p > m_loadingInfo.progress) { // ensure strict monotonic increase
+ m_loadingInfo.progress = p;
m_viewClient->loadProgressChanged(p);
}
}
@@ -339,35 +337,21 @@ void WebContentsDelegateQt::RenderViewHostChanged(content::RenderViewHost *, con
}
}
-void WebContentsDelegateQt::EmitLoadStarted(const QUrl &url, bool isErrorPage)
+void WebContentsDelegateQt::emitLoadStarted(bool isErrorPage)
{
- m_isDocumentEmpty = true;
- m_viewClient->loadStarted(url, isErrorPage);
- m_viewClient->updateNavigationActions();
-
- if ((url.hasFragment() || m_lastLoadedUrl.hasFragment())
- && url.adjusted(QUrl::RemoveFragment) == m_lastLoadedUrl.adjusted(QUrl::RemoveFragment)
- && !m_isNavigationCommitted) {
- m_loadProgressMap.insert(url, 100);
- m_lastLoadedUrl = url;
- m_viewClient->loadProgressChanged(100);
+ // only report first ever load start or separate one for error page only
+ if (!isErrorPage && m_loadingInfo.isLoading()) // already running
return;
- }
- if (!m_loadProgressMap.isEmpty()) {
- QMap<QUrl, int>::iterator it = m_loadProgressMap.begin();
- while (it != m_loadProgressMap.end()) {
- if (it.value() == 100) {
- it = m_loadProgressMap.erase(it);
- continue;
- }
- ++it;
- }
+ m_isDocumentEmpty = true; // reset to default which may only be overridden on actual resource load complete
+ if (!isErrorPage) {
+ m_loadingInfo.progress = 0;
+ m_viewClient->loadStarted(m_loadingInfo.url, false);
+ m_viewClient->updateNavigationActions();
+ m_viewClient->loadProgressChanged(0);
+ } else {
+ m_viewClient->loadStarted(toQt(GURL(content::kUnreachableWebDataURL)), true);
}
-
- m_lastLoadedUrl = url;
- m_loadProgressMap.insert(url, 0);
- m_viewClient->loadProgressChanged(0);
}
void WebContentsDelegateQt::DidStartNavigation(content::NavigationHandle *navigation_handle)
@@ -375,34 +359,41 @@ void WebContentsDelegateQt::DidStartNavigation(content::NavigationHandle *naviga
if (!webEngineSettings()->testAttribute(WebEngineSettings::ErrorPageEnabled))
navigation_handle->SetSilentlyIgnoreErrors();
- if (!navigation_handle->IsInMainFrame())
+ if (!navigation_handle->IsInMainFrame() || !web_contents()->IsLoadingToDifferentDocument())
return;
m_loadingErrorFrameList.clear();
m_faviconManager->resetCandidates();
- EmitLoadStarted(toQt(navigation_handle->GetURL()));
+
+ m_loadingInfo.url = toQt(navigation_handle->GetURL());
+ // IsErrorPage is only set after navigation commit, so check it otherwise: error page shouldn't have navigation entry
+ bool isErrorPage = m_loadingInfo.triggersErrorPage && !navigation_handle->GetNavigationEntry();
+ emitLoadStarted(isErrorPage);
}
-void WebContentsDelegateQt::EmitLoadFinished(bool success, const QUrl &url, bool isErrorPage, int errorCode, const QString &errorDescription, bool triggersErrorPage)
+void WebContentsDelegateQt::emitLoadFinished(bool isErrorPage)
{
- Q_ASSERT(!isErrorPage || webEngineSettings()->testAttribute(WebEngineSettings::ErrorPageEnabled));
- Q_ASSERT((triggersErrorPage && webEngineSettings()->testAttribute(WebEngineSettings::ErrorPageEnabled)) || !triggersErrorPage);
-
- // When error page enabled we don't need to send the error page load finished signal
- if (m_loadProgressMap[url] == 100)
+ if (!m_loadingInfo.isLoading()) // not currently running
return;
- m_lastLoadedUrl = url;
- m_loadProgressMap[url] = 100;
- m_isNavigationCommitted = false;
- m_viewClient->loadProgressChanged(100);
+ Q_ASSERT(!isErrorPage || webEngineSettings()->testAttribute(WebEngineSettings::ErrorPageEnabled));
+ Q_ASSERT((m_loadingInfo.triggersErrorPage && webEngineSettings()->testAttribute(WebEngineSettings::ErrorPageEnabled)) || !m_loadingInfo.triggersErrorPage);
+
+ if (!isErrorPage) {
+ if (m_loadingInfo.progress < 100) {
+ m_loadingInfo.progress = 100;
+ m_viewClient->loadProgressChanged(100);
+ }
- m_viewClient->loadFinished(success, url, isErrorPage, errorCode, errorDescription, triggersErrorPage);
- m_viewClient->updateNavigationActions();
+ m_viewClient->loadFinished(m_loadingInfo.success, m_loadingInfo.url, false, m_loadingInfo.errorCode, m_loadingInfo.errorDescription);
+ m_viewClient->updateNavigationActions();
+ } else {
+ m_viewClient->loadFinished(false, toQt(GURL(content::kUnreachableWebDataURL)), true, 0, QString());
+ }
}
-void WebContentsDelegateQt::EmitLoadCommitted()
+void WebContentsDelegateQt::emitLoadCommitted()
{
m_findTextHelper->handleLoadCommitted();
m_viewClient->loadCommitted();
@@ -422,8 +413,7 @@ void WebContentsDelegateQt::DidFinishNavigation(content::NavigationHandle *navig
profileAdapter->visitedLinksManager()->addUrl(url);
}
- m_isNavigationCommitted = true;
- EmitLoadCommitted();
+ emitLoadCommitted();
}
// Success is reported by DidFinishLoad, but DidFailLoad is now dead code and needs to be handled below
@@ -440,11 +430,11 @@ void WebContentsDelegateQt::DidFinishNavigation(content::NavigationHandle *navig
// Now report we are starting to load an error-page.
m_loadingErrorFrameList.append(navigation_handle->GetRenderFrameHost()->GetRoutingID());
m_faviconManager->resetCandidates();
- EmitLoadStarted(toQt(GURL(content::kUnreachableWebDataURL)), true);
+ emitLoadStarted(true);
// If it is already committed we will not see another DidFinishNavigation call or a DidFinishLoad call.
if (navigation_handle->HasCommitted())
- EmitLoadCommitted();
+ emitLoadCommitted();
}
}
@@ -486,6 +476,9 @@ void WebContentsDelegateQt::DidStopLoading()
if (m_loadingState == LoadingState::Loading)
setLoadingState(LoadingState::Loaded);
+
+ emitLoadFinished();
+ m_loadingInfo.clear();
}
void WebContentsDelegateQt::didFailLoad(const QUrl &url, int errorCode, const QString &errorDescription)
@@ -495,7 +488,11 @@ void WebContentsDelegateQt::didFailLoad(const QUrl &url, int errorCode, const QS
// Delay notifying failure until the error-page is done loading.
// Error-pages are not loaded on failures due to abort.
bool aborted = (errorCode == -3 /* ERR_ABORTED*/ );
- EmitLoadFinished(false /* success */ , url, false /* isErrorPage */, errorCode, errorDescription, errorPageEnabled && !aborted);
+ m_loadingInfo.success = false;
+ m_loadingInfo.url = url;
+ m_loadingInfo.errorCode = errorCode;
+ m_loadingInfo.errorDescription = errorDescription;
+ m_loadingInfo.triggersErrorPage = errorPageEnabled && !aborted;
}
void WebContentsDelegateQt::DidFailLoad(content::RenderFrameHost* render_frame_host, const GURL& validated_url, int error_code)
@@ -511,8 +508,7 @@ void WebContentsDelegateQt::DidFailLoad(content::RenderFrameHost* render_frame_h
Q_ASSERT(error_code == -3 /* ERR_ABORTED */);
m_loadingErrorFrameList.removeOne(render_frame_host->GetRoutingID());
m_viewClient->iconChanged(QUrl());
-
- EmitLoadFinished(false /* success */, toQt(validated_url), true /* isErrorPage */);
+ emitLoadFinished(/* isErrorPage = */true);
return;
}
// Qt6: Consider getting rid of the error_description (Chromium already has)
@@ -532,7 +528,7 @@ void WebContentsDelegateQt::DidFinishLoad(content::RenderFrameHost* render_frame
// Trigger LoadFinished signal for main frame's error page only.
if (!render_frame_host->GetParent()) {
m_viewClient->iconChanged(QUrl());
- EmitLoadFinished(true /* success */, toQt(validated_url), true /* isErrorPage */);
+ emitLoadFinished(/* isErrorPage = */true);
}
return;
@@ -550,7 +546,11 @@ void WebContentsDelegateQt::DidFinishLoad(content::RenderFrameHost* render_frame
int http_statuscode = entry ? entry->GetHttpStatusCode() : 0;
bool errorPageEnabled = webEngineSettings()->testAttribute(WebEngineSettings::ErrorPageEnabled);
bool triggersErrorPage = errorPageEnabled && (http_statuscode >= 400) && m_isDocumentEmpty;
- EmitLoadFinished(http_statuscode < 400, toQt(validated_url), false /* isErrorPage */, http_statuscode, QString(), triggersErrorPage);
+
+ m_loadingInfo.success = http_statuscode < 400;
+ m_loadingInfo.url = toQt(validated_url);
+ m_loadingInfo.errorCode = http_statuscode;
+ m_loadingInfo.triggersErrorPage = triggersErrorPage;
}
void WebContentsDelegateQt::DidUpdateFaviconURL(content::RenderFrameHost *render_frame_host, const std::vector<blink::mojom::FaviconURLPtr> &candidates)
diff --git a/src/core/web_contents_delegate_qt.h b/src/core/web_contents_delegate_qt.h
index 5a3dff6e9..7149f6bff 100644
--- a/src/core/web_contents_delegate_qt.h
+++ b/src/core/web_contents_delegate_qt.h
@@ -216,9 +216,9 @@ private:
WindowOpenDisposition disposition, const gfx::Rect &initial_pos,
const QUrl &url,
bool user_gesture);
- void EmitLoadStarted(const QUrl &url, bool isErrorPage = false);
- void EmitLoadFinished(bool success, const QUrl &url, bool isErrorPage = false, int errorCode = 0, const QString &errorDescription = QString(), bool triggersErrorPage = false);
- void EmitLoadCommitted();
+ void emitLoadStarted(bool isErrorPage = false);
+ void emitLoadFinished(bool isErrorPage = false);
+ void emitLoadCommitted();
LoadingState determineLoadingState(content::WebContents *contents);
void setLoadingState(LoadingState state);
@@ -242,9 +242,17 @@ private:
int m_desktopStreamCount = 0;
mutable bool m_pendingUrlUpdate = false;
- QMap<QUrl, int> m_loadProgressMap;
- QUrl m_lastLoadedUrl;
- bool m_isNavigationCommitted = false;
+ struct LoadingInfo {
+ bool success = false;
+ int progress = -1;
+ bool isLoading() const { return progress >= 0; }
+ QUrl url;
+ int errorCode = 0;
+ QString errorDescription;
+ bool triggersErrorPage = false;
+ void clear() { *this = LoadingInfo(); }
+ } m_loadingInfo;
+
bool m_isDocumentEmpty = true;
base::WeakPtrFactory<WebContentsDelegateQt> m_weakPtrFactory { this };
};
diff --git a/src/webengine/api/qquickwebengineview.cpp b/src/webengine/api/qquickwebengineview.cpp
index 6ab1c97cb..1de7f1c7f 100644
--- a/src/webengine/api/qquickwebengineview.cpp
+++ b/src/webengine/api/qquickwebengineview.cpp
@@ -496,11 +496,9 @@ Q_STATIC_ASSERT(static_cast<int>(WebEngineError::NoErrorDomain) == static_cast<i
Q_STATIC_ASSERT(static_cast<int>(WebEngineError::CertificateErrorDomain) == static_cast<int>(QQuickWebEngineView::CertificateErrorDomain));
Q_STATIC_ASSERT(static_cast<int>(WebEngineError::DnsErrorDomain) == static_cast<int>(QQuickWebEngineView::DnsErrorDomain));
-void QQuickWebEngineViewPrivate::loadFinished(bool success, const QUrl &url, bool isErrorPage, int errorCode,
- const QString &errorDescription, bool triggersErrorPage)
+void QQuickWebEngineViewPrivate::loadFinished(bool success, const QUrl &url, bool isErrorPage, int errorCode, const QString &errorDescription)
{
Q_Q(QQuickWebEngineView);
- Q_UNUSED(triggersErrorPage);
if (isErrorPage) {
#if QT_CONFIG(webengine_testsupport)
diff --git a/src/webengine/api/qquickwebengineview_p_p.h b/src/webengine/api/qquickwebengineview_p_p.h
index ebe55c345..ec535298b 100644
--- a/src/webengine/api/qquickwebengineview_p_p.h
+++ b/src/webengine/api/qquickwebengineview_p_p.h
@@ -116,8 +116,7 @@ public:
void loadStarted(const QUrl &provisionalUrl, bool isErrorPage = false) override;
void loadCommitted() override;
void loadVisuallyCommitted() override;
- void loadFinished(bool success, const QUrl &url, bool isErrorPage, int errorCode,
- const QString &errorDescription, bool triggersErrorPage) override;
+ void loadFinished(bool success, const QUrl &url, bool isErrorPage, int errorCode, const QString &errorDescription) override;
void focusContainer() override;
void unhandledKeyEvent(QKeyEvent *event) override;
QSharedPointer<QtWebEngineCore::WebContentsAdapter>
diff --git a/src/webenginewidgets/api/qwebenginepage.cpp b/src/webenginewidgets/api/qwebenginepage.cpp
index e08afed44..b32c15039 100644
--- a/src/webenginewidgets/api/qwebenginepage.cpp
+++ b/src/webenginewidgets/api/qwebenginepage.cpp
@@ -282,28 +282,20 @@ void QWebEnginePagePrivate::loadStarted(const QUrl &provisionalUrl, bool isError
QTimer::singleShot(0, q, &QWebEnginePage::loadStarted);
}
-void QWebEnginePagePrivate::loadFinished(bool success, const QUrl &url, bool isErrorPage, int errorCode,
- const QString &errorDescription, bool triggersErrorPage)
+void QWebEnginePagePrivate::loadFinished(bool success, const QUrl &url, bool isErrorPage, int errorCode, const QString &errorDescription)
{
Q_Q(QWebEnginePage);
Q_UNUSED(url);
Q_UNUSED(errorCode);
Q_UNUSED(errorDescription);
- if (isErrorPage) {
- QTimer::singleShot(0, q, [q](){
- emit q->loadFinished(false);
- });
+ if (isErrorPage)
return;
- }
isLoading = false;
- Q_ASSERT((success && !triggersErrorPage) || !success);
- if (!triggersErrorPage) {
- QTimer::singleShot(0, q, [q, success](){
- emit q->loadFinished(success);
- });
- }
+ QTimer::singleShot(0, q, [q, success](){
+ emit q->loadFinished(success);
+ });
}
void QWebEnginePagePrivate::didPrintPageToPdf(const QString &filePath, bool success)
diff --git a/src/webenginewidgets/api/qwebenginepage_p.h b/src/webenginewidgets/api/qwebenginepage_p.h
index 82ce99503..ae3ab5d25 100644
--- a/src/webenginewidgets/api/qwebenginepage_p.h
+++ b/src/webenginewidgets/api/qwebenginepage_p.h
@@ -107,8 +107,7 @@ public:
void loadStarted(const QUrl &provisionalUrl, bool isErrorPage = false) override;
void loadCommitted() override { }
void loadVisuallyCommitted() override { }
- void loadFinished(bool success, const QUrl &url, bool isErrorPage, int errorCode,
- const QString &errorDescription, bool triggersErrorPage) override;
+ void loadFinished(bool success, const QUrl &url, bool isErrorPage, int errorCode, const QString &errorDescription) override;
void focusContainer() override;
void unhandledKeyEvent(QKeyEvent *event) override;
QSharedPointer<QtWebEngineCore::WebContentsAdapter>

@ -1,190 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 )
QTVER=$(ver_cut 1-3)
inherit multiprocessing python-any-r1 qt5-build
DESCRIPTION="Library for rendering dynamic web content in Qt5 C++ and QML applications"
if [[ ${QT5_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
if [[ ${PV} == ${QTVER}_p* ]]; then
SRC_URI="https://dev.gentoo.org/~asturm/distfiles/${P}.tar.xz"
S="${WORKDIR}/${P}"
QT5_BUILD_DIR="${S}_build"
fi
fi
# patchset based on https://github.com/chromium-ppc64le releases
SRC_URI+=" ppc64? ( https://dev.gentoo.org/~gyakovlev/distfiles/${PN}-5.15.2-chromium87-ppc64le.tar.xz )"
IUSE="alsa bindist designer geolocation +jumbo-build kerberos pulseaudio +system-ffmpeg +system-icu widgets"
REQUIRED_USE="designer? ( widgets )"
RDEPEND="
app-arch/snappy:=
dev-libs/glib:2
dev-libs/nspr
dev-libs/nss
dev-libs/expat
dev-libs/libevent:=
dev-libs/libxml2[icu]
dev-libs/libxslt
dev-libs/re2:=
~dev-qt/qtcore-${QTVER}
~dev-qt/qtdeclarative-${QTVER}
~dev-qt/qtgui-${QTVER}
~dev-qt/qtnetwork-${QTVER}
~dev-qt/qtprintsupport-${QTVER}
~dev-qt/qtwebchannel-${QTVER}[qml]
media-libs/fontconfig
media-libs/freetype
media-libs/harfbuzz:=
media-libs/lcms:2
media-libs/libjpeg-turbo:=
media-libs/libpng:0=
>=media-libs/libvpx-1.5:=[svc(+)]
media-libs/libwebp:=
media-libs/mesa[egl,X(+)]
media-libs/opus
sys-apps/dbus
sys-apps/pciutils
sys-libs/zlib[minizip]
virtual/libudev
x11-libs/libdrm
x11-libs/libX11
x11-libs/libXcomposite
x11-libs/libXcursor
x11-libs/libXdamage
x11-libs/libXext
x11-libs/libXfixes
x11-libs/libXi
x11-libs/libXrandr
x11-libs/libXrender
x11-libs/libXScrnSaver
x11-libs/libXtst
alsa? ( media-libs/alsa-lib )
designer? ( ~dev-qt/designer-${QTVER} )
geolocation? ( ~dev-qt/qtpositioning-${QTVER} )
kerberos? ( virtual/krb5 )
pulseaudio? ( media-sound/pulseaudio:= )
system-ffmpeg? ( media-video/ffmpeg:0= )
system-icu? ( >=dev-libs/icu-68.2:= )
widgets? (
~dev-qt/qtdeclarative-${QTVER}[widgets]
~dev-qt/qtwidgets-${QTVER}
)
"
DEPEND="${RDEPEND}"
BDEPEND="
${PYTHON_DEPS}
dev-util/gperf
dev-util/ninja
dev-util/re2c
net-libs/nodejs[ssl]
sys-devel/bison
"
PATCHES=(
"${FILESDIR}/${PN}-5.15.0-disable-fatal-warnings.patch" # bug 695446
"${FILESDIR}/${PN}-5.15.2_p20210224-chromium-87-v8-icu68.patch" # downstream, bug 757606
"${FILESDIR}/${PN}-5.15.2_p20210224-disable-git.patch" # downstream snapshot fix
"${FILESDIR}/${P}-glibc-2.33.patch" # by Fedora, bug 769989
"${FILESDIR}/${P}-gcc11.patch" # by Fedora, bug 768261
"${FILESDIR}/${P}-icu69.patch" # bug 781236
)
src_prepare() {
if [[ ${PV} == ${QTVER}_p* ]]; then
# This is made from git, and for some reason will fail w/o .git directories.
mkdir -p .git src/3rdparty/chromium/.git || die
# We need to make sure this integrates well into Qt 5.15.2 installation.
# Otherwise revdeps fail w/o heavy changes. This is the simplest way to do it.
sed -e "/^MODULE_VERSION/s/5.*/${QTVER}/" -i .qmake.conf || die
fi
# QTBUG-88657 - jumbo-build could still make trouble
if ! use jumbo-build; then
sed -i -e 's|use_jumbo_build=true|use_jumbo_build=false|' \
src/buildtools/config/common.pri || die
fi
# bug 630834 - pass appropriate options to ninja when building GN
sed -e "s/\['ninja'/&, '-j$(makeopts_jobs)', '-l$(makeopts_loadavg "${MAKEOPTS}" 0)', '-v'/" \
-i src/3rdparty/chromium/tools/gn/bootstrap/bootstrap.py || die
# bug 620444 - ensure local headers are used
find "${S}" -type f -name "*.pr[fio]" | \
xargs sed -i -e 's|INCLUDEPATH += |&$${QTWEBENGINE_ROOT}_build/include $${QTWEBENGINE_ROOT}/include |' || die
if use system-icu; then
# Sanity check to ensure that bundled copy of ICU is not used.
# Whole src/3rdparty/chromium/third_party/icu directory cannot be deleted because
# src/3rdparty/chromium/third_party/icu/BUILD.gn is used by build system.
# If usage of headers of bundled copy of ICU occurs, then lists of shim headers in
# shim_headers("icui18n_shim") and shim_headers("icuuc_shim") in
# src/3rdparty/chromium/third_party/icu/BUILD.gn should be updated.
local file
while read file; do
echo "#error This file should not be used!" > "${file}" || die
done < <(find src/3rdparty/chromium/third_party/icu -type f "(" -name "*.c" -o -name "*.cpp" -o -name "*.h" ")" 2>/dev/null)
fi
qt_use_disable_config alsa webengine-alsa src/buildtools/config/linux.pri
qt_use_disable_config pulseaudio webengine-pulseaudio src/buildtools/config/linux.pri
qt_use_disable_mod designer webenginewidgets src/plugins/plugins.pro
qt_use_disable_mod widgets widgets src/src.pro
qt5-build_src_prepare
# we need to generate ppc64 stuff because upstream does not ship it yet
if use ppc64; then
einfo "Patching for ppc64le and generating build files"
eapply "${FILESDIR}/qtwebengine-5.15.2-enable-ppc64.patch"
pushd src/3rdparty/chromium > /dev/null || die
eapply -p0 "${WORKDIR}/${PN}-ppc64le"
popd > /dev/null || die
pushd src/3rdparty/chromium/third_party/libvpx > /dev/null || die
mkdir -vp source/config/linux/ppc64 || die
mkdir -p source/libvpx/test || die
touch source/libvpx/test/test.mk || die
./generate_gni.sh || die
popd >/dev/null || die
fi
}
src_configure() {
export NINJA_PATH=/usr/bin/ninja
export NINJAFLAGS="${NINJAFLAGS:--j$(makeopts_jobs) -l$(makeopts_loadavg "${MAKEOPTS}" 0) -v}"
local myqmakeargs=(
--
-no-build-qtpdf
-printing-and-pdf
-system-opus
-system-webp
$(usex alsa '-alsa' '-no-alsa')
$(usex bindist '-no-proprietary-codecs' '-proprietary-codecs')
$(usex geolocation '-webengine-geolocation' '-no-webengine-geolocation')
$(usex kerberos '-webengine-kerberos' '-no-webengine-kerberos')
$(usex pulseaudio '-pulseaudio' '-no-pulseaudio')
$(usex system-ffmpeg '-system-ffmpeg' '-qt-ffmpeg')
$(usex system-icu '-webengine-icu' '-no-webengine-icu')
)
qt5-build_src_configure
}
src_install() {
qt5-build_src_install
# bug 601472
if [[ ! -f ${D}${QT5_LIBDIR}/libQt5WebEngine.so ]]; then
die "${CATEGORY}/${PF} failed to build anything. Please report to https://bugs.gentoo.org/"
fi
}

@ -103,6 +103,7 @@ PATCHES=(
"${FILESDIR}/${PN}-5.15.2_p20210406-glibc-2.33.patch" # by Fedora, bug 769989
"${FILESDIR}/${PN}-5.15.2_p20210406-gcc11.patch" # by Fedora, bug 768261
"${FILESDIR}/${PN}-5.15.2_p20210406-icu69.patch" # bug 781236
"${FILESDIR}/${P}-qtbug-91773.patch" # in Qt "5.15.5"
)
src_unpack() {

Binary file not shown.

@ -2,7 +2,6 @@ DIST ansi_term-0.11.0.crate 17087 BLAKE2B 9bd35c045a01ce4c6c4a5db1b4f15e9412bb97
DIST atty-0.2.14.crate 5470 BLAKE2B 2db856a9e898a430258f059aeaf7c844a153293e8856d90ac81f7d91a888c89198768ad5cb09303c23241fe85c560a55148fa56a303651a82b0edb895616bfab SHA512 d7b6c4b9a0f898d91ddbc41a5ee45bbf45d1d269508c8cc87ee3e3990500e41e0ec387afb1f3bc7db55bedac396dd86c6509f4bf9e5148d809c3802edcc5e1d9
DIST autocfg-1.0.1.crate 12908 BLAKE2B 40c53cab298e4f26634c3acff3ece6a3371188d91dbf377ed664eabedcde20536edaa93daf406618f37edde019f049a6e7b9a47f627344587dbd126bee2b5e3a SHA512 630b348acb98b012e97804e6325d03c89abc22f2157762c59144c04e6c733daf550bdc7f0fe0b9f3b50e15dae8c1c3c4bdfce3d805b02f0fc987311f5332419b
DIST bitflags-1.2.1.crate 16745 BLAKE2B 0fa6d3ce44aad7616d5cd02aad8c1d0b0fed4022650eb43067c4a72e6fc88da05442674fa51826e4858a47c9de233e1ba2229820af094197cd11bb416ceffb2b SHA512 ad89b3798845e23737a620bba581c2ff1ff3e15bac12555c765e201d2c0b90ecea0cdbc5b5b1a3fa9858c385e8e041f8226f5acfae5bbbe9925643fff2bf3f0b
DIST cbindgen-0.18.0.crate 180380 BLAKE2B f12f95a3e7c9af2ad933e7cf51248eaf5a30816f8aa5a160b8e7decffffc9fadf90a9bb832690be51639209470e4644154525b6cd6e51dc0a03dbea53a7e0595 SHA512 5d09c5720f5157239228f8570b18c33057cfd7e68f453d9e31bd5eb69541e21a348bbe9116c3387a00425803c6ae8eab9b2b97359fb275f5a7fb982974008909
DIST cbindgen-0.19.0.crate 181286 BLAKE2B e09931704cfe0f0f777e67c66fdfd08820e8185a7ad475521eca2d6819d1d0a92791d5cd5dfb2b2199e911da9e8a92dfa09ec20d2912f1073d456f7932944438 SHA512 dc31896c75d43fa7efb6256b861b7d4a51b9b0e4dc605bcaf769b32cba2dc0b7a5c49b01f0ff48ada08488ad8c020c3bbb645d6796046caf0bd7d9eaae25a962
DIST cfg-if-0.1.10.crate 7933 BLAKE2B 063a96ed176f34f788666b40adc483d147fc011dee941ab60569ddd0e57502b5dd06ed71090f4e14ce005d06e240500a286f74652615e9d068fba649610d8cf8 SHA512 9d22616bfb4a75770a828a0a3cddac6787297a5fdc53eb17e25811cc94de717f2de8bd66d53c5d65ba1c83d8892aefee5ae758cf56a1ef0a0c3120f70b244339
DIST clap-2.33.3.crate 201925 BLAKE2B bec9c866481c5b3fddeb314f68af9bce38fc421e42816182de3209e8ea3447b72cf033e6251eea27fe974eff8085b7d98cdd2911b5cc0ec6b4bf4c750deb8a25 SHA512 3eb0fd648e2e3f9e5ff69a5e6cf0d867304fe18523accd036f28a86de368e4774088a6936c108ccc045092c539fe7f7494ea96420ebf6b4bec16880cea84bedf

@ -1,68 +0,0 @@
# Copyright 2017-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
CRATES="
ansi_term-0.11.0
atty-0.2.14
autocfg-1.0.1
bitflags-1.2.1
cbindgen-0.18.0
cfg-if-0.1.10
clap-2.33.3
cloudabi-0.0.3
getrandom-0.1.15
hashbrown-0.9.1
heck-0.3.1
hermit-abi-0.1.16
indexmap-1.6.0
itoa-0.4.6
lazy_static-1.4.0
libc-0.2.77
lock_api-0.3.4
log-0.4.11
parking_lot-0.10.2
parking_lot_core-0.7.2
ppv-lite86-0.2.9
proc-macro2-1.0.21
quote-1.0.7
rand-0.7.3
rand_chacha-0.2.2
rand_core-0.5.1
rand_hc-0.2.0
redox_syscall-0.1.57
remove_dir_all-0.5.3
ryu-1.0.5
scopeguard-1.1.0
serde-1.0.116
serde_derive-1.0.116
serde_json-1.0.57
serial_test-0.5.0
serial_test_derive-0.5.0
smallvec-1.4.2
strsim-0.8.0
syn-1.0.41
tempfile-3.1.0
textwrap-0.11.0
toml-0.5.6
unicode-segmentation-1.6.0
unicode-width-0.1.8
unicode-xid-0.2.1
vec_map-0.8.2
wasi-0.9.0+wasi-snapshot-preview1
winapi-0.3.9
winapi-i686-pc-windows-gnu-0.4.0
winapi-x86_64-pc-windows-gnu-0.4.0
"
inherit cargo
DESCRIPTION="A tool for generating C bindings to Rust code"
HOMEPAGE="https://github.com/eqrion/cbindgen/"
SRC_URI="$(cargo_crate_uris ${CRATES})"
LICENSE="MIT MPL-2.0"
SLOT="0"
KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
RESTRICT="test"
QA_FLAGS_IGNORED="usr/bin/cbindgen"

@ -63,6 +63,6 @@ HOMEPAGE="https://github.com/eqrion/cbindgen/"
SRC_URI="$(cargo_crate_uris ${CRATES})"
LICENSE="MIT MPL-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
RESTRICT="test"
QA_FLAGS_IGNORED="usr/bin/cbindgen"

@ -1,2 +1,3 @@
DIST dialog-1.3-20200327.tar.gz 547962 BLAKE2B b335d8b57d9a9f3a7e303aa3b2c64736007b66618a79c79368d9dba20a8123813cdeb7d0643bf7c6d147314963ff469b6e41d2378fe9181081fa543f0aca50f2 SHA512 c8c7ccd86fa189a2b6739320f59f127512e53f908ed257280099f8c45754da98d2095835d0c14090cd071af0ed6e8ff95f9938f5ca8027b0b7001c7fd746fe59
DIST dialog-1.3-20210324.tgz 561235 BLAKE2B fbeae52e207def0b9ebcd9669f9321a711be82d0b6e163a94adaa21192a8fefa67255cd8b0a0121559728f4e5108ea8a90992a64d39fd0fa0f32e201de11f5a9 SHA512 6850485de5ffb4b5b702be792381b1e2c3e3e74143474b9d96f418ff755e17bd8075f1efab950cf0ca84fffb61c2373526d3607f2f1805b4056aac0ea6831069
DIST dialog-1.3-20210509.tgz 562432 BLAKE2B f3a36d01f85516eb7297643158d02585bb62d4e54e90784218f0f9a825d7011093ed9c784bbdfd9c466b96b054ad44c23f97115599018befd449398678c78c64 SHA512 338ea8ee1bbbc44f0d8f511c5c87b246ea242a287346dd27e490d4854fdc00e9b4241d2ef372f131ef7152ebc2429d54c6bc1eeec0f89a6476e0a05f2683c64c

@ -22,11 +22,16 @@ BDEPEND="!minimal? ( sys-devel/libtool )"
src_prepare() {
default
sed -i -e '/LIB_CREATE=/s:${CC}:& ${LDFLAGS}:g' configure || die
sed -i '/$(LIBTOOL_COMPILE)/s:$: $(LIBTOOL_OPTS):' makefile.in || die
}
src_configure() {
if [[ ${CHOST} == *-darwin* ]] ; then
export ac_cv_prog_LIBTOOL=glibtool
fi
econf \
--disable-rpath-hack \
$(use_enable nls) \

@ -0,0 +1,53 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_P=${PN}-$(ver_rs 2 -)
DESCRIPTION="Tool to display dialog boxes from a shell"
HOMEPAGE="https://invisible-island.net/dialog/"
SRC_URI="https://invisible-mirror.net/archives/dialog/${MY_P}.tgz"
S="${WORKDIR}"/${MY_P}
LICENSE="GPL-2"
SLOT="0/15"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
IUSE="examples minimal nls static-libs unicode"
RDEPEND=">=sys-libs/ncurses-5.2-r5:=[unicode?]"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
BDEPEND="!minimal? ( sys-devel/libtool )
virtual/pkgconfig"
src_prepare() {
default
sed -i -e '/LIB_CREATE=/s:${CC}:& ${LDFLAGS}:g' configure || die
sed -i '/$(LIBTOOL_COMPILE)/s:$: $(LIBTOOL_OPTS):' makefile.in || die
}
src_configure() {
if [[ ${CHOST} == *-darwin* ]] ; then
export ac_cv_prog_LIBTOOL=glibtool
fi
econf \
--disable-rpath-hack \
--with-pkg-config \
$(use_enable nls) \
$(use_with !minimal libtool) \
--with-libtool-opts=$(usex static-libs '' '-shared') \
--with-ncurses$(usex unicode w '')
}
src_install() {
use minimal && default || emake DESTDIR="${D}" install-full
use examples && dodoc -r samples
dodoc CHANGES README
find "${ED}" -name '*.la' -delete || die
}

@ -1 +0,0 @@
DIST findbugs-3.0.1-source.zip 9625065 BLAKE2B 26c940ac0eaec16de89ffbbe26d16b0b5c2883a6131a8b3ce93b9a35014a42c221456f977e581d2f4f1b8d9333237c24ac6d5ad8fc2ba6bb018c333b6a09f4eb SHA512 d967769f2356f28b34d92c7451cf3e2ac004e667bfc3b049b5b10b1c19d7be2cfa0db132a77698d042300330f77a2bb5dd8c4baa0d67c37b7e5ae6da9e83a64f

@ -1,48 +0,0 @@
From d4ef7a75e6d0e50f6417825d851ad9e5ed757985 Mon Sep 17 00:00:00 2001
From: James Le Cuirot <chewi@gentoo.org>
Date: Tue, 10 Mar 2015 23:47:00 +0000
Subject: [PATCH 1/2] Support bcel 6.0 RC3 instead of a random snapshot
---
.../src/java/edu/umd/cs/findbugs/ba/AbstractFrameModelingVisitor.java | 2 +-
findbugs/src/java/edu/umd/cs/findbugs/visitclass/BetterVisitor.java | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/findbugs/src/java/edu/umd/cs/findbugs/ba/AbstractFrameModelingVisitor.java b/findbugs/src/java/edu/umd/cs/findbugs/ba/AbstractFrameModelingVisitor.java
index 52468c9..d7cbd0e 100644
--- a/findbugs/src/java/edu/umd/cs/findbugs/ba/AbstractFrameModelingVisitor.java
+++ b/findbugs/src/java/edu/umd/cs/findbugs/ba/AbstractFrameModelingVisitor.java
@@ -50,7 +50,7 @@ import edu.umd.cs.findbugs.bcel.generic.NULL2Z;
* @see Frame
* @see DataflowAnalysis
*/
-public abstract class AbstractFrameModelingVisitor<Value, FrameType extends Frame<Value>> implements VisitorSupportsInvokeDynamic {
+public abstract class AbstractFrameModelingVisitor<Value, FrameType extends Frame<Value>> extends EmptyVisitor {
private FrameType frame;
private Location location;
diff --git a/findbugs/src/java/edu/umd/cs/findbugs/visitclass/BetterVisitor.java b/findbugs/src/java/edu/umd/cs/findbugs/visitclass/BetterVisitor.java
index 5d62092..a36abac 100644
--- a/findbugs/src/java/edu/umd/cs/findbugs/visitclass/BetterVisitor.java
+++ b/findbugs/src/java/edu/umd/cs/findbugs/visitclass/BetterVisitor.java
@@ -56,7 +56,7 @@ import org.apache.bcel.classfile.StackMap;
import org.apache.bcel.classfile.StackMapEntry;
import org.apache.bcel.classfile.Synthetic;
import org.apache.bcel.classfile.Unknown;
-import org.apache.bcel.classfile.Visitor;
+import org.apache.bcel.classfile.EmptyVisitor;
/**
* Fixedup of from org.apache.bcel.classfile.Visitor
@@ -64,7 +64,7 @@ import org.apache.bcel.classfile.Visitor;
* @author <A HREF="http://www.cs.umd.edu/~pugh">William Pugh</A>
* @version 980818
*/
-public abstract class BetterVisitor implements Visitor {
+public abstract class BetterVisitor extends EmptyVisitor {
/**
* clone() is overridden to change access control from protected to public.
--
2.0.4

@ -1,25 +0,0 @@
From c956ffd82e5b88be74dca187dc80afcf6559a78f Mon Sep 17 00:00:00 2001
From: James Le Cuirot <chewi@gentoo.org>
Date: Wed, 11 Mar 2015 21:41:36 +0000
Subject: [PATCH 2/2] Don't bundle anything in the annotations jar
---
findbugs/build.xml | 2 --
1 file changed, 2 deletions(-)
diff --git a/findbugs/build.xml b/findbugs/build.xml
index 698b91f..3eac5d6 100644
--- a/findbugs/build.xml
+++ b/findbugs/build.xml
@@ -298,8 +298,6 @@
<fileset dir="${src.dir}">
<include name="**/annotations/*.java"/>
</fileset>
- <zipfileset src="${jar.dir}/jcip-annotations.jar" excludes="META-INF/**,**/*.html"/>
- <zipfileset src="${jar.dir}/jsr305.jar" excludes="META-INF/**,**/*.html"/>
</jar>
</target>
--
2.0.4

@ -1,30 +0,0 @@
From af7e19734c9bbd21d2f1bf8a66b5ca1c131eeacd Mon Sep 17 00:00:00 2001
From: James Le Cuirot <chewi@gentoo.org>
Date: Fri, 13 Mar 2015 00:20:20 +0000
Subject: [PATCH 3/3] JDK 1.8 works fine for me
---
findbugs/build.xml | 7 -------
1 file changed, 7 deletions(-)
diff --git a/findbugs/build.xml b/findbugs/build.xml
index 3eac5d6..48c8f2b 100644
--- a/findbugs/build.xml
+++ b/findbugs/build.xml
@@ -122,13 +122,6 @@
</javac>
</target>
<target name="classes" depends="init">
- <echo>Requires JDK 7.x (not 8!), using: ${ant.java.version}</echo>
- <fail message="Requires JDK 7.x (not 8!), using: ${ant.java.version}">
- <condition>
- <equals arg1="1.8" arg2="${ant.java.version}"/>
- </condition>
- </fail>
-
<!-- Compile Java source files. -->
<echo level="info" message="compiling findbugs"/>
<javac
--
2.0.4

@ -1,25 +0,0 @@
From c73984b12bb3c80a67d993a30c894ee05613d422 Mon Sep 17 00:00:00 2001
From: James Le Cuirot <chewi@gentoo.org>
Date: Fri, 13 Mar 2015 13:59:22 +0000
Subject: [PATCH 4/4] Don't clean before generating docs
---
findbugs/build.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/findbugs/build.xml b/findbugs/build.xml
index 48c8f2b..d0cbc04 100644
--- a/findbugs/build.xml
+++ b/findbugs/build.xml
@@ -652,7 +652,7 @@
</target>
- <target name="checkdocs" depends="clean">
+ <target name="checkdocs">
<!-- FIXME: check whether docs are up to date -->
</target>
--
2.0.4

@ -1,25 +0,0 @@
From cbf9d81dba1ef0a42f79391c87845d7875a13993 Mon Sep 17 00:00:00 2001
From: James Le Cuirot <chewi@gentoo.org>
Date: Mon, 18 May 2015 20:41:58 +0100
Subject: [PATCH 5/5] Don't require git to build
---
findbugs/build.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/findbugs/build.xml b/findbugs/build.xml
index d0cbc04..42c6d09 100644
--- a/findbugs/build.xml
+++ b/findbugs/build.xml
@@ -636,7 +636,7 @@
</target>
- <target name="version" depends="classes,-get-git-revision" >
+ <target name="version" depends="classes" >
<echo>${gitrnum}</echo>
<java classpathref="tools.classpath"
output="${version.props.file}"
--
2.3.3

@ -1,75 +0,0 @@
escape_arg() {
echo "$1" | sed -e "s,\\([\\\"' ]\\),\\\\\\1,g"
}
# Set defaults
fb_mainclass="edu.umd.cs.findbugs.workflow.FB"
user_jvmargs=''
ea_arg=''
debug_arg=''
conservespace_arg=''
user_props=''
# Handle command line arguments.
while [ $# -gt 0 ]; do
case $1 in
-textui)
fb_mainclass="edu.umd.cs.findbugs.FindBugs2"
;;
-jvmArgs)
shift
user_jvmargs="$1"
;;
-ea)
ea_arg='-ea'
;;
-maxHeap)
shift
fb_maxheap="-Xmx$1m"
;;
-debug)
debug_arg="-Dfindbugs.debug=true"
;;
-conserveSpace)
conservespace_arg="-Dfindbugs.conserveSpace=true"
;;
-property)
shift
user_props="-D$1 $user_props"
;;
-D*=*)
user_props="$1 $user_props"
;;
-version)
fb_mainclass=edu.umd.cs.findbugs.Version
fb_appargs="-release"
while [ $# -gt 0 ]; do
shift
done
;;
-help)
fb_mainclass="edu.umd.cs.findbugs.ShowHelp"
;;
# All unrecognized arguments will be accumulated and
# passed to the application.
*)
fb_appargs="$fb_appargs `escape_arg "$1"`"
;;
esac
shift
done
fb_maxheap=${fb_maxheap:-"-Xmx768m"}
fb_jvmargs="$fb_maxheap $user_jvmargs $debug_arg $conservespace_arg $user_props $ea_arg"
gjl_pkg_args="$fb_appargs"

@ -1,3 +0,0 @@
fb_mainclass="$1"
unset fb_jvmargs
shift

@ -1,83 +0,0 @@
escape_arg() {
echo "$1" | sed -e "s,\\([\\\"' ]\\),\\\\\\1,g"
}
# Set defaults
fb_mainclass="edu.umd.cs.findbugs.LaunchAppropriateUI"
user_jvmargs=''
ea_arg=''
debug_arg=''
conservespace_arg=''
user_props=''
# Handle command line arguments.
while [ $# -gt 0 ]; do
case $1 in
-gui)
# this is the default
;;
-gui1)
user_props="-Dfindbugs.launchUI=1 $user_props"
;;
-textui)
fb_mainclass="edu.umd.cs.findbugs.FindBugs2"
;;
-jvmArgs)
shift
user_jvmargs="$1"
;;
-ea)
ea_arg='-ea'
;;
-maxHeap)
shift
fb_maxheap="-Xmx$1m"
;;
-debug)
debug_arg="-Dfindbugs.debug=true"
;;
-conserveSpace)
conservespace_arg="-Dfindbugs.conserveSpace=true"
;;
-property)
shift
user_props="-D$1 $user_props"
;;
-D*=*)
user_props="$1 $user_props"
;;
-version)
fb_mainclass=edu.umd.cs.findbugs.Version
fb_appargs="-release"
while [ $# -gt 0 ]; do
shift
done
;;
-help)
fb_mainclass="edu.umd.cs.findbugs.ShowHelp"
;;
# All unrecognized arguments will be accumulated and
# passed to the application.
*)
fb_appargs="$fb_appargs `escape_arg "$1"`"
;;
esac
shift
done
fb_maxheap=${fb_maxheap:-"-Xmx768m"}
fb_jvmargs="$fb_maxheap $user_jvmargs $debug_arg $conservespace_arg $user_props $ea_arg"
gjl_pkg_args="$fb_appargs"

@ -1,89 +0,0 @@
# Default UI is GUI2
fb_launchui="2"
#
# Stuff we're going to pass to the JVM as JVM arguments.
#
jvm_debug=""
jvm_maxheap="-Xmx768m"
jvm_ea=""
jvm_conservespace=""
jvm_user_props=""
#
# Process command line args until we hit one we don't recognize.
#
finishedArgs=false
while [ $# -gt 0 ] && [ "$finishedArgs" = "false" ]; do
arg=$1
case $arg in
-textui)
shift
fb_launchui="0"
;;
-gui)
shift
fb_launchui="2"
;;
-gui1)
shift
fb_launchui="1"
;;
-maxHeap)
shift
jvm_maxheap="-Xmx$1m"
shift
;;
-ea)
shift
jvm_ea="-ea"
;;
-debug)
shift
jvm_debug="-Dfindbugs.debug=true"
;;
-conserveSpace)
shift
jvm_conservespace="-Dfindbugs.conserveSpace=true"
;;
-property)
shift
jvm_user_props="-D$1 $jvm_user_props"
shift
;;
-D*=*)
jvm_user_props="$1 $user_props"
shift
;;
-version)
shift
fb_launchui="version"
;;
-help)
shift
fb_launchui="help"
;;
# All arguments starting from the first unrecognized arguments
# are passed on to the Java app.
*)
finishedArgs=true
;;
esac
done
fb_mainclass="edu.umd.cs.findbugs.LaunchAppropriateUI"
fb_jvmargs="$jvm_debug $jvm_maxheap $jvm_ea $jvm_conservespace $jvm_user_props -Dfindbugs.launchUI=$fb_launchui"

@ -1,108 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
JAVA_PKG_IUSE="doc source"
inherit epatch java-pkg-2 java-ant-2
DESCRIPTION="Find Bugs in Java Programs"
HOMEPAGE="http://findbugs.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}-source.zip"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
CDEPEND="dev-java/ant-core:0
dev-java/apple-java-extensions-bin:0
>=dev-java/asm-5:4
>=dev-java/bcel-6:0
dev-java/commons-lang:2.1
dev-java/dom4j:1
dev-java/hamcrest-core:1.3
dev-java/jaxen:1.1
dev-java/jcip-annotations:0
dev-java/jdepend:0
>=dev-java/jformatstring-2.0.3:0
dev-java/jsr305:0
dev-java/junit:4"
RDEPEND=">=virtual/jre-1.7
${CDEPEND}"
DEPEND=">=virtual/jdk-1.7
app-arch/unzip
doc? (
app-text/docbook-xsl-stylesheets
dev-java/saxon:6.5
)
test? ( dev-java/ant-junit:0 )
${CDEPEND}"
JAVA_ANT_REWRITE_CLASSPATH="true"
EANT_BUILD_TARGET="build"
EANT_DOC_TARGET="apiJavadoc docs"
EANT_TEST_TARGET="runjunit"
EANT_GENTOO_CLASSPATH="ant-core,apple-java-extensions-bin,asm-4,bcel,commons-lang-2.1,dom4j-1,hamcrest-core-1.3,jaxen-1.1,jcip-annotations,jdepend,jformatstring,jsr305,junit-4"
pkg_setup() {
java-pkg-2_pkg_setup
use doc && EANT_GENTOO_CLASSPATH_EXTRA="$(java-pkg_getjars --build-only --with-dependencies saxon-6.5)"
EANT_EXTRA_ARGS="-Dgitrnum=gentoo -Dxsl.stylesheet.home=${EROOT}usr/share/sgml/docbook/xsl-stylesheets"
}
java_prepare() {
epatch \
"${FILESDIR}/0001-Support-bcel-6.0-RC3-instead-of-a-random-snapshot.patch" \
"${FILESDIR}/0002-Don-t-bundle-anything-in-the-annotations-jar.patch" \
"${FILESDIR}/0003-JDK-1.8-works-fine-for-me.patch" \
"${FILESDIR}/0004-Don-t-clean-before-generating-docs.patch" \
"${FILESDIR}/0005-Don-t-require-git-to-build.patch"
# Remove bundled jars.
find -name "*.jar" -delete || die
}
src_install() {
java-pkg_dojar lib/{${PN},${PN}-ant,annotations}.jar
insinto "/usr/share/${PN}/plugin"
doins plugin/README
use source && java-pkg_dosrc src/*/edu
if use doc; then
insinto "/usr/share/doc/${PF}/html/web"
doins -r build/doc/*
java-pkg_dojavadoc apiJavaDoc
fi
local SCRIPT CLASS
local ARGS="-Dfindbugs.home=${EROOT}usr/share/findbugs"
ls src/scripts/standard | grep -E -v '^(findbugs2?|fb|fbwrap)$' | while read SCRIPT; do
CLASS=$(grep '^fb_mainclass=' "src/scripts/standard/${SCRIPT}" | sed 's/^.*=//')
java-pkg_dolauncher "findbugs-${SCRIPT#findbugs-}" \
--java_args "${ARGS}" --main "${CLASS}"
done
for SCRIPT in findbugs{,2} fb{,wrap}; do
java-pkg_dolauncher "${SCRIPT}" \
--java_args "\$fb_jvmargs ${ARGS}" --main '$fb_mainclass' \
-pre "${FILESDIR}/launchers/${SCRIPT}"
done
}
src_test() {
java-pkg-2_src_test
}
pkg_postinst() {
elog "findbugs ships with many launcher scripts. Most of these have been"
elog "installed with a findbugs- prefix to avoid conflicts and confusion"
elog "with other executables in the PATH."
}

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>java@gentoo.org</email>
<name>Java</name>
</maintainer>
<longdescription>FindBugs uses static analysis to inspect Java bytecode for occurrences of bug patterns. Static analysis means that FindBugs can find bugs by simply inspecting a program's code: executing the program is not necessary. This makes FindBugs very easy to use: in general, you should be able to use it to look for bugs in your code within a few minutes of downloading it. FindBugs works by analyzing Java bytecode (compiled class files), so you don't even need the program's source code to use it. Because its analysis is sometimes imprecise, FindBugs can report false warnings, which are warnings that do not indicate real errors. In practice, the rate of false warnings reported by FindBugs is less than 50%.</longdescription>
<upstream>
<remote-id type="sourceforge">findbugs</remote-id>
</upstream>
</pkgmetadata>

Binary file not shown.

@ -1,4 +1,4 @@
DIST repo-2.11 39791 BLAKE2B 535de238d934eb2717af7bddd960c158501a56dd400ae02f3665e30c34bd68a1973de4c84e2ea76f48aa027249dfd4270153f1a7d4c4a2d5d883b580f02664e9 SHA512 1889ee9c782a6dc90b782c8ca9c5411b97c4495e0d27add62b9661a5961a782096037e081e984c965e44d33459e8fe4428528b5ebfff9fe356ce401cb610480a
DIST repo-2.12 43035 BLAKE2B 3a3b1997a09f08093aa2d5cf6c7a3747d6a9a6c29e6c199574757d4d87fdd57b7cc8b18bb1ddfa7c47392f73a22211f996f6ba8175448162e305106c9ac6cafe SHA512 409525040ec8fe6c6a6d923c4e23ab93f5ccc62d01d310ad6b56d55f45d88c2bf469e9b46943e799b8d5238cbc0a9610d0f64f35cf0f3a68b79cbd8c92f044a3
DIST repo-2.14 44203 BLAKE2B 72094daad380b3a03c9dca488e0bfc2a64bcaed5b025490c07fdc627eaae825bd71d0a8aafca5307dd4a0fecf59d530e7a692b030699a2cdc34cbec569076383 SHA512 37bc4e5b63e2cb1567633708f9680817c346b8105ca495538036aad87fe278f3ab5143f0f57fd40d4051de8016cc785648e9f0b65ebf2430677f037030f71343
DIST repo-2.15 44704 BLAKE2B 6d90cecb4d748f7fb3febec95e16ed1638112a945aa36f7d7cc12232cdf4bcd66d286aa1054fd23de5ae7e896ac52c05465778aaec759e5d0251227deb220d18 SHA512 e6aad90f6058f4e5750ce44f8951ac4df39dd39c1615d7f68670a0b8ac5007f52e3bb6219d6ca0842908ef6c87843c6fd655b3b2a47fcf410e2a74d47a334d34
DIST repo-511a0e54f5801a3f36c00fac478a596d83867d10-bash-completion.sh.base64 4280 BLAKE2B 6c369d36176d5bd4d3f4ed4df39bbd6542022dd186375bd05a978889c574819e3328d19c7dac2982233614786078f73bfd1f0c80aa7c0c6c79bdfab776ed6e39 SHA512 f484bee79c3724a6daf8a69b3df80feef3c6aaad3bfb49443caabc52735dd7f3b0fcb3ad4b7480bc020c9b4cac2f3b044693ef761df6fc9d34e854289baf1f3d

@ -1,32 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# NB: The ${PV} tracks the *repo launcher version*, not the last signed release
# of the repo project. The launcher only gets a new update when changes are
# made in it.
EAPI="7"
PYTHON_COMPAT=( python3_{7..9} )
inherit python-r1
DESCRIPTION="Google tool for managing git, particularly multiple repos"
HOMEPAGE="https://gerrit.googlesource.com/git-repo"
SRC_URI="https://storage.googleapis.com/git-repo-downloads/${P}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
IUSE=""
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
!app-admin/radmind
!dev-util/repo"
S=${WORKDIR}
src_install() {
python_foreach_impl python_newscript "${DISTDIR}/${P}" ${PN}
}

@ -22,7 +22,7 @@ SRC_URI="https://storage.googleapis.com/git-repo-downloads/${P}
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
IUSE=""
REQUIRED_USE="${PYTHON_REQUIRED_USE}"

@ -9,11 +9,16 @@ EAPI="7"
PYTHON_COMPAT=( python3_{7..9} )
inherit python-r1
inherit bash-completion-r1 python-r1
# This file rarely changes, so track it independently.
COMP_VER="511a0e54f5801a3f36c00fac478a596d83867d10"
COMP_NAME="${PN}-${COMP_VER}-bash-completion.sh.base64"
DESCRIPTION="Google tool for managing git, particularly multiple repos"
HOMEPAGE="https://gerrit.googlesource.com/git-repo"
SRC_URI="https://storage.googleapis.com/git-repo-downloads/${P}"
SRC_URI="https://storage.googleapis.com/git-repo-downloads/${P}
https://gerrit.googlesource.com/git-repo/+/${COMP_VER}/completion.bash?format=TEXT -> ${COMP_NAME}"
LICENSE="Apache-2.0"
SLOT="0"
@ -27,8 +32,11 @@ RDEPEND="${PYTHON_DEPS}
S=${WORKDIR}
src_unpack() { :; }
src_unpack() {
base64 -d <"${DISTDIR}/${COMP_NAME}" >completion.bash || die
}
src_install() {
python_foreach_impl python_newscript "${DISTDIR}/${P}" ${PN}
newbashcomp completion.bash ${PN}
}

Binary file not shown.

@ -127,6 +127,16 @@ perl_delete_emptybsdir() {
fi
}
# @FUNCTION: perl_fix_permissions
# @DESCRIPTION:
# Make all of ${D} user-writable, since EU::MM does silly things with
# the w bit. See bug 554346.
perl_fix_permissions() {
debug-print-function $FUNCNAME "$@"
perl_set_version
fperms -R u+w "${D}"
}
# @FUNCTION: perl_fix_packlist
# @DESCRIPTION:
# Look through ${D} for .packlist text files containing the temporary installation

Binary file not shown.

@ -1,2 +1,3 @@
DIST quadrapassel-3.36.05.tar.xz 309160 BLAKE2B a9db4572a128ae0b965f29f83206dfa272ec6e5ad6316b0b0135d7424fdf6ea96c8ed602b4c6908b9ef7185c7821a658982398ea7a003de3c9714cbbb129fe59 SHA512 4219129a65d604e11cb1ef6ba38926311e7f32fb5bfebfc723236277fe0b779c5f1ddfca27db43f40d059291e2a4f9ff2552de6332002cb11b965136a946340e
DIST quadrapassel-3.38.1.tar.xz 332316 BLAKE2B 5d1a1cb2c53653739e06818dd0ac1570b3a8f66ac4172ecec2e62e0afaa4054c604448c847600301dfd843d7d30c299691ca70b8568cf17921505ac16a5ba510 SHA512 4514b2ba0e53b5c9b6ce32fed850cdeac4d2fe9f848f87af61d51da18a94ff54da8c7126bd4df837452ba967dccf4dcd61c41c59402f1f0b76e2e19253bde8eb
DIST quadrapassel-40.1.tar.xz 336740 BLAKE2B 71dfcbdaba846e8e199dce027034d2e3be7afc5ca3ffb67c508cbddc5bbdc15d4b93c95b5ff2a728e8e7da4e2034fd9eea76f6a160c0a62b9787ee8d0d34db23 SHA512 82817bde8a7ad9f782ad6a72825b5fccf21a7e5089a3a6c291239e55e268303f30d2bcfd85df0049c15c545a0f91a79eaed71b94a56371cb41dbf6089d8b22b3

@ -0,0 +1,49 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit gnome.org gnome2-utils meson vala xdg
DESCRIPTION="Fit falling blocks together"
HOMEPAGE="https://wiki.gnome.org/Apps/Quadrapassel https://gitlab.gnome.org/GNOME/quadrapassel"
LICENSE="GPL-2+ CC-BY-SA-3.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
RDEPEND="
>=media-libs/clutter-1:1.0
>=media-libs/clutter-gtk-0.91.6:1.0
media-libs/cogl:1.0=
>=media-libs/gsound-1.0.2
>=x11-libs/gtk+-3.12.0:3
>=dev-libs/libmanette-0.2.0
x11-libs/pango
>=gnome-base/librsvg-2.32.0:2
"
DEPEND="${RDEPEND}"
BDEPEND="
dev-libs/appstream-glib
dev-util/itstool
>=sys-devel/gettext-0.19.8
virtual/pkgconfig
$(vala_depend)
media-libs/gsound[vala]
dev-libs/libmanette[vala]
gnome-base/librsvg:2[vala]
"
src_prepare() {
xdg_src_prepare
vala_src_prepare
}
pkg_postinst() {
xdg_pkg_postinst
gnome2_schemas_update
}
pkg_postrm() {
xdg_pkg_postrm
gnome2_schemas_update
}

Binary file not shown.

@ -1 +1,2 @@
DIST network-manager-applet-1.20.0.tar.xz 1953772 BLAKE2B 1fb480887e61d7ef3a76ac5ded7ffe6723e99b2ae53d2a53990d3c2617eac45bc99b00b10b43929e8696488abc1b0be2194e800b931732f229d7d4bd17e1951e SHA512 3b7ffd61e4f810fedee5aaf64725fcc2a8ee3c6b776f2d0b93f337c207516392b4720acea35c56c80755842c600edb971a67813c1583c112a91496d3d8db2c67
DIST network-manager-applet-1.22.0.tar.xz 1901680 BLAKE2B e1597d5ee332000082e2939745af10f5f5d5e9177b388f67fdb9822636226502a4c96f4f97187f01ae8de5bd1b4d853670e94dc9058e9b31cf9cadf11fe6a64b SHA512 80c9a8df750f1253a66aea254f30278a934ed4e11fecff03cfa50a31da9efcff5c8892caef672a4d62d8c5c473770358c35344b49a9f3d7956ad76063b794cac

@ -0,0 +1,52 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
GNOME_ORG_MODULE="network-manager-applet"
inherit gnome.org meson xdg
DESCRIPTION="NetworkManager connection editor and applet"
HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager"
LICENSE="GPL-2+"
SLOT="0"
IUSE="appindicator modemmanager selinux teamd"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
RDEPEND="
>=dev-libs/glib-2.38:2
>=app-crypt/libsecret-0.18
>=net-libs/libnma-1.8.27
>=x11-libs/gtk+-3.10:3
>=dev-libs/libgudev-147:=
>=x11-libs/libnotify-0.7.0
>=net-misc/networkmanager-1.16:=[modemmanager?,teamd?]
appindicator? (
dev-libs/libappindicator:3
>=dev-libs/libdbusmenu-16.04.0
)
modemmanager? ( net-misc/modemmanager )
selinux? ( sys-libs/libselinux )
teamd? ( >=dev-libs/jansson-2.7 )
virtual/freedesktop-icon-theme
"
DEPEND="${RDEPEND}"
BDEPEND="
dev-libs/libxml2
>=sys-devel/gettext-0.19.8
virtual/pkgconfig
"
src_configure() {
local emesonargs=(
-Dappindicator=$(usex appindicator ubuntu no)
$(meson_use modemmanager wwan)
$(meson_use selinux)
$(meson_use teamd team)
-Dmore_asserts=0
-Dld_gc=false
)
meson_src_configure
}

Binary file not shown.

@ -71,7 +71,7 @@ src_unpack() {
src_install() {
webapp_src_preinst
dodoc CHANGELOG INSTALL README.md UPGRADING
dodoc CHANGELOG.md INSTALL README.md UPGRADING
insinto "${MY_HTDOCSDIR}"
doins -r [[:lower:]]* SQL

@ -1,67 +1,3 @@
DIST thunderbird-78.10.0-af.xpi 548355 BLAKE2B 49e5bacdaffb4e1d2c4141061f9f0e095b37c34a4ea33173bb82fb88a8d1fb5ace0d13d56ed267472910abd56e5149f8498dce09c01f2a15ae8eee6920d63023 SHA512 e5e6f8a90e6f1f12dc7d56e868a6cb44e95ebba472c2a31ccfe0c2030d0dde31fdc0a01cacc5fde69030445818c7acde2cf116fe413374bc8ee542b7ba682cf6
DIST thunderbird-78.10.0-ar.xpi 648616 BLAKE2B be0bf69acebd95157b025057f8a0003094cd005d59e9e0b4366200dbd0ea492ea4b36f43110b21f0f53db29c543e29ede8206668a430a7f408ab81645ebf76e9 SHA512 c51e1e9d344336f221a132ec23550b76379fd96135555058d0c19c88d7ecb4b401cb54a795aa2a8b612d326b2d286139bdeaeb237f6726da0f87b6d6b7115ffc
DIST thunderbird-78.10.0-ast.xpi 561264 BLAKE2B 37e65c964d91ba4c8c27fab202c1b5dc7698ea1794e2a1e6ece9b02e3ccc982e2a90e476319c1c8d2f3935135fd66324af27529edab45c35457bf36ec0f10492 SHA512 259d83f86a32b2eb2aa026da28e158ca56ae02c29aaaf907e6fb144a4927ac67ecaf194d428d05c89a9cc471c7d7e45fd261448ff17f5420986622666dc16d36
DIST thunderbird-78.10.0-be.xpi 666668 BLAKE2B f7c1ca9fe79f034321048e816fe253199b02e29833f6535f75bf6c86cdeae18ecba8d5309fe5cf4a0f8b856143919a40f69c38fb8706078b4b0e574ac94af453 SHA512 d36d133063e1b3e9c8e2d6fea125301f07d4c1c43d05c655f8f1826ba189909f73c7eead1cb381bf17a408c4edb353846db3d77e6543318d0b8475acf07250da
DIST thunderbird-78.10.0-bg.xpi 672417 BLAKE2B 5ed4b177271da077342011058c206b3d5a2a0291e72ac6a465433b5c011a22a176a467c575ae6877a36cc8aeab0a48e2271e7d4bd6038e4e59c3544f85d90ee2 SHA512 2899af9cee4360b9084496ed099115680fb4a23353ad00ad5f3cf54fb1bbfd9facccf63d7f35ee61f7c8614526cabd549effabc77212c5efb6f1621a78d64466
DIST thunderbird-78.10.0-br.xpi 604528 BLAKE2B d4d105906b369c75cf6d68a28f3ac95f276d55d395ddd17467208e6bb4f340015d31e12cf714eec107794c43a8884bd4bdd95b101f6492610101cfcfdf3521c3 SHA512 bf0d5ed14b6b7f3f36c668919af0932fd4d526682a7c0874badea67a0720b64da2ed81965834510e0bc27c4d6e25913aa357733b6bae6798a38e7d6ed69025fd
DIST thunderbird-78.10.0-ca.xpi 620451 BLAKE2B 4c249496380312dc7cb6f443193c8866c92f07f0e8e3b2cf3d15c591c0d369cc569bacc9340a60b30ab7c41342053764ae09ad77e29e582a9d1dc23a322a05e0 SHA512 2571253fb57d552e2269b14878d72968328e92822d35bdca434463faa27ff4dff635a232e981a2d00f1a1647b584dd660ed030fe5aff168aecf3ef34cad574e1
DIST thunderbird-78.10.0-cak.xpi 635642 BLAKE2B 0ece33784c48b41ff30728782998a1e2fb30289943583ea0abeb94fc8e112891c19c3c694f4a98d6e4051c88714b27040e4616837ae5f328fd475b68c0f17f46 SHA512 aa288b9c2c98a12437fc9b95663ed406f4f489dc4470e60f8fd6fd167be93a635c75bf095bf476d46bc74803e6f63dcd8e1b8cda819baa1b506e27b3b831f553
DIST thunderbird-78.10.0-cs.xpi 635350 BLAKE2B 38d3534d607dde4aaa7273e0ec76337ce9371fc3c96c36433b8db30b4288a832f69b72d0769bf289ba2dc50f08468e7a43c97c169c758ba1e48c752e4904838b SHA512 fd9479b513ada61820aa0f9ca321ff04ffe5cf309c7068cd8efd143215f90234137aaf0f7a4eb01898c579feae757994c4c340da0a41eb938d95c07632782804
DIST thunderbird-78.10.0-cy.xpi 646245 BLAKE2B 359893128631cf8706b222d309cc96c84a875513232300bf271b3906bebee97fd6708b78e044921a21eb2213070e50f13cb24ccec35db710573d087f0e96aab8 SHA512 631c9c2fdf7fa8710418c8c1bb872a89fb973cea5a939380fac64b4668e2bee2b84d5aaab97bbf37aed5b5da045d666dbc2a11826791fbccea94a20e80e52fc0
DIST thunderbird-78.10.0-da.xpi 620994 BLAKE2B 5924cbe29e90a804d8e81fb64938d3de4158224520f8dff205883c47a77b744f70112714310dd45fcf756bc9180d51300248f2c422da08e64225a11520f6c280 SHA512 708204df6ceab6f52dfd047056d76b4181088bf43636fcb7834a90bb5410b00ed9a3949d8691e15b733fc8724d6d62419986f72a813ddd8bce0e188abba59169
DIST thunderbird-78.10.0-de.xpi 665197 BLAKE2B 605e31e1b2ea8378cb2989cbd1854892a7b363a760a871d7b2db69245ea406bef4a71d309797ed4676f9bbbc8213dc3a8baa003e9858f6dcc57a5ec4fff2c5b5 SHA512 250448121f80c6719a1449e00c4e91a7754767853502f11f0aa38ae3014ab90aa6e0d2fb4d4150e29da5a0ca5488e1a7992f83f6820dde18cffc3936d9c2464e
DIST thunderbird-78.10.0-dsb.xpi 666774 BLAKE2B a5ee761b6ce33fbe58a426a5be0161dff6da80581e93e6759ff273fbf4778e2c53680a63df3fe31e20c5847f85148ba5979e7fe26f57b78d6aa563d221634ae0 SHA512 85c795b898b4a89e516b9a0055b6edf2802be090be9df5cd0899121cf561acdcbe7af11f2769c2e99eb1149cff02e517edc3b157a8f356fb66bb36221ac6db1e
DIST thunderbird-78.10.0-el.xpi 774452 BLAKE2B ca4270c9d847e2c7397c2c490ee508f16c449e53099df5bf336f477130e438bc96f9a21c15d478472536f23add9ae4a2cd15142b588b4e2c4619ed1399b35651 SHA512 578c9b5c92f392b5349d0114872f33a63f25ddc24e08a1ebdbe0fe384a4d08af6836c5b4566f7d803e1367ed112fc4c6f0d086096f4f331acf673d0860990ef6
DIST thunderbird-78.10.0-en-CA.xpi 611775 BLAKE2B a3671be630bb88726ff3177fa928c9729208b17419eb66819c55ed8a2a7f0ba2d0c04607991d38955a81b0ea77dcb0d9469e03191476222a3c4504fc400f06fa SHA512 cbeeeb6fc0ffee8f6abd819989029387affb22b6d3506ff1ce97f4b4b7228876fbc21f1ae83a59e79b5fb7ec9bdeaab541924b5bdb35402c9c2de1b7bb4416ce
DIST thunderbird-78.10.0-en-GB.xpi 611190 BLAKE2B 2db932b5264a228c3201a05b47ebbc6d61006d15e15d72f114d4a255860b9d26bb11e7fba23c660c82821f474f3237785102a9b908ca254526ce0f1cd41be30a SHA512 fc55f90eb4ed1b347dee710b23189714d1333cff57b41770f9b35d485813b7e10d0110085d407f16611c2428225bbe927a3fc865fecb69a15ca65e208fdc1c70
DIST thunderbird-78.10.0-es-AR.xpi 657789 BLAKE2B 559c27fee94a724d5033233dfabe09f7093836405a70072ebe5b01d460a409b7f0a0fc9ca0c563705ebe6c5d422d5f7d61150fadc7423d8aa5437f03ae1610cb SHA512 8621c5f47271158fc80944cc0162f1103f0d4ddc9cfc222f4bd6f00b85126677dd7f10c45630ada994932b326f734ab3822d204b43e59e4ec5c3f4f178adbf14
DIST thunderbird-78.10.0-es-ES.xpi 569802 BLAKE2B 42094bd9364dc36895536abc6412bca7d191d472e3068632760b9ae83c2cb81ea15023e6a72b257520f5644f63540142984a56e9f158b281cb7dd1d553944afd SHA512 5d790a9a6171b47fb9a103451e66e7a64fa3b7bdaafcfc9289eea81724fe00f48576476b21ec9f0e77bd4077d868a5e865e69320fac609d91f78904607738630
DIST thunderbird-78.10.0-et.xpi 597734 BLAKE2B 80e1095d758347076857b7dfffc35c2a28802aa7f64962d4b7d15a4142048c2a1f32840667c32d2f3592cc47598d979878760744d3522a64780f4ae62470c73e SHA512 155c7166ac22a1a278f35dba8cd63feb57fb5361df8950d1df6f208eb0bf50215ccde5141308e4989412836733e5c37db224a30e01b2f9d2fab52d286b35b268
DIST thunderbird-78.10.0-eu.xpi 632968 BLAKE2B 9b191d56c110a63d81cd86569f6523521ce00c0869d1528ef51db24bb1cd4165881ae876dd684e24bd0a6e51f68c4a7df3508d33d917348e572496c443108636 SHA512 0455c75a62a08fda3face543f1291844af61e931912c74235f5b14109fae30ff7d67aa6e7d36087304ad0c4f27a9d741c32a94ffcd54a89a28a365896316a218
DIST thunderbird-78.10.0-fa.xpi 639751 BLAKE2B 2c40090e975f096e890217376775b02be8dc4a84d3cb8a1651444ad39fc3d85fd7995d64540ab609f7dd4c4681424c3bd5db7b6700f54a5837715612b3521c41 SHA512 cdfef4c144138f2b01b2bcd9b2cfa1ff7b60cabd904c5858777bb40047db9e81dddec06a8a8fa6823de72b914fe275144a40fe419b2ab28c4639682bafb05cec
DIST thunderbird-78.10.0-fi.xpi 642445 BLAKE2B 55d42ea558d0115379df256e0185950cbc8e800691261a4a0d2434f201268c07c10d0b310960abc421609f2aef0e39981a79b4f6830875ed81b9eb3064eef926 SHA512 8c1d047be3876f58f877b4da7fc4a0309019b7d1cdc591e2207c08a811569da5928c1b9ad365971b16c51e44e46acb82357f9a5a4e5e14e6dd31c01a37ace1e9
DIST thunderbird-78.10.0-fr.xpi 669495 BLAKE2B 2e0bce335524619f0460be5264a60600578bc6906f41395a4391df7e1c81e3ce4c873ccd4b4fff9cf29a56126149fc1f1dfcb4a93c533ccdc70bd3e361589fe4 SHA512 6b7b7c184a0def75e4c1f81f1fe6c7ef0637facbdb2f68c5541b4d3b95b548fe4d613cf7e804df268cdc68a9443304ac19fc26867dc59ac9bffdae6f81786dfa
DIST thunderbird-78.10.0-fy-NL.xpi 653074 BLAKE2B 2dde3aed88c13209248637de4a9a6acb78d6f709b0a98676fe3adf1c38ae5f74b532971bc58059ed94c0658e16f4a345bafb65c1742f2404312274e39bcf94af SHA512 f02d9d28185683bf3d1e27f952f661d19b9b65de932d1e77e9cf50203964f859e4de650027d170912d730203dfdbd9658ecd0060a8b776c9bf2feea412f652d5
DIST thunderbird-78.10.0-ga-IE.xpi 600705 BLAKE2B 3649fadf80acb54cc2f73518c14805dd1c46445698b0c3792f2721f1a8c22755332c5dfa7f74045016b181f2ae213531de9fe0fed6903dc2d8f9a9e9c90acb0e SHA512 13fa52ff3a3a619ae5e1e44581b25c291610b74196c3e580fb154ad21a5778611d5a78dcda78e04f0de834d4edcdd964b5ef49182723e32a8706ec01ecb62acd
DIST thunderbird-78.10.0-gd.xpi 609376 BLAKE2B 38f940000acc16f2e7de4c1a314ebe12366c7540d4efb6b3c982b30ee37575180577bed759ff0bef1cbb9e66b6546deaea51af7c672d1aac4deadd7873b6b9a5 SHA512 fc830e3eb327cabec0ea4ed71bc51db465f073f2c7d7832f3c1176c066b37f6d1ab82fd1a342bc2d884b774c5896812e25e0184951ed3bbf68880136aeee969e
DIST thunderbird-78.10.0-gl.xpi 615727 BLAKE2B b25534ae4c9997deb7950e04f90e9ced3a9a49c1d53a430a1237e2caa17b0cccc1e5d9b1956654f977ef482a3ccd96b8e23938933897e94a9dd60e0f2b7d73f6 SHA512 b0303def5df18fe698f89b9a1e94c9e6e4265ac957cbcb8bc6ebadfcedd6a871a6516d7095d8b1ddf4e0f1f0b1cd672407a7e6a45aa13a4fce5f99030c1e21bb
DIST thunderbird-78.10.0-he.xpi 640500 BLAKE2B ef0a9d20ba6636642eaa4fb6b09c2433191f0594694a79404071e849dc918ad5c4d25dfbda70926c0627222b5bf6af573bfc091156ef2c5ac5c20917556f01af SHA512 4718d0e322d3eacb9871c8a5e12bd8a0dfd3183895b205fdf0bde9a4203baa59d1b0715a48b5441966a400df2c7e5020403d4c65d925df403c01689a32d14262
DIST thunderbird-78.10.0-hr.xpi 629036 BLAKE2B 8e870ece7ee27cad2d35367718b1bf84fad9a6b8bb4c53f4c35fcb98cf5f63042953271e718c9e0887fff100a849dc1523e3610992f9a51ab63503b8501efb08 SHA512 28eb102f038d0a4ffe52c9d658282156f9b0bca185cff5d5ac43224f739e4e898f22e2d5ad5ed3288eb6534e0834bc71b03f4a23a30aa21d33599a66f75855c7
DIST thunderbird-78.10.0-hsb.xpi 668607 BLAKE2B 957d37421c7ac264f6eece936adb0252a9108678212182cda54748cc6fc5d570cff9d419d170a78f7bdd82098cf7eae0845580db78f1b44b60697d8316f7dd72 SHA512 6a31824bad43c17c2f8b543f59bc095475c8ab8d3999d2324fbb74a4b1300530d79968827cd2a5733fc8f085f9b4cf2d8a3ff6a16ecbaca7c2b654b9aa7940c3
DIST thunderbird-78.10.0-hu.xpi 679834 BLAKE2B 5350e84d919d10cec08d349cd1f964cc4419e7ff0125325a86cbf2838cb60c6c86a0845b572559a7b8c36cab823aafaa56036542314be4b3491bac4bcd341756 SHA512 5c8b553c4b10f0626e5e7f6be2aa2ed0baf32f1d1f607c5f97db6f86c539786d1b9d9fab7d7d821092f86b1460cea598f4f234a98e0324c56c02311d252f46b2
DIST thunderbird-78.10.0-hy-AM.xpi 713325 BLAKE2B e37f16a953fc80e6035861d5f8f25b097c7bdecb3341124f47a84995c57591f8cf131e8d878e49d8690bf116ab96d8a29d4b0fe30ab136f7847ee16cc9ca0095 SHA512 365ce4fb3ca26fc27303a9210da3a5fefa334282b12400d5752ac026c4104c33c39c95edb7c0ffa77c230c625edc183313f9bc8e24b2868c47b66eab97391265
DIST thunderbird-78.10.0-id.xpi 620671 BLAKE2B 48aaf300f4fbf08d95fd06194b4b032cf6ef39f71d31e77b2954c6e00689851f295db60195905f01a9c6a9bdfcab4cc79c7b889f4b23ae081846fcc12f7e4a1c SHA512 3b267a8eb4d651f0f1f04aa79504116fabdeee1be79394830b8f209c88f1e6bb74038b0c91002f616cfea8dae8d5a6ab5390033c50826f81e608e5946d46ff7c
DIST thunderbird-78.10.0-is.xpi 581647 BLAKE2B 864ac0eeba224c77c8984bb95b0ca9b231d9e1447c8d19b6ee672d45804c1d1f7d52c6e89283bf9fc86136bd23584f4764998145b9192bd546ff207f4178087f SHA512 4d3485d91cd713f6424149029075168d31fa2f47fe008734a61337e998d2aa956bcf2c459a378a21fee2aede3845de78302c1b47696cdfebc7ab2910e9f28c31
DIST thunderbird-78.10.0-it.xpi 572957 BLAKE2B 3052e9f0736e921b93897e140c86713a5c276dfe439f561516ba77ad02c937d2f2303cda931e9609faa89410c2d7d121e7f995b5d2c3ce2785923333aee79280 SHA512 1d7f8fcdd45407ab4a577a2bb75c857bc4fcca1d2a58db527f6ab224fcecac9c771100a5c6e9dfb6787bcddca37b8eb56fe4918c0e80eac05cb776a4b0d62447
DIST thunderbird-78.10.0-ja.xpi 722450 BLAKE2B 49a7af6210aac40419beca691b7da2560ef6df705cc32ef18ca223671824478cf4a6dc447344b07d97e82e29116fd966a1d5f62641f95f04d1cf5c2e21608851 SHA512 e5b3e88d5d5ef590ddcde3d21fa54ff6c865c4ff9451246552693c8a37f1af94bd6a52a8db218556d9cf41722aa76abe8cb888814aa547c2957ac6d9a35b5cbf
DIST thunderbird-78.10.0-ka.xpi 717013 BLAKE2B ed1163207034e5112de50b7cb627987bcf846a227612842780be07bb2af23391cb05174811dcea818036e186a2217621bfcb7b6dce9dda916138a3ca3663700a SHA512 f6af6ee31c66bbe07384cd7886455d35549e71d4777e108e3658fa043b87090ef7d92abdd80f31dd6a62b1da7b8d67fb3dedafb11d4e14147c397eb46f883f72
DIST thunderbird-78.10.0-kab.xpi 651911 BLAKE2B b29312d3f43923197cf32f5ae6244d9c2b55691435123210910e26697001ceb5b9e0ab94288c000f7f871df3458890de88a0263e568d32bc9785fa8ed21ef0f5 SHA512 35bfadbb172402b7915388b38034a3e4a42272298b55c0f46bf8e801392579ca204618786f2f3eb962cf1574d16b4e47619a545ffa9d0c5e210be3a147b164e2
DIST thunderbird-78.10.0-kk.xpi 720472 BLAKE2B dbebe14d2a95382937b5969b0eae0a1ec071ab3001e948a1aea01eaa9349a91bca12253c2402a44ab4842e80891f3329456d9bff7d890cf07e5af24c0bda6f58 SHA512 aa1d797daf4a13e913da2ac9af6ec077dbd84cda015172e4e334fc876772df6d6c26c0a095602d478b48385659496206fbcc34972b25b8b1ea86cc30dda3da8c
DIST thunderbird-78.10.0-ko.xpi 688210 BLAKE2B 89864568aa9dcc3ca10145892f10ba170f9a90ac0afa4990ed849213c26b4c227ec46f60d64d836eaa3e7d70f925d8eabe280f4ddfe1457377aa997e4c9580a3 SHA512 263e23d0b98fae98439e73720a21980e4b6c37b3b5819ff8db19a2a601f3ebebd5cdc8633b73a7b1f1599910985f25bf790c1ab4b24122f34fd1b557c9d6dc88
DIST thunderbird-78.10.0-lt.xpi 660302 BLAKE2B 8f7f6495156d20f2d6173cf5e735fce55affd9944a6aeedc79cb4614d2b28443431c86c1a5952ee180dffe125b4f6d906b81858621131fd6d29c68a02a9a228e SHA512 6bf626f584ab755a31ed9cb35fb3e57181b0f0c3f2fae710e611dd9444354622e95a10c408331dada36ffa5373b85d6c131fb955332cb2522fc50c514cbd15db
DIST thunderbird-78.10.0-ms.xpi 572172 BLAKE2B 044b5edc135dc9a93fd1e62b5eeeb82ecc0a7b3d7e5944755f5a9daf0f2e73cfa3f5581d1ad5082686fabd3474b3608f13b6bc82a4a6e0ea1dece8040d130485 SHA512 772c6db0d4adfe614a6eac255a757f430c1b480b88629337bb092dbb6b78cb326ecc354ec50290c84ff1138a515fa8fbb801fb77dbd200b4bc218523b021205c
DIST thunderbird-78.10.0-nb-NO.xpi 637236 BLAKE2B ae8d2d9096455f66aba852295d28b92ad231d7e5440b2fd336721612705c930a823a9823c0b3c3d5aca927e394de73076d7b4ac5b5a2d12ab18e30ba22e9e030 SHA512 53ae14cb551c4d6d238f0a38d3cd6dee8505ec57ea0b3ec847495c69c76052788042ab28c34a2bea9c293df1972277ffb625f4860ada695f381de213dd96405c
DIST thunderbird-78.10.0-nl.xpi 644354 BLAKE2B f4b3b4d8d7ae2a49cca4a7bee26c37e6c7309aa07ae4127b1848e840958ba0548b45ae937fe3a437893b19bf0ff9d77b7b9391369e6d96c25310ed7aacb5a0d9 SHA512 b1f39bb5c83eb2fc53aea164277cccee19c1077bda40b02a8cd9e9fd57e03e42f0bb534cc386b36101e868b9f55fee50bc900e82db2aecde6436fa5e6b209194
DIST thunderbird-78.10.0-nn-NO.xpi 640683 BLAKE2B 3b72a3c9b8a24599b34776532fb0f91c656ac8751f2737e47e004244da3dbbf6cb0b737d446e51d70e02ccee3d9b4e460ac0298c7d078142f48f6e8c95fceeda SHA512 967ae35146e6e91c159f902e24d769fa30cc9a8067550e21e263b67f0b041c41683bc45204a92cbb9b32ccd947ab0b42f969354b51e34c4995f819f797faa669
DIST thunderbird-78.10.0-pa-IN.xpi 633215 BLAKE2B c057000c2fdd05f433b1d18d793ebd34e014051b674329a1ad3f31e0beb8a118b6d70a4cea0573423a436e48536a87e14ce5ae481544ffc94b4c6c2ca08db1d1 SHA512 fec657e8ee870fb1a279fe9e732c70456724e46bcf7fcab5b6f9dbc5cdc0d54e1067a240e8d9f9d7346280f04d36fc16c18b33ae798f7a461e3055f4f94cfeb7
DIST thunderbird-78.10.0-pl.xpi 637120 BLAKE2B 036f60e4fdf7b1b30b7a2ee50ea4886e875c7e7cbe49adea21fd539c488bc5553cb0c9bf10eca0f8e64137352757a4c1f6f9ceda26183a37ddf681d769d72398 SHA512 41c74a9c6bbb1000f1328292a9fe74c17c07a407fbd2d5a74e4ce5f3213700a7ecc41e64cc0e809e799fd6aa2a169479c06f135415fa3824029787f2e3597f8b
DIST thunderbird-78.10.0-pt-BR.xpi 649417 BLAKE2B d9af18cf999e4c8a3d469b74e29973e1e21ea0f909754d8c36fcb3a1945a777b9158b2212d866e2410a6287d5571edef71b938917085f4eff9024541e2c9d3db SHA512 275ac5185fced3828d31c8f178bc73ce5c406baff2af5b79b376af30403a33543bc2aa1f741f9fe25a0a6b3f8eaf816b931e544130c0d5a172eae486cbbd9287
DIST thunderbird-78.10.0-pt-PT.xpi 655499 BLAKE2B cc8d84b30d483842beff63d344c613c1f3a716f99ce8b2243e333871890434d8c033bb504d39aee00981f09e30dd1b9e1facdf4b737e1450307aeafffcc03d04 SHA512 45bc9d57694ae500474b02853a272a5a880fb831c0f26537698383370eb942be7a9062eea08e832bb5dd54b0dec20461f99c76a6249fb2fbde9c0af1a7b7170b
DIST thunderbird-78.10.0-rm.xpi 646527 BLAKE2B 01f70b4b3570f24e32707ccbf2ac23ee6dfad2818931177177fe9529404f8ec997e15cb006d9fef28043b521bb2a89b97a3adf9f78297d0f37863ce95f85e106 SHA512 17ddf55f2a1eee7d8ad4e6d755db1922e35250bf0b3b7a2ac6d0f5275ba5b1ca7c65f29a01e5c7360516df40eee1a4ffd58bc312e7d7e59ae98fe1b236f17590
DIST thunderbird-78.10.0-ro.xpi 662633 BLAKE2B ce3fe3349f4b34195d3e46cf9352b54d9656245e7196e74a6bd5bcf5f78f79840b3df418fe17a1faf63c5077e8b7d36bfd9ae6366636e6219c77f51f00cdd701 SHA512 ac12e7581ca8819b4638d02993b46a4091e3bad265d7a43f714939546ba1bf1c825fdf2ec792aceb779cd919a850ffb3859b3141ced7610515006b2735dfeb30
DIST thunderbird-78.10.0-ru.xpi 756193 BLAKE2B 7e6f71c726dcee661926f9bf41edad7914f439318b3323e68ff0db9c941f46f9e433ca3124f6837904ceecb0933d75c6157b876f00e6457f080e85ea0107344f SHA512 187f52982c7047e85988f877325b52533cb905d75e5f050e8db4f0bae3532dec032e3b7ac520679ae893b57a83dc56ea557beade2a22ebe6dcacd48d1b217721
DIST thunderbird-78.10.0-si.xpi 651103 BLAKE2B 08968d40d9682451925601b5554d885732dabd5995d28453d0e5e1257605a59eeccb2ae4d2d9e4da98375619fe5e4076146f3eb854f8928b9edb39a576ade232 SHA512 ace32746050a4f7b1e55cc6c858ec090deedbbd4dfdf8dfa949517057fd88d5eeb3f8498754d7875395006b605adcc4d612d291357caa647ad00f3e4b3052117
DIST thunderbird-78.10.0-sk.xpi 643226 BLAKE2B 848e2ba712c1e5326f57a9b9757158c91fde825fd8fa139b74cc234a402f8611435cd99026753279a5fbe58fd532b975571d60d9330917e064b7cd26ae13caca SHA512 a3ac82eca9b7586f8940b313712482404e0a9d502a85f124cb46b7c32e86362e6ec2236de857d62da5fc88a9f092311237398e039980665f62966dbd5b87f107
DIST thunderbird-78.10.0-sl.xpi 632383 BLAKE2B ed131dce27a221a1cf9dcec8e31281b11a9084fde4cc9451ff7688c2a85d03bc8a0a3538a8442078b3b7b50bc9b50f90b1ca572d8b1a0bd16d14b987b4fbcc10 SHA512 d783f5bfe68a3c4ce6471c57b34b3a4fd6bc20f41951195cd07df46f2e1a93b62bdc9faec338e972eadd453409b4d6aecd049f322d18f850e5d4f44576d3b78c
DIST thunderbird-78.10.0-sq.xpi 657807 BLAKE2B 0f76fcdf748f0a83f077737f1121cde47c548412dddccdcfc1120e79645a21ae71eb497175cf75d1e8b1bc29bcd5af61fbd84a61f4cc2781469f016a208a06ce SHA512 ec11ccb87a4f2c2c6fac7352f10a1d1165c0c6128b218c86f78f9f5d2c3bff7493dd7bd4edd372118e062d18e10843922918297879c61d2a3fb4a262c4c5d239
DIST thunderbird-78.10.0-sr.xpi 683099 BLAKE2B 9e04d2ca8045705bf3b7161fa127d87842ce7169af1959ea0f2c5958772aaeb554d5da032a6bba7a0598b98a095148354e197c29f13f575439af58220bebf31d SHA512 c1d4304d85af76618dcc894c3ddd6c0811f22117c6057a84dfa4d5882a2dcd356748bc55e4bd0005ab76fff3e75da328d8f74713d75ee272ed8682722b84f852
DIST thunderbird-78.10.0-sv-SE.xpi 648861 BLAKE2B 40803b0e80e97634996f36896c3120bc875e0cc8ef0f68cd965c61a309aa289606ec57203dd0cc76538e033515df2747f50414f064036a9a898b1c511d5f08e4 SHA512 8e248a0e92d6e274a5535c5f0a10ebb5de2251c95f6de7a6acffb0aa78fcd7f29ecd62db083380dc51057a20de4abc1e41f74867413e32a63f9cfe6b29aee409
DIST thunderbird-78.10.0-th.xpi 712032 BLAKE2B 98c23a6871a3290f153dfd388400b3ee8b647d3f80defcfadf07e908261dbabe648dad49b2ff97b3632a720788fe64f21be982d90fd60d0c2c576a8491d992fc SHA512 c4a9af4c2999764dfe9c3ffbcf26b0755dc5f77175e43083d98541779fb559e6fb9f71834f2024927bfacf889500eb71fb7ac27d2456fc2f903bb8087d674ede
DIST thunderbird-78.10.0-tr.xpi 649073 BLAKE2B 68d0ae770eb73e2f03b2417f4c869d08beaa2e0a6bcde6bb694f120b04e96dd0bf90092114bc8c53a0c576803e59b43e4adeaadd33e4a815d9d4cdf63a6b1374 SHA512 a53c5ba7f0f11fdd90ba1bc25a823efa02f539981dd3d23e9ac499f94df07771cc66df66e5e86dd41d883d95881062c53f4a33034ce31e003298e2adfd2409c9
DIST thunderbird-78.10.0-uz.xpi 586595 BLAKE2B e94f4a17e15bc1e6309b610965b2c1c92d15d0582b8664e74f3d25d26390f3dc5973d739db5c78f84fdcd19f251c1043c9255936665bb6a5928fe81569120b8e SHA512 0963d315fd5a59fad3e91e50ba9843652ef0bff2ab9d59d66bd818de59bea3013d99b918a53596758969a54f1a587f34881909b3b87afcbcf6a2ce5d9a29b873
DIST thunderbird-78.10.0-vi.xpi 674602 BLAKE2B e87d7cbe0f7bcede042861068b0ee060a21cfbd080540bb7327f63cf1639b14f7aab0d1656fb97fdacfb24ff57666203dee5c0d02ad09a64e2936acf45646aab SHA512 ccc7d1ec0e8d040b7299ea3ffa3f64da838656e7c48c9a39dc7665e2c2cd9c0aced89272a676500a3da2d95779e3753450d992a2083265eead4afd2234a405b2
DIST thunderbird-78.10.0-zh-CN.xpi 687175 BLAKE2B cd16a66fa0f52392085d1ed41b52506d551fb493cb20ec8594f97f9447ffafa48fbe50653c2db21299bf44907418a283047dd74726963b4f36e4311e9f974a7d SHA512 b090dd30644c8c54898f1857c00e3e35f8d9e28705534d60b10039ccb102986353ad38501bd59150f870012194de274f933113b583098acf47389bb16fc99b55
DIST thunderbird-78.10.0-zh-TW.xpi 687615 BLAKE2B f03053699d420ddbafdca131278ef53daaa5dc9c79fbf2f759114aa2aecfa96b2cc484c131c88f7f2e55adff3119181690cca4578aadc692c8d74f41c4199bae SHA512 a4ada20993753092e39a473cca575d32b1d4fbe87547199930486fc3f8ae8fba7727030f91a7e04970a887280aba3508e5e834cdbf89b7040c3b35b148d89093
DIST thunderbird-78.10.1-af.xpi 548349 BLAKE2B 65465d2753f769c924a1c59e38d37ef73068c5b0528f37331316dd08816bc9c2ef2d9ee5419e1ddc8ce67c4322b6aeae8f6a240f4e44188627087b6db467a3b6 SHA512 f61d62d6ff0b5c6b651cd5bc57444bad772295c0b1f7ab66864f913009756442d1247cd75ac8af0fb6b6d82dffbac4db70f927a8469c638078a3b9bd587a4c17
DIST thunderbird-78.10.1-ar.xpi 648607 BLAKE2B f472727e8a3c41a3322275f07a9f2787990528b45157aaa43004a06d1686e557a2a3588ec39638139c84977622afeeca6794caa5e2ab7ddd99d62d03090095c0 SHA512 ebe8b2897a228acd80736edcbbbd6dfe4458ba8bc5728847556148e82f99fc78e63a326f8783a1c7f0ca6823c723cd2199f0f01d7c00783072bea2b926ff9bc0
DIST thunderbird-78.10.1-ast.xpi 561260 BLAKE2B 3c6c52141a9656362229f6284f3620da372eb5d19275d29cf019487cbb261be8756ae692650254c8377e9ab185c2bbe83124c03d1478aa7de4db9178e8ba4b70 SHA512 7c69196f50a6eb8972a52232f1e654d0ae35ccaef5807d99c2f53f5bc685cbc9980d22e597246721529006a98784da071984d74c71a4b86b9869cb5b59e807ca
@ -126,7 +62,71 @@ DIST thunderbird-78.10.1-uz.xpi 586605 BLAKE2B 27159277eb214f35017c654f189cba593
DIST thunderbird-78.10.1-vi.xpi 674610 BLAKE2B f14923a00644e107072179603d06c072cfa3e2726658859548c366fd1ea9878f43a431907a1abfd5ad454fe21fae8bb4d715ed82f0e89795d72a56125995b46f SHA512 ef2c57eeb9c5c823966fffed1986ff09ad0529807035ee183b03754df0c9a6993c63afff9f64ed65bcb995027c5aacd04af212c1e94c81f280ba1785360b4d09
DIST thunderbird-78.10.1-zh-CN.xpi 687177 BLAKE2B 43da21f8faf74f9392ede14bdc8bdc7ba741724cbfae91ab6dcd9e3a8ad41e834355a3069e52acfdbf5bb3685f53e275cc4aeddfb987939ebfb6b1329384cb01 SHA512 2275a1e189d806f98c59a19231ed03683aed60bc08969cbcd9d3650b9b545ba3f2cc143b536a6689bb9b14c930048cda85d038267de3a75d44c3132dc474238b
DIST thunderbird-78.10.1-zh-TW.xpi 687622 BLAKE2B d3ff5da0323d6529a142ca20d29ce06397fb6761282ee6f4b8dc03ea4a79874f9db5856e5980de8cb7b2e68332b3589121768c1abefe9a9e5af29dc1cbafec68 SHA512 b4f85ca2ae438265fa9fdd99910d292937e78687a74cf12cc33e1a693e38cb76820a0e0c45f50de39cd2c4a3b911b5988eddbedb52a15379121590c9383ffac0
DIST thunderbird-bin_i686-78.10.0.tar.bz2 68323686 BLAKE2B 074b7bfaa24a7d4c2defa31ed4d9fd86ef39633780a6357b1a288ecf58688ddc3d70659a1c60456992d83d3e023567e16790d884ee70e8ac5b36346b5166b6db SHA512 761c0baeccc0254cf35a917ea7d9c07af153949597bbe292a252b1eeff8f9ac0db51de0d1ccf8e9bbd7366abca74744ab8875b223ab2cccee93fda45d39c9e32
DIST thunderbird-78.10.2-af.xpi 548348 BLAKE2B 44d4c00a3672a82a1d7ec37394b6952824d940163a63213b8efa17488d97277de285f053ecca2925baef5ebb296647914028fbf37c884cf8d2527219e762d7e5 SHA512 04be6901b422e6a0a93d4b2a8c930f3ac8c78d4ce4fdff0dcfb904184080e5f1b0a10b05c44358069dfd9372fdabfeaa4b7a8b92fc16867fbe43569264996a08
DIST thunderbird-78.10.2-ar.xpi 648605 BLAKE2B 5f78480a6bca437d650f8567e8fc53dcf1ed61b6fc303f245d6634917caba60a85aa95636029891230d898e49076601be9c5265c9f00f2fb3ee88793e9159a81 SHA512 85d4711c30a7956199d34b5bb5b20a1876758bb12dd0ab09a636d5cdee8c3038f5f7a1940327218aca635e8789a36cd4d8318878999bee7bf49e87e88e7af829
DIST thunderbird-78.10.2-ast.xpi 561260 BLAKE2B 5c5883a0f42ef3b5ba1d42e70ec5d526eb93254d797c60ef757eed42285c9f9105a644088137cf59847da9fd20b7fdbdfc65c12c5c31118b8b004ba45c00bd28 SHA512 b3650198079ef290e82e51b9eb659c6675927378b14903de31d746ba6f5144bc8b1bc59b4909226118b4d5b88eb16ee7aee686cb15e6a28ae34e3a5bcc6d6441
DIST thunderbird-78.10.2-be.xpi 666673 BLAKE2B ba9662d249e523f77b03be2b4e1f2610dfc28d9f037fe4956ad94ab3051f191218f8b660aba21dcb52c214785debc61cbcd5ffa4805c4b2c6697c80941051f1d SHA512 b3cbe2dbf3b7dbee3033c016a5cac70d54633c568f2582005c08d9d8c600c6a4a63913f7c3bb33a504d3ed1cb573cfe922ab689af98b9bec1d945e1f034eb15e
DIST thunderbird-78.10.2-bg.xpi 672412 BLAKE2B 4bcbf02e1dca21fc173da5cc7a5cfb748e6044433822efd9a2b908031155adad15606c60e40a9f75f15cba78ab9fe8571fd881b6479e2aef8498136a6b60e21b SHA512 6b4ab327f53e80f824b4b59091dc08e10f34919e8acbd2c89b0721a213ae500d4a355fff546e83eb3a610063a1d9789d087e04a9cec611f77a1dee4945575998
DIST thunderbird-78.10.2-br.xpi 604525 BLAKE2B 3640c79dcd9c78f8afbb63153d93371ae5b50021494dc8cb5aa7e0191ce426e235d02406271a1f909fab7ad1229b7af77aedf2f8deb1fab0461b45bfb2825cec SHA512 d1f7be100422deee4bb678913e96e09c94dd198d08ce24eb1cef64aad85313aa539e21180ce25e0d6de7ba498389fc270c502005c2a5cc0468501aab45b392e6
DIST thunderbird-78.10.2-ca.xpi 620452 BLAKE2B 2d61b461c81ea6e240fd551d0069b2aa87b30bbd06560b3917ee408b7f26a017938fe500050ddec3a63d371f178f418ce68ee7f73627683dbde33ac79d0b1f99 SHA512 c6bc69941c2f733dd92ad350a258520117407b6ee5877a236107974b3beb5349f29bc9f53071795fcfbed5c8abac104c08e0ef1c3848eb05ec6c67b857dd03c9
DIST thunderbird-78.10.2-cak.xpi 635643 BLAKE2B d9263dc1c5d91bf2c69b3b6bcfdd640b8b566f82c68911e501aa4546935b729122a052d36a9531fa56e838500ad08a87761beb6e0a9150854e7231c4edf1f22b SHA512 ce771df6180ebc95e53e38dff77da0a55ca5c56085cb172e7cd4400e01915429230b675ce3ae1c15d59664476b1de1800cc59a8d4383f10dd6171868bb45a05a
DIST thunderbird-78.10.2-cs.xpi 635349 BLAKE2B db347a943a0fda46a60851e3c2731514a3695ce7a44c09c71faf6f37f1282ffdcebb752462f7419189b9ccbda0f01e0b58a38c1eeb79e7e5210dad14cf81d935 SHA512 50eea5f566706ed0cef0ec8fa0cb292e7b0643aab21393516e31cc2a61dbdbf45e81c59dd8c06657cd93c0d68db10301633bd73c3a76b2760600a06d1386a0ef
DIST thunderbird-78.10.2-cy.xpi 646244 BLAKE2B 4201ee82f7f512bd4b58e652948e0320c716e01169de66b1940e365d599eed25ada27eacfc4056392998266d640f37696e890236854ba0d8a3e3ebee965b43d0 SHA512 0086a25f0970f21b57109539ffbc8ef7dc6966c3f3e06a66e45986c8f209718bcc36a4250e84a97427f71d82c68949c25c7348fcf0ea6a7bcddfb6d12892e33d
DIST thunderbird-78.10.2-da.xpi 620986 BLAKE2B 17c608c1b857fbd8b7c91419ee7ab82f48a55211d4d6085dcb6614f49a9dca4c21077a5ca3da075b3dc8afbf4d375141e53e94150fb0e2b02adc5dde21381ac5 SHA512 890604e4470ca600e7ba2e80d0a4ff78deffd422207a9fd2ce23dd84f6ff2dcb36e351c21ccfa2d1e188229c8b4da9902f8e045cd518ff202aed1023d4fcbf89
DIST thunderbird-78.10.2-de.xpi 665195 BLAKE2B b1460496d067743ba77205d34ee7b1cfdfe486255385c9df466a64fb49f846b5241e9e3e5b556b93b5102086bf96a06b3fbc8784a7c06b8188c027b32093474c SHA512 5170ac63d6295f84e5cc506af09e4af87dd91a7438a916342ab5d485ba028aef2704b49d1736d55fdc1148c371d72ff0adc97918914e79627ae73f25b7df7c8b
DIST thunderbird-78.10.2-dsb.xpi 666782 BLAKE2B 956dcf9929335166e9854c92e03e5e00c067d8c64e9353933c5acf1ef24a45f3d2800c81339ff13fc959ab8fdc7aac3955028b65018be5f574be4f8edecd6916 SHA512 348186117e9b05ab20562e89d15bfe2f1a3d190b8316e250bd5464b2fa906bf932297902c7c4088293895c8da8cc6a274477a2e36ec23a855a94fac1f2aac6e1
DIST thunderbird-78.10.2-el.xpi 774450 BLAKE2B 9a460212b4a66f05c4ca9698a3b6f17ba3f2c63546badcd96f7e5550a41a201e80ba631fbc433746326c35a8cc94d2a12cac84e387dbbe90e3f940c64512d2a7 SHA512 e0ed4353fe0e51213a1d8b065215efeb287e57438f3da26530dec04a805f04fc1a1265dbddfda636759f150b895d80ae5b71e118baa09da2ec64398518b997c6
DIST thunderbird-78.10.2-en-CA.xpi 611770 BLAKE2B e1f84a1979244eee2a23016aad9f5fd916d3e8cdb09e60c66c1641470a8246a0842ec99d0fdfa03c1cb0eed966a0872d59429cccf926c81607d3162decdf92ef SHA512 556d31167e89c7382a7d32ea4bb96aa280633641442d9c086cda060dc65dd7a49a19d771822beaa535650b17494f7a9b598fa8ee87b091691bec162f65236789
DIST thunderbird-78.10.2-en-GB.xpi 611185 BLAKE2B c7721ba0647aa11f89eb1306ee08a8f07d0d49ca21bb15637522a753bc649b6d00d770a7ee1ffcd12cb25f128925c257f9d9725374b5d274830b098a88d10446 SHA512 f715cda23baadd9e3a2e06dd4b082a12832c07fc067e63ca3104036a5d5ffbde25d20b1a64473aa1052201a57d05d9bc9bfef7f1a0da6133db7a20f6667d07d9
DIST thunderbird-78.10.2-es-AR.xpi 657792 BLAKE2B 08bc25600a0cccb5bed74f22599d2d19361be2bb05b65658ff0ec9eabe77500e2c42642132afa7509c7045372a18ce4c7f9b0c515821dc19d0a2d5bf8694c6a6 SHA512 62cfd7804e507f284a2f2e9f2bb13186d589d2e1c70408efe99fb9ba61f6a9952adc9d64cd9c27b10e635f81ff67500d2949933633c56db463931ceb87c9da9f
DIST thunderbird-78.10.2-es-ES.xpi 569803 BLAKE2B 63251b76597eef77813d280e1aeefcc7302f1b7b7423864a9d2b7a80dd1f048290c4a2423e3e0865ec3cfd094223ac8027d6a4ba34d7469c59aaf8de3bd79fbb SHA512 85d572e747101b617c3592b39d290097b279054424d44d515b86c067eda0b7c1c0b157865a5f1451d12936e27e2184bb59a6b939395b8c8b7631f057f112a078
DIST thunderbird-78.10.2-et.xpi 597726 BLAKE2B 54e228ac4d4f6a4aa4303218a912c342e289aabf9bcc63eb46dae5bd9f27ef0c652b6b8803558c42d5ab5381d70bb7364a35119703d64dee69c1e7ca011bd5e6 SHA512 b81c7f7118d4c420367fdca070f8a429df466ee01d1e5a9a41d22954ed67aa2099769b5338caca97a862a3a124583a9a63f872606fc97d3c8053d5287a6a1791
DIST thunderbird-78.10.2-eu.xpi 632964 BLAKE2B 4bf02098d86275174c24c8843e921205c9e434c93f46e90662f89f08d8950407eac656545b8f8ccd62e3502524792f3659b49784f14923de631167bf832d288d SHA512 8cd4f4017ca520df5d7e0eea842d71df3b5be2587461aa616c89180c4e343f04437296e32ed2a7013fb5a181359f9c7ffcdcc9dea768967d4ee8001857376a9d
DIST thunderbird-78.10.2-fa.xpi 639752 BLAKE2B 2f093ce8770ed9a19d57f51b870aac4a927f9f6b046f2352853469bfcd4a6788262b39951537ae9f3eb0007bef9c08f30b43fa6f76895f001c1189747841c18f SHA512 1226e1b25e700910760a1a85589d9a73116fb51a359d8f9849a5b17a0f8092a8784e20b849c7d09d6812849224892c68daaa697d636aa40e1afbc3df0a3f0c69
DIST thunderbird-78.10.2-fi.xpi 642442 BLAKE2B d7081d333cc01f72a3b72544e026b40888746a7f17d962ee60ffaf323365b17449ae4368c135ab3fb502740d5d9e72288a21459cc63b4a3db209e1f4e12af358 SHA512 cd4d395d873e6625856c09db05e115505d4c6143f3a577d5c9346ae9154ed5400e7a45e4e7d286fcbb76f7769358fdb8a4c57d713932dffa26e6f473867d4247
DIST thunderbird-78.10.2-fr.xpi 669481 BLAKE2B 22407c8752f2e1d9699bbb61599352272d6fb6d1f4afc1d1b64d45cbf0fe2c717fc12c5017c507ea468f4db2908d0e30df9d46040e55085b813721e5576263a8 SHA512 dbe0ff9059035b64f67325fb9de743b020401c1e93a4b17ca82e1e77cdf9463961bb09a2776091d116b15c2cc7325ea749220853f6dfedf9737ac12dc9591221
DIST thunderbird-78.10.2-fy-NL.xpi 653080 BLAKE2B 4b2a06556bafad0fc81c3f2b136ba68ab30b0424307da7f20c0b979e61c893ec02f8a3b6755461a00f4fbf3c38db66247e883ab6a1ad88aa1968abd8bb180b59 SHA512 168c34a6ee346501544dde7a253ee722a0666c384bae3b9b91ebcedbc84bd6deee855b86b57e6d1b1c853287de04d440797dc66cd1e5bc3416aa5d8b211d598b
DIST thunderbird-78.10.2-ga-IE.xpi 600713 BLAKE2B ee9d5505564521d4269b6955e2f77c13aa7cade2ae9221ec59ad273423cfb1962f9797be9b48a5cc8bf4e8e6ff68f4075bd05ec26087f5bcd7c60a90d7f7a463 SHA512 39eda3c2975c6fc97d976ab4eb9c2c2721b28abcb4baf628b6ff4f7b5f338fe162e12dfd720b48185de9ba7d01afdfcdfd9489e71e2d61849da12da6691bade9
DIST thunderbird-78.10.2-gd.xpi 609384 BLAKE2B 35be1bd035f82a8712a78048aaf12f849e8624bc67aa788a5e27b90d938e3f36d89d6f3219524d30edbbf462e9f5d727c1c9e5083361e5537eec51cc86534692 SHA512 b6d2abf79ee0f44e9146b138edd33f206beca9190d209d04d065f85960967c9938e82312bdcbc976431f9a9987345fc0f891a8dccb9e168564de4d1762c47d51
DIST thunderbird-78.10.2-gl.xpi 615724 BLAKE2B 8c1dc5d50600eff64093976bdad4653c7325f322bcdbfe0bc5aabc6b972f87a81c4fa4f31f1fd8d6f24f7b84746f691bcdca4ff18d23b81619a40f5141578c18 SHA512 5709527a6bb1ec825be1852b5a1ea9544838507e8c7f1825ca21c2d54db217f8d54187fe9326ca05205505fed95d75ab170b60fa744284e8d0ccb96a5de8b6f2
DIST thunderbird-78.10.2-he.xpi 640496 BLAKE2B 850857fa02dc7b08bff873ea80174977cf27e42e7954160d0b1c1d40fbfd8ae7f98eeac437716a8b1213412944a6dd7f2a793fc19a329417e360d6a813719bae SHA512 376d13a92cf8e4109b7e042674757a57839d5415dacc357b3698eda42eed31a761afa210c993a0bdfa43b068b95f407e659b58a5273217a5b11fbabff03f6f45
DIST thunderbird-78.10.2-hr.xpi 629022 BLAKE2B 7248b0140cfc2ce59a3c4bd7fae7d3e4085718395afbbb234cb5aed9df75c677570683ce5b0e239a0cc8903a98eb5ea758d6ac513c2c1332235da9bdc83cf31b SHA512 d41384c8d3ea1a9523e6a9dff4de64bd6a722e597de1a3fdbdee7f6c5efdd5cb200b37bc7c0b2e7e62afc708ac0316598fcb6596c17ba6692b39d82b7e24e058
DIST thunderbird-78.10.2-hsb.xpi 668611 BLAKE2B 5dd7104555af6a764a21ddde7e6d70b40ffdf88d3e998a4baf04c6613b3b6a87cfb96864339c5a6ce0c027e41c0f80f4c19d5340053165c5a5a86662bb3e1c02 SHA512 7d9b17bdf9897fe39dd8648ca6925f38b12a9f849434d8831fe18ce4503ef823f2fae94eff60c608f7fe6a75f5e9f0ebf970af55ad56c8c8c0efd9126143ae10
DIST thunderbird-78.10.2-hu.xpi 679840 BLAKE2B 5dab056090c23f622821c84a20c52b788ad90558486362d02925c2c7afd4385e57dbfb407b7008ab73e7daf138eabd88997ac99a35dc6fbd30914797f04e0a44 SHA512 d0da60afca83d108c00d8719a424d5a2ad548e78b87e104482109b4ec037599366d555ea0cd0d6f2df21420ca48be2f3f46d2411e0161405c0bf6fa239cebe48
DIST thunderbird-78.10.2-hy-AM.xpi 713320 BLAKE2B 531637a8b10a7820cd0d5372464ecdba440f18a976d02a7c78c934909c61fa724bf3c466fea1e3049c3124ab3aba553d2a35d9b58cd60bf5a58f21d2e5b63a07 SHA512 896c2ecfaf7ec41db7cfd72389877a922357e5a81111f26d574e0e5a960139882b904b77b4106ca18fa3e3263c659c0e0aeee889256b1433b9dcb64c95373245
DIST thunderbird-78.10.2-id.xpi 620679 BLAKE2B 0c462a5727cd578b53df07fc5778648455e04b2622bed5b67d6972b9c5df53d3dbd1a1bc0549f701608644a6eaafafe38a447b7e438f779f1aada21a8ae9b0bf SHA512 fbd903a461a937e3db90a245120883f26af6becfad3a2aacceede9fa55e097f2e01087382452e84fe8f2c8508f9fa6e2771e5b2f34966e58a1414c54828cad3f
DIST thunderbird-78.10.2-is.xpi 581641 BLAKE2B cdf3733bc1f8f7103db0d2dee0e6857c8f0e8b6455ce2a36cc0a1d3a0a90eeaf570472ac45669122a390e5d2717df8f93907e9805c7bb087744e200ad87dfead SHA512 4bced7458b72299dd972885d9a14bfa0cb070bc7628cb5c85943f31bc6aa86b0907f451a258e93c019fe960da05254636e2fe09fe9dae8ff37d527426691946f
DIST thunderbird-78.10.2-it.xpi 572953 BLAKE2B 84fba8b170e25887990188e94af1529862074819fe5440761c0881d4dee3a2c3bf2443f8c359ea3dda8721d0bf3360c8cd28aa32468ace843de259ce5bbf8ea7 SHA512 ce05dcf72a6f2c38b514bb69f341defc4992b9e5f0857632ef6ad615ef11cb68809c150799ec9a41fcc7ec0876baae568d27f2ea1a4172b3ba80cb3da545b09b
DIST thunderbird-78.10.2-ja.xpi 722453 BLAKE2B ec5018bbcbc768a3221659af8d168ef11866f52dfc358e112bd8c4156e65119740f9b4206cd2dc61f629479bd69a9fae3c48d390ef77f52a41b71d887fc1f186 SHA512 25d4df5cec1edfd51689bab088b6af563324c775d50e78923210ce67584015210c8a17d3ca6769aad96f76bcd75f3f522d0421df9a17ced8ff20e5de68c7b945
DIST thunderbird-78.10.2-ka.xpi 717012 BLAKE2B 0d59c3a06805f923a950832cf11588441f27e4c00361a2ef72acf89bbf030255f595565b824f20194a5fc021f10d5a85e12a144dabfa1f4d3a947d86363e59e9 SHA512 d3101d6b88ef3826a7aa0211e2b10483d2c36c99be58281435596d4d8e6550de317ee874b15769ae97570afe77d777cda265a22259041686bd6e1d9d576fef28
DIST thunderbird-78.10.2-kab.xpi 651915 BLAKE2B 1dc33ea30fbf1b5ce768edf3628db3223b54eda75b1e3b29355a8915268ca4ef4cb7940846775dfbb35adb3b68671207e0cca8d5f32e6dad7127fb6605bfcc20 SHA512 3532c79866b6e8ff9114a9b6e6548ec7cabc9e95d7dc170433ec6cdf9546b28035c57a55ee7123ae0dc4d75365a2698be4afdfbef5b49696288752549892c8bd
DIST thunderbird-78.10.2-kk.xpi 720474 BLAKE2B 1fa1d19b9915d74bac8bcdf0b4f97814cb7d0534b995858b0fb0342c46d0b125b9c80a70beef806f59e5d358cf7b44bbeba9364ce4f7f262684747b711e98b68 SHA512 ab87fcfb64f201238ce4b3eff5e3bc1409cf9fd3f2f530e89b9a0d275857bb67c3395b395236f27a240c349b7df9ae369a884f0fcbe3288a928ee2aa5eac6326
DIST thunderbird-78.10.2-ko.xpi 688203 BLAKE2B f653e31c60a06a8785ecf6abe15096c73ab0da1895b264ce877320674baf961a56f9af8634d85e26c5306eb4adf893c469fe26ebeefca45a07a3580fbef5e57d SHA512 8d093f074de0731b8fc1b6f871c8c88735300ba1358544d6f048e933b8aec2036a310fb819ca4ea90efe665b4d76c8ff2732fd2effda5a5a1c746fe62f924649
DIST thunderbird-78.10.2-lt.xpi 660299 BLAKE2B 3219cd098e4bdf7b36de9e7c93cc179e90efd81564f6b10018b165ec98a8bad39f07653e246ca847a2f496ddc3e81d5d726e7350f04004e15b50eff9e04241f1 SHA512 5250616c627e1eccfc4ade0fd9261e06c39dc72a1b1fb24e6baa913e73f29f716c8182b722fe4b8e334ac7d33f642e1e288c21e5e3551fb9db01b7d9f61cda4e
DIST thunderbird-78.10.2-ms.xpi 572182 BLAKE2B 246077b9e37beaad2569fbb2b8ced527f8ef8475ca8566764c1eed6de2f25062f6ca80c68681c919ed856e23e02e31816859490ee39ba9ee67531ef46aa84e66 SHA512 e10122543d7d1f5eae0c102243a7ca47072663f3f18db0a7023a153d669432b2bcfdced994f6d1b2c9a30f876ad0eb895dd505d143039c1c00259a99be5baf5a
DIST thunderbird-78.10.2-nb-NO.xpi 637239 BLAKE2B 1561f8021d620dc798ee549c9ddefe1868a04e198606a3fcd4c0f77edd765f4294e25b86301778bda9b68b7058797771976d2c2966df342c84895d5633ee5b9c SHA512 0f71998f5ae3ea04dd5fdd1991d47d39eb64b60ae577790d94c8297770a88360e0ce6559efa6e49c819d23fb29fae9c6aa1bd45891c8c88e8d7a6294e397268a
DIST thunderbird-78.10.2-nl.xpi 644359 BLAKE2B 672fd8b9f9201beb6ec8fcf74df1c742ca0ff286cada51f9a0283a8b9cddce7edec6085666651ed2dafe346aa9888dedd7851a236318a4723cc9dae2afdc9325 SHA512 aed8aac63a8ca07aa138b6502f73993547772c7cb0932af13e2a73a97c2b233d930a15d387faff17c7970fa5e5bb2c6ee31b7f37fc7ff2d187e1c364d9217944
DIST thunderbird-78.10.2-nn-NO.xpi 640689 BLAKE2B 76552d4e06706e5cd8dc1ddce07f751ff3a9bd09419abd9b44d6529d1b043edf58bba643ab172ec8d435a2cb738f8da5fbcb0a49dd5a2c85841c10c31b961a9c SHA512 7425aeafb5f10949484443d9074d09b78665086c3e666754ea0e4f2bc8b9917529d84cf6b8860d3470613648bac2298b43b20422c8833c3c8a13b02d35abce33
DIST thunderbird-78.10.2-pa-IN.xpi 633216 BLAKE2B dc9357e642df02dd46419f9f7b328499f5b324305484728c1d8b5cca0b3c0c2743d2d966cfeab1aaeb82109f7accf914f1ce29329bdeb6eef6722dc78938a67c SHA512 c1fa268c497d5a43e8ff01345bc1c558177e4dcba9cd8d5ed82d4b200c2644b46ad183b1231bc540c2b13f4598d51ae020d2372798a7b6607451d172fb14990f
DIST thunderbird-78.10.2-pl.xpi 637124 BLAKE2B 608d4074839e7e9b8f93f240c3d6796efeb83af4bf593e90a573a65ea981b14182c46858d71e35040b16db4f720f756f7c02683f607aebb19c356da46456316a SHA512 a3ddb51596eab1025d0f4512975ffbdf641c6e4ea6935cccf4334248140f46a6082d525852936911602060ae7dc38f70d1f9f4289c16951d9afea05570583b02
DIST thunderbird-78.10.2-pt-BR.xpi 649421 BLAKE2B dfafe541f4023a1af4b0cc72fc3a9dcbb724f82ff7ad7af41bf8c21a26b91bfdd24ab671901ee091d0950810ab30d2d5bef84dffd0f5dbae1974f0048e240f70 SHA512 64ffd00023ca35a6d7e4ff946144a3a4f9bc2356622700effd971b2b13a96c2f3176925cff7d69e1e407eeb85256a6c2be6fab0b84c8ae827afb16a58abfb4d1
DIST thunderbird-78.10.2-pt-PT.xpi 655499 BLAKE2B fab4eeba41e55937cd2a045bae8afb6b8101b42c76fbdb41b70c62b9b439c837be9a30b37b17ec83948cbb9fcf7d4ee27e93b95993cf60de867445ac364c8e13 SHA512 04a4d949f24d37af1f3e9b201df766e9fdb2d6ea0100acc425bb0d3db3f8ed900d8a088148c3b2bc2b5e04c610c9a440479281bed0bff29adef20a1e7d95d188
DIST thunderbird-78.10.2-rm.xpi 646532 BLAKE2B 808fcf97c758c0934958ad7cd168e677c8b609e4f627edb260ea1478a7be1053167b00bca11e0983b240fccb11f62ebafddd14067c5dc4283e22e0f921901abc SHA512 1a9c1403360e1a18428d3e3b6820e59db99658dfcf761500e0333e13e03ff32dbc7c4762491f28cc4a2c7f42ce1cd06c723535d3ffea072082ffbb56bf27421d
DIST thunderbird-78.10.2-ro.xpi 662634 BLAKE2B c297c8e818fef288b97900b225d427494b2d44d13d92d3e2d28f843371d4fe74431abd4e6bd9a252bed6573c568991a4235b65cbc871a2cff1c0aa5272ee256d SHA512 6afa9f76dc17ca2b93685c7f3510df8b193848b020ce5d088b4fc2840764849af7b4fdabd449387b4fc19be102a37c111583615773ddf1e2eff95d1fdf420c18
DIST thunderbird-78.10.2-ru.xpi 756186 BLAKE2B ff533244e071f126903add92f273c8d4038e3ef29f795cab52fc4cac86954fc0e2a54191cd8e3206577e1fe324857e03a3779993e79408a1bf2cd4446253b13d SHA512 3cd4bae123bc07b49b373a58dd4cd9a44d47b48b559ee627ae52ca5f460dce5356d466330a71bac07cd4ec008d1d4d718fcfdd42e60f036432f074eebe5f8aa7
DIST thunderbird-78.10.2-si.xpi 651096 BLAKE2B 0fe13805cea9499bb262a025e283ec0ba0b5c1b408b1c69f1f9e07901f2f3ed0710a2266be123a63f40e4e2c0246f3cab034b2b8a0dae868ec83589d5a162901 SHA512 cf583b85b5741d71db53aa475b24c0adc84a959a3cf8ccee833398f36dac9fad871544c895b8a03ad6dadda86f04530e80abfc9d601b38012efe990a720e2635
DIST thunderbird-78.10.2-sk.xpi 643218 BLAKE2B 1cfa020bc3f1dd30880c2f84993fdbd278e964aa2d3a73423f9859c7020a31d6911f33aaf466211dadfa880f8c75095e7872977deead533fe4f676a1fce1f79d SHA512 ca5c7c1458879842c7da2bacee472cab200450bd4dd5c4fee92652cea4e55921c62aec89da25db9ce3d509e822c1612c13b662a21dd8643c5b32ac7eef20fdb7
DIST thunderbird-78.10.2-sl.xpi 632383 BLAKE2B 9704d78764b0a32b538d4d93fd552607e4f6ca1d44de9ca1065c4730a9f87dbb14a26da2047b7cffcbfe299b735e9031cc995291552d681d62000819832f106d SHA512 3c0bf640327da12035d9a28248f09f74e9285f2ff5239089617a0144425f466236afe672403987a50adedd4fc9743bf66f968994b4239f996944b8030e98c1f5
DIST thunderbird-78.10.2-sq.xpi 657826 BLAKE2B d2967b7011c290677653f974403289a7e9dfc0a32ae18f2c927809f66a10ac7375d3cce32c7169daf36290a21d8c4593dd85bb5786686ce06c608a750e9202ab SHA512 8c9f00cad31b190ab254103752bc376dc876e96ac6fae340f467f246056993e652b21bcb23f2fb3193fb60c2147b729702cb2f02d580d3ec6856c3202be235b7
DIST thunderbird-78.10.2-sr.xpi 683114 BLAKE2B 178859c2968475105da49c9a4e5c3b7b9c03f0b3063112116a4a9ea7a3516af31045d0327eccece817ec0ba744dd744c39923326f7747d16113f5b5d7ad94d91 SHA512 022d7d3445b8a2a0df56ebe6877d5ee321f9335ab363e805a8356b2829a81db970358b626570dde0d646c2c30d3125662cbf3e7c15df520b2c6ab469f34f6439
DIST thunderbird-78.10.2-sv-SE.xpi 648867 BLAKE2B 2b4519a648e76c34f65951151cc625bbc5837c30b10c66ed858938bd3f99e930e630464066c8ef07fb1842e7bb7542c4f8c3a0436b0c9562ef0f6a05c4d5eb3a SHA512 4ca886764db45a2c9e8ffca52112d10026f4fd9875a995838e7cbb35590e72e24b34ba1f310513665254867999419fb6a5377abb0de524ca78e4bf5f40bd14ac
DIST thunderbird-78.10.2-th.xpi 712035 BLAKE2B cb42f70400c96721c7bbec6353bdfa59c7738ff5ba028c9ee31157a5556b508ee21564b89e3574d4abbb9b5e42e7f81fedda35da01f423ccc0b1db72d1030d86 SHA512 481eb81819861c355d4a0234a0200c92ba2f6f3e770644a924e0492560a5e85aa6327b387ff6c98420cf485473b510c48674efa3c416bc7650bb340690db5615
DIST thunderbird-78.10.2-tr.xpi 649075 BLAKE2B a594a63b72040a86ff2ebc60669d19ef7b8c43136e7812008a43b7d85c1672f34838f5c2d5ae458590f8cabeafedfe5d045efe379ee2797f5fa72c0aa276ebaf SHA512 5f4c9c6c1414ed92892a71f8701107a4252bde8a0d515878f9002c30abbc50dd08694e86dad522b6538e5e1bf0754925c00f28039ef9414e3f5289e65bbaf484
DIST thunderbird-78.10.2-uz.xpi 586596 BLAKE2B bf71e12dd8cd771cbe86c2ef1c598fd3f2aaf9e804ee2051f690061b32aff1d92b521e11406d9b57335a481094cac0cc9da73763239764c9bacc4b2a74707d47 SHA512 b56103dcf2771dc2933b6b3d854c8dc5164febe5bc9ea539c73766d27e4b1c21931d7dedf72ef2ce143b318d0c27f45c47b3843f56f7ca6a67aa5106f9d70c54
DIST thunderbird-78.10.2-vi.xpi 674614 BLAKE2B 3e24680e55133daefdd3b1759a9d257a10d8e11d8c0f28935e14f4c8639b9986a1367a2aea43e1fc51641d47f3814f76d3d2049e51006ddf13fea17189261cf2 SHA512 ed954eff56724b89745f85ba83ef13aa404c190a2e5efa85ea4ae27fbd37f8a211bea8878179c257cffc35a24b312116314f14351a440a1d9f407a23f7146154
DIST thunderbird-78.10.2-zh-CN.xpi 687175 BLAKE2B 19dab68c9608822f54523bbc99647a51731c17290ef49d51379c48d284180e0b3a9f66380222a767c4d3dd0dbeecc7036cff95b57e29399d922527c2187058ea SHA512 5b90f11c3ff739fec02adec18285a95e70a02370567d9dadea97d64798916c793c5155bc3b313b489518d326124f215e29267a6465d7b52513fd2d3c25c97cde
DIST thunderbird-78.10.2-zh-TW.xpi 687616 BLAKE2B d1b895a11c2ef84b2ffb4e9c24b477f77f84145b87659a29ebda5c5295c127e37fbe04f4e8662e552f848b4758ea19116e0b4fb8733fd467de1f3d827c3637a6 SHA512 fcf0ca89e6c80facd0b669fdb2c7807f48f703ca7fbf193882d2f4a8a4037ef4aceafd5aa04730c5fb9184b74e50ec74369684f55e3f786215acf2aeb663c31c
DIST thunderbird-bin_i686-78.10.1.tar.bz2 68355053 BLAKE2B 5535e07a3ec2bccea853ca4efec61c36d5c8947021c4fee4c65ef25752249959a8f617cf7cd1f1499e411e3ba9bd97217d6b3d146bc5281d3a34c55504464967 SHA512 235f81cab03d017d7788b42b3ea83f1b3ebfcc2dd13327aa8ba91f8161c9962f282c7059061a3b47aea4356d17d4373482e340fb3668d3e23f09f440b040454a
DIST thunderbird-bin_x86_64-78.10.0.tar.bz2 65288336 BLAKE2B 70d6b61db13db5aa5a1656fd0e63d967f9d2cdf39be118d8f44debf25fec5c4c08191d4ac2e5b0ee285c1f596dfd3d9f44fb84aa09932a85b8458d88f085a9cc SHA512 2c741cfbe36db1f2ca0af2c28bdd46ab4545edcf698f2f6f560b613bb95764ad5da2f6f029bd28186e85f77a308f54ffe95c08656d6bc288a844ed7b922e663d
DIST thunderbird-bin_i686-78.10.2.tar.bz2 68305977 BLAKE2B f5878bb6d196e1bc97ecb3923bfb5df8674899ebe4a01f1a4e7665a07438e8312fcc0866987c78b2b9e2b09034a482505c5cf6a7f4b2449251ae73921b2f03db SHA512 1e29d9592363e804cc921765859de33a1260ee31396d61f85886ec4feb5f8661ac8abc9d61d4ac3a9b5d0f2515340689fcf5b93994bb7eb97f7ee1382dc7d621
DIST thunderbird-bin_x86_64-78.10.1.tar.bz2 65425312 BLAKE2B b00966259e403ad661dc93c0c03b7b1a998c56ef7f3cb1fb398feb66520f331e83e6f28ec4cac146dc8c6907ba872f20e4af955fe1b09c7067625b582440b992 SHA512 176ca6792b31ccc8fec950359cc08636a06399d7c82290e2a513a08139a15383b395067cc84c16113283924c9e99ec9c0616d49e4733a0a6e6857375788872a3
DIST thunderbird-bin_x86_64-78.10.2.tar.bz2 65441993 BLAKE2B 594d3d0b742c7ed4badd7e9711e08cd01c8fa653e6fe3c4a93ad131dd2bf808e3eac66bcb9fa2cc89401f456fc5b5974297880a90b54227f2edd8db0941e0bc8 SHA512 8a705f9a3d33a99045b31a16a58ca2b895117a6983f65c1986886008e1a8155b29ce0325e59b003d5e3b521e484a648ae95cc81c9da7afea9c59420a04572e9e

@ -64,3 +64,68 @@ DIST thunderbird-78.10.1-vi.xpi 674610 BLAKE2B f14923a00644e107072179603d06c072c
DIST thunderbird-78.10.1-zh-CN.xpi 687177 BLAKE2B 43da21f8faf74f9392ede14bdc8bdc7ba741724cbfae91ab6dcd9e3a8ad41e834355a3069e52acfdbf5bb3685f53e275cc4aeddfb987939ebfb6b1329384cb01 SHA512 2275a1e189d806f98c59a19231ed03683aed60bc08969cbcd9d3650b9b545ba3f2cc143b536a6689bb9b14c930048cda85d038267de3a75d44c3132dc474238b
DIST thunderbird-78.10.1-zh-TW.xpi 687622 BLAKE2B d3ff5da0323d6529a142ca20d29ce06397fb6761282ee6f4b8dc03ea4a79874f9db5856e5980de8cb7b2e68332b3589121768c1abefe9a9e5af29dc1cbafec68 SHA512 b4f85ca2ae438265fa9fdd99910d292937e78687a74cf12cc33e1a693e38cb76820a0e0c45f50de39cd2c4a3b911b5988eddbedb52a15379121590c9383ffac0
DIST thunderbird-78.10.1.source.tar.xz 354316236 BLAKE2B 756f471de37e96f9e9733864747b5d9270dbd67592e02b3632f80d815af95ce421a913f3f8d9454d5b5885e5506a6dad36f7b7c20ab46c371a5ba594cc51e681 SHA512 fffae4bcf2411834a86b5d1fd7c3fa8dbc32763061de4afef44ec95d55a8c4ab94576f54bd8b8c9aef22e0c4a09b48a381ba2ddafc31be60ef79b81e6835e4db
DIST thunderbird-78.10.2-af.xpi 548348 BLAKE2B 44d4c00a3672a82a1d7ec37394b6952824d940163a63213b8efa17488d97277de285f053ecca2925baef5ebb296647914028fbf37c884cf8d2527219e762d7e5 SHA512 04be6901b422e6a0a93d4b2a8c930f3ac8c78d4ce4fdff0dcfb904184080e5f1b0a10b05c44358069dfd9372fdabfeaa4b7a8b92fc16867fbe43569264996a08
DIST thunderbird-78.10.2-ar.xpi 648605 BLAKE2B 5f78480a6bca437d650f8567e8fc53dcf1ed61b6fc303f245d6634917caba60a85aa95636029891230d898e49076601be9c5265c9f00f2fb3ee88793e9159a81 SHA512 85d4711c30a7956199d34b5bb5b20a1876758bb12dd0ab09a636d5cdee8c3038f5f7a1940327218aca635e8789a36cd4d8318878999bee7bf49e87e88e7af829
DIST thunderbird-78.10.2-ast.xpi 561260 BLAKE2B 5c5883a0f42ef3b5ba1d42e70ec5d526eb93254d797c60ef757eed42285c9f9105a644088137cf59847da9fd20b7fdbdfc65c12c5c31118b8b004ba45c00bd28 SHA512 b3650198079ef290e82e51b9eb659c6675927378b14903de31d746ba6f5144bc8b1bc59b4909226118b4d5b88eb16ee7aee686cb15e6a28ae34e3a5bcc6d6441
DIST thunderbird-78.10.2-be.xpi 666673 BLAKE2B ba9662d249e523f77b03be2b4e1f2610dfc28d9f037fe4956ad94ab3051f191218f8b660aba21dcb52c214785debc61cbcd5ffa4805c4b2c6697c80941051f1d SHA512 b3cbe2dbf3b7dbee3033c016a5cac70d54633c568f2582005c08d9d8c600c6a4a63913f7c3bb33a504d3ed1cb573cfe922ab689af98b9bec1d945e1f034eb15e
DIST thunderbird-78.10.2-bg.xpi 672412 BLAKE2B 4bcbf02e1dca21fc173da5cc7a5cfb748e6044433822efd9a2b908031155adad15606c60e40a9f75f15cba78ab9fe8571fd881b6479e2aef8498136a6b60e21b SHA512 6b4ab327f53e80f824b4b59091dc08e10f34919e8acbd2c89b0721a213ae500d4a355fff546e83eb3a610063a1d9789d087e04a9cec611f77a1dee4945575998
DIST thunderbird-78.10.2-br.xpi 604525 BLAKE2B 3640c79dcd9c78f8afbb63153d93371ae5b50021494dc8cb5aa7e0191ce426e235d02406271a1f909fab7ad1229b7af77aedf2f8deb1fab0461b45bfb2825cec SHA512 d1f7be100422deee4bb678913e96e09c94dd198d08ce24eb1cef64aad85313aa539e21180ce25e0d6de7ba498389fc270c502005c2a5cc0468501aab45b392e6
DIST thunderbird-78.10.2-ca.xpi 620452 BLAKE2B 2d61b461c81ea6e240fd551d0069b2aa87b30bbd06560b3917ee408b7f26a017938fe500050ddec3a63d371f178f418ce68ee7f73627683dbde33ac79d0b1f99 SHA512 c6bc69941c2f733dd92ad350a258520117407b6ee5877a236107974b3beb5349f29bc9f53071795fcfbed5c8abac104c08e0ef1c3848eb05ec6c67b857dd03c9
DIST thunderbird-78.10.2-cak.xpi 635643 BLAKE2B d9263dc1c5d91bf2c69b3b6bcfdd640b8b566f82c68911e501aa4546935b729122a052d36a9531fa56e838500ad08a87761beb6e0a9150854e7231c4edf1f22b SHA512 ce771df6180ebc95e53e38dff77da0a55ca5c56085cb172e7cd4400e01915429230b675ce3ae1c15d59664476b1de1800cc59a8d4383f10dd6171868bb45a05a
DIST thunderbird-78.10.2-cs.xpi 635349 BLAKE2B db347a943a0fda46a60851e3c2731514a3695ce7a44c09c71faf6f37f1282ffdcebb752462f7419189b9ccbda0f01e0b58a38c1eeb79e7e5210dad14cf81d935 SHA512 50eea5f566706ed0cef0ec8fa0cb292e7b0643aab21393516e31cc2a61dbdbf45e81c59dd8c06657cd93c0d68db10301633bd73c3a76b2760600a06d1386a0ef
DIST thunderbird-78.10.2-cy.xpi 646244 BLAKE2B 4201ee82f7f512bd4b58e652948e0320c716e01169de66b1940e365d599eed25ada27eacfc4056392998266d640f37696e890236854ba0d8a3e3ebee965b43d0 SHA512 0086a25f0970f21b57109539ffbc8ef7dc6966c3f3e06a66e45986c8f209718bcc36a4250e84a97427f71d82c68949c25c7348fcf0ea6a7bcddfb6d12892e33d
DIST thunderbird-78.10.2-da.xpi 620986 BLAKE2B 17c608c1b857fbd8b7c91419ee7ab82f48a55211d4d6085dcb6614f49a9dca4c21077a5ca3da075b3dc8afbf4d375141e53e94150fb0e2b02adc5dde21381ac5 SHA512 890604e4470ca600e7ba2e80d0a4ff78deffd422207a9fd2ce23dd84f6ff2dcb36e351c21ccfa2d1e188229c8b4da9902f8e045cd518ff202aed1023d4fcbf89
DIST thunderbird-78.10.2-de.xpi 665195 BLAKE2B b1460496d067743ba77205d34ee7b1cfdfe486255385c9df466a64fb49f846b5241e9e3e5b556b93b5102086bf96a06b3fbc8784a7c06b8188c027b32093474c SHA512 5170ac63d6295f84e5cc506af09e4af87dd91a7438a916342ab5d485ba028aef2704b49d1736d55fdc1148c371d72ff0adc97918914e79627ae73f25b7df7c8b
DIST thunderbird-78.10.2-dsb.xpi 666782 BLAKE2B 956dcf9929335166e9854c92e03e5e00c067d8c64e9353933c5acf1ef24a45f3d2800c81339ff13fc959ab8fdc7aac3955028b65018be5f574be4f8edecd6916 SHA512 348186117e9b05ab20562e89d15bfe2f1a3d190b8316e250bd5464b2fa906bf932297902c7c4088293895c8da8cc6a274477a2e36ec23a855a94fac1f2aac6e1
DIST thunderbird-78.10.2-el.xpi 774450 BLAKE2B 9a460212b4a66f05c4ca9698a3b6f17ba3f2c63546badcd96f7e5550a41a201e80ba631fbc433746326c35a8cc94d2a12cac84e387dbbe90e3f940c64512d2a7 SHA512 e0ed4353fe0e51213a1d8b065215efeb287e57438f3da26530dec04a805f04fc1a1265dbddfda636759f150b895d80ae5b71e118baa09da2ec64398518b997c6
DIST thunderbird-78.10.2-en-CA.xpi 611770 BLAKE2B e1f84a1979244eee2a23016aad9f5fd916d3e8cdb09e60c66c1641470a8246a0842ec99d0fdfa03c1cb0eed966a0872d59429cccf926c81607d3162decdf92ef SHA512 556d31167e89c7382a7d32ea4bb96aa280633641442d9c086cda060dc65dd7a49a19d771822beaa535650b17494f7a9b598fa8ee87b091691bec162f65236789
DIST thunderbird-78.10.2-en-GB.xpi 611185 BLAKE2B c7721ba0647aa11f89eb1306ee08a8f07d0d49ca21bb15637522a753bc649b6d00d770a7ee1ffcd12cb25f128925c257f9d9725374b5d274830b098a88d10446 SHA512 f715cda23baadd9e3a2e06dd4b082a12832c07fc067e63ca3104036a5d5ffbde25d20b1a64473aa1052201a57d05d9bc9bfef7f1a0da6133db7a20f6667d07d9
DIST thunderbird-78.10.2-es-AR.xpi 657792 BLAKE2B 08bc25600a0cccb5bed74f22599d2d19361be2bb05b65658ff0ec9eabe77500e2c42642132afa7509c7045372a18ce4c7f9b0c515821dc19d0a2d5bf8694c6a6 SHA512 62cfd7804e507f284a2f2e9f2bb13186d589d2e1c70408efe99fb9ba61f6a9952adc9d64cd9c27b10e635f81ff67500d2949933633c56db463931ceb87c9da9f
DIST thunderbird-78.10.2-es-ES.xpi 569803 BLAKE2B 63251b76597eef77813d280e1aeefcc7302f1b7b7423864a9d2b7a80dd1f048290c4a2423e3e0865ec3cfd094223ac8027d6a4ba34d7469c59aaf8de3bd79fbb SHA512 85d572e747101b617c3592b39d290097b279054424d44d515b86c067eda0b7c1c0b157865a5f1451d12936e27e2184bb59a6b939395b8c8b7631f057f112a078
DIST thunderbird-78.10.2-et.xpi 597726 BLAKE2B 54e228ac4d4f6a4aa4303218a912c342e289aabf9bcc63eb46dae5bd9f27ef0c652b6b8803558c42d5ab5381d70bb7364a35119703d64dee69c1e7ca011bd5e6 SHA512 b81c7f7118d4c420367fdca070f8a429df466ee01d1e5a9a41d22954ed67aa2099769b5338caca97a862a3a124583a9a63f872606fc97d3c8053d5287a6a1791
DIST thunderbird-78.10.2-eu.xpi 632964 BLAKE2B 4bf02098d86275174c24c8843e921205c9e434c93f46e90662f89f08d8950407eac656545b8f8ccd62e3502524792f3659b49784f14923de631167bf832d288d SHA512 8cd4f4017ca520df5d7e0eea842d71df3b5be2587461aa616c89180c4e343f04437296e32ed2a7013fb5a181359f9c7ffcdcc9dea768967d4ee8001857376a9d
DIST thunderbird-78.10.2-fa.xpi 639752 BLAKE2B 2f093ce8770ed9a19d57f51b870aac4a927f9f6b046f2352853469bfcd4a6788262b39951537ae9f3eb0007bef9c08f30b43fa6f76895f001c1189747841c18f SHA512 1226e1b25e700910760a1a85589d9a73116fb51a359d8f9849a5b17a0f8092a8784e20b849c7d09d6812849224892c68daaa697d636aa40e1afbc3df0a3f0c69
DIST thunderbird-78.10.2-fi.xpi 642442 BLAKE2B d7081d333cc01f72a3b72544e026b40888746a7f17d962ee60ffaf323365b17449ae4368c135ab3fb502740d5d9e72288a21459cc63b4a3db209e1f4e12af358 SHA512 cd4d395d873e6625856c09db05e115505d4c6143f3a577d5c9346ae9154ed5400e7a45e4e7d286fcbb76f7769358fdb8a4c57d713932dffa26e6f473867d4247
DIST thunderbird-78.10.2-fr.xpi 669481 BLAKE2B 22407c8752f2e1d9699bbb61599352272d6fb6d1f4afc1d1b64d45cbf0fe2c717fc12c5017c507ea468f4db2908d0e30df9d46040e55085b813721e5576263a8 SHA512 dbe0ff9059035b64f67325fb9de743b020401c1e93a4b17ca82e1e77cdf9463961bb09a2776091d116b15c2cc7325ea749220853f6dfedf9737ac12dc9591221
DIST thunderbird-78.10.2-fy-NL.xpi 653080 BLAKE2B 4b2a06556bafad0fc81c3f2b136ba68ab30b0424307da7f20c0b979e61c893ec02f8a3b6755461a00f4fbf3c38db66247e883ab6a1ad88aa1968abd8bb180b59 SHA512 168c34a6ee346501544dde7a253ee722a0666c384bae3b9b91ebcedbc84bd6deee855b86b57e6d1b1c853287de04d440797dc66cd1e5bc3416aa5d8b211d598b
DIST thunderbird-78.10.2-ga-IE.xpi 600713 BLAKE2B ee9d5505564521d4269b6955e2f77c13aa7cade2ae9221ec59ad273423cfb1962f9797be9b48a5cc8bf4e8e6ff68f4075bd05ec26087f5bcd7c60a90d7f7a463 SHA512 39eda3c2975c6fc97d976ab4eb9c2c2721b28abcb4baf628b6ff4f7b5f338fe162e12dfd720b48185de9ba7d01afdfcdfd9489e71e2d61849da12da6691bade9
DIST thunderbird-78.10.2-gd.xpi 609384 BLAKE2B 35be1bd035f82a8712a78048aaf12f849e8624bc67aa788a5e27b90d938e3f36d89d6f3219524d30edbbf462e9f5d727c1c9e5083361e5537eec51cc86534692 SHA512 b6d2abf79ee0f44e9146b138edd33f206beca9190d209d04d065f85960967c9938e82312bdcbc976431f9a9987345fc0f891a8dccb9e168564de4d1762c47d51
DIST thunderbird-78.10.2-gl.xpi 615724 BLAKE2B 8c1dc5d50600eff64093976bdad4653c7325f322bcdbfe0bc5aabc6b972f87a81c4fa4f31f1fd8d6f24f7b84746f691bcdca4ff18d23b81619a40f5141578c18 SHA512 5709527a6bb1ec825be1852b5a1ea9544838507e8c7f1825ca21c2d54db217f8d54187fe9326ca05205505fed95d75ab170b60fa744284e8d0ccb96a5de8b6f2
DIST thunderbird-78.10.2-he.xpi 640496 BLAKE2B 850857fa02dc7b08bff873ea80174977cf27e42e7954160d0b1c1d40fbfd8ae7f98eeac437716a8b1213412944a6dd7f2a793fc19a329417e360d6a813719bae SHA512 376d13a92cf8e4109b7e042674757a57839d5415dacc357b3698eda42eed31a761afa210c993a0bdfa43b068b95f407e659b58a5273217a5b11fbabff03f6f45
DIST thunderbird-78.10.2-hr.xpi 629022 BLAKE2B 7248b0140cfc2ce59a3c4bd7fae7d3e4085718395afbbb234cb5aed9df75c677570683ce5b0e239a0cc8903a98eb5ea758d6ac513c2c1332235da9bdc83cf31b SHA512 d41384c8d3ea1a9523e6a9dff4de64bd6a722e597de1a3fdbdee7f6c5efdd5cb200b37bc7c0b2e7e62afc708ac0316598fcb6596c17ba6692b39d82b7e24e058
DIST thunderbird-78.10.2-hsb.xpi 668611 BLAKE2B 5dd7104555af6a764a21ddde7e6d70b40ffdf88d3e998a4baf04c6613b3b6a87cfb96864339c5a6ce0c027e41c0f80f4c19d5340053165c5a5a86662bb3e1c02 SHA512 7d9b17bdf9897fe39dd8648ca6925f38b12a9f849434d8831fe18ce4503ef823f2fae94eff60c608f7fe6a75f5e9f0ebf970af55ad56c8c8c0efd9126143ae10
DIST thunderbird-78.10.2-hu.xpi 679840 BLAKE2B 5dab056090c23f622821c84a20c52b788ad90558486362d02925c2c7afd4385e57dbfb407b7008ab73e7daf138eabd88997ac99a35dc6fbd30914797f04e0a44 SHA512 d0da60afca83d108c00d8719a424d5a2ad548e78b87e104482109b4ec037599366d555ea0cd0d6f2df21420ca48be2f3f46d2411e0161405c0bf6fa239cebe48
DIST thunderbird-78.10.2-hy-AM.xpi 713320 BLAKE2B 531637a8b10a7820cd0d5372464ecdba440f18a976d02a7c78c934909c61fa724bf3c466fea1e3049c3124ab3aba553d2a35d9b58cd60bf5a58f21d2e5b63a07 SHA512 896c2ecfaf7ec41db7cfd72389877a922357e5a81111f26d574e0e5a960139882b904b77b4106ca18fa3e3263c659c0e0aeee889256b1433b9dcb64c95373245
DIST thunderbird-78.10.2-id.xpi 620679 BLAKE2B 0c462a5727cd578b53df07fc5778648455e04b2622bed5b67d6972b9c5df53d3dbd1a1bc0549f701608644a6eaafafe38a447b7e438f779f1aada21a8ae9b0bf SHA512 fbd903a461a937e3db90a245120883f26af6becfad3a2aacceede9fa55e097f2e01087382452e84fe8f2c8508f9fa6e2771e5b2f34966e58a1414c54828cad3f
DIST thunderbird-78.10.2-is.xpi 581641 BLAKE2B cdf3733bc1f8f7103db0d2dee0e6857c8f0e8b6455ce2a36cc0a1d3a0a90eeaf570472ac45669122a390e5d2717df8f93907e9805c7bb087744e200ad87dfead SHA512 4bced7458b72299dd972885d9a14bfa0cb070bc7628cb5c85943f31bc6aa86b0907f451a258e93c019fe960da05254636e2fe09fe9dae8ff37d527426691946f
DIST thunderbird-78.10.2-it.xpi 572953 BLAKE2B 84fba8b170e25887990188e94af1529862074819fe5440761c0881d4dee3a2c3bf2443f8c359ea3dda8721d0bf3360c8cd28aa32468ace843de259ce5bbf8ea7 SHA512 ce05dcf72a6f2c38b514bb69f341defc4992b9e5f0857632ef6ad615ef11cb68809c150799ec9a41fcc7ec0876baae568d27f2ea1a4172b3ba80cb3da545b09b
DIST thunderbird-78.10.2-ja.xpi 722453 BLAKE2B ec5018bbcbc768a3221659af8d168ef11866f52dfc358e112bd8c4156e65119740f9b4206cd2dc61f629479bd69a9fae3c48d390ef77f52a41b71d887fc1f186 SHA512 25d4df5cec1edfd51689bab088b6af563324c775d50e78923210ce67584015210c8a17d3ca6769aad96f76bcd75f3f522d0421df9a17ced8ff20e5de68c7b945
DIST thunderbird-78.10.2-ka.xpi 717012 BLAKE2B 0d59c3a06805f923a950832cf11588441f27e4c00361a2ef72acf89bbf030255f595565b824f20194a5fc021f10d5a85e12a144dabfa1f4d3a947d86363e59e9 SHA512 d3101d6b88ef3826a7aa0211e2b10483d2c36c99be58281435596d4d8e6550de317ee874b15769ae97570afe77d777cda265a22259041686bd6e1d9d576fef28
DIST thunderbird-78.10.2-kab.xpi 651915 BLAKE2B 1dc33ea30fbf1b5ce768edf3628db3223b54eda75b1e3b29355a8915268ca4ef4cb7940846775dfbb35adb3b68671207e0cca8d5f32e6dad7127fb6605bfcc20 SHA512 3532c79866b6e8ff9114a9b6e6548ec7cabc9e95d7dc170433ec6cdf9546b28035c57a55ee7123ae0dc4d75365a2698be4afdfbef5b49696288752549892c8bd
DIST thunderbird-78.10.2-kk.xpi 720474 BLAKE2B 1fa1d19b9915d74bac8bcdf0b4f97814cb7d0534b995858b0fb0342c46d0b125b9c80a70beef806f59e5d358cf7b44bbeba9364ce4f7f262684747b711e98b68 SHA512 ab87fcfb64f201238ce4b3eff5e3bc1409cf9fd3f2f530e89b9a0d275857bb67c3395b395236f27a240c349b7df9ae369a884f0fcbe3288a928ee2aa5eac6326
DIST thunderbird-78.10.2-ko.xpi 688203 BLAKE2B f653e31c60a06a8785ecf6abe15096c73ab0da1895b264ce877320674baf961a56f9af8634d85e26c5306eb4adf893c469fe26ebeefca45a07a3580fbef5e57d SHA512 8d093f074de0731b8fc1b6f871c8c88735300ba1358544d6f048e933b8aec2036a310fb819ca4ea90efe665b4d76c8ff2732fd2effda5a5a1c746fe62f924649
DIST thunderbird-78.10.2-lt.xpi 660299 BLAKE2B 3219cd098e4bdf7b36de9e7c93cc179e90efd81564f6b10018b165ec98a8bad39f07653e246ca847a2f496ddc3e81d5d726e7350f04004e15b50eff9e04241f1 SHA512 5250616c627e1eccfc4ade0fd9261e06c39dc72a1b1fb24e6baa913e73f29f716c8182b722fe4b8e334ac7d33f642e1e288c21e5e3551fb9db01b7d9f61cda4e
DIST thunderbird-78.10.2-ms.xpi 572182 BLAKE2B 246077b9e37beaad2569fbb2b8ced527f8ef8475ca8566764c1eed6de2f25062f6ca80c68681c919ed856e23e02e31816859490ee39ba9ee67531ef46aa84e66 SHA512 e10122543d7d1f5eae0c102243a7ca47072663f3f18db0a7023a153d669432b2bcfdced994f6d1b2c9a30f876ad0eb895dd505d143039c1c00259a99be5baf5a
DIST thunderbird-78.10.2-nb-NO.xpi 637239 BLAKE2B 1561f8021d620dc798ee549c9ddefe1868a04e198606a3fcd4c0f77edd765f4294e25b86301778bda9b68b7058797771976d2c2966df342c84895d5633ee5b9c SHA512 0f71998f5ae3ea04dd5fdd1991d47d39eb64b60ae577790d94c8297770a88360e0ce6559efa6e49c819d23fb29fae9c6aa1bd45891c8c88e8d7a6294e397268a
DIST thunderbird-78.10.2-nl.xpi 644359 BLAKE2B 672fd8b9f9201beb6ec8fcf74df1c742ca0ff286cada51f9a0283a8b9cddce7edec6085666651ed2dafe346aa9888dedd7851a236318a4723cc9dae2afdc9325 SHA512 aed8aac63a8ca07aa138b6502f73993547772c7cb0932af13e2a73a97c2b233d930a15d387faff17c7970fa5e5bb2c6ee31b7f37fc7ff2d187e1c364d9217944
DIST thunderbird-78.10.2-nn-NO.xpi 640689 BLAKE2B 76552d4e06706e5cd8dc1ddce07f751ff3a9bd09419abd9b44d6529d1b043edf58bba643ab172ec8d435a2cb738f8da5fbcb0a49dd5a2c85841c10c31b961a9c SHA512 7425aeafb5f10949484443d9074d09b78665086c3e666754ea0e4f2bc8b9917529d84cf6b8860d3470613648bac2298b43b20422c8833c3c8a13b02d35abce33
DIST thunderbird-78.10.2-pa-IN.xpi 633216 BLAKE2B dc9357e642df02dd46419f9f7b328499f5b324305484728c1d8b5cca0b3c0c2743d2d966cfeab1aaeb82109f7accf914f1ce29329bdeb6eef6722dc78938a67c SHA512 c1fa268c497d5a43e8ff01345bc1c558177e4dcba9cd8d5ed82d4b200c2644b46ad183b1231bc540c2b13f4598d51ae020d2372798a7b6607451d172fb14990f
DIST thunderbird-78.10.2-pl.xpi 637124 BLAKE2B 608d4074839e7e9b8f93f240c3d6796efeb83af4bf593e90a573a65ea981b14182c46858d71e35040b16db4f720f756f7c02683f607aebb19c356da46456316a SHA512 a3ddb51596eab1025d0f4512975ffbdf641c6e4ea6935cccf4334248140f46a6082d525852936911602060ae7dc38f70d1f9f4289c16951d9afea05570583b02
DIST thunderbird-78.10.2-pt-BR.xpi 649421 BLAKE2B dfafe541f4023a1af4b0cc72fc3a9dcbb724f82ff7ad7af41bf8c21a26b91bfdd24ab671901ee091d0950810ab30d2d5bef84dffd0f5dbae1974f0048e240f70 SHA512 64ffd00023ca35a6d7e4ff946144a3a4f9bc2356622700effd971b2b13a96c2f3176925cff7d69e1e407eeb85256a6c2be6fab0b84c8ae827afb16a58abfb4d1
DIST thunderbird-78.10.2-pt-PT.xpi 655499 BLAKE2B fab4eeba41e55937cd2a045bae8afb6b8101b42c76fbdb41b70c62b9b439c837be9a30b37b17ec83948cbb9fcf7d4ee27e93b95993cf60de867445ac364c8e13 SHA512 04a4d949f24d37af1f3e9b201df766e9fdb2d6ea0100acc425bb0d3db3f8ed900d8a088148c3b2bc2b5e04c610c9a440479281bed0bff29adef20a1e7d95d188
DIST thunderbird-78.10.2-rm.xpi 646532 BLAKE2B 808fcf97c758c0934958ad7cd168e677c8b609e4f627edb260ea1478a7be1053167b00bca11e0983b240fccb11f62ebafddd14067c5dc4283e22e0f921901abc SHA512 1a9c1403360e1a18428d3e3b6820e59db99658dfcf761500e0333e13e03ff32dbc7c4762491f28cc4a2c7f42ce1cd06c723535d3ffea072082ffbb56bf27421d
DIST thunderbird-78.10.2-ro.xpi 662634 BLAKE2B c297c8e818fef288b97900b225d427494b2d44d13d92d3e2d28f843371d4fe74431abd4e6bd9a252bed6573c568991a4235b65cbc871a2cff1c0aa5272ee256d SHA512 6afa9f76dc17ca2b93685c7f3510df8b193848b020ce5d088b4fc2840764849af7b4fdabd449387b4fc19be102a37c111583615773ddf1e2eff95d1fdf420c18
DIST thunderbird-78.10.2-ru.xpi 756186 BLAKE2B ff533244e071f126903add92f273c8d4038e3ef29f795cab52fc4cac86954fc0e2a54191cd8e3206577e1fe324857e03a3779993e79408a1bf2cd4446253b13d SHA512 3cd4bae123bc07b49b373a58dd4cd9a44d47b48b559ee627ae52ca5f460dce5356d466330a71bac07cd4ec008d1d4d718fcfdd42e60f036432f074eebe5f8aa7
DIST thunderbird-78.10.2-si.xpi 651096 BLAKE2B 0fe13805cea9499bb262a025e283ec0ba0b5c1b408b1c69f1f9e07901f2f3ed0710a2266be123a63f40e4e2c0246f3cab034b2b8a0dae868ec83589d5a162901 SHA512 cf583b85b5741d71db53aa475b24c0adc84a959a3cf8ccee833398f36dac9fad871544c895b8a03ad6dadda86f04530e80abfc9d601b38012efe990a720e2635
DIST thunderbird-78.10.2-sk.xpi 643218 BLAKE2B 1cfa020bc3f1dd30880c2f84993fdbd278e964aa2d3a73423f9859c7020a31d6911f33aaf466211dadfa880f8c75095e7872977deead533fe4f676a1fce1f79d SHA512 ca5c7c1458879842c7da2bacee472cab200450bd4dd5c4fee92652cea4e55921c62aec89da25db9ce3d509e822c1612c13b662a21dd8643c5b32ac7eef20fdb7
DIST thunderbird-78.10.2-sl.xpi 632383 BLAKE2B 9704d78764b0a32b538d4d93fd552607e4f6ca1d44de9ca1065c4730a9f87dbb14a26da2047b7cffcbfe299b735e9031cc995291552d681d62000819832f106d SHA512 3c0bf640327da12035d9a28248f09f74e9285f2ff5239089617a0144425f466236afe672403987a50adedd4fc9743bf66f968994b4239f996944b8030e98c1f5
DIST thunderbird-78.10.2-sq.xpi 657826 BLAKE2B d2967b7011c290677653f974403289a7e9dfc0a32ae18f2c927809f66a10ac7375d3cce32c7169daf36290a21d8c4593dd85bb5786686ce06c608a750e9202ab SHA512 8c9f00cad31b190ab254103752bc376dc876e96ac6fae340f467f246056993e652b21bcb23f2fb3193fb60c2147b729702cb2f02d580d3ec6856c3202be235b7
DIST thunderbird-78.10.2-sr.xpi 683114 BLAKE2B 178859c2968475105da49c9a4e5c3b7b9c03f0b3063112116a4a9ea7a3516af31045d0327eccece817ec0ba744dd744c39923326f7747d16113f5b5d7ad94d91 SHA512 022d7d3445b8a2a0df56ebe6877d5ee321f9335ab363e805a8356b2829a81db970358b626570dde0d646c2c30d3125662cbf3e7c15df520b2c6ab469f34f6439
DIST thunderbird-78.10.2-sv-SE.xpi 648867 BLAKE2B 2b4519a648e76c34f65951151cc625bbc5837c30b10c66ed858938bd3f99e930e630464066c8ef07fb1842e7bb7542c4f8c3a0436b0c9562ef0f6a05c4d5eb3a SHA512 4ca886764db45a2c9e8ffca52112d10026f4fd9875a995838e7cbb35590e72e24b34ba1f310513665254867999419fb6a5377abb0de524ca78e4bf5f40bd14ac
DIST thunderbird-78.10.2-th.xpi 712035 BLAKE2B cb42f70400c96721c7bbec6353bdfa59c7738ff5ba028c9ee31157a5556b508ee21564b89e3574d4abbb9b5e42e7f81fedda35da01f423ccc0b1db72d1030d86 SHA512 481eb81819861c355d4a0234a0200c92ba2f6f3e770644a924e0492560a5e85aa6327b387ff6c98420cf485473b510c48674efa3c416bc7650bb340690db5615
DIST thunderbird-78.10.2-tr.xpi 649075 BLAKE2B a594a63b72040a86ff2ebc60669d19ef7b8c43136e7812008a43b7d85c1672f34838f5c2d5ae458590f8cabeafedfe5d045efe379ee2797f5fa72c0aa276ebaf SHA512 5f4c9c6c1414ed92892a71f8701107a4252bde8a0d515878f9002c30abbc50dd08694e86dad522b6538e5e1bf0754925c00f28039ef9414e3f5289e65bbaf484
DIST thunderbird-78.10.2-uz.xpi 586596 BLAKE2B bf71e12dd8cd771cbe86c2ef1c598fd3f2aaf9e804ee2051f690061b32aff1d92b521e11406d9b57335a481094cac0cc9da73763239764c9bacc4b2a74707d47 SHA512 b56103dcf2771dc2933b6b3d854c8dc5164febe5bc9ea539c73766d27e4b1c21931d7dedf72ef2ce143b318d0c27f45c47b3843f56f7ca6a67aa5106f9d70c54
DIST thunderbird-78.10.2-vi.xpi 674614 BLAKE2B 3e24680e55133daefdd3b1759a9d257a10d8e11d8c0f28935e14f4c8639b9986a1367a2aea43e1fc51641d47f3814f76d3d2049e51006ddf13fea17189261cf2 SHA512 ed954eff56724b89745f85ba83ef13aa404c190a2e5efa85ea4ae27fbd37f8a211bea8878179c257cffc35a24b312116314f14351a440a1d9f407a23f7146154
DIST thunderbird-78.10.2-zh-CN.xpi 687175 BLAKE2B 19dab68c9608822f54523bbc99647a51731c17290ef49d51379c48d284180e0b3a9f66380222a767c4d3dd0dbeecc7036cff95b57e29399d922527c2187058ea SHA512 5b90f11c3ff739fec02adec18285a95e70a02370567d9dadea97d64798916c793c5155bc3b313b489518d326124f215e29267a6465d7b52513fd2d3c25c97cde
DIST thunderbird-78.10.2-zh-TW.xpi 687616 BLAKE2B d1b895a11c2ef84b2ffb4e9c24b477f77f84145b87659a29ebda5c5295c127e37fbe04f4e8662e552f848b4758ea19116e0b4fb8733fd467de1f3d827c3637a6 SHA512 fcf0ca89e6c80facd0b669fdb2c7807f48f703ca7fbf193882d2f4a8a4037ef4aceafd5aa04730c5fb9184b74e50ec74369684f55e3f786215acf2aeb663c31c
DIST thunderbird-78.10.2.source.tar.xz 353926908 BLAKE2B 23ed531fae63453b0b088f6eca4df3fa70c87e659ccb4afb6e1a26a9837cb0740ae354ed8078dbbdf7480d99fc7b82f0f37f37978f957a1d855f61e9f10dd974 SHA512 b938580055b8b935a37cd7b7aea9b654f5dc42b0a5d459ccb95d10fbde49405c5fad3ebf450ecd1077289aef008801d1dbbb7d5be56bb238616df14a7658c3f4

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

Loading…
Cancel
Save