rpms/thunderbird-enigmail/F-15 xulrunner-10.0-gcc47.patch, NONE, 1.1 xulrunner-10.0-secondary-ipc.patch, NONE, 1.1 xulrunner-9.0-secondary-build-fix.patch, NONE, 1.1 .cvsignore, 1.12, 1.13 sources, 1.15, 1.16 thunderbird-enigmail.spec, 1.15, 1.16 mozilla-670719.patch, 1.1, NONE mozilla-696393.patch, 1.1, NONE xulrunner-2.0-NetworkManager09.patch, 1.1, NONE xulrunner-2.0-network-link-service.patch, 1.1, NONE xulrunner-9.0-secondary-ipc.patch, 1.1, NONE

Remi Collet remi at rpmfusion.org
Tue Jan 31 23:05:51 CET 2012


Author: remi

Update of /cvs/free/rpms/thunderbird-enigmail/F-15
In directory se02.es.rpmfusion.net:/tmp/cvs-serv5696

Modified Files:
	.cvsignore sources thunderbird-enigmail.spec 
Added Files:
	xulrunner-10.0-gcc47.patch xulrunner-10.0-secondary-ipc.patch 
	xulrunner-9.0-secondary-build-fix.patch 
Removed Files:
	mozilla-670719.patch mozilla-696393.patch 
	xulrunner-2.0-NetworkManager09.patch 
	xulrunner-2.0-network-link-service.patch 
	xulrunner-9.0-secondary-ipc.patch 
Log Message:
Enigmail 1.3.5 for Thunderbird 10.0

xulrunner-10.0-gcc47.patch:
 ipc/chromium/src/base/time_posix.cc      |    2 ++
 toolkit/crashreporter/client/Makefile.in |    3 +++
 2 files changed, 5 insertions(+)

--- NEW FILE xulrunner-10.0-gcc47.patch ---
diff -up mozilla-beta/ipc/chromium/src/base/time_posix.cc.gcc47 mozilla-beta/ipc/chromium/src/base/time_posix.cc
--- mozilla-beta/ipc/chromium/src/base/time_posix.cc.gcc47	2012-01-24 03:00:00.000000000 -0500
+++ mozilla-beta/ipc/chromium/src/base/time_posix.cc	2012-01-30 14:12:49.198472212 -0500
@@ -14,6 +14,8 @@
 #include <time.h>
 #endif
 
+#include <unistd.h>
+
 #include <limits>
 
 #include "base/basictypes.h"
diff -up mozilla-beta/toolkit/crashreporter/client/Makefile.in.gcc47 mozilla-beta/toolkit/crashreporter/client/Makefile.in
--- mozilla-beta/toolkit/crashreporter/client/Makefile.in.gcc47	2012-01-30 14:41:14.475441039 -0500
+++ mozilla-beta/toolkit/crashreporter/client/Makefile.in	2012-01-30 14:43:03.587646656 -0500
@@ -69,6 +69,9 @@ CPPSRCS = \
   $(STDCXX_COMPAT) \
   $(NULL)
 
+# Needed for moz_free
+LIBS += -L$(LIBXUL_DIST)/lib -lmozalloc
+
 ifeq ($(OS_ARCH),WINNT)
 CPPSRCS += crashreporter_win.cpp
 LIBS += \

xulrunner-10.0-secondary-ipc.patch:
 base/data_pack.cc    |    9 +--------
 build/build_config.h |    4 ++--
 2 files changed, 3 insertions(+), 10 deletions(-)

--- NEW FILE xulrunner-10.0-secondary-ipc.patch ---
diff -up thunderbird-10.0/comm-release/mozilla/ipc/chromium/src/base/data_pack.cc.secondary-ipc thunderbird-10.0/comm-release/mozilla/ipc/chromium/src/base/data_pack.cc
--- thunderbird-10.0/comm-release/mozilla/ipc/chromium/src/base/data_pack.cc.secondary-ipc	2012-01-29 15:44:23.000000000 +0100
+++ thunderbird-10.0/comm-release/mozilla/ipc/chromium/src/base/data_pack.cc	2012-01-31 10:45:57.784248018 +0100
@@ -91,14 +91,7 @@ bool DataPack::Load(const FilePath& path
 bool DataPack::Get(uint32_t resource_id, StringPiece* data) {
   // It won't be hard to make this endian-agnostic, but it's not worth
   // bothering to do right now.
-#if defined(__BYTE_ORDER)
-  // Linux check
-  COMPILE_ASSERT(__BYTE_ORDER == __LITTLE_ENDIAN,
-                 datapack_assumes_little_endian);
-#elif defined(__BIG_ENDIAN__)
-  // Mac check
-  #error DataPack assumes little endian
-#endif
+#warning DoTheRightThingMakingThisEndianAgnostic!
 
   DataPackEntry* target = reinterpret_cast<DataPackEntry*>(
       bsearch(&resource_id, mmap_->data() + kHeaderLength, resource_count_,
diff -up thunderbird-10.0/comm-release/mozilla/ipc/chromium/src/build/build_config.h.secondary-ipc thunderbird-10.0/comm-release/mozilla/ipc/chromium/src/build/build_config.h
--- thunderbird-10.0/comm-release/mozilla/ipc/chromium/src/build/build_config.h.secondary-ipc	2012-01-29 15:44:23.000000000 +0100
+++ thunderbird-10.0/comm-release/mozilla/ipc/chromium/src/build/build_config.h	2012-01-31 10:53:24.409935119 +0100
@@ -65,10 +65,10 @@
 #elif defined(__ppc__) || defined(__powerpc__)
 #define ARCH_CPU_PPC 1
 #define ARCH_CPU_32_BITS 1
-#elif defined(__sparc64__)
+#elif defined(__sparc__) && !defined(__arch64)
 #define ARCH_CPU_SPARC 1
 #define ARCH_CPU_64_BITS 1
-#elif defined(__sparc__)
+#elif defined(__sparc__) && defined(__arch64)
 #define ARCH_CPU_SPARC 1
 #define ARCH_CPU_32_BITS 1
 #elif defined(__mips__)
diff -up thunderbird-10.0/comm-release/mozilla/ipc/chromium/src/chrome/common/ipc_message_utils.h.secondary-ipc thunderbird-10.0/comm-release/mozilla/ipc/chromium/src/chrome/common/ipc_message_utils.h

xulrunner-9.0-secondary-build-fix.patch:
 jscompartment.cpp |    1 -
 1 file changed, 1 deletion(-)

--- NEW FILE xulrunner-9.0-secondary-build-fix.patch ---
diff -up xulrunner-9.0.1/mozilla-release/js/src/jscompartment.cpp.orig xulrunner-9.0.1/mozilla-release/js/src/jscompartment.cpp
--- xulrunner-9.0.1/mozilla-release/js/src/jscompartment.cpp.orig	2012-01-04 11:06:39.000000000 +0100
+++ xulrunner-9.0.1/mozilla-release/js/src/jscompartment.cpp	2012-01-04 11:06:43.000000000 +0100
@@ -50,7 +50,6 @@
 #include "jswatchpoint.h"
 #include "jswrapper.h"
 #include "assembler/wtf/Platform.h"
-#include "assembler/jit/ExecutableAllocator.h"
 #include "yarr/BumpPointerAllocator.h"
 #include "methodjit/MethodJIT.h"
 #include "methodjit/PolyIC.h"


Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/thunderbird-enigmail/F-15/.cvsignore,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- .cvsignore	21 Dec 2011 22:10:00 -0000	1.12
+++ .cvsignore	31 Jan 2012 22:05:50 -0000	1.13
@@ -1,2 +1,2 @@
-enigmail-1.3.4.tar.gz
-thunderbird-9.0.source.tar.bz2
+thunderbird-10.0.source.tar.bz2
+enigmail-1.3.5.tar.gz


Index: sources
===================================================================
RCS file: /cvs/free/rpms/thunderbird-enigmail/F-15/sources,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- sources	21 Dec 2011 22:10:01 -0000	1.15
+++ sources	31 Jan 2012 22:05:50 -0000	1.16
@@ -1,2 +1,2 @@
-2b5f188791811d248b6ff1fc51a5806a  enigmail-1.3.4.tar.gz
-681bdf6362945b59b2bec23f8aecc7e7  thunderbird-9.0.source.tar.bz2
+6f76f25894ba746a2e33614d3dd8dbab  thunderbird-10.0.source.tar.bz2
+1b008b0d106e238c11e4bead08126bc0  enigmail-1.3.5.tar.gz


Index: thunderbird-enigmail.spec
===================================================================
RCS file: /cvs/free/rpms/thunderbird-enigmail/F-15/thunderbird-enigmail.spec,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- thunderbird-enigmail.spec	21 Dec 2011 22:10:01 -0000	1.15
+++ thunderbird-enigmail.spec	31 Jan 2012 22:05:50 -0000	1.16
@@ -1,4 +1,4 @@
-%define nspr_version 4.8.8
+%define nspr_version 4.8.9
 %define nss_version 3.13.1
 %define cairo_version 1.10.0
 %define freetype_version 2.1.9
@@ -13,7 +13,8 @@
 %define system_sqlite 1
 %endif
 
-%global thunver  9.0
+%global thunver  10.0
+%global thunmax  11.0
 
 # The tarball is pretty inconsistent with directory structure.
 # Sometimes there is a top level directory.  That goes here.
@@ -31,7 +32,7 @@
 
 Summary:        Authentication and encryption extension for Mozilla Thunderbird
 Name:           thunderbird-enigmail
-Version:        1.3.4
+Version:        1.3.5
 %if 0%{?prever:1}
 Release:        0.1.%{prever}%{?dist}
 %else
@@ -63,12 +64,12 @@
 # Mozilla (XULRunner) patches
 Patch0:         thunderbird-install-dir.patch
 Patch7:         crashreporter-remove-static.patch
-Patch8:         xulrunner-9.0-secondary-ipc.patch
-Patch10:        xulrunner-2.0-network-link-service.patch
-Patch11:        xulrunner-2.0-NetworkManager09.patch
-Patch12:        mozilla-696393.patch
+Patch8:         xulrunner-10.0-secondary-ipc.patch
+# # cherry-picked from 13afcd4c097c
+Patch13:        xulrunner-9.0-secondary-build-fix.patch
 
 # Build patches
+Patch100:       xulrunner-10.0-gcc47.patch
 
 # Linux specific
 Patch200:       thunderbird-8.0-enable-addons.patch
@@ -124,7 +125,9 @@
 # because provided by xulrunner). 
 AutoReq:  0
 # All others deps already required by thunderbird
-Requires: gnupg, thunderbird >= %{thunver}
+Requires: gnupg
+Requires: thunderbird >= %{thunver}
+Requires: thunderbird <  %{thunmax}
 
 # Nothing usefull provided
 AutoProv: 0
@@ -145,10 +148,11 @@
 # Mozilla (XULRunner) patches
 cd mozilla
 %patch7 -p2 -b .static
-%patch8 -p2 -b .secondary-ipc
-%patch10 -p1 -b .link-service
-%patch11 -p1 -b .NetworkManager09
-%patch12 -p2 -b .696393
+%patch8 -p3 -b .secondary-ipc
+%patch13 -p2 -b .secondary-build
+%if 0%{?fedora} >= 17
+%patch100 -p1 -b .gcc47
+%endif
 cd ..
 
 %patch200 -p1 -b .addons
@@ -169,6 +173,11 @@
 %{__cat} %{SOURCE11} >> .mozconfig
 %endif
 
+# s390(x) fails to start with jemalloc enabled
+%ifarch s390 s390x
+echo "ac_add_options --disable-jemalloc" >> .mozconfig
+%endif
+
 %if %{?system_sqlite}
 echo "ac_add_options --enable-system-sqlite"  >> .mozconfig
 %else
@@ -187,7 +196,7 @@
 # All tarballs (as well as CVS) will *always* report as 1.4a1pre (or whatever
 # the next major version would be). This is because I create builds from trunk
 # and simply label the result as 1.3.x.
-sed -i -e '/em:version/s/1.4a1pre/%{version}/' package/install.rdf
+# sed -i -e '/em:version/s/1.4a1pre/%{version}/' package/install.rdf
 grep '<em:version>%{version}</em:version>' package/install.rdf || exit 1
 # Apply Enigmail patch here
 popd
@@ -270,6 +279,9 @@
 #===============================================================================
 
 %changelog
+* Tue Jan 31 2012 Remi Collet <remi at fedoraproject.org> 1.3.5-1
+- Enigmail 1.3.5 for Thunderbird 10.0
+
 * Wed Dec 21 2011 Remi Collet <remi at fedoraproject.org> 1.3.4-1
 - Enigmail 1.3.4 for Thunderbird 9.0
 


--- mozilla-670719.patch DELETED ---


--- mozilla-696393.patch DELETED ---


--- xulrunner-2.0-NetworkManager09.patch DELETED ---


--- xulrunner-2.0-network-link-service.patch DELETED ---


--- xulrunner-9.0-secondary-ipc.patch DELETED ---



More information about the rpmfusion-commits mailing list