summaryrefslogtreecommitdiff
path: root/libre
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2017-06-16 08:00:18 +0200
committerAndreas Grapentin <andreas@grapentin.org>2017-06-16 08:00:30 +0200
commit9e5162ae32ae9428f0ee4b7302a77a3ab16732ba (patch)
tree3f1cd59f8a46eb4d5930e8c4189543e066a7e29a /libre
parent79d9170b430c631e2e8942d7a42e7d5fcad80ce6 (diff)
downloadabslibre-9e5162ae32ae9428f0ee4b7302a77a3ab16732ba.tar.gz
abslibre-9e5162ae32ae9428f0ee4b7302a77a3ab16732ba.tar.bz2
abslibre-9e5162ae32ae9428f0ee4b7302a77a3ab16732ba.zip
libre/icedove: updated to 52.2.0
Diffstat (limited to 'libre')
-rw-r--r--libre/icedove/PKGBUILD16
-rw-r--r--libre/icedove/no-crmf.patch39
2 files changed, 50 insertions, 5 deletions
diff --git a/libre/icedove/PKGBUILD b/libre/icedove/PKGBUILD
index dd9bcb606..3c6a37bc0 100644
--- a/libre/icedove/PKGBUILD
+++ b/libre/icedove/PKGBUILD
@@ -8,8 +8,8 @@ _oldname=thunderbird
pkgname=icedove
epoch=1
-pkgver=52.1.1
-pkgrel=2
+pkgver=52.2.0
+pkgrel=1
_brandingver=52.1
_brandingrel=1
@@ -46,8 +46,9 @@ source=("https://ftp.mozilla.org/pub/$_oldname/releases/$pkgver/source/$_oldname
rust-fix-rusty-cheddar-crate-setup.patch
rust-target-i586-to-i686.patch
libre-searchengines.patch
- no-neon.patch)
-sha256sums=('88211d0d57dfdae9232617244f9c5406520a538e9e7be6ceec79fdfed175ba84'
+ no-neon.patch
+ no-crmf.patch)
+sha256sums=('c65c66244ac113996002bcfa9e387f14291163cfb7009a9126e3a8d4a970e72d'
'246418976524fbead5b99e6227f97322f8d4c45e0edf9ce75561ae8eccdefc65'
'SKIP'
'd552b793e17fb1c09637d6fdf4680eee32b849941f7181d104e42fbe17e5d593'
@@ -58,7 +59,8 @@ sha256sums=('88211d0d57dfdae9232617244f9c5406520a538e9e7be6ceec79fdfed175ba84'
'e03cdc40e4ea39560aa230ef7a9c494f3a343c0feb8f43b68a47769f88f6b315'
'069fab4b99dd51d7d004124d0052ea7b864cf060ea943348d290ba6aae50b0ab'
'0db12bef46e0ad68dbdf6ce0c767956d6758b073531012a850e7975eda3fc7fe'
- '59f40d8b2480aa67bf76f4f119826b6828a6a59cc040caf1ab5a6e19eef44c6e')
+ '59f40d8b2480aa67bf76f4f119826b6828a6a59cc040caf1ab5a6e19eef44c6e'
+ 'a7317caba56e89932bd9e3b9352d94701dd9a419685057f238b1ded8dc0adcd7')
validpgpkeys=(
'BFA8008A8265677063B11BF47171986E4B745536' # Andreas Grapentin
)
@@ -95,6 +97,10 @@ prepare() {
# install to /usr/lib/icedove
patch -Np1 -i "$srcdir/$pkgname-install-dir.patch"
+ # https://bugzilla.mozilla.org/show_bug.cgi?id=1371991
+ patch -Np1 -i "$srcdir/no-crmf.patch"
+
+
# Fix rust build
patch -Np1 -i "$srcdir/rust-fix-rusty-cheddar-crate-setup.patch"
patch -Np1 -i "$srcdir/rust-target-i586-to-i686.patch"
diff --git a/libre/icedove/no-crmf.patch b/libre/icedove/no-crmf.patch
new file mode 100644
index 000000000..73e545de0
--- /dev/null
+++ b/libre/icedove/no-crmf.patch
@@ -0,0 +1,39 @@
+diff -u -rN thunderbird-52.1.1/mozilla/config/external/nss/crmf/moz.build thunderbird-52.1.1-nocrmf/mozilla/config/external/nss/crmf/moz.build
+--- thunderbird-52.1.1/mozilla/config/external/nss/crmf/moz.build 2017-05-09 23:35:13.000000000 +0200
++++ thunderbird-52.1.1-nocrmf/mozilla/config/external/nss/crmf/moz.build 2017-06-14 01:51:36.686773132 +0200
+@@ -8,7 +8,6 @@
+
+ if CONFIG['MOZ_SYSTEM_NSS']:
+ OS_LIBS += [l for l in CONFIG['NSS_LIBS'] if l.startswith('-L')]
+- OS_LIBS += ['-lcrmf']
+ else:
+ USE_LIBS += [
+ # The dependency on nss is not real, but is required to force the
+diff -u -rN thunderbird-52.1.1/mozilla/old-configure thunderbird-52.1.1-nocrmf/mozilla/old-configure
+--- thunderbird-52.1.1/mozilla/old-configure 2017-05-09 23:35:35.000000000 +0200
++++ thunderbird-52.1.1-nocrmf/mozilla/old-configure 2017-06-14 01:50:28.726873231 +0200
+@@ -10692,9 +10692,7 @@
+
+ fi
+
+-if test -n "$MOZ_SYSTEM_NSS"; then
+- NSS_LIBS="$NSS_LIBS -lcrmf"
+-else
++if test -z "$MOZ_SYSTEM_NSS"; then
+ NSS_CFLAGS="-I${DIST}/include/nss"
+ fi
+
+diff -u -rN thunderbird-52.1.1/mozilla/old-configure.in thunderbird-52.1.1-nocrmf/mozilla/old-configure.in
+--- thunderbird-52.1.1/mozilla/old-configure.in 2017-05-09 23:35:22.000000000 +0200
++++ thunderbird-52.1.1-nocrmf/mozilla/old-configure.in 2017-06-14 01:50:50.953507079 +0200
+@@ -2126,9 +2126,7 @@
+ AM_PATH_NSS(3.28.4, [MOZ_SYSTEM_NSS=1], [AC_MSG_ERROR([you don't have NSS installed or your version is too old])])
+ fi
+
+-if test -n "$MOZ_SYSTEM_NSS"; then
+- NSS_LIBS="$NSS_LIBS -lcrmf"
+-else
++if test -z "$MOZ_SYSTEM_NSS"; then
+ NSS_CFLAGS="-I${DIST}/include/nss"
+ fi
+