commit MozillaFirefox for openSUSE:11.4

2012-02-13 Thread h_root

Hello community,

here is the log from the commit of package MozillaFirefox for openSUSE:11.4
checked in at Mon Feb 13 14:21:35 CET 2012.




--- old-versions/11.4/UPDATES/all/MozillaFirefox/MozillaFirefox.changes 
2012-02-01 14:20:23.0 +0100
+++ 11.4/MozillaFirefox/MozillaFirefox.changes  2012-02-12 22:51:50.0 
+0100
@@ -1,0 +2,14 @@
+Thu Feb  9 09:26:11 UTC 2012 - w...@rosenauer.org
+
+- update to Firefox 10.0.1 (bnc#746616)
+  * MFSA 2012-10/CVE-2012-0452 (bmo#724284)
+use after free in nsXBLDocumentInfo::ReadPrototypeBindings
+
+---
+Tue Feb  7 10:40:58 UTC 2012 - dval...@suse.com
+
+- Use YARR interpreter instead of PCRE on platforms where YARR JIT
+  is not supported, since PCRE doesnt build (bmo#691898)
+- fix ppc64 build (bmo#703534)
+
+---

calling whatdependson for 11.4-i586


Old:

  firefox-10.0-source.tar.bz2
  l10n-10.0.tar.bz2

New:

  firefox-10.0.1-source.tar.bz2
  l10n-10.0.1.tar.bz2
  mozilla-bmo703534.patch
  mozilla-yarr-pcre.patch



Other differences:
--
++ MozillaFirefox.spec ++
--- /var/tmp/diff_new_pack.0n7fqL/_old  2012-02-13 14:21:09.0 +0100
+++ /var/tmp/diff_new_pack.0n7fqL/_new  2012-02-13 14:21:09.0 +0100
@@ -18,7 +18,7 @@
 
 
 %define major 10
-%define mainver %major.0
+%define mainver %major.0.1
 
 Name:   MozillaFirefox
 BuildRequires:  Mesa-devel
@@ -47,7 +47,7 @@
 BuildRequires:  nss-shared-helper-devel
 Version:%{mainver}
 Release:0.RELEASE2
-%define releasedate 2012012900
+%define releasedate 2012020800
 Provides:   web_browser
 Provides:   firefox = %{version}-%{release}
 Provides:   firefox = %{mainver}
@@ -88,6 +88,8 @@
 Patch12:mozilla-linux3.patch
 Patch13:mozilla-a11y.patch
 Patch14:mozilla-disable-neon-option.patch
+Patch15:mozilla-bmo703534.patch
+Patch16:mozilla-yarr-pcre.patch
 # Firefox/browser
 Patch31:firefox-browser-css.patch
 Patch32:firefox-cross-desktop.patch
@@ -221,6 +223,8 @@
 %patch12 -p1
 %patch13 -p1
 %patch14 -p1
+%patch15 -p1
+%patch16 -p1
 #
 %patch31 -p1
 %patch32 -p1

++ compare-locales.tar.bz2 ++

++ create-tar.sh ++
--- /var/tmp/diff_new_pack.0n7fqL/_old  2012-02-13 14:21:09.0 +0100
+++ /var/tmp/diff_new_pack.0n7fqL/_new  2012-02-13 14:21:09.0 +0100
@@ -2,8 +2,8 @@
 
 CHANNEL=release
 BRANCH=releases/mozilla-$CHANNEL
-RELEASE_TAG=FIREFOX_10_0_RELEASE
-VERSION=10.0
+RELEASE_TAG=FIREFOX_10_0_1_RELEASE
+VERSION=10.0.1
 
 # mozilla
 hg clone http://hg.mozilla.org/$BRANCH mozilla

++ firefox-10.0-source.tar.bz2 - firefox-10.0.1-source.tar.bz2 ++
old-versions/11.4/UPDATES/all/MozillaFirefox/firefox-10.0-source.tar.bz2 
11.4/MozillaFirefox/firefox-10.0.1-source.tar.bz2 differ: char 11, line 1


++ l10n-10.0.tar.bz2 - l10n-10.0.1.tar.bz2 ++
old-versions/11.4/UPDATES/all/MozillaFirefox/l10n-10.0.tar.bz2 
11.4/MozillaFirefox/l10n-10.0.1.tar.bz2 differ: char 11, line 1

++ mozilla-bmo703534.patch ++
# HG changeset patch
# User Mike Hommey mh+mozi...@glandium.org
# Date 1321613368 -3600
# Node ID 15cf58eb7923d34de7e61df80fa5f8a18a995abf
# Parent  aeb035da53283c56370992f254e4f79d7dd180f8
Bug 703534 - Fix build failure on platforms without YARR JIT. r=luke
target: M11

diff --git a/js/src/jscompartment.cpp b/js/src/jscompartment.cpp
--- a/js/src/jscompartment.cpp
+++ b/js/src/jscompartment.cpp
@@ -45,17 +45,16 @@
 #include jsiter.h
 #include jsmath.h
 #include jsproxy.h
 #include jsscope.h
 #include jstracer.h
 #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
 #include methodjit/MonoIC.h
 #include vm/Debugger.h
 
 #include jsgcinlines.h
 #include jsscopeinlines.h
++ mozilla-yarr-pcre.patch ++
From: Mike Hommey m...@glandium.org
Date: Sat, 24 Dec 2011 09:56:58 +0100
Subject: Bug 691898 - Use YARR interpreter instead of PCRE on platforms where
 YARR JIT is not supported

---
 js/src/Makefile.in   |   21 +
 js/src/vm/RegExpObject-inl.h |   28 ++--
 js/src/vm/RegExpObject.cpp   |   36 
 js/src/vm/RegExpObject.h |   27 ++-
 js/src/yarr/wtfbridge.h  |2 --
 5 files changed, 25 insertions(+), 89 deletions(-)

diff --git a/js/src/Makefile.in b/js/src/Makefile.in
index fc48cbd..49f0bdc 100644
--- a/js/src/Makefile.in
+++ b/js/src/Makefile.in
@@ -416,15 +416,20 @@ CPPSRCS +=checks.cc \
 
 ifeq (,$(filter arm% sparc %86 x86_64,$(TARGET_CPU)))
 
-VPATH +=$(srcdir)/yarr/pcre \
+VPATH +=$(srcdir)/assembler \

commit seamonkey for openSUSE:11.4

2012-02-13 Thread h_root

Hello community,

here is the log from the commit of package seamonkey for openSUSE:11.4
checked in at Mon Feb 13 14:22:06 CET 2012.




--- old-versions/11.4/UPDATES/all/seamonkey/seamonkey.changes   2012-02-01 
09:21:52.0 +0100
+++ 11.4/seamonkey/seamonkey.changes2012-02-12 23:37:03.0 +0100
@@ -1,0 +2,10 @@
+Thu Feb  9 12:36:02 UTC 2012 - w...@rosenauer.org
+
+- update to Seamonkey 2.7.1 (bnc#746616)
+  * MFSA 2012-10/CVE-2012-0452 (bmo#724284)
+use after free in nsXBLDocumentInfo::ReadPrototypeBindings
+- Use YARR interpreter instead of PCRE on platforms where YARR JIT
+  is not supported, since PCRE doesnt build (bmo#691898)
+- fix ppc64 build (bmo#703534)
+
+---

calling whatdependson for 11.4-i586


Old:

  l10n-2.7.tar.bz2
  seamonkey-2.7-source.tar.bz2

New:

  l10n-2.7.1.tar.bz2
  mozilla-bmo703534.patch
  mozilla-yarr-pcre.patch
  seamonkey-2.7.1-source.tar.bz2



Other differences:
--
++ seamonkey.spec ++
--- /var/tmp/diff_new_pack.vfAcN1/_old  2012-02-13 14:21:33.0 +0100
+++ /var/tmp/diff_new_pack.vfAcN1/_new  2012-02-13 14:21:33.0 +0100
@@ -38,9 +38,9 @@
 BuildRequires:  yasm
 BuildRequires:  zip
 Provides:   web_browser
-Version:2.7
+Version:2.7.1
 Release:0.RELEASE2
-%define releasedate 2012013000
+%define releasedate 2012020800
 Summary:The successor of the Mozilla Application Suite
 License:MPL-1.1 or GPL-2.0+ or LGPL-2.1+
 Group:  Productivity/Networking/Web/Browsers
@@ -62,6 +62,8 @@
 Patch5: mozilla-language.patch
 Patch8: mozilla-ntlm-full-path.patch
 Patch10:mozilla-ua-locale.patch
+Patch11:mozilla-bmo703534.patch
+Patch12:mozilla-yarr-pcre.patch
 Patch20:seamonkey-ua-locale.patch
 Patch21:seamonkey-shared-nss-db.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -163,6 +165,8 @@
 %patch5 -p1
 %patch8 -p1
 %patch10 -p1
+%patch11 -p1
+%patch12 -p1
 popd
 # comm patches
 %patch20 -p1

++ compare-locales.tar.bz2 ++

++ create-tar.sh ++
--- /var/tmp/diff_new_pack.vfAcN1/_old  2012-02-13 14:21:33.0 +0100
+++ /var/tmp/diff_new_pack.vfAcN1/_new  2012-02-13 14:21:33.0 +0100
@@ -1,8 +1,8 @@
 #!/bin/bash
 
 BRANCH=releases/comm-release
-RELEASE_TAG=SEAMONKEY_2_7_RELEASE
-VERSION=2.7
+RELEASE_TAG=SEAMONKEY_2_7_1_RELEASE
+VERSION=2.7.1
 
 echo cloning $BRANCH...
 hg clone http://hg.mozilla.org/$BRANCH seamonkey

++ l10n-2.7.tar.bz2 - l10n-2.7.1.tar.bz2 ++
old-versions/11.4/UPDATES/all/seamonkey/l10n-2.7.tar.bz2 
11.4/seamonkey/l10n-2.7.1.tar.bz2 differ: char 11, line 1

++ mozilla-bmo703534.patch ++
# HG changeset patch
# User Mike Hommey mh+mozi...@glandium.org
# Date 1321613368 -3600
# Node ID 15cf58eb7923d34de7e61df80fa5f8a18a995abf
# Parent  aeb035da53283c56370992f254e4f79d7dd180f8
Bug 703534 - Fix build failure on platforms without YARR JIT. r=luke
target: M11

diff --git a/js/src/jscompartment.cpp b/js/src/jscompartment.cpp
--- a/js/src/jscompartment.cpp
+++ b/js/src/jscompartment.cpp
@@ -45,17 +45,16 @@
 #include jsiter.h
 #include jsmath.h
 #include jsproxy.h
 #include jsscope.h
 #include jstracer.h
 #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
 #include methodjit/MonoIC.h
 #include vm/Debugger.h
 
 #include jsgcinlines.h
 #include jsscopeinlines.h
++ mozilla-yarr-pcre.patch ++
From: Mike Hommey m...@glandium.org
Date: Sat, 24 Dec 2011 09:56:58 +0100
Subject: Bug 691898 - Use YARR interpreter instead of PCRE on platforms where
 YARR JIT is not supported

---
 js/src/Makefile.in   |   21 +
 js/src/vm/RegExpObject-inl.h |   28 ++--
 js/src/vm/RegExpObject.cpp   |   36 
 js/src/vm/RegExpObject.h |   27 ++-
 js/src/yarr/wtfbridge.h  |2 --
 5 files changed, 25 insertions(+), 89 deletions(-)

diff --git a/js/src/Makefile.in b/js/src/Makefile.in
index fc48cbd..49f0bdc 100644
--- a/js/src/Makefile.in
+++ b/js/src/Makefile.in
@@ -416,15 +416,20 @@ CPPSRCS +=checks.cc \
 
 ifeq (,$(filter arm% sparc %86 x86_64,$(TARGET_CPU)))
 
-VPATH +=$(srcdir)/yarr/pcre \
+VPATH +=$(srcdir)/assembler \
+$(srcdir)/assembler/wtf \
+$(srcdir)/yarr \
$(NULL)
 
 CPPSRCS += \
-pcre_compile.cpp \
-pcre_exec.cpp \
-pcre_tables.cpp \
-pcre_xclass.cpp \
-pcre_ucp_searchfuncs.cpp \
+Assertions.cpp \
+OSAllocatorOS2.cpp \
+

commit MozillaThunderbird for openSUSE:12.1:Update:Test

2012-02-13 Thread h_root
Hello community,

here is the log from the commit of package MozillaThunderbird for 
openSUSE:12.1:Update:Test checked in at 2012-02-13 14:22:54

Comparing /work/SRC/openSUSE:12.1:Update:Test/MozillaThunderbird (Old)
 and  /work/SRC/openSUSE:12.1:Update:Test/.MozillaThunderbird.new (New)


Package is MozillaThunderbird, Maintainer is gnome-maintain...@suse.de

Changes:

--- 
/work/SRC/openSUSE:12.1:Update:Test/MozillaThunderbird/MozillaThunderbird.changes
   2012-02-02 10:30:32.0 +0100
+++ 
/work/SRC/openSUSE:12.1:Update:Test/.MozillaThunderbird.new/MozillaThunderbird.changes
  2012-02-13 14:22:58.0 +0100
@@ -1,0 +2,10 @@
+Thu Feb  9 08:10:32 UTC 2012 - w...@rosenauer.org
+
+- update to version 10.0.1 (bnc#746616)
+  * MFSA 2012-10/CVE-2012-0452 (bmo#724284)
+use after free in nsXBLDocumentInfo::ReadPrototypeBindings
+- Use YARR interpreter instead of PCRE on platforms where YARR JIT
+  is not supported, since PCRE doesnt build (bmo#691898)
+- fix ppc64 build (bmo#703534)
+
+---

Old:

  l10n-10.0.tar.bz2
  thunderbird-10.0-source.tar.bz2

New:

  l10n-10.0.1.tar.bz2
  mozilla-bmo703534.patch
  mozilla-yarr-pcre.patch
  thunderbird-10.0.1-source.tar.bz2



Other differences:
--
++ MozillaThunderbird.spec ++
--- /var/tmp/diff_new_pack.z8dedM/_old  2012-02-13 14:23:15.0 +0100
+++ /var/tmp/diff_new_pack.z8dedM/_new  2012-02-13 14:23:15.0 +0100
@@ -37,10 +37,10 @@
 BuildRequires:  update-desktop-files
 BuildRequires:  yasm
 BuildRequires:  zip
-%define mainversion 10.0
+%define mainversion 10.0.1
 Version:%{mainversion}
 Release:0
-%define releasedate 2012012900
+%define releasedate 2012020800
 Provides:   thunderbird = %{version}
 Summary:The Stand-Alone Mozilla Mail Component
 License:MPL-1.1 or GPL-2.0+ or LGPL-2.1+
@@ -65,6 +65,8 @@
 Patch4: mozilla-dump_syms-static.patch
 Patch5: mozilla-disable-neon-option.patch
 Patch6: mozilla-a11y.patch
+Patch7: mozilla-bmo703534.patch
+Patch8: mozilla-yarr-pcre.patch
 # Thunderbird/mail
 Patch10:tb-ssldap.patch
 Patch11:tb-develdirs.patch
@@ -188,6 +190,8 @@
 %patch4 -p1
 %patch5 -p1
 %patch6 -p1
+%patch7 -p1
+%patch8 -p1
 popd
 # comm-central patches
 %patch10 -p1

++ compare-locales.tar.bz2 ++

++ create-tar.sh ++
--- /var/tmp/diff_new_pack.z8dedM/_old  2012-02-13 14:23:15.0 +0100
+++ /var/tmp/diff_new_pack.z8dedM/_new  2012-02-13 14:23:15.0 +0100
@@ -2,8 +2,8 @@
 
 CHANNEL=release
 BRANCH=releases/comm-$CHANNEL
-RELEASE_TAG=THUNDERBIRD_10_0_RELEASE
-VERSION=10.0
+RELEASE_TAG=THUNDERBIRD_10_0_1_RELEASE
+VERSION=10.0.1
 
 echo cloning $BRANCH...
 hg clone http://hg.mozilla.org/$BRANCH thunderbird

++ l10n-10.0.tar.bz2 - l10n-10.0.1.tar.bz2 ++
/work/SRC/openSUSE:12.1:Update:Test/MozillaThunderbird/l10n-10.0.tar.bz2 
/work/SRC/openSUSE:12.1:Update:Test/.MozillaThunderbird.new/l10n-10.0.1.tar.bz2 
differ: char 11, line 1

++ mozilla-bmo703534.patch ++
# HG changeset patch
# User Mike Hommey mh+mozi...@glandium.org
# Date 1321613368 -3600
# Node ID 15cf58eb7923d34de7e61df80fa5f8a18a995abf
# Parent  aeb035da53283c56370992f254e4f79d7dd180f8
Bug 703534 - Fix build failure on platforms without YARR JIT. r=luke
target: M11

diff --git a/js/src/jscompartment.cpp b/js/src/jscompartment.cpp
--- a/js/src/jscompartment.cpp
+++ b/js/src/jscompartment.cpp
@@ -45,17 +45,16 @@
 #include jsiter.h
 #include jsmath.h
 #include jsproxy.h
 #include jsscope.h
 #include jstracer.h
 #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
 #include methodjit/MonoIC.h
 #include vm/Debugger.h
 
 #include jsgcinlines.h
 #include jsscopeinlines.h
++ mozilla-yarr-pcre.patch ++
From: Mike Hommey m...@glandium.org
Date: Sat, 24 Dec 2011 09:56:58 +0100
Subject: Bug 691898 - Use YARR interpreter instead of PCRE on platforms where
 YARR JIT is not supported

---
 js/src/Makefile.in   |   21 +
 js/src/vm/RegExpObject-inl.h |   28 ++--
 js/src/vm/RegExpObject.cpp   |   36 
 js/src/vm/RegExpObject.h |   27 ++-
 js/src/yarr/wtfbridge.h  |2 --
 5 files changed, 25 insertions(+), 89 deletions(-)

diff --git a/js/src/Makefile.in b/js/src/Makefile.in
index fc48cbd..49f0bdc 100644
--- a/js/src/Makefile.in
+++ b/js/src/Makefile.in
@@ -416,15 +416,20 @@ CPPSRCS +=checks.cc \
 
 ifeq (,$(filter arm% sparc %86 

commit lighttpd for openSUSE:12.1:Update:Test

2012-02-13 Thread h_root
Hello community,

here is the log from the commit of package lighttpd for 
openSUSE:12.1:Update:Test checked in at 2012-02-13 14:24:57

Comparing /work/SRC/openSUSE:12.1:Update:Test/lighttpd (Old)
 and  /work/SRC/openSUSE:12.1:Update:Test/.lighttpd.new (New)


Package is lighttpd, Maintainer is mrueck...@suse.com

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/lighttpd/lighttpd.changes   
2012-02-13 14:24:16.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.lighttpd.new/lighttpd.changes  
2012-02-13 14:25:03.0 +0100
@@ -1,0 +2,51 @@
+Fri Jan 27 11:35:01 UTC 2012 - mrueck...@suse.de
+
+- added lighttpd-1.4.30_head_fixes.patch:
+  cherry picked 4 fixes from HEAD:
+  - [ssl] include more headers explicitly
+  - list all network handlers in lighttpd -V (fixes lighttpd#2376)
+  - Move fdevent subsystem includes to implementation files to reduce
+conflicts (fixes lighttpd#2373)
+  - [ssl] fix segfault in counting renegotiations for openssl
+versions without TLSEXT/SNI
+
+---
+Wed Dec 21 17:56:41 UTC 2011 - mrueck...@suse.de
+
+- added the debian.tar.gz to the file list of the spec file to pass
+  the check in factory
+
+---
+Sun Dec 18 16:22:26 UTC 2011 - mrueck...@suse.de
+
+- update to 1.4.30: (bnc#733607)
+  - Always use our ‘own’ md5 implementation, fixes linking issues
+on MacOS (fixes #2331)
+  - Limit amount of bytes we send in one go; fixes stalling in one
+connection and timeouts on slow systems.
+  - [ssl] fix build errors when Elliptic-Curve Diffie-Hellman is
+disabled
+  - Add static-file.disable-pathinfo option to prevent handling of
+urls like …/secret.php/image.jpg as static file
+  - Don’t overwrite 401 (auth required) with 501 (unknown method)
+(fixes #2341)
+  - Fix mod_status bug: always showed “0/0” in the “Read” column
+for uploads (fixes #2351)
+  - [mod_auth] Fix signedness error in http_auth
+(fixes #2370, CVE-2011-4362)
+  - [ssl] count renegotiations to prevent client renegotiations
+  - [ssl] add option to honor server cipher order
+(fixes #2364, BEAST attack)
+  - [core] accept dots in ipv6 addresses in host header
+(fixes #2359)
+  - [ssl] fix ssl connection aborts if files are larger than the
+MAX_WRITE_LIMIT (256kb)
+  - [libev/cgi] fix waitpid ECHILD errors in cgi with libev
+(fixes #2324)
+
+---
+Fri Dec  2 06:34:25 UTC 2011 - co...@suse.com
+
+- add automake as buildrequire to avoid implicit dependency
+
+---
@@ -7 +58 @@
-Mon Jul 11 16:09:22 UTC 2011 - mrueck...@suse.com
+Mon Jul 11 16:09:22 UTC 2011 - mrueck...@suse.de

Old:

  lighttpd-1.4.29.tar.bz2
  lighttpd_1.4.29-1.debian.tar.gz
  lighttpd_1.4.29-1.dsc
  lighttpd_1.4.29.orig.tar.gz

New:

  lighttpd-1.4.30_head_fixes.patch
  lighttpd_1.4.30-0.1.debian.tar.gz
  lighttpd_1.4.30-0.1.dsc
  lighttpd_1.4.30.orig.tar.bz2



Other differences:
--
++ lighttpd.spec ++
--- /var/tmp/diff_new_pack.fehrZk/_old  2012-02-13 14:25:04.0 +0100
+++ /var/tmp/diff_new_pack.fehrZk/_new  2012-02-13 14:25:04.0 +0100
@@ -19,7 +19,7 @@
 
 
 Name:   lighttpd
-Version:1.4.29
+Version:1.4.30
 Release:0
 #
 %define pkg_name lighttpd
@@ -30,7 +30,7 @@
 License:BSD 3-Clause
 #
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  FastCGI-devel e2fsprogs-devel fam-devel gdbm-devel 
libattr-devel libmemcache-devel libxml2-devel mysql-devel openldap2-devel 
pcre-devel pkgconfig pwdutils zlib-devel
+BuildRequires:  FastCGI-devel e2fsprogs-devel fam-devel gdbm-devel 
libattr-devel libmemcache-devel libxml2-devel mysql-devel openldap2-devel 
pcre-devel pkgconfig pwdutils zlib-devel automake
 #
 %define with_tests 1
 %define with_enh_webdav 1
@@ -83,14 +83,17 @@
 #
 Url:http://www.lighttpd.net/
 # Source: 
http://www.lighttpd.net/download/%{pkg_name}-%{version}.tar.bz2
-Source: lighttpd-1.4.29.tar.bz2
+Source: lighttpd_1.4.30.orig.tar.bz2
 Source1:%{pkg_name}.init
 Source2:%{pkg_name}.sysconfig
 Source4:lightytest.sh
 Source5:lighttpd.SuSEfirewall
 Source6:lighttpd-ssl.SuSEfirewall
 Source7:lighttpd.logrotate
+# this is just dummy to pass the check for factory and still have one package 
for deb and rpm
+Source99:   lighttpd_1.4.30-0.1.debian.tar.gz
 Patch:  lighttpd-1.4.13_geoip.patch
+Patch1: lighttpd-1.4.30_head_fixes.patch
 #
 Summary:A Secure, Fast, Compliant, and Very Flexible Web Server
 

commit seamonkey for openSUSE:12.1:Update:Test

2012-02-13 Thread h_root
Hello community,

here is the log from the commit of package seamonkey for 
openSUSE:12.1:Update:Test checked in at 2012-02-13 14:25:09

Comparing /work/SRC/openSUSE:12.1:Update:Test/seamonkey (Old)
 and  /work/SRC/openSUSE:12.1:Update:Test/.seamonkey.new (New)


Package is seamonkey, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/seamonkey/seamonkey.changes 
2012-02-02 10:39:15.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.seamonkey.new/seamonkey.changes
2012-02-13 14:25:23.0 +0100
@@ -1,0 +2,10 @@
+Thu Feb  9 12:36:02 UTC 2012 - w...@rosenauer.org
+
+- update to Seamonkey 2.7.1 (bnc#746616)
+  * MFSA 2012-10/CVE-2012-0452 (bmo#724284)
+use after free in nsXBLDocumentInfo::ReadPrototypeBindings
+- Use YARR interpreter instead of PCRE on platforms where YARR JIT
+  is not supported, since PCRE doesnt build (bmo#691898)
+- fix ppc64 build (bmo#703534)
+
+---

Old:

  l10n-2.7.tar.bz2
  seamonkey-2.7-source.tar.bz2

New:

  l10n-2.7.1.tar.bz2
  mozilla-bmo703534.patch
  mozilla-yarr-pcre.patch
  seamonkey-2.7.1-source.tar.bz2



Other differences:
--
++ seamonkey.spec ++
--- /var/tmp/diff_new_pack.S9syLN/_old  2012-02-13 14:25:27.0 +0100
+++ /var/tmp/diff_new_pack.S9syLN/_new  2012-02-13 14:25:27.0 +0100
@@ -16,6 +16,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   seamonkey
 BuildRequires:  Mesa-devel
 BuildRequires:  autoconf213
@@ -36,9 +37,9 @@
 BuildRequires:  yasm
 BuildRequires:  zip
 Provides:   web_browser
-Version:2.7
+Version:2.7.1
 Release:0
-%define releasedate 2012013000
+%define releasedate 2012020800
 Summary:The successor of the Mozilla Application Suite
 License:MPL-1.1 or GPL-2.0+ or LGPL-2.1+
 Group:  Productivity/Networking/Web/Browsers
@@ -60,6 +61,8 @@
 Patch5: mozilla-language.patch
 Patch8: mozilla-ntlm-full-path.patch
 Patch10:mozilla-ua-locale.patch
+Patch11:mozilla-bmo703534.patch
+Patch12:mozilla-yarr-pcre.patch
 Patch20:seamonkey-ua-locale.patch
 Patch21:seamonkey-shared-nss-db.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -156,6 +159,8 @@
 %patch5 -p1
 %patch8 -p1
 %patch10 -p1
+%patch11 -p1
+%patch12 -p1
 popd
 # comm patches
 %patch20 -p1

++ compare-locales.tar.bz2 ++

++ create-tar.sh ++
--- /var/tmp/diff_new_pack.S9syLN/_old  2012-02-13 14:25:27.0 +0100
+++ /var/tmp/diff_new_pack.S9syLN/_new  2012-02-13 14:25:27.0 +0100
@@ -1,8 +1,8 @@
 #!/bin/bash
 
 BRANCH=releases/comm-release
-RELEASE_TAG=SEAMONKEY_2_7_RELEASE
-VERSION=2.7
+RELEASE_TAG=SEAMONKEY_2_7_1_RELEASE
+VERSION=2.7.1
 
 echo cloning $BRANCH...
 hg clone http://hg.mozilla.org/$BRANCH seamonkey

++ l10n-2.7.tar.bz2 - l10n-2.7.1.tar.bz2 ++
/work/SRC/openSUSE:12.1:Update:Test/seamonkey/l10n-2.7.tar.bz2 
/work/SRC/openSUSE:12.1:Update:Test/.seamonkey.new/l10n-2.7.1.tar.bz2 differ: 
char 11, line 1

++ mozilla-bmo703534.patch ++
# HG changeset patch
# User Mike Hommey mh+mozi...@glandium.org
# Date 1321613368 -3600
# Node ID 15cf58eb7923d34de7e61df80fa5f8a18a995abf
# Parent  aeb035da53283c56370992f254e4f79d7dd180f8
Bug 703534 - Fix build failure on platforms without YARR JIT. r=luke
target: M11

diff --git a/js/src/jscompartment.cpp b/js/src/jscompartment.cpp
--- a/js/src/jscompartment.cpp
+++ b/js/src/jscompartment.cpp
@@ -45,17 +45,16 @@
 #include jsiter.h
 #include jsmath.h
 #include jsproxy.h
 #include jsscope.h
 #include jstracer.h
 #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
 #include methodjit/MonoIC.h
 #include vm/Debugger.h
 
 #include jsgcinlines.h
 #include jsscopeinlines.h
++ mozilla-yarr-pcre.patch ++
From: Mike Hommey m...@glandium.org
Date: Sat, 24 Dec 2011 09:56:58 +0100
Subject: Bug 691898 - Use YARR interpreter instead of PCRE on platforms where
 YARR JIT is not supported

---
 js/src/Makefile.in   |   21 +
 js/src/vm/RegExpObject-inl.h |   28 ++--
 js/src/vm/RegExpObject.cpp   |   36 
 js/src/vm/RegExpObject.h |   27 ++-
 js/src/yarr/wtfbridge.h  |2 --
 5 files changed, 25 insertions(+), 89 deletions(-)

diff --git a/js/src/Makefile.in b/js/src/Makefile.in
index fc48cbd..49f0bdc 100644
--- a/js/src/Makefile.in
+++ b/js/src/Makefile.in
@@ -416,15 +416,20 @@ 

commit xulrunner for openSUSE:12.1:Update:Test

2012-02-13 Thread h_root
Hello community,

here is the log from the commit of package xulrunner for 
openSUSE:12.1:Update:Test checked in at 2012-02-13 14:25:16

Comparing /work/SRC/openSUSE:12.1:Update:Test/xulrunner (Old)
 and  /work/SRC/openSUSE:12.1:Update:Test/.xulrunner.new (New)


Package is xulrunner, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/xulrunner/xulrunner.changes 
2012-02-02 10:40:55.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.xulrunner.new/xulrunner.changes
2012-02-13 14:25:53.0 +0100
@@ -1,0 +2,14 @@
+Thu Feb  9 10:20:49 UTC 2012 - w...@rosenauer.org
+
+- update to version 10.0.1 (bnc#746616)
+  * MFSA 2012-10/CVE-2012-0452 (bmo#724284)
+use after free in nsXBLDocumentInfo::ReadPrototypeBindings
+
+---
+Tue Feb  7 10:40:58 UTC 2012 - dval...@suse.com
+
+- Use YARR interpreter instead of PCRE on platforms where YARR JIT
+  is not supported, since PCRE doesnt build (bmo#691898)
+- fix ppc64 build (bmo#703534)
+
+---

Old:

  l10n-10.0.tar.bz2
  xulrunner-10.0-source.tar.bz2

New:

  l10n-10.0.1.tar.bz2
  mozilla-bmo703534.patch
  mozilla-yarr-pcre.patch
  xulrunner-10.0.1-source.tar.bz2



Other differences:
--
++ xulrunner.spec ++
--- /var/tmp/diff_new_pack.jbhIxj/_old  2012-02-13 14:25:57.0 +0100
+++ /var/tmp/diff_new_pack.jbhIxj/_new  2012-02-13 14:25:57.0 +0100
@@ -43,12 +43,12 @@
 %endif
 BuildRequires:  mozilla-nspr-devel = 4.8.9
 BuildRequires:  mozilla-nss-devel = 3.13.1
-Version:10.0
+Version:10.0.1
 Release:0
-%define releasedate 2012012900
-%define version_internal 10.0
+%define releasedate 2012020800
+%define version_internal 10.0.1
 %define apiversion 10
-%define uaweight 100
+%define uaweight 101
 Summary:Mozilla Runtime Environment
 License:MPL-1.1 or GPL-2.0+ or LGPL-2.1+
 Group:  Productivity/Other
@@ -79,6 +79,8 @@
 Patch14:mozilla-linux3.patch
 Patch15:mozilla-a11y.patch
 Patch16:mozilla-disable-neon-option.patch
+Patch17:mozilla-bmo703534.patch
+Patch18:mozilla-yarr-pcre.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   mozilla-js = %{version}
 Requires(post):  update-alternatives coreutils
@@ -198,6 +200,8 @@
 %patch14 -p1
 %patch15 -p1
 %patch16 -p1
+%patch17 -p1
+%patch18 -p1
 
 %build
 # no need to add build time to binaries

++ create-tar.sh ++
--- /var/tmp/diff_new_pack.jbhIxj/_old  2012-02-13 14:25:57.0 +0100
+++ /var/tmp/diff_new_pack.jbhIxj/_new  2012-02-13 14:25:57.0 +0100
@@ -2,8 +2,8 @@
 
 CHANNEL=release
 BRANCH=releases/mozilla-$CHANNEL
-RELEASE_TAG=FIREFOX_10_0_RELEASE
-VERSION=10.0
+RELEASE_TAG=FIREFOX_10_0_1_RELEASE
+VERSION=10.0.1
 
 # mozilla
 hg clone http://hg.mozilla.org/$BRANCH mozilla

++ l10n-10.0.tar.bz2 - l10n-10.0.1.tar.bz2 ++
/work/SRC/openSUSE:12.1:Update:Test/xulrunner/l10n-10.0.tar.bz2 
/work/SRC/openSUSE:12.1:Update:Test/.xulrunner.new/l10n-10.0.1.tar.bz2 differ: 
char 11, line 1

++ mozilla-bmo703534.patch ++
# HG changeset patch
# User Mike Hommey mh+mozi...@glandium.org
# Date 1321613368 -3600
# Node ID 15cf58eb7923d34de7e61df80fa5f8a18a995abf
# Parent  aeb035da53283c56370992f254e4f79d7dd180f8
Bug 703534 - Fix build failure on platforms without YARR JIT. r=luke
target: M11

diff --git a/js/src/jscompartment.cpp b/js/src/jscompartment.cpp
--- a/js/src/jscompartment.cpp
+++ b/js/src/jscompartment.cpp
@@ -45,17 +45,16 @@
 #include jsiter.h
 #include jsmath.h
 #include jsproxy.h
 #include jsscope.h
 #include jstracer.h
 #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
 #include methodjit/MonoIC.h
 #include vm/Debugger.h
 
 #include jsgcinlines.h
 #include jsscopeinlines.h
++ mozilla-pkgconfig.patch ++
--- /var/tmp/diff_new_pack.jbhIxj/_old  2012-02-13 14:25:57.0 +0100
+++ /var/tmp/diff_new_pack.jbhIxj/_new  2012-02-13 14:25:57.0 +0100
@@ -14,7 +14,7 @@
  # Add pkg-config files to the install:: target
  
 +# the apilibdir always ends with 1.9 as every patch update will provide a link
-+apilibdir = $(dir $(installdir))xulrunner-9
++apilibdir = $(dir $(installdir))xulrunner-10
 +
  pkg_config_files = \
libxul.pc \

++ mozilla-yarr-pcre.patch ++
From: Mike Hommey m...@glandium.org
Date: Sat, 24 Dec 2011 09:56:58 +0100
Subject: Bug 691898 - Use YARR interpreter 

commit pm-utils for openSUSE:12.1:Update:Test

2012-02-13 Thread h_root
Hello community,

here is the log from the commit of package pm-utils for 
openSUSE:12.1:Update:Test checked in at 2012-02-13 16:11:40

Comparing /work/SRC/openSUSE:12.1:Update:Test/pm-utils (Old)
 and  /work/SRC/openSUSE:12.1:Update:Test/.pm-utils.new (New)


Package is pm-utils, Maintainer is mvysko...@suse.com

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/pm-utils/pm-utils.changes   
2012-02-13 16:11:45.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.pm-utils.new/pm-utils.changes  
2012-02-13 16:11:45.0 +0100
@@ -1,0 +2,8 @@
+Mon Feb 13 09:57:57 UTC 2012 - bi...@opensuse.org
+
+- Add pm-utils-1.4.1-networkmanager.patch, the methods 
+  org.freedesktop.NetworkManager.{sleep,wake} have been replaced in
+  post-6.x NetworkManager by org.freedesktop.NetworkManager.Sleep
+  which takes a boolean argument(bnc#735837).
+
+---

New:

  pm-utils-1.4.1-networkmanager.patch



Other differences:
--
++ pm-utils.spec ++
--- /var/tmp/diff_new_pack.fhXnTU/_old  2012-02-13 16:11:45.0 +0100
+++ /var/tmp/diff_new_pack.fhXnTU/_new  2012-02-13 16:11:45.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package pm-utils
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -45,6 +45,8 @@
 Patch4: pm-utils-1.3.0-suse-logging.patch
 #PATCH-FIX-OPENSUSE: export SUSE_IGNORE_FBMODES to workaround bnc#304995
 Patch5: pm-utils-1.3.0-suse-directfb-ignore-fbmodes.patch
+#PATCH-FIX-OPENSUSE: Update NetworkManager's Sleep method bnc#735837
+Patch6: pm-utils-1.4.1-networkmanager.patch
 Patch11:pm-utils-1.4.1-vtXX-upower-battery-AC-adapter.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -93,6 +95,7 @@
 %patch3 -p1 -b .suse-grub
 %patch4 -p1 -b .suse-logging
 %patch5 -p1 -b .directfb-ignore-fbmodes
+%patch6 -p1 -b .networkmanager
 cd ..
 %patch11 -p0
 

++ pm-utils-1.4.1-networkmanager.patch ++
Index: pm-utils-1.4.1/pm/sleep.d/55NetworkManager
===
--- pm-utils-1.4.1.orig/pm/sleep.d/55NetworkManager
+++ pm-utils-1.4.1/pm/sleep.d/55NetworkManager
@@ -16,7 +16,7 @@ suspend_nm()
 --print-reply --reply-timeout=200  \
--dest=org.freedesktop.NetworkManager  \
/org/freedesktop/NetworkManager\
-   org.freedesktop.NetworkManager.sleep  \
+   org.freedesktop.NetworkManager.Sleep boolean:true  \
echo Done. || echo Failed.
 }
 
@@ -28,7 +28,7 @@ resume_nm()
--dest=org.freedesktop.NetworkManager \
 --print-reply --reply-timeout=200  \
/org/freedesktop/NetworkManager   \
-   org.freedesktop.NetworkManager.wake  \
+   org.freedesktop.NetworkManager.Sleep boolean:false  \
echo Done. || echo Failed.
 }
 
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit horde3-imp for openSUSE:12.1:Update:Test

2012-02-13 Thread h_root
Hello community,

here is the log from the commit of package horde3-imp for 
openSUSE:12.1:Update:Test checked in at 2012-02-13 17:32:50

Comparing /work/SRC/openSUSE:12.1:Update:Test/horde3-imp (Old)
 and  /work/SRC/openSUSE:12.1:Update:Test/.horde3-imp.new (New)


Package is horde3-imp, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /work/SRC/openSUSE:12.1:Update:Test/.horde3-imp.new/horde3-imp.changes  
2012-02-13 17:32:51.0 +0100
@@ -0,0 +1,241 @@
+---
+Sat Feb 11 10:53:22 UTC 2012 - l...@b1-systems.de
+- bnc#742804 (CVE-2012-0791)
+- Fixed XSS vulnerabilities (CVE-2012-0791). 
+- Version 4.3.11
+- Warning: All things horde3 will be EOLed by April 2012
+
+---
+Thu Jan 12 11:30:38 UTC 2012 - co...@suse.com
+
+- change license to be in spdx.org format
+
+---
+Thu Aug 25 18:08:06 UTC 2011 - l...@b1-systems.de
+
+- make it actually install in factory, not just build
+
+---
+Sat Aug 13 17:42:43 UTC 2011 - l...@b1-systems.de
+
+- updated FSF address
+- version 4.3.10
+- [jan] Don't submit the action form when reloading messages with iTip
+  attachments (Bug #9502).
+
+---
+Sat Oct 30 11:57:53 UTC 2010 - l...@b1-systems.de
+
+- updated source to 4.3.9 upstream
+
+---
+Wed Oct 13 11:10:04 UTC 2010 - l...@b1-systems.de
+
+- updated source to 4.3.8 upstream 
+
+---
+Sun Mar 17 12:46:00 CET 2008 - mho...@suse.de
+- removed obsolete patch files imp-h3-4.1.4-usr_local.patch 
imp-h3-4.2-alpha-php5_exec.patch
+- added new patch files imp-h3-4.2-rc3-usr_local.patch 
imp-h3-4.2-rc3-php5_exec.patch
+
+---
+Sun Mar 16 15:42:25 CET 2008 - mho...@suse.de
+
+- updated to version 4.2-rc3
+- changed Obsoletes to imp = 4.1.6
+- removed imp-h3-4.1.4-disable-html.patch
+
+---
+Mon Dec 10 17:38:18 CET 2007 - suse-...@gmx.de
+
+- removed %%debug_package
+
+---
+Tue Dec  4 18:11:01 CET 2007 - suse-...@gmx.de
+
+- renamed package to horde-imp
+- added missing requires
+- updated to version 4.2-rc1
+
+---
+Wed Nov  7 15:18:22 CET 2007 - suse-...@gmx.de
+
+- added Patch3 (imp-h3-4.2-alpha-php5_exec.patch) - this patch replaces
+  /usr/bin/php with /usr/bin/php5
+- changed version number to 4.1.99 to show that this is an alpha release
+
+---
+Tue Nov  6 20:37:33 CET 2007 - suse-...@gmx.de
+
+- updated to version 4.2-alpha
+- disabled Patch1 (imp-h3-4.1.4-disable-html.patch) for now. TODO: Is this
+  exploit still valid?
+- added updated servers.php.kolab file
+
+---
+Fri Jul 27 08:52:46 CEST 2007 - ano...@suse.cz
+
+- updated to version 4.1.4
+  * SECURITY: Fix XSS vulnerabilities in the search screen and thread view.
+  * Improve displaying of PGP messages (requires Horde 3.1.4 partially).
+  * Make sure we pass a read/write IMAP stream to the filters API (Bug
+#5054).
+  * Do not allow move to trash unless trash folder is defined (Bug #5012).
+  * Fix an encoding issue with the address book popup (Bug #5050).
+  * Ignore All spellchecking fixes (technol...@pmi-portland.org, Bug #4922).
+  * Absolute restriction on the width of the contacts window select elements
+(Request #1985).
+  * Send lowercase mailto: attributes in iCalendar replies (Bug #4872).
+  * Don't improperly increment iCalendar SEQUENCE values (Bug #4863).
+  * Always subscribe to created folders.
+  * Don't allow both trash folder and Virtual Trash to be selected in the
+options (Bug #4698).
+  * Turn mailto: links in HTML emails into IMP compose links (Bug #3079).
+  * Attempt to calculate the actual filesystem block size in the
+IMP_Quota_command driver (Eric Rostetter
+eric.rostet...@physics.utexas.edu, Request #4360).
+  * Make sure to honor user date format preferences in iTip viewer
+(Bug #4635).
+  * Fix message list header underflow in IE7 (Bug #4608).
+  * Don't return empty sent-mail folders from the identity (Bug #4380).
+  * Don't rename folders from or to an empty string (Bug #4380).
+  * Don't replace spaces with '.' when expanding addresses. (Bug #4236)
+

commit horde3 for openSUSE:12.1:Update:Test

2012-02-13 Thread h_root
Hello community,

here is the log from the commit of package horde3 for openSUSE:12.1:Update:Test 
checked in at 2012-02-13 21:13:00

Comparing /work/SRC/openSUSE:12.1:Update:Test/horde3 (Old)
 and  /work/SRC/openSUSE:12.1:Update:Test/.horde3.new (New)


Package is horde3, Maintainer is 

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/horde3/horde3.changes   2012-02-13 
21:13:06.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.horde3.new/horde3.changes  
2012-02-13 21:13:06.0 +0100
@@ -1,0 +2,16 @@
+Sat Feb 11 10:48:38 UTC 2012 - l...@b1-systems.de
+- bnc#742804 ( CVE-2012-0909)
+- version 3.3.13
+- Fixed a XSS vulnerability (CVE-2012-0909).
+- Added support for resetting passwords in LDAP.
+- Fixed compatibility with Firefox 10. 
+- Warning: Official support EOL for all things Horde3 ends April 2012
+
+---
+Fri Oct 21 19:21:18 UTC 2011 - ch...@computersalat.de
+
+- fix build
+  * no space before %patch macro
+- spec cleanup
+
+---

Old:

  horde-3.3.12.tar.gz

New:

  horde-3.3.13.tar.gz



Other differences:
--
++ horde3.spec ++
--- /var/tmp/diff_new_pack.XP3cOm/_old  2012-02-13 21:13:07.0 +0100
+++ /var/tmp/diff_new_pack.XP3cOm/_new  2012-02-13 21:13:07.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package horde3
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,19 +15,34 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 %define _phpdir php5
 %define peardir %(pear config-get php_dir 2 /dev/null)
 %define _hordedir /srv/www/htdocs/horde
 
 Name:   horde3
 Summary:Core Pieces for Running H3 Web Applications
-Version:3.3.12
-Release:1
-Url:http://www.horde.org/
-License:GPL v2 or later
+License:GPL-2.0+
 Group:  Productivity/Networking/Web/Utilities
+Version:3.3.13
+Release:0
+Url:http://www.horde.org/
+Source0:horde-%{version}.tar.gz
+Source1:COPYING
+
+Patch0: horde-3.1.2-log.patch
+Patch1: horde-fatal-on-admin-3.3.11.patch
+Patch2: horde-finer-grained-admin-privileges.patch
+Patch3: horde-3.2-rc1-usr_local.patch
+Patch4: horde-3.3.9-php5_exec.patch
+BuildArch:  noarch
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  apache2-devel
+# This check is still needed for SLE_10
+%if 0%{?suse_version}  1020
+BuildRequires:  fdupes
+%endif
+BuildRequires:  pcre-devel
+BuildRequires:  php5-pear
 Requires:   mod_php_any
 Requires:   php-gettext
 Requires:   php-mcrypt
@@ -54,36 +69,11 @@
 Requires:   php5-pear-HTTP_Request
 Requires:   php5-pear-Services_Weather
 Requires:   php5-pear-XML_SVG
-Source0:horde-%{version}.tar.gz
-Source1:COPYING
-
-Patch0: horde-3.1.2-log.patch
-Patch1: horde-fatal-on-admin-3.3.11.patch
-Patch2: horde-finer-grained-admin-privileges.patch
-Patch3: horde-3.2-rc1-usr_local.patch
-Patch4: horde-3.3.9-php5_exec.patch
-BuildRequires:  apache2-devel
-# This check is still needed for SLE-10-SP2
-%if 0%{?suse_version}  1020
-BuildRequires:  fdupes
-%endif
-BuildRequires:  pcre-devel
-BuildRequires:  php5-pear
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildArch:  noarch
 
 %description
 These are the core pieces of the Horde suite of Web applications. This
 package is needed to run any of the other programs, such as IMP.
 
-
-
-Authors:
-
-   Chuck Hagenbuch ch...@horde.org 
-   Jan Schneider j...@horde.org 
-   Michael Slusarz slus...@horde.org
-
 %prep
 %setup %setup -qn horde-%{version}
 %patch0
@@ -91,7 +81,7 @@
 %patch2
 %patch3
 if test -e /usr/bin/php5; then
-  %patch4 -p1
+%patch4 -p1
 fi
 # Remove the .orig files that are created by the above patch' commands
 find -name *.orig -exec rm {} \;

++ horde-3.3.12.tar.gz - horde-3.3.13.tar.gz ++
/work/SRC/openSUSE:12.1:Update:Test/horde3/horde-3.3.12.tar.gz 
/work/SRC/openSUSE:12.1:Update:Test/.horde3.new/horde-3.3.13.tar.gz differ: 
char 5, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit pm-utils for openSUSE:11.4

2012-02-13 Thread h_root

Hello community,

here is the log from the commit of package pm-utils for openSUSE:11.4
checked in at Mon Feb 13 23:45:55 CET 2012.




--- old-versions/11.4/all/pm-utils/pm-utils.changes 2011-03-01 
09:33:50.0 +0100
+++ 11.4/pm-utils/pm-utils.changes  2012-02-13 11:05:58.0 +0100
@@ -1,0 +2,8 @@
+Mon Feb 13 09:57:57 UTC 2012 - bi...@opensuse.org
+
+- Add pm-utils-1.4.1-networkmanager.patch, the methods 
+  org.freedesktop.NetworkManager.{sleep,wake} have been replaced in
+  post-6.x NetworkManager by org.freedesktop.NetworkManager.Sleep
+  which takes a boolean argument(bnc#735837).
+
+---

Package does not exist at destination yet. Using Fallback 
old-versions/11.4/all/pm-utils
Destination is old-versions/11.4/UPDATES/all/pm-utils
calling whatdependson for 11.4-i586


New:

  pm-utils-1.4.1-networkmanager.patch



Other differences:
--
++ pm-utils.spec ++
--- /var/tmp/diff_new_pack.1tcHj0/_old  2012-02-13 23:45:20.0 +0100
+++ /var/tmp/diff_new_pack.1tcHj0/_new  2012-02-13 23:45:20.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package pm-utils
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,7 +23,7 @@
 
 Name:   pm-utils
 Version:1.4.1
-Release:5.RELEASE3
+Release:5.RELEASE11
 Summary:Tools to suspend and hibernate computers
 License:GPLv2+
 Group:  System/Base
@@ -45,6 +45,8 @@
 Patch4: pm-utils-1.3.0-suse-logging.patch
 #PATCH-FIX-OPENSUSE: export SUSE_IGNORE_FBMODES to workaround bnc#304995
 Patch5: pm-utils-1.3.0-suse-directfb-ignore-fbmodes.patch
+#PATCH-FIX-OPENSUSE: Update NetworkManager's Sleep method bnc#735837
+Patch6: pm-utils-1.4.1-networkmanager.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 PreReq: %insserv_prereq
@@ -92,6 +94,7 @@
 %patch3 -p1 -b .suse-grub
 %patch4 -p1 -b .suse-logging
 %patch5 -p1 -b .directfb-ignore-fbmodes
+%patch6 -p1 -b .networkmanager
 
 %build
 %{configure} \

++ pm-utils-1.4.1-networkmanager.patch ++
Index: pm-utils-1.4.1/pm/sleep.d/55NetworkManager
===
--- pm-utils-1.4.1.orig/pm/sleep.d/55NetworkManager
+++ pm-utils-1.4.1/pm/sleep.d/55NetworkManager
@@ -16,7 +16,7 @@ suspend_nm()
 --print-reply --reply-timeout=200  \
--dest=org.freedesktop.NetworkManager  \
/org/freedesktop/NetworkManager\
-   org.freedesktop.NetworkManager.sleep  \
+   org.freedesktop.NetworkManager.Sleep boolean:true  \
echo Done. || echo Failed.
 }
 
@@ -28,7 +28,7 @@ resume_nm()
--dest=org.freedesktop.NetworkManager \
 --print-reply --reply-timeout=200  \
/org/freedesktop/NetworkManager   \
-   org.freedesktop.NetworkManager.wake  \
+   org.freedesktop.NetworkManager.Sleep boolean:false  \
echo Done. || echo Failed.
 }
 
continue with q...



Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org