[arch-commits] Commit in thunderbird/repos/extra-x86_64 (12 files)

Antonio Rojas arojas at gemini.archlinux.org
Thu Oct 7 12:58:51 UTC 2021


    Date: Thursday, October 7, 2021 @ 12:58:51
  Author: arojas
Revision: 425434

archrelease: copy trunk to extra-x86_64

Added:
  thunderbird/repos/extra-x86_64/PKGBUILD
    (from rev 425433, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/extra-x86_64/distribution.ini
    (from rev 425433, thunderbird/trunk/distribution.ini)
  thunderbird/repos/extra-x86_64/metainfo.patch
    (from rev 425433, thunderbird/trunk/metainfo.patch)
  thunderbird/repos/extra-x86_64/mozconfig.cfg
    (from rev 425433, thunderbird/trunk/mozconfig.cfg)
  thunderbird/repos/extra-x86_64/thunderbird.desktop
    (from rev 425433, thunderbird/trunk/thunderbird.desktop)
  thunderbird/repos/extra-x86_64/vendor-prefs.js
    (from rev 425433, thunderbird/trunk/vendor-prefs.js)
Deleted:
  thunderbird/repos/extra-x86_64/PKGBUILD
  thunderbird/repos/extra-x86_64/distribution.ini
  thunderbird/repos/extra-x86_64/metainfo.patch
  thunderbird/repos/extra-x86_64/mozconfig.cfg
  thunderbird/repos/extra-x86_64/thunderbird.desktop
  thunderbird/repos/extra-x86_64/vendor-prefs.js

---------------------+
 PKGBUILD            |  574 +++++++++++++++++++++++++-------------------------
 distribution.ini    |   16 -
 metainfo.patch      |   22 -
 mozconfig.cfg       |   94 ++++----
 thunderbird.desktop |  346 +++++++++++++++---------------
 vendor-prefs.js     |   34 +-
 6 files changed, 543 insertions(+), 543 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-10-07 12:58:17 UTC (rev 425433)
+++ PKGBUILD	2021-10-07 12:58:51 UTC (rev 425434)
@@ -1,287 +0,0 @@
-# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
-# Contributor: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
-# Contributor: Ionut Biru <ibiru at archlinux.org>
-# Contributor: Alexander Baldeck <alexander at archlinux.org>
-# Contributor: Dale Blount <dale at archlinux.org>
-# Contributor: Anders Bostrom <anders.bostrom at home.se>
-
-pkgbase=thunderbird
-pkgname=(thunderbird)
-pkgver=91.1.2
-pkgrel=1
-pkgdesc='Standalone mail and news reader from mozilla.org'
-url='https://www.mozilla.org/thunderbird/'
-arch=(x86_64)
-license=(MPL GPL LGPL)
-depends=(
-  glibc gtk3 libgdk-3.so libgtk-3.so mime-types dbus libdbus-1.so dbus-glib
-  alsa-lib nss hunspell sqlite ttf-font libvpx libvpx.so zlib bzip2 libbz2.so
-  botan libwebp libwebp.so libwebpdemux.so libevent libjpeg-turbo libffi
-  libffi.so nspr gcc-libs libx11 libxrender libxfixes libxext libxcomposite
-  libxdamage pango libpango-1.0.so cairo gdk-pixbuf2 icu libicui18n.so
-  libicuuc.so freetype2 libfreetype.so fontconfig libfontconfig.so glib2
-  libglib-2.0.so pixman libpixman-1.so gnupg
-)
-makedepends=(
-  unzip zip diffutils python python-setuptools yasm nasm mesa imake libpulse
-  xorg-server-xvfb autoconf2.13 rust clang llvm cbindgen nodejs
-  gawk perl findutils libotr
-)
-options=(!emptydirs !makeflags)
-source=(https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/source/thunderbird-$pkgver.source.tar.xz{,.asc}
-        thunderbird.desktop
-        vendor-prefs.js
-        distribution.ini
-        mozconfig.cfg
-        metainfo.patch)
-validpgpkeys=(
-  14F26682D0916CDD81E37B6D61B7B526D98F0353 # Mozilla Software Releases <release at mozilla.com>
-  4360FE2109C49763186F8E21EBE41E90F6F12F6D # Mozilla Software Releases <release at mozilla.com>
-)
-
-# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact foutrelis at archlinux.org for
-# more information.
-_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
-
-# Mozilla API keys (see https://location.services.mozilla.com/api)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact heftig at archlinux.org for
-# more information.
-_mozilla_api_key=16674381-f021-49de-8622-3021c5942aff
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  echo "${noextract[@]}"
-
-  local src
-  for src in "${source[@]}"; do
-    src="${src%%::*}"
-    src="${src##*/}"
-    [[ $src = *.patch ]] || continue
-    echo "Applying patch $src..."
-    patch -Np1 < "../$src"
-  done
-
-  printf "%s" "$_google_api_key" >google-api-key
-  printf "%s" "$_mozilla_api_key" >mozilla-api-key
-  cp ../mozconfig.cfg .mozconfig
-  sed "s|@PWD@|${PWD at Q}|g" -i .mozconfig
-}
-
-build() {
-  cd $pkgname-$pkgver
-  if [[ -n "${SOURCE_DATE_EPOCH}" ]]; then
-    export MOZ_BUILD_DATE=$(date --date "@${SOURCE_DATE_EPOCH}" "+%Y%m%d%H%M%S")
-  fi
-  export MACH_USE_SYSTEM_PYTHON=1
-  ./mach configure
-  ./mach build
-  ./mach buildsymbols
-}
-
-package_thunderbird() {
-  optdepends=(
-    'libotr: OTR support for active one-to-one chats'
-    'libnotify: Notification integration'
-  )
-
-  cd $pkgname-$pkgver
-  DESTDIR="$pkgdir" ./mach install
-
-  install -Dm 644 ../vendor-prefs.js -t "$pkgdir/usr/lib/$pkgname/defaults/pref"
-  install -Dm 644 ../distribution.ini -t "$pkgdir/usr/lib/$pkgname/distribution"
-  install -Dm 644 ../thunderbird.desktop -t "$pkgdir/usr/share/applications"
-  install -Dm 644 comm/mail/branding/thunderbird/net.thunderbird.Thunderbird.appdata.xml \
-    "$pkgdir/usr/share/metainfo/net.thunderbird.Thunderbird.appdata.xml"
-
-  for i in 16 22 24 32 48 64 128 256; do
-    install -Dm644 comm/mail/branding/thunderbird/default${i}.png \
-      "$pkgdir/usr/share/icons/hicolor/${i}x${i}/apps/$pkgname.png"
-  done
-  install -Dm644 comm/mail/branding/thunderbird/TB-symbolic.svg \
-    "$pkgdir/usr/share/icons/hicolor/symbolic/apps/thunderbird-symbolic.svg"
-
-  # Use system-provided dictionaries
-  ln -Ts /usr/share/hunspell "$pkgdir/usr/lib/$pkgname/dictionaries"
-  ln -Ts /usr/share/hyphen "$pkgdir/usr/lib/$pkgname/hyphenation"
-
-  # Install a wrapper to avoid confusion about binary path
-  install -Dm755 /dev/stdin "$pkgdir/usr/bin/$pkgname" <<END
-#!/bin/sh
-exec /usr/lib/$pkgname/thunderbird "\$@"
-END
-
-  # Replace duplicate binary with wrapper
-  # https://bugzilla.mozilla.org/show_bug.cgi?id=658850
-  ln -srf "$pkgdir/usr/bin/$pkgname" \
-    "$pkgdir/usr/lib/$pkgname/thunderbird-bin"
-}
-
-_package_i18n() {
-  pkgdesc="$2 language pack for Thunderbird"
-  depends=("thunderbird>=$pkgver")
-  install -Dm644 thunderbird-i18n-$pkgver-$1.xpi \
-    "$pkgdir/usr/lib/thunderbird/extensions/langpack-$1 at thunderbird.mozilla.org.xpi"
-}
-
-_languages=(
-  'af     "Afrikaans"'
-  'ar     "Arabic"'
-  'ast    "Asturian"'
-  'be     "Belarusian"'
-  'bg     "Bulgarian"'
-  'br     "Breton"'
-  'ca     "Catalan"'
-  'cak    "Kaqchikel"'
-  'cs     "Czech"'
-  'cy     "Welsh"'
-  'da     "Danish"'
-  'de     "German"'
-  'dsb    "Lower Sorbian"'
-  'el     "Greek"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  'es-AR  "Spanish (Argentina)"'
-  'es-ES  "Spanish (Spain)"'
-  'et     "Estonian"'
-  'eu     "Basque"'
-  'fi     "Finnish"'
-  'fr     "French"'
-  'fy-NL  "Frisian"'
-  'ga-IE  "Irish"'
-  'gd     "Gaelic (Scotland)"'
-  'gl     "Galician"'
-  'he     "Hebrew"'
-  'hr     "Croatian"'
-  'hsb    "Upper Sorbian"'
-  'hu     "Hungarian"'
-  'hy-AM  "Armenian"'
-  'id     "Indonesian"'
-  'is     "Icelandic"'
-  'it     "Italian"'
-  'ja     "Japanese"'
-  'ka     "Georgian"'
-  'kab    "Kabyle"'
-  'kk     "Kazakh"'
-  'ko     "Korean"'
-  'lt     "Lithuanian"'
-  'ms     "Malay"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'nl     "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  'pa-IN  "Punjabi (India)"'
-  'pl     "Polish"'
-  'pt-BR  "Portuguese (Brazilian)"'
-  'pt-PT  "Portuguese (Portugal)"'
-  'rm     "Romansh"'
-  'ro     "Romanian"'
-  'ru     "Russian"'
-  'sk     "Slovak"'
-  'sl     "Slovenian"'
-  'sq     "Albanian"'
-  'sr     "Serbian"'
-  'sv-SE  "Swedish"'
-  'th     "Thai"'
-  'tr     "Turkish"'
-  'uk     "Ukrainian"'
-  'uz     "Uzbek"'
-  'vi     "Vietnamese"'
-  'zh-CN  "Chinese (Simplified)"'
-  'zh-TW  "Chinese (Traditional)"'
-)
-_url=https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/linux-x86_64/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=thunderbird-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=("thunderbird-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-    _package_i18n $_lang
-  }"
-done
-
-# Don't extract languages
-noextract=()
-for _src in "${source[@]%%::*}"; do
-    case "$_src" in 
-      *.xpi) noextract+=("$_src") ;;
-    esac
-done
-
-sha512sums=('f211ce2469f60862b1d641b5e165292d98db53695ab715090034c1ee2be7b04931f8e5e856b08b0c8c789e4d98df291d59283c257a38b556c0b4b0b63baa539f'
-            'SKIP'
-            'a0061fcb2a7f66061e336a8d95948592f56f4752e56467f14ba63846720ebf845cce7511d1a2637e3b80d5a1ffdaa2fb783fa37195103425ef65222d45372012'
-            '6918c0de63deeddc6f53b9ba331390556c12e0d649cf54587dfaabb98b32d6a597b63cf02809c7c58b15501720455a724d527375a8fb9d757ccca57460320734'
-            '5cd3ac4c94ef6dcce72fba02bc18b771a2f67906ff795e0e3d71ce7db6d8a41165bd5443908470915bdbdb98dddd9cf3f837c4ba3a36413f55ec570e6efdbb9f'
-            '328422adac0cfe6af4ecdcd864004b7ada8f8171aa954fecc23a7e883e90a9bb0848372faa1100440dc754922f965e1e7b98c185aa88df190bff1051d2146c85'
-            '7e43b1f25827ddae615ad43fc1e11c6ba439d6c2049477dfe60e00188a70c0a76160c59a97cc01d1fd99c476f261c7cecb57628b5be48874be7cf991c22db290'
-            'fe233687299fe0d98820fd65c47e0607e9e5ec3c88e25e38d744a2ce1ab0a58ed1366af37193b8e55482bbd540a6f5cf6406804967b960a7105045cd139f57a5'
-            '97d9c92619e9f41f24c792bb8eedd7920682a2a5830c73f48028f38b5e56048bb35703f1aa0b22f2de4f4cff94672805d366b61c8c235c700c12b22a7d0cece7'
-            '75aed1e96df9d56be6bde69374d6246e07b0eadc7d300601b0d40ae657c2a5eebe0b3ce66c8a43e23119a612d77905f31bbd0fec80da9ca0232154c9a8a56c2b'
-            '3ac5ef8e672d9fbfcd7b1c4dd5bd1e3b6e15602ae0ff50202f792a579f0b880ec319e56a68574beb7d4819949dbe7a77936ddb4d337cc1b58aabb35001716f62'
-            '606cbd6f0c71fa7b2adc6ddd6c818f4482fa58c062b2e35888ae69e5b06e76bb32bb96e9e8a4ccea8fe3ade05441c4ef1bc760d4c33c84f42da274d106d7fd3f'
-            '14f63603fa77a063d7767ba21bddabd82751f675905007a3918fe16bf07ab428dfcd10b0f56bcec24c5086cd83077a7a45ecd72829cb3f4fd93f35f5e47019f7'
-            '41f2c9e901240e6fa7cd68be3cec337b1289df78be4eabcabc19eaa169d7415b5cfbf1dd92e8b5512cf335862184ad442c279ed574d6425f3648d875a9e92155'
-            '3e0a8a54789ebb4259413d6c7454db00ae54f0ed07d91654447ade2fd97bfdcd8a89c3f56bcf2dc62b3ef1dbd5c0f339cee23bba853015ecd6ccb69b49f143db'
-            'b7579d169cc117b148f6917d8df7029dd00f89a225fbbe2759c395697452bbce95536fd770ee6777f8ed124e94c97e529a10793b3639c68c2a00bc4536a7424d'
-            '4168fae69988c6d4419582e0fd0c83462d25a5922ef773640eed644d85c299c80405437bfa38de6e48e288af60cdb8181622ee9b1407aa879b831bce90404088'
-            'a13da7ad24731a35f7cde54eea8975fe9d64291fa119467a2c22887d98640c6c977f643ced657a9841721ebaca293a278d8a290f3949a35b383b3fef89b23407'
-            '4d3a9e4eac0f89d154964bbfeadab269ae0ecd46cce5026efe34f4efbf0581bc7d24a9b66fe8c71b897f1fbd0020b72d823562afb6bb865ad4ec400cb16d9a2e'
-            'f09cae1db0807ee09caf985947b7f226b5ee0be5a737f66dd4886083eb5a2488101c1d8e960439fc0672705038fa36124a67fc42ae5078636b33e951bf5b5b3e'
-            '8f9d3b1f9dad86ab58537c1250b4aa4ddab4bc08272697dd10036c30f4f84dcb1086a00175a87824f5bcfe0c1ca86ab7bbc6495939ca9efa91f188da68c45b1e'
-            '3568f524501bed0a18c33aaa3dbd3407afc6a29d137a333096c83379fadf19be749eba6d01b94dfb9ecfef178f2ae86d8ad179bf0ff5e50638ddcd45e1d6218b'
-            'e451538df81559a848eb9a261b94873c519a436d24309a80e5c8494c6681d77dde8fd304141a9ddab5097d13d3790532b012855e7214868630ba955a1fd5b74a'
-            '8da292e3ca317c62c57793cab16b89e18df5767290f06675a08f42e6360f1896c356d30877dadb957780e5797ba7c319c68b2352f3942c1dc3751234b9512597'
-            'bc7c69fbe801258d44ea6ebcb82c6c80e4f134f08da1909e41a9904e4c4715b5ad81c9deac1f734f599378f4944032a29ddfeedc49261126138be1125ee617f0'
-            '3fb6ec3e750b32774b4017889450f3f131668279a548f7e1cc8da6b5ecebed1ac18728ad0c766fc83e257e809ef4c6d68790167c22d7ef13afdb2f5a70aa1e2c'
-            'e69c9b5d379feeee399a651c8f229d7025c734d5b244f0ef1051f3ecaf12f4ce74bb1dddc2024a88c1f74ffff9e720bb8dbd6c5ff50f6670a2f5b53484e61329'
-            '537035b24965935f1157a59564fb3978fff49833a2a3c7a1de09ac7fc3008332191a4b3f11510c7942525868fd8a2d0d690e5b16310fdedfaa56b76853183106'
-            '7abf38fd4eea006528789c107220a9af9f97d703809457f120a987d9d44b8da015fc15a3adfd5d3778a01a87776fcab74bf1c1e0daa64839db07154be2c957d1'
-            '7d11ca6a076e7a6e544861f3e9132b8ab5a65cbab7ef6538f0d2b1148813a4d9e10aaa585c3503049d4fbb74a8d0e1c3faf5edd9b669426434aa52c7ab1ba614'
-            '6352017a8f4e2e7647d8b12b0d3d2f82d1095bf8c1f294bac709db23a65352ddaffa97b026866fef3c0a9794b2e555f1b95bd92d0cc8da256238f1159ee0113d'
-            'a65b7ee6bbc632b82047c242a45aa283c727239a5a10b298ce58746929f8bd497b738bdae990d8c246f3b0309f325d2c48aaf5619a1dacee5ee82be76bdf59cb'
-            '4ea736050a32fa09108341d0c93ea321c42247398310b2a243c941470a0a67053c31949dc88ffc0090c0442284bf0b4eb387d924e6e1221b67f8a83ac748f034'
-            '786da9c3a6b4c9a045cbbf49db8f73525149538d133ac4f69f166ebec38ea0e303eae120e143e8b58182f7d096b49dd2b5645d0d61ec355251847cd4dc65005c'
-            '6cdd883b6394406a7d8b6d55c2fd9451f0da9b7c933d7705b8a034ece13865295df79f7e3c84b3b23e726fff10c669d590f8c5c65a95d8f9f15b42637e69e06d'
-            'd5f2346d312910b3ba4f6e941604c5d1b2b4acfd9e30ffbc45d546be64e43bfb13f52cb10427bd09313997717e8af4dc09dfc18d24cce489eeff0a99565be597'
-            '310e4bba9e7d3dd233576090508ed7b2792b4c35fc1d120c99e37bc43e5ad0d8ba1ba738ded79c529bdb91ea0c6383f68e4272b9c2b453709553112fcdba18e3'
-            'd4c223ef864b98087e19dcfa8ac00a54c70b00664c4eaeb5c24b1635d892d784762920a8c2ea8435ca74d58c0d259da1d46ad1cd9aa914f1afbd3c0b29a18248'
-            '53fdc04023b4e13cd264aad1c09855a06c3053b2146409e10199083b5ecd0ee3a81cb5926ad2132f29781772aef89a843c88ee8a6426766fb5381bc1a2f6ce21'
-            '875421007b3622569f2726b0154ab39b84eee029ea896f9723558a513ed4c4d6cce549515c5f47b064a30d4896ee7a3db363be7f9b7ac0d83436ad2a191315cf'
-            '6c771ebace3ca11ee123fc3f74bf5fa7aadda4889583d0142e1e59dc5567cdbbf77263a2b228ac0c181cb34eb2228c2ab016b6cc010187bd4e99829803f83ba7'
-            '1c65f926e42e95b2bd2972331d942181dd597550ac2b543beb1defa9cdf0d4f75f7521912bd954dd566caad5b28110087b8e07683dc02ebdf4f3c95b35404da6'
-            'dd1b00c6643c4e465d622ddccbcda8a8d83166524f0026443879cbfcdc80c0805705ae1675d9af759dd0b91710ebab19fda8b8f252faefde68674238ba41b2d8'
-            '3a97d12f5fa2fcec889bbcf6715f22797a57e02869e67036347c5bf4b2b56e36fda404b8c7824330c5ad8915f264995df96747e491666bdf081b4b5a6c7b7f7f'
-            'd319690de832a45f15021cacc3441e03ff1ef0ebe8beff9f959ffff97bcfca46dc03a9b6bd98e59eaece38a5085ab37f535cd1335f0a20506a495bdc7e4bcad0'
-            '4202412e97de11ab6bd131475eb0005d9fface4dd402d505e85a9b3102d234d01ffebf3c2fbb8aaeb995e62abbfa17c08545c57c5ab43856df929fd8bb1231ae'
-            '05af09d486310fb66ffb23bf70375b16449127f12022981f46ceb35849fdad5d96df3de53ed009934f6be337a866c6795853505991c7bbef09f321211dc82713'
-            '9a2e0b7b980f2a0fba50922e7d8455799b981b1b1ae4ec197b70d7982dfacd5d4ee5cfd393d031af7fea6477a397694fe91723396d7d2fe123ce51178ab1f3cd'
-            '8e5cebb9530cc0d803e5685ba9b476284098123bbc186d07ba49993c0d986d47e35b30e6601b9273dcf10d7c1172690bcf4780c74f7753e3ec1334f6a984103b'
-            '512135ced1be1f77a3d6482fa1b2798d90e6ad0b8bd225edbbbcbbee578adf5bfa1dfea00c9cf776bfdfdfc3df101e03d23f8d92c3b75927a59edf122abee3b7'
-            '8bee3198ffa595bcf09451e1a46dd3df1aef68b5db3e49c552d5f9bbd027457465795e13efb7f6a4ec64f747c26ebfda14c83b3e0d7df5d803d910fd9c1338ac'
-            '62281f22a8b8b9d91ecfabcca7d64117fdfc0c859b3acd42203ebbed9ad2fb32a49c5eb559c9e06861442d9372a5836c49e515c905faf315a3c751ee9728cad7'
-            '76a1ce0503ff56056c603ba758147b678fe0d579f51a0fca1d8c844b49922edcf897ff93115037625f22c014410322ec5e0a9b8224f62f69d770da484fe8d92e'
-            '2e82e3f8c23f14264e7ae7b0a631c85b734326edb006ac6fa8c44abb210bb0462a035319c7e7cc71611d28447e9821239284bde87e8ef59d9033bd24ddcc53fa'
-            '96994a1999ce19b39b03a7c4968f0f76b583c0a2316290a2fc9508dff1103fa0ecbdcef6b9e9b2dbd818b263c6cc30dad6ecfc81014e8d562a270a9f3b74c2a8'
-            '23db970eb1a35acc9b6ff2099570938795dc9e303e3080323d219bb1280bebd20d76e201da6984cd339765730407161ccecc30d795a29efb4323149c1100e1bd'
-            'bb80ce8a5233437cd21230de980603556069ca9644e83d537c8489d6c025a968d28e27d5bef6b185d8388885f5694ba5d490c0d86a561eb4de6834bae105503c'
-            '15575651bf962bf54b5d7c3bfa98e8569e7e86d9b3619eee19d36331aa5b26f156a107688b77bd2a8c36c3feaf602586ce7028fe0d5d0c84cd8fed5408890a1b'
-            '7859b8206b1da88927b13ba725a16d3d639d46471b24c1ba4d21deba0970886bb5cb0905d91303fdd701d44d163a661ae275682030cda6b69c10874e2a2582bb'
-            'ba70e27dc66f496bb478487ab2f2f3b24f6d8f041b41f591d82c2b4847af44e9cef5fae81f04967eb790cb94549451ee3715a81b71759a593217a9c9fd01b7eb'
-            'e9f06437ad084491d65f20514861f54ab282914772610c628d8fe7386ef33c103adc505eb657f421f9264826f9f0d59db5083b4f0505e7ccc1490488c60712c7'
-            '53bc013d695cd66535f1326235c7f4032b025576dd520bd9cb0bf63ad8db5e2e049032ff0394cc7bfa3ff52c88d878a30501c0fc0aed1717e6772dacbb9a749a'
-            'f0499184ad996f78842b78408ec9fbede4f1e1ad7b2bc078048ae9e3b10b1c2242f4af2669e3d1b497e9f61f1c5b728fe0f9fbc2311a4a0027c1fa92c0237c12'
-            '61444d9ae4dd342acce213d8204af12b6649ee5a845e0f9e26f4f80af65d03deb79a5a5d3a459416f9ac8e3c953d70dd2ab8bf30e921e4505fed4ab706cc273b'
-            '45d393f24bf151631bc5169569cad8fae93edebd823d0735fa461ff3d7157f1d4ccbdcd5d9b7fc83b66f6e04fb41f9ed14926b2bf0fbd03e2e44d669a08642a0'
-            'd643e452ac2cbec3ceb04c04422c388365a1e279bf0a584f96dd3c6d69c6ade8900ab11333ffbbb73d222f3a9c4055117838cbc7952cb185239ccb284a7a438a'
-            '293641b40d8c9aafab0b6613eb834df5f6826a07c9e0eec56e911014e78c8c7f51cb6bbe82f03a69e9e6d8c682518b82f844ef622eeb6bb15eb5fd17d3bcb367'
-            '471e45d92b58eb2995f90a404472180a67cc9796b34f641a6f7d451e5cbb71659aab0a82d75cd98e1e22a0e46b7632e100adf9432b91b2f6a80aac1812efaf65'
-            '6da9629097e5fe8cccc206ee5757aacfb6773bbad36b31c28130d49b2567cf8ef4020c368b7a5edaf27bfeb6a6bb57de50f3f0c427d6d78ffc78a2eb9ab09f6e'
-            '177386e71d50b36bab6beb79cd4b4dd0c5bc66c516f2df9b8c1900b978079f76bed769df78b9c941856928494068b15f79c38f13e3a0615c19a4223ce83cf7a1')
-
-# vim:set sw=2 et:

Copied: thunderbird/repos/extra-x86_64/PKGBUILD (from rev 425433, thunderbird/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-10-07 12:58:51 UTC (rev 425434)
@@ -0,0 +1,287 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
+# Contributor: Ionut Biru <ibiru at archlinux.org>
+# Contributor: Alexander Baldeck <alexander at archlinux.org>
+# Contributor: Dale Blount <dale at archlinux.org>
+# Contributor: Anders Bostrom <anders.bostrom at home.se>
+
+pkgbase=thunderbird
+pkgname=(thunderbird)
+pkgver=91.2.0
+pkgrel=1
+pkgdesc='Standalone mail and news reader from mozilla.org'
+url='https://www.mozilla.org/thunderbird/'
+arch=(x86_64)
+license=(MPL GPL LGPL)
+depends=(
+  glibc gtk3 libgdk-3.so libgtk-3.so mime-types dbus libdbus-1.so dbus-glib
+  alsa-lib nss hunspell sqlite ttf-font libvpx libvpx.so zlib bzip2 libbz2.so
+  botan libwebp libwebp.so libwebpdemux.so libevent libjpeg-turbo libffi
+  libffi.so nspr gcc-libs libx11 libxrender libxfixes libxext libxcomposite
+  libxdamage pango libpango-1.0.so cairo gdk-pixbuf2 icu libicui18n.so
+  libicuuc.so freetype2 libfreetype.so fontconfig libfontconfig.so glib2
+  libglib-2.0.so pixman libpixman-1.so gnupg
+)
+makedepends=(
+  unzip zip diffutils python python-setuptools yasm nasm mesa imake libpulse
+  xorg-server-xvfb autoconf2.13 rust clang llvm cbindgen nodejs
+  gawk perl findutils libotr
+)
+options=(!emptydirs !makeflags)
+source=(https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/source/thunderbird-$pkgver.source.tar.xz{,.asc}
+        thunderbird.desktop
+        vendor-prefs.js
+        distribution.ini
+        mozconfig.cfg
+        metainfo.patch)
+validpgpkeys=(
+  14F26682D0916CDD81E37B6D61B7B526D98F0353 # Mozilla Software Releases <release at mozilla.com>
+  4360FE2109C49763186F8E21EBE41E90F6F12F6D # Mozilla Software Releases <release at mozilla.com>
+)
+
+# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
+# Note: These are for Arch Linux use ONLY. For your own distribution, please
+# get your own set of keys. Feel free to contact foutrelis at archlinux.org for
+# more information.
+_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
+
+# Mozilla API keys (see https://location.services.mozilla.com/api)
+# Note: These are for Arch Linux use ONLY. For your own distribution, please
+# get your own set of keys. Feel free to contact heftig at archlinux.org for
+# more information.
+_mozilla_api_key=16674381-f021-49de-8622-3021c5942aff
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  echo "${noextract[@]}"
+
+  local src
+  for src in "${source[@]}"; do
+    src="${src%%::*}"
+    src="${src##*/}"
+    [[ $src = *.patch ]] || continue
+    echo "Applying patch $src..."
+    patch -Np1 < "../$src"
+  done
+
+  printf "%s" "$_google_api_key" >google-api-key
+  printf "%s" "$_mozilla_api_key" >mozilla-api-key
+  cp ../mozconfig.cfg .mozconfig
+  sed "s|@PWD@|${PWD at Q}|g" -i .mozconfig
+}
+
+build() {
+  cd $pkgname-$pkgver
+  if [[ -n "${SOURCE_DATE_EPOCH}" ]]; then
+    export MOZ_BUILD_DATE=$(date --date "@${SOURCE_DATE_EPOCH}" "+%Y%m%d%H%M%S")
+  fi
+  export MACH_USE_SYSTEM_PYTHON=1
+  ./mach configure
+  ./mach build
+  ./mach buildsymbols
+}
+
+package_thunderbird() {
+  optdepends=(
+    'libotr: OTR support for active one-to-one chats'
+    'libnotify: Notification integration'
+  )
+
+  cd $pkgname-$pkgver
+  DESTDIR="$pkgdir" ./mach install
+
+  install -Dm 644 ../vendor-prefs.js -t "$pkgdir/usr/lib/$pkgname/defaults/pref"
+  install -Dm 644 ../distribution.ini -t "$pkgdir/usr/lib/$pkgname/distribution"
+  install -Dm 644 ../thunderbird.desktop -t "$pkgdir/usr/share/applications"
+  install -Dm 644 comm/mail/branding/thunderbird/net.thunderbird.Thunderbird.appdata.xml \
+    "$pkgdir/usr/share/metainfo/net.thunderbird.Thunderbird.appdata.xml"
+
+  for i in 16 22 24 32 48 64 128 256; do
+    install -Dm644 comm/mail/branding/thunderbird/default${i}.png \
+      "$pkgdir/usr/share/icons/hicolor/${i}x${i}/apps/$pkgname.png"
+  done
+  install -Dm644 comm/mail/branding/thunderbird/TB-symbolic.svg \
+    "$pkgdir/usr/share/icons/hicolor/symbolic/apps/thunderbird-symbolic.svg"
+
+  # Use system-provided dictionaries
+  ln -Ts /usr/share/hunspell "$pkgdir/usr/lib/$pkgname/dictionaries"
+  ln -Ts /usr/share/hyphen "$pkgdir/usr/lib/$pkgname/hyphenation"
+
+  # Install a wrapper to avoid confusion about binary path
+  install -Dm755 /dev/stdin "$pkgdir/usr/bin/$pkgname" <<END
+#!/bin/sh
+exec /usr/lib/$pkgname/thunderbird "\$@"
+END
+
+  # Replace duplicate binary with wrapper
+  # https://bugzilla.mozilla.org/show_bug.cgi?id=658850
+  ln -srf "$pkgdir/usr/bin/$pkgname" \
+    "$pkgdir/usr/lib/$pkgname/thunderbird-bin"
+}
+
+_package_i18n() {
+  pkgdesc="$2 language pack for Thunderbird"
+  depends=("thunderbird>=$pkgver")
+  install -Dm644 thunderbird-i18n-$pkgver-$1.xpi \
+    "$pkgdir/usr/lib/thunderbird/extensions/langpack-$1 at thunderbird.mozilla.org.xpi"
+}
+
+_languages=(
+  'af     "Afrikaans"'
+  'ar     "Arabic"'
+  'ast    "Asturian"'
+  'be     "Belarusian"'
+  'bg     "Bulgarian"'
+  'br     "Breton"'
+  'ca     "Catalan"'
+  'cak    "Kaqchikel"'
+  'cs     "Czech"'
+  'cy     "Welsh"'
+  'da     "Danish"'
+  'de     "German"'
+  'dsb    "Lower Sorbian"'
+  'el     "Greek"'
+  'en-GB  "English (British)"'
+  'en-US  "English (US)"'
+  'es-AR  "Spanish (Argentina)"'
+  'es-ES  "Spanish (Spain)"'
+  'et     "Estonian"'
+  'eu     "Basque"'
+  'fi     "Finnish"'
+  'fr     "French"'
+  'fy-NL  "Frisian"'
+  'ga-IE  "Irish"'
+  'gd     "Gaelic (Scotland)"'
+  'gl     "Galician"'
+  'he     "Hebrew"'
+  'hr     "Croatian"'
+  'hsb    "Upper Sorbian"'
+  'hu     "Hungarian"'
+  'hy-AM  "Armenian"'
+  'id     "Indonesian"'
+  'is     "Icelandic"'
+  'it     "Italian"'
+  'ja     "Japanese"'
+  'ka     "Georgian"'
+  'kab    "Kabyle"'
+  'kk     "Kazakh"'
+  'ko     "Korean"'
+  'lt     "Lithuanian"'
+  'ms     "Malay"'
+  'nb-NO  "Norwegian (Bokmål)"'
+  'nl     "Dutch"'
+  'nn-NO  "Norwegian (Nynorsk)"'
+  'pa-IN  "Punjabi (India)"'
+  'pl     "Polish"'
+  'pt-BR  "Portuguese (Brazilian)"'
+  'pt-PT  "Portuguese (Portugal)"'
+  'rm     "Romansh"'
+  'ro     "Romanian"'
+  'ru     "Russian"'
+  'sk     "Slovak"'
+  'sl     "Slovenian"'
+  'sq     "Albanian"'
+  'sr     "Serbian"'
+  'sv-SE  "Swedish"'
+  'th     "Thai"'
+  'tr     "Turkish"'
+  'uk     "Ukrainian"'
+  'uz     "Uzbek"'
+  'vi     "Vietnamese"'
+  'zh-CN  "Chinese (Simplified)"'
+  'zh-TW  "Chinese (Traditional)"'
+)
+_url=https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/linux-x86_64/xpi
+
+for _lang in "${_languages[@]}"; do
+  _locale=${_lang%% *}
+  _pkgname=thunderbird-i18n-${_locale,,}
+
+  pkgname+=($_pkgname)
+  source+=("thunderbird-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
+  eval "package_$_pkgname() {
+    _package_i18n $_lang
+  }"
+done
+
+# Don't extract languages
+noextract=()
+for _src in "${source[@]%%::*}"; do
+    case "$_src" in 
+      *.xpi) noextract+=("$_src") ;;
+    esac
+done
+
+sha512sums=('1f21f77069490be2de131f6125a498c6ed0a7d10b2ff787891d8dea10019719fea8014a8b2d626a2365f10f6307b616e5f1eef2c601e4da5402c9d5fc7d35049'
+            'SKIP'
+            'a0061fcb2a7f66061e336a8d95948592f56f4752e56467f14ba63846720ebf845cce7511d1a2637e3b80d5a1ffdaa2fb783fa37195103425ef65222d45372012'
+            '6918c0de63deeddc6f53b9ba331390556c12e0d649cf54587dfaabb98b32d6a597b63cf02809c7c58b15501720455a724d527375a8fb9d757ccca57460320734'
+            '5cd3ac4c94ef6dcce72fba02bc18b771a2f67906ff795e0e3d71ce7db6d8a41165bd5443908470915bdbdb98dddd9cf3f837c4ba3a36413f55ec570e6efdbb9f'
+            '328422adac0cfe6af4ecdcd864004b7ada8f8171aa954fecc23a7e883e90a9bb0848372faa1100440dc754922f965e1e7b98c185aa88df190bff1051d2146c85'
+            '7e43b1f25827ddae615ad43fc1e11c6ba439d6c2049477dfe60e00188a70c0a76160c59a97cc01d1fd99c476f261c7cecb57628b5be48874be7cf991c22db290'
+            'b198473dc359ba37cb7f6b9f8b1a80d561097e175c9414a126ff9c38e26785b1654634229efa4fa76c0858c36a952683ae5d7c8fda162c719ee8a9b55d0dbbf8'
+            'fb5fcf402c1f59ca38b770b94eb74a86019c402043f3ad29252eaafec332fe8f6f0fb8feb125bd07b8b94ea093b2af58923ec9edd7a2f928654bf93e7de5eace'
+            'e0cb696cd0aa411e078935803891aada8af09a374d2f398dce731297c446c0ee6c5d0a538746cca535506da3ff050b2a957cf1fc40aeb53f9de578203df31f34'
+            '2d20e90d915f2786c63b1b78c5688e972d8162598900983777e8040cff3c69e0d72b8591b8e7ef35f05891ea4abeb69ff65b26e8debfdd2a6cc3a69f8a1a5c12'
+            'e9bb5bb68e299f66fd4fffc397858331c3473f2ef121a552b7f9b42fab3d83838be1558b29a1a57be74b9777e0a1a6609158a028e2be8470edac0c76b3d8aa6f'
+            'fe15cac167a0e6b6ad479376a326ee6db76ad7a10a1c94e77b32e20ceea0537611934d98dbc1837b0cc8c9f052b837c918dc6ad4273590c31da0d71327057f3e'
+            '2004d28ad94ac621d6c2a3ff62a5b686c83d3805857253c318e0acf1b57b6bd9656f48653cc3e457b93b2b3f1a17024434e56d057a36e9913cf5f234c486daca'
+            'bea303ee8396d9e3b425eb6b0d9de6299ff5105c3e4b3146abaa915b4c3d143d3fa1b72c8f120d69a8a276f0ae98b1e336149d74506e9334d10b6f116ed80c43'
+            'd9f1e3ce97f6cb868e1dd665ae07428a54bef9fb53cc07f961d83150e373868b5b5aba4268eaeddab16bf5216a07d429d87957ba257d73b8da90a38ed77f87a1'
+            '006766caadb0bc7e7a7fc9457f8c84df0e8a3b99ceb1085a954b0e22697c1c4762f8cedae613259b3e86b726e6b8feeee9a76fa5104e66dbdf665831c5d8aa23'
+            'a0fc15d8c3fe9b223969f9be1401a040ae0974c32f3326bd155026aa8249ed132eee441fdca520c9a38ec64fb486546a3531f6542ad9fbaf7624acb788457a0a'
+            '7e7ce1563cb70ac33697dc702d09a0db64c4bf87187208b2ea5d4c9702a8bac6dfc218a24dde4ec086408e34794821285bbac6d8a481bb23c7d617f10e24a82c'
+            '164c89005ad5576201c481870ced836f429907c61a615b571d31909d079eef556bd46979d926c6beb1b503d25a5d28939e6237ae21c7d296a6b345479301ae24'
+            '81128c8611bda866da6f611079fc28ef013f7eafd41c1d2614e5806f017c28094542c6167958b1d0cb2e646ab7256788e7e9ffcb52687b6d8cdb543595e8e9da'
+            'd8ec11e0004c25e912d0f0383b79d21636f90768d2e671aa211eff5a46df9592f1b4072b1fab3c60a98edc72fa59c6ef653e2bda6106e55eee0e7e9cf14c8334'
+            '852ccbc2456e2c826f6bfaa32934c16b2a5db527f02667049225926e9b091dedb79d0e1987036dd7658b87fa347531094a80541fe04d40a100c588be5aff5e90'
+            'ba625ae038b3abc7ee17e4eadcabe12800daea9310e4e19bf996e5e1c1fba2759f62026fbc25936e329dab3a98681738db529547c94fc3482e69ab35e024a25c'
+            '9faf1c97e29c960d21273a1b092450270e12972f377a2cb736d02a16ee2fad5aff220e2cc3376bf2cae72da67910e30609cbe1817d3ef04b5eee3fd0ef743dc2'
+            'eec7d98b5c0af188f9e5b6673699f112e5af3091b8043b27b4cffeb1a0e1c3a30795ef641354f53131650d66754b59105e0c65260b55f2faa8d4f9b874208ec8'
+            'ec8fd53d6a3183baa4772819ffcfd7774ccb8c0834ec0fb3f2fdd61cad57eab3e2716afc8f946e19a4dfcc3c22071cef5a02ab8af4c708546386016f8ec57066'
+            'b0ccf31edaa28a50876b3505fe5e95fb90e1def729165a53a9ba29c51716ba56e6bcbb7235c4fe64d36cb99b32966a1533b5709981370bf1f345ab20af9f9f0f'
+            'e1faf62370ffef42c1eee1b24361cb05d2b175229e720585d7d8df64d544126d76a3a9f4d9ccc9474e233a32da8766b20138a53e39ca9f5b55f9cfa0cf23c3c6'
+            '1be94fc8d3f79a55548a36adee7a1dd02b3fd1f7461a5827eb3c3174c1dbbf3383693ed627fd4b6aecefa2c5c2a547b10f3b7d4e33951dec22bdee956a896278'
+            'a0f7e509581d72ff074bb580f1b5dc208dee1f2b4a5179ba8e5d5a4b5d51c7b3a1ffe4653e1b1f7be9468f39adfd23446f19dd98fbdc04e916badae37b5bee83'
+            '3c29e322dfeaa92d062f13dd79eb19fdd588966531a45d96e9f373622f55715df5f1e96558ac7f3372c491a160ded396ac8c0a72fa4a13726a21cc363d353c9d'
+            '9bfc0324352a5073ff1443aeeec4bf1a03a56e90d432b2be5c83e2a167059e97a8806c71a2a5f0503f236cb32c4ee644d4b809f5c6cbe012a0660715e0275726'
+            'c494b1936bb489600d76d565da5d33275e3193b3f6c24fdb976d7b1ec5974b4f1f463025e62be5c7b6cace4d34ed87246a58c950b402e2e52fcdf71109694205'
+            '0250b853983b94d3a5ced8e84d3c009cc95413ffddc882c0883845d71f65ee0fb5bb9fe525f0e198944beec20b9f3eb6f6186fab23c63dc22a7088ddfe683b9c'
+            '58e32627ad0ce45a80a3c96b94dc9c37c296a83412dd10acc5bdc25ca6a1e9f73f02417deca6f6c95700195349583c08a818a1c5f4fb270c98d272c62ff7fce6'
+            'd5b1298cd71eabc5a684f2f5e3700cbfcf6c58a4b99eef3c4daeb64013a6c3a1b0e0f7c6e369112b648d5e9f6de4447d0b5a4fee123baeb0ce4156b0e660d690'
+            'b06027c9fa7d563802f73d533379b4d69f4532e546c2a17e55636c2ec9e30706af6022228daf19f78123ec4316fe02096c61f125bbb0ffcce61732c1116921da'
+            'abef9d910df71694ead71d1f6aac3cd8eb40baf2a6ead0da804d8a06926860114a42a66d093381fdfb258f4993e4466a22c576ba44a78b04161020db7a42810b'
+            'a7d692e37a6d0d1eb03534ca4ff2dcfa892d876724f8f18b41898ff4496c0aa2329cd163b6fce624cd0e9794bfc71cef06100d1d015acc2f253ebf1e01b1f462'
+            '561fd698ff77351bedbd8cf1779933f31bbfdb267bea23699f432d8d75974f703a31c92bdb03250a9db075fe266a2007923faa588af2a00d065359537633d0e3'
+            '8ea9fad2c25c761c4f53a34150cc2b45275db37a05e80db2173f1e4ee9286eb5ce166aff67239ec7f4fe218deb06f1d05cb53c2069afbd6930add8e750a8484e'
+            '74aa87aa525e55afbdbd97c4be326d1f055d788c1cecbc56bcade51acc3c42e090914f46bd6e69f2d36253b72c54e3eb5dd648c622fd86148bc50603f3228ca1'
+            '0d71dc368cfd356ff1624fb7ed0ab27b1b26cb8d5c1f6fb979b6d657f6b5670dfcbb677711c696d66617d1ae9132ca9290035d4e2d5ac53612a1973afc46c88a'
+            '4c0d2504889298f6f2fbe5e0f25d6b9c84e96f4af48c591dc897fe28343f042c382bf31a506e68c62165a5f0fa458d36001b78b33c4b8e360dfb76a7f4504e46'
+            'c4ef7684b982e39b4c84254e5c9aaa46473aaf9bf50194e6b3d71fd851ce2fef770cfc4231f1dfed76be7c2fd905939f89865aa2c85709278a4625a27beed5e2'
+            '16442d4825119dedc2101137e7d8c3f388ee726229d0bd643e2ea9a717b6e7372cf297f16caca8c77925597dca63293f8f813f49f4f6d695cdc434f91f49ece0'
+            '763fd50be253304b5f08472e125c4c01e800a0188af156560d1064a8dfad50e48887c98f11f8c14eb83ade8d4146c463b3615f6947dd2b91a96a225feb99b1b4'
+            'f7061cb2383773b4d12c6051b2af01def7baf92be6ed6a83e17811a5b18253f207f019662696c247ec7232f3b9e4c32a47d6c193e8458ebe5976dee4c2fb407a'
+            '4d558282b6bb1603757dc5e4f5fb9e52065c7c2b6e02b97c70f607c4f37846d3542f19d40d27dd278d216e82838211a3c39e2a5a8bd4714d5fa0ae0ae4048db2'
+            '10da9234ec723cbf7ee4783004bcd2f4d3b4060606952f989da572ff26f0b8f8e660cfeefec70fd4ee29c3b011eb37c64bcbcbfd573b5714f13bd9004b28d5e4'
+            'e556d46bca7f31759c22d641bd8b2e8a8e703368f1e52ad72aa58041a6b5a5f4ffc124373eec6646b0d2e18561c9bdbb513721c95b96305c6e92a6b33ed4a2eb'
+            '05f7df26ded41fc94f15950a840052baeb1894215a16c663548076357ae554a6127082142af6b574cbf2da50dbfbde227b5f187e860536eae70db89d29070e1e'
+            '013b6d48135eb2090f12632bff8fae9d830d0c426d785ad491e8828d9804f8264c5645a49d488440098a732127afb63ea65683f1091b1c26c94b524b9df6e656'
+            'eec6087b41424f4c86e45badd2a04fe922409f481bffbfb5326e2f657637d823c61d82b0f1143ad8f134389cf851b110f5a7d012c96f05b177a1efd8d087dd0b'
+            'e7ead29b4a183828272b3b34c17760316cbb54d19f56b7c4e2a30dee0712d050f457004c58d49c528dba0f7ab697bc59ca78241c35581818e35f284683835c65'
+            '67fc3f09dc1438282feeb341c4f013fb837c115272a860039914c215d11b4e97a7d90b15f6cb07bd311f56addd93c251148ec0ce06a79f266822efefd1b6c12b'
+            '9465a422c5a7f99f0a8ddb0c3bf86b6c0decd9a837fc7e1a870359f23138f54ea3f262034f784b17d6f244695e9e1ce6de74bbd24d7633209fbf679280a7fc4e'
+            'a3af5479475cd5bf2f807caa385aaa1bc024c62f4261077c1fb4a57d63b5c787885336e00efb15ca4dfe16f855637eec30f6b3b138eecddf8b91086e9af05fa0'
+            '313b30ffa4668c5745f9fa0e401bc0a568fd392d896fc4d33a96e04bc09cbd4c8cf143575956f63fef141ddf753b82bfd4051e33510f9c9885ba7337e38f9101'
+            '1eb6f6fd438473885f561fb0e0c29a870882669da3008f92ff41a0e0c1ff70e38014957b4883ac9e2d8843822f214e7e5011e22255688c1ec325238b05d3ad67'
+            '0eb7cd02b4b7616c609d9020a1e2e598fe7e32d4050600d4cc0bcd3828e5965b46f9ee5b0a44bc5478774bfa6c0f223bdcd7fc129cb2a62150aebc7bd5928e04'
+            '0d0e323e5a865850591a686e962af6605bcbce5e230a86f9fae9d91d6a59cbbb84ceb5e10d20dca3c646d760359e564f03bf954869acb5b0d3ef5d11a0f21541'
+            '6f52c06c5c1a2d58bd2f0b285c6428f3f0d5ce3217a8c99bc6225a976939ea3952c8f63267d7789504db65f2a05afcb23f9158ca88fe3f9e1dae784e4ed4b1c6'
+            '12ae23b0accb2e7a4b8f089d9f45059dc247ec02379b3b25879d520f17ccd867d52bd673e3c79f367df11867ebde2ac426be20ffa1051112aa53b7af96f16776'
+            '00e3518c0dee8409476ca0ce66b96e6d9eb6422ea554d261d336d9c2c947ab53c9499f3c25f0cd790744e2fd01351fd959e0d74652b52f521c6eaa10c12ec94c'
+            '9cfc2c2ec2abf017b85903ba91834a19236d797deb06b54c33dde374ee5a3861ac2cad71cc04d291288b1a0cb886a72f8effff1e26449b691cb070c014736010'
+            '57d1e6b2fa9691d821d9df597148b6c7ff15cbc3e8cc66e8d304f6350c65c93bd6d78c92888091fb48e140e11a61ee348b3f2af2e204c87452c0b43c725c3b64'
+            '75dcb09f6516ac60385baa8c84198011a96cdd1eb0b1b95646f4293a30bc4e1af3df5897f5c55549f2c1d943e2d69540b50af6a902a67841f38c250e8796bd74'
+            '3babe1aa43b99f20af967bbf2d064a6511d3ac5425dc067fcce7dfbae9f21963f6ada047c986611aa990196dfa63b91a0045bb78811217e8ff85daad9d26979a')
+
+# vim:set sw=2 et:

Deleted: distribution.ini
===================================================================
--- distribution.ini	2021-10-07 12:58:17 UTC (rev 425433)
+++ distribution.ini	2021-10-07 12:58:51 UTC (rev 425434)
@@ -1,8 +0,0 @@
-[Global]
-id=archlinux
-version=1.0
-about=Mozilla Thunderbird for Arch Linux
-
-[Preferences]
-app.distributor=archlinux
-app.distributor.channel=thunderbird

Copied: thunderbird/repos/extra-x86_64/distribution.ini (from rev 425433, thunderbird/trunk/distribution.ini)
===================================================================
--- distribution.ini	                        (rev 0)
+++ distribution.ini	2021-10-07 12:58:51 UTC (rev 425434)
@@ -0,0 +1,8 @@
+[Global]
+id=archlinux
+version=1.0
+about=Mozilla Thunderbird for Arch Linux
+
+[Preferences]
+app.distributor=archlinux
+app.distributor.channel=thunderbird

Deleted: metainfo.patch
===================================================================
--- metainfo.patch	2021-10-07 12:58:17 UTC (rev 425433)
+++ metainfo.patch	2021-10-07 12:58:51 UTC (rev 425434)
@@ -1,11 +0,0 @@
-diff -Naur thunderbird-78.9.1.orig/comm/mail/branding/thunderbird/net.thunderbird.Thunderbird.appdata.xml thunderbird-78.9.1/comm/mail/branding/thunderbird/net.thunderbird.Thunderbird.appdata.xml
---- thunderbird-78.9.1.orig/comm/mail/branding/thunderbird/net.thunderbird.Thunderbird.appdata.xml	2021-04-17 02:05:05.808596043 +0000
-+++ thunderbird-78.9.1/comm/mail/branding/thunderbird/net.thunderbird.Thunderbird.appdata.xml	2021-04-17 02:06:12.052455998 +0000
-@@ -1,6 +1,7 @@
- <?xml version="1.0" encoding="UTF-8"?>
- <component type="desktop-application">
-   <id>net.thunderbird.Thunderbird</id>
-+  <launchable type="desktop-id">thunderbird.desktop</launchable>
-   <metadata_license>CC0-1.0</metadata_license>
-   <name>Thunderbird</name>
-   <summary>Thunderbird is a free and open source email, newsfeed, chat, and calendaring client</summary>

Copied: thunderbird/repos/extra-x86_64/metainfo.patch (from rev 425433, thunderbird/trunk/metainfo.patch)
===================================================================
--- metainfo.patch	                        (rev 0)
+++ metainfo.patch	2021-10-07 12:58:51 UTC (rev 425434)
@@ -0,0 +1,11 @@
+diff -Naur thunderbird-78.9.1.orig/comm/mail/branding/thunderbird/net.thunderbird.Thunderbird.appdata.xml thunderbird-78.9.1/comm/mail/branding/thunderbird/net.thunderbird.Thunderbird.appdata.xml
+--- thunderbird-78.9.1.orig/comm/mail/branding/thunderbird/net.thunderbird.Thunderbird.appdata.xml	2021-04-17 02:05:05.808596043 +0000
++++ thunderbird-78.9.1/comm/mail/branding/thunderbird/net.thunderbird.Thunderbird.appdata.xml	2021-04-17 02:06:12.052455998 +0000
+@@ -1,6 +1,7 @@
+ <?xml version="1.0" encoding="UTF-8"?>
+ <component type="desktop-application">
+   <id>net.thunderbird.Thunderbird</id>
++  <launchable type="desktop-id">thunderbird.desktop</launchable>
+   <metadata_license>CC0-1.0</metadata_license>
+   <name>Thunderbird</name>
+   <summary>Thunderbird is a free and open source email, newsfeed, chat, and calendaring client</summary>

Deleted: mozconfig.cfg
===================================================================
--- mozconfig.cfg	2021-10-07 12:58:17 UTC (rev 425433)
+++ mozconfig.cfg	2021-10-07 12:58:51 UTC (rev 425434)
@@ -1,47 +0,0 @@
-ac_add_options --enable-application=comm/mail
-
-ac_add_options --prefix=/usr
-ac_add_options --enable-release
-ac_add_options --enable-linker=gold
-ac_add_options --enable-hardening
-ac_add_options --enable-optimize
-ac_add_options --enable-rust-simd
-# https://bugzilla.mozilla.org/show_bug.cgi?id=1423822
-ac_add_options --disable-elf-hack
-
-# Branding
-ac_add_options --enable-official-branding
-ac_add_options --enable-update-channel=release
-ac_add_options --with-distribution-id=org.archlinux
-
-# Keys
-ac_add_options --with-google-location-service-api-keyfile=@PWD@/google-api-key
-ac_add_options --with-google-safebrowsing-api-keyfile=@PWD@/google-api-key
-ac_add_options --with-mozilla-api-keyfile=@PWD@/mozilla-api-key
-
-# System libraries
-ac_add_options --with-system-zlib
-ac_add_options --with-system-bz2
-ac_add_options --with-system-icu
-ac_add_options --with-system-jpeg
-# does not have APNG support
-# ac_add_options --with-system-png
-ac_add_options --with-system-libvpx
-ac_add_options --with-system-nspr
-ac_add_options --with-system-nss
-ac_add_options --with-system-botan
-ac_add_options --with-system-webp
-ac_add_options --with-system-libevent
-ac_add_options --with-system-ffi
-ac_add_options --with-system-pixman
-
-# Features
-ac_add_options --enable-alsa
-ac_add_options --enable-openpgp
-ac_add_options --disable-jack
-ac_add_options --disable-crashreporter
-ac_add_options --disable-updater
-
-# System addons
-ac_add_options --with-unsigned-addon-scopes=app,system
-ac_add_options --allow-addon-sideload

Copied: thunderbird/repos/extra-x86_64/mozconfig.cfg (from rev 425433, thunderbird/trunk/mozconfig.cfg)
===================================================================
--- mozconfig.cfg	                        (rev 0)
+++ mozconfig.cfg	2021-10-07 12:58:51 UTC (rev 425434)
@@ -0,0 +1,47 @@
+ac_add_options --enable-application=comm/mail
+
+ac_add_options --prefix=/usr
+ac_add_options --enable-release
+ac_add_options --enable-linker=gold
+ac_add_options --enable-hardening
+ac_add_options --enable-optimize
+ac_add_options --enable-rust-simd
+# https://bugzilla.mozilla.org/show_bug.cgi?id=1423822
+ac_add_options --disable-elf-hack
+
+# Branding
+ac_add_options --enable-official-branding
+ac_add_options --enable-update-channel=release
+ac_add_options --with-distribution-id=org.archlinux
+
+# Keys
+ac_add_options --with-google-location-service-api-keyfile=@PWD@/google-api-key
+ac_add_options --with-google-safebrowsing-api-keyfile=@PWD@/google-api-key
+ac_add_options --with-mozilla-api-keyfile=@PWD@/mozilla-api-key
+
+# System libraries
+ac_add_options --with-system-zlib
+ac_add_options --with-system-bz2
+ac_add_options --with-system-icu
+ac_add_options --with-system-jpeg
+# does not have APNG support
+# ac_add_options --with-system-png
+ac_add_options --with-system-libvpx
+ac_add_options --with-system-nspr
+ac_add_options --with-system-nss
+ac_add_options --with-system-botan
+ac_add_options --with-system-webp
+ac_add_options --with-system-libevent
+ac_add_options --with-system-ffi
+ac_add_options --with-system-pixman
+
+# Features
+ac_add_options --enable-alsa
+ac_add_options --enable-openpgp
+ac_add_options --disable-jack
+ac_add_options --disable-crashreporter
+ac_add_options --disable-updater
+
+# System addons
+ac_add_options --with-unsigned-addon-scopes=app,system
+ac_add_options --allow-addon-sideload

Deleted: thunderbird.desktop
===================================================================
--- thunderbird.desktop	2021-10-07 12:58:17 UTC (rev 425433)
+++ thunderbird.desktop	2021-10-07 12:58:51 UTC (rev 425434)
@@ -1,173 +0,0 @@
-[Desktop Entry]
-Name=Thunderbird
-Comment=Send and receive mail with Thunderbird
-Comment[ast]=Lleer y escribir corréu electrónicu
-Comment[ca]=Llegiu i escriviu correu
-Comment[cs]=Čtení a psaní pošty
-Comment[da]=Skriv/læs e-post/nyhedsgruppe med Mozilla Thunderbird
-Comment[de]=E-Mails und Nachrichten mit Thunderbird lesen und schreiben
-Comment[el]=Διαβάστε και γράψτε γράμματα με το Mozilla Thunderbird
-Comment[es]=Lea y escriba correos y noticias con Thunderbird
-Comment[fi]=Lue ja kirjoita sähköposteja
-Comment[fr]=Lire et écrire des courriels
-Comment[gl]=Lea e escriba correo electrónico
-Comment[he]=קריאה/כתיבה של דוא״ל/חדשות באמצעות Mozilla Thunderbird
-Comment[hr]=Čitajte/šaljite e-poštu s Thunderbird
-Comment[hu]=Levelek írása és olvasása a Thunderbirddel
-Comment[it]=Per leggere e scrivere email
-Comment[ja]=メールの読み書き
-Comment[ko]=Mozilla Thunderbird 메일/뉴스 읽기 및 쓰기 클라이언트
-Comment[nl]=E-mail/nieuws lezen en schrijven met Mozilla Thunderbird
-Comment[pl]=Czytanie i wysyłanie e-maili
-Comment[pt_BR]=Leia e escreva suas mensagens
-Comment[ru]=Читайте и пишите письма
-Comment[sk]=Čítajte a píšte poštu pomocou programu Thunderbird
-Comment[sv]=Läs och skriv e-post
-Comment[ug]=ئېلخەت ۋە خەۋەرلەرنى Mozilla Thunderbird دا كۆرۈش ۋە يېزىش
-Comment[uk]=Читання та написання листів
-Comment[vi]=Đọc và soạn thư điện tử
-Comment[zh_CN]=阅读邮件或新闻
-Comment[zh_TW]=以 Mozilla Thunderbird 讀寫郵件或新聞
-GenericName=Mail Client
-GenericName[ast]=Client de correu
-GenericName[ca]=Client de correu
-GenericName[cs]=Poštovní klient
-GenericName[da]=E-postklient
-GenericName[de]=E-Mail-Anwendung
-GenericName[el]=Λογισμικό αλληλογραφίας
-GenericName[es]=Cliente de correo
-GenericName[fi]=Sähköpostiohjelma
-GenericName[fr]=Client de messagerie
-GenericName[gl]=Cliente de correo electrónico
-GenericName[he]=לקוח דוא״ל
-GenericName[hr]=Klijent e-pošte
-GenericName[hu]=Levelezőkliens
-GenericName[it]=Client email
-GenericName[ja]=電子メールクライアント
-GenericName[ko]=메일 클라이언트
-GenericName[nl]=E-mailprogramma
-GenericName[pl]=Klient poczty
-GenericName[pt_BR]=Cliente de E-mail
-GenericName[ru]=Почтовый клиент
-GenericName[sk]=Poštový klient
-GenericName[ug]=ئېلخەت دېتالى
-GenericName[uk]=Поштова програма
-GenericName[vi]=Phần mềm khách quản lý thư điện tử
-GenericName[zh_CN]=邮件新闻客户端
-GenericName[zh_TW]=郵件用戶端
-Exec=/usr/lib/thunderbird/thunderbird %u
-Terminal=false
-Type=Application
-Icon=thunderbird
-Categories=Network;Email;
-MimeType=message/rfc822;x-scheme-handler/mailto;application/x-xpinstall;
-StartupNotify=true
-Actions=ComposeMessage;OpenAddressBook;
-
-[Desktop Action ComposeMessage]
-Name=Write new message
-Name[ar]=اكتب رسالة جديدة
-Name[ast]=Redactar mensaxe nuevu
-Name[be]=Напісаць новы ліст
-Name[bg]=Съставяне на ново съобщение
-Name[br]=Skrivañ ur gemennadenn nevez
-Name[ca]=Escriu un missatge nou
-Name[cs]=Napsat novou zprávu
-Name[da]=Skriv en ny meddelelse
-Name[de]=Neue Nachricht verfassen
-Name[el]=Σύνταξη νέου μηνύματος
-Name[es_AR]=Escribir un nuevo mensaje
-Name[es_ES]=Redactar nuevo mensaje
-Name[et]=Kirjuta uus kiri
-Name[eu]=Idatzi mezu berria
-Name[fi]=Kirjoita uusi viesti
-Name[fr]=Rédiger un nouveau message
-Name[fy_NL]=Skriuw in nij berjocht
-Name[ga_IE]=Scríobh teachtaireacht nua
-Name[gd]=Sgrìobh teachdaireachd ùr
-Name[gl]=Escribir unha nova mensaxe
-Name[he]=כתיבת הודעה חדשה
-Name[hr]=Piši novu poruku
-Name[hu]=Új üzenet írása
-Name[hy_AM]=Գրել նոր նամակ
-Name[is]=SKrifa nýjan póst
-Name[it]=Scrivi nuovo messaggio
-Name[ja]=新しいメッセージを作成する
-Name[ko]=새 메시지 작성
-Name[lt]=Rašyti naują laišką
-Name[nb_NO]=Skriv ny melding
-Name[nl]=Nieuw bericht aanmaken
-Name[nn_NO]=Skriv ny melding
-Name[pl]=Nowa wiadomość
-Name[pt_BR]=Nova mensagem
-Name[pt_PT]=Escrever nova mensagem
-Name[rm]=Scriver in nov messadi
-Name[ro]=Scrie un mesaj nou
-Name[ru]=Создать новое сообщение
-Name[si]=නව ලිපියක් ලියන්න
-Name[sk]=Nová e-mailová správa
-Name[sl]=Sestavi novo sporočilo
-Name[sq]=Shkruani mesazh të ri
-Name[sr]=Писање нове поруке
-Name[sv_SE]=Skriv ett nytt meddelande
-Name[ta_LK]=புதிய செய்தியை எழுதுக
-Name[tr]=Yeni ileti yaz
-Name[uk]=Написати нового листа
-Name[vi]=Viết thư mới
-Name[zh_CN]=编写新消息
-Name[zh_TW]=寫一封新訊息
-Exec=/usr/lib/thunderbird/thunderbird -compose
-
-[Desktop Action OpenAddressBook]
-Name=Open address book
-Name[ar]=افتح دفتر العناوين
-Name[ast]=Abrir llibreta de direiciones
-Name[be]=Адкрыць адрасную кнігу
-Name[bg]=Отваряне на адресник
-Name[br]=Digeriñ ur c'harned chomlec'hioù
-Name[ca]=Obre la llibreta d'adreces
-Name[cs]=Otevřít Adresář
-Name[da]=Åbn adressebog
-Name[de]=Adressbuch öffnen
-Name[el]=Άνοιγμα ευρετηρίου διευθύνσεων
-Name[es_AR]=Abrir libreta de direcciones
-Name[es_ES]=Abrir libreta de direcciones
-Name[et]=Ava aadressiraamat
-Name[eu]=Ireki helbide-liburua
-Name[fi]=Avaa osoitekirja
-Name[fr]=Ouvrir un carnet d'adresses
-Name[fy_NL]=Iepenje adresboek
-Name[ga_IE]=Oscail leabhar seoltaí
-Name[gd]=Fosgail leabhar-sheòlaidhean
-Name[gl]=Abrir a axenda de enderezos
-Name[he]=פתיחת ספר כתובות
-Name[hr]=Otvori adresar
-Name[hu]=Címjegyzék megnyitása
-Name[hy_AM]=Բացել Հասցեագիրքը
-Name[is]=Opna nafnaskrá
-Name[it]=Apri rubrica
-Name[ja]=アドレス帳を開く
-Name[ko]=주소록 열기
-Name[lt]=Atverti adresų knygą
-Name[nb_NO]=Åpne adressebok
-Name[nl]=Adresboek openen
-Name[nn_NO]=Opne adressebok
-Name[pl]=Książka adresowa
-Name[pt_BR]=Catálogo de endereços
-Name[pt_PT]=Abrir livro de endereços
-Name[rm]=Avrir il cudeschet d'adressas
-Name[ro]=Deschide agenda de contacte
-Name[ru]=Открыть адресную книгу
-Name[si]=ලිපින පොත විවෘත කරන්න
-Name[sk]=Otvoriť adresár
-Name[sl]=Odpri adressar
-Name[sq]=Hapni libër adresash
-Name[sr]=Отвори адресар
-Name[sv_SE]=Öppna adressboken
-Name[ta_LK]=முகவரி பத்தகத்தை திறக்க
-Name[tr]=Adres defterini aç
-Name[uk]=Відкрити адресну книгу
-Name[vi]=Mở sổ địa chỉ
-Name[zh_CN]=打开通讯录
-Name[zh_TW]=開啟通訊錄
-Exec=/usr/lib/thunderbird/thunderbird -addressbook

Copied: thunderbird/repos/extra-x86_64/thunderbird.desktop (from rev 425433, thunderbird/trunk/thunderbird.desktop)
===================================================================
--- thunderbird.desktop	                        (rev 0)
+++ thunderbird.desktop	2021-10-07 12:58:51 UTC (rev 425434)
@@ -0,0 +1,173 @@
+[Desktop Entry]
+Name=Thunderbird
+Comment=Send and receive mail with Thunderbird
+Comment[ast]=Lleer y escribir corréu electrónicu
+Comment[ca]=Llegiu i escriviu correu
+Comment[cs]=Čtení a psaní pošty
+Comment[da]=Skriv/læs e-post/nyhedsgruppe med Mozilla Thunderbird
+Comment[de]=E-Mails und Nachrichten mit Thunderbird lesen und schreiben
+Comment[el]=Διαβάστε και γράψτε γράμματα με το Mozilla Thunderbird
+Comment[es]=Lea y escriba correos y noticias con Thunderbird
+Comment[fi]=Lue ja kirjoita sähköposteja
+Comment[fr]=Lire et écrire des courriels
+Comment[gl]=Lea e escriba correo electrónico
+Comment[he]=קריאה/כתיבה של דוא״ל/חדשות באמצעות Mozilla Thunderbird
+Comment[hr]=Čitajte/šaljite e-poštu s Thunderbird
+Comment[hu]=Levelek írása és olvasása a Thunderbirddel
+Comment[it]=Per leggere e scrivere email
+Comment[ja]=メールの読み書き
+Comment[ko]=Mozilla Thunderbird 메일/뉴스 읽기 및 쓰기 클라이언트
+Comment[nl]=E-mail/nieuws lezen en schrijven met Mozilla Thunderbird
+Comment[pl]=Czytanie i wysyłanie e-maili
+Comment[pt_BR]=Leia e escreva suas mensagens
+Comment[ru]=Читайте и пишите письма
+Comment[sk]=Čítajte a píšte poštu pomocou programu Thunderbird
+Comment[sv]=Läs och skriv e-post
+Comment[ug]=ئېلخەت ۋە خەۋەرلەرنى Mozilla Thunderbird دا كۆرۈش ۋە يېزىش
+Comment[uk]=Читання та написання листів
+Comment[vi]=Đọc và soạn thư điện tử
+Comment[zh_CN]=阅读邮件或新闻
+Comment[zh_TW]=以 Mozilla Thunderbird 讀寫郵件或新聞
+GenericName=Mail Client
+GenericName[ast]=Client de correu
+GenericName[ca]=Client de correu
+GenericName[cs]=Poštovní klient
+GenericName[da]=E-postklient
+GenericName[de]=E-Mail-Anwendung
+GenericName[el]=Λογισμικό αλληλογραφίας
+GenericName[es]=Cliente de correo
+GenericName[fi]=Sähköpostiohjelma
+GenericName[fr]=Client de messagerie
+GenericName[gl]=Cliente de correo electrónico
+GenericName[he]=לקוח דוא״ל
+GenericName[hr]=Klijent e-pošte
+GenericName[hu]=Levelezőkliens
+GenericName[it]=Client email
+GenericName[ja]=電子メールクライアント
+GenericName[ko]=메일 클라이언트
+GenericName[nl]=E-mailprogramma
+GenericName[pl]=Klient poczty
+GenericName[pt_BR]=Cliente de E-mail
+GenericName[ru]=Почтовый клиент
+GenericName[sk]=Poštový klient
+GenericName[ug]=ئېلخەت دېتالى
+GenericName[uk]=Поштова програма
+GenericName[vi]=Phần mềm khách quản lý thư điện tử
+GenericName[zh_CN]=邮件新闻客户端
+GenericName[zh_TW]=郵件用戶端
+Exec=/usr/lib/thunderbird/thunderbird %u
+Terminal=false
+Type=Application
+Icon=thunderbird
+Categories=Network;Email;
+MimeType=message/rfc822;x-scheme-handler/mailto;application/x-xpinstall;
+StartupNotify=true
+Actions=ComposeMessage;OpenAddressBook;
+
+[Desktop Action ComposeMessage]
+Name=Write new message
+Name[ar]=اكتب رسالة جديدة
+Name[ast]=Redactar mensaxe nuevu
+Name[be]=Напісаць новы ліст
+Name[bg]=Съставяне на ново съобщение
+Name[br]=Skrivañ ur gemennadenn nevez
+Name[ca]=Escriu un missatge nou
+Name[cs]=Napsat novou zprávu
+Name[da]=Skriv en ny meddelelse
+Name[de]=Neue Nachricht verfassen
+Name[el]=Σύνταξη νέου μηνύματος
+Name[es_AR]=Escribir un nuevo mensaje
+Name[es_ES]=Redactar nuevo mensaje
+Name[et]=Kirjuta uus kiri
+Name[eu]=Idatzi mezu berria
+Name[fi]=Kirjoita uusi viesti
+Name[fr]=Rédiger un nouveau message
+Name[fy_NL]=Skriuw in nij berjocht
+Name[ga_IE]=Scríobh teachtaireacht nua
+Name[gd]=Sgrìobh teachdaireachd ùr
+Name[gl]=Escribir unha nova mensaxe
+Name[he]=כתיבת הודעה חדשה
+Name[hr]=Piši novu poruku
+Name[hu]=Új üzenet írása
+Name[hy_AM]=Գրել նոր նամակ
+Name[is]=SKrifa nýjan póst
+Name[it]=Scrivi nuovo messaggio
+Name[ja]=新しいメッセージを作成する
+Name[ko]=새 메시지 작성
+Name[lt]=Rašyti naują laišką
+Name[nb_NO]=Skriv ny melding
+Name[nl]=Nieuw bericht aanmaken
+Name[nn_NO]=Skriv ny melding
+Name[pl]=Nowa wiadomość
+Name[pt_BR]=Nova mensagem
+Name[pt_PT]=Escrever nova mensagem
+Name[rm]=Scriver in nov messadi
+Name[ro]=Scrie un mesaj nou
+Name[ru]=Создать новое сообщение
+Name[si]=නව ලිපියක් ලියන්න
+Name[sk]=Nová e-mailová správa
+Name[sl]=Sestavi novo sporočilo
+Name[sq]=Shkruani mesazh të ri
+Name[sr]=Писање нове поруке
+Name[sv_SE]=Skriv ett nytt meddelande
+Name[ta_LK]=புதிய செய்தியை எழுதுக
+Name[tr]=Yeni ileti yaz
+Name[uk]=Написати нового листа
+Name[vi]=Viết thư mới
+Name[zh_CN]=编写新消息
+Name[zh_TW]=寫一封新訊息
+Exec=/usr/lib/thunderbird/thunderbird -compose
+
+[Desktop Action OpenAddressBook]
+Name=Open address book
+Name[ar]=افتح دفتر العناوين
+Name[ast]=Abrir llibreta de direiciones
+Name[be]=Адкрыць адрасную кнігу
+Name[bg]=Отваряне на адресник
+Name[br]=Digeriñ ur c'harned chomlec'hioù
+Name[ca]=Obre la llibreta d'adreces
+Name[cs]=Otevřít Adresář
+Name[da]=Åbn adressebog
+Name[de]=Adressbuch öffnen
+Name[el]=Άνοιγμα ευρετηρίου διευθύνσεων
+Name[es_AR]=Abrir libreta de direcciones
+Name[es_ES]=Abrir libreta de direcciones
+Name[et]=Ava aadressiraamat
+Name[eu]=Ireki helbide-liburua
+Name[fi]=Avaa osoitekirja
+Name[fr]=Ouvrir un carnet d'adresses
+Name[fy_NL]=Iepenje adresboek
+Name[ga_IE]=Oscail leabhar seoltaí
+Name[gd]=Fosgail leabhar-sheòlaidhean
+Name[gl]=Abrir a axenda de enderezos
+Name[he]=פתיחת ספר כתובות
+Name[hr]=Otvori adresar
+Name[hu]=Címjegyzék megnyitása
+Name[hy_AM]=Բացել Հասցեագիրքը
+Name[is]=Opna nafnaskrá
+Name[it]=Apri rubrica
+Name[ja]=アドレス帳を開く
+Name[ko]=주소록 열기
+Name[lt]=Atverti adresų knygą
+Name[nb_NO]=Åpne adressebok
+Name[nl]=Adresboek openen
+Name[nn_NO]=Opne adressebok
+Name[pl]=Książka adresowa
+Name[pt_BR]=Catálogo de endereços
+Name[pt_PT]=Abrir livro de endereços
+Name[rm]=Avrir il cudeschet d'adressas
+Name[ro]=Deschide agenda de contacte
+Name[ru]=Открыть адресную книгу
+Name[si]=ලිපින පොත විවෘත කරන්න
+Name[sk]=Otvoriť adresár
+Name[sl]=Odpri adressar
+Name[sq]=Hapni libër adresash
+Name[sr]=Отвори адресар
+Name[sv_SE]=Öppna adressboken
+Name[ta_LK]=முகவரி பத்தகத்தை திறக்க
+Name[tr]=Adres defterini aç
+Name[uk]=Відкрити адресну книгу
+Name[vi]=Mở sổ địa chỉ
+Name[zh_CN]=打开通讯录
+Name[zh_TW]=開啟通訊錄
+Exec=/usr/lib/thunderbird/thunderbird -addressbook

Deleted: vendor-prefs.js
===================================================================
--- vendor-prefs.js	2021-10-07 12:58:17 UTC (rev 425433)
+++ vendor-prefs.js	2021-10-07 12:58:51 UTC (rev 425434)
@@ -1,17 +0,0 @@
-// Use LANG environment variable to choose locale
-pref("intl.locale.requested", "");
-
-// Use system-provided dictionaries
-pref("spellchecker.dictionary_path", "/usr/share/hunspell");
-
-// Disable default mailer checking
-pref("mail.shell.checkDefaultMail", false);
-
-// Don't disable our bundled extensions in the application directory
-pref("extensions.autoDisableScopes", 11);
-pref("extensions.shownSelectionUI", true);
-
-// Disable telemetry
-pref("datareporting.healthreport.uploadEnabled", false);
-pref("datareporting.policy.dataSubmissionEnabled", false);
-pref("toolkit.telemetry.archive.enabled", false);

Copied: thunderbird/repos/extra-x86_64/vendor-prefs.js (from rev 425433, thunderbird/trunk/vendor-prefs.js)
===================================================================
--- vendor-prefs.js	                        (rev 0)
+++ vendor-prefs.js	2021-10-07 12:58:51 UTC (rev 425434)
@@ -0,0 +1,17 @@
+// Use LANG environment variable to choose locale
+pref("intl.locale.requested", "");
+
+// Use system-provided dictionaries
+pref("spellchecker.dictionary_path", "/usr/share/hunspell");
+
+// Disable default mailer checking
+pref("mail.shell.checkDefaultMail", false);
+
+// Don't disable our bundled extensions in the application directory
+pref("extensions.autoDisableScopes", 11);
+pref("extensions.shownSelectionUI", true);
+
+// Disable telemetry
+pref("datareporting.healthreport.uploadEnabled", false);
+pref("datareporting.policy.dataSubmissionEnabled", false);
+pref("toolkit.telemetry.archive.enabled", false);



More information about the arch-commits mailing list