openSUSE Commits
Threads by month
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
July 2011
- 1 participants
- 1029 discussions
Hello community,
here is the log from the commit of package apache2-mod_fcgid for openSUSE:11.3
checked in at Thu Jul 28 00:21:44 CEST 2011.
--------
--- old-versions/11.3/all/apache2-mod_fcgid/apache2-mod_fcgid.changes 2008-03-07 17:09:32.000000000 +0100
+++ 11.3/apache2-mod_fcgid/apache2-mod_fcgid.changes 2011-07-26 16:20:47.000000000 +0200
@@ -1,0 +2,7 @@
+Tue Jul 26 16:10:03 CEST 2011 - draht(a)suse.de
+
+- heap corruption/overwrite error by incorrect pointer arithmetics.
+ CVE-2010-3872, https://issues.apache.org/bugzilla/show_bug.cgi?id=49406
+ (bnc#656092)
+
+-------------------------------------------------------------------
Package does not exist at destination yet. Using Fallback old-versions/11.3/all/apache2-mod_fcgid
Destination is old-versions/11.3/UPDATES/all/apache2-mod_fcgid
calling whatdependson for 11.3-i586
New:
----
apache2-mod_fcgid-bucket.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ apache2-mod_fcgid.spec ++++++
--- /var/tmp/diff_new_pack.SXVs8E/_old 2011-07-28 00:18:58.000000000 +0200
+++ /var/tmp/diff_new_pack.SXVs8E/_new 2011-07-28 00:18:58.000000000 +0200
@@ -1,7 +1,7 @@
#
-# spec file for package apache2-mod_fcgid (Version 2.2)
+# spec file for package apache2-mod_fcgid
#
-# 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
@@ -25,7 +25,7 @@
%define apache_mmn %(MMN=$(%{apxs} -q LIBEXECDIR)_MMN; test -x $MMN && $MMN)
#
Version: 2.2
-Release: 95
+Release: 101.<RELEASE2>
#
Group: Productivity/Networking/Web/Servers
License: GPL v2 or later
@@ -43,6 +43,7 @@
Source2: apache2-mod_fcgid.conf
Patch0: mod_fcgid.2.1-warnings.patch
Patch1: mod_fcgid.2.0-suse_paths.patch
+Patch2: apache2-mod_fcgid-bucket.patch
#
Summary: Alternative FastCGI module for Apache2
@@ -70,6 +71,7 @@
%setup -n mod_fcgid.%{version} -a 1
%patch0
%patch1
+%patch2 -p0
%build
# we dont need to pass the CFLAGS. apxs2 will do that.
++++++ apache2-mod_fcgid-bucket.patch ++++++
diff -ruN ../mod_fcgid.2.2-o/fcgid_bucket.c ./fcgid_bucket.c
--- ../mod_fcgid.2.2-o/fcgid_bucket.c 2007-07-31 11:09:20.000000000 +0200
+++ ./fcgid_bucket.c 2011-07-26 16:07:08.000000000 +0200
@@ -83,7 +83,7 @@
/* Initialize header */
putsize = fcgid_min(bufferlen, sizeof(header) - hasread);
- memcpy(&header + hasread, buffer, putsize);
+ memcpy((char*)(&header) + hasread, buffer, putsize);
hasread += putsize;
/* Ignore the bytes that have read */
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package samba for openSUSE:11.3
checked in at Thu Jul 28 00:17:24 CEST 2011.
--------
--- old-versions/11.3/UPDATES/all/samba/samba.changes 2011-03-07 17:09:35.000000000 +0100
+++ 11.3/samba/samba.changes 2011-07-27 13:40:55.000000000 +0200
@@ -1,0 +2,41 @@
+Tue Jul 26 23:57:01 UTC 2011 - lmuelle(a)suse.de
+
+- The Samba Web Administration Tool (SWAT) versions 3.0.x to 3.5.9 are
+ affected by a cross-site scripting vulnerability; CVE-2011-2694; (bso#8289);
+ (bnc#708503).
+
+-------------------------------------------------------------------
+Tue Jul 26 20:44:01 UTC 2011 - lmuelle(a)suse.de
+
+- The Samba Web Administration Tool (SWAT) versions 3.0.x to 3.5.9 are
+ affected by a cross-site request forgery; CVE-2011-2522; (bso#8290);
+ (bnc#705241).
+
+-------------------------------------------------------------------
+Mon Jul 11 16:21:23 CEST 2011 - ddiss(a)suse.de
+
+- Improve ctdb vacuuming performance with use of SCHEDULE_FOR_DELETION;
+ (bnc#705170).
+
+-------------------------------------------------------------------
+Mon May 16 10:23:54 CEST 2011 - ddiss(a)suse.de
+
+- Fix a 100% CPU loop when ctdbd dies during a traverse; (bnc#693945).
+
+-------------------------------------------------------------------
+Thu Apr 7 21:38:00 CET 2011 - jmcdonough(a)suse.de
+
+- Fix idmap_tdb for big-endian systems such as ppc and s390;
+ (bso#6901); (bnc#675978).
+
+-------------------------------------------------------------------
+Thu Mar 24 16:37:34 CET 2011 - ddiss(a)suse.de
+
+- Fix smbclient -M NT_STATUS_PIPE_BROKEN failure; (bso#7635); (bnc#681913).
+
+-------------------------------------------------------------------
+Thu Mar 17 10:24:31 CET 2011 - ddiss(a)suse.de
+
+- Don't crash when publishing a single printer; (bnc#643119).
+
+-------------------------------------------------------------------
@@ -8,0 +50,5 @@
+Fri Mar 4 16:30:46 CET 2011 - ddiss(a)suse.de
+
+- Fix a fd-leak in libwbclient at dlclose-time; (bso#7684); (bnc#668773).
+
+-------------------------------------------------------------------
@@ -55,0 +102,5 @@
+Wed Nov 24 13:28:13 CET 2010 - ddiss(a)suse.de
+
+- One further fix for spoolss GetPrinter (level 2) response; (bnc#649636).
+
+-------------------------------------------------------------------
@@ -59,0 +111,18 @@
+
+-------------------------------------------------------------------
+Wed Nov 10 11:53:36 CET 2010 - ddiss(a)suse.de
+
+- Fix incorrect spoolss GetPrinterData behaviour, causing user get
+ printer settings problems; (bnc#643787).
+
+-------------------------------------------------------------------
+Wed Nov 10 11:50:26 CET 2010 - ddiss(a)suse.de
+
+- Fix malformed spoolss EnumPrinterKey response, causing add printer
+ failures on Windows 7; (bso#6883); (bnc#649526).
+
+-------------------------------------------------------------------
+Wed Nov 10 11:47:35 CET 2010 - ddiss(a)suse.de
+
+- Fix malformed spoolss GetPrinter (level 2) response;
+ (bso#6727); (bnc#649636).
calling whatdependson for 11.3-i586
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ samba-doc.spec ++++++
--- /var/tmp/diff_new_pack.xnlg3z/_old 2011-07-28 00:16:21.000000000 +0200
+++ /var/tmp/diff_new_pack.xnlg3z/_new 2011-07-28 00:16:21.000000000 +0200
@@ -66,7 +66,7 @@
%endif
Url: http://www.samba.org/
Version: 3.5.4
-Release: 5.<RELEASE5>
+Release: 5.<RELEASE11>
License: GPLv3+
Summary: Samba Documentation
Group: Documentation/Other
@@ -389,7 +389,7 @@
--------
The Samba Team <samba(a)samba.org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%changelog
++++++ samba.spec ++++++
--- /var/tmp/diff_new_pack.xnlg3z/_old 2011-07-28 00:16:21.000000000 +0200
+++ /var/tmp/diff_new_pack.xnlg3z/_new 2011-07-28 00:16:21.000000000 +0200
@@ -71,7 +71,7 @@
Url: http://www.samba.org/
AutoReqProv: on
Version: 3.5.4
-Release: 5.<RELEASE5>
+Release: 5.<RELEASE11>
%ifarch ppc64
Obsoletes: samba-64bit
%endif
@@ -171,7 +171,7 @@
The Samba Team <samba(a)samba.org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%package client
@@ -214,7 +214,7 @@
--------
The Samba Team <samba(a)samba.org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%if 0%{?suse_version} == 0 || 0%{?suse_version} > 1020
@@ -239,7 +239,7 @@
The Samba Team <samba(a)samba.org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%endif
@@ -265,7 +265,7 @@
--------
The Samba Team <samba(a)samba.org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%endif
@@ -290,7 +290,7 @@
--------
Jeremy Allison <jra at samba dot org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%if %{make_utils}
@@ -337,7 +337,7 @@
--------
The Samba Team <samba(a)samba.org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%if 0%{?suse_version} && 0%{?suse_version} < 1031
@@ -347,7 +347,7 @@
%else
%package -n libsmbclient0
-License: GPL v3 or later
+License: GPLv3+
Provides: libsmbclient = %{version}-%{release}
Obsoletes: libsmbclient
%endif
@@ -362,7 +362,7 @@
%if 0%{?suse_version} && 0%{?suse_version} < 1031
%description -n libsmbclient
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%else
@@ -407,7 +407,7 @@
--------
The Samba Team <samba(a)samba.org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%package -n libnetapi0
@@ -426,7 +426,7 @@
--------
The Samba Team <samba(a)samba.org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%package -n libnetapi-devel
@@ -446,7 +446,7 @@
--------
The Samba Team <samba(a)samba.org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%if 0%{?suse_version} && 0%{?suse_version} < 1031
@@ -456,7 +456,7 @@
%else
%package -n libsmbsharemodes0
-License: GPL v3 or later
+License: GPLv3+
%endif
Summary: Samba smbsharemodes Library
Group: System/Libraries
@@ -466,7 +466,7 @@
%if 0%{?suse_version} && 0%{?suse_version} < 1031
%description -n libsmbsharemodes
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%else
@@ -502,7 +502,7 @@
The Samba Team <samba(a)samba.org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%package -n libtalloc2
@@ -521,7 +521,7 @@
--------
The Samba Team <samba(a)samba.org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%package -n libtalloc-devel
@@ -541,7 +541,7 @@
--------
The Samba Team <samba(a)samba.org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%package -n libtdb1
@@ -560,7 +560,7 @@
--------
The Samba Team <samba(a)samba.org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%package -n libtdb-devel
@@ -580,7 +580,7 @@
--------
The Samba Team <samba(a)samba.org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%package -n libwbclient0
@@ -599,7 +599,7 @@
--------
The Samba Team <samba(a)samba.org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%package -n libwbclient-devel
@@ -619,7 +619,7 @@
--------
The Samba Team <samba(a)samba.org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%package -n libtevent0
@@ -638,7 +638,7 @@
--------
The Samba Team <samba(a)samba.org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%package -n libtevent-devel
@@ -659,7 +659,7 @@
The Samba Team <samba(a)samba.org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%package -n libldb0
@@ -679,7 +679,7 @@
The Samba Team <samba(a)samba.org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%package -n libldb-devel
@@ -699,7 +699,7 @@
--------
The Samba Team <samba(a)samba.org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%if %{make_ldapsmb}
@@ -710,7 +710,7 @@
Group: Productivity/Networking/Samba
AutoReqProv: on
Version: 1.34b
-Release: 5.<RELEASE5>
+Release: 5.<RELEASE11>
Requires: perl-ldap
%description -n ldapsmb
@@ -723,7 +723,7 @@
--------
Guenther Deschner <guenther at deschner dot de>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%endif
@@ -746,14 +746,14 @@
--------
Steve French <sfrench at Samba dot org>
-Source Timestamp: 2508
+Source Timestamp: 2573
Branch : 3.5.4
%endif
%if %{make_vscan}
%package vscan
-License: GPL v2 or later
+License: GPLv2+
Summary: On-Access Virus Scanning with Samba
Group: Productivity/Networking/Samba
AutoReqProv: on
++++++ build-source-timestamp ++++++
--- /var/tmp/diff_new_pack.xnlg3z/_old 2011-07-28 00:16:21.000000000 +0200
+++ /var/tmp/diff_new_pack.xnlg3z/_new 2011-07-28 00:16:21.000000000 +0200
@@ -1,2 +1,2 @@
-2508
+2573
Branch : 3.5.4
++++++ patches.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/samba.org/1c579318ae2d2480ee4cc998443c0d1661b39846 new/patches/samba.org/1c579318ae2d2480ee4cc998443c0d1661b39846
--- old/patches/samba.org/1c579318ae2d2480ee4cc998443c0d1661b39846 1970-01-01 01:00:00.000000000 +0100
+++ new/patches/samba.org/1c579318ae2d2480ee4cc998443c0d1661b39846 2011-04-26 18:37:00.000000000 +0200
@@ -0,0 +1,17 @@
+Fix GetPrinterData response
+
+When returning WERR_MORE_DATA, the GetPrinterData data type field must be
+retained otherwise Windows XP/2k3 will not reissue the request.
+Index: source3/rpc_server/srv_spoolss_nt.c
+===================================================================
+--- source3/rpc_server/srv_spoolss_nt.c.orig
++++ source3/rpc_server/srv_spoolss_nt.c
+@@ -8678,7 +8678,7 @@ WERROR _spoolss_GetPrinterDataEx(pipes_s
+ return result;
+ }
+
+- *r->out.type = SPOOLSS_BUFFER_OK(*r->out.type, REG_NONE);
++ /* retain type when returning WERR_MORE_DATA */
+ r->out.data = SPOOLSS_BUFFER_OK(r->out.data, r->out.data);
+
+ return SPOOLSS_BUFFER_OK(WERR_OK, WERR_MORE_DATA);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/samba.org/21576e3f8c32878910460bf9575c200ad93d682a new/patches/samba.org/21576e3f8c32878910460bf9575c200ad93d682a
--- old/patches/samba.org/21576e3f8c32878910460bf9575c200ad93d682a 1970-01-01 01:00:00.000000000 +0100
+++ new/patches/samba.org/21576e3f8c32878910460bf9575c200ad93d682a 2011-03-18 16:39:41.000000000 +0100
@@ -0,0 +1,24 @@
+commit 21576e3f8c32878910460bf9575c200ad93d682a
+Author: Günther Deschner <gd(a)samba.org>
+Date: Fri Oct 1 06:08:12 2010 +0200
+
+ s3-net: make sure we dont crash when publishing a single printer.
+
+ Guenther
+
+Index: source3/utils/net_rpc_printer.c
+===================================================================
+--- source3/utils/net_rpc_printer.c.orig
++++ source3/utils/net_rpc_printer.c
+@@ -1090,6 +1090,11 @@ static bool get_printer_info(struct rpc_
+ &hnd))
+ return false;
+
++ *info_p = talloc_zero(mem_ctx, union spoolss_PrinterInfo);
++ if (*info_p == NULL) {
++ return false;
++ }
++
+ if (!net_spoolss_getprinter(pipe_hnd, mem_ctx, &hnd, level, *info_p)) {
+ rpccli_spoolss_ClosePrinter(pipe_hnd, mem_ctx, &hnd, NULL);
+ return false;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/samba.org/36e736871e28665ffcbbc4d0c87e1a2b60fcf0e0 new/patches/samba.org/36e736871e28665ffcbbc4d0c87e1a2b60fcf0e0
--- old/patches/samba.org/36e736871e28665ffcbbc4d0c87e1a2b60fcf0e0 1970-01-01 01:00:00.000000000 +0100
+++ new/patches/samba.org/36e736871e28665ffcbbc4d0c87e1a2b60fcf0e0 2011-07-21 22:10:31.000000000 +0200
@@ -0,0 +1,33 @@
+commit 36e736871e28665ffcbbc4d0c87e1a2b60fcf0e0
+Author: Volker Lendecke <vl(a)samba.org>
+Date: Mon May 10 11:53:03 2010 +0200
+
+ s3: Test for "__attribute__((destructor))"
+
+Index: source3/configure.in
+===================================================================
+--- source3/configure.in.orig
++++ source3/configure.in
+@@ -1324,6 +1324,22 @@ if test x"$samba_cv_stat_dos_flags" = x"
+ AC_DEFINE(HAVE_STAT_DOS_FLAGS, 1, [whether there is DOS flags support in the stat struct])
+ fi
+
++AC_CACHE_CHECK([whether we can compile with __attribute__((destructor))],
++ samba_cv_function_attribute_destructor,
++ [
++ AC_COMPILE_IFELSE(
++ [
++ __attribute__((destructor))
++ static void cleanup(void) { }
++ ],
++ samba_cv_function_attribute_destructor=yes)
++ ])
++
++if test x"$samba_cv_function_attribute_destructor" = xyes ; then
++ AC_DEFINE(HAVE_FUNCTION_ATTRIBUTE_DESTRUCTOR, 1,
++ [whether we can compile with __attribute__((destructor))])
++fi
++
+ #####################################
+ # needed for SRV lookups
+ AC_CHECK_LIB(resolv, dn_expand)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/samba.org/3a3c118a7edf679d6b545df035fd8d51b00e0830 new/patches/samba.org/3a3c118a7edf679d6b545df035fd8d51b00e0830
--- old/patches/samba.org/3a3c118a7edf679d6b545df035fd8d51b00e0830 1970-01-01 01:00:00.000000000 +0100
+++ new/patches/samba.org/3a3c118a7edf679d6b545df035fd8d51b00e0830 2011-07-21 22:10:31.000000000 +0200
@@ -0,0 +1,93 @@
+commit 3a3c118a7edf679d6b545df035fd8d51b00e0830
+Author: Michael Adam <obnox(a)samba.org>
+Date: Wed Dec 22 14:16:07 2010 +0100
+
+ s3:dbwrap_ctdb: in ctdb_delete, send a SCHEDULE_FOR_DELETION control to local ctdbd
+
+ This way, the record will be scheduled for fast vacuuming.
+
+ This is sent with the NOREPLY flag, so ctd should not sent
+ a reply packet and samba does not expect one. Hence, it
+ is not important for the success of the db_ctdb_delete command
+ whether or not the ctdbd we are running against supports the
+ SCHEDULE_FOR_DELETION control.
+
+Index: source3/lib/dbwrap_ctdb.c
+===================================================================
+--- source3/lib/dbwrap_ctdb.c.orig
++++ source3/lib/dbwrap_ctdb.c
+@@ -879,9 +879,56 @@ static NTSTATUS db_ctdb_store(struct db_
+
+
+
++#ifdef CTDB_CONTROL_SCHEDULE_FOR_DELETION
++static NTSTATUS db_ctdb_send_schedule_for_deletion(struct db_record *rec)
++{
++ NTSTATUS status;
++ struct ctdb_control_schedule_for_deletion *dd;
++ TDB_DATA indata;
++ int cstatus;
++ struct db_ctdb_rec *crec = talloc_get_type_abort(
++ rec->private_data, struct db_ctdb_rec);
++
++ indata.dsize = offsetof(struct ctdb_control_schedule_for_deletion, key) + rec->key.dsize;
++ indata.dptr = talloc_zero_array(crec, uint8_t, indata.dsize);
++ if (indata.dptr == NULL) {
++ DEBUG(0, (__location__ " talloc failed!\n"));
++ return NT_STATUS_NO_MEMORY;
++ }
++
++ dd = (struct ctdb_control_schedule_for_deletion *)(void *)indata.dptr;
++ dd->db_id = crec->ctdb_ctx->db_id;
++ dd->hdr = crec->header;
++ dd->keylen = rec->key.dsize;
++ memcpy(dd->key, rec->key.dptr, rec->key.dsize);
++
++ status = ctdbd_control_local(messaging_ctdbd_connection(),
++ CTDB_CONTROL_SCHEDULE_FOR_DELETION,
++ crec->ctdb_ctx->db_id,
++ CTDB_CTRL_FLAG_NOREPLY, /* flags */
++ indata,
++ NULL, /* outdata */
++ NULL, /* errmsg */
++ &cstatus);
++ talloc_free(indata.dptr);
++
++ if (!NT_STATUS_IS_OK(status) || cstatus != 0) {
++ DEBUG(1, (__location__ " Error sending local control "
++ "SCHEDULE_FOR_DELETION: %s, cstatus = %d\n",
++ nt_errstr(status), cstatus));
++ if (NT_STATUS_IS_OK(status)) {
++ status = NT_STATUS_UNSUCCESSFUL;
++ }
++ }
++
++ return status;
++}
++#endif
++
+ static NTSTATUS db_ctdb_delete(struct db_record *rec)
+ {
+ TDB_DATA data;
++ NTSTATUS status;
+
+ /*
+ * We have to store the header with empty data. TODO: Fix the
+@@ -890,8 +937,16 @@ static NTSTATUS db_ctdb_delete(struct db
+
+ ZERO_STRUCT(data);
+
+- return db_ctdb_store(rec, data, 0);
++ status = db_ctdb_store(rec, data, 0);
++ if (!NT_STATUS_IS_OK(status)) {
++ return status;
++ }
++
++#ifdef CTDB_CONTROL_SCHEDULE_FOR_DELETION
++ status = db_ctdb_send_schedule_for_deletion(rec);
++#endif
+
++ return status;
+ }
+
+ static int db_ctdb_record_destr(struct db_record* data)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/samba.org/CVE-2011-2522.diff new/patches/samba.org/CVE-2011-2522.diff
--- old/patches/samba.org/CVE-2011-2522.diff 1970-01-01 01:00:00.000000000 +0100
+++ new/patches/samba.org/CVE-2011-2522.diff 2011-07-27 01:32:23.000000000 +0200
@@ -0,0 +1,467 @@
+From 42321e69cb3b245f8cce5f85524d1f3bec780042 Mon Sep 17 00:00:00 2001
+From: Kai Blin <kai(a)samba.org>
+Date: Fri, 8 Jul 2011 12:56:21 +0200
+Subject: [PATCH 02/13] s3 swat: Allow getting the user's HTTP auth password
+
+Signed-off-by: Kai Blin <kai(a)samba.org>
+
+Index: source3/web/cgi.c
+===================================================================
+--- source3/web/cgi.c.orig
++++ source3/web/cgi.c
+@@ -19,6 +19,8 @@
+
+ #include "includes.h"
+ #include "web/swat_proto.h"
++#include "secrets.h"
++#include "../lib/util/util.h"
+
+ #define MAX_VARIABLES 10000
+
+@@ -42,6 +44,7 @@ static char *query_string;
+ static const char *baseurl;
+ static char *pathinfo;
+ static char *C_user;
++static char *C_pass;
+ static bool inetd_server;
+ static bool got_request;
+
+@@ -320,7 +323,23 @@ static void cgi_web_auth(void)
+ exit(0);
+ }
+
+- setuid(0);
++ C_user = SMB_STRDUP(user);
++
++ if (!setuid(0)) {
++ C_pass = secrets_fetch_generic("root", "SWAT");
++ if (C_pass == NULL) {
++ char *tmp_pass = NULL;
++ tmp_pass = generate_random_str(talloc_tos(), 16);
++ if (tmp_pass == NULL) {
++ printf("%sFailed to create random nonce for "
++ "SWAT session\n<br>%s\n", head, tail);
++ exit(0);
++ }
++ secrets_store_generic("root", "SWAT", tmp_pass);
++ C_pass = SMB_STRDUP(tmp_pass);
++ TALLOC_FREE(tmp_pass);
++ }
++ }
+ setuid(pwd->pw_uid);
+ if (geteuid() != pwd->pw_uid || getuid() != pwd->pw_uid) {
+ printf("%sFailed to become user %s - uid=%d/%d<br>%s\n",
+@@ -388,6 +407,7 @@ static bool cgi_handle_authorization(cha
+
+ /* Save the users name */
+ C_user = SMB_STRDUP(user);
++ C_pass = SMB_STRDUP(user_pass);
+ TALLOC_FREE(pass);
+ return True;
+ }
+@@ -422,6 +442,13 @@ char *cgi_user_name(void)
+ return(C_user);
+ }
+
++/***************************************************************************
++return a ptr to the users password
++ ***************************************************************************/
++char *cgi_user_pass(void)
++{
++ return(C_pass);
++}
+
+ /***************************************************************************
+ handle a file download
+Index: source3/web/statuspage.c
+===================================================================
+--- source3/web/statuspage.c.orig
++++ source3/web/statuspage.c
+@@ -247,9 +247,14 @@ void status_page(void)
+ int nr_running=0;
+ bool waitup = False;
+ TALLOC_CTX *ctx = talloc_stackframe();
++ const char form_name[] = "status";
+
+ smbd_pid = pid_to_procid(pidfile_pid("smbd"));
+
++ if (!verify_xsrf_token(form_name)) {
++ goto output_page;
++ }
++
+ if (cgi_variable("smbd_restart") || cgi_variable("all_restart")) {
+ stop_smbd();
+ start_smbd();
+@@ -326,9 +331,11 @@ void status_page(void)
+
+ initPid2Machine ();
+
++output_page:
+ printf("<H2>%s</H2>\n", _("Server Status"));
+
+ printf("<FORM method=post>\n");
++ print_xsrf_token(cgi_user_name(), cgi_user_pass(), form_name);
+
+ if (!autorefresh) {
+ printf("<input type=submit value=\"%s\" name=\"autorefresh\">\n", _("Auto Refresh"));
+Index: source3/web/swat.c
+===================================================================
+--- source3/web/swat.c.orig
++++ source3/web/swat.c
+@@ -29,6 +29,7 @@
+
+ #include "includes.h"
+ #include "web/swat_proto.h"
++#include "../lib/crypto/md5.h"
+
+ static int demo_mode = False;
+ static int passwd_only = False;
+@@ -50,6 +51,9 @@ static int iNumNonAutoPrintServices = 0;
+ #define DISABLE_USER_FLAG "disable_user_flag"
+ #define ENABLE_USER_FLAG "enable_user_flag"
+ #define RHOST "remote_host"
++#define XSRF_TOKEN "xsrf"
++#define XSRF_TIME "xsrf_time"
++#define XSRF_TIMEOUT 300
+
+ #define _(x) lang_msg_rotate(talloc_tos(),x)
+
+@@ -138,6 +142,76 @@ static char *make_parm_name(const char *
+ return parmname;
+ }
+
++void get_xsrf_token(const char *username, const char *pass,
++ const char *formname, time_t xsrf_time, char token_str[33])
++{
++ struct MD5Context md5_ctx;
++ uint8_t token[16];
++ int i;
++
++ token_str[0] = '\0';
++ ZERO_STRUCT(md5_ctx);
++ MD5Init(&md5_ctx);
++
++ MD5Update(&md5_ctx, (uint8_t *)formname, strlen(formname));
++ MD5Update(&md5_ctx, (uint8_t *)&xsrf_time, sizeof(time_t));
++ if (username != NULL) {
++ MD5Update(&md5_ctx, (uint8_t *)username, strlen(username));
++ }
++ if (pass != NULL) {
++ MD5Update(&md5_ctx, (uint8_t *)pass, strlen(pass));
++ }
++
++ MD5Final(token, &md5_ctx);
++
++ for(i = 0; i < sizeof(token); i++) {
++ char tmp[3];
++
++ snprintf(tmp, sizeof(tmp), "%02x", token[i]);
++ strncat(token_str, tmp, sizeof(tmp));
++ }
++}
++
++void print_xsrf_token(const char *username, const char *pass,
++ const char *formname)
++{
++ char token[33];
++ time_t xsrf_time = time(NULL);
++
++ get_xsrf_token(username, pass, formname, xsrf_time, token);
++ printf("<input type=\"hidden\" name=\"%s\" value=\"%s\">\n",
++ XSRF_TOKEN, token);
++ printf("<input type=\"hidden\" name=\"%s\" value=\"%lld\">\n",
++ XSRF_TIME, (long long int)xsrf_time);
++}
++
++bool verify_xsrf_token(const char *formname)
++{
++ char expected[33];
++ const char *username = cgi_user_name();
++ const char *pass = cgi_user_pass();
++ const char *token = cgi_variable_nonull(XSRF_TOKEN);
++ const char *time_str = cgi_variable_nonull(XSRF_TIME);
++ time_t xsrf_time = 0;
++ time_t now = time(NULL);
++
++ if (sizeof(time_t) == sizeof(int)) {
++ xsrf_time = atoi(time_str);
++ } else if (sizeof(time_t) == sizeof(long)) {
++ xsrf_time = atol(time_str);
++ } else if (sizeof(time_t) == sizeof(long long)) {
++ xsrf_time = atoll(time_str);
++ }
++
++ if (abs(now - xsrf_time) > XSRF_TIMEOUT) {
++ return false;
++ }
++
++ get_xsrf_token(username, pass, formname, xsrf_time, expected);
++ return (strncmp(expected, token, sizeof(expected)) == 0);
++}
++
++
+ /****************************************************************************
+ include a lump of html in a page
+ ****************************************************************************/
+@@ -611,13 +685,20 @@ static void welcome_page(void)
+ static void viewconfig_page(void)
+ {
+ int full_view=0;
++ const char form_name[] = "viewconfig";
++
++ if (!verify_xsrf_token(form_name)) {
++ goto output_page;
++ }
+
+ if (cgi_variable("full_view")) {
+ full_view = 1;
+ }
+
++output_page:
+ printf("<H2>%s</H2>\n", _("Current Config"));
+ printf("<form method=post>\n");
++ print_xsrf_token(cgi_user_name(), cgi_user_pass(), form_name);
+
+ if (full_view) {
+ printf("<input type=submit name=\"normal_view\" value=\"%s\">\n", _("Normal View"));
+@@ -637,18 +718,25 @@ static void viewconfig_page(void)
+ static void wizard_params_page(void)
+ {
+ unsigned int parm_filter = FLAG_WIZARD;
++ const char form_name[] = "wizard_params";
+
+ /* Here we first set and commit all the parameters that were selected
+ in the previous screen. */
+
+ printf("<H2>%s</H2>\n", _("Wizard Parameter Edit Page"));
+
++ if (!verify_xsrf_token(form_name)) {
++ goto output_page;
++ }
++
+ if (cgi_variable("Commit")) {
+ commit_parameters(GLOBAL_SECTION_SNUM);
+ save_reload(-1);
+ }
+
++output_page:
+ printf("<form name=\"swatform\" method=post action=wizard_params>\n");
++ print_xsrf_token(cgi_user_name(), cgi_user_pass(), form_name);
+
+ if (have_write_access) {
+ printf("<input type=submit name=\"Commit\" value=\"Commit Changes\">\n");
+@@ -684,6 +772,11 @@ static void wizard_page(void)
+ int have_home = -1;
+ int HomeExpo = 0;
+ int SerType = 0;
++ const char form_name[] = "wizard";
++
++ if (!verify_xsrf_token(form_name)) {
++ goto output_page;
++ }
+
+ if (cgi_variable("Rewrite")) {
+ (void) rewritecfg_file();
+@@ -774,10 +867,12 @@ static void wizard_page(void)
+ winstype = 3;
+
+ role = lp_server_role();
+-
++
++output_page:
+ /* Here we go ... */
+ printf("<H2>%s</H2>\n", _("Samba Configuration Wizard"));
+ printf("<form method=post action=wizard>\n");
++ print_xsrf_token(cgi_user_name(), cgi_user_pass(), form_name);
+
+ if (have_write_access) {
+ printf("%s\n", _("The \"Rewrite smb.conf file\" button will clear the smb.conf file of all default values and of comments."));
+@@ -846,9 +941,14 @@ static void globals_page(void)
+ {
+ unsigned int parm_filter = FLAG_BASIC;
+ int mode = 0;
++ const char form_name[] = "globals";
+
+ printf("<H2>%s</H2>\n", _("Global Parameters"));
+
++ if (!verify_xsrf_token(form_name)) {
++ goto output_page;
++ }
++
+ if (cgi_variable("Commit")) {
+ commit_parameters(GLOBAL_SECTION_SNUM);
+ save_reload(-1);
+@@ -861,7 +961,9 @@ static void globals_page(void)
+ if ( cgi_variable("AdvMode"))
+ mode = 1;
+
++output_page:
+ printf("<form name=\"swatform\" method=post action=globals>\n");
++ print_xsrf_token(cgi_user_name(), cgi_user_pass(), form_name);
+
+ ViewModeBoxes( mode );
+ switch ( mode ) {
+@@ -901,11 +1003,17 @@ static void shares_page(void)
+ int mode = 0;
+ unsigned int parm_filter = FLAG_BASIC;
+ size_t converted_size;
++ const char form_name[] = "shares";
++
++ printf("<H2>%s</H2>\n", _("Share Parameters"));
++
++ if (!verify_xsrf_token(form_name)) {
++ goto output_page;
++ }
+
+ if (share)
+ snum = lp_servicenumber(share);
+
+- printf("<H2>%s</H2>\n", _("Share Parameters"));
+
+ if (cgi_variable("Commit") && snum >= 0) {
+ commit_parameters(snum);
+@@ -931,10 +1039,6 @@ static void shares_page(void)
+ }
+ }
+
+- printf("<FORM name=\"swatform\" method=post>\n");
+-
+- printf("<table>\n");
+-
+ if ( cgi_variable("ViewMode") )
+ mode = atoi(cgi_variable_nonull("ViewMode"));
+ if ( cgi_variable("BasicMode"))
+@@ -942,6 +1046,12 @@ static void shares_page(void)
+ if ( cgi_variable("AdvMode"))
+ mode = 1;
+
++output_page:
++ printf("<FORM name=\"swatform\" method=post>\n");
++ print_xsrf_token(cgi_user_name(), cgi_user_pass(), form_name);
++
++ printf("<table>\n");
++
+ ViewModeBoxes( mode );
+ switch ( mode ) {
+ case 0:
+@@ -1138,6 +1248,8 @@ static void chg_passwd(void)
+ static void passwd_page(void)
+ {
+ const char *new_name = cgi_user_name();
++ const char passwd_form[] = "passwd";
++ const char rpasswd_form[] = "rpasswd";
+
+ /*
+ * After the first time through here be nice. If the user
+@@ -1152,6 +1264,7 @@ static void passwd_page(void)
+ printf("<H2>%s</H2>\n", _("Server Password Management"));
+
+ printf("<FORM name=\"swatform\" method=post>\n");
++ print_xsrf_token(cgi_user_name(), cgi_user_pass(), passwd_form);
+
+ printf("<table>\n");
+
+@@ -1191,14 +1304,16 @@ static void passwd_page(void)
+ * Do some work if change, add, disable or enable was
+ * requested. It could be this is the first time through this
+ * code, so there isn't anything to do. */
+- if ((cgi_variable(CHG_S_PASSWD_FLAG)) || (cgi_variable(ADD_USER_FLAG)) || (cgi_variable(DELETE_USER_FLAG)) ||
+- (cgi_variable(DISABLE_USER_FLAG)) || (cgi_variable(ENABLE_USER_FLAG))) {
++ if (verify_xsrf_token(passwd_form) &&
++ ((cgi_variable(CHG_S_PASSWD_FLAG)) || (cgi_variable(ADD_USER_FLAG)) || (cgi_variable(DELETE_USER_FLAG)) ||
++ (cgi_variable(DISABLE_USER_FLAG)) || (cgi_variable(ENABLE_USER_FLAG)))) {
+ chg_passwd();
+ }
+
+ printf("<H2>%s</H2>\n", _("Client/Server Password Management"));
+
+ printf("<FORM name=\"swatform\" method=post>\n");
++ print_xsrf_token(cgi_user_name(), cgi_user_pass(), rpasswd_form);
+
+ printf("<table>\n");
+
+@@ -1231,7 +1346,7 @@ static void passwd_page(void)
+ * password somewhere other than the server. It could be this
+ * is the first time through this code, so there isn't
+ * anything to do. */
+- if (cgi_variable(CHG_R_PASSWD_FLAG)) {
++ if (verify_xsrf_token(passwd_form) && cgi_variable(CHG_R_PASSWD_FLAG)) {
+ chg_passwd();
+ }
+
+@@ -1248,18 +1363,15 @@ static void printers_page(void)
+ int i;
+ int mode = 0;
+ unsigned int parm_filter = FLAG_BASIC;
++ const char form_name[] = "printers";
++
++ if (!verify_xsrf_token(form_name)) {
++ goto output_page;
++ }
+
+ if (share)
+ snum = lp_servicenumber(share);
+
+- printf("<H2>%s</H2>\n", _("Printer Parameters"));
+-
+- printf("<H3>%s</H3>\n", _("Important Note:"));
+- printf("%s",_("Printer names marked with [*] in the Choose Printer drop-down box "));
+- printf("%s",_("are autoloaded printers from "));
+- printf("<A HREF=\"/swat/help/smb.conf.5.html#printcapname\" target=\"docs\">%s</A>\n", _("Printcap Name"));
+- printf("%s\n", _("Attempting to delete these printers from SWAT will have no effect."));
+-
+ if (cgi_variable("Commit") && snum >= 0) {
+ commit_parameters(snum);
+ if (snum >= iNumNonAutoPrintServices)
+@@ -1288,8 +1400,6 @@ static void printers_page(void)
+ }
+ }
+
+- printf("<FORM name=\"swatform\" method=post>\n");
+-
+ if ( cgi_variable("ViewMode") )
+ mode = atoi(cgi_variable_nonull("ViewMode"));
+ if ( cgi_variable("BasicMode"))
+@@ -1297,6 +1407,19 @@ static void printers_page(void)
+ if ( cgi_variable("AdvMode"))
+ mode = 1;
+
++output_page:
++ printf("<H2>%s</H2>\n", _("Printer Parameters"));
++
++ printf("<H3>%s</H3>\n", _("Important Note:"));
++ printf("%s",_("Printer names marked with [*] in the Choose Printer drop-down box "));
++ printf("%s",_("are autoloaded printers from "));
++ printf("<A HREF=\"/swat/help/smb.conf.5.html#printcapname\" target=\"docs\">%s</A>\n", _("Printcap Name"));
++ printf("%s\n", _("Attempting to delete these printers from SWAT will have no effect."));
++
++
++ printf("<FORM name=\"swatform\" method=post>\n");
++ print_xsrf_token(cgi_user_name(), cgi_user_pass(), form_name);
++
+ ViewModeBoxes( mode );
+ switch ( mode ) {
+ case 0:
+Index: source3/web/swat_proto.h
+===================================================================
+--- source3/web/swat_proto.h.orig
++++ source3/web/swat_proto.h
+@@ -31,6 +31,7 @@ const char *cgi_variable(const char *nam
+ const char *cgi_variable_nonull(const char *name);
+ bool am_root(void);
+ char *cgi_user_name(void);
++char *cgi_user_pass(void);
+ void cgi_setup(const char *rootdir, int auth_required);
+ const char *cgi_baseurl(void);
+ const char *cgi_pathinfo(void);
+@@ -66,5 +67,10 @@ void status_page(void);
+ /* The following definitions come from web/swat.c */
+
+ const char *lang_msg_rotate(TALLOC_CTX *ctx, const char *msgid);
++void get_xsrf_token(const char *username, const char *pass,
++ const char *formname, time_t xsrf_time, char token_str[33]);
++void print_xsrf_token(const char *username, const char *pass,
++ const char *formname);
++bool verify_xsrf_token(const char *formname);
+
+ #endif /* _SWAT_PROTO_H_ */
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/samba.org/CVE-2011-2694.diff new/patches/samba.org/CVE-2011-2694.diff
--- old/patches/samba.org/CVE-2011-2694.diff 1970-01-01 01:00:00.000000000 +0100
+++ new/patches/samba.org/CVE-2011-2694.diff 2011-07-27 02:02:14.000000000 +0200
@@ -0,0 +1,47 @@
+From be65f08f70a4fdd2c58394ec4338aa175d7b8f3b Mon Sep 17 00:00:00 2001
+From: Kai Blin <kai(a)samba.org>
+Date: Thu, 7 Jul 2011 10:03:33 +0200
+Subject: [PATCH 01/13] s3 swat: Fix possible XSS attack (bug #8289)
+
+Nobuhiro Tsuji of NTT DATA SECURITY CORPORATION reported a possible XSS attack
+against SWAT, the Samba Web Administration Tool. The attack uses reflection to
+insert arbitrary content into the "change password" page.
+
+This patch fixes the reflection issue by not printing user-specified content on
+the website anymore.
+
+Signed-off-by: Kai Blin <kai(a)samba.org>
+
+Index: source3/web/swat.c
+===================================================================
+--- source3/web/swat.c.orig
++++ source3/web/swat.c
+@@ -1231,11 +1231,9 @@ static void chg_passwd(void)
+ if(cgi_variable(CHG_S_PASSWD_FLAG)) {
+ printf("<p>");
+ if (rslt == True) {
+- printf(_(" The passwd for '%s' has been changed."), cgi_variable_nonull(SWAT_USER));
+- printf("\n");
++ printf("%s\n", _(" The passwd has been changed."));
+ } else {
+- printf(_(" The passwd for '%s' has NOT been changed."), cgi_variable_nonull(SWAT_USER));
+- printf("\n");
++ printf("%s\n", _(" The passwd for has NOT been changed."));
+ }
+ }
+
+@@ -1251,14 +1249,6 @@ static void passwd_page(void)
+ const char passwd_form[] = "passwd";
+ const char rpasswd_form[] = "rpasswd";
+
+- /*
+- * After the first time through here be nice. If the user
+- * changed the User box text to another users name, remember it.
+- */
+- if (cgi_variable(SWAT_USER)) {
+- new_name = cgi_variable_nonull(SWAT_USER);
+- }
+-
+ if (!new_name) new_name = "";
+
+ printf("<H2>%s</H2>\n", _("Server Password Management"));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/samba.org/a04c47b10758b6aa8035107e816dc7efac871646 new/patches/samba.org/a04c47b10758b6aa8035107e816dc7efac871646
--- old/patches/samba.org/a04c47b10758b6aa8035107e816dc7efac871646 1970-01-01 01:00:00.000000000 +0100
+++ new/patches/samba.org/a04c47b10758b6aa8035107e816dc7efac871646 2011-07-21 22:10:31.000000000 +0200
@@ -0,0 +1,24 @@
+commit a04c47b10758b6aa8035107e816dc7efac871646
+Author: Michael Adam <obnox(a)samba.org>
+Date: Thu Dec 23 16:46:24 2010 +0100
+
+ s3:ctdb: samba can now handle the NOREPLY flag
+
+ Revert "samba3 can't handle NOREPLY yet"
+
+ This reverts commit 9bf211db6d7d6ef6e59508de69d6d8dfe5bae059.
+
+Index: source3/lib/ctdbd_conn.c
+===================================================================
+--- source3/lib/ctdbd_conn.c.orig
++++ source3/lib/ctdbd_conn.c
+@@ -732,9 +732,6 @@ static NTSTATUS ctdbd_control(struct ctd
+ struct ctdbd_connection *new_conn = NULL;
+ NTSTATUS status;
+
+- /* the samba3 ctdb code can't handle NOREPLY yet */
+- flags &= ~CTDB_CTRL_FLAG_NOREPLY;
+-
+ if (conn == NULL) {
+ status = ctdbd_init_connection(NULL, &new_conn);
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/samba.org/aa8d91ae8e6b4b813c0479f09be9e090aff047a9 new/patches/samba.org/aa8d91ae8e6b4b813c0479f09be9e090aff047a9
--- old/patches/samba.org/aa8d91ae8e6b4b813c0479f09be9e090aff047a9 1970-01-01 01:00:00.000000000 +0100
+++ new/patches/samba.org/aa8d91ae8e6b4b813c0479f09be9e090aff047a9 2011-04-06 14:53:00.000000000 +0200
@@ -0,0 +1,29 @@
+commit aa8d91ae8e6b4b813c0479f09be9e090aff047a9
+Author: Volker Lendecke <vl(a)samba.org>
+Date: Mon May 10 12:05:01 2010 +0200
+
+ libwbclient: Fix a fd-leak at dlclose-time
+
+ __attribute__((destructor)) makes winbind_close_sock() being called at
+ dlclose() time.
+
+ Found while testing apache on Linux with mod_auth_pam.
+
+ Other platforms will have to find a different fix. One possibility would be to
+ always close the socket after each operation, but this badly sucks
+ performance-wise.
+
+Index: nsswitch/wb_common.c
+===================================================================
+--- nsswitch/wb_common.c.orig
++++ nsswitch/wb_common.c
+@@ -61,6 +61,9 @@ static void init_response(struct winbind
+
+ /* Close established socket */
+
++#if HAVE_FUNCTION_ATTRIBUTE_DESTRUCTOR
++__attribute__((destructor))
++#endif
+ void winbind_close_sock(void)
+ {
+ if (winbindd_fd != -1) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/samba.org/b807c58b655f1ffbf849f5de9eef66136bdb4a52 new/patches/samba.org/b807c58b655f1ffbf849f5de9eef66136bdb4a52
--- old/patches/samba.org/b807c58b655f1ffbf849f5de9eef66136bdb4a52 1970-01-01 01:00:00.000000000 +0100
+++ new/patches/samba.org/b807c58b655f1ffbf849f5de9eef66136bdb4a52 2011-07-21 22:10:31.000000000 +0200
@@ -0,0 +1,37 @@
+commit b807c58b655f1ffbf849f5de9eef66136bdb4a52
+Author: Björn Baumbach <bb(a)sernet.de>
+Date: Tue Jul 12 17:32:55 2011 +0200
+
+ s3: dbwrap_ctdb.c: fix #ifdef CTDB_CONTROL_SCHEDULE_FOR_DELETION issue (bug #8303)
+
+ Check for HAVE_CTDB_CONTROL_SCHEDULE_FOR_DELETION_DECL instead of
+ CTDB_CONTROL_SCHEDULE_FOR_DELETION, which is an enum member and not a
+ define.
+
+ Signed-off-by: Stefan Metzmacher <metze(a)samba.org>
+
+ Autobuild-User: Stefan Metzmacher <metze(a)samba.org>
+ Autobuild-Date: Tue Jul 12 18:56:30 CEST 2011 on sn-devel-104
+
+Index: source3/lib/dbwrap_ctdb.c
+===================================================================
+--- source3/lib/dbwrap_ctdb.c.orig
++++ source3/lib/dbwrap_ctdb.c
+@@ -879,7 +879,7 @@ static NTSTATUS db_ctdb_store(struct db_
+
+
+
+-#ifdef CTDB_CONTROL_SCHEDULE_FOR_DELETION
++#ifdef HAVE_CTDB_CONTROL_SCHEDULE_FOR_DELETION_DECL
+ static NTSTATUS db_ctdb_send_schedule_for_deletion(struct db_record *rec)
+ {
+ NTSTATUS status;
+@@ -942,7 +942,7 @@ static NTSTATUS db_ctdb_delete(struct db
+ return status;
+ }
+
+-#ifdef CTDB_CONTROL_SCHEDULE_FOR_DELETION
++#ifdef HAVE_CTDB_CONTROL_SCHEDULE_FOR_DELETION_DECL
+ status = db_ctdb_send_schedule_for_deletion(rec);
+ #endif
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/samba.org/bda7d3134ecc547b9c174a04fd2d02813b06f038 new/patches/samba.org/bda7d3134ecc547b9c174a04fd2d02813b06f038
--- old/patches/samba.org/bda7d3134ecc547b9c174a04fd2d02813b06f038 1970-01-01 01:00:00.000000000 +0100
+++ new/patches/samba.org/bda7d3134ecc547b9c174a04fd2d02813b06f038 2011-07-21 22:10:31.000000000 +0200
@@ -0,0 +1,22 @@
+commit bda7d3134ecc547b9c174a04fd2d02813b06f038
+Author: Michael Adam <obnox(a)samba.org>
+Date: Tue Mar 8 16:26:34 2011 +0100
+
+ s3:ctdb: pass the ctdb control flags to the ctdb daemon when sending the control
+
+ The only flag that is currently used is the NOREPLY flag to indicate that
+ the client expects no reply packet. This needs to get passed down to the
+ ctdb daemon so that it really does not send a reply.
+
+Index: source3/lib/ctdbd_conn.c
+===================================================================
+--- source3/lib/ctdbd_conn.c.orig
++++ source3/lib/ctdbd_conn.c
+@@ -754,6 +754,7 @@ static NTSTATUS ctdbd_control(struct ctd
+ req.opcode = opcode;
+ req.srvid = srvid;
+ req.datalen = data.dsize;
++ req.flags = flags;
+
+ DEBUG(10, ("ctdbd_control: Sending ctdb packet\n"));
+ ctdb_packet_dump(&req.hdr);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/samba.org/c7655450f4c9784b700218628568c39e3528e9df new/patches/samba.org/c7655450f4c9784b700218628568c39e3528e9df
--- old/patches/samba.org/c7655450f4c9784b700218628568c39e3528e9df 1970-01-01 01:00:00.000000000 +0100
+++ new/patches/samba.org/c7655450f4c9784b700218628568c39e3528e9df 2011-07-21 22:10:31.000000000 +0200
@@ -0,0 +1,20 @@
+commit c7655450f4c9784b700218628568c39e3528e9df
+Author: Michael Adam <obnox(a)samba.org>
+Date: Thu Dec 23 16:43:55 2010 +0100
+
+ s3:ctdb: correctly handle cstatus if CTDB_CTRL_FLAG_NOREPLY is set.
+
+Index: source3/lib/ctdbd_conn.c
+===================================================================
+--- source3/lib/ctdbd_conn.c.orig
++++ source3/lib/ctdbd_conn.c
+@@ -780,6 +780,9 @@ static NTSTATUS ctdbd_control(struct ctd
+
+ if (flags & CTDB_CTRL_FLAG_NOREPLY) {
+ TALLOC_FREE(new_conn);
++ if (cstatus) {
++ *cstatus = 0;
++ }
+ return NT_STATUS_OK;
+ }
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/samba.org/fe4dcd44ec581afb631125b1d0bade055ca97e30 new/patches/samba.org/fe4dcd44ec581afb631125b1d0bade055ca97e30
--- old/patches/samba.org/fe4dcd44ec581afb631125b1d0bade055ca97e30 1970-01-01 01:00:00.000000000 +0100
+++ new/patches/samba.org/fe4dcd44ec581afb631125b1d0bade055ca97e30 2011-07-21 22:10:31.000000000 +0200
@@ -0,0 +1,34 @@
+commit fe4dcd44ec581afb631125b1d0bade055ca97e30
+Author: Volker Lendecke <vl(a)samba.org>
+Date: Sat Aug 21 11:32:58 2010 +0200
+
+ s3: Fix bug 7635
+
+ smbclient -M not sending due to NT_STATUS_PIPE_BROKEN
+
+Index: source3/libsmb/climessage.c
+===================================================================
+--- source3/libsmb/climessage.c.orig
++++ source3/libsmb/climessage.c
+@@ -63,8 +63,10 @@ static struct tevent_req *cli_message_st
+
+ *p++ = 4;
+ memcpy(p, utmp, ulen);
++ p += ulen;
+ *p++ = 4;
+ memcpy(p, htmp, hlen);
++ p += hlen;
+ TALLOC_FREE(htmp);
+ TALLOC_FREE(utmp);
+
+@@ -163,8 +165,8 @@ static struct tevent_req *cli_message_te
+ TALLOC_FREE(tmp);
+ return tevent_req_post(req, ev);
+ }
+- SCVAL(bytes, 0, 0); /* pad */
+- SSVAL(bytes, 1, msglen);
++ SCVAL(bytes, 0, 1); /* pad */
++ SSVAL(bytes+1, 0, msglen);
+ memcpy(bytes+3, msg, msglen);
+ TALLOC_FREE(tmp);
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/series new/patches/series
--- old/patches/series 2011-02-21 23:36:51.000000000 +0100
+++ new/patches/series 2011-07-27 02:11:44.000000000 +0200
@@ -16,6 +16,18 @@
samba.org/0afb2995a2177afa2eb7b8f99887a39cdaf23a15 -p0 # bso 7791, bnc 656112
samba.org/9c12232f1ae36e00d04114ad73edd8ba3c2c6a5c -p0 # bnc 666460
samba.org/CVE-2011-0719.diff -p0 # bnc 670431, bso 7949
+samba.org/36e736871e28665ffcbbc4d0c87e1a2b60fcf0e0 -p0 # bso 7684, bnc 668773
+samba.org/aa8d91ae8e6b4b813c0479f09be9e090aff047a9 -p0 # bso 7684, bnc 668773
+samba.org/21576e3f8c32878910460bf9575c200ad93d682a -p0 # bnc 643119
+samba.org/fe4dcd44ec581afb631125b1d0bade055ca97e30 -p0 # bso 7635, bnc 681913
+samba.org/1c579318ae2d2480ee4cc998443c0d1661b39846 -p0 # bnc 643787
+samba.org/c7655450f4c9784b700218628568c39e3528e9df -p0 # bnc 705170
+samba.org/a04c47b10758b6aa8035107e816dc7efac871646 -p0 # bnc 705170
+samba.org/bda7d3134ecc547b9c174a04fd2d02813b06f038 -p0 # bnc 705170
+samba.org/3a3c118a7edf679d6b545df035fd8d51b00e0830 -p0 # bnc 705170
+samba.org/b807c58b655f1ffbf849f5de9eef66136bdb4a52 -p0 # bnc 705170
+samba.org/CVE-2011-2522.diff -p0 # bnc 705241, bso 8290
+samba.org/CVE-2011-2694.diff -p0 # bnc 708503, bso 8289
# SuSE specific changes
# disabled -> WIP lmuelle
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/suse/async_printcap_svc_update.diff new/patches/suse/async_printcap_svc_update.diff
--- old/patches/suse/async_printcap_svc_update.diff 2011-02-21 23:39:29.000000000 +0100
+++ new/patches/suse/async_printcap_svc_update.diff 2011-07-27 02:16:12.000000000 +0200
@@ -217,7 +217,7 @@
===================================================================
--- source3/web/swat.c.orig
+++ source3/web/swat.c
-@@ -490,7 +490,7 @@ static int save_reload(int snum)
+@@ -564,7 +564,7 @@ static int save_reload(int snum)
return 0;
}
iNumNonAutoPrintServices = lp_numservices();
@@ -226,7 +226,7 @@
return 1;
}
-@@ -1434,7 +1434,7 @@ const char *lang_msg_rotate(TALLOC_CTX *
+@@ -1547,7 +1547,7 @@ const char *lang_msg_rotate(TALLOC_CTX *
load_config(True);
load_interfaces();
iNumNonAutoPrintServices = lp_numservices();
++++++ vendor-files.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/vendor-files/tools/package-data new/vendor-files/tools/package-data
--- old/vendor-files/tools/package-data 2011-03-07 17:07:55.000000000 +0100
+++ new/vendor-files/tools/package-data 2011-07-27 13:38:54.000000000 +0200
@@ -1,2 +1,2 @@
# This is an autogenrated file.
-SAMBA_PACKAGE_SVN_VERSION="2508"
+SAMBA_PACKAGE_SVN_VERSION="2573"
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package ruby-kde4 for openSUSE:Factory
checked in at Wed Jul 27 18:44:50 CEST 2011.
--------
--- ruby-kde4/ruby-kde4.changes 2011-07-21 15:45:47.000000000 +0200
+++ /mounts/work_src_done/STABLE/ruby-kde4/ruby-kde4.changes 2011-07-22 20:25:46.000000000 +0200
@@ -1,0 +2,8 @@
+Fri Jul 22 20:25:45 CEST 2011 - dmueller(a)suse.de
+
+- update to 4.7.0
+ * Small fixes over KDE 4.7 RC2
+ * see http://kde.org/announcements/4.7 for details
+
+
+-------------------------------------------------------------------
calling whatdependson for head-i586
Old:
----
korundum-4.6.95.tar.bz2
New:
----
korundum-4.7.0.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ruby-kde4.spec ++++++
--- /var/tmp/diff_new_pack.eyCmii/_old 2011-07-27 18:44:38.000000000 +0200
+++ /var/tmp/diff_new_pack.eyCmii/_new 2011-07-27 18:44:38.000000000 +0200
@@ -40,7 +40,7 @@
License: LGPLv2.1+
Group: Development/Libraries/KDE
Summary: Kdebindings Ruby-KDE library
-Version: 4.6.95
+Version: 4.7.0
Release: 1
Source0: korundum-%version.tar.bz2
Patch0: no-examples.diff
++++++ korundum-4.6.95.tar.bz2 -> korundum-4.7.0.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/korundum-4.6.95/COPYING new/korundum-4.7.0/COPYING
--- old/korundum-4.6.95/COPYING 1970-01-01 01:00:00.000000000 +0100
+++ new/korundum-4.7.0/COPYING 2011-07-19 23:34:13.000000000 +0200
@@ -0,0 +1,355 @@
+Trademarks
+----------
+
+"[QtRuby": "[Qt]" name usage by permission of Trolltech AS (now Qt Software),
+owner of the Qt(TM) trademark
+
+License
+-------
+
+NOTE! The GPL below is copyrighted by the Free Software Foundation, but
+the instance of code that it refers to (the kde programs) are copyrighted
+by the authors who actually wrote it.
+
+---------------------------------------------------------------------------
+
+ 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 Library 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. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+ Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary. To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ GNU GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License. The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language. (Hereinafter, translation is included without limitation in
+the term "modification".) Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+ 1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+ 2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) You must cause the modified files to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ b) You must cause any work that you distribute or publish, that in
+ whole or in part contains or is derived from the Program or any
+ part thereof, to be licensed as a whole at no charge to all third
+ parties under the terms of this License.
+
+ c) If the modified program normally reads commands interactively
+ when run, you must cause it, when started running for such
+ interactive use in the most ordinary way, to print or display an
+ announcement including an appropriate copyright notice and a
+ notice that there is no warranty (or else, saying that you provide
+ a warranty) and that users may redistribute the program under
+ these conditions, and telling the user how to view a copy of this
+ License. (Exception: if the Program itself is interactive but
+ does not normally print such an announcement, your work based on
+ the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+ a) Accompany it with the complete corresponding machine-readable
+ source code, which must be distributed under the terms of Sections
+ 1 and 2 above on a medium customarily used for software interchange; or,
+
+ b) Accompany it with a written offer, valid for at least three
+ years, to give any third party, for a charge no more than your
+ cost of physically performing source distribution, a complete
+ machine-readable copy of the corresponding source code, to be
+ distributed under the terms of Sections 1 and 2 above on a medium
+ customarily used for software interchange; or,
+
+ c) Accompany it with the information you received as to the offer
+ to distribute corresponding source code. (This alternative is
+ allowed only for noncommercial distribution and only if you
+ received the program in object code or executable form with such
+ an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it. For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable. However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License. Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+ 5. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Program or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+ 6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+ 7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all. For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded. In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+ 9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation. If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+ 10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission. For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this. Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+ NO WARRANTY
+
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+ <one line to give the program's name and a brief idea of what it does.>
+ Copyright (C) 19yy <name of author>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+ Gnomovision version 69, Copyright (C) 19yy name of author
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+ <signature of Ty Coon>, 1 April 1989
+ Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs. If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library. If this is what you want to do, use the GNU Library General
+Public License instead of this License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/korundum-4.6.95/COPYING.LIB new/korundum-4.7.0/COPYING.LIB
--- old/korundum-4.6.95/COPYING.LIB 1970-01-01 01:00:00.000000000 +0100
+++ new/korundum-4.7.0/COPYING.LIB 2011-07-19 23:34:13.000000000 +0200
@@ -0,0 +1,510 @@
+
+ GNU LESSER GENERAL PUBLIC LICENSE
+ Version 2.1, February 1999
+
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+ 51 Franklin St, 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 existence of
+any free program. We wish to make sure that a company cannot
+effectively restrict the users of a free program by obtaining a
+restrictive license from a patent holder. Therefore, we insist that
+any patent license obtained for a version of the library must be
+consistent with the full freedom of use specified in this license.
+
+ Most GNU software, including some libraries, is covered by the
+ordinary GNU General Public License. This license, the GNU Lesser
+General Public License, applies to certain designated libraries, and
+is quite different from the ordinary General Public License. We use
+this license for certain libraries in order to permit linking those
+libraries into non-free programs.
+
+ When a program is linked with a library, whether statically or using
+a shared library, the combination of the two is legally speaking a
+combined work, a derivative of the original library. The ordinary
+General Public License therefore permits such linking only if the
+entire combination fits its criteria of freedom. The Lesser General
+Public License permits more lax criteria for linking other code with
+the library.
+
+ We call this license the "Lesser" General Public License because it
+does Less to protect the user's freedom than the ordinary General
+Public License. It also provides other free software developers Less
+of an advantage over competing non-free programs. These disadvantages
+are the reason we use the ordinary General Public License for many
+libraries. However, the Lesser license provides advantages in certain
+special circumstances.
+
+ For example, on rare occasions, there may be a special need to
+encourage the widest possible use of a certain library, so that it
+becomes a de-facto standard. To achieve this, non-free programs must
+be allowed to use the library. A more frequent case is that a free
+library does the same job as widely used non-free libraries. In this
+case, there is little to gain by limiting the free library to free
+software only, so we use the Lesser General Public License.
+
+ In other cases, permission to use a particular library in non-free
+programs enables a greater number of people to use a large body of
+free software. For example, permission to use the GNU C Library in
+non-free programs enables many more people to use the whole GNU
+operating system, as well as its variant, the GNU/Linux operating
+system.
+
+ Although the Lesser General Public License is Less protective of the
+users' freedom, it does ensure that the user of a program that is
+linked with the Library has the freedom and the wherewithal to run
+that program using a modified version of the Library.
+
+ The precise terms and conditions for copying, distribution and
+modification follow. Pay close attention to the difference between a
+"work based on the library" and a "work that uses the library". The
+former contains code derived from the library, whereas the latter must
+be combined with the library in order to run.
+
+ GNU LESSER GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License Agreement applies to any software library or other
+program which contains a notice placed by the copyright holder or
+other authorized party saying it may be distributed under the terms of
+this Lesser General Public License (also called "this License").
+Each licensee is addressed as "you".
+
+ A "library" means a collection of software functions and/or data
+prepared so as to be conveniently linked with application programs
+(which use some of those functions and data) to form executables.
+
+ The "Library", below, refers to any such software library or work
+which has been distributed under these terms. A "work based on the
+Library" means either the Library or any derivative work under
+copyright law: that is to say, a work containing the Library or a
+portion of it, either verbatim or with modifications and/or translated
+straightforwardly into another language. (Hereinafter, translation is
+included without limitation in the term "modification".)
+
+ "Source code" for a work means the preferred form of the work for
+making modifications to it. For a library, complete source code means
+all the source code for all modules it contains, plus any associated
+interface definition files, plus the scripts used to control
+compilation and installation of the library.
+
+ Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running a program using the Library is not restricted, and output from
+such a program is covered only if its contents constitute a work based
+on the Library (independent of the use of the Library in a tool for
+writing it). Whether that is true depends on what the Library does
+and what the program that uses the Library does.
+
+ 1. You may copy and distribute verbatim copies of the Library's
+complete source code as you receive it, in any medium, provided that
+you conspicuously and appropriately publish on each copy an
+appropriate copyright notice and disclaimer of warranty; keep intact
+all the notices that refer to this License and to the absence of any
+warranty; and distribute a copy of this License along with the
+Library.
+
+ You may charge a fee for the physical act of transferring a copy,
+and you may at your option offer warranty protection in exchange for a
+fee.
+
+ 2. You may modify your copy or copies of the Library or any portion
+of it, thus forming a work based on the Library, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) The modified work must itself be a software library.
+
+ b) You must cause the files modified to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ c) You must cause the whole of the work to be licensed at no
+ charge to all third parties under the terms of this License.
+
+ d) If a facility in the modified Library refers to a function or a
+ table of data to be supplied by an application program that uses
+ the facility, other than as an argument passed when the facility
+ is invoked, then you must make a good faith effort to ensure that,
+ in the event an application does not supply such function or
+ table, the facility still operates, and performs whatever part of
+ its purpose remains meaningful.
+
+ (For example, a function in a library to compute square roots has
+ a purpose that is entirely well-defined independent of the
+ application. Therefore, Subsection 2d requires that any
+ application-supplied function or table used by this function must
+ be optional: if the application does not supply it, the square
+ root function must still compute square roots.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Library,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Library, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote
+it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Library.
+
+In addition, mere aggregation of another work not based on the Library
+with the Library (or with a work based on the Library) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may opt to apply the terms of the ordinary GNU General Public
+License instead of this License to a given copy of the Library. To do
+this, you must alter all the notices that refer to this License, so
+that they refer to the ordinary GNU General Public License, version 2,
+instead of to this License. (If a newer version than version 2 of the
+ordinary GNU General Public License has appeared, then you can specify
+that version instead if you wish.) Do not make any other change in
+these notices.
+
+ Once this change is made in a given copy, it is irreversible for
+that copy, so the ordinary GNU General Public License applies to all
+subsequent copies and derivative works made from that copy.
+
+ This option is useful when you wish to copy part of the code of
+the Library into a program that is not a library.
+
+ 4. You may copy and distribute the Library (or a portion or
+derivative of it, under Section 2) in object code or executable form
+under the terms of Sections 1 and 2 above provided that you accompany
+it with the complete corresponding machine-readable source code, which
+must be distributed under the terms of Sections 1 and 2 above on a
+medium customarily used for software interchange.
+
+ If distribution of object code is made by offering access to copy
+from a designated place, then offering equivalent access to copy the
+source code from the same place satisfies the requirement to
+distribute the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 5. A program that contains no derivative of any portion of the
+Library, but is designed to work with the Library by being compiled or
+linked with it, is called a "work that uses the Library". Such a
+work, in isolation, is not a derivative work of the Library, and
+therefore falls outside the scope of this License.
+
+ However, linking a "work that uses the Library" with the Library
+creates an executable that is a derivative of the Library (because it
+contains portions of the Library), rather than a "work that uses the
+library". The executable is therefore covered by this License.
+Section 6 states terms for distribution of such executables.
+
+ When a "work that uses the Library" uses material from a header file
+that is part of the Library, the object code for the work may be a
+derivative work of the Library even though the source code is not.
+Whether this is true is especially significant if the work can be
+linked without the Library, or if the work is itself a library. The
+threshold for this to be true is not precisely defined by law.
+
+ If such an object file uses only numerical parameters, data
+structure layouts and accessors, and small macros and small inline
+functions (ten lines or less in length), then the use of the object
+file is unrestricted, regardless of whether it is legally a derivative
+work. (Executables containing this object code plus portions of the
+Library will still fall under Section 6.)
+
+ Otherwise, if the work is a derivative of the Library, you may
+distribute the object code for the work under the terms of Section 6.
+Any executables containing that work also fall under Section 6,
+whether or not they are linked directly with the Library itself.
+
+ 6. As an exception to the Sections above, you may also combine or
+link a "work that uses the Library" with the Library to produce a
+work containing portions of the Library, and distribute that work
+under terms of your choice, provided that the terms permit
+modification of the work for the customer's own use and reverse
+engineering for debugging such modifications.
+
+ You must give prominent notice with each copy of the work that the
+Library is used in it and that the Library and its use are covered by
+this License. You must supply a copy of this License. If the work
+during execution displays copyright notices, you must include the
+copyright notice for the Library among them, as well as a reference
+directing the user to the copy of this License. Also, you must do one
+of these things:
+
+ a) Accompany the work with the complete corresponding
+ machine-readable source code for the Library including whatever
+ changes were used in the work (which must be distributed under
+ Sections 1 and 2 above); and, if the work is an executable linked
+ with the Library, with the complete machine-readable "work that
+ uses the Library", as object code and/or source code, so that the
+ user can modify the Library and then relink to produce a modified
+ executable containing the modified Library. (It is understood
+ that the user who changes the contents of definitions files in the
+ Library will not necessarily be able to recompile the application
+ to use the modified definitions.)
+
+ b) Use a suitable shared library mechanism for linking with the
+ Library. A suitable mechanism is one that (1) uses at run time a
+ copy of the library already present on the user's computer system,
+ rather than copying library functions into the executable, and (2)
+ will operate properly with a modified version of the library, if
+ the user installs one, as long as the modified version is
+ interface-compatible with the version that the work was made with.
+
+ c) Accompany the work with a written offer, valid for at least
+ three years, to give the same user the materials specified in
+ Subsection 6a, above, for a charge no more than the cost of
+ performing this distribution.
+
+ d) If distribution of the work is made by offering access to copy
+ from a designated place, offer equivalent access to copy the above
+ specified materials from the same place.
+
+ e) Verify that the user has already received a copy of these
+ materials or that you have already sent this user a copy.
+
+ For an executable, the required form of the "work that uses the
+Library" must include any data and utility programs needed for
+reproducing the executable from it. However, as a special exception,
+the materials to be distributed need not include anything that is
+normally distributed (in either source or binary form) with the major
+components (compiler, kernel, and so on) of the operating system on
+which the executable runs, unless that component itself accompanies
+the executable.
+
+ It may happen that this requirement contradicts the license
+restrictions of other proprietary libraries that do not normally
+accompany the operating system. Such a contradiction means you cannot
+use both them and the Library together in an executable that you
+distribute.
+
+ 7. You may place library facilities that are a work based on the
+Library side-by-side in a single library together with other library
+facilities not covered by this License, and distribute such a combined
+library, provided that the separate distribution of the work based on
+the Library and of the other library facilities is otherwise
+permitted, and provided that you do these two things:
+
+ a) Accompany the combined library with a copy of the same work
+ based on the Library, uncombined with any other library
+ facilities. This must be distributed under the terms of the
+ Sections above.
+
+ b) Give prominent notice with the combined library of the fact
+ that part of it is a work based on the Library, and explaining
+ where to find the accompanying uncombined form of the same work.
+
+ 8. You may not copy, modify, sublicense, link with, or distribute
+the Library except as expressly provided under this License. Any
+attempt otherwise to copy, modify, sublicense, link with, or
+distribute the Library is void, and will automatically terminate your
+rights under this License. However, parties who have received copies,
+or rights, from you under this License will not have their licenses
+terminated so long as such parties remain in full compliance.
+
+ 9. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Library or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Library (or any work based on the
+Library), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Library or works based on it.
+
+ 10. Each time you redistribute the Library (or any work based on the
+Library), the recipient automatically receives a license from the
+original licensor to copy, distribute, link with or modify the Library
+subject to these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties with
+this License.
+
+ 11. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Library at all. For example, if a patent
+license would not permit royalty-free redistribution of the Library by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Library.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply, and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 12. If the distribution and/or use of the Library is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Library under this License
+may add an explicit geographical distribution limitation excluding those
+countries, so that distribution is permitted only in or among
+countries not thus excluded. In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+ 13. The Free Software Foundation may publish revised and/or new
+versions of the Lesser General Public License from time to time.
+Such new versions will be similar in spirit to the present version,
+but may differ in detail to address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Library
+specifies a version number of this License which applies to it and
+"any later version", you have the option of following the terms and
+conditions either of that version or of any later version published by
+the Free Software Foundation. If the Library does not specify a
+license version number, you may choose any version ever published by
+the Free Software Foundation.
+
+ 14. If you wish to incorporate parts of the Library into other free
+programs whose distribution conditions are incompatible with these,
+write to the author to ask for permission. For software which is
+copyrighted by the Free Software Foundation, write to the Free
+Software Foundation; we sometimes make exceptions for this. Our
+decision will be guided by the two goals of preserving the free status
+of all derivatives of our free software and of promoting the sharing
+and reuse of software generally.
+
+ NO WARRANTY
+
+ 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
+WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
+EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
+OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
+KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
+LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
+THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
+WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
+AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
+FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
+CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
+LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
+RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
+FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
+SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Libraries
+
+ If you develop a new library, and you want it to be of the greatest
+possible use to the public, we recommend making it free software that
+everyone can redistribute and change. You can do so by permitting
+redistribution under these terms (or, alternatively, under the terms
+of the ordinary General Public License).
+
+ To apply these terms, attach the following notices to the library.
+It is safest to attach them to the start of each source file to most
+effectively convey the exclusion of warranty; and each file should
+have at least the "copyright" line and a pointer to where the full
+notice is found.
+
+
+ <one line to give the library's name and a brief idea of what it does.>
+ Copyright (C) <year> <name of author>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+Also add information on how to contact you by electronic and paper mail.
+
+You should also get your employer (if you work as a programmer) or
+your school, if any, to sign a "copyright disclaimer" for the library,
+if necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the
+ library `Frob' (a library for tweaking knobs) written by James
+ Random Hacker.
+
+ <signature of Ty Coon>, 1 April 1990
+ Ty Coon, President of Vice
+
+That's all there is to it!
+
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package libva for openSUSE:Factory
checked in at Wed Jul 27 18:44:24 CEST 2011.
--------
New Changes file:
--- /dev/null 2010-08-26 16:28:41.000000000 +0200
+++ /mounts/work_src_done/STABLE/libva/libva.changes 2011-05-31 21:47:47.000000000 +0200
@@ -0,0 +1,72 @@
+-------------------------------------------------------------------
+Tue May 31 19:44:52 UTC 2011 - kkhere.geo(a)gmail.com
+
+- new version 1.0.13
+ * cleans up licensing issue
+ * IvyBrigde video decoding support
+ * thread safety
+ * Encoding support in SandyBridge
+
+-------------------------------------------------------------------
+Fri Apr 1 20:22:20 UTC 2011 - kkhere.geo(a)gmail.com
+
+- new version 1.0.12
+
+-------------------------------------------------------------------
+Mon Mar 28 17:23:25 UTC 2011 - kkhere.geo(a)gmail.com
+
+- new version 1.0.11
+ * obsoletes patch
+ - i965_dri_video: don't try to render an invalid surface
+
+-------------------------------------------------------------------
+Thu Mar 3 15:02:06 UTC 2011 - kkhere.geo(a)gmail.com
+
+- patch: i965_dri_video: don't try to render an invalid surface
+
+-------------------------------------------------------------------
+Tue Feb 15 12:05:12 UTC 2011 - kkhere.geo(a)gmail.com
+
+- new version 1.0.10
+
+-------------------------------------------------------------------
+Mon Jan 10 10:23:00 UTC 2011 - kkhere.geo(a)gmail.com
+
+- new version 1.0.7
+- support IA44 AI44 subpicture format in sandybridge
+
+-------------------------------------------------------------------
+Sun Dec 19 10:14:27 UTC 2010 - lnussel(a)suse.de
+
+- new version 1.0.6
+
+-------------------------------------------------------------------
+Fri Nov 5 13:41:52 UTC 2010 - kkhere.geo(a)gmail.com
+
+- update to version 1.0.6
+
+-------------------------------------------------------------------
+Thu Sep 30 09:05:22 UTC 2010 - kkhere.geo(a)gmail.com
+
+- update to version 1.0.5
+ * add scaling flags for vaPutSurface()
+ * i965_drv_video: add video processing kernels
+ * i965_drv_video: deinterlacing & scaling
+
+-------------------------------------------------------------------
+Thu Sep 9 14:19:54 UTC 2010 - kkhere.geo(a)gmail.com
+
+- update to version 1.0.4
+
+-------------------------------------------------------------------
+Tue Jun 8 10:05:32 UTC 2010 - dimstar(a)opensuse.org
+
+- Split the library in libva1, the tools in vaapi-tools and the
+ development in libva-devel. Both libraries can live in the same
+ package as per policy: they are kept in sync with their soNUM.
+
+-------------------------------------------------------------------
+Mon Jun 7 21:43:40 UTC 2010 - dominique-vlc.suse(a)leuenberger.net
+
+- Initial package for VideoLAN repository, libva 1.0.1
+
calling whatdependson for head-i586
New:
----
baselibs.conf
libva-1.0.13.tar.bz2
libva.changes
libva.spec
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ libva.spec ++++++
#
# spec file for package libva
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: libva
Version: 1.0.13
Release: 1
License: MIT
Summary: Video Acceleration (VA) API for Linux
Url: http://freedesktop.org/wiki/Software/vaapi
Group: System/Libraries
Source: http://cgit.freedesktop.org/libva/snapshot/%{name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: libudev-devel pkg-config
BuildRequires: xorg-x11-devel xorg-x11-libXext-devel xorg-x11-libXfixes-devel
BuildRequires: Mesa-devel libdrm-devel
BuildRequires: gcc-c++ libstdc++-devel
AutoReqProv: on
%description
The libva library implements the Video Acceleration (VA) API for Linux.
The library loads a hardware dependendent driver.
%package -n vaapi-tools
Summary: Video Acceleration (VA) API for Linux
Group: System/Libraries
%description -n vaapi-tools
The libva library implements the Video Acceleration (VA) API for Linux.
The library loads a hardware dependendent driver.
This is a set of tools around vaapi livrary.
%package -n libva1
Summary: Video Acceleration (VA) API for Linux
Group: System/Libraries
%description -n libva1
The libva library implements the Video Acceleration (VA) API for Linux.
The library loads a hardware dependendent driver.
%package devel
Summary: Video Acceleration (VA) API for Linux -- development files
Group: Development/Languages/C and C++
Requires: libva1 = %{version}
%description devel
The libva library implements the Video Acceleration (VA) API for Linux.
The library loads a hardware dependendent driver.
This package provides the development environment for libva.
%prep
%setup -q
%build
autoreconf -v --install
%configure --enable-dummy-driver \
%if 0%{?suse_version} >= 01120
--enable-dummy-backend \
%endif
--enable-i965-driver \
--enable-glx \
--with-drivers-path=%{_libdir}/dri
make
%install
%makeinstall
find %{buildroot} -name '*.la' -delete -print
rm %{buildroot}%{_bindir}/test*
%clean
rm -rf %{buildroot}
%post -n libva1 -p /sbin/ldconfig
%postun -n libva1 -p /sbin/ldconfig
%files -n vaapi-tools
%defattr(-,root,root,-)
%{_bindir}/vainfo
%{_bindir}/avcenc
%dir %{_libdir}/dri
%{_libdir}/dri/dummy_drv_video.so
%{_libdir}/dri/i965_drv_video.so
%{_bindir}/h264encode
%{_bindir}/mpeg2vldemo
%{_bindir}/putsurface
%files -n libva1
%defattr(-, root, root)
%{_libdir}/libva.so.1
%{_libdir}/libva.so.%{version}
%{_libdir}/libva-tpi.so.1
%{_libdir}/libva-tpi.so.%{version}
%{_libdir}/libva-x11.so.1
%{_libdir}/libva-x11.so.%{version}
%{_libdir}/libva-glx.so.1
%{_libdir}/libva-glx.so.%{version}
%{_libdir}/libva-egl.so.1
%{_libdir}/libva-egl.so.%{version}
%if 0%{?suse_version} >= 01120
%{_libdir}/libva-dummy.so.1
%{_libdir}/libva-dummy.so.%{version}
%endif
%files devel
%defattr(-,root,root,-)
%{_libdir}/libva.so
%{_libdir}/libva-tpi.so
%{_libdir}/libva-x11.so
%{_libdir}/libva-glx.so
%{_libdir}/libva-egl.so
%if 0%{?suse_version} >= 01120
%{_libdir}/libva-dummy.so
%endif
%{_includedir}/va
%{_libdir}/pkgconfig/libva.pc
%{_libdir}/pkgconfig/libva-x11.pc
%{_libdir}/pkgconfig/libva-glx.pc
%{_libdir}/pkgconfig/libva-tpi.pc
%{_libdir}/pkgconfig/libva-egl.pc
%changelog
++++++ baselibs.conf ++++++
libva1
libva-devel
requires -libva-<targettype>
requires "libva1-<targettype> = <version>"
vaapi-tools
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package kye for openSUSE:Factory
checked in at Wed Jul 27 18:32:39 CEST 2011.
--------
New Changes file:
--- /dev/null 2010-08-26 16:28:41.000000000 +0200
+++ /mounts/work_src_done/STABLE/kye/kye.changes 2011-05-30 03:47:05.000000000 +0200
@@ -0,0 +1,4 @@
+-------------------------------------------------------------------
+Mon May 30 01:46:56 UTC 2011 - jengelh(a)medozas.de
+
+- Initial package
calling whatdependson for head-i586
New:
----
kye-1.0.tar.xz
kye.changes
kye.spec
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kye.spec ++++++
#
# spec file for package kye
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: kye
Version: 1.0
Release: 1
Group: Amusements/Games/Strategy/Turn Based
Summary: Logic puzzle game with arcade elements
License: GPL2+
Url: http://games.moria.org.uk/kye/
Source: %name-%version.tar.xz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: desktop-file-utils python-base update-desktop-files xz
BuildArch: noarch
%py_requires
Requires: gdk-pixbuf-loader-rsvg, python-gtk
%description
This is a clone of the original Kye game for Windows, by Colin Garbutt.
Kye is a puzzle game with arcade game elements. The game takes place
in a small playing area, where the player controls Kye - a
distinctive green blob. The player moves around and tries to collect
all of the diamonds. However, there are many other objects in the
game, which can obstruct, trap or kill the Kye.
Kye is one of those games like Chess, where a small number of
different playing pieces, obeying simple rules, combine to create a
game of enormous variety and complexity.
Authors:
--------
Colin Phipps
%prep
%setup -q
%build
python setup.py build;
%install
python setup.py install --prefix=%_prefix --root=%buildroot \
--record-rpm=INSTALLED_FILES;
mkdir -p "%buildroot/%_datadir/pixmaps";
cp -a kye*icon.png "%buildroot/%_datadir/pixmaps/";
# convenience
ln -s Kye "%buildroot/%_bindir/kye";
ln -s Kye-edit "%buildroot/%_bindir/kye-edit";
cat >>"%name.desktop" <<-EOF
[Desktop Entry]
Type=Application
Version=1.0
Name=Kye
Icon=kye-icon
Exec=Kye %f
Terminal=false
Categories=Game;LogicGame;
EOF
cat >>"%name-edit.desktop" <<-EOF
[Desktop Entry]
Type=Application
Version=1.0
Name=Kye Level Editor
Exec=Kye-edit %f
Icon=kye-edit-icon
Terminal=false
Categories=Game;LogicGame;
EOF
mkdir -p "%buildroot/%_datadir/applications";
desktop-file-install --dir "%buildroot/%_datadir/applications/" \
"%name.desktop" "%name-edit.desktop"
%suse_update_desktop_file %name
%suse_update_desktop_file %name-edit
%files -f INSTALLED_FILES
%defattr(-,root,root)
%_bindir/kye*
%_datadir/*/*
%changelog
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package mangler for openSUSE:Factory
checked in at Wed Jul 27 18:31:35 CEST 2011.
--------
New Changes file:
--- /dev/null 2010-08-26 16:28:41.000000000 +0200
+++ /mounts/work_src_done/STABLE/mangler/mangler.changes 2011-05-27 20:22:59.000000000 +0200
@@ -0,0 +1,29 @@
+-------------------------------------------------------------------
+Fri May 27 20:21:12 CEST 2011 - vuntz(a)opensuse.org
+
+- Cleanup for inclusion in Factory:
+ + Add dbus-1-glib-devel, espeak-devel, xosd-devel BuildRequires
+ for optional features.
+ + Remove unneeded librsvg/gdk-pixbuf-loader-rsvg BuildRequires.
+ + Create libventrilo3-0 and libventrilo3-devel subpackages.
+ + Drop rpmlintrc file, which was needed because of mis-packaging.
+
+-------------------------------------------------------------------
+Thu May 12 11:17:03 CEST 2011 - dimstar(a)opensuse.org
+
+- Update to version 1.2.2:
+ + added an input gain slider on the audio menu
+ + fixed a TTS crash
+ + build fixes
+
+-------------------------------------------------------------------
+Mon Jan 10 22:05:16 UTC 2011 - fisiu(a)opensuse.org
+
+- drop desktop.patch: change desktop category in spec file via
+ %suse_update_desktop_file script
+
+-------------------------------------------------------------------
+Sun Oct 10 23:48:48 UTC 2010 - fisiu(a)opensuse.org
+
+- initial package, version 1.2.1
+
calling whatdependson for head-i586
New:
----
mangler-1.2.2.tar.bz2
mangler.changes
mangler.spec
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ mangler.spec ++++++
#
# spec file for package mangler
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: mangler
Version: 1.2.2
Release: 1
License: GPLv3+
Summary: Ventrilo Compatible Client for Linux
Url: http://www.mangler.org/
Group: Productivity/Networking/Talk/Clients
Source: http://www.mangler.org/downloads/%{name}-%{version}.tar.bz2
BuildRequires: alsa-devel
BuildRequires: dbus-1-glib-devel
BuildRequires: espeak-devel
BuildRequires: gcc-c++
BuildRequires: gtkmm2-devel
BuildRequires: libcelt-devel
BuildRequires: libgsm-devel
BuildRequires: libpulse-devel
BuildRequires: speex-devel
BuildRequires: update-desktop-files
BuildRequires: xosd-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Mangler is an open source VOIP client capable of connecting to
Ventrilo 3.x servers. It is capable of performing almost all standard
user functionality found in a Windows Ventrilo client.
%package -n libventrilo3-0
License: GPLv3+
Summary: Networking library for communicating with Ventrilo servers
Group: System/Libraries
%description -n libventrilo3-0
Libventrilo3 is a networking library for communicating with Ventrilo
servers. It performs audio encoding/decoding, signal processing and
network communications.
%package -n libventrilo3-devel
License: GPLv3+
Summary: Networking library for communicating with Ventrilo servers -- Development Files
Group: Development/Libraries/C and C++
Requires: libventrilo3-0 = %{version}
%description -n libventrilo3-devel
Libventrilo3 is a networking library for communicating with Ventrilo
servers. It performs audio encoding/decoding, signal processing and
network communications.
%prep
%setup -q
%build
%configure --disable-static
make %{?_smp_mflags}
%install
%make_install
rm %{buildroot}%{_libdir}/*.la
%suse_update_desktop_file %{name} Telephony
%clean
rm -rf %{buildroot}
%post -n libventrilo3-0 -p /sbin/ldconfig
%postun -n libventrilo3-0 -p /sbin/ldconfig
%files
%defattr (-,root,root)
%doc AUTHORS ChangeLog COPYING COPYING.zlib
%{_bindir}/mangler
%{_datadir}/applications/mangler.desktop
%{_datadir}/pixmaps/mangler_logo.svg
%files -n libventrilo3-0
%defattr (-,root,root)
%doc AUTHORS ChangeLog COPYING COPYING.LGPL
%{_libdir}/libventrilo3.so.*
%files -n libventrilo3-devel
%defattr (-,root,root)
%{_includedir}/ventrilo3.h
%{_libdir}/libventrilo3.so
%changelog
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package sysvinit for openSUSE:Factory
checked in at Wed Jul 27 18:30:12 CEST 2011.
--------
--- sysvinit/sysvinit.changes 2011-07-26 14:13:52.000000000 +0200
+++ /mounts/work_src_done/STABLE/sysvinit/sysvinit.changes 2011-07-27 15:22:47.000000000 +0200
@@ -1,0 +2,11 @@
+Wed Jul 27 13:11:31 UTC 2011 - werner(a)suse.de
+
+- Add workaround for blowfish signedness bug (CVE-2011-2483)
+
+-------------------------------------------------------------------
+Wed Jul 27 10:41:27 UTC 2011 - werner(a)suse.de
+
+- Sulogin: respect byte order that is do not mix chars and ints
+ (bnc#707724)
+
+-------------------------------------------------------------------
calling whatdependson for head-i586
New:
----
sysvinit-2.88+dsf-blowfish.dif
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ sysvinit.spec ++++++
--- /var/tmp/diff_new_pack.G9Sblb/_old 2011-07-27 18:29:35.000000000 +0200
+++ /var/tmp/diff_new_pack.G9Sblb/_new 2011-07-27 18:29:35.000000000 +0200
@@ -29,7 +29,7 @@
Group: System/Base
AutoReqProv: on
Version: 2.88+
-Release: 54
+Release: 56
Summary: SysV-Style init
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: audit-devel libselinux-devel libsepol-devel pam-devel
@@ -52,6 +52,7 @@
Patch5: sysvinit-2.88dsf-multiple-sulogin.patch
Patch6: sysvinit-2.88+dsf-run.diff
Patch7: sysvinit-2.88+dsf-crypt.patch
+Patch8: sysvinit-2.88+dsf-blowfish.dif
Patch20: powerd-2.0.2.dif
Patch21: powerd-2.0.2-getaddrinfo.patch
Patch30: killproc-2.19.dif
@@ -95,6 +96,7 @@
%patch5 -p0 -b .sulogin
%patch6 -p0 -b .run
%patch7 -p0 -b .crypt
+%patch8 -p0 -b .blowfish
%patch
pushd ../powerd-%{PDVER}
%patch20
++++++ sysvinit-2.88+dsf-blowfish.dif ++++++
--- src/consoles.h
+++ src/consoles.h 2011-07-27 11:10:26.620613503 +0000
@@ -39,6 +39,7 @@ struct console {
int fd, id;
#define CON_SERIAL 0x0001
#define CON_NOTTY 0x0002
+#define CON_EIGHTBIT 0x1000
pid_t pid;
struct chardata cp;
struct termios tio;
--- src/sulogin.c
+++ src/sulogin.c 2011-07-27 13:10:16.791925602 +0000
@@ -635,6 +635,7 @@ char *getpasswd(struct console *con)
ptr = &pass[0];
cp->eol = *ptr = '\0';
+ con->flags &= ~CON_EIGHTBIT;
eightbit = ((con->flags & CON_SERIAL) == 0 || (tty.c_cflag & (PARODD|PARENB)) == 0);
while (cp->eol == '\0') {
if (read(fd, &c, 1) < 1) {
@@ -697,6 +698,8 @@ char *getpasswd(struct console *con)
goto quit;
}
*ptr++ = ascval;
+ if (((unsigned char)ascval) & 0x80)
+ con->flags |= CON_EIGHTBIT;
break;
}
}
@@ -839,6 +842,30 @@ void usage(void)
fprintf(stderr, "Usage: sulogin [-e] [-p] [-t timeout] [tty device]\n\r");
}
+/*
+ * Wrapper for blowfish signedness bug (CVE-2011-2483)
+ */
+
+static
+int checkpw(const char *answer, const char *passwd, const struct console *con)
+{
+ char buf[64];
+
+ if (strcmp(crypt(answer, passwd), passwd) == 0)
+ return 1;
+ if (strncmp(passwd, "$2a$", 4) != 0)
+ return 0;
+ if ((con->flags & CON_EIGHTBIT) == 0)
+ return 0;
+ if (strlen(passwd) >= 64)
+ return 0;
+
+ strncpy(buf, passwd, 64);
+ buf[2] = 'x';
+
+ return (strcmp(crypt(answer, buf), buf) == 0);
+}
+
int main(int argc, char **argv)
{
char *tty = NULL;
@@ -967,8 +994,7 @@ int main(int argc, char **argv)
if ((answer = getpasswd(con)) == NULL)
break;
- if (passwd[0] == '\0' ||
- strcmp(crypt(answer, passwd), passwd) == 0) {
+ if (passwd[0] == '\0' || checkpw(answer, passwd, con)) {
*usemask |= (1<<con->id);
sushell(pwd);
*usemask &= ~(1<<con->id);
++++++ sysvinit-2.88dsf-multiple-sulogin.patch ++++++
--- /var/tmp/diff_new_pack.G9Sblb/_old 2011-07-27 18:29:35.000000000 +0200
+++ /var/tmp/diff_new_pack.G9Sblb/_new 2011-07-27 18:29:35.000000000 +0200
@@ -503,9 +503,9 @@
+ struct termios tty;
+ char *ret = pass;
+ unsigned char tc;
-+ char ascval;
++ char c, ascval;
+ int eightbit;
-+ int c, fd;
++ int fd;
+
+ if (con->flags & CON_NOTTY)
+ goto out;
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package ruby-qt4 for openSUSE:Factory
checked in at Wed Jul 27 18:29:18 CEST 2011.
--------
New Changes file:
--- /dev/null 2010-08-26 16:28:41.000000000 +0200
+++ /mounts/work_src_done/STABLE/ruby-qt4/ruby-qt4.changes 2011-07-22 20:30:50.000000000 +0200
@@ -0,0 +1,1040 @@
+-------------------------------------------------------------------
+Fri Jul 22 20:30:49 CEST 2011 - dmueller(a)suse.de
+
+- update to 4.7.0
+ * Small fixes over KDE 4.7 RC2
+ * see http://kde.org/announcements/4.7 for details
+
+
+-------------------------------------------------------------------
+Thu Jul 21 13:56:03 UTC 2011 - toddrme2178(a)gmail.com
+
+- Add QScintilla bindings
+
+-------------------------------------------------------------------
+Thu Jul 21 10:39:34 UTC 2011 - toddrme2178(a)gmail.com
+
+- Rework summary (fix for RPMLINT warnings)
+- Rework description (fix for RPMLINT warnings)
+- change group (fix for RPMLINT warnings)
+- Add URL (fix for RPMLINT warning)
+
+-------------------------------------------------------------------
+Sat Jul 9 10:04:09 CEST 2011 - dmueller(a)suse.de
+
+- update to 4.6.95
+
+-------------------------------------------------------------------
+Tue Jun 28 14:23:29 CEST 2011 - dmueller(a)suse.de
+
+- update to 4.6.90
+
+-------------------------------------------------------------------
+Sat May 21 00:59:45 CEST 2011 - dmueller(a)suse.de
+
+- update to 4.6.80
+
+-------------------------------------------------------------------
+Sun May 8 05:58:12 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110508
+
+-------------------------------------------------------------------
+Mon May 2 16:10:18 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110502
+
+-------------------------------------------------------------------
+Sat Apr 23 07:46:06 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110423
+
+-------------------------------------------------------------------
+Wed Apr 20 16:10:26 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110420
+
+-------------------------------------------------------------------
+Mon Apr 18 19:33:35 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110418
+
+-------------------------------------------------------------------
+Sun Apr 10 14:55:09 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110410
+
+-------------------------------------------------------------------
+Sun Apr 3 07:19:21 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110403
+
+-------------------------------------------------------------------
+Fri Apr 1 14:18:48 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110401
+
+-------------------------------------------------------------------
+Thu Mar 31 17:41:53 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110331
+
+-------------------------------------------------------------------
+Wed Mar 30 17:31:35 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110330
+
+-------------------------------------------------------------------
+Tue Mar 29 16:31:51 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110329
+
+-------------------------------------------------------------------
+Mon Mar 28 14:01:12 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110328
+
+-------------------------------------------------------------------
+Thu Mar 24 18:59:08 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110324
+
+-------------------------------------------------------------------
+Wed Mar 23 17:53:44 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110323
+
+-------------------------------------------------------------------
+Mon Mar 21 19:03:31 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110321
+
+-------------------------------------------------------------------
+Mon Mar 21 07:07:52 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110321
+
+-------------------------------------------------------------------
+Sat Mar 19 16:06:26 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110319
+
+-------------------------------------------------------------------
+Fri Mar 18 18:05:28 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110318
+
+-------------------------------------------------------------------
+Thu Mar 17 17:35:29 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110317
+
+-------------------------------------------------------------------
+Wed Mar 16 17:57:27 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110316
+
+-------------------------------------------------------------------
+Tue Mar 15 12:01:15 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110315
+
+-------------------------------------------------------------------
+Tue Mar 15 07:15:02 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110315
+
+-------------------------------------------------------------------
+Mon Mar 14 17:50:43 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110314
+
+-------------------------------------------------------------------
+Sun Mar 13 17:57:18 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110313
+
+-------------------------------------------------------------------
+Sat Mar 12 06:57:59 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110312
+
+-------------------------------------------------------------------
+Fri Mar 11 10:53:10 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110311
+
+-------------------------------------------------------------------
+Fri Mar 11 08:03:45 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110311
+
+-------------------------------------------------------------------
+Thu Mar 10 21:24:59 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110310
+
+-------------------------------------------------------------------
+Thu Mar 10 18:12:48 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110310
+
+-------------------------------------------------------------------
+Wed Mar 9 19:01:26 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110309
+
+-------------------------------------------------------------------
+Tue Mar 8 18:48:09 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110308
+
+-------------------------------------------------------------------
+Mon Mar 7 16:30:22 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110307
+
+-------------------------------------------------------------------
++++ 843 more lines (skipped)
++++ between /dev/null
++++ and /mounts/work_src_done/STABLE/ruby-qt4/ruby-qt4.changes
calling whatdependson for head-i586
New:
----
qtruby-4.7.0.tar.bz2
ruby-qt4.changes
ruby-qt4.spec
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ruby-qt4.spec ++++++
#
# spec file for package ruby-qt4
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: ruby-qt4
BuildRequires: kde4-filesystem
BuildRequires: cmake
BuildRequires: sqlite-devel
BuildRequires: libqimageblitz-devel
BuildRequires: libQtWebKit-devel
BuildRequires: libsmokeqt-devel
BuildRequires: phonon-devel
BuildRequires: kdebindings-smokegen
BuildRequires: libqscintilla-devel
BuildRequires: ruby-devel
License: LGPLv2.1+
Group: Development/Languages/Ruby
Summary: QtRuby kdebindings library
Url: https://projects.kde.org/projects/kde/kdebindings/ruby/qtruby
Version: 4.7.0
Release: 1
Source0: qtruby-%version.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Ruby bindings for the Qt4 libraries from the kdebindings project.
%prep
%setup -q -n qtruby-%version
%build
%cmake_kde4 -d build
%make_jobs
%install
cd build
%makeinstall
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%_kde4_bindir/rbqtapi
%_kde4_bindir/rbrcc
%_kde4_bindir/rbuic4
%_kde4_libdir/libqtruby4shared.so.*
%_kde4_libdir/ruby/site_ruby/*/*.rb
%_kde4_libdir/ruby/site_ruby/*/Qt/
%_kde4_libdir/ruby/site_ruby/*/phonon/
%_kde4_libdir/ruby/site_ruby/*/qtdeclarative/
%_kde4_libdir/ruby/site_ruby/*/qtscript/
%_kde4_libdir/ruby/site_ruby/*/qttest/
%_kde4_libdir/ruby/site_ruby/*/qtuitools/
%_kde4_libdir/ruby/site_ruby/*/qtwebkit/
%_kde4_libdir/ruby/site_ruby/*/qscintilla/
%_kde4_libdir/ruby/site_ruby/*/*-linux/*.so
%package devel
License: LGPLv2.1+
Group: Development/Languages/Ruby
Summary: Development libraries for Ruby-Qt4
Requires: %{name} = %{version}
%description devel
This package contains development files for the Ruby bindings for the Qt4 libraries.
%files devel
%defattr(-,root,root)
%_kde4_libdir/libqtruby4shared.so
/usr/include/qtruby/
%_datadir/qtruby4/
%changelog
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package perl-qt4 for openSUSE:Factory
checked in at Wed Jul 27 18:25:14 CEST 2011.
--------
New Changes file:
--- /dev/null 2010-08-26 16:28:41.000000000 +0200
+++ /mounts/work_src_done/STABLE/perl-qt4/perl-qt4.changes 2011-07-22 20:30:23.000000000 +0200
@@ -0,0 +1,1041 @@
+-------------------------------------------------------------------
+Fri Jul 22 20:30:21 CEST 2011 - dmueller(a)suse.de
+
+- update to 4.7.0
+ * Small fixes over KDE 4.7 RC2
+ * see http://kde.org/announcements/4.7 for details
+
+
+-------------------------------------------------------------------
+Thu Jul 21 13:56:03 UTC 2011 - toddrme2178(a)gmail.com
+
+- Add QScintilla bindings
+
+-------------------------------------------------------------------
+Thu Jul 21 10:39:34 UTC 2011 - toddrme2178(a)gmail.com
+
+- Rework summary (fix for RPMLINT warnings)
+- Rework description (fix for RPMLINT warnings)
+- change group (fix for RPMLINT warnings)
+- Add URL (fix for RPMLINT warning)
+- Add Perl dependency (fix for RPMLINT warning)
+
+-------------------------------------------------------------------
+Sat Jul 9 10:03:42 CEST 2011 - dmueller(a)suse.de
+
+- update to 4.6.95
+
+-------------------------------------------------------------------
+Tue Jun 28 14:23:03 CEST 2011 - dmueller(a)suse.de
+
+- update to 4.6.90
+
+-------------------------------------------------------------------
+Sat May 21 00:59:16 CEST 2011 - dmueller(a)suse.de
+
+- update to 4.6.80
+
+-------------------------------------------------------------------
+Sun May 8 05:57:57 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110508
+
+-------------------------------------------------------------------
+Mon May 2 16:09:58 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110502
+
+-------------------------------------------------------------------
+Sat Apr 23 07:45:52 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110423
+
+-------------------------------------------------------------------
+Wed Apr 20 16:10:06 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110420
+
+-------------------------------------------------------------------
+Mon Apr 18 19:33:19 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110418
+
+-------------------------------------------------------------------
+Sun Apr 10 14:54:46 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110410
+
+-------------------------------------------------------------------
+Sun Apr 3 07:19:08 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110403
+
+-------------------------------------------------------------------
+Fri Apr 1 14:18:29 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110401
+
+-------------------------------------------------------------------
+Thu Mar 31 17:41:35 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110331
+
+-------------------------------------------------------------------
+Wed Mar 30 17:30:33 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110330
+
+-------------------------------------------------------------------
+Tue Mar 29 16:31:30 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110329
+
+-------------------------------------------------------------------
+Mon Mar 28 13:59:54 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110328
+
+-------------------------------------------------------------------
+Thu Mar 24 18:58:52 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110324
+
+-------------------------------------------------------------------
+Wed Mar 23 17:53:28 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110323
+
+-------------------------------------------------------------------
+Mon Mar 21 19:02:52 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110321
+
+-------------------------------------------------------------------
+Mon Mar 21 07:07:38 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110321
+
+-------------------------------------------------------------------
+Sat Mar 19 16:06:10 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110319
+
+-------------------------------------------------------------------
+Fri Mar 18 18:04:38 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110318
+
+-------------------------------------------------------------------
+Thu Mar 17 17:34:33 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110317
+
+-------------------------------------------------------------------
+Wed Mar 16 17:57:12 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110316
+
+-------------------------------------------------------------------
+Tue Mar 15 12:00:58 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110315
+
+-------------------------------------------------------------------
+Tue Mar 15 07:14:42 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110315
+
+-------------------------------------------------------------------
+Mon Mar 14 17:50:30 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110314
+
+-------------------------------------------------------------------
+Sun Mar 13 17:57:02 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110313
+
+-------------------------------------------------------------------
+Sat Mar 12 06:57:45 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110312
+
+-------------------------------------------------------------------
+Fri Mar 11 10:52:53 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110311
+
+-------------------------------------------------------------------
+Fri Mar 11 08:03:32 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110311
+
+-------------------------------------------------------------------
+Thu Mar 10 21:24:45 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110310
+
+-------------------------------------------------------------------
+Thu Mar 10 18:12:35 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110310
+
+-------------------------------------------------------------------
+Wed Mar 9 19:01:12 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110309
+
+-------------------------------------------------------------------
+Tue Mar 8 18:47:53 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110308
+
+-------------------------------------------------------------------
+Mon Mar 7 16:30:01 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110307
+
++++ 844 more lines (skipped)
++++ between /dev/null
++++ and /mounts/work_src_done/STABLE/perl-qt4/perl-qt4.changes
calling whatdependson for head-i586
New:
----
perl-qt4.changes
perl-qt4.spec
perlqt-4.7.0.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-qt4.spec ++++++
#
# spec file for package perl-qt4
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: perl-qt4
BuildRequires: kde4-filesystem
BuildRequires: cmake
BuildRequires: sqlite-devel
BuildRequires: libqimageblitz-devel
BuildRequires: libQtWebKit-devel
BuildRequires: libsmokeqt-devel
BuildRequires: phonon-devel
BuildRequires: kdebindings-smokegen
BuildRequires: perl
BuildRequires: libqscintilla-devel
Requires: perl = %{perl_version}
License: LGPL v2.1 or later
Group: Development/Languages/Perl
Summary: PerlQt kdebindings library
Url: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt
Version: 4.7.0
Release: 1
Source0: perlqt-%version.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Perl bindings for the Qt4 libraries from the kdebindings project.
%prep
%setup -q -n perlqt-%version
%build
EXTRA_FLAGS="-DCUSTOM_PERL_SITE_ARCH_DIR=`perl -MConfig -e 'print $Config{vendorarch}'`"
%cmake_kde4 -d build -- $EXTRA_FLAGS
%make_jobs
%install
cd build
%makeinstall
%files
%defattr(-,root,root)
%dir %_datadir/perlqt
%_kde4_bindir/prcc4_bin
%_kde4_bindir/puic4
%_kde4_bindir/qdbusxml2perl
%_datadir/perlqt/doxsubpp.pl
%_prefix/lib/perl5/vendor_perl/*/*/*.pm
%_prefix/lib/perl5/vendor_perl/*/*/auto/
%_prefix/lib/perl5/vendor_perl/*/*/QtCore4/
%package devel
License: LGPL v2.1 or later
Group: Development/Languages/Perl
Summary: Development libraries for Perl-Qt4
Requires: %{name} = %{version}
%description devel
This package contains development files for the Perl bindings for the Qt4 libraries.
%files devel
%defattr(-,root,root)
/usr/include/perlqt/
%_datadir/perlqt/cmake/
%changelog
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package mono-qt4 for openSUSE:Factory
checked in at Wed Jul 27 18:23:48 CEST 2011.
--------
New Changes file:
--- /dev/null 2010-08-26 16:28:41.000000000 +0200
+++ /mounts/work_src_done/STABLE/mono-qt4/mono-qt4.changes 2011-07-22 20:31:04.000000000 +0200
@@ -0,0 +1,1050 @@
+-------------------------------------------------------------------
+Fri Jul 22 20:31:02 CEST 2011 - dmueller(a)suse.de
+
+- update to 4.7.0
+ * Small fixes over KDE 4.7 RC2
+ * see http://kde.org/announcements/4.7 for details
+
+
+-------------------------------------------------------------------
+Thu Jul 21 13:56:03 UTC 2011 - toddrme2178(a)gmail.com
+
+- Add QScintilla bindings
+
+-------------------------------------------------------------------
+Thu Jul 21 10:39:34 UTC 2011 - toddrme2178(a)gmail.com
+
+- Rework summary (fix for RPMLINT warnings)
+- Rework description (fix for RPMLINT warnings)
+- change group (fix for RPMLINT warnings)
+- Add URL (fix for RPMLINT warning)
+
+-------------------------------------------------------------------
+Sat Jul 9 10:04:22 CEST 2011 - dmueller(a)suse.de
+
+- update to 4.6.95
+
+-------------------------------------------------------------------
+Tue Jun 28 14:23:42 CEST 2011 - dmueller(a)suse.de
+
+- update to 4.6.90
+
+-------------------------------------------------------------------
+Sat May 21 00:59:59 CEST 2011 - dmueller(a)suse.de
+
+- update to 4.6.80
+
+-------------------------------------------------------------------
+Sun May 8 05:58:23 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110508
+
+-------------------------------------------------------------------
+Mon May 2 16:10:31 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110502
+
+-------------------------------------------------------------------
+Sat Apr 23 07:46:17 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110423
+
+-------------------------------------------------------------------
+Wed Apr 20 16:10:38 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110420
+
+-------------------------------------------------------------------
+Mon Apr 18 19:33:47 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110418
+
+-------------------------------------------------------------------
+Sun Apr 10 14:55:23 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110410
+
+-------------------------------------------------------------------
+Sun Apr 3 07:19:29 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110403
+
+-------------------------------------------------------------------
+Fri Apr 1 14:18:58 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110401
+
+-------------------------------------------------------------------
+Thu Mar 31 17:42:02 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110331
+
+-------------------------------------------------------------------
+Wed Mar 30 17:31:53 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110330
+
+-------------------------------------------------------------------
+Tue Mar 29 16:32:00 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110329
+
+-------------------------------------------------------------------
+Mon Mar 28 14:14:57 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110328
+
+-------------------------------------------------------------------
+Mon Mar 28 14:10:45 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110328
+
+-------------------------------------------------------------------
+Thu Mar 24 18:59:22 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110324
+
+-------------------------------------------------------------------
+Wed Mar 23 17:53:57 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110323
+
+-------------------------------------------------------------------
+Mon Mar 21 19:04:02 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110321
+
+-------------------------------------------------------------------
+Mon Mar 21 07:08:04 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110321
+
+-------------------------------------------------------------------
+Sat Mar 19 16:06:38 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110319
+
+-------------------------------------------------------------------
+Fri Mar 18 18:06:11 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110318
+
+-------------------------------------------------------------------
+Thu Mar 17 17:36:04 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110317
+
+-------------------------------------------------------------------
+Wed Mar 16 17:57:53 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110316
+
+-------------------------------------------------------------------
+Tue Mar 15 12:01:29 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110315
+
+-------------------------------------------------------------------
+Tue Mar 15 07:15:21 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110315
+
+-------------------------------------------------------------------
+Mon Mar 14 17:50:55 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110314
+
+-------------------------------------------------------------------
+Sun Mar 13 17:57:31 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110313
+
+-------------------------------------------------------------------
+Sat Mar 12 06:58:09 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110312
+
+-------------------------------------------------------------------
+Fri Mar 11 10:53:45 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110311
+
+-------------------------------------------------------------------
+Fri Mar 11 08:03:57 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110311
+
+-------------------------------------------------------------------
+Thu Mar 10 21:25:09 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110310
+
+-------------------------------------------------------------------
+Thu Mar 10 18:13:00 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110310
+
+-------------------------------------------------------------------
+Wed Mar 9 19:01:40 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110309
+
+-------------------------------------------------------------------
+Tue Mar 8 18:48:23 UTC 2011 - tittiatcoke(a)gmail.com
+
+- Update to 4.6.41_20110308
+
+-------------------------------------------------------------------
++++ 853 more lines (skipped)
++++ between /dev/null
++++ and /mounts/work_src_done/STABLE/mono-qt4/mono-qt4.changes
calling whatdependson for head-i586
New:
----
mono-qt4.changes
mono-qt4.spec
qyoto-4.7.0.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ mono-qt4.spec ++++++
#
# spec file for package mono-qt4
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: mono-qt4
BuildRequires: kde4-filesystem
BuildRequires: cmake
BuildRequires: sqlite-devel
BuildRequires: libqimageblitz-devel
BuildRequires: libQtWebKit-devel
BuildRequires: libsmokeqt-devel
BuildRequires: mono-devel
BuildRequires: mono
BuildRequires: libmono-2_0-devel
BuildRequires: phonon-devel
BuildRequires: kdebindings-smokegen
BuildRequires: libqscintilla-devel
License: LGPL v2.1 or later
Group: Development/Languages/Mono
Summary: Mono Qt4 kdebindings library
Url: https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto
Version: 4.7.0
Release: 1
Source0: qyoto-%version.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: libqyoto2 = %version
%description
.NET/Mono bindings for the Qt4 libraries from the kdebindings Qyoto project.
%prep
%setup -q -n qyoto-%version
%build
%cmake_kde4 -d build
%make_jobs
%install
cd build
%makeinstall
%package -n libqyoto2
License: LGPLv2.1+
Group: Development/Languages/Mono
Summary: Mono bindings for Qt4 libraries
%description -n libqyoto2
Shared library for the .NET/Mono bindings for the Qt4 libraries.
%package devel
License: LGPLv2.1+
Group: Development/Languages/Mono
Summary: Development libraries for Mono-Qt4
Requires: %{name} = %version
%description devel
This package contains development files for the .NET/Mono bindings for the Qt4 libraries.
%post -n libqyoto2 -p /sbin/ldconfig
%postun -n libqyoto2 -p /sbin/ldconfig
%files -n libqyoto2
%defattr(-,root,root)
%_kde4_libdir/libqyoto.so.*
%files
%defattr(-,root,root)
%dir %_prefix/lib/mono
%dir %_prefix/lib/mono/qyoto
%_prefix/lib/mono/gac/qt-dotnet
%_prefix/lib/mono/gac/qtscript
%_prefix/lib/mono/gac/qttest
%_prefix/lib/mono/gac/qtuitools
%_prefix/lib/mono/gac/qtwebkit
%_prefix/lib/mono/gac/phonon
%_prefix/lib/mono/qyoto/q*.dll
%_prefix/lib/mono/qyoto/phonon.dll
%_kde4_libdir/libqtscript-sharp.so
%_kde4_libdir/libphonon-sharp.so
%_kde4_libdir/libqyoto.so
%_kde4_libdir/libqttest-sharp.so
%_kde4_libdir/libqtuitools-sharp.so
%_kde4_libdir/libqtwebkit-sharp.so
%_kde4_libdir/libqscintilla-sharp.so
/usr/lib/mono/gac/qscintilla/
%_datadir/qyoto/
%files devel
%defattr(-,root,root)
%_kde4_bindir/csrcc
%_kde4_bindir/uics
/usr/include/qyoto
%_kde4_libdir/pkgconfig/qyoto.pc
%_kde4_libdir/pkgconfig/qtwebkit-sharp.pc
%_kde4_libdir/pkgconfig/qttest-sharp.pc
%_kde4_libdir/pkgconfig/qtuitools-sharp.pc
%_kde4_libdir/pkgconfig/qtscript-sharp.pc
%_datadir/qyoto/cmake
%changelog
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0