commit tomcat6 for openSUSE:11.4

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package tomcat6 for openSUSE:11.4
checked in at Mon Aug 15 18:21:02 CEST 2011.




--- old-versions/11.4/all/tomcat6/tomcat6.changes   2011-02-11 
09:31:05.0 +0100
+++ 11.4/tomcat6/tomcat6.changes2011-08-15 13:30:48.0 +0200
@@ -1,0 +2,10 @@
+Mon Aug 15 11:30:34 UTC 2011 - mvysko...@suse.cz
+
+- fix bnc#706404 - VUL-0: tomcat user password information leak (CVE-2011-2204)
+  * http://svn.apache.org/viewvc?view=revision&revision=1140071
+- fix bnc#706382 - VUL-0: tomcat information leak and DoS (CVE-2011-2526)
+  * http://svn.apache.org/viewvc?view=revision&revision=1146703
+- fix bnc#702289 - suse manager pam ldap authentication fails
+  * source CATALINA_HOME/bin/setenv.sh if exists
+
+---

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


New:

  apache-tomcat-CVE-2011-2204.patch
  apache-tomcat-CVE-2011-2526.patch



Other differences:
--
++ libtcnative-1-0.spec ++
--- /var/tmp/diff_new_pack.3qY0yW/_old  2011-08-15 18:20:46.0 +0200
+++ /var/tmp/diff_new_pack.3qY0yW/_new  2011-08-15 18:20:46.0 +0200
@@ -29,7 +29,7 @@
 
 Name:   libtcnative-1-0
 Version:%{major}.%{minor}.%{micro}
-Release:11
+Release:11.
 Summary:JNI wrappers for Apache Portable Runtime for Tomcat
 Group:  Productivity/Networking/Web/Servers
 License:Apache Software License ..

++ tomcat6.spec ++
--- /var/tmp/diff_new_pack.3qY0yW/_old  2011-08-15 18:20:46.0 +0200
+++ /var/tmp/diff_new_pack.3qY0yW/_new  2011-08-15 18:20:46.0 +0200
@@ -41,7 +41,7 @@
 
 Name:   tomcat6
 Version:%{major_version}.%{minor_version}.%{micro_version}
-Release:1
+Release:7.
 Summary:Apache Servlet/JSP Engine, RI for Servlet 2.5/JSP 2.1 API
 Group:  Productivity/Networking/Web/Servers
 License:Apache Software License ..
@@ -64,6 +64,10 @@
 Patch0: 
%{name}-%{major_version}.%{minor_version}.bootstrap-MANIFEST.MF.patch
 #PATCH-FIX-UPSTREAM: from jpackage.org package
 Patch1: 
%{name}-%{major_version}.%{minor_version}-tomcat-users-webapp.patch
+#PATCH-FIX-UPSTREAM: 
http://svn.apache.org/viewvc?view=revision&revision=1140071
+Patch2: apache-tomcat-CVE-2011-2204.patch
+#PATCH-FIX-UPSTREAM: 
http://svn.apache.org/viewvc?view=revision&revision=1146703
+Patch3: apache-tomcat-CVE-2011-2526.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 BuildRequires:  ant
@@ -220,6 +224,8 @@
   -name "*.jar" -o -name "*.war" -o -name "*.zip" \) | xargs -t %{__rm}
 %patch0 -p1
 %patch1 -p0
+%patch2 -p1 -b .CVE-2011-2204
+%patch3 -p1 -b .CVE-2011-2526
 
 %build
 export CLASSPATH=

++ apache-tomcat-CVE-2011-2204.patch ++
Index: apache-tomcat-6.0.32-src/java/org/apache/catalina/users/MemoryUser.java
===
--- apache-tomcat-6.0.32-src/java/org/apache/catalina/users/MemoryUser.java 
(revision 1140070)
+++ apache-tomcat-6.0.32-src/java/org/apache/catalina/users/MemoryUser.java 
(revision 1140071)
@@ -246,7 +246,7 @@
  * username or name for the username
  * property.
  */
-public String toString() {
+public String toXml() {
 
 StringBuffer sb = new StringBuffer("Return a String representation of this user.
+ */
+@Override
+public String toString() {
 
+StringBuilder sb = new StringBuilder("User username=\"");
+sb.append(RequestUtil.filter(username));
+sb.append("\"");
+if (fullName != null) {
+sb.append(", fullName=\"");
+sb.append(RequestUtil.filter(fullName));
+sb.append("\"");
+}
+synchronized (groups) {
+if (groups.size() > 0) {
+sb.append(", groups=\"");
+int n = 0;
+Iterator values = groups.iterator();
+while (values.hasNext()) {
+if (n > 0) {
+sb.append(',');
+}
+n++;
+
sb.append(RequestUtil.filter(values.next().getGroupname()));
+}
+sb.append("\"");
+}
+}
+synchronized (roles) {
+if (roles.size() > 0) {
+sb.append(", roles=\"");
+int n = 0;
+Iterator values = roles.iterator();
+while (values.hasNext()) {
+if (n > 0) {
+sb.append(',');
+}
+n++;
+sb.append(RequestUtil.filter(value

commit tomcat6 for openSUSE:11.3

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package tomcat6 for openSUSE:11.3
checked in at Mon Aug 15 18:20:34 CEST 2011.




--- old-versions/11.3/UPDATES/all/tomcat6/tomcat6.changes   2011-02-11 
11:20:30.0 +0100
+++ 11.3/tomcat6/tomcat6.changes2011-08-15 13:30:16.0 +0200
@@ -1,0 +2,10 @@
+Mon Aug 15 11:29:46 UTC 2011 - mvysko...@suse.cz
+
+- fix bnc#706404 - VUL-0: tomcat user password information leak (CVE-2011-2204)
+  * http://svn.apache.org/viewvc?view=revision&revision=1140071
+- fix bnc#706382 - VUL-0: tomcat information leak and DoS (CVE-2011-2526)
+  * http://svn.apache.org/viewvc?view=revision&revision=1146703
+- fix bnc#702289 - suse manager pam ldap authentication fails
+  * source CATALINA_HOME/bin/setenv.sh if exists
+
+---

calling whatdependson for 11.3-i586


New:

  apache-tomcat-CVE-2011-2204.patch
  apache-tomcat-CVE-2011-2526.patch



Other differences:
--
++ libtcnative-1-0.spec ++
--- /var/tmp/diff_new_pack.VvCMCq/_old  2011-08-15 18:19:50.0 +0200
+++ /var/tmp/diff_new_pack.VvCMCq/_new  2011-08-15 18:19:50.0 +0200
@@ -29,7 +29,7 @@
 
 Name:   libtcnative-1-0
 Version:%{major}.%{minor}.%{micro}
-Release:5.
+Release:5.
 Summary:JNI wrappers for Apache Portable Runtime for Tomcat
 Group:  Productivity/Networking/Web/Servers
 License:Apache Software License ..

++ tomcat6.spec ++
--- /var/tmp/diff_new_pack.VvCMCq/_old  2011-08-15 18:19:50.0 +0200
+++ /var/tmp/diff_new_pack.VvCMCq/_new  2011-08-15 18:19:50.0 +0200
@@ -41,7 +41,7 @@
 
 Name:   tomcat6
 Version:%{major_version}.%{minor_version}.%{micro_version}
-Release:5.
+Release:5.
 Summary:Apache Servlet/JSP Engine, RI for Servlet 2.5/JSP 2.1 API
 Group:  Productivity/Networking/Web/Servers
 License:Apache Software License ..
@@ -73,6 +73,10 @@
 Patch6: apache-tomcat-CVE-2011-0013.patch
 #PATCH-FIX-UPSTREAM: 
http://svn.apache.org/viewvc?view=revision&revision=1066313
 Patch7: apache-tomcat-CVE-2011-0534.patch
+#PATCH-FIX-UPSTREAM: 
http://svn.apache.org/viewvc?view=revision&revision=1140071
+Patch8: apache-tomcat-CVE-2011-2204.patch
+#PATCH-FIX-UPSTREAM: 
http://svn.apache.org/viewvc?view=revision&revision=1146703
+Patch9: apache-tomcat-CVE-2011-2526.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 BuildRequires:  ant
@@ -235,6 +239,8 @@
 %patch5 -p0 -b .CVE-2010-3781
 %patch6 -p0 -b .CVE-2011-0013
 %patch7 -p0 -b .CVE-2011-0534
+%patch8 -p0 -b .CVE-2011-2204
+%patch9 -p0 -b .CVE-2011-2526
 
 %build
 export CLASSPATH=

++ apache-tomcat-CVE-2011-2204.patch ++
Index: apache-tomcat-6.0.24-src/java/org/apache/catalina/users/MemoryUser.java
===
--- apache-tomcat-6.0.24-src/java/org/apache/catalina/users/MemoryUser.java 
(revision 1140070)
+++ apache-tomcat-6.0.24-src/java/org/apache/catalina/users/MemoryUser.java 
(revision 1140071)
@@ -246,7 +246,7 @@
  * username or name for the username
  * property.
  */
-public String toString() {
+public String toXml() {
 
 StringBuffer sb = new StringBuffer("Return a String representation of this user.
+ */
+@Override
+public String toString() {
 
+StringBuilder sb = new StringBuilder("User username=\"");
+sb.append(RequestUtil.filter(username));
+sb.append("\"");
+if (fullName != null) {
+sb.append(", fullName=\"");
+sb.append(RequestUtil.filter(fullName));
+sb.append("\"");
+}
+synchronized (groups) {
+if (groups.size() > 0) {
+sb.append(", groups=\"");
+int n = 0;
+Iterator values = groups.iterator();
+while (values.hasNext()) {
+if (n > 0) {
+sb.append(',');
+}
+n++;
+
sb.append(RequestUtil.filter(values.next().getGroupname()));
+}
+sb.append("\"");
+}
+}
+synchronized (roles) {
+if (roles.size() > 0) {
+sb.append(", roles=\"");
+int n = 0;
+Iterator values = roles.iterator();
+while (values.hasNext()) {
+if (n > 0) {
+sb.append(',');
+}
+n++;
+sb.append(RequestUtil.filter(values.next().getRolename()));
+}
+sb.append("\"");
+}
+}
+return (sb.toString());
+}
+
+
 }
Index: 
apache-tomcat-6.0.24-src/

drop qtnx from openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

FYI: Package qtnx was dropped from openSUSE:Factory at Mon Aug 15 17:24:02 CEST 
2011.

You can find the latest sources of the package in the
   openSUSE:Dropped
repository:

https://build.opensuse.org/package/show?project=openSUSE:Dropped&package=qtnx

Remember to have fun...

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



commit php5-pear-Horde_Exception for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package php5-pear-Horde_Exception for 
openSUSE:Factory
checked in at Mon Aug 15 17:12:18 CEST 2011.




--- php5-pear-Horde_Exception/php5-pear-Horde_Exception.changes 2011-06-15 
15:42:33.0 +0200
+++ 
/mounts/work_src_done/STABLE/php5-pear-Horde_Exception/php5-pear-Horde_Exception.changes
2011-08-14 22:53:52.0 +0200
@@ -1,0 +2,7 @@
+Sun Aug 14 20:54:53 UTC 2011 - l...@b1-systems.de
+
+- version 1.0.5
+- [jan] Update Lithuanian translation.
+- [jan] Update Latvian translation.
+
+---

calling whatdependson for head-i586


Old:

  Horde_Exception-1.0.3.tgz

New:

  Horde_Exception-1.0.5.tgz



Other differences:
--
++ php5-pear-Horde_Exception.spec ++
--- /var/tmp/diff_new_pack.baxazJ/_old  2011-08-15 17:12:09.0 +0200
+++ /var/tmp/diff_new_pack.baxazJ/_new  2011-08-15 17:12:09.0 +0200
@@ -22,9 +22,9 @@
 Summary:PEAR: Horde Exception Handler
 
 Name:   php5-pear-Horde_Exception
-Version:1.0.3
+Version:1.0.5
 Release:1
-License:LGPL-3.0+
+License:LGPLv2.1
 Group:  Development/Libraries/PHP
 Source0:http://pear.horde.org/get/Horde_Exception-%{version}.tgz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ Horde_Exception-1.0.3.tgz -> Horde_Exception-1.0.5.tgz ++
 4273 lines of diff (skipped)






Remember to have fun...

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



commit php5-pear-Horde_Date for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package php5-pear-Horde_Date for 
openSUSE:Factory
checked in at Mon Aug 15 17:11:32 CEST 2011.




--- php5-pear-Horde_Date/php5-pear-Horde_Date.changes   2011-06-09 
16:52:22.0 +0200
+++ 
/mounts/work_src_done/STABLE/php5-pear-Horde_Date/php5-pear-Horde_Date.changes  
2011-08-14 22:39:40.0 +0200
@@ -1,0 +2,9 @@
+Sun Aug 14 20:40:58 UTC 2011 - l...@b1-systems.de
+
+- version 1.0.4
+- [jan] Update Latvian translation.
+- [jan] Update Lithuanian translation.
+- [jan] Update Brazilian Portuguese translation.
+
+
+---

calling whatdependson for head-i586


Old:

  Horde_Date-1.0.2.tgz

New:

  Horde_Date-1.0.4.tgz



Other differences:
--
++ php5-pear-Horde_Date.spec ++
--- /var/tmp/diff_new_pack.0uPdLN/_old  2011-08-15 17:04:19.0 +0200
+++ /var/tmp/diff_new_pack.0uPdLN/_new  2011-08-15 17:04:19.0 +0200
@@ -22,16 +22,15 @@
 Summary:PEAR: Horde Date package
 
 Name:   php5-pear-Horde_Date
-Version:1.0.2
+Version:1.0.4
 Release:1
-License:LGPL
+License:LGPLv2.1
 Group:  Development/Libraries/PHP
 Source0:http://pear.horde.org/get/Horde_Date-%{version}.tgz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://pear.horde.org/package/Horde_Date
 BuildRequires:  php5-pear >= 1.4.7
 Requires:   php5-pear-Horde_Exception < 2.0.0, php5-pear-Horde_Nls < 
2.0.0, php5-pear-Horde_Translation < 2.0.0, php5-pear >= 1.7.0
-Conflicts:  php5-pear-Horde_Exception = 2.0.0, php5-pear-Horde_Nls = 
2.0.0, php5-pear-Horde_Translation = 2.0.0
 BuildRequires:  php5-pear-channel-horde
 Requires:   php5-pear-channel-horde
 BuildArch:  noarch

++ Horde_Date-1.0.2.tgz -> Horde_Date-1.0.4.tgz ++
 20133 lines of diff (skipped)






Remember to have fun...

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



commit php5-pear-Horde_Data for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package php5-pear-Horde_Data for 
openSUSE:Factory
checked in at Mon Aug 15 17:03:43 CEST 2011.




--- php5-pear-Horde_Data/php5-pear-Horde_Data.changes   2011-06-15 
15:33:55.0 +0200
+++ 
/mounts/work_src_done/STABLE/php5-pear-Horde_Data/php5-pear-Horde_Data.changes  
2011-08-14 22:34:23.0 +0200
@@ -1,0 +2,7 @@
+Sun Aug 14 20:35:20 UTC 2011 - l...@b1-systems.de
+
+- version  1.0.3
+- [jan] Update Latvian translation.
+- [jan] Try to detect number of fields again when importing CSV data (Bug 
#9397).
+
+---
@@ -5 +12 @@
-- more precise license statement LGPL-3.0+ (not an actual change)
+- more precise license statement LGPL-2.1+ (not an actual change)

calling whatdependson for head-i586


Old:

  Horde_Data-1.0.1.tgz

New:

  Horde_Data-1.0.3.tgz



Other differences:
--
++ php5-pear-Horde_Data.spec ++
--- /var/tmp/diff_new_pack.iRUeR4/_old  2011-08-15 17:03:23.0 +0200
+++ /var/tmp/diff_new_pack.iRUeR4/_new  2011-08-15 17:03:23.0 +0200
@@ -22,9 +22,9 @@
 Summary:PEAR: Horde Data API
 
 Name:   php5-pear-Horde_Data
-Version:1.0.1
+Version:1.0.3
 Release:1
-License:LGPL-3.0+
+License:LGPL-2.1
 Group:  Development/Libraries/PHP
 Source0:http://pear.horde.org/get/Horde_Data-%{version}.tgz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ Horde_Data-1.0.1.tgz -> Horde_Data-1.0.3.tgz ++
 5920 lines of diff (skipped)






Remember to have fun...

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



commit php5-pear-Horde_Crypt for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package php5-pear-Horde_Crypt for 
openSUSE:Factory
checked in at Mon Aug 15 17:01:08 CEST 2011.




--- php5-pear-Horde_Crypt/php5-pear-Horde_Crypt.changes 2011-06-08 
15:54:32.0 +0200
+++ 
/mounts/work_src_done/STABLE/php5-pear-Horde_Crypt/php5-pear-Horde_Crypt.changes
2011-08-14 22:29:39.0 +0200
@@ -1,0 +2,11 @@
+Sun Aug 14 20:30:44 UTC 2011 - l...@b1-systems.de
+
+- version 1.0.4
+- [jan] Update Latvian translation.
+- [jan] Allow to specify body charset when verifying PGP signed messages.
+- [jan] Update Lithuanian translation.
+- [jan] Update Brazilian Portuguese translation.
+- [mms] Use strongest cipher possible when encrypting S/MIME data (Request 
#10246).
+
+
+---

calling whatdependson for head-i586


Old:

  Horde_Crypt-1.0.3.tgz

New:

  Horde_Crypt-1.0.4.tgz



Other differences:
--
++ php5-pear-Horde_Crypt.spec ++
--- /var/tmp/diff_new_pack.MVjZR6/_old  2011-08-15 17:00:30.0 +0200
+++ /var/tmp/diff_new_pack.MVjZR6/_new  2011-08-15 17:00:30.0 +0200
@@ -22,16 +22,15 @@
 Summary:PEAR: Horde Cryptography API
 
 Name:   php5-pear-Horde_Crypt
-Version:1.0.3
+Version:1.0.4
 Release:1
-License:LGPL
+License:LGPLv2.1
 Group:  Development/Libraries/PHP
 Source0:http://pear.horde.org/get/Horde_Crypt-%{version}.tgz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://pear.horde.org/package/Horde_Crypt
 BuildRequires:  php5-pear >= 1.4.7
 Requires:   php5-pear-Horde_Exception < 2.0.0, php5-pear-Horde_Mime < 
2.0.0, php5-pear-Horde_Stream_Filter < 2.0.0, php5-pear-Horde_Translation < 
2.0.0, php5-pear-Horde_Util < 2.0.0, php5-pear >= 1.7.0
-Conflicts:  php5-pear-Horde_Exception = 2.0.0, php5-pear-Horde_Mime = 
2.0.0, php5-pear-Horde_Stream_Filter = 2.0.0, php5-pear-Horde_Translation = 
2.0.0, php5-pear-Horde_Util = 2.0.0
 BuildRequires:  php5-pear-channel-horde
 Requires:   php5-pear-channel-horde
 BuildArch:  noarch

++ Horde_Crypt-1.0.3.tgz -> Horde_Crypt-1.0.4.tgz ++
 45655 lines of diff (skipped)






Remember to have fun...

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



commit php5-pear-Horde_Browser for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package php5-pear-Horde_Browser for 
openSUSE:Factory
checked in at Mon Aug 15 16:58:36 CEST 2011.




--- php5-pear-Horde_Browser/php5-pear-Horde_Browser.changes 2011-06-08 
17:56:43.0 +0200
+++ 
/mounts/work_src_done/STABLE/php5-pear-Horde_Browser/php5-pear-Horde_Browser.changes
2011-08-14 22:02:46.0 +0200
@@ -1,0 +2,10 @@
+Sun Aug 14 20:03:29 UTC 2011 - l...@b1-systems.de
+
+- remove explicit mentioning of implicit version constraints
+- update to v1.0.3
+- [jan] Update Lithuanian translation.
+- [jan] Update Brazilian Portuguese translation.
+- [jan] Update Latvian translation.
+
+
+---
@@ -9 +19 @@
-- versopn 1.0.1
+- version 1.0.1

calling whatdependson for head-i586


Old:

  Horde_Browser-1.0.1.tgz

New:

  Horde_Browser-1.0.3.tgz



Other differences:
--
++ php5-pear-Horde_Browser.spec ++
--- /var/tmp/diff_new_pack.1mMSqI/_old  2011-08-15 16:58:23.0 +0200
+++ /var/tmp/diff_new_pack.1mMSqI/_new  2011-08-15 16:58:23.0 +0200
@@ -22,16 +22,15 @@
 Summary:PEAR: Horde Browser API
 
 Name:   php5-pear-Horde_Browser
-Version:1.0.1
+Version:1.0.3
 Release:1
-License:LGPL
+License:LGPLv2.1
 Group:  Development/Libraries/PHP
 Source0:http://pear.horde.org/get/Horde_Browser-%{version}.tgz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://pear.horde.org/package/Horde_Browser
 BuildRequires:  php5-pear >= 1.4.7
 Requires:   php5-pear-Horde_Exception < 2.0.0, php5-pear-Horde_Util < 
2.0.0, php5-pear >= 1.7.0
-Conflicts:  php5-pear-Horde_Exception = 2.0.0, php5-pear-Horde_Util = 2.0.0
 BuildRequires:  php5-pear-channel-horde
 Requires:   php5-pear-channel-horde
 BuildArch:  noarch

++ Horde_Browser-1.0.1.tgz -> Horde_Browser-1.0.3.tgz ++
 7619 lines of diff (skipped)






Remember to have fun...

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



commit php5-pear-Horde_Auth for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package php5-pear-Horde_Auth for 
openSUSE:Factory
checked in at Mon Aug 15 16:57:43 CEST 2011.




--- php5-pear-Horde_Auth/php5-pear-Horde_Auth.changes   2011-06-08 
18:09:19.0 +0200
+++ 
/mounts/work_src_done/STABLE/php5-pear-Horde_Auth/php5-pear-Horde_Auth.changes  
2011-08-14 21:57:10.0 +0200
@@ -1,0 +2,8 @@
+Sun Aug 14 19:57:08 UTC 2011 - l...@b1-systems.de
+
+- version 1.1.0
+- [rla] Add sort parameter to listUsers() method.
+- [mms] Fix addUser() for Cyrsql driver (vil...@lnk.lt, Bug #10239).
+- remove implied incompatibility with v2.0 packages
+
+---

calling whatdependson for head-i586


Old:

  Horde_Auth-1.0.4.tgz

New:

  Horde_Auth-1.1.0.tgz



Other differences:
--
++ php5-pear-Horde_Auth.spec ++
--- /var/tmp/diff_new_pack.sarVeD/_old  2011-08-15 16:57:33.0 +0200
+++ /var/tmp/diff_new_pack.sarVeD/_new  2011-08-15 16:57:33.0 +0200
@@ -23,16 +23,15 @@
 %define pear_name  Horde_Auth
 %define pear_sname horde_auth
 Summary:PEAR: Horde Authentication API
-Version:1.0.4
+Version:1.1.0
 Release:1
-License:LGPL
+License:LGPLv2.1
 Group:  Development/Libraries/PHP
 Source0:http://pear.horde.org/get/Horde_Auth-%{version}.tgz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://pear.horde.org/package/Horde_Auth
 BuildRequires:  php5-pear >= 1.4.7
 Requires:   php5-pear-Horde_Exception < 2.0.0, php5-pear-Horde_Util < 
2.0.0, php5-pear >= 1.7.0
-Conflicts:  php5-pear-Horde_Exception = 2.0.0, php5-pear-Horde_Util = 2.0.0
 BuildRequires:  php5-pear-channel-horde
 Requires:   php5-pear-channel-horde
 BuildArch:  noarch

++ Horde_Auth-1.0.4.tgz -> Horde_Auth-1.1.0.tgz ++
 9679 lines of diff (skipped)






Remember to have fun...

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



commit php5-pear-Horde_Argv for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package php5-pear-Horde_Argv for 
openSUSE:Factory
checked in at Mon Aug 15 16:57:17 CEST 2011.




--- php5-pear-Horde_Argv/php5-pear-Horde_Argv.changes   2011-06-15 
16:27:46.0 +0200
+++ 
/mounts/work_src_done/STABLE/php5-pear-Horde_Argv/php5-pear-Horde_Argv.changes  
2011-08-14 21:53:27.0 +0200
@@ -1,0 +2,7 @@
+Sun Aug 14 19:54:14 UTC 2011 - l...@b1-systems.de
+
+- version 1.0.4
+- [jan] Update Lithuanian translation.
+- [jan] Update Latvian translation.
+
+---

calling whatdependson for head-i586


Old:

  Horde_Argv-1.0.2.tgz

New:

  Horde_Argv-1.0.4.tgz



Other differences:
--
++ php5-pear-Horde_Argv.spec ++
--- /var/tmp/diff_new_pack.aR9kcs/_old  2011-08-15 16:48:18.0 +0200
+++ /var/tmp/diff_new_pack.aR9kcs/_new  2011-08-15 16:48:18.0 +0200
@@ -22,7 +22,7 @@
 Summary:PEAR: Horde command-line argument parsing package
 
 Name:   php5-pear-Horde_Argv
-Version:1.0.2
+Version:1.0.4
 Release:1
 License:BSD-2-Clause
 Group:  Development/Libraries/PHP

++ Horde_Argv-1.0.2.tgz -> Horde_Argv-1.0.4.tgz ++
 17077 lines of diff (skipped)






Remember to have fun...

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



commit php5-pear-Horde_Alarm for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package php5-pear-Horde_Alarm for 
openSUSE:Factory
checked in at Mon Aug 15 16:46:59 CEST 2011.




--- php5-pear-Horde_Alarm/php5-pear-Horde_Alarm.changes 2011-06-08 
17:41:25.0 +0200
+++ 
/mounts/work_src_done/STABLE/php5-pear-Horde_Alarm/php5-pear-Horde_Alarm.changes
2011-08-14 21:50:08.0 +0200
@@ -1,0 +2,8 @@
+Sun Aug 14 19:50:45 UTC 2011 - l...@b1-systems.de
+
+- version 1.0.4
+- Update Lithuanian translation.
+- [jan] Update Brazilian Portuguese translation.
+- [jan] Update Latvian translation.
+
+---
@@ -4 +12 @@
-- No longer cleanup buildroot in %install section as requested by speilicke
+- No longer cleanup buildroot in %install section

calling whatdependson for head-i586


Old:

  COPYING.LGPLv3
  Horde_Alarm-1.0.2.tgz

New:

  Horde_Alarm-1.0.4.tgz
  lgpl-2.1.txt



Other differences:
--
++ php5-pear-Horde_Alarm.spec ++
--- /var/tmp/diff_new_pack.YNQw1T/_old  2011-08-15 16:41:06.0 +0200
+++ /var/tmp/diff_new_pack.YNQw1T/_new  2011-08-15 16:41:06.0 +0200
@@ -22,12 +22,12 @@
 Summary:PEAR: Horde alarm libraries
 
 Name:   php5-pear-Horde_Alarm
-Version:1.0.2
+Version:1.0.4
 Release:1
-License:LGPL-3.0+
+License:LGPL-2.1+
 Group:  Development/Libraries/PHP
 Source0:http://pear.horde.org/get/Horde_Alarm-%{version}.tgz
-Source1:COPYING.LGPLv3
+Source1:http://www.gnu.org/licenses/lgpl-2.1.txt
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://pear.horde.org/package/Horde_Alarm
 BuildRequires:  php5-pear >= 1.4.7

++ Horde_Alarm-1.0.2.tgz -> Horde_Alarm-1.0.4.tgz ++
 9204 lines of diff (skipped)

++ lgpl-2.1.txt ++
  GNU LESSER GENERAL PUBLIC LICENSE
   Version 2.1, February 1999

 Copyright (C) 1991, 1999 Free Software Foundation, Inc.
 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

[This is the first released version of the Lesser GPL.  It also counts
 as the successor of the GNU Library Public License, version 2, hence
 the version number 2.1.]

Preamble

  The licenses for most software are designed to take away your
freedom to share and change it.  By contrast, the GNU General Public
Licenses are intended to guarantee your freedom to share and change
free software--to make sure the software is free for all its users.

  This license, the Lesser General Public License, applies to some
specially designated software packages--typically libraries--of the
Free Software Foundation and other authors who decide to use it.  You
can use it too, but we suggest you first think carefully about whether
this license or the ordinary General Public License is the better
strategy to use in any particular case, based on the explanations below.

  When we speak of free software, we are referring to freedom of use,
not price.  Our General Public Licenses are designed to make sure that
you have the freedom to distribute copies of free software (and charge
for this service if you wish); that you receive source code or can get
it if you want it; that you can change the software and use pieces of
it in new free programs; and that you are informed that you can do
these things.

  To protect your rights, we need to make restrictions that forbid
distributors to deny you these rights or to ask you to surrender these
rights.  These restrictions translate to certain responsibilities for
you if you distribute copies of the library or if you modify it.

  For example, if you distribute copies of the library, whether gratis
or for a fee, you must give the recipients all the rights that we gave
you.  You must make sure that they, too, receive or can get the source
code.  If you link other code with the library, you must provide
complete object files to the recipients, so that they can relink them
with the library after making changes to the library and recompiling
it.  And you must show them these terms so they know their rights.

  We protect your rights with a two-step method: (1) we copyright the
library, and (2) we offer you this license, which gives you legal
permission to copy, distribute and/or modify the library.

  To protect each distributor, we want to make it very clear that
there is no warranty for the free library.  Also, if the library is
modified by someone else and passed on, the recipients should know
that what they have is not the original version, so that the original
author's reputation will not be affected by problems that might be
introduced by others.

  Finally, software patents pose a constant threat to the existe

commit mysql-cluster for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package mysql-cluster for openSUSE:Factory
checked in at Mon Aug 15 16:38:17 CEST 2011.




--- mysql-cluster/mysql-cluster.changes 2011-02-21 01:43:08.0 +0100
+++ /mounts/work_src_done/STABLE/mysql-cluster/mysql-cluster.changes
2011-08-15 13:05:58.0 +0200
@@ -1,0 +2,27 @@
+Mon Aug 15 07:52:54 CEST 2011 - mhruse...@suse.cz
+
+- updated to MySQL Cluster 7.1.15 (based on MySQL 5.1.56), see
+  
http://dev.mysql.com/doc/refman/5.1/en/mysql-cluster-news-5-1-56-ndb-7-1-15.html
+  
http://dev.mysql.com/doc/refman/5.1/en/mysql-cluster-news-5-1-56-ndb-7-1-14.html
+  
http://dev.mysql.com/doc/refman/5.1/en/mysql-cluster-news-5-1-56-ndb-7-1-13.html
+  
http://dev.mysql.com/doc/refman/5.1/en/mysql-cluster-news-5-1-51-ndb-7-1-12.html
+  
http://dev.mysql.com/doc/refman/5.1/en/mysql-cluster-news-5-1-51-ndb-7-1-11.html
+- dropped obsolete directory in /var/run (bnc#710274)
+
+---
+Wed Feb 23 16:13:33 CET 2011 - mhruse...@suse.cz
+
+- updated to MySQL Cluster 7.1.10 (based on MySQL 5.1.51), see
+  
http://dev.mysql.com/doc/refman/5.1/en/mysql-cluster-news-5-1-51-ndb-7-1-10.html
+- fixed init script to
+  - work with SELinux (bnc#635645)
+  - allow running as different user/group
+  - create TMPDIR correctly
+
+---
+Wed Feb 23 10:59:13 UTC 2011 - adr...@suse.de
+
+- remove runlevel 2 from default start in init script or it isn't
+  usable on openSUSE 11.4 and later
+
+---

calling whatdependson for head-i586


Old:

  mysql-cluster-gpl-7.1.9a.tar.bz2

New:

  mysql-cluster-gpl-7.1.15.tar.bz2



Other differences:
--
++ mysql-cluster.spec ++
--- /var/tmp/diff_new_pack.9ykFJf/_old  2011-08-15 16:36:54.0 +0200
+++ /var/tmp/diff_new_pack.9ykFJf/_new  2011-08-15 16:36:54.0 +0200
@@ -31,9 +31,9 @@
 
 Name:   mysql-cluster
 Summary:A True Multiuser, Multithreaded SQL Database Server
-Version:7.1.9a
-Release:6
-%define srv_vers   5.1.51
+Version:7.1.15
+Release:1
+%define srv_vers   5.1.56
 License:GPLv2 ; with additional permissions: EXCEPTIONS-CLIENT
 Group:  Productivity/Databases/Servers
 Url:http://www.mysql.com
@@ -603,7 +603,6 @@
 /etc/init.d/mysql
 /usr/sbin/rcmysql
 /usr/share/mysql/
-%dir %attr(755,mysql,mysql)/var/run/mysql
 %dir %{_libdir}/mysql
 %{_libdir}/mysql/mysqld.sym
 %config /etc/sysconfig/SuSEfirewall2.d/services/mysql

++ install.inc ++
--- /var/tmp/diff_new_pack.9ykFJf/_old  2011-08-15 16:36:54.0 +0200
+++ /var/tmp/diff_new_pack.9ykFJf/_new  2011-08-15 16:36:54.0 +0200
@@ -49,7 +49,7 @@
 filelist ndbd ndbmtd ndbd_redo_log_reader >mysql-ndb-storage.files
 filelist ndb_mgmd >mysql-ndb-management.files
 filelist 
ndb_{config,desc,error_reporter,mgm,print_backup_file,print_schema_file,print_sys_file,restore,select_all,select_count,show_tables,size.pl,test_platform,waiter}
 >mysql-ndb-tools.files
-filelist ndb_{cpcd,delete_all,drop_index,drop_table} >mysql-ndb-extra.files
+filelist ndb_{cpcd,delete_all,drop_index,drop_table,print_file,index_stat} 
>mysql-ndb-extra.files
 ### files not installed by make install
 # Create directory structure
 DOCS=(COPYING README EXCEPTIONS-CLIENT %_sourcedir/README.debug 
%_sourcedir/README.SuSE)
@@ -65,7 +65,9 @@
 %endif
 install -m 660 _build/support-files/my-medium.cnf %buildroot/etc/my.cnf
 install -m 640 scripts/mysqlaccess.conf %buildroot/etc/mysqlaccess.conf
-install -m 644 "${DOCS[@]}" ${DOCDIR}
+for i in "${DOCS[@]}"; do
+   install -m 644 "$i" ${DOCDIR} || true
+done
 install -m 755 %_sourcedir/rc.mysql-multi %buildroot/etc/init.d/mysql
 ln -sf ../../etc/init.d/mysql %buildroot/usr/sbin/rcmysql
 # this is used by the init script

++ mysql-cluster-gpl-7.1.9a.tar.bz2 -> mysql-cluster-gpl-7.1.15.tar.bz2 
++
mysql-cluster/mysql-cluster-gpl-7.1.9a.tar.bz2 
/mounts/work_src_done/STABLE/mysql-cluster/mysql-cluster-gpl-7.1.15.tar.bz2 
differ: char 11, line 1

++ mysql-patches.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mysql-patches/README new/mysql-patches/README
--- old/mysql-patches/README2010-05-12 11:47:12.0 +0200
+++ new/mysql-patches/README2010-12-23 10:49:09.0 +0100
@@ -1,28 +1,46 @@
-This repository contain SUSE MySQL patches. Each patch contains in his name
-version of MySQL against which it was created and brief description. If you
-look into the patch, you'll see detailed description. On first line, there is
-always a tag. It contains four words separated by dash. First word is always
-PATCH. Second is in form P[0-9]+ and denotes how long prefix should be
-stripped when applying 

commit horde4-timeobjects for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package horde4-timeobjects for 
openSUSE:Factory
checked in at Mon Aug 15 16:36:35 CEST 2011.




--- horde4-timeobjects/horde4-timeobjects.changes   2011-06-09 
17:50:09.0 +0200
+++ /mounts/work_src_done/STABLE/horde4-timeobjects/horde4-timeobjects.changes  
2011-08-15 13:48:11.0 +0200
@@ -1,0 +2,7 @@
+Mon Aug 15 11:48:03 UTC 2011 - l...@b1-systems.de
+
+- version 1.0.2
+- [jan] Export location, description, status, privacy, and URL of Facebook 
events.
+- [jan] Fix timezone conversion of Facebook events (Bug #10341).
+
+---

calling whatdependson for head-i586


Old:

  timeobjects-1.0.1.tgz

New:

  timeobjects-1.0.2.tgz



Other differences:
--
++ horde4-timeobjects.spec ++
--- /var/tmp/diff_new_pack.3jfSLE/_old  2011-08-15 16:28:21.0 +0200
+++ /var/tmp/diff_new_pack.3jfSLE/_new  2011-08-15 16:28:21.0 +0200
@@ -23,7 +23,7 @@
 Summary:PEAR: Horde timeobjects application
 
 Name:   horde4-timeobjects
-Version:1.0.1
+Version:1.0.2
 Release:1
 License:BSD
 Group:  Productivity/Networking/Web/Utilities

++ timeobjects-1.0.1.tgz -> timeobjects-1.0.2.tgz ++
 2522 lines of diff (skipped)






Remember to have fun...

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



commit horde4-imp for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package horde4-imp for openSUSE:Factory
checked in at Mon Aug 15 16:19:12 CEST 2011.




--- horde4-imp/horde4-imp.changes   2011-06-15 16:58:16.0 +0200
+++ /mounts/work_src_done/STABLE/horde4-imp/horde4-imp.changes  2011-08-15 
13:07:43.0 +0200
@@ -1,0 +2,26 @@
+Mon Aug 15 11:07:18 UTC 2011 - l...@b1-systems.de
+
+- version 5.0.9
+- [mms] Fix to allow search filters to be saved.
+- [mjr] Fix mouse click handling on mobile view (Bug #10355).
+- [mms] Ensure correct message charset is use if forward/reply headers contain 
non US-ASCII characters (Bug #10148).
+- [mms] Select all checkbox in dynamic view can now be toggled.
+- [mms] Remember vertical splitbar size in dynamic view.
+- [mms] Workaround IE quirks for compose autocomplete box (Bug #10250).
+- [mms] Fix resuming HTML drafts for non-reply messages (Bug #10298).
+- [jan] Fix verifying of inline signed PGP messages (requires Horde_Crypt 
1.0.4).
+- [mms] Fix Shift-N shortcut in dynamic view (Bug #10352).
+- [mms] Add save message link to dynamic view preview window.
+- [mms] Correctly quote e-mail names when composing from compose links in the 
dynamic view (Bug #10292).
+
+- [jan] Don't attempt to delete linked attachments monthly if they have been 
disabled (Bug #10166).
+- [jan] Don't show basic headers twice when showing all headers (Bug #10276).
+- [jan] Add IMP_Contents#getTree() to return a tree representation of a 
message's MIME parts.
+- [mms] Fix regression in parsing list reply address (Bug #10258).
+- [jan] Tick sent-mail checkbox off when selecting sent-mail folder in dynamic 
view.
+- [jan] Keep key navigation active after clicking into a HTML message (Request 
#9720).
+- [mms] Fix additional regression when flagging all messages in a mailbox (Bug 
#10243).
+- [mms] Fix "Don't Show" filtering in traditional mailbox view (Bug #10244).
+ 
+
+---

calling whatdependson for head-i586


Old:

  imp-5.0.7.tgz

New:

  imp-5.0.9.tgz



Other differences:
--
++ horde4-imp.spec ++
--- /var/tmp/diff_new_pack.njz87p/_old  2011-08-15 16:18:47.0 +0200
+++ /var/tmp/diff_new_pack.njz87p/_new  2011-08-15 16:18:47.0 +0200
@@ -19,11 +19,12 @@
 %define peardir %(pear config-get php_dir 2> /dev/null || echo 
%{_datadir}/pear)
 %define xmldir  /var/lib/pear
 %define hordedir /usr/share/php5/PEAR/www/horde
+%define pear_name  imp
 
 Summary:PEAR: A web based webmailer
 
 Name:   horde4-imp
-Version:5.0.7
+Version:5.0.9
 Release:1
 License:GPL-3.0+
 Group:  Productivity/Networking/Web/Utilities
@@ -104,8 +105,8 @@
 
 %install
 pear -c pearrc install --nodeps --packagingroot %{buildroot} %{SOURCE0}
-%fdupes %buildroot%{hordedir}/imp
-%find_lang imp 
+%fdupes %buildroot%{hordedir}/%{pear_name}
+%find_lang %{pear_name} 
 # Clean up unnecessary files
 rm pearrc
 rm %{buildroot}/%{peardir}/.filemap
@@ -118,20 +119,20 @@
 # Install XML package description
 mkdir -p %{buildroot}%{xmldir}
 tar -xzf %{SOURCE0} package.xml
-cp -p package.xml %{buildroot}%{xmldir}/imp.xml
+cp -p package.xml %{buildroot}%{xmldir}/%{pear_name}.xml
 
 %clean
 rm -rf %{buildroot}
 
 %post
-pear install --nodeps --soft --force --register-only %{xmldir}/imp.xml
+pear install --nodeps --soft --force --register-only %{xmldir}/%{pear_name}.xml
 
 %postun
 if [ "$1" -eq "0" ]; then
-pear uninstall --nodeps --ignore-errors --register-only pear.horde.org/imp
+pear uninstall --nodeps --ignore-errors --register-only 
pear.horde.org/%{pear_name}
 fi
 
-%files -f imp.lang
+%files -f %{pear_name}.lang
 %defattr(-,root,root)
 %{peardir}/*
 %{xmldir}/imp.xml
@@ -139,5 +140,6 @@
 %attr(0775,root,www) %dir %{hordedir}/imp/config
 %{_bindir}/imp-bounce-spam
 %{_bindir}/imp-query-imap-cache
+%{_docdir}/horde4-imp/
 
 %changelog

++ imp-5.0.7.tgz -> imp-5.0.9.tgz ++
 627196 lines of diff (skipped)






Remember to have fun...

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



commit pinpoint for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package pinpoint for openSUSE:Factory
checked in at Mon Aug 15 15:12:30 CEST 2011.




--- pinpoint/pinpoint.changes   2011-05-23 17:32:19.0 +0200
+++ /mounts/work_src_done/STABLE/pinpoint/pinpoint.changes  2011-08-12 
21:53:25.0 +0200
@@ -1,0 +2,7 @@
+Fri Aug 12 19:49:23 UTC 2011 - dims...@opensuse.org
+
+- Change License tag to LGPL-2.1+
+- Better summaries and descriptions
+- Also package AUTHORS.
+
+---

calling whatdependson for head-i586




Other differences:
--
++ pinpoint.spec ++
--- /var/tmp/diff_new_pack.eMKLIU/_old  2011-08-15 15:03:20.0 +0200
+++ /var/tmp/diff_new_pack.eMKLIU/_new  2011-08-15 15:03:20.0 +0200
@@ -19,11 +19,11 @@
 
 Name:   pinpoint
 Version:0.1.2
-Release:1
-License:LGPL 2.1
-Summary:A tool for making hackers do excellent presentations
+Release:3
+License:LGPL-2.1+
+Summary:Simple Presentation Tool for Excellent Presentations
 Url:http://live.gnome.org/Pinpoint
-Group:  Productivity/Other
+Group:  Productivity/Publishing/Presentation
 Source: 
http://ftp.gnome.org/pub/GNOME/sources/pinpoint/0.1/%{name}-%{version}.tar.bz2
 BuildRequires:  pkgconfig(cairo-pdf)
 BuildRequires:  pkgconfig(clutter-1.0)
@@ -35,20 +35,9 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-Pinpoint is a simple presentation tool that hopes to avoid audience death by 
bullet point and instead
-encourage presentations containing beautiful images and small amounts of 
concise text in slides.
-
-Features:
-* Text position
-* Styling of font, text-color, contrast background and text positioning 
for global default and per
-  slide overrides.
-* Image backgrounds
-* Video backgrounds
-* Pango markup inside slides
-* Transitions, extendable through json
-* PDF export
-* Embedding commands to run for demos in slides, with editable commandline 
during presentation.
-* Monitoring of source file with live updates of changed slide for 
authoring
+Pinpoint a simple presentation tool that hopes to avoid audience death
+by bullet point and instead encourage presentations containing beautiful
+images and small amounts of concise text in slides.
 
 %prep
 %setup -q
@@ -65,7 +54,7 @@
 
 %files
 %defattr(-,root,root)
-%doc ChangeLog README COPYING
+%doc AUTHORS COPYING NEWS README
 %{_bindir}/pinpoint
 %{_datadir}/pinpoint/
 






Remember to have fun...

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



commit pcp for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package pcp for openSUSE:Factory
checked in at Mon Aug 15 15:03:09 CEST 2011.




--- pcp/pcp.changes 2010-02-11 01:45:11.0 +0100
+++ /mounts/work_src_done/STABLE/pcp/pcp.changes2011-08-10 
13:02:32.0 +0200
@@ -1,0 +2,533 @@
+Wed Aug 10 12:39:05 CEST 2011 - dd...@suse.de
+
+- Update to pcp-3.5.8.
+  + Rework rsyslog PMDA to remove Switch use, very odd behaviour
+observed on RHEL5.2 (mysteriously failing to compile).
+  + Add in Kens scripting defenses against dodgey toolchains.
+
+---
+Tue Aug  9 10:56:34 CEST 2011 - dd...@suse.de
+
+- Update to pcp-3.5.7.
+  + Fix build issue on SLES11 SP1 IA64 systems.
+  + Improved rsyslog PMDA handling of queue metrics.
+  + Add open file-descriptor count metric to the Linux PMDA.
+  + Implement logger PMDA line-oriented event mode.
+  + Add regular expression based event filtering in logger PMDA.
+  + The default pmcd.conf now has an access control section, and
+all remote store operations are blocked by default.
+
+---
+Mon Aug  1 18:50:18 CEST 2011 - dd...@suse.de
+
+- Update to pcp-3.5.6.
+  + Fix warning from pmie_daily with some /bin/pwd versions.
+  + Numerous Debian packaging updates for lintian cleanliness.
+  + Fixed typos in several man pages.
+  + Added ElasticSearch PMDA.
+  + Fix build on RHEL4 with older sys/queue.h variant.
+
+---
+Thu Jul  7 12:17:17 CEST 2011 - dd...@suse.de
+
+- Update to pcp-3.5.5.
+  + Resolve Debian packaging issues preventing new uploads.
+  + Fix warnings from pmie_check with some /bin/pwd versions.
+
+- Update to pcp-3.5.4.
+  + Fix warnings from pmlogger_check with some /bin/pwd versions.
+
+- Update to pcp-3.5.3.
+  + Remove reliance on a cpp binary being installed locally.
+  + Ensure compressed pmie log files are also cleaned up daily.
+  + Extend the event store mechanism to be more generally useful.
+  + Add memory limiting functionality to pmdalogger.
+  + Add SQLServer metric for user settable queries.
+  + Fix potential sigsegv in pmprobe fetching multiple live values.
+  + Perl changes for Solaris.
+  + Fix Fedora15 build relating to handling of systemd.
+  + Solaris pmda zpool_vdev_name() api change.
+  + Update sar2pcp for sysstat version 9.1.7.
+  + Resolve realloc issue in event metric handling in libpcp_pmda.
+
+- Update to pcp-3.5.2.
+  + pmlogreduce - fix 2 problems (memory leak, additional mark records)
+  + Initial version of pmdalogger, from David Smith, a log monitoring
+PMDA exporting event metrics.
+  + Make Windows drive instance domain code less chatty.
+  + RC scripts and pmie_check - Mac OS X porting
+  + pmlogger_check - symbolic link issue fixed
+  + Add in the rsyslog PMDA (http://www.rsyslog.com)
+  + Extend PCP::PMDA so that the log tail mode can be used on named papes.
+  + Numerous updates to the Perl packaging infrastructure
+  + Fix build when $HOME is not set.
+  + pmlogconf - another non-posix awk issue fixed
+  + Darwin pmda - filesys.maxfiles metric
+  + pmie_daily - assorted minor fixups
+  + Unix domain socket issue found on Mac OS X
+  + pmcd config parsing error handling cleanup
+  + Quieten pmevent output in the absence of new events.
+  + Pass process ID out on success of __pmProcessCreate.
+  + pmdaproc.sh - add PMDA_INTERFACE_5 support
+  + pcp_completion.sh - add pmevent for bash metic completion
+  + pmevent - add instance domain support
+  + Bugfix: fetching hinv.cpu.* aborts if cpu indom is not initialized
+  + Rearrange the per-CPU intr metrics on Linux to use dynamic namespace
+  + Add perl modules into Mac OS X installations
+  + Additional vmstat metrics added to Linux kernel PMDA
+  + Fix pmieconf after syscall metrics went away on Linux
+  + pmevent - new util to report event records, with instance domain support
+  + sample PMDA - instance domain for event records metric
+  + pmval, pminfo - man page typo corrections
+  + pmval - fix typo in error message
+  + pmlogextract, pmlogreduce - auto volume switch at 2^31 bytes
+  + pmnscomp - defaults to Version 2 of the compiled PMNS
+  + Remove unconditional diagnostic in MMV agent, log spam
+  + Rework the code that uncompresses archives for Win32
+  + Updates to Win32 makefiles to get a clean package build
+  + Enable compressed log processing for Windows as well
+  + Sample event consumer code for Windows ETW
+  + Update PDH Win32 headers to use those from current mingw-m64 tree
+  + Win32 socket error messages are reporting correctly
+  + Great strides in getting error reporting correct on Windows
+  + Add Win32 pthread wrapper for threading work on Windows
+  + Add PowerDNS recursor stats to the pdns PMDA
+
+- Update to pcp-3.5.0.
+  + Infrastucture support for doing distributed event tracing with PCP.
+This includes a new metr

commit horde4 for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package horde4 for openSUSE:Factory
checked in at Mon Aug 15 14:52:29 CEST 2011.




--- horde4/horde4.changes   2011-07-08 11:09:54.0 +0200
+++ /mounts/work_src_done/STABLE/horde4/horde4.changes  2011-08-15 
08:42:18.0 +0200
@@ -1,0 +2,9 @@
+Mon Aug 15 06:37:29 UTC 2011 - l...@b1-systems.de
+
+- version 4.0.8
+- [cjh] Add mobile maintenance screens.
+- [jan] Update Latvian translation.
+- [jan] Don't show mobile login page if users are forced to traditional 
or dynamic views (Request #10358).
+- [jan] Update PGP key server list and add SKS pool.
+
+---

calling whatdependson for head-i586


Old:

  _service:format_spec_file:horde4.spec
  horde-4.0.7.tgz

New:

  horde-4.0.8.tgz



Other differences:
--
++ horde4.spec ++
--- /var/tmp/diff_new_pack.hYDT4R/_old  2011-08-15 14:50:54.0 +0200
+++ /var/tmp/diff_new_pack.hYDT4R/_new  2011-08-15 14:50:54.0 +0200
@@ -23,7 +23,7 @@
 Summary:PEAR: Horde Application Framework
 
 Name:   horde4
-Version:4.0.7
+Version:4.0.8
 Release:1
 License:LGPL-2.1
 Group:  Productivity/Networking/Web/Utilities

++ horde-4.0.7.tgz -> horde-4.0.8.tgz ++
 578460 lines of diff (skipped)






Remember to have fun...

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



commit horde3 for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package horde3 for openSUSE:Factory
checked in at Mon Aug 15 14:49:30 CEST 2011.




--- horde3/horde3.changes   2011-01-28 13:24:00.0 +0100
+++ /mounts/work_src_done/STABLE/horde3/horde3.changes  2011-08-13 
19:00:14.0 +0200
@@ -1,0 +2,17 @@
+Sat Aug 13 15:12:48 UTC 2011 - l...@b1-systems.de
+
+- version 3.3.12 
+- [jan] Convert charset of group names in SQL driver (Bug #9611).
+- [jan] Fix deleting of SyncML anchors if PHP short_open_tag is off (Bug 
#9349).
+- [jan] Add an experimental new Share SQL driver with better performance.
+- [jan] Fix integer overflow in ASN.1 parser for S/MIME messages.
+- [jan] Fix splitread database usage in VFS (Bug #9467).
+- [jan] Fix invalidating permission cache in SQL driver (Bug #9392).
+ 
+
+---
+Tue May 24 11:13:20 UTC 2011 - l...@b1-systems.de
+
+- small fixes to make it run in current factory
+
+---

calling whatdependson for head-i586


Old:

  horde-3.3.11.tar.bz2

New:

  COPYING
  horde-3.3.12.tar.gz



Other differences:
--
++ horde3.spec ++
--- /var/tmp/diff_new_pack.XgtOeR/_old  2011-08-15 14:40:07.0 +0200
+++ /var/tmp/diff_new_pack.XgtOeR/_new  2011-08-15 14:40:07.0 +0200
@@ -19,14 +19,14 @@
 
 %define _phpdir php5
 %define peardir %(pear config-get php_dir 2> /dev/null)
-%define _hordedir %(%{_sbindir}/apxs2 -q datadir)/htdocs/horde
+%define _hordedir /srv/www/htdocs/horde
 
 Name:   horde3
 Summary:Core Pieces for Running H3 Web Applications
-Version:3.3.11
-Release:2
+Version:3.3.12
+Release:1
 Url:http://www.horde.org/
-License:GPLv2+
+License:GPL v2 or later
 Group:  Productivity/Networking/Web/Utilities
 Requires:   mod_php_any
 Requires:   php-gettext
@@ -54,7 +54,8 @@
 Requires:   php5-pear-HTTP_Request
 Requires:   php5-pear-Services_Weather
 Requires:   php5-pear-XML_SVG
-Source0:horde-%{version}.tar.bz2
+Source0:horde-%{version}.tar.gz
+Source1:COPYING
 
 Patch0: horde-3.1.2-log.patch
 Patch1: horde-fatal-on-admin-3.3.11.patch
@@ -104,6 +105,9 @@
 %install
 %__mkdir_p %{buildroot}%{_hordedir}
 %__cp -r ./* %{buildroot}%{_hordedir}
+%__cp  %{SOURCE1} %{buildroot}%{_hordedir}
+%__cp  %{SOURCE1} 
%{buildroot}%{_hordedir}/services/editor/fckeditor/license.txt
+%__cp  %{SOURCE1} %{buildroot}%{_hordedir}/services/editor/tinymce/license.txt
 %__rm -rf %{buildroot}%{_hordedir}/{docs,README,LICENSE}
 %if 0%{?sles_version} != 10 
  %fdupes %buildroot%{_hordedir}
@@ -144,19 +148,38 @@
 %__rm -rf %{buildroot}
 
 %files -f horde.lang
-%defattr(-, root, root)
+%defattr(0640, root, root,0750)
 %doc README docs
 %doc %{_hordedir}/COPYING
 %dir %{_hordedir}
+%dir %{_hordedir}/locale
+%dir %{_hordedir}/locale/*/LC_MESSAGES/
+%dir %{_hordedir}/locale/*/
 %{_hordedir}/locale/.htaccess
-%{_hordedir}/locale/en_US/help.xml
+%{_hordedir}/locale/*/help.xml
 %{_hordedir}/admin
 %{_hordedir}/js
 %{_hordedir}/lib
 %{_hordedir}/po
+%attr(0775, wwwrun, root ) %{_hordedir}/po/translation.php
 %dir %{_hordedir}/locale
 %dir %{_hordedir}/locale/en_US
-%{_hordedir}/scripts
+%dir %{_hordedir}/scripts/
+%dir %{_hordedir}/scripts/upgrades/
+%attr(0750, root, www) %{_hordedir}/scripts/*.php
+%{_hordedir}/scripts/sql
+%{_hordedir}/scripts/upgrades/*.sql
+%attr(0750, root, www) %{_hordedir}/scripts/upgrades/*.php
+%{_hordedir}/scripts/ldap
+#
+%{_hordedir}/scripts/.htaccess   
+%{_hordedir}/scripts/SCRIPTS   
+%{_hordedir}/scripts/horde.logrotate   
+%attr(0775, wwwrun, root ) %{_hordedir}/scripts/set_perms.sh  
+%attr(0775, wwwrun, root ) %{_hordedir}/scripts/temp-cleanup.cron
+%{_hordedir}/scripts/share-stress-test-conf.php.dist
+%{_hordedir}/scripts/share-stress-test-sql.xml   
+%{_hordedir}/scripts/share-stress-test-sqlng.xml
 %{_hordedir}/services
 %{_hordedir}/templates
 %{_hordedir}/themes

++ COPYING ++
GNU GENERAL PUBLIC LICENSE
   Version 2, June 1991

 Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

Preamble

  The licenses for most software are designed to take away your
freedom to share and change it.  By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users.  This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it.  (So

commit kipi-plugins for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package kipi-plugins for openSUSE:Factory
checked in at Mon Aug 15 14:35:16 CEST 2011.




--- KDE/kipi-plugins/kipi-plugins.changes   2011-08-03 23:37:47.0 
+0200
+++ /mounts/work_src_done/STABLE/kipi-plugins/kipi-plugins.changes  
2011-08-12 11:47:44.0 +0200
@@ -1,0 +2,29 @@
+Fri Aug 12 09:44:19 UTC 2011 - idon...@novell.com
+
+- Add remove-gplv2-only.patch, remove GPLv2 only files from the
+  buildsystem, bnc #711963
+
+---
+Mon Aug  8 22:00:32 UTC 2011 - asterios.dra...@gmail.com
+
+- Spec file updates:
+  * Simplified License: to GPL-2.0+ and Adobe.
+  * Cleanup in Buildrequires:.
+  * Removed /usr/bin/jpegtran from Requires:.
+  * Added ImageMagick, enblend-enfus and hugin and removed dcraw in Recommends:
+entries.
+  * Recommend lang package.
+  * Added description for the patches based on openSUSE Patches Guidelines.
+  * Removed libkipiplugins.so and the kipi-plugins-devel package (not needed,
+the package doesn't actually provide any shared libraries).
+  * Better fix to remove build time references so build-compare can do its
+work.
+  * Install dngconverter.desktop and add a fix for the rpm post build error
+about a missing icon.
+  * Fixed "wrong-icon-size" and "suse-kde4-missing-runtime-dependency" rpmlint
+warnings.
+  * Minor other updates.
+- Readded the patch for expoblending.desktop to fix an rpmlint warning about
+  "non-executable-script".
+
+---

calling whatdependson for head-i586


New:

  non-executable-script.patch
  remove-gplv2-only.patch



Other differences:
--
++ kipi-plugins.spec ++
--- /var/tmp/diff_new_pack.TEYFvL/_old  2011-08-15 14:14:37.0 +0200
+++ /var/tmp/diff_new_pack.TEYFvL/_new  2011-08-15 14:14:37.0 +0200
@@ -19,42 +19,50 @@
 
 Name:   kipi-plugins
 Version:2.0.0
-Release:5
-License:BSD3c(or similar) ; GPLv2+ ; LGPLv2.1+ ; MIT License (or 
similar)
+Release:7
+License:GPL-2.0+ and Adobe
 Summary:KDE Plug-Ins for Image Manipulation
 Url:http://www.kipi-plugins.org/
 Group:  Productivity/Graphics/Other
 Source: 
http://sourceforge.net/projects/digikam/files/digikam/%{version}/digikam-%{version}.tar.bz2
+# PATCH-FIX-OPENSUSE desktop-files.diff -- Remove Icon= entry (the icon is 
missing)
 Patch0: desktop-files.diff
+# PATCH-FIX-UPSTREAM fix_memory_corruption.diff bko#279078 zawer...@gmail.com 
-- Fix for kipi plugin Yandex.Fotki causes digikam crash (fixed upstream)
 Patch1: fix_memory_corruption.diff
-BuildRequires:  doxygen
+# PATCH-FIX-OPENSUSE non-executable-script.patch asterios.dra...@gmail.com -- 
Fix rpmlint warning "non-executable-script"
+Patch2: non-executable-script.patch
+# PATCH-FIX-OPENSUSE remove-gplv2-only.patch idoen...@suse.de bnc #711963 -- 
Remove GPLv2 only files from the build system
+Patch3: remove-gplv2-only.patch
+# only needed to patch broken images in the upstream tarball
+BuildRequires:  ImageMagick
 BuildRequires:  fdupes
-BuildRequires:  graphviz-devel
-BuildRequires:  lensfun-devel
-BuildRequires:  libexiv2-devel
+%if 0%{?suse_version} == 1130
+BuildRequires:  gtk2-devel
+%else
+BuildRequires:  gdk-pixbuf-devel
+%endif
+BuildRequires:  glib2-devel
 BuildRequires:  libexpat-devel
-BuildRequires:  libgcrypt-devel
-BuildRequires:  libgphoto2-devel
 BuildRequires:  libgpod-devel
-BuildRequires:  libjasper-devel
 BuildRequires:  libkdcraw-devel >= 4.7.0
+BuildRequires:  libkde4-devel
 BuildRequires:  libkdepimlibs4-devel
 BuildRequires:  libkexiv2-devel
-BuildRequires:  libkipi-devel
 BuildRequires:  libkgeomap-devel
+BuildRequires:  libkipi-devel
 BuildRequires:  libksane-devel
-BuildRequires:  liblqr-devel
+BuildRequires:  libmediawiki-devel
 BuildRequires:  libqca2-devel
-BuildRequires:  libqimageblitz-devel
 BuildRequires:  libqjson-devel
-BuildRequires:  marble-devel
+BuildRequires:  libxslt-devel
 BuildRequires:  opencv-devel
-BuildRequires:  soprano-backend-redland
-BuildRequires:  sqlite-devel
-BuildRequires:  libmediawiki-devel
-BuildRequires:  pkgconfig(gtk+-2.0)
-Requires:   /usr/bin/jpegtran
-Recommends: dcraw
+%if 0%{?suse_version}
+BuildRequires:  update-desktop-files
+%endif
+Recommends: ImageMagick
+Recommends: enblend-enfuse
+Recommends: hugin
+Recommends: %{name}-lang = %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %kde4_runtime_requires
 %kde4_pimlibs_requires
@@ -63,25 +71,16 @@
 A set of plug-ins for the KDE KIPI interface, used by some KDE imaging
 applications.
 
-%package devel
-License:GPLv2+
-Summary:Development Headers for kipi-plugins
-Group:  Development/Libraries/KDE
-Requires:   %{n

commit MozillaFirefox for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package MozillaFirefox for openSUSE:Factory
checked in at Mon Aug 15 14:14:23 CEST 2011.




--- MozillaFirefox/MozillaFirefox.changes   2011-07-23 16:31:13.0 
+0200
+++ /mounts/work_src_done/STABLE/MozillaFirefox/MozillaFirefox.changes  
2011-08-13 08:47:54.0 +0200
@@ -1,0 +2,7 @@
+Fri Aug 12 21:16:19 UTC 2011 - w...@rosenauer.org
+
+- update to 6.0 (bnc#711954)
+  * included security fixes
+- removed obsolete curl header dependency (mozilla-curl.patch)
+
+---

calling whatdependson for head-i586


Old:

  firefox-5.99-source.tar.bz2
  l10n-5.99.tar.bz2

New:

  firefox-6.0-source.tar.bz2
  l10n-6.0.tar.bz2
  mozilla-curl.patch



Other differences:
--
++ MozillaFirefox.spec ++
--- /var/tmp/diff_new_pack.EENS0m/_old  2011-08-15 14:13:55.0 +0200
+++ /var/tmp/diff_new_pack.EENS0m/_new  2011-08-15 14:13:55.0 +0200
@@ -18,8 +18,8 @@
 
 # norootforbuild
 
-%define major 5
-%define mainver %major.99
+%define major 6
+%define mainver %major.0
 
 Name:   MozillaFirefox
 BuildRequires:  Mesa-devel autoconf213 fdupes gcc-c++ libcurl-devel 
libgnomeui-devel libidl-devel libnotify-devel python startup-notification-devel 
unzip update-desktop-files yasm zip
@@ -35,7 +35,7 @@
 License:MPLv1.1 or GPLv2+ or LGPLv2+
 Version:%{mainver}
 Release:1
-%define releasedate 2011072100
+%define releasedate 2011081200
 Provides:   web_browser
 Provides:   firefox = %{version}-%{release}
 Provides:   firefox = %{mainver}
@@ -74,6 +74,7 @@
 Patch13:mozilla-dump_syms-static.patch
 Patch14:mozilla-sle11.patch
 Patch15:mozilla-linux3.patch
+Patch16:mozilla-curl.patch
 # Firefox/browser
 Patch31:firefox-browser-css.patch
 Patch32:firefox-cross-desktop.patch
@@ -206,6 +207,7 @@
 %patch14 -p1
 %endif
 %patch15 -p1
+%patch16 -p1
 #
 %patch31 -p1
 %patch32 -p1
@@ -269,7 +271,7 @@
 ac_add_options --disable-debug
 ac_add_options --enable-startup-notification
 #ac_add_options --enable-chrome-format=jar
-ac_add_options --enable-update-channel=beta
+ac_add_options --enable-update-channel=default
 EOF
 %if %suse_version > 1130
 cat << EOF >> $MOZCONFIG

++ compare-locales.tar.bz2 ++

++ create-tar.sh ++
--- /var/tmp/diff_new_pack.EENS0m/_old  2011-08-15 14:13:55.0 +0200
+++ /var/tmp/diff_new_pack.EENS0m/_new  2011-08-15 14:13:55.0 +0200
@@ -1,8 +1,8 @@
 #!/bin/bash
 
-BRANCH="releases/mozilla-beta"
-RELEASE_TAG="FIREFOX_6_0b3_RELEASE"
-VERSION="5.99"
+BRANCH="releases/mozilla-release"
+RELEASE_TAG="FIREFOX_6_0_RELEASE"
+VERSION="6.0"
 
 # mozilla
 hg clone http://hg.mozilla.org/$BRANCH mozilla
@@ -23,7 +23,7 @@
 ja-JP-mac|en-US)
   ;;
 *)
-  hg clone http://hg.mozilla.org/releases/l10n/mozilla-beta/$locale 
l10n/$locale
+  hg clone http://hg.mozilla.org/releases/l10n/mozilla-release/$locale 
l10n/$locale
   [ "$RELEASE_TAG" == "default" ] || hg -R l10n/$locale up -C -r 
$RELEASE_TAG
   ;;
   esac

++ firefox-5.99-source.tar.bz2 -> firefox-6.0-source.tar.bz2 ++
MozillaFirefox/firefox-5.99-source.tar.bz2 
/mounts/work_src_done/STABLE/MozillaFirefox/firefox-6.0-source.tar.bz2 differ: 
char 11, line 1


++ l10n-5.99.tar.bz2 -> l10n-6.0.tar.bz2 ++
MozillaFirefox/l10n-5.99.tar.bz2 
/mounts/work_src_done/STABLE/MozillaFirefox/l10n-6.0.tar.bz2 differ: char 11, 
line 1

++ mozilla-curl.patch ++
# HG changeset patch
# User Evan Shaw 
# Parent 891179411e19ab39f95bd7769c0e58db6f22f9e4
bug 673072 - remove deprecated curl header curl/types.h from Breakpad includes. 
r=ted

diff --git a/config/system-headers b/config/system-headers
--- a/config/system-headers
+++ b/config/system-headers
@@ -199,17 +199,16 @@ crypt.h
 cstddef
 cstdio
 cstdlib
 cstring
 ctime
 ctype.h
 curl/curl.h
 curl/easy.h
-curl/types.h
 curses.h
 cxxabi.h
 DateTimeUtils.h
 dbus/dbus.h
 dbus/dbus-glib.h
 dbus/dbus-glib-lowlevel.h
 ddeml.h
 Debug.h
diff --git a/js/src/config/system-headers b/js/src/config/system-headers
--- a/js/src/config/system-headers
+++ b/js/src/config/system-headers
@@ -199,17 +199,16 @@ crypt.h
 cstddef
 cstdio
 cstdlib
 cstring
 ctime
 ctype.h
 curl/curl.h
 curl/easy.h
-curl/types.h
 curses.h
 cxxabi.h
 DateTimeUtils.h
 dbus/dbus.h
 dbus/dbus-glib.h
 dbus/dbus-glib-lowlevel.h
 ddeml.h
 Debug.h
diff --git 
a/toolkit/crashreporter/google-breakpad/src/common/linux/http_upload.cc 
b/toolkit/crashreporter/google-breakpad/src/common/linux/http_upload.cc
--- a/toolkit/crashreporter/google-breakpad/src/common/linux/http_upload.cc
+++ b/toolkit/crashreporter/google-breakpad/src/common/linux/http_upload.cc
@@ -28,17 +28,16 @@
 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 #include "common/linux/http_u

commit doxygen for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory
checked in at Mon Aug 15 14:12:42 CEST 2011.




--- doxygen/doxygen.changes 2011-03-29 11:23:58.0 +0200
+++ /mounts/work_src_done/STABLE/doxygen/doxygen.changes2011-08-15 
11:38:02.0 +0200
@@ -1,0 +2,41 @@
+Mon Aug 15 09:26:47 UTC 2011 - pgaj...@novell.com
+
+- update to 1.7.5:
+  * id 641904: Function in the call graphs are now shown based on first 
+appearance rather then alphabetical order.  
+  * id 616213: When customizing the HTML header $title now only generates 
+the title excluding the project name (which can still be  
+added using $projectname)  
 
+  * Improved the look of the class index: all items now have equal spacing.
+  * New option INTERACTIVE_SVG which when set to YES in combination with 
+DOT_IMAGE_FORMAT=svg will make doxygen generate interactive SVG 
+diagrams that support zooming and panning via the mouse (only for 
+large graphs).
+  * Added support for the Tcl programming language (thanks to Rene Zaumseil
+and Samuel Bentley for the patch).  
+  * Added @copyright command.  
 
+  * added option MATHJAX_EXTENSIONS to provide additional extensions for 
+MathJax (thanks to David Munger for the patch).
+  * added option INLINE_SIMPLE_STRUCTS which when enabled shows the fields 
+of simple classes and structs (with only public data fields) as a table 
+and inline in context (file/group/namespace/class) 
+provided this context is documented.  
+  * When using the server based search engine (SEARCHENGINE=YES and 
+SERVER_BASED_SEARCH=YES) doxygen now advertises a opensearch provider 
+for your project, that allows integrating the search directly in the 
+search field of the browser (thanks to Phil Lello for the patch). 
+  * id 503239: Added new option CITE_BIB_FILES and LATEX_BIB_STYLE and a new 
+command \cite, allowing you to make references to literature (as defined 
+in one or more .bib files). This also works for output formats other 
+than LaTeX. The tool bibtex is required for this to work though. Thanks 
+to David Munger for the initial patch upon which this feature is based.

+  * PHP namespaces are now shown as A\B in the output. 
 
+  * Added new \snippet command that can be used to include marked sections 
+from a source file. See http://www.doxygen.org/commands.html#cmdsnippet 
+for more info. 

+  * Added translation support for Armenian, thank to Armen Tangamyan. and 
+included translation updates for a number of languages.  
+  * Many bug fixes, for details see 
+http://www.stack.nl/~dimitri/doxygen/changelog.html.
+
+---
--- doxygen/doxywizard.changes  2011-07-27 11:23:10.0 +0200
+++ /mounts/work_src_done/STABLE/doxygen/doxywizard.changes 2011-08-15 
11:38:03.0 +0200
@@ -1,0 +2,42 @@
+Mon Aug 15 09:37:23 UTC 2011 - pgaj...@novell.com
+
+- update to 1.7.5:
+  * id 641904: Function in the call graphs are now shown based on first
+appearance rather then alphabetical order.
+  * id 616213: When customizing the HTML header $title now only generates
+the title excluding the project name (which can still be
+added using $projectname)
+  * Improved the look of the class index: all items now have equal spacing.
+  * New option INTERACTIVE_SVG which when set to YES in combination with
+DOT_IMAGE_FORMAT=svg will make doxygen generate interactive SVG
+diagrams that support zooming and panning via the mouse (only for
+large graphs).
+  * Added support for the Tcl programming language (thanks to Rene Zaumseil
+and Samuel Bentley for the patch).
+  * Added @copyright command.
+  * added option MATHJAX_EXTENSIONS to provide additional extensions for
+MathJax (thanks to David Munger for the patch).
+  * added option INLINE_SIMPLE_STRUCTS which when enabled shows the fields
+of simple classes and structs (with only public data fields) as a table
+and inline in context (file/group/namespace/class)
+provided this context is documented.
+  * When using the server based search engine (SEARCHENGINE=YES and
+SERVER_BASED_SEARCH=YES) doxygen now advertises a opensearch provider
+for your project, that allows integrating the search directly in the
+search field of the browser (thanks to Phil Lello for the patch).
+  * id 503239: Added new o

commit dblatex for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package dblatex for openSUSE:Factory
checked in at Mon Aug 15 14:09:21 CEST 2011.




--- dblatex/dblatex.changes 2009-08-09 12:32:41.0 +0200
+++ /mounts/work_src_done/STABLE/dblatex/dblatex.changes2011-08-12 
15:16:31.0 +0200
@@ -1,0 +2,18 @@
+Fri Aug 12 12:59:37 UTC 2011 - t...@suse.de
+
+- Merged spec file with Publishing
+- Added sed call to remove shebang lines in *.py files 
+
+---
+Sat Jun  5 08:41:10 UTC 2010 - bernh...@bwalle.de
+
+Updated to version 0.3:
+  * Upgrade to recent Debian scripts (error handlers).
+  * Improve the table rendering by adding a table-width Processing
+Instruction.
+  * Add the parameters:
+- default.table.width.
+- biblioentry.numbered.
+  * A number of bug fixes.
+
+---

calling whatdependson for head-i586


Old:

  dblatex-0.2.7.tar.bz2
  setup.patch

New:

  dblatex-0.3.tar.bz2
  dblatex-rpmlintrc
  dblatex-setup.patch



Other differences:
--
++ dblatex.spec ++
--- /var/tmp/diff_new_pack.abxvNx/_old  2011-08-15 14:07:31.0 +0200
+++ /var/tmp/diff_new_pack.abxvNx/_new  2011-08-15 14:07:31.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package dblatex (Version 0.2.7)
+# spec file for package dblatex
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 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
@@ -16,62 +16,68 @@
 #
 
 
+%define name dblatex
+%define _version 0.3
+%define release 1
+
 Summary:DocBook to LaTeX Publishing
 
-Name:   dblatex
-Version:0.2.7
-Release:3
+Name:   %{name}
+Version:%{_version}
+Release:1
 Source0:%{name}-%{version}.tar.bz2
-Patch0: setup.patch
-License:GPL v2 or later
+Source1:%{name}-rpmlintrc
+Patch0: %{name}-setup.patch
+License:GPL
 Group:  Productivity/Publishing/DocBook
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Prefix: %{_prefix}
-BuildRequires:  ImageMagick libxslt python-devel python-setuptools transfig
+BuildArch:  noarch
+BuildRequires:  ImageMagick dos2unix grep libxslt python-devel pyxml transfig
+Requires:   pyxml
 Url:http://dblatex.sourceforge.net
-# Take care of renaming:
-%if %suse_version > 1020
 Requires:   docbook_4 texlive texlive-latex texlive-bin texlive-bin-latex
 BuildRequires:  texlive texlive-bin texlive-bin-latex texlive-latex
-%else
-Requires:   docbook_4 tetex te_latex
-BuildRequires:  docbook_4 te_latex tetex
-%endif
+%py_requires
 
 %description
-dblatex is a program that transforms your SGML/XMLDocBook documents to
-DVI, PostScript or PDF by translating them into pure LaTeX as a first
-process.  MathML 2.0 markups are supported, too. It started as a clone
-of DB2LaTeX.
-
-
+dblatex is a program that transforms your SGML/XMLDocBook
+documents to DVI, PostScript or PDF by translating them
+into pure LaTeX as a first process.  MathML 2.0 markups
+are supported, too. It started as a clone of DB2LaTeX.
 
 Authors:
 
-Beno�t Guillon 
+   Benoît Guillon 
 Andreas Hoenen 
 
 %prep
 %setup -q
-%patch0
-%{__cp} docs/manual.pdf .
+%patch0 -p1
+%__cp docs/manual.pdf .
+
+# Remove any She-bang lines
+sed -i '/#!\/usr\//d' lib/dbtexmf/dblatex/xetex/fsencoder.py \
+  lib/dbtexmf/dblatex/xetex/fontspec.py \
+  lib/dbtexmf/dblatex/xetex/fsconfig.py
 
 %build
-env CFLAGS="$RPM_OPT_FLAGS" python setup.py build
+env CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
 
 %install
-python setup.py install --prefix=%{_prefix} --root=$RPM_BUILD_ROOT 
--record=INSTALLED_FILES
-# Correct misplaced manual
-#[ -f $RPM_BUILD_ROOT/usr/share/doc/dblatex/manual.pdf ] && rm -rf 
$RPM_BUILD_ROOT/usr/share/doc/dblatex/
+%{__python} setup.py install \
+   --prefix=%{_prefix} \
+   --root=$RPM_BUILD_ROOT \
+   --record-rpm=INSTALLED_FILES
+
+[ -e  %{py_sitedir}/dbtexmf/dblatex/xetex/fontspec.py ] && \
+  dos2unix %{py_sitedir}/dbtexmf/dblatex/xetex/fontspec.py
+%{__grep} -v -e '%dir %{_defaultdocdir}$' INSTALLED_FILES > _tmp
+%{__mv} _tmp INSTALLED_FILES
 
 %clean
-rm -rf $RPM_BUILD_ROOT
+%{__rm} -rf $RPM_BUILD_ROOT
 
 %files -f INSTALLED_FILES
 %defattr(-,root,root)
-%doc manual.pdf
-%{_datadir}/%{name}
-%{_mandir}/man1/%{name}*
-%{python_sitelib}/dbtexmf
 
 %changelog

++ dblatex-0.2.7.tar.bz2 -> dblatex-0.3.tar.bz2 ++
 50654 lines of diff (skipped)

++ dblatex-rpmlintrc ++
#
addFilter("files-duplicate")++ dblatex-setup.patch ++
---
 setup.py |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit curl for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package curl for openSUSE:Factory
checked in at Mon Aug 15 14:06:39 CEST 2011.




--- curl/curl.changes   2011-08-03 11:41:39.0 +0200
+++ /mounts/work_src_done/STABLE/curl/curl.changes  2011-08-15 
07:06:17.0 +0200
@@ -1,0 +2,6 @@
+Mon Aug 15 05:05:01 UTC 2011 - crrodrig...@opensuse.org
+
+- Use SSL_MODE_RELEASE_BUFFERS if available, accepted 
+  in upstream as commit 3d919440c80333c496fb
+
+---

calling whatdependson for head-i586


New:

  curl-openssl-release-buffers.patch



Other differences:
--
++ curl.spec ++
--- /var/tmp/diff_new_pack.WKaFgG/_old  2011-08-15 14:00:47.0 +0200
+++ /var/tmp/diff_new_pack.WKaFgG/_new  2011-08-15 14:00:47.0 +0200
@@ -38,7 +38,7 @@
 %endif
 #define cvs_suffix -20090302
 Version:7.21.7
-Release:1
+Release:4
 AutoReqProv:on
 # bug437293
 %ifarch ppc64
@@ -52,6 +52,7 @@
 Source: curl-%version%{?cvs_suffix}.tar.lzma
 Source2:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Patch:  curl-openssl-release-buffers.patch
 
 %description
 Curl is a client to get documents and files from or send documents to a
@@ -84,6 +85,7 @@
 
 %prep
 %setup -q -n curl-%version%{?cvs_suffix}
+%patch
 
 %build
 # local hack to make curl-config --libs stop printing libraries it depends on


++ curl-openssl-release-buffers.patch ++
--- lib/ssluse.c.orig
+++ lib/ssluse.c
@@ -1492,6 +1492,10 @@ ossl_connect_step1(struct connectdata *c
 return CURLE_OUT_OF_MEMORY;
   }
 
+#ifdef SSL_MODE_RELEASE_BUFFERS
+  SSL_CTX_set_mode(connssl->ctx, SSL_MODE_RELEASE_BUFFERS);
+#endif
+
 #ifdef SSL_CTRL_SET_MSG_CALLBACK
   if(data->set.fdebug && data->set.verbose) {
 /* the SSL trace callback is only used for verbose logging so we only





Remember to have fun...

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



commit bsdtar for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package bsdtar for openSUSE:Factory
checked in at Mon Aug 15 14:00:36 CEST 2011.




--- bsdtar/bsdtar.changes   2010-11-11 14:42:22.0 +0100
+++ /mounts/work_src_done/STABLE/bsdtar/bsdtar.changes  2011-04-19 
16:04:09.0 +0200
@@ -1,0 +2,7 @@
+Tue Apr 19 13:23:09 UTC 2011 - idoen...@novell.com
+
+- Add suport for xz and xar archives 
+- Add libarchive-2.8.4-iso9660-data-types.patch: 
+  fix ISO9660 reader data type mismatches
+
+---

calling whatdependson for head-i586


New:

  libarchive-2.8.4-iso9660-data-types.patch



Other differences:
--
++ bsdtar.spec ++
--- /var/tmp/diff_new_pack.HnTvNA/_old  2011-08-15 13:58:43.0 +0200
+++ /var/tmp/diff_new_pack.HnTvNA/_new  2011-08-15 13:58:43.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package bsdtar (Version 2.8.4)
+# spec file for package bsdtar
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 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
@@ -19,7 +19,7 @@
 
 Name:   bsdtar
 Version:2.8.4
-Release:1
+Release:11
 %define pkg_name libarchive
 #
 License:BSD3c(or similar)
@@ -39,12 +39,17 @@
 %else
 BuildRequires:  e2fsprogs-devel
 %endif
+BuildRequires:  libopenssl-devel
+BuildRequires:  libxml2-devel
+BuildRequires:  xz-devel
 #
 Summary:Creates and reads several different streaming archive formats
 #
 Url:http://code.google.com/p/libarchive/
 Source: libarchive-%{version}.tar.bz2
 Patch1: libarchive-2.5.5_handle_ENOSYS_from_lutimes.patch
+# PATCH-FIX-UPSTREAM libarchive-2.8.4-iso9660-data-types.patch 
idoen...@suse.de -- Fix ISO9660 reader data type mismatches
+Patch2: libarchive-2.8.4-iso9660-data-types.patch
 
 %description
 Libarchive is a programming library that can create and read several
@@ -144,6 +149,7 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 %patch1
+%patch2
 
 %build
 #autoreconf -fi
@@ -159,6 +165,7 @@
 %make_install
 rm -fv minitar/*.o
 rm -fv %{buildroot}%{_libdir}/*.la
+rm "%{buildroot}%{_mandir}/man5/"{tar,cpio,mtree}.5*
 
 %clean
 rm -rf %{buildroot}

++ libarchive-2.8.4-iso9660-data-types.patch ++
Index: libarchive/archive_read_support_format_iso9660.c
===
--- libarchive/archive_read_support_format_iso9660.c(revision 1983)
+++ libarchive/archive_read_support_format_iso9660.c(revision 1984)
@@ -924,7 +924,7 @@
if (parent->offset + parent->size > iso9660->volume_size) {
archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
"Directory is beyond end-of-media: %s",
-   parent->name);
+   parent->name.s);
return (ARCHIVE_WARN);
}
if (iso9660->current_position < parent->offset) {
@@ -1220,7 +1220,7 @@
 
if (file->offset + file->size > iso9660->volume_size) {
archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
-   "File is beyond end-of-media: %s", file->name);
+   "File is beyond end-of-media: %s", file->name.s);
iso9660->entry_bytes_remaining = 0;
iso9660->entry_sparse_offset = 0;
return (ARCHIVE_WARN);
@@ -1279,8 +1279,8 @@
if ((file->mode & AE_IFMT) != AE_IFDIR &&
file->offset < iso9660->current_position) {
archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
-   "Ignoring out-of-order file @%x (%s) %jd < %jd",
-   file,
+   "Ignoring out-of-order file @%jx (%s) %jd < %jd",
+   (intmax_t)file->number,
iso9660->pathname.s,
file->offset, iso9660->current_position);
iso9660->entry_bytes_remaining = 0;





Remember to have fun...

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



commit calibre for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package calibre for openSUSE:Factory
checked in at Mon Aug 15 13:08:47 CEST 2011.




--- calibre/calibre.changes 2011-08-10 16:31:55.0 +0200
+++ /mounts/work_src_done/STABLE/calibre/calibre.changes2011-08-14 
17:52:14.0 +0200
@@ -1,0 +2,32 @@
+Sun Aug 14 15:46:24 UTC 2011 - sascha.ma...@open-slx.de
+
+- New Features:
+  o Make the keyboard shortcuts used by the main calibre interface user
+customizable, via Preferences->Advanced->Keyboard
+  o When switching libraries, if the library no longer exists, give the
+user a chance to specify a new location for the library, in case it
+was moved, before forgetting it.
+  o Template language: Add strcat and strlen builtin functions. 
+
+- Bug fixes:
+  o The various options to control how automerging works when adding books
+now also apply when copying a book from one library to another.
+  o Ebook viewer: Respond to key presses even when the book display area
+does not have keyboard focus
+  o Allow integer and float column values to go to -99. -100 is
+the value of 'undefined'.
+  o Fix in calibre browser not working for the Open books store in Get
+Books.
+  o Fix regression in 0.8.13 that caused incorrect title/author for
+downloaded news if you turned off reading metadata from file contents
+in Preferences->Adding books
+  o Save to disk: When saving to a single directory, handle the case of
+the save to disk template containing path separators inside template
+expression correctly.
+  o Get Books: Always read metadata from the file contents, ignoring the
+setting in Preferences->Adding books
+  o Fix merge_metadata to not overwrite non-text fields ('bool', 'int',
+'float', 'rating', 'datetime') that have a value of zero/false instead
+of None.
+
+---

calling whatdependson for head-i586


Old:

  calibre-0.8.13-nofonts.tar.bz2
  calibre-l18n.diff

New:

  calibre-0.8.14-nofonts.tar.bz2



Other differences:
--
++ calibre.spec ++
--- /var/tmp/diff_new_pack.ks52yk/_old  2011-08-15 13:08:31.0 +0200
+++ /var/tmp/diff_new_pack.ks52yk/_new  2011-08-15 13:08:31.0 +0200
@@ -19,7 +19,7 @@
 Summary:EBook Management Application
 
 Name:   calibre
-Version:0.8.13
+Version:0.8.14
 Release:1
 Url:http://calibre-ebook.com
 Group:  Productivity/Other

++ calibre-0.8.13-nofonts.tar.bz2 -> calibre-0.8.14-nofonts.tar.bz2 ++
calibre/calibre-0.8.13-nofonts.tar.bz2 
/mounts/work_src_done/STABLE/calibre/calibre-0.8.14-nofonts.tar.bz2 differ: 
char 11, line 1







Remember to have fun...

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



commit diffutils for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package diffutils for openSUSE:Factory
checked in at Mon Aug 15 12:30:21 CEST 2011.




--- diffutils/diffutils.changes 2010-09-19 10:30:44.0 +0200
+++ /mounts/work_src_done/STABLE/diffutils/diffutils.changes2011-08-13 
03:43:18.0 +0200
@@ -1,0 +2,10 @@
+Sat Aug 13 03:10:31 CEST 2011 - p...@suse.de
+
+- Update to 3.1:
+  + Bug fixes
+- diff no longer reports spurious differences merely because two
+  entries in the same directory have names that compare equal in
+  the current locale, or compare equal because --ignore-file-name-case
+  was given.
+
+---

calling whatdependson for head-i586


Old:

  diffutils-3.0.tar.bz2

New:

  diffutils-3.1.tar.xz



Other differences:
--
++ diffutils.spec ++
--- /var/tmp/diff_new_pack.pYLjP4/_old  2011-08-15 12:27:42.0 +0200
+++ /var/tmp/diff_new_pack.pYLjP4/_new  2011-08-15 12:27:42.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package diffutils (Version 3.0)
+# spec file for package diffutils
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 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
@@ -25,11 +25,12 @@
 Provides:   diff
 Obsoletes:  diff
 PreReq: %{install_info_prereq}
-Version:3.0
+Version:3.1
 Release:1
 Summary:GNU diff Utilities
-Source: %{name}-%{version}.tar.bz2
+Source: %{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  xz
 
 %description
 The GNU diff utilities find differences between files. diff is used to
@@ -44,13 +45,14 @@
 
 %install
 %makeinstall
+gzip -9 %{buildroot}%{_infodir}/%{name}.info
 %find_lang %name
 
 %post
-%install_info --info-dir=%{_infodir} %{_infodir}/diff.info.gz
+%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
 
 %postun
-%install_info_delete --info-dir=%{_infodir} %{_infodir}/diff.info.gz
+%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -62,7 +64,7 @@
 %{_bindir}/diff
 %{_bindir}/diff3
 %{_bindir}/sdiff
-%doc %{_infodir}/diff.info*.gz
+%doc %{_infodir}/%{name}.info.gz
 %doc %{_mandir}/man1/*.gz
 
 %changelog






Remember to have fun...

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



commit gnucash-docs for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package gnucash-docs for openSUSE:Factory
checked in at Mon Aug 15 12:27:33 CEST 2011.




--- GNOME/gnucash-docs/gnucash-docs.changes 2007-07-27 14:52:30.0 
+0200
+++ /mounts/work_src_done/STABLE/gnucash-docs/gnucash-docs.changes  
2011-08-04 14:47:49.0 +0200
@@ -1,0 +2,10 @@
+Thu Aug  4 14:00:18 CEST 2011 - dims...@opensuse.org
+
+- Update to version 2.4.1:
+  + Allow control over scrollkeeper omf file installation using
+--disable-scrollkeeper as configure parameter.
+  + Other buildsystem fixes.
+- Clean spec-file using spec-cleaner.
+- Use grep -E instead of egrep to fix a rpmlint warning.
+
+---

calling whatdependson for head-i586


Old:

  gnucash-docs-2.2.0.tar.bz2

New:

  gnucash-docs-2.4.1.tar.gz



Other differences:
--
++ gnucash-docs.spec ++
--- /var/tmp/diff_new_pack.wMTns5/_old  2011-08-15 12:25:25.0 +0200
+++ /var/tmp/diff_new_pack.wMTns5/_new  2011-08-15 12:25:25.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package gnucash-docs (Version 2.2.0)
+# spec file for package gnucash-docs
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 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,20 +15,22 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   gnucash-docs
-BuildRequires:  fdupes kdelibs3-doc scrollkeeper sgml-skel
-# Only for directory ownership:
-BuildRequires:  libgnome
-Version:2.2.0
-Release:176
+Version:2.4.1
+Release:1
+License:GNU Free Documentation License, Version 1.1 (GFDL 1.1) ; GPLv2+
+Summary:Documentation Module for GnuCash
 Url:http://www.gnucash.org/
 Group:  Productivity/Office/Finance
-License:GNU Free Documentation License, Version 1.1 (GFDL 1.1); GPL v2 
or later
-Summary:Documentation Module for GnuCash
-Source: %{name}-%{version}.tar.bz2
+Source: 
http://downloads.sourceforge.net/project/gnucash/gnucash-docs/2.4.1/%{name}-%{version}.tar.gz
+BuildRequires:  fdupes
+BuildRequires:  kdelibs3-doc
+# Only for directory ownership:
+BuildRequires:  libgnome
+BuildRequires:  scrollkeeper
+BuildRequires:  sgml-skel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -39,46 +41,25 @@
 use, but is backed with double-entry accounting principles to ensure
 balanced books. This is the documentation module for GnuCash.
 
-
-
-Authors:
-
-Chris Lyttle 
-Christian Stimmings 
-Bengt Thuree 
-Dave Herman 
-Patrick Schweiger 
-David Hampton  
-Neil Williams 
-Jon Lapham 
-Carol Champagne 
-Linas Vepstas 
-Christopher Browne 
-Bill Gribble 
-Robert Graham Merkel 
-Glen Ditchfield 
-Eric Hanchrow 
-James A. Treacy 
-
 %prep
 %setup -q
 
 %build
 %configure
-make %{?jobs:-j%jobs}
+make %{?_smp_mflags}
 
 %install
 %makeinstall
-for xml in $RPM_BUILD_ROOT%{_datadir}/gnome/help/*/*/*.xml; do
-if echo $xml | egrep 'share/gnome/help/([^/]*)/[^/]*/\1\.xml$' > 
/dev/null; then
+for xml in %{buildroot}%{_datadir}/gnome/help/*/*/*.xml; do
+if echo $xml | grep -E 'share/gnome/help/([^/]*)/[^/]*/\1\.xml$' > 
/dev/null; then
 meinproc --check --cache `echo $xml | sed 's/xml$/cache.bz2/'` $xml || 
:
 fi
 done
 %find_lang gnucash
-%fdupes $RPM_BUILD_ROOT%{_datadir}
+%fdupes %{buildroot}%{_datadir}
 
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -rf %{buildroot}
 
 %files -f gnucash.lang
 %defattr(-,root,root)






Remember to have fun...

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



commit horde3-imp for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package horde3-imp for openSUSE:Factory
checked in at Mon Aug 15 12:09:05 CEST 2011.




--- horde3-imp/horde3-imp.changes   2011-01-25 13:23:37.0 +0100
+++ /mounts/work_src_done/STABLE/horde3-imp/horde3-imp.changes  2011-08-13 
20:46:37.0 +0200
@@ -1,0 +2,8 @@
+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).
+
+---

calling whatdependson for head-i586


Old:

  imp-h3-4.3.8-php5_exec.patch
  imp-h3-4.3.9.tar.bz2

New:

  gpl-2.0.txt
  imp-h3-4.3.10.tar.gz



Other differences:
--
++ horde3-imp.spec ++
--- /var/tmp/diff_new_pack.uT3URB/_old  2011-08-15 12:05:37.0 +0200
+++ /var/tmp/diff_new_pack.uT3URB/_new  2011-08-15 12:05:37.0 +0200
@@ -21,18 +21,18 @@
 %define _impdir %{_hordedir}/imp
 
 Name:   horde3-imp
-Version:4.3.9
+Version:4.3.10
 Release:1
 Summary:Horde IMP Web-Based Mail Client
 License:GPL
 Group:  Productivity/Networking/Email/Utilities
 Url:http://www.horde.org/imp
-Source0:imp-h3-%{version}.tar.bz2
+Source0:ftp://ftp.horde.org/pub/imp/imp-h3-%{version}.tar.gz
+Source1:http://www.gnu.org/licenses/gpl-2.0.txt
 Patch0: imp-h3-4.3.8-usr_local.patch
-Patch1: imp-h3-4.3.8-php5_exec.patch
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Requires:   horde3 
+Requires:   horde3 php5
 BuildRequires:  apache2-devel horde3 pcre-devel
 %if 0%{?sles_version} != 10 
 BuildRequires:  fdupes
@@ -65,7 +65,6 @@
 %prep
 %setup -qn imp-h3-%{version}
 %patch0
-%patch1
 
 %build
 pushd config/
@@ -76,6 +75,7 @@
 %__mkdir_p %{buildroot}/%{_impdir}
 %__cp -r ./* %{buildroot}/%{_impdir}
 %__rm -rf %{buildroot}/%{_impdir}/{docs,README,COPYING}
+%__cp %{SOURCE1} %{buildroot}/%{_impdir}/COPYING
 # remove and link duplicate files  
 %if 0%{?sles_version} != 10 
  %fdupes %buildroot/%{_impdir}
@@ -87,17 +87,16 @@
 
 %files -f imp.lang
 %defattr(-, root, root)
-%doc docs README COPYING
+%doc docs README 
 %dir %{_impdir}
 %{_impdir}/*.php
 %{_impdir}/lib
-
+%{_impdir}/COPYING
 %{_impdir}/po
 %dir %{_impdir}/locale
 %dir /srv/www/htdocs/horde/imp/locale/*
 %dir /srv/www/htdocs/horde/imp/locale/*/LC_MESSAGES
-
-%dir /srv/www/htdocs/horde/imp/locale/*/*.xml
+/srv/www/htdocs/horde/imp/locale/*/*.xml
 %{_impdir}/locale/.htaccess
 %{_impdir}/js
 %{_impdir}/scripts

++ gpl-2.0.txt ++
GNU GENERAL PUBLIC LICENSE
   Version 2, June 1991

 Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

Preamble

  The licenses for most software are designed to take away your
freedom to share and change it.  By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users.  This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it.  (Some other Free Software Foundation software is covered by
the GNU Lesser General Public License instead.)  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.

  To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have.  You must make sure that they, too, receive or can get the
source code.  And you must show them these terms so they know their
rights.

  We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.

  Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. 

commit horde3-ingo for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package horde3-ingo for openSUSE:Factory
checked in at Mon Aug 15 12:05:16 CEST 2011.




--- horde3-ingo/horde3-ingo.changes 2011-01-31 13:40:57.0 +0100
+++ /mounts/work_src_done/STABLE/horde3-ingo/horde3-ingo.changes
2011-08-13 21:24:48.0 +0200
@@ -1,0 +2,7 @@
+Sat Aug 13 19:25:14 UTC 2011 - l...@b1-systems.de
+
+- version 1.2.6
+- [mms] Fix encoding of vacation message in maildrop driver (Bug #9532).
+- [jan] Add upgrade scripts for next-generation SQL share driver.
+
+---

calling whatdependson for head-i586


Old:

  ingo-h3-1.2.5.tar.bz2

New:

  ingo-h3-1.2.6.tar.gz



Other differences:
--
++ horde3-ingo.spec ++
--- /var/tmp/diff_new_pack.hPm9Qe/_old  2011-08-15 12:04:50.0 +0200
+++ /var/tmp/diff_new_pack.hPm9Qe/_new  2011-08-15 12:04:50.0 +0200
@@ -20,16 +20,16 @@
 %define _hordedir %(%{_sbindir}/apxs2 -q datadir)/htdocs/horde
 %define _ingodir %{_hordedir}/ingo
 
-%define _pversion 1.2.5
+%define _pversion 1.2.6
 
 Name:   horde3-ingo
-Version:1.2.5
-Release:2
+Version:1.2.6
+Release:1
 Summary:Horde "Email Filter Rules Manager"
 License:Horde Apache-like License
 Group:  Productivity/Networking/Other
 Url:http://www.horde.org/ingo
-Source0:ingo-h3-%{_pversion}.tar.bz2
+Source0:ftp://ftp.horde.org/pub/ingo/ingo-h3-1.2.6.tar.gz
 Source1:ingo-h3-1.2-rc1-backends.php.kolab
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -86,10 +86,13 @@
 %defattr(-, root, root)
 %dir %{_ingodir}
 %doc docs README LICENSE
+%{_ingodir}/locale/*/help.xml
 %{_ingodir}/*.php
 %{_ingodir}/js
 %{_ingodir}/lib
 %dir %{_ingodir}/locale
+%dir %{_ingodir}/locale/*/
+%dir %{_ingodir}/locale/*/LC_MESSAGES
 # US provides just the xml file so we need to include it manually
 %{_ingodir}/locale/en_US
 %{_ingodir}/po






Remember to have fun...

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



commit horde3-kronolith for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package horde3-kronolith for openSUSE:Factory
checked in at Mon Aug 15 12:04:35 CEST 2011.




--- horde3-kronolith/horde3-kronolith.changes   2011-01-31 13:42:50.0 
+0100
+++ /mounts/work_src_done/STABLE/horde3-kronolith/horde3-kronolith.changes  
2011-08-13 21:54:54.0 +0200
@@ -1,0 +2,6 @@
+Sat Aug 13 19:53:02 UTC 2011 - l...@b1-systems.de
+
+- version 2.3.6
+- [jan] Add upgrade scripts for next-generation SQL share driver.
+- [jan] Export recurrence exceptions in a more portable way.
+---

calling whatdependson for head-i586


Old:

  kronolith-h3-2.3.5-php5_exec.diff
  kronolith-h3-2.3.5.tar.bz2

New:

  HK-GW-kronolith_2.2_RC1-Fbview_relevance.patch
  HK-GW-kronolith_2.2_RC1-Fbview_xfb_access.patch
  HK-SB-kronolith_2.2_RC1-Fbview_extra_params.patch
  HK-SB-kronolith_2.2_RC1-Fbview_save_attendees.patch
  kronolith-h3-2.3.6.tar.gz



Other differences:
--
++ horde3-kronolith.spec ++
--- /var/tmp/diff_new_pack.7E3qmg/_old  2011-08-15 12:03:54.0 +0200
+++ /var/tmp/diff_new_pack.7E3qmg/_new  2011-08-15 12:03:54.0 +0200
@@ -19,17 +19,16 @@
 
 %define _hordedir %(%{_sbindir}/apxs2 -q datadir)/htdocs/horde/
 %define _kronolithdir %{_hordedir}/kronolith
-%define _pversion 2.3.5
+%define _pversion 2.3.6
 
 Name:   horde3-kronolith
-Version:2.3.5
-Release:2
+Version:2.3.6
+Release:1
 Summary:The Horde calendar application
 License:GPL
 Group:  Productivity/Networking/Other
 Url:http://www.horde.org/kronolith
-Source0:kronolith-h3-%{_pversion}.tar.bz2
-Patch0: kronolith-h3-2.3.5-php5_exec.diff
+Source0:ftp://ftp.horde.org/pub/kronolith/kronolith-h3-2.3.6.tar.gz
 #Patch1:   HK-GW-Fix_create_new_event.patch
 #Patch2:   HK-GW-Fix_share_right_editing.patch
 #Patch3:   HK-UV-Fix_list_events.patch
@@ -74,14 +73,6 @@
 
 %prep
 %setup -qn kronolith-h3-%{_pversion}
-%patch0
-#%patch1 -p2
-#%patch2 -p2
-#%patch3 -p2
-#%patch4 -p2
-#%patch5 -p2
-#%patch6 -p2
-#%patch7 -p2
 
 %build
 pushd config/
@@ -92,11 +83,12 @@
 %__mkdir_p %{buildroot}%{_kronolithdir}
 %__cp -r ./* %{buildroot}%{_kronolithdir}
 %__rm -rf %{buildroot}%{_kronolithdir}/{docs,README,COPYING}
+%find_lang kronolith
 
 %clean
 %__rm -rf %{buildroot}
 
-%files
+%files -f kronolith.lang
 %defattr(-, root, root)
 %doc docs README COPYING
 %dir %{_kronolithdir}

++ HK-GW-kronolith_2.2_RC1-Fbview_relevance.patch ++
Allows to set the free/busy relevance on a calendar.

diff -r e7fdad8797ac kronolith/templates/calendars/calendars.inc
--- a/kronolith/templates/calendars/calendars.inc   Thu Nov 29 14:36:50 
2007 +0100
+++ b/kronolith/templates/calendars/calendars.inc   Thu Nov 29 14:43:24 
2007 +0100
@@ -8,7 +8,8 @@ var fields = [];
  $cal): ?>
 fields[''] = [
 "get('name'), 
NLS::getCharset(), 'UTF-8')) ?>",
-"get('desc'), 
NLS::getCharset(), 'UTF-8')) ?>"];
+"get('desc'), 
NLS::getCharset(), 'UTF-8')) ?>",
+""];
 
 
 function newChoice()
@@ -25,6 +26,7 @@ function newChoice()
 document.shares.edit_share.value = share;
 document.shares.id.value = decodeURIComponent(fields[share][0]);
 document.shares.description.value = 
decodeURIComponent(fields[share][1]);
+document.shares.fbrelevance[fields[share][2]].checked = true;
 urlObj.innerHTML = "" + share;
 subscriptionUrlObj.innerHTML = "get('webroot', 'horde'), true, -1) . 
'/rpc.php/kronolith/" + share + ".ics"') : 
Util::addParameter(Horde::applicationUrl('ics.php', true, -1), 'c', '') . '" + 
share' ?>;
 }
@@ -126,11 +128,55 @@ function checkSubmit()

   
  
- 
-  
+
+
+
+ 
+
+
+
+ 
+  
+   
+  
+ 
+ 
+  
+    
+  
+  
+   
+  
+ 
+ 
+  
+    
+  
+  
+   
+  
+ 
+ 
+  
+    
+  
+  
+   
+  
+ 
+  
+
+
+
+ 
+
+
+
+ 
+  
 
   
-  
+  

   
  
--- a/kronolith/calendars.php   2007-12-08 14:11:26.0 +0100
+++ b/kronolith/calendars.php   2007-12-08 14:11:35.0 +0100
@@ -37,6 +37,7 @@
 $cal = $kronolith_shares->newShare(md5(microtime()));
 $cal->set('name', $id);
 $cal->set('desc', Util::getFormData('description', ''));
+$cal->set('params', serialize(array('fbrelevance' => (int) 
Util::getFormData('fbrelevance', 0;
 $result = $kronolith_shares->addShare($cal);
 if (is_a($result, 'PEAR_Error')) {
 $notification->push($result, 'horde.error');
@@ -48,6 +49,7 @@
 $original_name = $cal->get('name');
 $cal->set('name', $id);
 $cal->set('desc', Util::getFormData('description', ''));
+$cal->set('params', serialize(array('fbrelevance' => (int) 
Util::getFormData('fbrelevance', 0;
 

commit horde3-mnemo for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package horde3-mnemo for openSUSE:Factory
checked in at Mon Aug 15 11:49:03 CEST 2011.




--- horde3-mnemo/horde3-mnemo.changes   2011-01-31 13:46:01.0 +0100
+++ /mounts/work_src_done/STABLE/horde3-mnemo/horde3-mnemo.changes  
2011-08-13 22:32:27.0 +0200
@@ -1,0 +2,7 @@
+Sat Aug 13 20:33:21 UTC 2011 - l...@b1-systems.de
+
+- version 2.2.5
+- [jan] Add upgrade scripts for next-generation SQL share driver.
+- adjusted spec for openSUSE 12.1-factory
+
+---

calling whatdependson for head-i586


Old:

  mnemo-h3-2.2.4.tar.bz2

New:

  mnemo-h3-2.2.5.tar.gz



Other differences:
--
++ horde3-mnemo.spec ++
--- /var/tmp/diff_new_pack.MCIaXN/_old  2011-08-15 11:48:47.0 +0200
+++ /var/tmp/diff_new_pack.MCIaXN/_new  2011-08-15 11:48:47.0 +0200
@@ -21,13 +21,13 @@
 %define _mnemodir %{_hordedir}/mnemo
 
 Name:   horde3-mnemo
-Version:2.2.4
-Release:2
+Version:2.2.5
+Release:1
 Summary:The Horde notes and memos application
 License:Horde Apache-like License
 Group:  Productivity/Networking/Other
 Url:http://www.horde.org/mnemo
-Source0:mnemo-h3-%{version}.tar.bz2
+Source0:ftp://ftp.horde.org/pub/mnemo/mnemo-h3-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -76,6 +76,9 @@
 %{_mnemodir}/js
 %{_mnemodir}/lib
 %dir %{_mnemodir}/locale
+%dir %{_mnemodir}/locale/*/
+%dir %{_mnemodir}/locale/*/LC_MESSAGES
+%{_mnemodir}/locale/*/help.xml
 %{_mnemodir}/locale/en_US
 %{_mnemodir}/po
 %{_mnemodir}/note






Remember to have fun...

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



commit horde3-turba for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package horde3-turba for openSUSE:Factory
checked in at Mon Aug 15 11:48:39 CEST 2011.




--- horde3-turba/horde3-turba.changes   2011-01-31 13:49:33.0 +0100
+++ /mounts/work_src_done/STABLE/horde3-turba/horde3-turba.changes  
2011-08-13 23:00:57.0 +0200
@@ -1,0 +2,20 @@
+Sat Aug 13 21:01:19 UTC 2011 - l...@b1-systems.de
+
+- minor update for 2.3.6
+- [mjr] Fix issue that caused erroneous file listings for objects in sources
+  without a __uid value.
+- [jan] Allow to export photo/logo fields to vCard without MIME type.
+- [jan] Support X-EPOCSECONDNAME fields of Nokia phones.
+- [jan] Add upgrade scripts for next-generation SQL share driver.
+- [jan] Fix splitting up names when exporting to N properties of vCards.
+- [jan] Only set the encoding parameter for binary data in vCards, if data is 
not
+  empty (Bug #9413).
+- [jan] Fix searching for fields matching an email address if using 'emails'
+  attribute instead of 'email' (Bug #9472).
+- [jan] Use personal address books first if determining the default one 
(Valentin
+  Vidic, Request #9367).
+- [jan] Use name format preference not only for paging, but for sorting too
+  (Request #8806).
+- [jan] Fix photo corruption when exporting to vCard 3.0 (Bug #9100).
+
+---

calling whatdependson for head-i586


Old:

  turba-h3-2.3.5-php5_exec.patch
  turba-h3-2.3.5.tar.bz2

New:

  HK-GW-turba_2.2_RC1-Fix_editing_contacts.patch
  HK-GW-turba_2.2_RC1-Fix_share_id_change.patch
  HK-GW-turba_2.2_RC1-Ldap_read_only_fix.patch
  turba-h3-2.3.6.tar.gz



Other differences:
--
++ horde3-turba.spec ++
--- /var/tmp/diff_new_pack.UCotRt/_old  2011-08-15 11:48:14.0 +0200
+++ /var/tmp/diff_new_pack.UCotRt/_new  2011-08-15 11:48:14.0 +0200
@@ -19,22 +19,20 @@
 
 %define _hordedir %(%{_sbindir}/apxs2 -q datadir)/htdocs/horde
 %define _turbadir %{_hordedir}/turba
-%define _pversion 2.3.5
 
 Name:   horde3-turba
-Version:2.3.5
-Release:2
+Version:2.3.6
+Release:1
 Summary:The Horde Groupware Address Book
 License:Horde Apache-like License
 Group:  Productivity/Networking/Other
 Url:http://www.horde.org/turba
-Source0:turba-h3-%{_pversion}.tar.bz2
+Source0:ftp://ftp.horde.org/pub/turba/turba-h3-%{version}.tar.gz
 Source1:turba-h3-2.2-alpha-sources.php.kolab
-Patch0: turba-h3-2.3.5-php5_exec.patch
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Provides:   turba = %{version}
-Obsoletes:  turba <= 2.3.4
+Obsoletes:  turba < %{version}
 
 Requires:   horde3 >= 3.3.0
 Requires:   php5-pear-MDB2
@@ -60,9 +58,8 @@
Michael J. Rubinsky
 
 %prep
-%setup -qn turba-h3-%{_pversion}
+%setup -qn turba-h3-%{version}
 %__cp %{S:1} ./config/sources.php.kolab
-%patch0
 
 %build
 pushd config/
@@ -135,7 +132,6 @@
 %{_turbadir}/addressbooks
 %{_turbadir}/js
 %{_turbadir}/lib
-#%{_turbadir}/locale
 %{_turbadir}/po
 %{_turbadir}/scripts
 %{_turbadir}/templates

++ HK-GW-turba_2.2_RC1-Fix_editing_contacts.patch ++
Fixes editing contacts.

diff -r e2bcaaed2d6b turba/lib/Driver/share.php
--- a/turba/lib/Driver/share.phpWed Nov 28 17:23:14 2007 +0100
+++ b/turba/lib/Driver/share.phpWed Nov 28 17:24:17 2007 +0100
@@ -58,7 +58,7 @@ class Turba_Driver_share extends Turba_D
  */
 function getName()
 {
-$share_parts = explode(':', $this->_share->getName());
+$share_parts = explode(':', $this->_share->getId());
 return array_pop($share_parts);
 }
 
++ HK-GW-turba_2.2_RC1-Fix_share_id_change.patch ++
This fixes a problem with the way the Kolab share driver handles ids.

diff -r 0ffb2574c923 turba/lib/Turba.php
--- a/turba/lib/Turba.php   Wed Nov 28 17:04:21 2007 +0100
+++ b/turba/lib/Turba.php   Wed Nov 28 17:23:14 2007 +0100
@@ -439,7 +439,7 @@ class Turba {
 
 $source_config = $sources[$source];
 $source_config['params']['share'] = &$share;
-$sources[$sourceKey] = $source_config;
+$sources[$share->getId()] = $source_config;
 } else {
 $notification->push($driver, 'horde.error');
 }
@@ -564,7 +564,7 @@ class Turba {
 /* Add the new addressbook to the user's list of visible
  * address books. */
 $prefs = explode("\n", $GLOBALS['prefs']->getValue('addressbooks'));
-if (array_search($share_id, $prefs) === false) {
+if (array_search($share->getId(), $prefs) === false) {
 $GLOBALS['prefs']->setValue('addressbooks', 
$GLOBALS['prefs']->getValue('addressbooks') . "\n" . $share_id);

commit llvm for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package llvm for openSUSE:Factory
checked in at Mon Aug 15 11:45:41 CEST 2011.




--- llvm/llvm.changes   2011-08-03 13:49:16.0 +0200
+++ /mounts/work_src_done/STABLE/llvm/llvm.changes  2011-08-12 
12:31:37.0 +0200
@@ -1,0 +2,9 @@
+Fri Aug 12 09:22:18 UTC 2011 - idon...@novell.com
+
+- Update to r137452
+  * Fix problems found by PVS-Studio
+  * More AVX fixes
+  * Many C++ fixes
+- Add assume-opensuse.patch to remove dependency on openSUSE-release
+
+---

calling whatdependson for head-i586


Old:

  llvm-2.9.99.svn20110803.tar.xz

New:

  assume-opensuse.patch
  llvm-2.9.99.svn20110812.tar.xz



Other differences:
--
++ llvm.spec ++
--- /var/tmp/diff_new_pack.DVrfp7/_old  2011-08-15 11:24:16.0 +0200
+++ /var/tmp/diff_new_pack.DVrfp7/_new  2011-08-15 11:24:16.0 +0200
@@ -17,7 +17,7 @@
 
 
 %define _sharedir%{_prefix}/share
-%define _revision136773
+%define _revision137452
 %define _release_version 3.0
 
 %if 0%{?suse_version} >= 1200
@@ -27,7 +27,7 @@
 %endif
 
 Name:   llvm
-Version:2.9.99.svn20110803
+Version:2.9.99.svn20110812
 Release:1
 License:NCSA
 Summary:Low Level Virtual Machine
@@ -39,6 +39,8 @@
 Patch1: set-revision.patch
 # PATCH-FIX-OPENSUSE set-revision.patch idoen...@suse.de -- Use correct lib 
prefix
 Patch2: clang-cmake-lib.patch
+# PATCH-FIX-OPENSUSE assume-opensuse.patch idoen...@suse.de -- Always enable 
openSUSE/SUSE features
+Patch3: assume-opensuse.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  autoconf
 BuildRequires:  automake
@@ -51,7 +53,6 @@
 BuildRequires:  gcc
 BuildRequires:  gcc-c++
 BuildRequires:  libtool
-BuildRequires:  openSUSE-release
 BuildRequires:  python-devel
 BuildRequires:  tcl-devel
 BuildRequires:  tk-devel
@@ -135,6 +136,7 @@
 %setup -q
 %patch1
 %patch2
+%patch3
 sed -i s,SVN_REVISION,\"%{_revision}\",g tools/clang/lib/Basic/Version.cpp
 
 %build
@@ -274,6 +276,7 @@
 %defattr(-,root,root)
 %doc *.TXT *.txt
 %{_bindir}/bugpoint
+%{_bindir}/diagtool
 %{_bindir}/llc
 %{_bindir}/lli
 %{_bindir}/macho-dump

++ assume-opensuse.patch ++
--- tools/clang/lib/Driver/ToolChains.cpp   2011-08-12 11:19:35.0 
+0200
+++ tools/clang/lib/Driver/ToolChains.cpp   2011-08-12 12:10:47.733446958 
+0200
@@ -1346,8 +1346,7 @@
 }
 
 static bool IsOpenSuse(enum LinuxDistro Distro) {
-  return Distro == OpenSuse11_3 || Distro == OpenSuse11_4 ||
- Distro == OpenSuse12_1;
+  return true;
 }
 
 static bool IsDebian(enum LinuxDistro Distro) {





Remember to have fun...

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



commit plplot for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package plplot for openSUSE:Factory
checked in at Mon Aug 15 11:24:06 CEST 2011.




--- plplot/plplot.changes   2011-08-01 21:54:58.0 +0200
+++ /mounts/work_src_done/STABLE/plplot/plplot.changes  2011-08-13 
13:26:23.0 +0200
@@ -1,0 +2,7 @@
+Mon Aug  8 23:56:24 UTC 2011 - badshah...@gmail.com
+
+- Enable ada bindings
+- Added plplot-gcc-ada46-libs.patch to enable compilation with
+  gcc-ada = 4.6
+
+---

calling whatdependson for head-i586


New:

  plplot-gcc-ada46-libs.patch



Other differences:
--
++ plplot.spec ++
--- /var/tmp/diff_new_pack.X78gDt/_old  2011-08-15 11:22:52.0 +0200
+++ /var/tmp/diff_new_pack.X78gDt/_new  2011-08-15 11:22:52.0 +0200
@@ -19,7 +19,7 @@
 
 Name:   plplot
 Version:5.9.8
-Release:1
+Release:3
 License:LGPLv2.1+
 Summary:Cross-platform software package for creating scientific plots
 Url:http://plplot.sourceforge.net/
@@ -30,6 +30,8 @@
 Patch0: plplot-multiarch.patch
 # PATCH-FIX-UPSTREAM plplot-strncat.patch badshah...@gmail.com -- Prevent 
overflow errors with strcat operations 
 Patch1: plplot-strncat.patch
+# PATCH-FIX-UPSTERAM plplot-gcc-ada46-libs.patch badshah...@gmail.com -- Allow 
searching for gcc-ada46 libraries
+Patch2: plplot-gcc-ada46-libs.patch
 BuildRequires:  cmake
 BuildRequires:  freefont
 BuildRequires:  fdupes
@@ -60,6 +62,7 @@
 BuildRequires:  pkgconfig(lua)
 BuildRequires:  pkgconfig(pygtk-2.0)
 BuildRequires:  python-devel
+BuildRequires:  ocaml
 
 %if 0%{?suse_version} > 1130
 BuildRequires:  wxWidgets-devel
@@ -108,6 +111,7 @@
 
 %package devel
 
+
 Summary:Files for development with PLplot
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
@@ -136,6 +140,7 @@
 
 %package doc
 
+
 Summary:Documentation for PLplot and its bindings
 Group:  Documentation/Other
 Requires:   %{name} = %{version}
@@ -156,8 +161,57 @@
 This package provides the documentation for PLplot and its associated
 modules.
 
+%package ada
+
+
+Summary:Shared libraries for PLplot's Ada bindings
+Group:  System/Libraries
+Requires:   %{name} = %{version}
+Requires(post): /sbin/ldconfig
+
+%description ada
+A variety of output file devices such as Postscript, png, jpeg, LaTeX
+and others, as well as interactive devices such as xwin, tk, xterm and
+Tektronics devices are supported. New devices can be easily added by
+writing a small number of device dependent routines.
+
+There are almost 2000 characters in the extended character set. This
+includes four different fonts, the Greek alphabet and a host of
+mathematical, musical, and other symbols. Some devices supports its own
+way of dealing with text, such as the Postscript and LaTeX drivers, or
+the png and jpeg drivers that uses the Freetype library.
+
+This package provides the shared libraries necessary for using PLplot
+with Ada.
+
+%package ada-devel
+
+
+Summary:Ada bindings for development with PLplot
+Group:  Development/Languages/Other
+Requires:   %{name} = %{version}
+Requires:   %{name}-devel = %{version}
+Requires:   gcc-ada
+Requires:   %{name}-ada = %{version}
+Requires:   pkgconfig
+
+%description ada-devel
+A variety of output file devices such as Postscript, png, jpeg, LaTeX
+and others, as well as interactive devices such as xwin, tk, xterm and
+Tektronics devices are supported. New devices can be easily added by
+writing a small number of device dependent routines.
+
+There are almost 2000 characters in the extended character set. This
+includes four different fonts, the Greek alphabet and a host of
+mathematical, musical, and other symbols. Some devices supports its own
+way of dealing with text, such as the Postscript and LaTeX drivers, or
+the png and jpeg drivers that uses the Freetype library.
+
+This package provides the files necessary for using PLplot in Ada.
+
 %package fortran
 
+
 Summary:Shared libraries for PLplot's Fortran bindings
 Group:  System/Libraries
 Requires:   %{name} = %{version}
@@ -180,6 +234,7 @@
 
 %package fortran-devel
 
+
 Summary:Fortran bindings for development with PLplot
 Group:  Development/Languages/Fortran
 Requires:   %{name} = %{version}
@@ -204,6 +259,7 @@
 
 %package java
 
+
 Summary:PLplot functions for scientific plotting with Java
 Requires:   %{name} = %{version}
 Requires:   java
@@ -225,6 +281,7 @@
 
 %package lua
 
+
 Summary:PLplot functions for scientific plotting with Lua
 Group:  Development/Libraries/Other
 Requires:   %{name} = %{version}
@@ -248,6 +305,7 @@
 
 %package python-qt
 
+
 Summary:PLplot functions for scient

commit qwt for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package qwt for openSUSE:Factory
checked in at Mon Aug 15 11:20:02 CEST 2011.




--- qwt/qwt.changes 2011-08-04 08:36:59.0 +0200
+++ /mounts/work_src_done/STABLE/qwt/qwt.changes2011-08-12 
09:52:35.0 +0200
@@ -3,0 +4,11 @@
+- Changed include dir from qwt to qwt5.
+  This will make it more compatible with qwt6, 
+  which is out but not well-supported yet
+- Removed build flags that are enabled by default.
+- Added building of svg item support.
+  This is needed by the bindings packages
+- Cleaned up spec file formatting.
+
+---
+Thu Aug  4 08:33:11 UTC 2011 - toddrme2...@gmail.com
+

calling whatdependson for head-i586




Other differences:
--
++ qwt.spec ++
--- /var/tmp/diff_new_pack.0dSjrI/_old  2011-08-15 11:18:46.0 +0200
+++ /var/tmp/diff_new_pack.0dSjrI/_new  2011-08-15 11:18:46.0 +0200
@@ -19,18 +19,22 @@
 
 
 Name:   qwt
-Summary:Qt Widgets for Technical Applications
 Version:5.2.2
-Release:1
+Release:3
 License:Qwt License 1.0
-Group:  Development/Libraries/C and C++
+Summary:Qt Widgets for Technical Applications
 Url:http://qwt.sourceforge.net/
+Group:  Development/Libraries/C and C++
 Source: %{name}-%{version}.tar.bz2
 Source2:%{name}-rpmlintrc
 Source3:%{name}-%{version}.pdf 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
-BuildRequires:  fdupes freetype2-devel gcc-c++ libpng-devel qt-devel
+BuildRequires:  fdupes
+BuildRequires:  freetype2-devel
+BuildRequires:  gcc-c++
+BuildRequires:  libpng-devel
+BuildRequires:  qt-devel
 
 Requires:   libqwt5 = %{version}
 
@@ -41,14 +45,9 @@
 wheels and knobs to control or display values, arrays, or ranges of type
 double.
 
-Authors:
-
-  Uwe Rathmann
-  Josef Wilgen ( <= Qwt 0.2 )
-
-
 %package -n libqwt5
 
+
 Summary:Shared library for Qt Widgets
 Group:  Development/Libraries/C and C++
 Provides:   %{name} = %{version}
@@ -58,53 +57,41 @@
 This package contains the shared library to run Technical Applications
 developed with/for Qwt.
 
-Authors:
-
-  Uwe Rathmann
-  Josef Wilgen ( <= Qwt 0.2 )
-
-
 %package devel
 
+
 Summary:Include headers and Qt Designer plugin for Qwt
 Group:  Development/Libraries/C and C++
-Obsoletes:  libqwt5-devel < %{version}
 Requires:   %{name} = %{version}
-Requires:   freetype2-devel gcc-c++ libpng-devel qt-devel
+Requires:   freetype2-devel
+Requires:   gcc-c++
+Requires:   libpng-devel
+Requires:   qt-devel
 Recommends: %{name}-devel-doc
 Recommends: %{name}-devel-doc-pdf
 Recommends: %{name}-examples
+Obsoletes:  libqwt5-devel < %{version}
 Provides:   libqwt5-devel = %{version}
 
 %description devel
 This package contains the header files of Qwt and its Qt designer plugin
 in order to create Qt applications using the Qwt widgets.
 
-
-Authors:
-
-  Uwe Rathmann
-  Josef Wilgen ( <= Qwt 0.2 )
-
 %package examples
 
+
 Summary:Example programs using Qwt
 Group:  Development/Libraries/C and C++
-Obsoletes:  libqwt5-examples < %{version}
 Requires:   %{name}-devel = %{version}
+Obsoletes:  libqwt5-examples < %{version}
 Provides:   libqwt5-examples = %{version}
 
 %description examples
 This package contains example programs demonstrating the Qwt widgets.
 
-
-Authors:
-
-  Uwe Rathmann
-  Josef Wilgen ( <= Qwt 0.2 )
-
 %package designer
 
+
 Summary:Plugin for the Qt Interface designer
 Group:  Development/Tools/IDE
 Requires:   %{name}-devel = %{version}
@@ -114,76 +101,60 @@
 The %{name}-designer package contains the plugin for the Qt User Interface
 designer tool.
 
-
-Authors:
-
-  Uwe Rathmann
-  Josef Wilgen ( <= Qwt 0.2 )
-
 %package devel-doc
 
+
 Summary:Development documentation for Qwt
 Group:  Development/Libraries/C and C++
-Obsoletes:  libqwt5-devel-doc < %{version}
 Requires:   %{name}-devel = %{version}
-Provides:   libqwt5-devel-doc = %{version}-%{release}
+Obsoletes:  libqwt5-devel-doc < %{version}
+Provides:   libqwt5-devel-doc = %{version}
 
 %description devel-doc
 This package contains the development documentation of the Qwt widgets
 as is it created by doxygen.
 
-
-Authors:
-
-  Uwe Rathmann
-  Josef Wilgen ( <= Qwt 0.2 )
-
 %package devel-doc-pdf
 
+
 Summary:Development documentation for Qwt in pdf format
 Group:  Development/Libraries/C and C++
-Obsoletes:  libqwt5-devel-doc-pdf < %{version}
 Requires:   %{name}-devel = %{version}
+Obsoletes:  libqwt5-devel-doc-pdf < %{version}
 Provides:   libqwt5-devel-doc-pdf = %{version}
 
 %description devel-doc-pdf
 This pack

commit scribus for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package scribus for openSUSE:Factory
checked in at Mon Aug 15 11:18:36 CEST 2011.




--- KDE/scribus/scribus.changes 2011-06-18 21:35:54.0 +0200
+++ /mounts/work_src_done/STABLE/scribus/scribus.changes2011-08-13 
11:45:36.0 +0200
@@ -1,0 +2,7 @@
+Wed Aug 10 09:33:53 UTC 2011 - toddrme2...@gmail.com
+
+-Fixed language file identification
+-Removed redundant buildrequires
+-Cleaned up spec file formatting
+
+---

calling whatdependson for head-i586




Other differences:
--
++ scribus.spec ++
--- /var/tmp/diff_new_pack.oJZ0ON/_old  2011-08-15 11:17:07.0 +0200
+++ /var/tmp/diff_new_pack.oJZ0ON/_new  2011-08-15 11:17:07.0 +0200
@@ -20,7 +20,7 @@
 
 Name:   scribus
 Version:1.4.0.rc5
-Release:1
+Release:3
 License:GPL
 Summary:Open Source Page Layout and Desktop Publishing (DTP)
 Url:http://www.scribus.net/
@@ -30,20 +30,17 @@
 
 BuildRequires:  aspell-devel
 BuildRequires:  boost-devel
-BuildRequires:  cairo-devel
 BuildRequires:  cmake >= 2.6.0
 BuildRequires:  cups-devel
 BuildRequires:  fontconfig-devel
 BuildRequires:  libQtWebKit-devel
 BuildRequires:  libpodofo-devel
 BuildRequires:  libqt4-devel >= 4.6.0
-BuildRequires:  libtiff-devel
-BuildRequires:  libxml2-devel
-BuildRequires:  openssl-devel
-BuildRequires:  pkgconfig
 BuildRequires:  python-devel
 BuildRequires:  shared-mime-info
 BuildRequires:  update-desktop-files
+BuildRequires:  pkgconfig(cairo)
+BuildRequires:  pkgconfig(libxml-2.0)
 
 %if 0%{?suse_version} 
 Requires:   ghostscript-library
@@ -80,8 +77,6 @@
 This package provides the development headers for %{name}. It is most useful 
 for developing plugins for %{name}.
 
-%define prefix   %_prefix
-
 %prep
 
 %setup -q
@@ -94,10 +89,11 @@
 mkdir build
 cd build
 cmake \
-  -DCMAKE_INSTALL_PREFIX=%prefix \
+  -DCMAKE_INSTALL_PREFIX=%{_prefix} \
   %if "%{_lib}" == "lib64"
   -DWANT_LIB64=1 \
   %endif
+  -DDOCDIR:PATH=%{_docdir} \
   -DWANT_CAIRO=1 \
   -DCMAKE_BUILD_WITH_INSTALL_RPATH=FALSE \
   -DCMAKE_SKIP_RPATH=TRUE \
@@ -108,16 +104,13 @@
 %install
 
 cd build
- make install \
- DESTDIR=%{buildroot}
+%make_install
 
 mkdir -p %{buildroot}%{_datadir}/doc/packages/scribus
 %if 0%{?suse_version} 
 %suse_update_desktop_file -i 
%{buildroot}%{_datadir}/mimelnk/application/vnd.scribus.desktop Office 
WordProcessor
 %endif
 
-#update the mime database
-
 %post
 if [ -f /usr/bin/update-mime-database ]; then
   /usr/bin/update-mime-database /usr/share/mime > /dev/null
@@ -133,18 +126,17 @@
 
 %files
 %defattr(-, root, root)
-%doc %{_datadir}/doc/packages/scribus
-
+%{_docdir}/scribus
 %{_bindir}/scribus
 %{_mandir}/man?/*.*
 %{_mandir}/*/man?/*.*
 %{_libdir}/scribus
 %{_datadir}/mime/packages/scribus.xml
 %{_datadir}/scribus
-%{_datadir}/doc/scribus
+%doc %{_datadir}/doc/scribus
 # This should be owned by filesystem or man, but there are only scribus files:
 %lang(pl) %dir %{_mandir}/pl
-%{_mandir}/pl/man1 
+%lang(pl) %{_mandir}/pl/man1
 %dir %{_datadir}/mimelnk
 %dir %{_datadir}/mimelnk/application
 %{_datadir}/mimelnk/application/vnd.scribus.desktop






Remember to have fun...

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



commit timidity for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package timidity for openSUSE:Factory
checked in at Mon Aug 15 11:16:59 CEST 2011.




--- timidity/timidity.changes   2011-01-19 21:02:59.0 +0100
+++ /mounts/work_src_done/STABLE/timidity/timidity.changes  2011-08-12 
15:53:08.0 +0200
@@ -1,0 +2,5 @@
+Fri Aug 12 15:43:27 CEST 2011 - ti...@suse.de
+
+- Fix inifinte loop with non-existing soundfont files
+
+---

calling whatdependson for head-i586


New:

  timidity-fix-sndfont-list.diff



Other differences:
--
++ timidity.spec ++
--- /var/tmp/diff_new_pack.v4omU9/_old  2011-08-15 11:13:58.0 +0200
+++ /var/tmp/diff_new_pack.v4omU9/_new  2011-08-15 11:13:58.0 +0200
@@ -26,7 +26,7 @@
 Name:   timidity
 Summary:Software Synthesizer and MIDI Player
 Version:2.13.2
-Release:257
+Release:263
 Group:  Productivity/Multimedia/Sound/Midi
 AutoReqProv:on
 License:GPLv2+
@@ -75,6 +75,7 @@
 Patch16:timidity-codecleanup.patch
 Patch17:timidity-no_date.patch
 Patch18:timidity-add_fluid_cfgs.patch
+Patch19:timidity-fix-sndfont-list.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -109,6 +110,7 @@
 %patch16
 %patch17
 %patch18
+%patch19 -p1
 # save the original INSTALL file
 mv INSTALL INSTALL-orig
 for f in ./utils/bitset.c ./utils/bitset.h ./utils/nkflib.c; do

++ timidity-fix-sndfont-list.diff ++
---
 timidity/sndfont.c |   12 +---
 1 file changed, 9 insertions(+), 3 deletions(-)

--- a/timidity/sndfont.c
+++ b/timidity/sndfont.c
@@ -226,12 +226,18 @@
 
 static SFInsts *new_soundfont(char *sf_file)
 {
-SFInsts *sf;
+SFInsts *sf, *prev;
 
 sf_file = FILENAME_NORMALIZE(sf_file);
-for(sf = sfrecs; sf != NULL; sf = sf->next)
-   if(sf->fname == NULL)
+for(prev = NULL, sf = sfrecs; sf != NULL; prev = sf, sf = sf->next)
+   if(sf->fname == NULL) {
+   if (prev)
+   prev->next = sf->next;
+   else
+   sfrecs = sf->next;
+   sf->next = NULL;
break;
+   }
 if(sf == NULL)
sf = (SFInsts *)safe_malloc(sizeof(SFInsts));
 memset(sf, 0, sizeof(SFInsts));






Remember to have fun...

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



commit viewvc for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package viewvc for openSUSE:Factory
checked in at Mon Aug 15 11:13:48 CEST 2011.




--- viewvc/viewvc.changes   2011-05-18 07:11:54.0 +0200
+++ /mounts/work_src_done/STABLE/viewvc/viewvc.changes  2011-08-12 
22:30:18.0 +0200
@@ -1,0 +2,5 @@
+Fri Aug 12 22:29:56 CEST 2011 - dmuel...@suse.de
+
+- add supplements for apache2/subversion-server
+
+---
@@ -4 +9 @@
-- update to 1.1.11:
+- update to 1.1.11 (bnc#694785):

calling whatdependson for head-i586




Other differences:
--
++ viewvc.spec ++
--- /var/tmp/diff_new_pack.OA1tNb/_old  2011-08-15 11:10:10.0 +0200
+++ /var/tmp/diff_new_pack.OA1tNb/_new  2011-08-15 11:10:10.0 +0200
@@ -21,7 +21,7 @@
 Name:   viewvc
 BuildRequires:  apache2-devel python-devel
 Version:1.1.11
-Release:1
+Release:2
 #
 %defineapxs/usr/sbin/apxs2
 %defineapache_libexecdir   %(%{apxs} -q LIBEXECDIR)
@@ -35,6 +35,7 @@
 Provides:   viewcvs = %{version}
 Obsoletes:  subversion-viewcvs < %{version}
 Obsoletes:  viewcvs < %{version}
+Supplements:packageand(subversion-server:apache2)
 Group:  Development/Tools/Version Control
 Url:http://www.viewvc.org/
 Summary:Browse a Subversion Repository with a Web Browser






Remember to have fun...

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



commit yafray for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package yafray for openSUSE:Factory
checked in at Mon Aug 15 11:09:58 CEST 2011.




--- yafray/yafray.changes   2009-12-19 20:27:38.0 +0100
+++ /mounts/work_src_done/STABLE/yafray/yafray.changes  2011-08-15 
02:04:30.0 +0200
@@ -1,0 +2,5 @@
+Mon Aug 15 02:04:16 CEST 2011 - r...@suse.de
+
+- fix build for platform == linux3 
+
+---

calling whatdependson for head-i586


New:

  yafray-0.0.9-linux3.patch



Other differences:
--
++ yafray.spec ++
--- /var/tmp/diff_new_pack.ZaMFam/_old  2011-08-15 10:57:37.0 +0200
+++ /var/tmp/diff_new_pack.ZaMFam/_new  2011-08-15 10:57:37.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package yafray (Version 0.0.9)
+# spec file for package yafray
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 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
@@ -24,7 +24,7 @@
 Group:  Productivity/Graphics/Visualization/Raytracers
 AutoReqProv:on
 Version:0.0.9
-Release:88
+Release:99
 Source: %{name}-%{version}.tar.bz2
 Patch0: %{name}-%{version}-gcc4-64bit.patch
 Patch1: %{name}-%{version}-gcc-warning.patch
@@ -33,6 +33,7 @@
 Patch32:%{name}-%{version}-linux-settings.patch
 Patch64:%{name}-%{version}-linux-settings64.patch
 Patch65:yafray-0.0.9-const-char.patch
+Patch66:yafray-0.0.9-linux3.patch
 Url:http://www.yafray.org/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:YafRay: Yet Another Free RAYtracer
@@ -53,6 +54,7 @@
 %patch32
 fi
 %patch65
+%patch66
 
 %build
 scons prefix=%{_prefix} %{?jobs:--jobs=%jobs}

++ yafray-0.0.9-linux3.patch ++
--- SConstruct
+++ SConstruct
@@ -8,6 +8,7 @@
 ficheros = {
 'darwin' : 'darwin-settings',
 'linux2' : 'linux-settings',
+'linux3' : 'linux-settings',
 'win32' : 'win32-settings',
 'sunos5' : 'sunos5-settings'
 }





Remember to have fun...

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



commit yast2-product-creator for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package yast2-product-creator for 
openSUSE:Factory
checked in at Mon Aug 15 10:57:29 CEST 2011.




--- yast2-product-creator/yast2-product-creator.changes 2011-08-05 
16:15:31.0 +0200
+++ 
/mounts/work_src_done/STABLE/yast2-product-creator/yast2-product-creator.changes
2011-08-12 15:33:55.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 15:24:09 CEST 2011 - jsuch...@suse.cz
+
+- ignore bootinclude packages during the check what is available
+- 2.21.7 
+
+---

calling whatdependson for head-i586


Old:

  yast2-product-creator-2.21.6.tar.bz2

New:

  yast2-product-creator-2.21.7.tar.bz2



Other differences:
--
++ yast2-product-creator.spec ++
--- /var/tmp/diff_new_pack.A9C9GJ/_old  2011-08-15 10:49:11.0 +0200
+++ /var/tmp/diff_new_pack.A9C9GJ/_new  2011-08-15 10:49:11.0 +0200
@@ -19,11 +19,11 @@
 
 
 Name:   yast2-product-creator
-Version:2.21.6
+Version:2.21.7
 Release:1
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-product-creator-2.21.6.tar.bz2
+Source0:yast2-product-creator-2.21.7.tar.bz2
 
 Prefix: /usr
 
@@ -62,7 +62,7 @@
 XEN images etc.), based on existing installation sources.
 
 %prep
-%setup -n yast2-product-creator-2.21.6
+%setup -n yast2-product-creator-2.21.7
 
 %build
 %{prefix}/bin/y2tool y2autoconf

++ yast2-product-creator-2.21.6.tar.bz2 -> 
yast2-product-creator-2.21.7.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-product-creator-2.21.6/VERSION 
new/yast2-product-creator-2.21.7/VERSION
--- old/yast2-product-creator-2.21.6/VERSION2011-08-05 16:13:59.0 
+0200
+++ new/yast2-product-creator-2.21.7/VERSION2011-08-12 15:26:07.0 
+0200
@@ -1 +1 @@
-2.21.6
+2.21.7
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-product-creator-2.21.6/src/kiwi_dialogs.ycp 
new/yast2-product-creator-2.21.7/src/kiwi_dialogs.ycp
--- old/yast2-product-creator-2.21.6/src/kiwi_dialogs.ycp   2011-08-05 
16:13:20.0 +0200
+++ new/yast2-product-creator-2.21.7/src/kiwi_dialogs.ycp   2011-08-12 
15:23:44.0 +0200
@@ -4,7 +4,7 @@
  * Summary:Dialogs for kiwi configuration
  * Authors:Jiri Suchomel 
  *
- * $Id: kiwi_dialogs.ycp 64094 2011-05-24 08:34:00Z jsuchome $
+ * $Id: kiwi_dialogs.ycp 65252 2011-08-05 14:15:04Z jsuchome $
  */
 {
   textdomain "product-creator";
@@ -479,7 +479,6 @@
   define void InitSize (string id) {
 
 map size_map= get_current_size_map (KiwiConfig, kiwi_task);
-
 integer siz= tointeger (size_map[Kiwi::content_key]:"0");
 if (siz == nil) siz= 0;
 UI::ChangeWidget (`id ("size"), `Value, siz);
@@ -1125,9 +1124,16 @@
{
Popup::ShowFeedback (_("Checking packages availability..."), 
_("Please wait..."));
list n_a= [];
-   foreach (map p, pmap["package"]:[], {
-   if (p["name"]:"" != "" && !Pkg::IsAvailable (p["name"]:""))
+
+   list bi_packages= [];
+   map original_pmap   = pmap;
+   pmap["package"] = filter (map p, pmap["package"]:[], {
+   if (p["bootinclude"]:"" == "true")
+   bi_packages = add (bi_packages, p);
+   // do not check bootinclude packages
+   else if (p["name"]:"" != "" && !Pkg::IsAvailable (p["name"]:""))
n_a = add (n_a, p["name"]:"");
+   return p["bootinclude"]:"" != "true";
});
Popup::ClearFeedback ();
if (size (n_a) > 0)
@@ -1162,16 +1168,17 @@
UI::CloseDialog ();
if (r == `remove)
{
-   KiwiConfig["packages",index,"package"]  = filter (map 
p, pmap["package"]:[], {
+   KiwiConfig["packages",index,"package"]  = filter (map 
p, original_pmap["package"]:[], {
return !contains (n_a, p["name"]:"");
});
ret = `removed;
}
if (r == `selection)
{
-   map sw_contents = modifyPackageSelection 
(KiwiConfig["packages",index]:$[]);
+   map sw_contents = modifyPackageSelection (pmap);
if (sw_contents != nil)
{
+   sw_contents["package"]  = union 
(sw_contents["package"]:[], bi_packages);
KiwiConfig["packages",index]= sw_contents;
ret = `selection;
}






Remember to have fun...

-- 
To unsubscrib

commit mxml for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package mxml for openSUSE:Factory
checked in at Mon Aug 15 10:49:04 CEST 2011.




--- mxml/mxml.changes   2011-06-06 19:13:22.0 +0200
+++ /mounts/work_src_done/STABLE/mxml/mxml.changes  2011-08-12 
21:02:54.0 +0200
@@ -1,0 +2,5 @@
+Fri Aug 12 19:05:21 UTC 2011 - andrea.turr...@gmail.com
+
+- fixed typos in mxml.spec
+
+---

calling whatdependson for head-i586




Other differences:
--
++ mxml.spec ++
--- /var/tmp/diff_new_pack.YyRCvV/_old  2011-08-15 10:41:23.0 +0200
+++ /var/tmp/diff_new_pack.YyRCvV/_new  2011-08-15 10:41:23.0 +0200
@@ -23,7 +23,7 @@
 License:LGPL v2.1 or later
 Group:  Development/Libraries/Other
 Version:2.6
-Release:1
+Release:25
 Summary:Small XML Parsing Library
 Source: %{name}-%{version}.tar.bz2
 Patch:  mxml-2.3-nobinstrip.patch
@@ -49,14 +49,14 @@
 License:LGPL v2.1 or later
 Group:  Development/Libraries/Other
 #
-Summary:Shared libary for mxml
+Summary:Shared library for mxml
 
 %description -n libmxml1
 Mini-XML is a small XML parsing library that you can use to read XML
 and XML-like data files in your application without requiring large
 nonstandard libraries.
 
-This package holds the shared libary for mxml.
+This package holds the shared library for mxml.
 
 
 






Remember to have fun...

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



commit rpmlint for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package rpmlint for openSUSE:Factory
checked in at Mon Aug 15 10:41:15 CEST 2011.




--- rpmlint/rpmlint.changes 2011-08-05 14:16:53.0 +0200
+++ /mounts/work_src_done/STABLE/rpmlint/rpmlint.changes2011-08-12 
17:57:51.0 +0200
@@ -1,0 +2,10 @@
+Fri Aug 12 17:57:35 CEST 2011 - dmuel...@suse.de
+
+- add jenkins/jenkins to valid group/user list
+
+---
+Sat Aug  6 19:01:00 UTC 2011 - jeng...@medozas.de
+
+- Spelling fixes
+
+---

calling whatdependson for head-i586




Other differences:
--
++ rpmlint.spec ++
--- /var/tmp/diff_new_pack.XdcuTb/_old  2011-08-15 10:40:56.0 +0200
+++ /var/tmp/diff_new_pack.XdcuTb/_new  2011-08-15 10:40:56.0 +0200
@@ -23,7 +23,7 @@
 BuildRequires:  rpm-python xz
 Summary:Rpm correctness checker
 Version:1.2
-Release:21
+Release:23
 Source0:http://rpmlint.zarb.org/download/rpmlint-%{version}.tar.xz
 Source1:config
 Source1001: config.in

++ LibraryPolicyCheck.py ++
--- /var/tmp/diff_new_pack.XdcuTb/_old  2011-08-15 10:40:56.0 +0200
+++ /var/tmp/diff_new_pack.XdcuTb/_new  2011-08-15 10:40:56.0 +0200
@@ -454,12 +454,12 @@
 of legacy exceptions. Please do not rename the package until SONAME changes, 
but if you have
 to rename it for another reason, make sure you name it correctly.""",
 'shlib-policy-excessive-dependency',
-"""Your package starts with 'lib' as part of it's name, but also contains 
binaries
+"""Your package starts with 'lib' as part of its name, but also contains 
binaries
 that have more dependencies than those that already required by the libraries.
 Those binaries should probably not be part of the library package, but split 
into
 a seperate one to reduce the additional dependencies for other users of this 
library.""",
 'shlib-policy-missing-lib',
-"""Your package starts with 'lib' as part of it's name, but does not provide
+"""Your package starts with 'lib' as part of its name, but does not provide
 any libraries. It must not be called a lib-package then. Give it a more
 sensible name.""",
 'shlib-fixed-dependency',

++ config ++
--- /var/tmp/diff_new_pack.XdcuTb/_old  2011-08-15 10:40:56.0 +0200
+++ /var/tmp/diff_new_pack.XdcuTb/_new  2011-08-15 10:40:56.0 +0200
@@ -101,6 +101,7 @@
 'ifdrwww',
 'intermezzo',
 'jboss',
+'jenkins',
 'jetty5',
 'jonas',
 'kmem',
@@ -222,6 +223,7 @@
 'jabber',
 'jboss',
 'jetty5',
+'jenkins',
 'jonas',
 'ldap',
 'lightdm',







Remember to have fun...

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



commit libyajl for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package libyajl for openSUSE:Factory
checked in at Mon Aug 15 10:40:47 CEST 2011.




--- libyajl/libyajl.changes 2011-04-14 00:13:54.0 +0200
+++ /mounts/work_src_done/STABLE/libyajl/libyajl.changes2011-08-12 
13:11:09.0 +0200
@@ -1,0 +2,59 @@
+Fri Aug 12 11:09:08 UTC 2011 - mrueck...@suse.de
+
+- update to 2.0.1
+  - lth generator flag to allow client to specify they want escaped
+solidi '/'.  issue #28
+  - lth crash fix when yajl_parse() is never called. issue #27
+- additional changes from 2.0.0
+  - lth YAJL is now ISC licensed:
+http://en.wikipedia.org/wiki/ISC_license
+  - lth 20-35% (osx and linux respectively) parsing performance
+improvement attained by tweaking string scanning (idea:
+@michaelrhanson).
+  - Florian Forster & lth - yajl_tree interface introduced as a
+higher level interface to the parser (eats JSON, poops a memory
+representation)
+  - lth require a C99 compiler
+  - lth integers are now represented with long long (64bit+) on all
+platforms.
+  - lth size_t now used throughout to represent buffer lengths, so
+you can safely manage buffers greater than 4GB.
+  - gno semantic improvements to yajl's API regarding partial value
+parsing and trailing garbage
+  - lth new configuration mechanism for yajl, see yajl_config() and
+yajl_gen_config()
+  - gno more allocation checking in more places
+  - gno remove usage of strtol, replace with custom implementation
+that cares not about your locale.
+  - lth yajl_parse_complete renamed to yajl_complete_parse.
+  - lth add a switch to validate utf8 strings as they are
+generated.
+  - lth tests are a lot quieter in their output.
+  - lth addition of a little in tree performance benchmark,
+`perftest` in perf/perftest.c
+- additional changes from 1.0.12
+  - Conrad Irwin - Parse null bytes correctly
+  - Mirek Rusin - fix LLVM warnings
+  - gno - Don't generate numbers for keys. closes #13
+  - lth - various win32 fixes, including build documentation
+improvements
+  - John Stamp - Don't export private symbols.
+  - John Stamp - Install yajl_version.h, not the template.
+  - John Stamp - Don't use -fPIC for static lib.  Cmake will
+automatically add it for the shared.
+  - lth 0 fix paths embedded in dylib upon installation on osx.
+closes #11
+- refreshed optflags patch
+
+---
+Wed Jun  1 22:33:07 MDT 2011 - jfeh...@novell.com
+
+- Add man pages for json_{reformat,verify}
+
+---
+Wed Apr 13 10:43:49 MDT 2011 - jfeh...@novell.com
+
+- Add filters to rpmlintrc
+- spec file: Document githash usage in tarbal name
+
+---

calling whatdependson for head-i586


Old:

  lloyd-yajl-1.0.11-0-gf4baae0.tar.bz2

New:

  json_reformat.1
  json_verify.1
  lloyd-yajl-2.0.1-0-gf4b2b1a.tar.gz



Other differences:
--
++ libyajl.spec ++
--- /var/tmp/diff_new_pack.TPuYvQ/_old  2011-08-15 10:38:30.0 +0200
+++ /var/tmp/diff_new_pack.TPuYvQ/_new  2011-08-15 10:38:30.0 +0200
@@ -19,8 +19,8 @@
 
 
 Name:   libyajl
-Version:1.0.11
-Release:7
+Version:2.0.1
+Release:1
 #
 # NB, upstream does not provide pre-built tar.gz downloads. Instead
 # they make you use the 'on the fly' generated tar.gz from GITHub's
@@ -40,19 +40,21 @@
 #
 # So for new versions, update 'githash' to match the hash of the
 # GIT tag associated with updated 'Version:' field just above
-%global githash f4baae0
+%global githash f4b2b1a
 
-%define soname 1
+%define soname 2
 Summary:Yet Another JSON Library 
 # http://download.github.com/lloyd-yajl-%{version}-0-g%{githash}.tar.gz
-Source: lloyd-yajl-%{version}-0-g%{githash}.tar.bz2
+Source: lloyd-yajl-%{version}-0-g%{githash}.tar.gz
 Source1:baselibs.conf
+Source2:json_reformat.1
+Source3:json_verify.1
 Patch1: libyajl-optflags.patch
 Patch2: libyajl-lib_suffix.patch
 Source99:   %{name}-rpmlintrc
 Url:http://lloyd.github.com/yajl/
 Group:  System/Libraries
-License:BSD3c
+License:ISC
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  bison flex
 BuildRequires:  cmake
@@ -103,7 +105,6 @@
 
 %package -n yajl
 
-
 Summary:Yet Another JSON Library Tools
 Group:  Productivity/Text/Utilities
 Requires:   %{name}%{soname} = %{version}
@@ -136,13 +137,15 @@
 -DLIB_SUFFIX="$LIBSUFFIX" \
 ..
 
-%__make %{?jobs:-j%{jobs}}
+%__make %{?_smp_flags}
 popd build
 
 %install
 pushd build
 %makeinstall
 popd build
+install -d -m 0755 $RPM_BUILD_ROOT%{_mandir}/man1
+install -m644 %SOURCE2 %SOURCE3 $RPM_BUILD_ROOT/%{_mandir

commit seed for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package seed for openSUSE:Factory
checked in at Mon Aug 15 10:37:43 CEST 2011.




--- GNOME/seed/seed.changes 2011-08-08 15:14:48.0 +0200
+++ /mounts/work_src_done/STABLE/seed/seed.changes  2011-08-12 
20:51:32.0 +0200
@@ -1,0 +2,7 @@
+Fri Aug 12 18:50:07 UTC 2011 - dims...@opensuse.org
+
+- Extend seed-javascriptcore.patch to fix more crashers: The patch
+  is now based on the commits91ab32, db641c and 937d32. This
+  version of the patch also fixes the seed2 build.
+
+---
seed2.changes: same change

calling whatdependson for head-i586




Other differences:
--
++ seed.spec ++
--- /var/tmp/diff_new_pack.ZsXaF4/_old  2011-08-15 10:14:55.0 +0200
+++ /var/tmp/diff_new_pack.ZsXaF4/_new  2011-08-15 10:14:55.0 +0200
@@ -34,7 +34,7 @@
 License:LGPLv3+ ; GPLv2+
 Group:  Development/Libraries/GNOME
 Version:3.1.1
-Release:3
+Release:5
 Summary:JavaScript bindings based on gobject-introspection and WebKit
 Url:http://live.gnome.org/Seed
 Source: %{_name}-%{version}.tar.bz2
@@ -86,7 +86,6 @@
 
 %package -n libseed%{?_pkgsoname_suffix}0
 
-
 License:LGPLv3+
 Summary:JavaScript bindings based on gobject-introspection and WebKit
 Group:  Development/Libraries/GNOME
@@ -105,7 +104,6 @@
 
 %package -n libseed%{?_gtk_suffix}-devel
 
-
 License:LGPLv3+
 Summary:JavaScript bindings based on gobject-introspection and WebKit
 Group:  Development/Libraries/GNOME

++ seed2.spec ++
--- /var/tmp/diff_new_pack.ZsXaF4/_old  2011-08-15 10:14:55.0 +0200
+++ /var/tmp/diff_new_pack.ZsXaF4/_new  2011-08-15 10:14:55.0 +0200
@@ -34,7 +34,7 @@
 License:LGPLv3+ ; GPLv2+
 Group:  Development/Libraries/GNOME
 Version:3.1.1
-Release:2
+Release:3
 Summary:JavaScript bindings based on gobject-introspection and WebKit
 Url:http://live.gnome.org/Seed
 Source: %{_name}-%{version}.tar.bz2
@@ -87,7 +87,6 @@
 
 %package -n libseed%{?_pkgsoname_suffix}0
 
-
 License:LGPLv3+
 Summary:JavaScript bindings based on gobject-introspection and WebKit
 Group:  Development/Libraries/GNOME
@@ -106,7 +105,6 @@
 
 %package -n libseed%{?_gtk_suffix}-devel
 
-
 License:LGPLv3+
 Summary:JavaScript bindings based on gobject-introspection and WebKit
 Group:  Development/Libraries/GNOME

++ seed-javascriptcore.patch ++
--- /var/tmp/diff_new_pack.ZsXaF4/_old  2011-08-15 10:14:55.0 +0200
+++ /var/tmp/diff_new_pack.ZsXaF4/_new  2011-08-15 10:14:55.0 +0200
@@ -1,23 +1,39 @@
-Index: seed-3.1.1/configure.ac
-===
 seed-3.1.1.orig/configure.ac
-+++ seed-3.1.1/configure.ac
-@@ -87,6 +87,8 @@ AS_CASE([$with_webkit],
+diff --git a/configure.ac b/configure.ac
+index 3f49878..e590f02 100644
+--- a/configure.ac
 b/configure.ac
+@@ -86,16 +86,18 @@ AS_CASE([$with_webkit],
+   [3.0], [
WEBKIT_PC=webkitgtk-3.0
SEED_GTK_VERSION=-gtk3
-   AC_SUBST(SEED_GTK_VERSION)
+-  AC_SUBST(SEED_GTK_VERSION)
 +  AC_CHECK_LIB(webkitgtk-3.0, JSContextGroupCreate,,
-+  AC_CHECK_LIB(javascriptcoregtk-3.0, 
JSContextGroupCreate,WEBKIT_PC=javascriptcoregtk-3.0))
++  AC_CHECK_LIB(javascriptcoregtk-3.0, 
JSContextGroupCreate,WEBKIT_PC=javascriptcoregtk-3.0)) 
],
[1.0], [
save_LIBS=$LIBSma
-
-From db641cd31d82aff79a16080f65f7c7562aaadde6 Mon Sep 17 00:00:00 2001
-From: Alan Knowles 
-Date: Mon, 08 Aug 2011 10:05:48 +
-Subject: more fixes for  #653077 - xml build without webkit, also includes fix 
for  #652771 - removing paramspec reference
-

+   LIBS=`pkg-config --libs webkit-1.0`
++  WEBKIT_PC=webkitgtk-1.0
+   AC_CHECK_LIB(webkitgtk-1.0, JSContextGroupCreate,,
+-  AC_CHECK_LIB(webkit-1.0, 
JSContextGroupCreate,,
+-   
AC_MSG_ERROR([The installed version of WebKit is too old. Seed requires WebKit 
SVN revision 35442 or greater.])))
++  AC_CHECK_LIB(javascriptcoregtk-1.0, 
JSContextGroupCreate,WEBKIT_PC=javascriptcoregtk-1.0, 
++  AC_CHECK_LIB(webkit-1.0, 
JSContextGroupCreate,WEBKIT_PC=webkit-1.0,
++  AC_MSG_ERROR([The installed version of 
WebKit is too old. Seed requires WebKit SVN revision 35442 or greater.]
+   LIBS=$save_LIBS
+-  WEBKIT_PC=webkit-1.0
+   ],
+ 
+   [AC_MSG_ERRO

commit yast2-installation for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package yast2-installation for 
openSUSE:Factory
checked in at Mon Aug 15 10:14:43 CEST 2011.




--- yast2-installation/yast2-installation.changes   2011-08-03 
10:58:07.0 +0200
+++ /mounts/work_src_done/STABLE/yast2-installation/yast2-installation.changes  
2011-08-12 14:02:17.0 +0200
@@ -1,0 +2,49 @@
+Fri Aug 12 13:58:01 CEST 2011 - jsuch...@suse.cz
+
+- expect there might me extra checks for disk controllers with
+  s390 (bnc#706911)
+- adapted help text and label in installation mode selection
+  (bnc#711160)
+- 2.21.14 
+
+---
+Fri Aug  5 12:13:13 UTC 2011 - lsle...@suse.cz
+
+- upgrade_urls.ycp - do not display reading and writing progress,
+  it is pretty quick and just causes screen flickering
+  (the write progress is displayed only when there is an enabled
+  repo to add, refreshing it can take long time) (bnc#692614)
+- 2.21.13
+
+---
+Fri Aug  5 12:32:16 CEST 2011 - tgoettlic...@suse.de
+
+- fixed .desktop file (bnc #681249)
+
+---
+Thu Aug  4 14:50:33 UTC 2011 - lsle...@suse.cz
+
+- 2.21.12
+
+---
+Thu Aug  4 14:07:38 CEST 2011 - mvid...@suse.cz
+
+- Copy network interface naming rules early to get them to initrd (bnc#666079).
+
+---
+Thu Aug  4 11:37:02 UTC 2011 - lsle...@suse.cz
+
+- extraurls: check whether there is an update candidate in the
+  added extra repositories - openSUSE DVD does not contain all
+  packages, packages from OSS repository which are not on DVD
+  medium were not upgraded and were left in the old version even
+  after adding new OSS repository with updated version (bnc#693230)
+
+---
+Wed Aug  3 13:19:50 UTC 2011 - lsle...@suse.cz
+
+- cleanup: removed obsoleted SourceManager::SyncAddedAndDeleted()
+  call (zmd sync has been removed)
+- 2.21.11
+
+---

calling whatdependson for head-i586


Old:

  yast2-installation-2.21.10.tar.bz2

New:

  yast2-installation-2.21.14.tar.bz2



Other differences:
--
++ yast2-installation.spec ++
--- /var/tmp/diff_new_pack.Mlx1ed/_old  2011-08-15 10:12:05.0 +0200
+++ /var/tmp/diff_new_pack.Mlx1ed/_new  2011-08-15 10:12:05.0 +0200
@@ -19,11 +19,11 @@
 
 
 Name:   yast2-installation
-Version:2.21.10
+Version:2.21.14
 Release:1
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-installation-2.21.10.tar.bz2
+Source0:yast2-installation-2.21.14.tar.bz2
 
 Prefix: /usr
 
@@ -43,8 +43,8 @@
 # PackageCallbacks::RegisterEmptyProgressCallbacks()
 BuildRequires:  yast2 >= 2.16.52
 
-# Pkg::SourceProvideDigestedFile() 
-BuildRequires:  yast2-pkg-bindings >= 2.17.25
+# Pkg::Add/RemoveUpgradeRepo()
+BuildRequires:  yast2-pkg-bindings >= 2.21.2
 
 # Unified progress bar (done by visnov) 
 BuildRequires:  yast2-packager >= 2.17.9
@@ -62,6 +62,9 @@
 # Pkg::SourceProvideDigestedFile() 
 Conflicts:  yast2-pkg-bindings < 2.17.25
 
+# Pkg::Add/RemoveUpgradeRepo()
+Requires:   yast2-pkg-bindings >= 2.21.2
+
 # Mouse-related scripts moved to yast2-mouse
 Conflicts:  yast2-mouse < 2.18.0
 
@@ -136,7 +139,7 @@
 System installation code as present on installation media.
 
 %prep
-%setup -n yast2-installation-2.21.10
+%setup -n yast2-installation-2.21.14
 
 %build
 %{prefix}/bin/y2tool y2autoconf

++ yast2-installation-2.21.10.tar.bz2 -> yast2-installation-2.21.14.tar.bz2 
++
 15236 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/yast2-installation-2.21.10/VERSION new/yast2-installation-2.21.14/VERSION
--- old/yast2-installation-2.21.10/VERSION  2011-08-03 10:53:49.0 
+0200
+++ new/yast2-installation-2.21.14/VERSION  2011-08-12 13:58:29.0 
+0200
@@ -1 +1 @@
-2.21.10
+2.21.14
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/yast2-installation-2.21.10/configure.in 
new/yast2-installation-2.21.14/configure.in
--- old/yast2-installation-

commit blocxx for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package blocxx for openSUSE:Factory
checked in at Mon Aug 15 10:11:54 CEST 2011.




--- blocxx/blocxx.changes   2011-02-25 10:03:08.0 +0100
+++ /mounts/work_src_done/STABLE/blocxx/blocxx.changes  2011-08-14 
23:21:39.0 +0200
@@ -1,0 +2,5 @@
+Sun Aug 14 21:18:55 UTC 2011 - crrodrig...@opensuse.org
+
+- Add patch to make the library use AES-NI or other openssl engines
+
+---

calling whatdependson for head-i586


New:

  blockcxx-openssl.patch



Other differences:
--
++ blocxx-doc.spec ++
--- /var/tmp/diff_new_pack.FuJZpq/_old  2011-08-15 10:10:37.0 +0200
+++ /var/tmp/diff_new_pack.FuJZpq/_new  2011-08-15 10:10:37.0 +0200
@@ -21,7 +21,7 @@
 Name:   blocxx-doc
 %define blocxx_version 2.1.0
 Version:2.1.0.342
-Release:139
+Release:140
 License:BSD3c(or similar)
 Group:  Documentation/HTML
 AutoReqProv:on

++ blocxx.spec ++
--- /var/tmp/diff_new_pack.FuJZpq/_old  2011-08-15 10:10:37.0 +0200
+++ /var/tmp/diff_new_pack.FuJZpq/_new  2011-08-15 10:10:37.0 +0200
@@ -21,7 +21,7 @@
 Name:   blocxx
 %define blocxx_version 2.1.0
 Version:2.1.0.342
-Release:142
+Release:143
 License:BSD3c(or similar)
 Group:  Development/Libraries/C and C++
 AutoReqProv:on
@@ -39,6 +39,7 @@
 Patch6: %{name}-2.1.0-memorybarrier.diff
 Patch7: %{name}-2.1.0-catch-gcc45-bug_is_pod.diff
 Patch8: %{name}-2.1.0-std-ptrdiff.diff
+Patch9: blockcxx-openssl.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  gcc-c++ pcre-devel pkg-config
 %if 0%{?suse_version} >= 1030
@@ -259,6 +260,10 @@
 %patch6 -p1
 %patch7 -p0
 %patch8 -p0
+%patch9
+
+%build
+
 if test -f ./bootstrap.sh ; then
./bootstrap.sh
 else
@@ -267,7 +272,6 @@
 fi
 autoreconf -fi
 
-%build
 %if %{?_with_debug:1}%{!?_with_debug:0}
 #
 # configure a special debug version
@@ -309,7 +313,7 @@
 # run testsuites
 # TODO: Condition fails on x86_64?!
 #
-#make check %_smp_mflags
+make check %_smp_mflags
 #
 
 %install

++ blockcxx-openssl.patch ++
--- src/blocxx/SSLCtxMgr.cpp.orig
+++ src/blocxx/SSLCtxMgr.cpp
@@ -53,6 +53,9 @@
 
 #include 
 #include 
+#if defined(BLOCXX_HAVE_OPENSSL_ENGINE_H) && !defined(OPENSSL_NO_ENGINE)
+#include 
+#endif
 #include 
 #include 
 #include 
@@ -190,6 +193,10 @@ struct SSLGlobalWork
 
SSL_library_init();
SSL_load_error_strings();
+#if defined(BLOCXX_HAVE_OPENSSL_ENGINE_H) && !defined(OPENSSL_NO_ENGINE)
+ENGINE_load_builtin_engines();
+ENGINE_register_all_complete();
+#endif
}
initLock.release();
 
@@ -326,6 +333,9 @@ SSLCtxMgr::initCtx(const String& certfil
{
BLOCXX_THROW(SSLException, Format("SSLCtxMgr::initCtx(): 
SSL_CTX_new returned 0: %1", getOpenSSLErrorDescription()).c_str());
}
+#ifdef SSL_MODE_RELEASE_BUFFERS
+SSL_CTX_set_mode(ctx, SSL_MODE_RELEASE_BUFFERS);
+#endif
SSL_CTX_set_default_passwd_cb(ctx, pem_passwd_cb);
if (!certfile.empty())
{
--- configure.in.orig
+++ configure.in
@@ -39,7 +39,8 @@ AM_MAINTAINER_MODE
 
 dnl Checks for programs.
 AC_CANONICAL_HOST
-AC_PROG_CC
+AC_PROG_CC_STDC
+AC_USE_SYSTEM_EXTENSIONS
 AC_PROG_CXX
 AC_LANG_C
 #AC_LANG_CPLUSPLUS
@@ -1417,7 +1418,7 @@ AC_CACHE_CHECK([for OpenSSL directory],
CPPFLAGS="$saved_CPPFLAGS -I$ssldir"
fi
fi
- 
+   AC_CHECK_HEADERS([openssl/engine.h]) 
# Basic test to check for compatible version and correct linking
# *does not* test for RSA - that comes later.
AC_TRY_COMPILE(





Remember to have fun...

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



commit polkit-qt-1 for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package polkit-qt-1 for openSUSE:Factory
checked in at Mon Aug 15 10:10:27 CEST 2011.




--- KDE/polkit-qt-1/polkit-qt-1.changes 2011-06-28 15:35:13.0 +0200
+++ /mounts/work_src_done/STABLE/polkit-qt-1/polkit-qt-1.changes
2011-08-11 09:31:07.0 +0200
@@ -1,0 +2,6 @@
+Thu Aug 11 09:30:19 UTC 2011 - toddrme2...@gmail.com
+ 
+- Removed self-obsoletes (fix for RPMLINT warning)
+- Cleaned up spec file formatting
+
+---

calling whatdependson for head-i586




Other differences:
--
++ polkit-qt-1.spec ++
--- /var/tmp/diff_new_pack.WcyRUR/_old  2011-08-15 09:59:39.0 +0200
+++ /var/tmp/diff_new_pack.WcyRUR/_new  2011-08-15 09:59:39.0 +0200
@@ -15,28 +15,26 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 %define debug_package_requires libpolkit-qt-1-0 = %{version}-%{release}
 
 Name:   polkit-qt-1
-BuildRequires:  automoc4 cmake kde4-filesystem libqt4-devel pkg-config
-%if %suse_version > 1110 
-BuildRequires:  polkit-devel
-%else
-BuildRequires:  PolicyKit-devel
-%endif
+Version:0.99.1
+Release:14
 License:LGPLv2.1+
-Group:  Development/Libraries/KDE
 Summary:PolicyKit Library Qt Bindings
-Version:0.99.1
-Release:12
 Url:
http://api.kde.org/kdesupport-api/kdesupport-apidocs/polkit-qt/html/
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Group:  Development/Libraries/KDE
 # ftp://ftp.kde.org/pub/kde/stable/apps/KDE4.x/admin/
 Source0:%{name}-%{version}.tar.bz2
 Source99:   baselibs.conf
 Patch0: ck-avoid-crash.diff
+BuildRequires:  automoc4
+BuildRequires:  cmake
+BuildRequires:  kde4-filesystem
+BuildRequires:  libqt4-devel
+BuildRequires:  polkit-devel
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Polkit-qt-1 aims to make it easy for Qt developers to take advantage of
@@ -44,21 +42,12 @@
 QAbstractButton that lets you integrate those two components easily
 with PolicyKit.
 
-
-
-Authors:
-
-Daniel Nicoletti 
-Dario Freddi 
-
 %package -n libpolkit-qt-1-1
 License:LGPLv2.1+
 Summary:PolicyKit Library Qt Bindings
 Group:  Development/Libraries/KDE
-%if %suse_version > 1110
 Provides:   libpolkit-qt0 = 0.9.3
-Obsoletes:  libpolkit-qt0 <= 0.9.3
-%endif
+Obsoletes:  libpolkit-qt0 < 0.9.3
 
 %description -n libpolkit-qt-1-1
 Polkit-qt aims to make it easy for Qt developers to take advantage of
@@ -66,25 +55,14 @@
 QAbstractButton that lets you integrate those two components easily
 with PolicyKit.
 
-
-
-Authors:
-
-Daniel Nicoletti 
-Dario Freddi 
-
 %package -n libpolkit-qt-1-devel
 License:LGPLv2.1+
 Summary:PolicyKit Library Qt Bindings
 Group:  Development/Libraries/KDE
-Provides:   libpolkit-qt-devel = 0.9.3
-Obsoletes:  libpolkit-qt-devel <= 0.9.3
-Requires:   libpolkit-qt-1-1 = %version
-%if %suse_version > 1110 
+Requires:   libpolkit-qt-1-1 = %{version}
 Requires:   polkit-devel
-%else
-Requires:   PolicyKit-devel
-%endif
+Provides:   libpolkit-qt-devel = 0.9.3
+Obsoletes:  libpolkit-qt-devel < 0.9.3
 
 %description -n libpolkit-qt-1-devel
 Polkit-qt aims to make it easy for Qt developers to take advantage of
@@ -92,15 +70,8 @@
 QAbstractButton that lets you integrate those two components easily
 with PolicyKit.
 
-
-
-Authors:
-
-Daniel Nicoletti 
-Dario Freddi 
-
 %prep
-%setup
+%setup -q
 %patch0
 
 %build
@@ -109,29 +80,29 @@
 
 %install
   cd build
-  %makeinstall
+  %make_install
 
 %post -n libpolkit-qt-1-1 -p /sbin/ldconfig
 
 %postun -n libpolkit-qt-1-1 -p /sbin/ldconfig
 
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -rf %{buildroot}
 
 %files -n libpolkit-qt-1-devel
 %defattr(-,root,root)
 %doc AUTHORS README
-/usr/include/polkit-qt-1/
-%_libdir/pkgconfig/polkit-qt*
-%_libdir/libpolkit-qt-gui-1.so
-%_libdir/libpolkit-qt-core-1.so
-%_libdir/libpolkit-qt-agent-1.so
-%_libdir/cmake/PolkitQt-1/
+%{_kde4_includedir}/polkit-qt-1/
+%{_kde4_libdir}/pkgconfig/polkit-qt*
+%{_kde4_libdir}/libpolkit-qt-gui-1.so
+%{_kde4_libdir}/libpolkit-qt-core-1.so
+%{_kde4_libdir}/libpolkit-qt-agent-1.so
+%{_kde4_libdir}/cmake/PolkitQt-1/
 
 %files -n libpolkit-qt-1-1
 %defattr(-,root,root)
-%_libdir/libpolkit-qt-gui-1.so.*
-%_libdir/libpolkit-qt-core-1.so.*
-%_libdir/libpolkit-qt-agent-1.so.*
+%{_kde4_libdir}/libpolkit-qt-gui-1.so.*
+%{_kde4_libdir}/libpolkit-qt-core-1.so.*
+%{_kde4_libdir}/libpolkit-qt-agent-1.so.*
 
 %changelog






Remember to have fun...

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

commit sendmail for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package sendmail for openSUSE:Factory
checked in at Mon Aug 15 09:59:27 CEST 2011.




--- sendmail/sendmail.changes   2011-05-31 12:18:06.0 +0200
+++ /mounts/work_src_done/STABLE/sendmail/sendmail.changes  2011-08-12 
16:49:26.0 +0200
@@ -1,0 +2,26 @@
+Fri Aug 12 14:47:38 UTC 2011 - wer...@suse.de
+
+- Use Pre exec files for configuration on the fly
+
+---
+Thu Aug 11 15:17:58 UTC 2011 - wer...@suse.de
+
+- Socket activation does not work for sendmail even with -bs
+  on the command line of sendmail and StandardInput=socket
+
+---
+Mon Aug  8 15:14:52 UTC 2011 - wer...@suse.de
+
+- The approach of using makefiles requires make for sendmail 
+
+---
+Fri Aug  5 12:23:05 UTC 2011 - wer...@suse.de
+
+- Make /var7run a ghost entry in spec as this is a tmpfs now and
+  create it at start of sendmail if it does not exist (bnc#710279)
+- First try of using systemd unit configration files for both
+  sendmail MTA and sendmail MT client.  Try to start them on
+  demand using systemd unit socket files for both local and remote
+  network as well as systemd unit path file for local mail queue
+
+---

calling whatdependson for head-i586


New:

  sendmail-client.path
  sendmail-client.service
  sendmail-client.systemd
  sendmail.service
  sendmail.systemd



Other differences:
--
++ sendmail.spec ++
--- /var/tmp/diff_new_pack.i3YSOd/_old  2011-08-15 09:54:12.0 +0200
+++ /var/tmp/diff_new_pack.i3YSOd/_new  2011-08-15 09:54:12.0 +0200
@@ -26,18 +26,26 @@
 Group:  Productivity/Networking/Email/Servers
 PreReq: %fillup_prereq %insserv_prereq
 PreReq: /bin/mv /bin/rm /bin/sed
+PreReq: permissions
+%if 0%{?suse_version} > 1130
 PreReq: sysvinit(network) sysvinit(syslog)
+%endif
 Provides:   sendcf smailcfg smtp_daemon sendmail-tls
-Requires:   filesystem procmail netcfg m4 /bin/fuser
+Requires:   filesystem procmail netcfg m4 /bin/fuser make
 Conflicts:  smail postfix postfix-tls
 Obsoletes:  sendmail-tls
 AutoReqProv:on
 Version:8.14.5
-Release:1
+Release:2
 Summary:BSD Sendmail
 Source0:ftp://ftp.sendmail.org/pub/sendmail/sendmail-%{version}.tar.bz2
 Source1:FAQ.sendmail-8.14.bz2
 Source2:sendmail-rpmlintrc
+Source3:sendmail-client.path
+Source4:sendmail.service
+Source5:sendmail-client.service
+Source6:sendmail.systemd
+Source7:sendmail-client.systemd
 Patch0: sendmail-%{version}.dif
 Patch1: sendmail-8.13.5-select.dif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -82,7 +90,7 @@
 
 %package -n rmail
 Version:8.14.3
-Release:61
+Release:62
 Summary:Rmail of the BSD Sendmail
 License:PERMISSIVE-OSI-COMPLIANT
 Group:  Productivity/Networking/Email/Servers
@@ -105,7 +113,7 @@
 set -f
 cat <<-EOF > file-list
%%defattr(-,root,root)
-   %%dir%%attr(1750,root,root)   %{_localstatedir}/run/sendmail
+   %%ghost %%dir %%attr(1750,root,root)   %{_localstatedir}/run/sendmail
%%dir%%attr(0750,root,root)   %{_localstatedir}/lib/sendmail
%%attr(0600,root,root)
%{_localstatedir}/lib/sendmail/statistics
%%attr(0600,root,root)%{_mailcnfdir}/statistics
@@ -175,6 +183,10 @@
 mkdir -p %{buildroot}%{_mandir}/man5
 mkdir -p %{buildroot}%{_mandir}/man8
 mkdir -p %{buildroot}%{_localstatedir}/adm/fillup-templates
+%if 0%{?suse_version} > 1140
+mkdir -p %{buildroot}/lib/systemd/system
+mkdir -p %{buildroot}/%{_mailcnfdir}/system
+%endif
 make \
DESTDIR=%{buildroot} \
SUBDIRS="%{SUBDIRS}" \
@@ -298,6 +310,17 @@
make DESTDIR=%{buildroot} short
PATH=$OPATH
 popd
+%if 0%{?suse_version} > 1140
+#
+# systemd unit conf files
+install -m 0644 %{S:3} %{buildroot}/lib/systemd/system/
+install -m 0644 %{S:4} %{buildroot}/lib/systemd/system/
+install -m 0644 %{S:5} %{buildroot}/lib/systemd/system/
+install -m 0644 %{S:6} %{buildroot}/%{_mailcnfdir}/system/sm.pre
+install -m 0644 %{S:7} %{buildroot}/%{_mailcnfdir}/system/sm-client.pre
+chmod 0755 %{buildroot}/%{_mailcnfdir}/system/sm.pre
+chmod 0755 %{buildroot}/%{_mailcnfdir}/system/sm-client.pre
+%endif
 #
 # Remove some files we don't wish to package
 #
@@ -307,6 +330,20 @@
 %clean
 rm -rf %{buildroot}
 
+%if %{defined verify_permissions}
+%verifyscript
+%verify_permissions -e %{_localstatedir}/run/sendmail/
+%verify_permissions -e %{_localstatedi

commit bluez for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package bluez for openSUSE:Factory
checked in at Mon Aug 15 09:53:27 CEST 2011.




--- bluez/bluez-gstreamer.changes   2011-06-14 08:50:31.0 +0200
+++ /mounts/work_src_done/STABLE/bluez/bluez-gstreamer.changes  2011-08-04 
20:52:02.0 +0200
@@ -1,0 +2,30 @@
+Thu Aug  4 18:51:02 UTC 2011 - seife+...@b1-systems.com
+
+- update to bluez-4.96:
+  - Fix issue with race condition in AVDTP stream start.
+  - Fix issue with global adapter offline switching.
+  - Fix issue with pairing and No Bonding devices.
+  - Add support for Nintendo Wii Remote pairing.
+- enable proximity, wiimote, thermometer plugins
+
+---
+Tue Jul  5 07:29:57 UTC 2011 - seife+...@b1-systems.com
+
+- update to bluez-4.95:
+  - Fix issue with AVCTP replies with invalid PID.
+  - Fix issue with AVRCP and unknown packet types.
+  - Fix issue with AVRCP not using NOT_IMPLEMENTED correctly.
+  - Fix issue with AVDTP discovery if all endpoints are in use.
+  - Fix issue with invalid memory writes and media support.
+  - Fix issue with not removing device alias and unbonding.
+  - Fix issue with device disconnects and offline mode handling.
+  - Add support for setting adapter name based on machine-info.
+  - Add support for systemd service configuration.
+- add systemd .service file (systemd support needs more work still)
+
+---
+Wed Jun 22 16:02:15 CEST 2011 - meiss...@suse.de
+
+- added baselibs.conf bnc#700840
+
+---
--- bluez/bluez.changes 2011-06-22 16:03:52.0 +0200
+++ /mounts/work_src_done/STABLE/bluez/bluez.changes2011-08-04 
20:52:03.0 +0200
@@ -1,0 +2,25 @@
+Thu Aug  4 18:51:02 UTC 2011 - seife+...@b1-systems.com
+
+- update to bluez-4.96:
+  - Fix issue with race condition in AVDTP stream start.
+  - Fix issue with global adapter offline switching.
+  - Fix issue with pairing and No Bonding devices.
+  - Add support for Nintendo Wii Remote pairing.
+- enable proximity, wiimote, thermometer plugins
+
+---
+Tue Jul  5 07:29:57 UTC 2011 - seife+...@b1-systems.com
+
+- update to bluez-4.95:
+  - Fix issue with AVCTP replies with invalid PID.
+  - Fix issue with AVRCP and unknown packet types.
+  - Fix issue with AVRCP not using NOT_IMPLEMENTED correctly.
+  - Fix issue with AVDTP discovery if all endpoints are in use.
+  - Fix issue with invalid memory writes and media support.
+  - Fix issue with not removing device alias and unbonding.
+  - Fix issue with device disconnects and offline mode handling.
+  - Add support for setting adapter name based on machine-info.
+  - Add support for systemd service configuration.
+- add systemd .service file (systemd support needs more work still)
+
+---

calling whatdependson for head-i586


Old:

  bluez-4.94.tar.bz2

New:

  bluez-4.96.tar.bz2



Other differences:
--
++ bluez-gstreamer.spec ++
--- /var/tmp/diff_new_pack.VaCXiB/_old  2011-08-15 09:49:54.0 +0200
+++ /var/tmp/diff_new_pack.VaCXiB/_new  2011-08-15 09:49:54.0 +0200
@@ -24,6 +24,9 @@
 BuildRequires:  libcap-ng-devel
 %define with_libcapng --enable-capng
 %endif
+%if 0%{?suse_version} > 1130
+BuildRequires:  pkgconfig(systemd)
+%endif
 BuildRequires:  glib2-devel >= 2.16
 BuildRequires:  libnl-devel libusb-devel
 BuildRequires:  alsa-devel libsndfile-devel pkg-config udev
@@ -31,8 +34,8 @@
 BuildRequires:  readline-devel
 BuildRequires:  libudev-devel
 Url:http://www.bluez.org
-Version:4.94
-Release:2
+Version:4.96
+Release:1
 Summary:Bluetooth Sound Support
 Group:  Productivity/Multimedia/Sound/Utilities
 License:GPLv2+
@@ -90,7 +93,10 @@
--enable-test   \
--enable-pand   \
--enable-dund   \
-   --enable-configfiles\
+   --enable-proximity  \
+   --enable-wiimote\
+   --enable-thermometer\
+   --enable-datafiles  \
--enable-pcmcia \
%{?with_libcapng}
 make %{?_smp_mflags} all V=1

++ bluez.spec ++
--- /var/tmp/diff_new_pack.VaCXiB/_old  2011-08-15 09:49:54.0 +0200
+++ /var/tmp/diff_new_pack.VaCXiB/_new  2011-08-15 09:49:54.0 +0200
@@ -25,14 +25,17 @@
 BuildRequires:  libcap-ng-devel
 %define with_libcapng --enable-capng
 %endif
+%if 0%{?suse_version} > 1130
+BuildRequires:  pkgconfig(systemd)
+%endif
 BuildRequires:  glib2-devel >= 2.16
 BuildRequires:

commit polkit for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package polkit for openSUSE:Factory
checked in at Mon Aug 15 09:49:44 CEST 2011.




--- polkit/polkit.changes   2011-05-05 19:36:39.0 +0200
+++ /mounts/work_src_done/STABLE/polkit/polkit.changes  2011-08-10 
14:29:29.0 +0200
@@ -1,0 +2,8 @@
+Wed Aug 10 12:20:39 UTC 2011 - dims...@opensuse.org
+
+- BuildIgnore ruby, which is being dragged in via indirect
+  dependencies by gtk-doc for one of the helpers, which we do not
+  need during the build of polkit. Not dragging ruby in resolves a
+  build-cycle.
+
+---

calling whatdependson for head-i586


Old:

  _service:recompress:download_url:polkit-0.101.tar.bz2



Other differences:
--
++ polkit.spec ++
--- /var/tmp/diff_new_pack.Eu8O5j/_old  2011-08-15 09:42:07.0 +0200
+++ /var/tmp/diff_new_pack.Eu8O5j/_new  2011-08-15 09:42:07.0 +0200
@@ -20,7 +20,7 @@
 Name:   polkit
 Summary:PolicyKit Authorization Framework
 Version:0.101
-Release:5
+Release:7
 License:LGPLv2.1+
 Url:http://www.freedesktop.org/wiki/Software/PolicyKit
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -30,6 +30,8 @@
 BuildRequires:  glib2-devel >= 2.25.12
 BuildRequires:  gobject-introspection-devel >= 0.6.2
 BuildRequires:  gtk-doc
+# gtk-doc drags indirectyly ruby in for one of the helpers. This in turn 
causes a build cycle.
+#!BuildIgnore:  ruby
 BuildRequires:  intltool
 BuildRequires:  libexpat-devel
 BuildRequires:  pam-devel






Remember to have fun...

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



commit openssl for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package openssl for openSUSE:Factory
checked in at Mon Aug 15 09:41:59 CEST 2011.




--- openssl/openssl.changes 2011-08-05 21:10:43.0 +0200
+++ /mounts/work_src_done/STABLE/openssl/openssl.changes2011-08-06 
02:37:39.0 +0200
@@ -1,0 +2,7 @@
+Sat Aug  6 00:33:47 UTC 2011 - crrodrig...@opensuse.org
+
+- Add upstream patch that calls ENGINE_register_all_complete()
+  in ENGINE_load_builtin_engines() saving us from adding dozens
+  of calls to such function to calling applications. 
+
+---

calling whatdependson for head-i586


New:

  openssl-call-engine-reg-comp.patch



Other differences:
--
++ openssl.spec ++
--- /var/tmp/diff_new_pack.w6LUgZ/_old  2011-08-15 09:41:26.0 +0200
+++ /var/tmp/diff_new_pack.w6LUgZ/_new  2011-08-15 09:41:26.0 +0200
@@ -33,7 +33,7 @@
 #
 #Version:1.0.0
 Version:1.0.0d
-Release:29
+Release:31
 Summary:Secure Sockets and Transport Layer Security
 Url:http://www.openssl.org/
 Source: http://www.%{name}.org/source/%{name}-%{version}.tar.bz2
@@ -51,6 +51,7 @@
 Patch7: openssl-1.0.0b-aesni.patch
 #Patch8: CVE-2011-0014.patch
 Patch9: ECDSA_signatures_timing_attack.patch
+Patch10:openssl-call-engine-reg-comp.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -188,6 +189,7 @@
 %patch7 -p1
 #%patch8 -p1
 %patch9 -p1
+%patch10
 cp -p %{S:10} .
 echo "adding/overwriting some entries in the 'table' hash in Configure"
 # 
$dso_scheme:$shared_target:$shared_cflag:$shared_ldflag:$shared_extension:$ranlib:$arflags

++ openssl-call-engine-reg-comp.patch ++
Add call to ENGINE_register_all_complete() to ENGINE_load_builtin_engines(), 
this means that some implementations will be used automatically, e.g. aesni,
Setup cpuid in ENGINE_load_builtin_engines() too as some ENGINEs use it.
Origin: UPSTREAM
URL: http://cvs.openssl.org/chngview?cn=19781

--- crypto/engine/eng_all.c.orig
+++ crypto/engine/eng_all.c
@@ -61,6 +61,8 @@
 
 void ENGINE_load_builtin_engines(void)
{
+   /* Some ENGINEs need this */
+   OPENSSL_cpuid_setup();
 #if 0
/* There's no longer any need for an "openssl" ENGINE unless, one day,
 * it is the *only* way for standard builtin implementations to be be
@@ -115,6 +117,7 @@ void ENGINE_load_builtin_engines(void)
ENGINE_load_capi();
 #endif
 #endif
+ENGINE_register_all_complete();
}
 
 #if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)





Remember to have fun...

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



commit logrotate for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package logrotate for openSUSE:Factory
checked in at Mon Aug 15 09:41:17 CEST 2011.




--- logrotate/logrotate.changes 2011-05-16 11:33:19.0 +0200
+++ /mounts/work_src_done/STABLE/logrotate/logrotate.changes2011-07-25 
12:27:56.0 +0200
@@ -1,0 +2,5 @@
+Mon Jul 25 10:25:56 UTC 2011 - jeng...@medozas.de
+
+- Change compression scheme to xz
+
+---

calling whatdependson for head-i586




Other differences:
--
++ logrotate.spec ++
--- /var/tmp/diff_new_pack.XjAGCr/_old  2011-08-15 09:40:23.0 +0200
+++ /var/tmp/diff_new_pack.XjAGCr/_new  2011-08-15 09:40:23.0 +0200
@@ -20,7 +20,7 @@
 
 Name:   logrotate
 Version:3.7.9
-Release:8
+Release:10
 License:GPLv2+
 Summary:Rotate, compress, remove, and mail system log files
 Group:  System/Base
@@ -39,7 +39,7 @@
 PreReq: %fillup_prereq
 PreReq: /bin/mv
 PreReq: /bin/rm
-Requires:   bzip2
+Requires:   xz
 Requires:   cron
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ logrotate-3.7.8-autoext.patch ++
--- /var/tmp/diff_new_pack.XjAGCr/_old  2011-08-15 09:40:23.0 +0200
+++ /var/tmp/diff_new_pack.XjAGCr/_new  2011-08-15 09:40:23.0 +0200
@@ -34,7 +34,7 @@
 ===
 --- logrotate.c.orig   2008-10-15 15:07:43.0 +0200
 +++ logrotate.c2009-03-06 14:21:45.0 +0100
-@@ -54,6 +54,15 @@
+@@ -54,6 +54,16 @@
  int numLogs = 0;
  int debug = 0;
  char *mailCommand = DEFAULT_MAIL_COMMAND;
@@ -42,6 +42,7 @@
 +const char * compress_cmd_list[][2] = {
 +  {"gzip", ".gz"},
 +  {"bzip2", ".bz2"},
++  {"xz", ".xz"},
 +  {"compress", ".Z"},
 +  {"zip", "zip"},
 +  {"EOLIST", "EOLIST"} /* end-marker */

++ logrotate-3.7.8-conf.patch ++
--- /var/tmp/diff_new_pack.XjAGCr/_old  2011-08-15 09:40:23.0 +0200
+++ /var/tmp/diff_new_pack.XjAGCr/_new  2011-08-15 09:40:23.0 +0200
@@ -18,8 +18,8 @@
 -}
 +# comment these to switch compression to use gzip or another
 +# compression scheme
-+compresscmd /usr/bin/bzip2
-+uncompresscmd /usr/bin/bunzip2
++compresscmd /usr/bin/xz
++uncompresscmd /usr/bin/xzdec
  
 -/var/log/btmp {
 -missingok
@@ -28,7 +28,7 @@
 -rotate 1
 -}
 +# former versions had to have the compressext set accordingly
-+#compressext .bz2
++#compressext .xz
  
 -# system-specific logs may be also be configured here.
 +# RPM packages drop log rotation information into this directory






Remember to have fun...

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



commit libdb-4_8 for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package libdb-4_8 for openSUSE:Factory
checked in at Mon Aug 15 09:40:14 CEST 2011.




--- libdb-4_8/libdb-4_8.changes 2011-05-23 17:03:29.0 +0200
+++ /mounts/work_src_done/STABLE/libdb-4_8/libdb-4_8.changes2011-08-13 
05:42:17.0 +0200
@@ -1,0 +2,5 @@
+Sat Aug 13 03:41:05 UTC 2011 - crrodrig...@opensuse.org
+
+- Do not build static libraries 
+
+---
--- libdb-4_8/libdb_java-4_8.changes2010-09-22 15:16:03.0 +0200
+++ /mounts/work_src_done/STABLE/libdb-4_8/libdb_java-4_8.changes   
2011-08-13 05:51:03.0 +0200
@@ -1,0 +2,5 @@
+Sat Aug 13 03:50:05 UTC 2011 - crrodrig...@opensuse.org
+
+- Disable static libraries 
+
+---

calling whatdependson for head-i586




Other differences:
--
++ libdb-4_8.spec ++
--- /var/tmp/diff_new_pack.EBZoqX/_old  2011-08-15 09:02:39.0 +0200
+++ /var/tmp/diff_new_pack.EBZoqX/_new  2011-08-15 09:02:39.0 +0200
@@ -24,7 +24,7 @@
 %define docdir %{_defaultdocdir}/%{name}
 %define source_dir %{_datadir}/%{name}-source
 Version:4.8.30
-Release:5
+Release:7
 %define major 4
 %define minor 8
 Summary:Berkeley DB Database Library Version 4.8
@@ -54,8 +54,6 @@
 License:BSD3c(or similar)
 Summary:Command Line tools for Managing Berkeley DB Databases
 Group:  Productivity/Databases/Tools
-Prefix: %{_prefix}
-Requires:   db = %{version}
 
 %description -n db-utils
 The Berkeley DB Database is a programmatic toolkit that provides
@@ -70,7 +68,6 @@
 License:BSD3c(or similar)
 Summary:Documentation for Berkeley DB
 Group:  Development/Libraries/C and C++
-Prefix: %{_prefix}
 Provides:   db-utils-doc = %{version}
 %if 0%{?suse_version} >= 1120
 BuildArch:  noarch
@@ -88,8 +85,7 @@
 License:BSD3c(or similar)
 Summary:Development Files and Libraries for the Berkeley DB library 
Version 4.8
 Group:  Development/Libraries/C and C++
-Prefix: %{_prefix}
-Requires:   db = %{version} glibc-devel
+Requires:   %{name} = %{version} glibc-devel
 Provides:   db-devel = %{version}
 
 %descriptiondevel
@@ -119,7 +115,7 @@
 cd ../build_nptl
 ../dist/configure --prefix=%{_prefix} \
 --libdir=%{_libdir} --enable-compat185 --disable-dump185 \
---enable-shared --enable-static --disable-cxx \
+--enable-shared --disable-static --disable-cxx \
--with-mutex="POSIX/pthreads/library" \
 %{_target_cpu}-suse-linux
 # Make sure O_DIRECT is really disabled (build host could have old kernel)
@@ -238,8 +234,6 @@
 %{_includedir}/db4/db.h
 %{_includedir}/db4/db_185.h
 %{_libdir}/libdb.so
-%{_libdir}/libdb.a
-%{_libdir}/libdb-%{major}.%{minor}.a
 %{_libdir}/libdb-%{major}.so
 #% files source
 #% defattr(-,root,root)

++ libdb_java-4_8.spec ++
--- /var/tmp/diff_new_pack.EBZoqX/_old  2011-08-15 09:02:39.0 +0200
+++ /var/tmp/diff_new_pack.EBZoqX/_new  2011-08-15 09:02:39.0 +0200
@@ -24,7 +24,7 @@
 %define docdir %{_defaultdocdir}/%{name}
 %define source_dir %{_datadir}/%{name}-source
 Version:4.8.30
-Release:2
+Release:3
 %define major 4
 %define minor 8
 Summary:Java Bindings for the Berkeley DB
@@ -88,7 +88,7 @@
 cd ../build_nptl
 ../dist/configure --prefix=%{_prefix} \
 --libdir=%{_libdir} --enable-compat185 --disable-dump185 \
---enable-java --enable-shared --enable-static --disable-cxx \
+--enable-java --enable-shared --disable-static --disable-cxx \
 --with-mutex="POSIX/pthreads/library" JAVACFLAGS="-source 1.5 -target 
1.5"\
 %{_target_cpu}-suse-linux
 # Make sure O_DIRECT is really disabled (build host could have old kernel)
@@ -179,7 +179,6 @@
 %defattr(-,root,root)
 %{_libdir}/*_g.so
 %{_libdir}/*-%{major}.so
-%{_libdir}/*.a
 %{_libdir}/libdb_java.so
 
 %changelog






Remember to have fun...

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