View | Details | Raw Unified | Return to bug 210061 | Differences between
and this patch

Collapse All | Expand All

(-)mail/linux-thunderbird/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	thunderbird
4
PORTNAME=	thunderbird
5
DISTVERSION=	45.1.0
5
DISTVERSION=	45.1.1
6
CATEGORIES=	mail news net-im ipv6
6
CATEGORIES=	mail news net-im ipv6
7
MASTER_SITES=	MOZILLA/${PORTNAME}/releases/${DISTVERSION}/linux-i686/en-US \
7
MASTER_SITES=	MOZILLA/${PORTNAME}/releases/${DISTVERSION}/linux-i686/en-US \
8
		MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/linux-i686/en-US
8
		MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/linux-i686/en-US
(-)mail/linux-thunderbird/distinfo (-2 / +2 lines)
Lines 1-5 Link Here
1
SHA256 (thunderbird-45.1.0.tar.bz2) = 24c5d03af4a931d8b1e31de86b9ae15b630e40b8b784c94981195ccca633796e
1
SHA256 (thunderbird-45.1.1.tar.bz2) = f40cfa03c6c557417b78536b3d636dbccdf945c732621bad985d9f027b7e08ff
2
SIZE (thunderbird-45.1.0.tar.bz2) = 44109949
2
SIZE (thunderbird-45.1.1.tar.bz2) = 44113727
3
SHA256 (glib2-2.22.2-2.fc12.i686.rpm) = e3b459c245ec14e7248e9de4b506963a4773407f3e58835db5070d0ed02ecc99
3
SHA256 (glib2-2.22.2-2.fc12.i686.rpm) = e3b459c245ec14e7248e9de4b506963a4773407f3e58835db5070d0ed02ecc99
4
SIZE (glib2-2.22.2-2.fc12.i686.rpm) = 1162908
4
SIZE (glib2-2.22.2-2.fc12.i686.rpm) = 1162908
5
SHA256 (gtk2-2.18.3-19.fc12.i686.rpm) = aea9cf7ffe9c8dae0faa2bf3d2aa1b2117c55dce03da72dcce8c268279ec0a4b
5
SHA256 (gtk2-2.18.3-19.fc12.i686.rpm) = aea9cf7ffe9c8dae0faa2bf3d2aa1b2117c55dce03da72dcce8c268279ec0a4b
(-)mail/thunderbird/Makefile (-3 / +3 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	thunderbird
4
PORTNAME=	thunderbird
5
DISTVERSION=	45.1.0
5
DISTVERSION=	45.1.1
6
CATEGORIES=	mail news net-im ipv6
6
CATEGORIES=	mail news net-im ipv6
7
MASTER_SITES=	MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \
7
MASTER_SITES=	MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \
8
		MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source
8
		MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source
Lines 31-38 Link Here
31
31
32
LIB_DEPENDS=	libv4l2.so:multimedia/libv4l
32
LIB_DEPENDS=	libv4l2.so:multimedia/libv4l
33
33
34
EM_VERSION=	1.9.2
34
EM_VERSION=	1.9.3
35
L_VERSION=	4.7.1
35
L_VERSION=	4.7.1.1
36
36
37
SSP_UNSAFE=	yes
37
SSP_UNSAFE=	yes
38
USE_GECKO=	gecko
38
USE_GECKO=	gecko
(-)mail/thunderbird/distinfo (-4 / +5 lines)
Lines 1-4 Link Here
1
SHA256 (thunderbird-45.1.0.source.tar.xz) = 830a5a1819450e43c82be8a735095b3366416e80144699e07542720bde8639bd
1
TIMESTAMP = 1465154624
2
SIZE (thunderbird-45.1.0.source.tar.xz) = 200993556
2
SHA256 (thunderbird-45.1.1.source.tar.xz) = 107d103c30b4f666ede1ec197156f94456117783087518fe1af4557d548b718e
3
SHA256 (enigmail-1.9.2.tar.gz) = 81c92937911005a5b94956d6d330a6f4114ad91da2dc10137bb0a3cbafd0ca42
3
SIZE (thunderbird-45.1.1.source.tar.xz) = 201012896
4
SIZE (enigmail-1.9.2.tar.gz) = 1741350
4
SHA256 (enigmail-1.9.3.tar.gz) = 1dee90ff4ad51d361335686ab4ed722d34d2502b36b609680e2aabe3bb50729a
5
SIZE (enigmail-1.9.3.tar.gz) = 1741831
(-)mail/thunderbird/files/patch-bug1269165 (-24 lines)
Lines 1-24 Link Here
1
# getUserMedia fails to enumerate ALSA plugins
2
3
--- mozilla/media/webrtc/trunk/webrtc/modules/audio_device/linux/audio_device_alsa_linux.cc.orig	2016-04-22 00:37:17 UTC
4
+++ mozilla/media/webrtc/trunk/webrtc/modules/audio_device/linux/audio_device_alsa_linux.cc
5
@@ -1752,7 +1752,9 @@ int32_t AudioDeviceLinuxALSA::GetDevices
6
     // Don't use snd_device_name_hint(-1,..) since there is a access violation
7
     // inside this ALSA API with libasound.so.2.0.0.
8
     int card = -1;
9
+#ifdef WEBRTC_LINUX
10
     while (!(LATE(snd_card_next)(&card)) && (card >= 0) && keepSearching) {
11
+#endif
12
         void **hints;
13
         err = LATE(snd_device_name_hint)(card, "pcm", &hints);
14
         if (err != 0)
15
@@ -1878,7 +1880,9 @@ int32_t AudioDeviceLinuxALSA::GetDevices
16
                          LATE(snd_strerror)(err));
17
             // Continue and return true anyway, since we did get the whole list.
18
         }
19
+#ifdef WEBRTC_LINUX
20
       }
21
+#endif
22
 
23
     if (FUNC_GET_NUM_OF_DEVICE == function)
24
     {
(-)mail/thunderbird-i18n/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	thunderbird-i18n
4
PORTNAME=	thunderbird-i18n
5
PORTVERSION=	45.1.0
5
PORTVERSION=	45.1.1
6
CATEGORIES=	mail news net-im
6
CATEGORIES=	mail news net-im
7
MASTER_SITES=	MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \
7
MASTER_SITES=	MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \
8
		MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi
8
		MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi
(-)mail/thunderbird-i18n/distinfo (-116 / +117 lines)
Lines 1-116 Link Here
1
SHA256 (xpi/thunderbird-i18n-45.1.0/ar.xpi) = 19ca994ba8ae469e3ee62d0e8f2c22b436c355a02ec187e81d615c67c9addad3
1
TIMESTAMP = 1465151206
2
SIZE (xpi/thunderbird-i18n-45.1.0/ar.xpi) = 490774
2
SHA256 (xpi/thunderbird-i18n-45.1.1/ar.xpi) = c535c621cd989d46942058f14c90ec3d9c9236c45c4dde52af8be4614ddd7140
3
SHA256 (xpi/thunderbird-i18n-45.1.0/ast.xpi) = 97a31e91a44e84ce5975f8a4f15b1792c5c11b3a796d648e3e9943f51454bfd3
3
SIZE (xpi/thunderbird-i18n-45.1.1/ar.xpi) = 490774
4
SIZE (xpi/thunderbird-i18n-45.1.0/ast.xpi) = 428058
4
SHA256 (xpi/thunderbird-i18n-45.1.1/ast.xpi) = 9e2f93f4851ce6fb7a180738823b8286f107e1380b1ec8f884fdc3758174c05b
5
SHA256 (xpi/thunderbird-i18n-45.1.0/be.xpi) = 7e7b3c6d8ce6c73a0cc522924bf578682b2b029c5c534a6bbad24968f086fc47
5
SIZE (xpi/thunderbird-i18n-45.1.1/ast.xpi) = 428058
6
SIZE (xpi/thunderbird-i18n-45.1.0/be.xpi) = 469095
6
SHA256 (xpi/thunderbird-i18n-45.1.1/be.xpi) = 25ca69a539f92f53eb0b7fff142989bf6dbaa7231e28d43ff9f5c12c46450d0a
7
SHA256 (xpi/thunderbird-i18n-45.1.0/bg.xpi) = 4bbd01b864a0d57c7f9dd8f7b09b702db0b5629d5330ab23af64b1edc286cb47
7
SIZE (xpi/thunderbird-i18n-45.1.1/be.xpi) = 469096
8
SIZE (xpi/thunderbird-i18n-45.1.0/bg.xpi) = 524298
8
SHA256 (xpi/thunderbird-i18n-45.1.1/bg.xpi) = 13ed61e0d9d6dccd8fdecf432dc6deec87d554239676fe7c96767b58aa8dcc49
9
SHA256 (xpi/thunderbird-i18n-45.1.0/bn-BD.xpi) = a234d2ddc12c466a2812329e3e2bb186bd09a85a8c0ab2ce387b7f6133a7ee73
9
SIZE (xpi/thunderbird-i18n-45.1.1/bg.xpi) = 524304
10
SIZE (xpi/thunderbird-i18n-45.1.0/bn-BD.xpi) = 581438
10
SHA256 (xpi/thunderbird-i18n-45.1.1/bn-BD.xpi) = 65530a9adc3f442c9fa5032bd9e5e9d74f984397a227c34e36a07f888b69aa60
11
SHA256 (xpi/thunderbird-i18n-45.1.0/br.xpi) = 47c8d122a35a688282f72e70c29af8a6e0cf3b31fa1bb98da5f7ec7dfcd5b381
11
SIZE (xpi/thunderbird-i18n-45.1.1/bn-BD.xpi) = 581439
12
SIZE (xpi/thunderbird-i18n-45.1.0/br.xpi) = 465999
12
SHA256 (xpi/thunderbird-i18n-45.1.1/br.xpi) = 6b3c787ebc50c41eed5410f22402da6e7415c72dcc67c4a655e1931572a3e5a6
13
SHA256 (xpi/thunderbird-i18n-45.1.0/ca.xpi) = 9d0ffb70eb8b72ba0932c3bee34f12a3fb06766d3cfb063872219397c48685fc
13
SIZE (xpi/thunderbird-i18n-45.1.1/br.xpi) = 465999
14
SIZE (xpi/thunderbird-i18n-45.1.0/ca.xpi) = 467979
14
SHA256 (xpi/thunderbird-i18n-45.1.1/ca.xpi) = 059a4d68d8319b6b66e6946a6b4add2ffb8b13a689c1cace70a5bcff56b49731
15
SHA256 (xpi/thunderbird-i18n-45.1.0/cs.xpi) = dd7c1720fa7f2825438dee59e46e5d93911d29f8f4f05152b61d0ec6675009f0
15
SIZE (xpi/thunderbird-i18n-45.1.1/ca.xpi) = 467979
16
SIZE (xpi/thunderbird-i18n-45.1.0/cs.xpi) = 474327
16
SHA256 (xpi/thunderbird-i18n-45.1.1/cs.xpi) = 76c4f7643a72b3a57ec123beba2aee25de553d71a700f3c739090ea580554b3d
17
SHA256 (xpi/thunderbird-i18n-45.1.0/cy.xpi) = 5ef4be044999200b273a148f7bc1954c5a20047383ea27ac1eb065aaa47db56b
17
SIZE (xpi/thunderbird-i18n-45.1.1/cs.xpi) = 474328
18
SIZE (xpi/thunderbird-i18n-45.1.0/cy.xpi) = 456120
18
SHA256 (xpi/thunderbird-i18n-45.1.1/cy.xpi) = 677eb544ddfd42a223d5f4858635ad00c6c2e2651f9820f737f8f0454cb5af5a
19
SHA256 (xpi/thunderbird-i18n-45.1.0/da.xpi) = 7961f7214f3eff898964aaa2a79bf554d566fc18405508f504ba20b92a0085e6
19
SIZE (xpi/thunderbird-i18n-45.1.1/cy.xpi) = 456120
20
SIZE (xpi/thunderbird-i18n-45.1.0/da.xpi) = 445594
20
SHA256 (xpi/thunderbird-i18n-45.1.1/da.xpi) = 899e09b81ccbc88cc441e24c4a8d511ffd18d56fd247bd9164c15900b22e32be
21
SHA256 (xpi/thunderbird-i18n-45.1.0/de.xpi) = 0f8291cbc88d6fb18fae20ecc30e1a70f2492d06c3734d63e8900f2977721a5f
21
SIZE (xpi/thunderbird-i18n-45.1.1/da.xpi) = 445594
22
SIZE (xpi/thunderbird-i18n-45.1.0/de.xpi) = 451955
22
SHA256 (xpi/thunderbird-i18n-45.1.1/de.xpi) = 971d977956cf3e3a0ec9ff8d5f862abf4ea8829411c10c894750c232b35d5739
23
SHA256 (xpi/thunderbird-i18n-45.1.0/dsb.xpi) = d71e1d3f0b9a583bcd67a3844b91e043ab7961219fc1ff8f5c98177a78ac0a1e
23
SIZE (xpi/thunderbird-i18n-45.1.1/de.xpi) = 451955
24
SIZE (xpi/thunderbird-i18n-45.1.0/dsb.xpi) = 481646
24
SHA256 (xpi/thunderbird-i18n-45.1.1/dsb.xpi) = 29b8599995c0b00fff4d86f4e60196838efff0010c757b08d6ef79515d0c577d
25
SHA256 (xpi/thunderbird-i18n-45.1.0/el.xpi) = f9d39cdecfe57374fb35694a3d2073959fe6c33629df3a124b37b829fe50bcce
25
SIZE (xpi/thunderbird-i18n-45.1.1/dsb.xpi) = 481647
26
SIZE (xpi/thunderbird-i18n-45.1.0/el.xpi) = 514358
26
SHA256 (xpi/thunderbird-i18n-45.1.1/el.xpi) = 5adb9671a58c732de677242f7bebefb8203bd00568f99a78ab3f1e09b80962f5
27
SHA256 (xpi/thunderbird-i18n-45.1.0/en-GB.xpi) = b339fe2259e86be929cb7e9a9e9779d2fc16c5cdd92949ad64b8a57553eb1269
27
SIZE (xpi/thunderbird-i18n-45.1.1/el.xpi) = 514358
28
SIZE (xpi/thunderbird-i18n-45.1.0/en-GB.xpi) = 437602
28
SHA256 (xpi/thunderbird-i18n-45.1.1/en-GB.xpi) = b0afd91d607111545d251b9b51894bb25276e3aef11624a35b6c67b6947ad1b6
29
SHA256 (xpi/thunderbird-i18n-45.1.0/en-US.xpi) = d61bda9acabc223810bcb86b73d1d27e92708f6517bc7c89663834058e36ffdf
29
SIZE (xpi/thunderbird-i18n-45.1.1/en-GB.xpi) = 437602
30
SIZE (xpi/thunderbird-i18n-45.1.0/en-US.xpi) = 435471
30
SHA256 (xpi/thunderbird-i18n-45.1.1/en-US.xpi) = 44f2ce58c56d39216ff6167bdeb39747eed2396bf6e1a28bf80c0beda391a0a7
31
SHA256 (xpi/thunderbird-i18n-45.1.0/es-AR.xpi) = f05c5717d6b48632e389afde024a35df775c5bf5fa710606666f6385a5475755
31
SIZE (xpi/thunderbird-i18n-45.1.1/en-US.xpi) = 435472
32
SIZE (xpi/thunderbird-i18n-45.1.0/es-AR.xpi) = 464683
32
SHA256 (xpi/thunderbird-i18n-45.1.1/es-AR.xpi) = 09e3d97c0dbd7ea39f5fca8fd372ecd43b5075a86ca3f5afaa80af6fb7fe6669
33
SHA256 (xpi/thunderbird-i18n-45.1.0/es-ES.xpi) = 5c0de219e65edafd7893ae94727f002b6a8841c336f4f1acda82de982c76d0dd
33
SIZE (xpi/thunderbird-i18n-45.1.1/es-AR.xpi) = 464683
34
SIZE (xpi/thunderbird-i18n-45.1.0/es-ES.xpi) = 387999
34
SHA256 (xpi/thunderbird-i18n-45.1.1/es-ES.xpi) = 1a277653c49a1a5ad7f859dc70ac9959ab026b9f5dcbef28081a901b876a67ec
35
SHA256 (xpi/thunderbird-i18n-45.1.0/et.xpi) = bc8b3283dacf9180e1fc9b8cd563fcb576d746aa2b085a4287d3b69b84b2f8e8
35
SIZE (xpi/thunderbird-i18n-45.1.1/es-ES.xpi) = 387999
36
SIZE (xpi/thunderbird-i18n-45.1.0/et.xpi) = 458418
36
SHA256 (xpi/thunderbird-i18n-45.1.1/et.xpi) = bd3a19cf288f41d1b867ffa757bc5b2f8dfc300406958669981d61b74af4d3ef
37
SHA256 (xpi/thunderbird-i18n-45.1.0/eu.xpi) = 625b59556469dad351cde4a28a5dce5529aa2465dcde1f7eaeecbede785272dc
37
SIZE (xpi/thunderbird-i18n-45.1.1/et.xpi) = 458418
38
SIZE (xpi/thunderbird-i18n-45.1.0/eu.xpi) = 456707
38
SHA256 (xpi/thunderbird-i18n-45.1.1/eu.xpi) = 85ddf6c308c847e3102e813feb87c3ca2b585401ab9e17ef523b43d0c866097a
39
SHA256 (xpi/thunderbird-i18n-45.1.0/fi.xpi) = 15f4c05034134d9b1900a8a8a1040686b9a711eca5ff2e45ddc502e0f248768b
39
SIZE (xpi/thunderbird-i18n-45.1.1/eu.xpi) = 456707
40
SIZE (xpi/thunderbird-i18n-45.1.0/fi.xpi) = 458335
40
SHA256 (xpi/thunderbird-i18n-45.1.1/fi.xpi) = bdef4f4923042b7ac90e4e908965a56f75813d92cc0c6b678e492e8a2369f21a
41
SHA256 (xpi/thunderbird-i18n-45.1.0/fr.xpi) = 5490d542ad080fbce3076c691004a0fa8d47ead78ceb46ce8a0d1f6452ddb5a8
41
SIZE (xpi/thunderbird-i18n-45.1.1/fi.xpi) = 458335
42
SIZE (xpi/thunderbird-i18n-45.1.0/fr.xpi) = 475465
42
SHA256 (xpi/thunderbird-i18n-45.1.1/fr.xpi) = 9f0b1ccec04d4f5178e4ba76ddef4f130b9346e18e59b73f9183a717c11dd132
43
SHA256 (xpi/thunderbird-i18n-45.1.0/fy-NL.xpi) = 473af6e3e4bdf460485c6a46cae6b14d15221f5eb17d2a36500aefe6cd2589c6
43
SIZE (xpi/thunderbird-i18n-45.1.1/fr.xpi) = 475465
44
SIZE (xpi/thunderbird-i18n-45.1.0/fy-NL.xpi) = 464756
44
SHA256 (xpi/thunderbird-i18n-45.1.1/fy-NL.xpi) = ccca231508908ae9125a00b737a45d71e40006ba8bf9b3ca168553f15eb3d367
45
SHA256 (xpi/thunderbird-i18n-45.1.0/ga-IE.xpi) = 4d2d14261e1ac010b3c762030cf416727821c433b2ff7b1867e5f5c07d8ca04b
45
SIZE (xpi/thunderbird-i18n-45.1.1/fy-NL.xpi) = 464756
46
SIZE (xpi/thunderbird-i18n-45.1.0/ga-IE.xpi) = 480315
46
SHA256 (xpi/thunderbird-i18n-45.1.1/ga-IE.xpi) = ccc8cd8d80aae1cfc58e63b8a9ee66bfb6247fa6d79859f5d3f6ed15333aaf45
47
SHA256 (xpi/thunderbird-i18n-45.1.0/gd.xpi) = 05d709219a0c6ef956663dbcbfa7f546a4ada1128922ad678307b99d2f16f281
47
SIZE (xpi/thunderbird-i18n-45.1.1/ga-IE.xpi) = 480317
48
SIZE (xpi/thunderbird-i18n-45.1.0/gd.xpi) = 478296
48
SHA256 (xpi/thunderbird-i18n-45.1.1/gd.xpi) = f9b89e925ce69bccf7284872f47fd010d26efc5ad9aa97c7c454b2d54462eb17
49
SHA256 (xpi/thunderbird-i18n-45.1.0/gl.xpi) = 15bd061510fdfbae09807f7697acc6e743f72a634c91002e830001fbeb01f5f5
49
SIZE (xpi/thunderbird-i18n-45.1.1/gd.xpi) = 478296
50
SIZE (xpi/thunderbird-i18n-45.1.0/gl.xpi) = 478580
50
SHA256 (xpi/thunderbird-i18n-45.1.1/gl.xpi) = 8c896fa15d69ac8f829391b47051d596420fd2175058c6e0852d66af932d30c1
51
SHA256 (xpi/thunderbird-i18n-45.1.0/he.xpi) = 05fa15c626a0166280e2c406947ebf28e463337f77086c5f7fa374e5f859479a
51
SIZE (xpi/thunderbird-i18n-45.1.1/gl.xpi) = 478580
52
SIZE (xpi/thunderbird-i18n-45.1.0/he.xpi) = 497962
52
SHA256 (xpi/thunderbird-i18n-45.1.1/he.xpi) = f8a78f0483a070fe619d9e0a918d736664edfdb56fdfa9db71c0a990c0c5b631
53
SHA256 (xpi/thunderbird-i18n-45.1.0/hr.xpi) = 3459b013efbfc2e15129b623869ee4a61810f4eb864bf71d3cdbbce0d3465144
53
SIZE (xpi/thunderbird-i18n-45.1.1/he.xpi) = 497962
54
SIZE (xpi/thunderbird-i18n-45.1.0/hr.xpi) = 463958
54
SHA256 (xpi/thunderbird-i18n-45.1.1/hr.xpi) = dcab60dcadc2cac63cd854868bd7c731af592b5da292a335a3a98393f1e6eb4b
55
SHA256 (xpi/thunderbird-i18n-45.1.0/hsb.xpi) = 2dc60498f9ede9f084805c65ce7a70d12cffa828c19d206478a1966023bf396d
55
SIZE (xpi/thunderbird-i18n-45.1.1/hr.xpi) = 463958
56
SIZE (xpi/thunderbird-i18n-45.1.0/hsb.xpi) = 479413
56
SHA256 (xpi/thunderbird-i18n-45.1.1/hsb.xpi) = ecc2e8fc7a6068555465aa3f7d7db4fb468fc13197e331e78055659af062988b
57
SHA256 (xpi/thunderbird-i18n-45.1.0/hu.xpi) = e899edbae6b7d20346a08896770b63bd27226214777fbff43d8287407545b8a3
57
SIZE (xpi/thunderbird-i18n-45.1.1/hsb.xpi) = 479414
58
SIZE (xpi/thunderbird-i18n-45.1.0/hu.xpi) = 479583
58
SHA256 (xpi/thunderbird-i18n-45.1.1/hu.xpi) = 69f71f459a486c4e8030025b3507fc2e3bacf77023b68d65a4ecf61a2994b7e9
59
SHA256 (xpi/thunderbird-i18n-45.1.0/hy-AM.xpi) = 5e8b49826771d87b40bd0de7c973715a9dc6f87cbcb57ecab2baf13c0312c9e7
59
SIZE (xpi/thunderbird-i18n-45.1.1/hu.xpi) = 479584
60
SIZE (xpi/thunderbird-i18n-45.1.0/hy-AM.xpi) = 518882
60
SHA256 (xpi/thunderbird-i18n-45.1.1/hy-AM.xpi) = 8215b28e46869204378b961eae14b3261247798573ef788d7e2befdb4efff419
61
SHA256 (xpi/thunderbird-i18n-45.1.0/id.xpi) = 218fd44697d5d77e7057203c618941341a477ce84cd9058c4aca1bf444ffba0a
61
SIZE (xpi/thunderbird-i18n-45.1.1/hy-AM.xpi) = 518882
62
SIZE (xpi/thunderbird-i18n-45.1.0/id.xpi) = 499981
62
SHA256 (xpi/thunderbird-i18n-45.1.1/id.xpi) = 5395263dd7af3767df9f930a202aadce4687373e7e152dd1843111fcf2bce52d
63
SHA256 (xpi/thunderbird-i18n-45.1.0/is.xpi) = 33a82beeed8d07a0e99027e4658956ead6191c4d83731b8ed9785b5e4a8ceeec
63
SIZE (xpi/thunderbird-i18n-45.1.1/id.xpi) = 499982
64
SIZE (xpi/thunderbird-i18n-45.1.0/is.xpi) = 462190
64
SHA256 (xpi/thunderbird-i18n-45.1.1/is.xpi) = 92dd8e5c854c8572d267efb8392c182ecf3488203da4dd2f85c33db9a93b07e3
65
SHA256 (xpi/thunderbird-i18n-45.1.0/it.xpi) = b88335742b965488b4c253b2762922dcbaec1b03e4a46e89ccf0868a312d97a9
65
SIZE (xpi/thunderbird-i18n-45.1.1/is.xpi) = 462190
66
SIZE (xpi/thunderbird-i18n-45.1.0/it.xpi) = 376888
66
SHA256 (xpi/thunderbird-i18n-45.1.1/it.xpi) = 98ef0facbb0a51b620c9846bf84d159cd1f66a3443465ccf4e63a8662b83dc4b
67
SHA256 (xpi/thunderbird-i18n-45.1.0/ja.xpi) = 508616adb80b75eb11ac4ffe774da069c53e5325cd2518bea8a6b68124e442aa
67
SIZE (xpi/thunderbird-i18n-45.1.1/it.xpi) = 376888
68
SIZE (xpi/thunderbird-i18n-45.1.0/ja.xpi) = 519551
68
SHA256 (xpi/thunderbird-i18n-45.1.1/ja.xpi) = 4f3fb68bc679a263d09287fd33d7348392eeb1340046bf907edbed3df7aaf64f
69
SHA256 (xpi/thunderbird-i18n-45.1.0/ko.xpi) = d66d4fff901d7e1b073709807f6b5d5d6bb3c1abac13df27c040f924a574ff05
69
SIZE (xpi/thunderbird-i18n-45.1.1/ja.xpi) = 519552
70
SIZE (xpi/thunderbird-i18n-45.1.0/ko.xpi) = 487416
70
SHA256 (xpi/thunderbird-i18n-45.1.1/ko.xpi) = 88a22ca155e94151e835dd86f7bf13db8b38309210339344eb1e17785b6f1143
71
SHA256 (xpi/thunderbird-i18n-45.1.0/lt.xpi) = 3505eab4baaca400374f6a600dc3502ddb8cd4415caa64c8e7fb8516e02d4ace
71
SIZE (xpi/thunderbird-i18n-45.1.1/ko.xpi) = 487417
72
SIZE (xpi/thunderbird-i18n-45.1.0/lt.xpi) = 477735
72
SHA256 (xpi/thunderbird-i18n-45.1.1/lt.xpi) = 21908a4d42b989c1949cfa5fe81a4a72f661c24b0e049489305e7ac0149d995a
73
SHA256 (xpi/thunderbird-i18n-45.1.0/nb-NO.xpi) = 77a7fd3ec33ea13f13dfc785a59bc195e4f22a526ce3af0657e4cd26a345bd0f
73
SIZE (xpi/thunderbird-i18n-45.1.1/lt.xpi) = 477735
74
SIZE (xpi/thunderbird-i18n-45.1.0/nb-NO.xpi) = 460011
74
SHA256 (xpi/thunderbird-i18n-45.1.1/nb-NO.xpi) = 191ec40d25a7714b34000075d18b20c215e2fdec4cf747b0dfc4e923a3ddc732
75
SHA256 (xpi/thunderbird-i18n-45.1.0/nl.xpi) = dc8d2c6a679f6d4e911015c87fb67c82f9cef4820965e0d80a8c53aaba1155ba
75
SIZE (xpi/thunderbird-i18n-45.1.1/nb-NO.xpi) = 460011
76
SIZE (xpi/thunderbird-i18n-45.1.0/nl.xpi) = 456663
76
SHA256 (xpi/thunderbird-i18n-45.1.1/nl.xpi) = 5fb155e70095f2104c912e0773df1d0fc4a87515672b9a4b5f15377950e01bdd
77
SHA256 (xpi/thunderbird-i18n-45.1.0/nn-NO.xpi) = 80a9d5f496db0854f565c1ab71473aaf5e39e2e0e312aa1516732d87f99e1e34
77
SIZE (xpi/thunderbird-i18n-45.1.1/nl.xpi) = 456664
78
SIZE (xpi/thunderbird-i18n-45.1.0/nn-NO.xpi) = 460879
78
SHA256 (xpi/thunderbird-i18n-45.1.1/nn-NO.xpi) = 9384271d6c39b69e31f74dcf96327a26469c915163b9e187a4b3996700ab75c4
79
SHA256 (xpi/thunderbird-i18n-45.1.0/pa-IN.xpi) = 7be57264ce44d7a08addccaa24661f9cf1def3e1e0d1bb23e4f8b6de72a5a342
79
SIZE (xpi/thunderbird-i18n-45.1.1/nn-NO.xpi) = 460879
80
SIZE (xpi/thunderbird-i18n-45.1.0/pa-IN.xpi) = 551066
80
SHA256 (xpi/thunderbird-i18n-45.1.1/pa-IN.xpi) = 2cf05a30f1a240e47ce6996f9f879d3046fabfc39a18ca5d42dc19fae35fb86f
81
SHA256 (xpi/thunderbird-i18n-45.1.0/pl.xpi) = a2dfbf3e92891b98bb7ab6feef9c7b903f16fe4615b641506e3470ba5505af04
81
SIZE (xpi/thunderbird-i18n-45.1.1/pa-IN.xpi) = 551068
82
SIZE (xpi/thunderbird-i18n-45.1.0/pl.xpi) = 423866
82
SHA256 (xpi/thunderbird-i18n-45.1.1/pl.xpi) = c06c0421f53003cb38d7a1b293944ecbc0bcc4b70349ed09dec3f01ef5e100cf
83
SHA256 (xpi/thunderbird-i18n-45.1.0/pt-BR.xpi) = bf7f0de90bcf22a5087fbe4883962a72efbcefc969fabbdaff4675eadc8bef86
83
SIZE (xpi/thunderbird-i18n-45.1.1/pl.xpi) = 423867
84
SIZE (xpi/thunderbird-i18n-45.1.0/pt-BR.xpi) = 464682
84
SHA256 (xpi/thunderbird-i18n-45.1.1/pt-BR.xpi) = 737136c3a556ff64dd162a5adf423856de8beacec2075b566c86538e6dc611be
85
SHA256 (xpi/thunderbird-i18n-45.1.0/pt-PT.xpi) = 2c681adc6dc8c67ed7fd9e51a521a383c63397984e8d7f1eda915b3b3d596369
85
SIZE (xpi/thunderbird-i18n-45.1.1/pt-BR.xpi) = 464682
86
SIZE (xpi/thunderbird-i18n-45.1.0/pt-PT.xpi) = 463750
86
SHA256 (xpi/thunderbird-i18n-45.1.1/pt-PT.xpi) = f2aa87ab0f584f4c8e358ba4043f16a4021f6d5f236050fa27002b0663d78b60
87
SHA256 (xpi/thunderbird-i18n-45.1.0/rm.xpi) = a54eb68e4585eeefee3fb0e3bb02e9987002f8e0d6e2c268bd131bcb86dd5b47
87
SIZE (xpi/thunderbird-i18n-45.1.1/pt-PT.xpi) = 463751
88
SIZE (xpi/thunderbird-i18n-45.1.0/rm.xpi) = 462650
88
SHA256 (xpi/thunderbird-i18n-45.1.1/rm.xpi) = cffdbb8f425afa026e667f1cbacff05cba999b452dd002f66cd9470e2be002fa
89
SHA256 (xpi/thunderbird-i18n-45.1.0/ro.xpi) = 1f6d544d91d499de32abd5327bdb494e219215971dfa73532a4b184ace075cb3
89
SIZE (xpi/thunderbird-i18n-45.1.1/rm.xpi) = 462650
90
SIZE (xpi/thunderbird-i18n-45.1.0/ro.xpi) = 468517
90
SHA256 (xpi/thunderbird-i18n-45.1.1/ro.xpi) = 8107706cfc2eb68b1663c62b6e02bce98a3bbb72688133502bc8b44b93251a94
91
SHA256 (xpi/thunderbird-i18n-45.1.0/ru.xpi) = 12915fca3a3a5f821f8ee0c4c09105ae23b289d3cb0692f27177c75e811987c4
91
SIZE (xpi/thunderbird-i18n-45.1.1/ro.xpi) = 468518
92
SIZE (xpi/thunderbird-i18n-45.1.0/ru.xpi) = 463891
92
SHA256 (xpi/thunderbird-i18n-45.1.1/ru.xpi) = 90a897492fda811c989b6ac6720f7c7a36153d452b7c4299be1837305bb7421c
93
SHA256 (xpi/thunderbird-i18n-45.1.0/si.xpi) = fc7295c884f537ae6085322333a477c0c08995202b039ce439d5e1925ca22b65
93
SIZE (xpi/thunderbird-i18n-45.1.1/ru.xpi) = 463892
94
SIZE (xpi/thunderbird-i18n-45.1.0/si.xpi) = 555994
94
SHA256 (xpi/thunderbird-i18n-45.1.1/si.xpi) = 8a8308b82e663addc40bd0235afc4d2d480e3aa296c49b8083627d5eed822df2
95
SHA256 (xpi/thunderbird-i18n-45.1.0/sk.xpi) = 1481bddd79f9d2b640adc3fa715f535dffada9aaac5b48b24bfe9cd9f77dee56
95
SIZE (xpi/thunderbird-i18n-45.1.1/si.xpi) = 555995
96
SIZE (xpi/thunderbird-i18n-45.1.0/sk.xpi) = 481492
96
SHA256 (xpi/thunderbird-i18n-45.1.1/sk.xpi) = 3e3b26829625652ec2a1c43580a0b7b0b94cc0603cb8c21758306ba2cb857c14
97
SHA256 (xpi/thunderbird-i18n-45.1.0/sl.xpi) = b7bc2a32d62917609ee1501a747b648357a875a337aa466e8b846fe83c0a5e94
97
SIZE (xpi/thunderbird-i18n-45.1.1/sk.xpi) = 481492
98
SIZE (xpi/thunderbird-i18n-45.1.0/sl.xpi) = 462776
98
SHA256 (xpi/thunderbird-i18n-45.1.1/sl.xpi) = b0a150bfae8660dcef15e0e5c90795b61a1c78c4f65f9c3054755ba949c8b2b9
99
SHA256 (xpi/thunderbird-i18n-45.1.0/sq.xpi) = 8c4a165a103ca785e6b776bc0fd8b5d1bc2f9da33530d80aaa5fc6634272ed4b
99
SIZE (xpi/thunderbird-i18n-45.1.1/sl.xpi) = 462780
100
SIZE (xpi/thunderbird-i18n-45.1.0/sq.xpi) = 469534
100
SHA256 (xpi/thunderbird-i18n-45.1.1/sq.xpi) = 51cc95ca790168f32697f7248c502e4e88a4229846e044892503cafa80a44750
101
SHA256 (xpi/thunderbird-i18n-45.1.0/sr.xpi) = 2ebe7c218753470f5bf9016b87fce71145994581cba6f50f99ae141aed3a97e6
101
SIZE (xpi/thunderbird-i18n-45.1.1/sq.xpi) = 469535
102
SIZE (xpi/thunderbird-i18n-45.1.0/sr.xpi) = 565464
102
SHA256 (xpi/thunderbird-i18n-45.1.1/sr.xpi) = 5d1a3c814f31aadb8782f7e0c540f5b8fe84fe984b772b16fb592469feab02f6
103
SHA256 (xpi/thunderbird-i18n-45.1.0/sv-SE.xpi) = c8fecd5f57bc1954b5ffe8f3288790f59ef85c0734d8a1d7a4f5ae77955f1a3b
103
SIZE (xpi/thunderbird-i18n-45.1.1/sr.xpi) = 565465
104
SIZE (xpi/thunderbird-i18n-45.1.0/sv-SE.xpi) = 465433
104
SHA256 (xpi/thunderbird-i18n-45.1.1/sv-SE.xpi) = 3e99ca9ad562f247b8d80fae10867bf5ed7605ded5e877a91592af9c6f28f128
105
SHA256 (xpi/thunderbird-i18n-45.1.0/ta-LK.xpi) = e4b6656c11850367c353cf4034bea73676d4c9f90d9ed1121cca46c7603a3b4b
105
SIZE (xpi/thunderbird-i18n-45.1.1/sv-SE.xpi) = 465433
106
SIZE (xpi/thunderbird-i18n-45.1.0/ta-LK.xpi) = 579218
106
SHA256 (xpi/thunderbird-i18n-45.1.1/ta-LK.xpi) = f82cc68c2a2f5a0869c78d96f12ead30f77ebb6a984a0058445d75d38c4f5376
107
SHA256 (xpi/thunderbird-i18n-45.1.0/tr.xpi) = bebf4f5adbec44d288bd5c36cd807e5fd894a39cd60b0325059fe6c0b46c0ffa
107
SIZE (xpi/thunderbird-i18n-45.1.1/ta-LK.xpi) = 579218
108
SIZE (xpi/thunderbird-i18n-45.1.0/tr.xpi) = 467621
108
SHA256 (xpi/thunderbird-i18n-45.1.1/tr.xpi) = 324a8a9fee18a407824387e5544d9de1d46d467143ee45100576b1499f034da5
109
SHA256 (xpi/thunderbird-i18n-45.1.0/uk.xpi) = 8fc7721b3bc4010632041b08bdb7dde39c4ee6920afe5d7ee6608534a830abee
109
SIZE (xpi/thunderbird-i18n-45.1.1/tr.xpi) = 467622
110
SIZE (xpi/thunderbird-i18n-45.1.0/uk.xpi) = 536438
110
SHA256 (xpi/thunderbird-i18n-45.1.1/uk.xpi) = 0d5c01967f6a5a7c42051ce2fdf5f22ae25056e4e55ef1519c77a961694dae5c
111
SHA256 (xpi/thunderbird-i18n-45.1.0/vi.xpi) = a26268f37e0eeabacb84b514c6dc1bc033706230a72dc882b67c17afd46faea9
111
SIZE (xpi/thunderbird-i18n-45.1.1/uk.xpi) = 536438
112
SIZE (xpi/thunderbird-i18n-45.1.0/vi.xpi) = 540497
112
SHA256 (xpi/thunderbird-i18n-45.1.1/vi.xpi) = 4219170416d1c3cf5bcb3e78fde7747e3bbbf44bb8dca3d9d826c93782a36ff2
113
SHA256 (xpi/thunderbird-i18n-45.1.0/zh-CN.xpi) = e1618817070fc4c9904e752c9cc8d3aa431590b4a093b04cd6d54b4cd0b20d7d
113
SIZE (xpi/thunderbird-i18n-45.1.1/vi.xpi) = 540497
114
SIZE (xpi/thunderbird-i18n-45.1.0/zh-CN.xpi) = 489209
114
SHA256 (xpi/thunderbird-i18n-45.1.1/zh-CN.xpi) = b75726022d753a4fb55df7a47b83a36227b88382b2a91775252b7e909b34f979
115
SHA256 (xpi/thunderbird-i18n-45.1.0/zh-TW.xpi) = 0e1939d37e92509190809d8da305c879f3bc48695272a0640ba1962cd9dcc9e1
115
SIZE (xpi/thunderbird-i18n-45.1.1/zh-CN.xpi) = 489209
116
SIZE (xpi/thunderbird-i18n-45.1.0/zh-TW.xpi) = 490849
116
SHA256 (xpi/thunderbird-i18n-45.1.1/zh-TW.xpi) = fcbb98c5bb083bcb036bca8651e3edb00a1efff9b5aebc69a5f02492ab09719a
117
SIZE (xpi/thunderbird-i18n-45.1.1/zh-TW.xpi) = 490850

Return to bug 210061