commit csound for openSUSE:11.4

2012-02-27 Thread h_root

Hello community,

here is the log from the commit of package csound for openSUSE:11.4
checked in at Mon Feb 27 16:42:00 CET 2012.




--- old-versions/11.4/all/csound/csound.changes 2009-07-16 18:05:26.0 
+0200
+++ 11.4/csound/csound.changes  2012-02-27 11:21:44.0 +0100
@@ -1,0 +2,6 @@
+Mon Feb 27 11:21:19 CET 2012 - ti...@suse.de
+
+- VUL-0: CVE-2012-0270: csound: two buffer overflow flaws in getnum()
+  (bnc#749073)
+
+---

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


New:

  csound-fix-CVE-2012-0270.patch



Other differences:
--
++ csound.spec ++
--- /var/tmp/diff_new_pack.b39PtT/_old  2012-02-27 16:40:59.0 +0100
+++ /var/tmp/diff_new_pack.b39PtT/_new  2012-02-27 16:40:59.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package csound (Version 5.06.0)
+# spec file for package csound
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,20 +15,32 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   csound
 %define support_fltk   0
-BuildRequires:  alsa-devel fdupes fluidsynth-devel gcc-c++ jack-devel 
liblo-devel libsndfile-devel portaudio-devel python-devel scons swig
+BuildRequires:  alsa-devel
+BuildRequires:  fdupes
+BuildRequires:  fluidsynth-devel
+BuildRequires:  gcc-c++
+BuildRequires:  jack-devel
+BuildRequires:  liblo-devel
+BuildRequires:  libsndfile-devel
+BuildRequires:  portaudio-devel
+BuildRequires:  python-devel
+BuildRequires:  scons
+BuildRequires:  swig
 %if %support_fltk
-BuildRequires:  fltk-devel libjpeg-devel libpng-devel xorg-x11-devel
+BuildRequires:  fltk-devel
+BuildRequires:  libjpeg-devel
+BuildRequires:  libpng-devel
+BuildRequires:  xorg-x11-devel
 %endif
 Summary:Computer Sound Synthesis and Composition Program
-Version:5.06.0
-Release:130
-License:GFDL v1.2 ; LGPL v2.1 or later ; MIT License (or similar)
+License:GFDL-1.2 ; LGPL-2.1+ ; MIT
 Group:  Productivity/Multimedia/Sound/Utilities
+Version:5.06.0
+Release:139.RELEASE140
 Source: Csound%{version}.tar.bz2
 Source1:README.SuSE
 Patch:  csound-alsa-fix.diff
@@ -36,6 +48,7 @@
 Patch2: csound-gcc-warning-fix.diff
 Patch3: csound-python-2.6-fix.diff
 Patch4: csound-sanitize-sys.patch
+Patch5: csound-fix-CVE-2012-0270.patch
 Url:http://www.csounds.com
 AutoReq:on
 Autoprov:   off
@@ -56,6 +69,7 @@
 %patch2
 %patch3
 %patch4 -p1
+%patch5 -p1
 cp %{SOURCE1} .
 # fix encoding
 iconv -f latin1 -t utf8 readme-csound5.txt  readme-csound5.txt.utf8

++ csound-fix-CVE-2012-0270.patch ++
From 7d617a9551fb6c552ba16874b71266fcd90f3a6f Mon Sep 17 00:00:00 2001
From: John ffitch j...@cs.bath.ac.uk
Date: Thu, 19 Jan 2012 21:15:30 +
Subject: [PATCH] fix buffer overflows

---
 util/het_import.c |2 +-
 util/heti_main.c  |2 +-
 util/lpci_main.c  |4 
 util/pv_import.c  |2 +-
 4 files changed, 7 insertions(+), 3 deletions(-)

--- a/util/het_import.c
+++ b/util/het_import.c
@@ -49,7 +49,7 @@ short getnum(FILE* inf, char *term)
 char buff[100];
 int  cc;
 int p = 0;
-while ((cc=getc(inf))!=','  cc!='\n') {
+while ((cc=getc(inf))!=','  cc!='\n'  p99) {
 if (cc == EOF) {
 *term = '\0';
 return 0;
--- a/util/heti_main.c
+++ b/util/heti_main.c
@@ -43,7 +43,7 @@ short getnum(FILE* inf, char *term)
 char buff[100];
 int  cc;
 int p = 0;
-while ((cc=getc(inf))!=','  cc!='\n') {
+while ((cc=getc(inf))!=','  cc!='\n'  p99) {
 if (cc == EOF) {
 *term = '\0';
 return 0;
--- a/util/lpci_main.c
+++ b/util/lpci_main.c
@@ -78,6 +78,10 @@ int main(int argc, char **argv)
   putc(str[i],outf);
 putc('\n', outf);
 coef = (MYFLT *)malloc((hdr.npoles+hdr.nvals)*sizeof(MYFLT));
+if (coef==NULL) {
+  printf(memory allocation failure\n);
+  exit(1);
+}
 for (i = 0; ihdr.nvals; i++) {
   fread(coef[0], sizeof(MYFLT), hdr.npoles, inf);
   for (j=0; jhdr.npoles; j++)
--- a/util/pv_import.c
+++ b/util/pv_import.c
@@ -44,7 +44,7 @@ static float getnum(FILE* inf, char *ter
 char buff[100];
 int  cc;
 int p = 0;
-while ((cc=getc(inf))!=','  cc!='\n'  cc!=EOF) buff[p++] = cc;
+while ((cc=getc(inf))!=','  cc!='\n'  cc!=EOF  p99) buff[p++] = cc;
 buff[p]='\0';
 *term = cc;
 return (float)atof(buff);

commit chromium for openSUSE:12.1:Update:Test

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package chromium for 
openSUSE:12.1:Update:Test checked in at 2012-02-27 16:45:22

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


Package is chromium, Maintainer is prus...@suse.com

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/chromium/chromium.changes   
2012-01-31 12:15:26.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.chromium.new/chromium.changes  
2012-02-27 16:45:52.0 +0100
@@ -1,0 +2,80 @@
+Mon Feb 20 14:39:23 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 19.0.1046
+  * Security updates
++ CVE-2011-3015: Integer overflows in PDF codecs.
++ CVE-2011-3016: Read-after-free with counter nodes.
++ CVE-2011-3017: Possible use-after-free in database handling.
++ CVE-2011-3018: Heap overflow in path rendering.
++ CVE-2011-3019: Heap buffer overflow in MKV handling.
++ CVE-2011-3020: Native client validator error.
++ CVE-2011-3021: Use-after-free in subframe loading.
++ CVE-2011-3022: Inappropriate use of http for translation script.
++ CVE-2011-3023: Use-after-free with drag and drop.
++ CVE-2011-3024: Browser crash with empty x509 certificate.
++ CVE-2011-3025: Out-of-bounds read in h.264 parsing.
++ CVE-2011-3026: Integer overflow / truncation in libpng.
++ CVE-2011-3027: Bad cast in column handling.
+
+---
+Wed Feb 15 07:40:59 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 19.0.1042
+  * Make speech input bubble borders close with the bubble 
+[Issue: 112194]
+  * Fixed stability issues 
+[Issues:  113531, 113492, 113654, 113546, 113847, 114011]
+  * Use Google’s online spellchecker to identify misspelled words 
+as well as provide suggestions, for pasted text only.
+  * Fix: open incognito windows at exit created extra normal 
+windows when the session was restored
+  * When translating a page, get the code and translation via HTTPS
+
+---
+Fri Feb 10 05:36:56 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 19.0.1037
+  * Fix crashing timing bug where panel animates after its closed
+(issue#20)
+  * Remove patch to build with newer glib version. This was merged
+upstream
+  * Added option to disable building with gold for x86_64. Used
+linker option --icf=none is not supported yet.
+
+---
+Mon Feb  6 10:45:25 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 19.0.1031
+  * Block plugins for platform apps
+To block plugins a new content settings has been added, with 
+the highest priority (i.e. at the front of the list). This 
+could be used down the track to hang off more platform app 
+specific stuff.
+  * Remove unconditional -msse3 -mssse3 CFLAGS from media.gyp 
+(issue#107532)
+  * Refactoring of Settings page
+  * Other bugfixes
+  * Security Fixes:  
+CVE-2011-3953: Avoid clipboard monitoring after paste event.
+CVE-2011-3954: Crash with excessive database usage.
+CVE-2011-3955: Crash aborting an IndexDB transaction
+CVE-2011-3956: Incorrect handling of sandboxed origins inside 
+   extensions
+CVE-2011-3957: Use-after-free in PDF garbage collection
+CVE-2011-3958: Bad casts with column spans
+CVE-2011-3959: Buffer overflow in locale handling
+CVE-2011-3960: Out-of-bounds read in audio decoding
+CVE-2011-3961: Race condition after crash of utility process
+CVE-2011-3962: Out-of-bounds read in path clipping
+CVE-2011-3963: Out-of-bounds read in PDF fax image handling
+CVE-2011-3964: URL bar confusion after drag + drop
+CVE-2011-3965: Crash in signature check
+CVE-2011-3966: Use-after-free in stylesheet error handling
+CVE-2011-3967: Crash with unusual certificate.
+CVE-2011-3968: Use-after-free in CSS handling
+CVE-2011-3969: Use-after-free in SVG layout.
+CVE-2011-3970: Out-of-bounds read in libxslt
+CVE-2011-3971: Use-after-free with mousemove events
+CVE-2011-3972: Out-of-bounds read in shader translator
+
+---

Old:

  chromium-new-glib.patch
  chromium.18.0.1022.0.svn119632.tar.lzma

New:

  chromium.19.0.1046.0.svn122684.tar.bz2



Other differences:
--
++ chromium.spec ++
--- /var/tmp/diff_new_pack.FSv1Fu/_old  2012-02-27 16:46:06.0 +0100
+++ /var/tmp/diff_new_pack.FSv1Fu/_new  2012-02-27 16:46:06.0 +0100
@@ -15,18 +15,19 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-%define v8_ver 

commit v8 for openSUSE:12.1:Update:Test

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package v8 for openSUSE:12.1:Update:Test 
checked in at 2012-02-27 16:46:27

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


Package is v8, Maintainer is 

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/v8/v8.changes   2012-01-31 
12:15:39.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.v8.new/v8.changes  2012-02-27 
16:46:31.0 +0100
@@ -1,0 +2,56 @@
+Sat Feb 18 08:12:38 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 3.9.7.0
+  * Fixed V8 issues 1878, 1942, 1945 and Chromium issue 113924.
+  * Fixed GCC-4.7 warnings.
+  * Added Navier-Stokes benchmark.
+  * Performance and stability improvements on all platforms.
+
+
+---
+Tue Feb 14 20:51:27 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 3.9.6.1
+  * Removed unused command line flags
+  * Fix template-related linker error. (issue 1936)
+  * Allow inlining of functions containing object literals.  
+(issue 1322)
+  * Add --call-graph-size option to tickprocessor.  (issue 1937)
+  * Heap Snapshot maximum size limit is too low for really big 
+apps. At the moment the limit is 256MB.  
+(Chromium issue 113015)
+  * Performance and stability improvements on all platforms.
+
+---
+Thu Feb  9 13:12:03 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 3.9.4.0
+  * Properly initialize element-transitioning array literals on ARM.
+(issue 1930)
+  * Bug fixes on all platforms.
+
+---
+Wed Feb  8 17:55:49 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 3.9.3.0
+  * Optionally export metadata with libv8 to enable debuggers to 
+inspect V8 state.
+  * Add timestamp to --trace-gc output. (issue 1932)
+  * Heap profiler reports implicit references.
+  * When rethrowing an exception, print the stack trace of its 
+original site instead of rethrow site (Chromium issue 60240).
+  * Increased size of small stacks from 32k to 64k to avoid hitting 
+limits in Chromium (Chromium issue 112843).
+
+---
+Mon Feb  6 09:31:08 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 3.9.1.0
+  * Reduce memory use immediately after starting V8.
+  * Fixed memory leak in NativeObjectsExplorer::FindOrAddGroupInfo
+(Chromium issue 112315).
+  * Fixed a crash in dev tools (Chromium issue 107996).
+  * Added 'dependencies_traverse': 1 to v8 GYP target.
+  * Performance and stability improvements on all platforms.
+
+---

Old:

  v8.3.8.9.0.tar.lzma

New:

  v8.3.9.7.0.tar.lzma



Other differences:
--
++ v8.spec ++
--- /var/tmp/diff_new_pack.JnBFSF/_old  2012-02-27 16:46:32.0 +0100
+++ /var/tmp/diff_new_pack.JnBFSF/_new  2012-02-27 16:46:32.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   v8
-Version:3.8.9.0
+Version:3.9.7.0
 Release:0
 Summary:JavaScript Engine
 License:BSD-3-Clause

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



commit kdebase3 for openSUSE:12.1:Update:Test

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package kdebase3 for 
openSUSE:12.1:Update:Test checked in at 2012-02-27 16:46:53

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


Package is kdebase3, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/kdebase3/kdebase3.changes   
2011-12-12 21:40:19.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.kdebase3.new/kdebase3.changes  
2012-02-27 16:46:54.0 +0100
@@ -1,0 +2,36 @@
+Fri Feb 24 10:47:50 UTC 2012 - an...@opensuse.org
+
+- use upower instead of hal for hibernate and suspend, 
+  thanks to Sergei Amelian (gentoo/trinity) (bnc#749028)
+
+---
+Wed Feb  8 16:45:34 UTC 2012 - an...@opensuse.org
+
+- add a konq patch from KDE3 svn
+
+---
+Wed Feb  8 12:48:59 UTC 2012 - an...@opensuse.org
+
+- remove qt3-devel-doc dependency
+
+---
+Tue Feb  7 22:37:05 UTC 2012 - an...@opensuse.org
+
+- remove openmotif dependency
+
+---
+Tue Jan 31 21:26:38 UTC 2012 - co...@suse.com
+
+- do not provide sysguardd for kde4
+
+---
+Mon Jan 23 14:19:07 UTC 2012 - an...@opensuse.org
+
+- build fileshareset with PIE option
+
+---
+Wed Jan 11 18:02:45 UTC 2012 - an...@opensuse.org
+
+- add small patch from Slackware
+
+---

New:

  kdebase-slackware-kicker.diff
  kdebase-svn-konq-move.patch
  kickoff-shutdown-upower.patch
  ksmserver-shutdown-upower.patch



Other differences:
--
++ kdebase3.spec ++
--- /var/tmp/diff_new_pack.UnzXk9/_old  2012-02-27 16:46:55.0 +0100
+++ /var/tmp/diff_new_pack.UnzXk9/_new  2012-02-27 16:46:55.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdebase3
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %if %{suse_version}  1210 
 %define with_hal 1
 %else
@@ -22,9 +23,28 @@
 %endif
 
 Name:   kdebase3
-BuildRequires:  OpenEXR-devel cups-devel db-devel doxygen graphviz 
kdelibs3-devel krb5-devel libsmbclient-devel mDNSResponder-devel openldap2 
openldap2-devel openmotif openmotif-devel openslp-devel openssh pam-devel 
pcsc-lite-devel qt3-devel-doc samba-client utempter xorg-x11
-BuildRequires:  unsermake xorg-x11-libfontenc-devel
+BuildRequires:  OpenEXR-devel
+BuildRequires:  cups-devel
+BuildRequires:  db-devel
+BuildRequires:  doxygen
+BuildRequires:  graphviz
+BuildRequires:  kdelibs3-devel
+BuildRequires:  krb5-devel
 BuildRequires:  liblazy-devel
+BuildRequires:  libsmbclient-devel
+BuildRequires:  mDNSResponder-devel
+BuildRequires:  openldap2
+BuildRequires:  openldap2-devel
+BuildRequires:  openslp-devel
+BuildRequires:  openssh
+BuildRequires:  pam-devel
+BuildRequires:  pcsc-lite-devel
+BuildRequires:  samba-client
+BuildRequires:  unsermake
+BuildRequires:  utempter
+BuildRequires:  xorg-x11
+BuildRequires:  xorg-x11-libfontenc-devel
+BuildRequires:  libdbus-1-qt3-0-devel
 %if %suse_version = 1130
 BuildRequires:  libusb-compat-devel
 %endif
@@ -32,7 +52,8 @@
 BuildRequires:  hal-devel
 Provides:   kdebase3-with-hal-enabled
 %endif
-BuildRequires:  fdupes libbz2-devel
+BuildRequires:  fdupes
+BuildRequires:  libbz2-devel
 %ifnarch s390 s390x
 BuildRequires:  libsensors4-devel
 %endif
@@ -58,13 +79,13 @@
 Provides:   kdebase3-beagle = 3.5.10
 Obsoletes:  kdebase3-beagle = 3.5.10
 %endif
+Summary:The KDE Core Components
 License:GPL-2.0+
 Group:  System/GUI/KDE
-Summary:The KDE Core Components
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://www.kde.org/
 Version:3.5.10.1
-Release:18
+Release:0
 %definekde_version 3.5.10
 Requires:   kdebase3-runtime == %{version}
 Source0:kdebase-%{kde_version}.tar.bz2
@@ -252,6 +273,10 @@
 Patch266:   further-desktop-icons-adjustment.patch
 Patch267:   kdebase-pardus-fix-autosuspend.patch
 Patch268:   systemd-shutdown.patch
+Patch269:   kdebase-slackware-kicker.diff
+Patch270:   

commit virt-manager for openSUSE:12.1:Update:Test

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package virt-manager for 
openSUSE:12.1:Update:Test checked in at 2012-02-27 16:47:20

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


Package is virt-manager, Maintainer is carn...@suse.com

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/virt-manager/virt-manager.changes   
2012-02-08 17:55:36.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.virt-manager.new/virt-manager.changes  
2012-02-27 16:47:21.0 +0100
@@ -1,0 +2,26 @@
+Wed Feb 22 13:55:44 MST 2012 - carn...@novell.com
+
+- bnc#732617 - virt-manager does not start when python-virtinst is 
+  installed
+
+---
+Fri Feb  3 12:54:27 MST 2012 - carn...@novell.com
+
+- Remove the virt-install sources from the virt-manager package.
+  The virt-install applications are now found in python-virtinst.
+
+---
+Fri Feb  3 05:49:34 MST 2012 - carn...@novell.com
+
+- Update to virt-manager 0.9.1
+  * Support for adding usb redirection devices (Marc-André Lureau)
+  * Option to switch usb controller to support usb2.0 (Marc-André Lureau)
+  * Option to specify machine type for non-x86 guests (Li Zhang)
+  * Support for filesystem device type and write policy (Deepak C Shetty)
+  * Many bug fixes!
+- Update to virtinst 0.600.1
+  * virt-install: --redir option for usb redirection (Marc-André Lureau)
+  * virt-install: Advanced --controller support for usb2 (Marc-André Lureau)
+  * Many bug fixes and minor improvments.
+
+---

Old:

  virt-manager-0.9.0.tar.bz2
  virtinst-0.600.0.tar.bz2
  virtinst-cdrom.diff
  virtinst-git-sata-support.diff
  virtinst-qed.diff
  virtinst-storage-ocfs2.diff
  virtman-git-reconnect.diff
  virtman-git-sata-support.diff
  virtman-help.diff
  virtman-reverse-git-tooltip.patch

New:

  virt-manager-0.9.1.tar.bz2
  virtman-slow-mouse.diff



Other differences:
--
++ virt-manager.spec ++
--- /var/tmp/diff_new_pack.TC7jE9/_old  2012-02-27 16:47:23.0 +0100
+++ /var/tmp/diff_new_pack.TC7jE9/_new  2012-02-27 16:47:23.0 +0100
@@ -15,12 +15,11 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-%define _extra_release 
%{?dist:%{dist}}%{!?dist:%{?extra_release:%{extra_release}}}
 %define gsysconfdir /etc
 %define gconftool /usr/bin/gconftool-2
 %define virtinst_maj 0
 %define virtinst_min 600
-%define virtinst_rel 0
+%define virtinst_rel 1
 %define virtinst_name virtinst-%{virtinst_maj}.%{virtinst_min}.%{virtinst_rel}
 
 %define pysite %(python -c import distutils.sysconfig; print 
distutils.sysconfig.get_python_lib())
@@ -29,103 +28,59 @@
 Summary:Virtual Machine Manager
 License:GPL-2.0+
 Group:  System/Monitoring
-Version:0.9.0
+Version:0.9.1
 Release:0
 Url:http://virt-manager.et.redhat.com
 Source0:virt-manager-%{version}.tar.bz2
-Source1:%{virtinst_name}.tar.bz2
-# see https://bugzilla.redhat.com/show_bug.cgi?id=620216,
-# https://bugzilla.novell.com/show_bug.cgi?id=641981
-Patch0: virtman-git-reconnect.diff
-Patch1: virtman-git-sata-support.diff
 Patch50:virtman-desktop.diff
 Patch51:virtman-vminstall.diff
 Patch52:virtman-cdrom.diff
 Patch53:virtman-kvm.diff
-Patch54:virtman-help.diff
-Patch55:virtman-keycombo.diff
-Patch56:virtman-autoconnect.diff
+Patch54:virtman-keycombo.diff
+Patch55:virtman-autoconnect.diff
 Patch60:virtman-device-flags.diff
 Patch61:virtman-autorestart.diff
 Patch62:virtman-storage-pool.diff
 Patch63:virtman-eepro100.diff
 Patch64:virtman-qed.diff
 Patch65:virtman-update-backend.diff
-Patch66:virtman-reverse-git-tooltip.patch
-Patch100:   virtinst-git-sata-support.diff
-Patch150:   virtinst-cdrom.diff
-Patch151:   virtinst-storage-ocfs2.diff
-Patch152:   virtinst-qed.diff
+Patch66:virtman-slow-mouse.diff
 ExclusiveArch:  %{ix86} x86_64
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %gconf_schemas_prereq
 #
-#rpmlint BuildRequires:  python
+BuildRequires:  desktop-file-utils
+BuildRequires:  gconf2-devel
 BuildRequires:  gettext
-BuildRequires:  gtk2-devel
 BuildRequires:  intltool
-BuildRequires:  python-devel
 BuildRequires:  scrollkeeper
-#rpmlint BuildRequires:  python-gtk
-BuildRequires:  python-gtk-devel
-BuildRequires:  python-gobject2-devel
-BuildRequires:  gconf2-devel
-BuildRequires:  desktop-file-utils
 

commit ack for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package ack for openSUSE:Factory checked in 
at 2012-02-27 18:32:53

Comparing /work/SRC/openSUSE:Factory/ack (Old)
 and  /work/SRC/openSUSE:Factory/.ack.new (New)


Package is ack, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/ack/ack.changes  2011-09-23 01:51:29.0 
+0200
+++ /work/SRC/openSUSE:Factory/.ack.new/ack.changes 2012-02-27 
18:32:57.0 +0100
@@ -1,0 +2,10 @@
+Mon Feb 27 05:45:22 UTC 2012 - mrd...@opensuse.org
+
+-run osc service localrun format_spec_file to fix for factory
+
+---
+Mon Feb 13 10:43:56 UTC 2012 - co...@suse.com
+
+- patch license to follow spdx.org standard
+
+---



Other differences:
--
++ ack.spec ++
--- /var/tmp/diff_new_pack.vJpDC4/_old  2012-02-27 18:32:59.0 +0100
+++ /var/tmp/diff_new_pack.vJpDC4/_new  2012-02-27 18:32:59.0 +0100
@@ -1,5 +1,20 @@
 # vim: set ts=4 sw=4 et:
+#
+# spec file for package ack
+#
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+#
+# All modifications and additions to the file contributed by third parties
+# remain the property of their copyright owners, unless otherwise agreed
+# 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/
+#
 %{!?perl_make_install:  %global perl_make_install make DESTDIR=$RPM_BUILD_ROOT 
install_vendor}
 
 %if 0%{?suse_version} = 1100 || 0%{?fedora} = 13
@@ -12,16 +27,18 @@
 Version:1.96
 Release:   0
 Summary:Grep-Like Text Finder
+License:Artistic-1.0 or GPL-1.0+
+Group:  Productivity/Text/Utilities
 Source: 
http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/ack-%{version}.tar.gz
 Patch1: ack-ignore-osc.patch
 Patch2: ack-fix_smartcase_test_for_old_perl.patch
 Patch3: ack-add_spec.patch
-URL:http://petdance.com/ack/
-Group:  Productivity/Text/Utilities
-License:Perl License
-BuildRoot:  %{_tmppath}/build-%{name}-%{version}
+Url:http://petdance.com/ack/
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   perl
-BuildRequires:  make perl perl-File-Next
+BuildRequires:  make
+BuildRequires:  perl
+BuildRequires:  perl-File-Next
 %if %with_pod
 BuildRequires:  perl(Test::Pod)
 %endif
@@ -94,3 +111,4 @@
 %if 0%{?perl_process_packlist:1}
 %endif
 
+%changelog

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



commit arping2 for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package arping2 for openSUSE:Factory checked 
in at 2012-02-27 18:32:58

Comparing /work/SRC/openSUSE:Factory/arping2 (Old)
 and  /work/SRC/openSUSE:Factory/.arping2.new (New)


Package is arping2, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/arping2/arping2.changes  2011-09-23 
01:51:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.arping2.new/arping2.changes 2012-02-27 
18:33:02.0 +0100
@@ -1,0 +2,8 @@
+Mon Feb 27 04:55:30 UTC 2012 - jeng...@medozas.de
+
+- Update to new upstream release 2.10
+* This release adds much improved and portable interface
+  autodetection. It replaces gettimeofday() with clock_gettime()
+  where available.
+
+---

Old:

  arping-2.09.tar.xz

New:

  arping-2.10.tar.xz



Other differences:
--
++ arping2.spec ++
--- /var/tmp/diff_new_pack.Ieahmu/_old  2012-02-27 18:33:03.0 +0100
+++ /var/tmp/diff_new_pack.Ieahmu/_new  2012-02-27 18:33:03.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package arping2
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,23 +15,24 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   arping2
-Version:2.09
-Release:1
-Group:  Productivity/Networking/Diagnostic
+Version:2.10
+Release:0
 Summary:Layer-2 Ethernet pinger
 License:GPL-2.0+
-Url:http://freshmeat.net/projects/arping/
+Group:  Productivity/Networking/Diagnostic
+Url:http://www.habets.pp.se/synscan/programs.php?prog=arping
+#Freecode-URL: http://freecode.com/projects/arping/
 
 #Git-Clone:git://github.com/ThomasHabets/arping
 Source: arping-%version.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version} = 1130
-BuildRequires:  libnet libpcap-devel
+BuildRequires:  libnet
+BuildRequires:  libpcap-devel
 %else
-BuildRequires:  libnet-devel libpcap-devel
+BuildRequires:  libnet-devel
+BuildRequires:  libpcap-devel
 %endif
 BuildRequires:  xz
 

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



commit cherrytree for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package cherrytree for openSUSE:Factory 
checked in at 2012-02-27 18:33:05

Comparing /work/SRC/openSUSE:Factory/cherrytree (Old)
 and  /work/SRC/openSUSE:Factory/.cherrytree.new (New)


Package is cherrytree, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/cherrytree/cherrytree.changes2012-02-06 
15:54:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.cherrytree.new/cherrytree.changes   
2012-02-27 18:34:29.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb 24 12:27:46 UTC 2012 - vu...@opensuse.org
+
+- Update to version 0.25.4:
+  + Bug fixes.
+
+---
@@ -5,6 +11 @@
-  + The limit of undoable steps per node is now configurable.
-  + Implemented a dialog to iterate graphical way the find/replace.
-  + Implemented the insertion of timestamps. Format is configurable
-through preferences dialog.
-  + Fixed some bugs/bad behaviors related to system tray, nodes 
-drag n drop, links to files dialog and others.
+  + Bug fixes.

Old:

  cherrytree-0.25.3.tar.gz

New:

  cherrytree-0.25.4.tar.gz



Other differences:
--
++ cherrytree.spec ++
--- /var/tmp/diff_new_pack.fdTYQy/_old  2012-02-27 18:34:30.0 +0100
+++ /var/tmp/diff_new_pack.fdTYQy/_new  2012-02-27 18:34:30.0 +0100
@@ -17,8 +17,8 @@
 
 
 Name:   cherrytree
-Version:0.25.3
-Release:1
+Version:0.25.4
+Release:0
 Summary:A hierarchical note taking application
 License:GPL-2.0+
 Group:  Productivity/Office/Other

++ cherrytree-0.25.3.tar.gz - cherrytree-0.25.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cherrytree-0.25.3/debian/changelog 
new/cherrytree-0.25.4/debian/changelog
--- old/cherrytree-0.25.3/debian/changelog  2012-02-03 13:39:01.0 
+0100
+++ new/cherrytree-0.25.4/debian/changelog  2012-02-22 23:58:49.0 
+0100
@@ -1,4 +1,4 @@
-cherrytree (0.25.3-1) stable; urgency=low
+cherrytree (0.25.4-1) stable; urgency=low
 
   * Fellow upstream.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cherrytree-0.25.3/debian/debhelper.log 
new/cherrytree-0.25.4/debian/debhelper.log
--- old/cherrytree-0.25.3/debian/debhelper.log  2012-02-03 14:00:28.0 
+0100
+++ new/cherrytree-0.25.4/debian/debhelper.log  2012-02-24 09:29:39.0 
+0100
@@ -7,6 +7,67 @@
 dh_link
 dh_compress
 dh_fixperms
+dh_pycentral
+dh_installdeb
+dh_gencontrol
+dh_md5sums
+dh_builddeb
+dh_prep
+dh_installdirs
+dh_installchangelogs
+dh_installdocs
+dh_installexamples
+dh_installman
+dh_link
+dh_compress
+dh_fixperms
+dh_pycentral
+dh_installdeb
+dh_gencontrol
+dh_md5sums
+dh_builddeb
+dh_prep
+dh_installdirs
+dh_installchangelogs
+dh_installdocs
+dh_installexamples
+dh_installman
+dh_link
+dh_compress
+dh_fixperms
+dh_pycentral
+dh_installdeb
+dh_gencontrol
+dh_md5sums
+dh_builddeb
+dh_prep
+dh_installdirs
+dh_installchangelogs
+dh_installdocs
+dh_installexamples
+dh_installman
+dh_link
+dh_compress
+dh_fixperms
+dh_pycentral
+dh_installdeb
+dh_gencontrol
+dh_md5sums
+dh_builddeb
+dh_prep
+dh_installdirs
+dh_installchangelogs
+dh_installdocs
+dh_installexamples
+dh_installman
+dh_link
+dh_compress
+dh_fixperms
+dh_pycentral
+dh_installdeb
+dh_gencontrol
+dh_md5sums
+dh_builddeb
 dh_prep
 dh_installdirs
 dh_installchangelogs
Files old/cherrytree-0.25.3/linux/cherrytree.1.gz and 
new/cherrytree-0.25.4/linux/cherrytree.1.gz differ
Files old/cherrytree-0.25.3/locale/cs/LC_MESSAGES/cherrytree.mo and 
new/cherrytree-0.25.4/locale/cs/LC_MESSAGES/cherrytree.mo differ
Files old/cherrytree-0.25.3/locale/de/LC_MESSAGES/cherrytree.mo and 
new/cherrytree-0.25.4/locale/de/LC_MESSAGES/cherrytree.mo differ
Files old/cherrytree-0.25.3/locale/es/LC_MESSAGES/cherrytree.mo and 
new/cherrytree-0.25.4/locale/es/LC_MESSAGES/cherrytree.mo differ
Files old/cherrytree-0.25.3/locale/fr/LC_MESSAGES/cherrytree.mo and 
new/cherrytree-0.25.4/locale/fr/LC_MESSAGES/cherrytree.mo differ
Files old/cherrytree-0.25.3/locale/it/LC_MESSAGES/cherrytree.mo and 
new/cherrytree-0.25.4/locale/it/LC_MESSAGES/cherrytree.mo differ
Files old/cherrytree-0.25.3/locale/pl/LC_MESSAGES/cherrytree.mo and 
new/cherrytree-0.25.4/locale/pl/LC_MESSAGES/cherrytree.mo differ
Files old/cherrytree-0.25.3/locale/ru/LC_MESSAGES/cherrytree.mo and 
new/cherrytree-0.25.4/locale/ru/LC_MESSAGES/cherrytree.mo differ
Files old/cherrytree-0.25.3/locale/uk/LC_MESSAGES/cherrytree.mo and 
new/cherrytree-0.25.4/locale/uk/LC_MESSAGES/cherrytree.mo differ
Files old/cherrytree-0.25.3/modules/clipboard.pyc and 
new/cherrytree-0.25.4/modules/clipboard.pyc differ

commit compcache for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package compcache for openSUSE:Factory 
checked in at 2012-02-27 18:33:18

Comparing /work/SRC/openSUSE:Factory/compcache (Old)
 and  /work/SRC/openSUSE:Factory/.compcache.new (New)


Package is compcache, Maintainer is ti...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/compcache/compcache.changes  2012-01-10 
14:50:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.compcache.new/compcache.changes 2012-02-27 
18:35:14.0 +0100
@@ -1,0 +2,6 @@
+Sun Feb 26 14:46:36 CET 2012 - r...@suse.de
+
+- module parameter name changed from num_devices to
+  zram_num_devices, adapt init-script accordingly 
+
+---



Other differences:
--
++ boot.compcache ++
--- /var/tmp/diff_new_pack.7xuOCK/_old  2012-02-27 18:35:15.0 +0100
+++ /var/tmp/diff_new_pack.7xuOCK/_new  2012-02-27 18:35:15.0 +0100
@@ -25,6 +25,7 @@
 UDEVADM_BIN=/sbin/udevadm
 MODPROBE_BIN=/sbin/modprobe
 RZSCTL_BIN=/usr/sbin/rzscontrol
+NUM_DEV=num_devices
 test -z $COMPCACHE_NUM_DEVICES -o $COMPCACHE_NUM_DEVICES -le 0  
COMPCACHE_NUM_DEVICES=$(cat /proc/cpuinfo | grep processor | wc -l)
 test -z $COMPCACHE_SIZE_KB  COMPCACHE_SIZE_KB=0
 
@@ -34,6 +35,7 @@
 3.*)
ZRAM=zram
SWAPDEVNM=/dev/zram
+   NUM_DEV=zram_num_devices
;;
 2.6.*)
krel=${kver#2.6.}
@@ -78,7 +80,7 @@
COMPCACHE_SIZE_STR=$(expr $COMPCACHE_SIZE_KB / 1024) MB
fi
echo -n Loading $ZRAM driver with $COMPCACHE_NUM_DEVICES devices 
and $COMPCACHE_SIZE_STR memory 
-   $MODPROBE_BIN -q $ZRAM num_devices=$COMPCACHE_NUM_DEVICES  
/dev/null
+   $MODPROBE_BIN -q $ZRAM $NUM_DEV=$COMPCACHE_NUM_DEVICES  /dev/null
rc_status -v
# /dev/ramzswap0 is not available immediately after insmod returns
# So, let udev complete its work before we do swapon

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



commit chromium for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package chromium for openSUSE:Factory 
checked in at 2012-02-27 18:33:13

Comparing /work/SRC/openSUSE:Factory/chromium (Old)
 and  /work/SRC/openSUSE:Factory/.chromium.new (New)


Package is chromium, Maintainer is prus...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/chromium/chromium.changes2012-02-10 
17:11:59.0 +0100
+++ /work/SRC/openSUSE:Factory/.chromium.new/chromium.changes   2012-02-27 
18:34:44.0 +0100
@@ -1,0 +2,44 @@
+Mon Feb 20 14:39:23 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 19.0.1046
+  * Security updates
++ CVE-2011-3015: Integer overflows in PDF codecs.
++ CVE-2011-3016: Read-after-free with counter nodes.
++ CVE-2011-3017: Possible use-after-free in database handling.
++ CVE-2011-3018: Heap overflow in path rendering.
++ CVE-2011-3019: Heap buffer overflow in MKV handling.
++ CVE-2011-3020: Native client validator error.
++ CVE-2011-3021: Use-after-free in subframe loading.
++ CVE-2011-3022: Inappropriate use of http for translation script.
++ CVE-2011-3023: Use-after-free with drag and drop.
++ CVE-2011-3024: Browser crash with empty x509 certificate.
++ CVE-2011-3025: Out-of-bounds read in h.264 parsing.
++ CVE-2011-3026: Integer overflow / truncation in libpng.
++ CVE-2011-3027: Bad cast in column handling.
+
+---
+Wed Feb 15 07:40:59 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 19.0.1042
+  * Make speech input bubble borders close with the bubble 
+[Issue: 112194]
+  * Fixed stability issues 
+[Issues:  113531, 113492, 113654, 113546, 113847, 114011]
+  * Use Google’s online spellchecker to identify misspelled words 
+as well as provide suggestions, for pasted text only.
+  * Fix: open incognito windows at exit created extra normal 
+windows when the session was restored
+  * When translating a page, get the code and translation via HTTPS
+
+---
+Fri Feb 10 05:36:56 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 19.0.1037
+  * Fix crashing timing bug where panel animates after its closed
+(issue#20)
+  * Remove patch to build with newer glib version. This was merged
+upstream
+  * Added option to disable building with gold for x86_64. Used
+linker option --icf=none is not supported yet.
+
+---

Old:

  chromium-new-glib.patch
  chromium.19.0.1031.0.svn120549.tar.lzma

New:

  chromium.19.0.1046.0.svn122684.tar.bz2



Other differences:
--
++ chromium.spec ++
--- /var/tmp/diff_new_pack.0qkOt0/_old  2012-02-27 18:35:14.0 +0100
+++ /var/tmp/diff_new_pack.0qkOt0/_new  2012-02-27 18:35:14.0 +0100
@@ -15,18 +15,19 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-%define v8_ver 3.9.1.0
-%define svn_revision 120549
+
+%define v8_ver 3.9.7.0
+%define svn_revision 122684
 
 Name:   chromium
-Version:19.0.1031.0
+Version:19.0.1046.0
 Release:0
 Summary:Google's opens source browser project
 License:BSD-3-Clause and LGPL-2.1+
 Group:  Productivity/Networking/Web/Browsers
 Url:http://code.google.com/p/chromium/
-Source0:%{name}.%{version}.svn%{svn_revision}.tar.lzma
-%if 0%{?suse_version} = 1140
+Source0:%{name}.%{version}.svn%{svn_revision}.tar.bz2
+%if 0%{?suse_version} == 1140
 Source1:%{name}.easy
 Source2:%{name}-rpmlintrc
 %endif
@@ -39,8 +40,8 @@
 Source101:  chromium-browser.desktop
 Source102:  chromium-browser.xml
 Source104:  chromium-icons.tar.bz2
-Provides:   chromium-browser = %{version}
 Provides:   chromium-based-browser = %{version}
+Provides:   chromium-browser = %{version}
 Obsoletes:  chromium-browser  %{version}
 
 ## Start Patches
@@ -73,10 +74,6 @@
 Patch63:chromium-6.0.406.0-system-gyp-v8.patch
 # PATCH-FIX-UPSTREAM Add more charset aliases
 Patch64:chromium-more-codec-aliases.patch
-%if 0%{?suse_version}  1210
-# PATCH-FIX-UPSTREAM Only include glib.h
-Patch65:chromium-new-glib.patch
-%endif
 # PATCH-FIX-OPENSUSE Compile the sandbox with -fPIE settings
 Patch66:chromium-sandbox-pie.patch
 
@@ -123,6 +120,14 @@
 BuildRequires:  pkgconfig(glib-2.0)
 BuildRequires:  pkgconfig(gtk+-2.0)
 BuildRequires:  pkgconfig(libxml-2.0)
+BuildRequires:  pkgconfig(xi)
+BuildRequires:  pkgconfig(xcomposite)
+BuildRequires:  pkgconfig(xt)
+BuildRequires:  pkgconfig(xfixes)
+BuildRequires:  pkgconfig(xscrnsaver)
+BuildRequires:  pkgconfig(xrender)
+BuildRequires:  

commit deja-dup for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package deja-dup for openSUSE:Factory 
checked in at 2012-02-27 18:33:24

Comparing /work/SRC/openSUSE:Factory/deja-dup (Old)
 and  /work/SRC/openSUSE:Factory/.deja-dup.new (New)


Package is deja-dup, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/deja-dup/deja-dup.changes2012-01-24 
12:16:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.deja-dup.new/deja-dup.changes   2012-02-27 
18:35:15.0 +0100
@@ -1,0 +2,22 @@
+Sun Feb 26 14:08:02 UTC 2012 - vu...@opensuse.org
+
+- Change itstool BuildRequires to yelp-tools: this is really what
+  is needed for build.
+
+---
+Fri Feb 24 07:34:43 UTC 2012 - vu...@opensuse.org
+
+- Update to version 21.90:
+  + Polish:
+- Won't try to backup if online but target server is not
+  available
+  + Bug Fixes:
+- Work around bug in GTK+ that caused text to be white-on-white
+  + Packaging:
+- Support building with valac-0.16 (in addition to valac-0.14)
+  + Updated translations.
+- Drop deja-dup-vala-0.16.patch: fixed upstream.
+- Disable 'make check' in %check, as it's failing for a weird
+  reason when run on OBS, see lp#940110.
+
+---

Old:

  deja-dup-21.4.tar.xz
  deja-dup-vala-0.16.patch

New:

  deja-dup-21.90.tar.xz



Other differences:
--
++ deja-dup.spec ++
--- /var/tmp/diff_new_pack.rH1lPd/_old  2012-02-27 18:35:17.0 +0100
+++ /var/tmp/diff_new_pack.rH1lPd/_new  2012-02-27 18:35:17.0 +0100
@@ -17,8 +17,9 @@
 
 
 Name:   deja-dup
-Version:21.4
+Version:21.90
 Release:0
+# FIXME: reenable make check in %%check, when lp#940110 is fixed
 # FIXME: the %%{_datadir}/help/$locale/ files be found by %%find_lang
 # FIXME: check if python-cloudfiles is packaged, and if yes, uncomment 
Recommends
 Summary:Simple backup tool and frontend for duplicity
@@ -26,19 +27,17 @@
 Group:  Productivity/Archiving/Backup
 Url:https://launchpad.net/deja-dup
 Source0:%{name}-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM deja-dup-vala-0.16.patch lp#91717 vu...@opensuse.org -- 
Fix build with vala 0.15/0.16
-Patch0: deja-dup-vala-0.16.patch
 # For make check to work, we need dbus-launch
 BuildRequires:  dbus-1-x11
 BuildRequires:  fdupes
 BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  intltool
-BuildRequires:  itstool
 BuildRequires:  perl-gettext
 BuildRequires:  update-desktop-files
 BuildRequires:  vala = 0.14.0
 # Only needed because we don't (and won't) support building xz tarballs by 
default... See bnc#697467
 BuildRequires:  xz
+BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(gnome-keyring-1)
 BuildRequires:  pkgconfig(gtk+-3.0)
 BuildRequires:  pkgconfig(libnautilus-extension)
@@ -85,7 +84,6 @@
 %lang_package
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 %configure --disable-static
@@ -121,7 +119,8 @@
 %fdupes %{buildroot}
 
 %check
-make check
+# FIXME: disabled because of lp#940110
+#make check
 
 %if 0%{?suse_version}  1130
 

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



commit docbook-simple for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package docbook-simple for openSUSE:Factory 
checked in at 2012-02-27 18:33:29

Comparing /work/SRC/openSUSE:Factory/docbook-simple (Old)
 and  /work/SRC/openSUSE:Factory/.docbook-simple.new (New)


Package is docbook-simple, Maintainer is k...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/docbook-simple/docbook-simple.changes
2011-09-23 01:55:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.docbook-simple.new/docbook-simple.changes   
2012-02-27 18:35:17.0 +0100
@@ -1,0 +2,5 @@
+Sat Feb 25 12:49:58 CET 2012 - meiss...@suse.de
+
+- libxml2 tools are now in libxml2-tools
+
+---



Other differences:
--
++ docbook-simple.spec ++
--- /var/tmp/diff_new_pack.j41klX/_old  2012-02-27 18:35:18.0 +0100
+++ /var/tmp/diff_new_pack.j41klX/_new  2012-02-27 18:35:18.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package docbook-simple
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,20 +16,22 @@
 #
 
 
-
 Name:   docbook-simple
-BuildRequires:  sgml-skel unzip
+BuildRequires:  libxml2-tools
+BuildRequires:  sgml-skel
+BuildRequires:  unzip
 Summary:Simple DocBook DTD and Documentation
-Version:1.0
-Release:310
+License:BSD-3-Clause ; MIT
 Group:  Productivity/Publishing/DocBook
+Version:1.0
+Release:0
 BuildArch:  noarch
-Requires:   sgml-skel libxml2
+Requires:   libxml2-tools
+Requires:   sgml-skel
 %define regcat /usr/bin/sgml-register-catalog
 PreReq: %{regcat} /usr/bin/xmlcatalog /usr/bin/edit-xml-catalog
 PreReq: sed grep awk
 #Provides: 
-License:BSD-3-Clause ; MIT
 Url:http://www.oasis-open.org/docbook/xml/simple/
 Source0:docbook-simple-1.0.zip
 Source1:CATALOG.docbook-simple-1.0


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



commit f-spot for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package f-spot for openSUSE:Factory checked 
in at 2012-02-27 18:33:42

Comparing /work/SRC/openSUSE:Factory/f-spot (Old)
 and  /work/SRC/openSUSE:Factory/.f-spot.new (New)


Package is f-spot, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/f-spot/f-spot.changes2011-10-02 
10:00:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.f-spot.new/f-spot.changes   2012-02-27 
18:35:23.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb 24 13:06:48 UTC 2012 - vu...@opensuse.org
+
+- Add explicit libjpeg-devel BuildRequires: this was coming
+  implicitly before, but somehow not anymore.
+
+---



Other differences:
--
++ f-spot.spec ++
--- /var/tmp/diff_new_pack.bOe67F/_old  2012-02-27 18:35:25.0 +0100
+++ /var/tmp/diff_new_pack.bOe67F/_new  2012-02-27 18:35:25.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package f-spot
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,14 +16,13 @@
 #
 
 
-
 Name:   f-spot
 Version:0.8.2
-Release:11
-License:GPL-2.0+
+Release:0
 Summary:GNOME Photo Management Application
-Url:http://www.gnome.org/projects/f-spot/
+License:GPL-2.0+
 Group:  Productivity/Graphics/Viewers
+Url:http://www.gnome.org/projects/f-spot/
 Source: %{name}-%{version}.tar.bz2
 # PATCH-FIX-UPSTREAM f-spot-mono-recent-gtk-sharp.patch vu...@opensuse.org -- 
Fix build with recent gtk-sharp, taken from git
 Patch2: f-spot-mono-recent-gtk-sharp.patch
@@ -33,6 +32,7 @@
 BuildRequires:  gtk-sharp2-gapi
 BuildRequires:  intltool
 BuildRequires:  libexif-devel
+BuildRequires:  libjpeg-devel
 BuildRequires:  liblcms-devel
 BuildRequires:  mono-basic
 BuildRequires:  mono-data-sqlite

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



commit giggle for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package giggle for openSUSE:Factory checked 
in at 2012-02-27 18:33:47

Comparing /work/SRC/openSUSE:Factory/giggle (Old)
 and  /work/SRC/openSUSE:Factory/.giggle.new (New)


Package is giggle, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/giggle/giggle.changes2012-01-20 
20:23:32.0 +0100
+++ /work/SRC/openSUSE:Factory/.giggle.new/giggle.changes   2012-02-27 
18:35:26.0 +0100
@@ -1,0 +2,6 @@
+Sun Feb 26 14:09:45 UTC 2012 - vu...@opensuse.org
+
+- Change itstool BuildRequires to yelp-tools: this is really what
+  is needed for build.
+
+---



Other differences:
--
++ giggle.spec ++
--- /var/tmp/diff_new_pack.FZv3yT/_old  2012-02-27 18:35:27.0 +0100
+++ /var/tmp/diff_new_pack.FZv3yT/_new  2012-02-27 18:35:27.0 +0100
@@ -31,9 +31,9 @@
 # needed for patch0
 BuildRequires:  gnome-common
 BuildRequires:  intltool
-BuildRequires:  itstool
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
+BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(glib-2.0) = 2.18
 BuildRequires:  pkgconfig(gtk+-3.0) = 3.0
 BuildRequires:  pkgconfig(gtksourceview-3.0) = 3.0

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



commit gnome-user-docs for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package gnome-user-docs for openSUSE:Factory 
checked in at 2012-02-27 18:33:53

Comparing /work/SRC/openSUSE:Factory/gnome-user-docs (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-user-docs.new (New)


Package is gnome-user-docs, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/gnome-user-docs/gnome-user-docs.changes  
2012-02-16 12:21:59.0 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-user-docs.new/gnome-user-docs.changes 
2012-02-27 18:35:28.0 +0100
@@ -1,0 +2,13 @@
+Sun Feb 26 14:03:38 UTC 2012 - vu...@opensuse.org
+
+- Change itstool BuildRequires to yelp-tools: this is really what
+  is needed for build.
+
+---
+Thu Feb 23 19:39:16 UTC 2012 - vu...@opensuse.org
+
+- Update to version 3.3.1:
+  + Many improvements.
+  + Updated translations.
+
+---

Old:

  gnome-user-docs-3.2.2.tar.bz2

New:

  gnome-user-docs-3.3.1.tar.xz



Other differences:
--
++ gnome-user-docs.spec ++
--- /var/tmp/diff_new_pack.3Ot9on/_old  2012-02-27 18:35:29.0 +0100
+++ /var/tmp/diff_new_pack.3Ot9on/_new  2012-02-27 18:35:29.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-user-docs
-Version:3.2.2
+Version:3.3.1
 Release:0
 # FIXME: parallel build is disabled because it's actually much slower (see 
bgo#659421); should be safe to reenable in 3.3.x
 # FIXME: the %%{_datadir}/help/$locale/ files should be found by %%find_lang
@@ -25,9 +25,9 @@
 License:GFDL-1.1
 Group:  Documentation/Other
 Url:http://www.gnome.org
-Source: 
http://download.gnome.org/sources/gnome-user-docs/3.2/%{name}-%{version}.tar.bz2
+Source: 
http://download.gnome.org/sources/gnome-user-docs/3.3/%{name}-%{version}.tar.xz
 BuildRequires:  fdupes
-BuildRequires:  itstool
+BuildRequires:  yelp-tools
 Recommends: %{name}-lang
 Supplements:gnome-session
 # Old name, for openSUSE = 11.2

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



commit GraphicsMagick for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package GraphicsMagick for openSUSE:Factory 
checked in at 2012-02-27 18:33:58

Comparing /work/SRC/openSUSE:Factory/GraphicsMagick (Old)
 and  /work/SRC/openSUSE:Factory/.GraphicsMagick.new (New)


Package is GraphicsMagick, Maintainer is pgaj...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/GraphicsMagick/GraphicsMagick.changes
2011-12-27 18:13:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.GraphicsMagick.new/GraphicsMagick.changes   
2012-02-27 18:35:31.0 +0100
@@ -1,0 +2,27 @@
+Mon Feb 27 08:05:20 UTC 2012 - pgaj...@suse.com
+
+- updated to 1.3.14:
+  Bug fixes:
+  * TGA format: Assume that 32-bit TGA files have an alpha channel,
+even if they are not marked as such.
+  * XCF format: Fix reading XCF which is comprised of different sized
+layers.
+  * JPEG  CineonLog: Convert RGB-compatible colorspaces
+(e.g. CineonLog) to RGB by default since that was the case prior
+to release 1.3.13.
+  * RAW formats: Small memory leak in dcraw module was fixed.
+  * Resize: ResizeImage() was ignoring its resize filter argument and
+was using the filter setting from the Image structure instead.
+  * The mirror virtual pixel method was broken.
+  New Features:
+  * Open64 Compiler Suite: Version 5.0 is fully supported.
+  * Wand API: Added MagickExtentImage().
+  * MEF RAW: Mamiya Photo RAW MEF format is now supported.
+  Feature improvements:
+  * DPX format: Original file endianness is preserved by default.
+  Performance Improvements:
+  * Despeckle algorithm (-despeckle) is many times faster.
+  Behavior Changes:
+  * DPX format: Original file endianness is preserved by default.
+
+---

Old:

  GraphicsMagick-1.3.13-debian-fixed.patch
  GraphicsMagick-1.3.13-include.patch
  GraphicsMagick-1.3.13.tar.bz2

New:

  GraphicsMagick-1.3.14-debian-fixed.patch
  GraphicsMagick-1.3.14-include.patch
  GraphicsMagick-1.3.14.tar.bz2



Other differences:
--
++ GraphicsMagick.spec ++
--- /var/tmp/diff_new_pack.Az69gd/_old  2012-02-27 18:35:32.0 +0100
+++ /var/tmp/diff_new_pack.Az69gd/_new  2012-02-27 18:35:32.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package GraphicsMagick
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,7 +23,7 @@
 %define quant 8
 %define base_version 1.3
 Summary:Viewer and Converter for Images
-Version:1.3.13
+Version:1.3.14
 Release:12
 License:MIT
 Group:  Productivity/Graphics/Convertors

++ GraphicsMagick-1.3.13-debian-fixed.patch - 
GraphicsMagick-1.3.14-debian-fixed.patch ++

++ GraphicsMagick-1.3.13-include.patch - 
GraphicsMagick-1.3.14-include.patch ++

++ GraphicsMagick-1.3.13.tar.bz2 - GraphicsMagick-1.3.14.tar.bz2 ++
/work/SRC/openSUSE:Factory/GraphicsMagick/GraphicsMagick-1.3.13.tar.bz2 
/work/SRC/openSUSE:Factory/.GraphicsMagick.new/GraphicsMagick-1.3.14.tar.bz2 
differ: char 11, line 1

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



commit gwibber for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package gwibber for openSUSE:Factory checked 
in at 2012-02-27 18:34:04

Comparing /work/SRC/openSUSE:Factory/gwibber (Old)
 and  /work/SRC/openSUSE:Factory/.gwibber.new (New)


Package is gwibber, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/gwibber/gwibber.changes  2012-02-20 
16:13:16.0 +0100
+++ /work/SRC/openSUSE:Factory/.gwibber.new/gwibber.changes 2012-02-27 
18:35:32.0 +0100
@@ -1,0 +2,10 @@
+Fri Feb 24 07:32:27 UTC 2012 - vu...@opensuse.org
+
+- Update to version 3.3.90:
+  + facebook: fixed dupes and empty posts (lp#826323)
+  + foursquare: display comments on checkins
+  + Make the messages stream default on startup
+  + Updated favorite information to include if you liked a post
+  + Update LINGUAS to use all the provided translations
+
+---

Old:

  gwibber-3.3.6.tar.gz

New:

  gwibber-3.3.90.tar.gz



Other differences:
--
++ gwibber.spec ++
--- /var/tmp/diff_new_pack.Uzzd1B/_old  2012-02-27 18:35:33.0 +0100
+++ /var/tmp/diff_new_pack.Uzzd1B/_new  2012-02-27 18:35:33.0 +0100
@@ -21,7 +21,7 @@
 %define __requires_exclude 
typelib\\(Dbusmenu\\)|typelib\\(Indicate\\)|typelib\\(Unity\\)
 
 Name:   gwibber
-Version:3.3.6
+Version:3.3.90
 Release:0
 Summary:Microblogging Client
 License:GPL-2.0+

++ gwibber-3.3.6.tar.gz - gwibber-3.3.90.tar.gz ++
 58231 lines of diff (skipped)

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



commit imapfilter for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package imapfilter for openSUSE:Factory 
checked in at 2012-02-27 18:34:08

Comparing /work/SRC/openSUSE:Factory/imapfilter (Old)
 and  /work/SRC/openSUSE:Factory/.imapfilter.new (New)


Package is imapfilter, Maintainer is hvo...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/imapfilter/imapfilter.changes2011-10-25 
17:04:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.imapfilter.new/imapfilter.changes   
2012-02-27 18:35:35.0 +0100
@@ -1,0 +2,5 @@
+Sun Feb 26 15:06:18 CET 2012 - dmuel...@suse.de
+
+- fix build 
+
+---



Other differences:
--
++ imapfilter.spec ++
--- /var/tmp/diff_new_pack.aARBQT/_old  2012-02-27 18:35:37.0 +0100
+++ /var/tmp/diff_new_pack.aARBQT/_new  2012-02-27 18:35:37.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package imapfilter (Version 2.3.0)
+# spec file for package imapfilter
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,19 +15,23 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   imapfilter
 Summary:A mail filtering utility
 License:MIT
-Url:http://imapfilter.hellug.gr
 Group:  Productivity/Networking/Email/Utilities
+Url:http://imapfilter.hellug.gr
 Version:2.3.0
-Release:1
+Release:0
 Source: http://imapfilter.hellug.gr/source/%{name}-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if %suse_version  1210
+BuildRequires:  lua51-devel
+%else
 BuildRequires:  lua-devel = 5.1
-BuildRequires:  openssl-devel pcre-devel pkgconfig
+%endif
+BuildRequires:  openssl-devel
+BuildRequires:  pcre-devel
+BuildRequires:  pkgconfig
 
 %description
 IMAPFilter is a mail filtering utility. It connects to remote mail

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



commit installation-images for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package installation-images for 
openSUSE:Factory checked in at 2012-02-27 18:34:16

Comparing /work/SRC/openSUSE:Factory/installation-images (Old)
 and  /work/SRC/openSUSE:Factory/.installation-images.new (New)


Package is installation-images, Maintainer is snw...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/installation-images/installation-images.changes  
2012-02-22 16:36:25.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.installation-images.new/installation-images.changes 
2012-02-27 18:35:37.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb 27 13:11:53 CET 2012 - snw...@suse.de
+
+- adjust to package changes
+
+---

Old:

  installation-images-13.31.tar.bz2

New:

  installation-images-13.32.tar.bz2



Other differences:
--
++ installation-images.spec ++
--- /var/tmp/diff_new_pack.PM7Iuk/_old  2012-02-27 18:35:38.0 +0100
+++ /var/tmp/diff_new_pack.PM7Iuk/_new  2012-02-27 18:35:38.0 +0100
@@ -23,6 +23,7 @@
 %define build_xen 1
 %define has_vnc 1
 BuildRequires:  Mesa
+BuildRequires:  Mesa-libEGL1
 BuildRequires:  aaa_base
 BuildRequires:  aaa_base-extras
 BuildRequires:  adaptec-firmware
@@ -183,6 +184,7 @@
 BuildRequires:  wireless-tools
 BuildRequires:  wpa_supplicant
 BuildRequires:  xfsdump
+BuildRequires:  xfsprogs
 BuildRequires:  xkeyboard-config
 BuildRequires:  xntp
 BuildRequires:  xorg-x11
@@ -329,9 +331,9 @@
 Summary:Installation Image Files
 License:GPL-2.0+
 Group:  Metapackages
-Version:13.31
+Version:13.32
 Release:0
-Source: installation-images-13.31.tar.bz2
+Source: installation-images-13.32.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %define _binary_payload w.ufdio
 

++ installation-images-13.31.tar.bz2 - installation-images-13.32.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-13.31/VERSION 
new/installation-images-13.32/VERSION
--- old/installation-images-13.31/VERSION   2012-02-22 15:10:30.0 
+0100
+++ new/installation-images-13.32/VERSION   2012-02-27 13:11:46.0 
+0100
@@ -1 +1 @@
-13.31
+13.32
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-13.31/changelog 
new/installation-images-13.32/changelog
--- old/installation-images-13.31/changelog 2012-02-22 15:10:33.0 
+0100
+++ new/installation-images-13.32/changelog 2012-02-27 13:11:50.0 
+0100
@@ -1,4 +1,7 @@
-2012-02-22:HEAD
+2012-02-27:HEAD
+   - adjust to package changes
+
+2012-02-22:13.31
- adjust to package changes
- single root image filelist
- treat packages starting with '?' as optional
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/installation-images-13.31/data/rescue/rescue.file_list 
new/installation-images-13.32/data/rescue/rescue.file_list
--- old/installation-images-13.31/data/rescue/rescue.file_list  2012-02-22 
13:41:31.0 +0100
+++ new/installation-images-13.32/data/rescue/rescue.file_list  2012-02-27 
12:09:35.0 +0100
@@ -646,7 +646,7 @@
 libcap*:
   /
 
-libxml*:
+libxml2-*:
   /
 
 kexec-tools:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-13.31/data/root/root.file_list 
new/installation-images-13.32/data/root/root.file_list
--- old/installation-images-13.31/data/root/root.file_list  2012-02-22 
15:00:36.0 +0100
+++ new/installation-images-13.32/data/root/root.file_list  2012-02-27 
12:58:21.0 +0100
@@ -102,7 +102,7 @@
 ?libx86emu1:
   /
 
-libxml*:
+libxml2-*:
   /
 
 libexpat*:
@@ -622,23 +622,20 @@
  x root/.bash_login /root
  x root/.vimrc /root
 
-libparted0:
+libparted*:
   /
 
 parted:
   /
 
 jfsutils:
-  /sbin/{fsck.jfs,mkfs.jfs,jfs_logdump,jfs_tune}
+  /
 
 xfsprogs:
-  /lib*
-  /usr/sbin
-  /sbin
+  /
 
 xfsdump:
-  /usr/sbin
-  /sbin
+  /
 
 libmodman*:
   /
@@ -1203,8 +1200,12 @@
 
   Mesa:
 /usr/lib*/dri/swrast_dri.so
-/usr/lib*/libEGL.so.*
-/usr/lib*/libgbm.so.*
+
+  Mesa-libEGL*:
+/
+
+  libgbm*:
+/
 
   libdrm*:
 /

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



commit ldtp for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package ldtp for openSUSE:Factory checked in 
at 2012-02-27 18:34:27

Comparing /work/SRC/openSUSE:Factory/ldtp (Old)
 and  /work/SRC/openSUSE:Factory/.ldtp.new (New)


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

Changes:

--- /work/SRC/openSUSE:Factory/ldtp/ldtp.changes2012-02-20 
16:14:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.ldtp.new/ldtp.changes   2012-02-27 
18:35:41.0 +0100
@@ -1,0 +2,15 @@
+Sun Feb 26 15:53:16 UTC 2012 - vu...@opensuse.org
+
+- Update to version 2.3.1:
+  + Added twisted gtk3reactor
+  + Operate on window name using index, will be helpful with i18n,
+l10n testing
+  + at-spi2 related fixes to improve test execution time
+- If GTK+ 3 is preferred (on 12.1 and later), move to the
+  introspection-based bindings:
+  + Add a gobject-introspection BuildRequires to have automatic
+introspection-based Requires.
+  + Remove gnome-python-desktop/python-wnck and python-gtk
+Requires.
+
+---

Old:

  ldtp-2.3.0.tar.gz

New:

  ldtp-2.3.1.tar.gz



Other differences:
--
++ ldtp.spec ++
--- /var/tmp/diff_new_pack.bNDvx4/_old  2012-02-27 18:35:42.0 +0100
+++ /var/tmp/diff_new_pack.bNDvx4/_new  2012-02-27 18:35:42.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   ldtp
-Version:2.3.0
+Version:2.3.1
 Release:0
 Summary:Linux Desktop Testing Project (LDTP)
 License:GPL-2.0+ ; LGPL-2.1+
@@ -25,15 +25,20 @@
 Url:http://ldtp.freedesktop.org
 Source: 
http://download.freedesktop.org/ldtp/2.x/2.3.x/%{name}-%{version}.tar.gz
 BuildRequires:  fdupes
+%if !(0%{?favor_gtk2})
+BuildRequires:  gobject-introspection
+%endif
 BuildRequires:  python
 # pyatspi is a virtual name that is provided by the default at-spi stack
 Requires:   pyatspi
+%if 0%{?favor_gtk2}
 %if 0%{?suse_version} = 1130
 Requires:   gnome-python-desktop
 %else
 Requires:   python-wnck
 %endif
 Requires:   python-gtk
+%endif
 Requires:   python-twisted-web
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{suse_version}  1110

++ ldtp-2.3.0.tar.gz - ldtp-2.3.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ldtp-2.3.0/Doxyfile new/ldtp-2.3.1/Doxyfile
--- old/ldtp-2.3.0/Doxyfile 2012-02-16 20:54:52.0 +0100
+++ new/ldtp-2.3.1/Doxyfile 2012-02-26 03:48:43.0 +0100
@@ -4,7 +4,7 @@
 # Project related configuration options
 #---
 PROJECT_NAME   = LDTP
-PROJECT_NUMBER = 2.3
+PROJECT_NUMBER = 2.3.1
 OUTPUT_DIRECTORY   = doc
 CREATE_SUBDIRS = YES
 OUTPUT_LANGUAGE= English
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ldtp-2.3.0/PKG-INFO new/ldtp-2.3.1/PKG-INFO
--- old/ldtp-2.3.0/PKG-INFO 2012-02-16 20:56:16.0 +0100
+++ new/ldtp-2.3.1/PKG-INFO 2012-02-26 03:56:29.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: ldtp
-Version: 2.3.0
+Version: 2.3.1
 Summary: Linux Desktop Testing Project Version 2
 Home-page: http://ldtp.freesktop.org
 Author: Nagappan Alagappan
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ldtp-2.3.0/ldtp/__init__.py 
new/ldtp-2.3.1/ldtp/__init__.py
--- old/ldtp-2.3.0/ldtp/__init__.py 2012-01-14 04:25:58.0 +0100
+++ new/ldtp-2.3.1/ldtp/__init__.py 2012-02-17 04:07:08.0 +0100
@@ -394,6 +394,10 @@
 return _remote_enterstring(window_name, object_name, data)
 def setvalue(window_name, object_name = '', data = ''):
 return _remote_setvalue(window_name, object_name, float(data))
+def grabfocus(window_name, object_name = ''):
+# On Linux just with window name, grab focus doesn't work
+# So, we can't make this call generic
+return _remote_grabfocus(window_name, object_name)
 ### WINDOWS
 
 def onwindowcreate(window_name, fn_name, *args):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ldtp-2.3.0/ldtp/client.py 
new/ldtp-2.3.1/ldtp/client.py
--- old/ldtp-2.3.0/ldtp/client.py   2012-01-14 00:32:19.0 +0100
+++ new/ldtp-2.3.1/ldtp/client.py   2012-02-25 01:05:21.0 +0100
@@ -40,6 +40,10 @@
 _ldtp_debug = os.environ['LDTP_DEBUG']
 else:
 _ldtp_debug = None
+if 'LDTP_XML_DEBUG' in os.environ:
+verbose = 1
+else:
+verbose = 0
 if 'LDTP_SERVER_ADDR' in os.environ:
 _ldtp_server_addr = os.environ['LDTP_SERVER_ADDR']
 else:
@@ -213,4 +217,5 @@
 

commit libstatgrab for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package libstatgrab for openSUSE:Factory 
checked in at 2012-02-27 18:34:37

Comparing /work/SRC/openSUSE:Factory/libstatgrab (Old)
 and  /work/SRC/openSUSE:Factory/.libstatgrab.new (New)


Package is libstatgrab, Maintainer is r...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libstatgrab/libstatgrab.changes  2012-01-25 
10:37:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.libstatgrab.new/libstatgrab.changes 
2012-02-27 18:35:42.0 +0100
@@ -1,0 +2,7 @@
+Sun Feb 19 11:47:39 UTC 2012 - pascal.ble...@opensuse.org
+
+- update to 0.17:
+  * provide iowait cpu information on Linux version 2.5.41 or later
+  * use utmpx when available
+
+---

Old:

  libstatgrab-0.16.tar.gz

New:

  libstatgrab-0.17.tar.gz



Other differences:
--
++ libstatgrab.spec ++
--- /var/tmp/diff_new_pack.YtCTwS/_old  2012-02-27 18:35:43.0 +0100
+++ /var/tmp/diff_new_pack.YtCTwS/_new  2012-02-27 18:35:43.0 +0100
@@ -15,10 +15,11 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %define soname 6
 
 Name:   libstatgrab
-Version:0.16
+Version:0.17
 Release:0
 Summary:Interface to System Statistics
 License:LGPL-2.1+
@@ -40,6 +41,7 @@
 BuildRequires:  make
 BuildRequires:  ncurses-devel
 BuildRequires:  update-desktop-files
+BuildRequires:  pkgconfig
 
 %description
 The libstatgrab library provides an easy-to-use interface for accessing system

++ libstatgrab-0.16.tar.gz - libstatgrab-0.17.tar.gz ++
 2058 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/libstatgrab-0.16/ChangeLog new/libstatgrab-0.17/ChangeLog
--- old/libstatgrab-0.16/ChangeLog  2008-03-13 14:58:50.0 +0100
+++ new/libstatgrab-0.17/ChangeLog  2010-02-21 11:08:53.0 +0100
@@ -1,3 +1,81 @@
+2010-02-21 Sunday 10:05  tdb
+
+   * NEWS (1.48, LIBSTATGRAB_0_17):
+
+   Add FreeBSD memory fix and correctly attribute other changes.
+   
+2010-02-21 Sunday 10:04  tdb
+
+   * src/libstatgrab/memory_stats.c (1.36, LIBSTATGRAB_0_17):
+
+   Support larger amounts of memory on FreeBSD.
+   
+2010-02-20 Saturday 18:17  tdb
+
+   * NEWS (1.47), src/libstatgrab/Makefile.am (1.35,
+   LIBSTATGRAB_0_17):
+
+   Bump library version and NEWS for next release.
+   
+2010-02-20 Saturday 18:15  tdb
+
+   * configure.in (1.100, LIBSTATGRAB_0_17):
+
+   Support FreeBSD 9.
+   
+2010-02-20 Saturday 17:55  tdb
+
+   * configure.in (1.99), src/libstatgrab/user_stats.c (1.29,
+   LIBSTATGRAB_0_17):
+
+   Support utmpx in user_stats as well as utmp.
+   
+2009-12-04 Friday 22:09  tdb
+
+   * src/libstatgrab/disk_stats.c (1.88, LIBSTATGRAB_0_17):
+
+   Make list of valid filesystem types dynamic on FreeBSD. Based on patch
+   by Baptiste Daroussin.
+   
+2009-05-16 Saturday 02:01  tdb
+
+   * src/libstatgrab/disk_stats.c (1.87):
+
+   FreeBSD has zfs these days.
+   
+2008-08-03 Sunday 18:43  tdb
+
+   * src/libstatgrab/disk_stats.c (1.86):
+
+   Add zfs to allowed FSs on Solaris.
+   
+2008-06-17 Tuesday 16:52  tdb
+
+   * src/libstatgrab/cpu_stats.c (1.28, LIBSTATGRAB_0_17):
+
+   Linux version 2.5.41 or later provides iowait data in /proc/stat. Use
+   it if it's available.
+   
+2008-05-24 Saturday 23:30  ats
+
+   * docs/: libstatgrab/Makefile.am (1.2), saidar/Makefile.am (1.3),
+   statgrab/Makefile.am (1.3) (utags: LIBSTATGRAB_0_17):
+
+   Avoid a GNU-make-ism in the docs.
+   
+2008-05-24 Saturday 22:05  ats
+
+   * configure.in (1.98):
+
+   Disable autoconf maintainer mode -- it's less broken in modern autoconf,
+   so it's useful now.
+   
+2008-03-17 Monday 08:50  tdb
+
+   * configure.in (1.97):
+
+   Post release version increment.
+   
 2008-03-13 Thursday 11:23  tdb
 
* NEWS (1.46, LIBSTATGRAB_0_16):
@@ -7,7 +85,7 @@
 2008-03-13 Thursday 10:29  tdb
 
* src/statgrab/statgrab-make-mrtg-config.in (1.10,
-   LIBSTATGRAB_0_16):
+   LIBSTATGRAB_0_17, LIBSTATGRAB_0_16):
 
Fix mrtg config generation on machines with no swap.

@@ -53,16 +131,16 @@

 2007-07-05 Thursday 17:46  tdb
 
-   * src/libstatgrab/swap_stats.c (1.25, LIBSTATGRAB_0_16,
-  

commit perl-Email-Valid for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package perl-Email-Valid for 
openSUSE:Factory checked in at 2012-02-27 18:34:46

Comparing /work/SRC/openSUSE:Factory/perl-Email-Valid (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Email-Valid.new (New)


Package is perl-Email-Valid, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-Email-Valid/perl-Email-Valid.changes
2011-12-06 16:24:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Email-Valid.new/perl-Email-Valid.changes   
2012-02-27 18:35:43.0 +0100
@@ -1,0 +2,17 @@
+Mon Feb 27 10:06:49 UTC 2012 - co...@suse.com
+
+- updated to 0.187
+addresses in the form rjbs@[1.2.3.4] are now (correctly) considered
+valid; this can be disabled with the -allow_ip option
+(this resolves RT#48398)
+
+check email address length and localpart length (thanks, Steve
+Bertrand!)
+
+use blessed($x) instead of wrapping an -isa called in eval{}; this
+patch (thanks, Felipe Bergo!) was submitted to avoid problems with
+people who have global __DIE__ handlers, but was applied to just
+avoid the dumb eval{}; people with __DIE__ are otherwise on their
+own, here
+
+---

Old:

  Email-Valid-0.185.tar.gz

New:

  Email-Valid-0.187.tar.gz



Other differences:
--
++ perl-Email-Valid.spec ++
--- /var/tmp/diff_new_pack.0y7UwK/_old  2012-02-27 18:35:44.0 +0100
+++ /var/tmp/diff_new_pack.0y7UwK/_new  2012-02-27 18:35:44.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Email-Valid
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,26 +15,27 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   perl-Email-Valid
-Version:0.185
+Version:0.187
 Release:0
-License:Artistic-1.0 or GPL-1.0+
 %define cpan_name Email-Valid
 Summary:Check validity of Internet email addresses
-Url:http://search.cpan.org/dist/Email-Valid/
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
+Url:http://search.cpan.org/dist/Email-Valid/
 Source: 
http://www.cpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
-BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl-macros
 BuildRequires:  perl(Mail::Address)
 BuildRequires:  perl(Net::DNS)
-BuildRequires:  perl(Test::More)
-BuildRequires:  perl-macros
+#BuildRequires: perl(Email::Valid)
+#BuildRequires: perl(IO::CaptureOutput)
+#BuildRequires: perl(Net::Domain::TLD)
 Requires:   perl(Mail::Address)
 Requires:   perl(Net::DNS)
-Requires:   perl(Test::More)
 %{perl_requires}
 
 %description
@@ -52,16 +53,13 @@
 %{__make} %{?_smp_mflags}
 
 %check
-#broken test suite %{__make} test
+#broken %{__make} test
 
 %install
 %perl_make_install
 %perl_process_packlist
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf %{buildroot}
-
 %files -f %{name}.files
 %defattr(-,root,root,755)
 %doc Changes LICENSE README

++ Email-Valid-0.185.tar.gz - Email-Valid-0.187.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Email-Valid-0.185/Changes 
new/Email-Valid-0.187/Changes
--- old/Email-Valid-0.185/Changes   2011-08-11 19:25:29.0 +0200
+++ new/Email-Valid-0.187/Changes   2012-01-27 17:23:47.0 +0100
@@ -1,5 +1,20 @@
 Revision history for Perl extension Email::Valid.
 
+0.187 2012-01-27
+  addresses in the form rjbs@[1.2.3.4] are now (correctly) considered
+  valid; this can be disabled with the -allow_ip option
+  (this resolves RT #48398)
+
+  check email address length and localpart length (thanks, Steve
+  Bertrand!)
+
+0.186 2012-01-22
+  use blessed($x) instead of wrapping an -isa called in eval{}; this
+  patch (thanks, Felipe Bergo!) was submitted to avoid problems with
+  people who have global __DIE__ handlers, but was applied to just
+  avoid the dumb eval{}; people with __DIE__ are otherwise on their
+  own, here
+
 0.185 2011-08-11
   do not die in t/valid.t when testing for working DNS
   (address RT #70157, thanks, Alexey Tourbin)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Email-Valid-0.185/META.json 

commit pitivi for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package pitivi for openSUSE:Factory checked 
in at 2012-02-27 18:35:12

Comparing /work/SRC/openSUSE:Factory/pitivi (Old)
 and  /work/SRC/openSUSE:Factory/.pitivi.new (New)


Package is pitivi, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/pitivi/pitivi.changes2011-10-02 
10:24:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.pitivi.new/pitivi.changes   2012-02-27 
18:35:50.0 +0100
@@ -1,0 +2,9 @@
+Sat Feb 25 10:28:18 UTC 2012 - vu...@opensuse.org
+
+- Update to version 0.15.1:
+  + Bug fix release to ensure compatibility with Gst good plugins
+0.10.29
+  + Minor string fixes and additions to the user manual
+  + Updated translations.
+
+---

Old:

  pitivi-0.15.0.tar.bz2

New:

  pitivi-0.15.1.tar.xz



Other differences:
--
++ pitivi.spec ++
--- /var/tmp/diff_new_pack.oABSgg/_old  2012-02-27 18:35:51.0 +0100
+++ /var/tmp/diff_new_pack.oABSgg/_new  2012-02-27 18:35:51.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package pitivi
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,18 +16,17 @@
 #
 
 
-
 Name:   pitivi
-Version:0.15.0
-Release:1
-License:LGPL-2.1+
+Version:0.15.1
+Release:0
 Summary:Intuitive and featureful movie editor
-Url:http://www.pitivi.org/
+License:LGPL-2.1+
 Group:  Productivity/Multimedia/Video/Editors and Convertors
-Source: 
http://download.gnome.org/sources/pitivi/0.15/%{name}-%{version}.tar.bz2
+Url:http://www.pitivi.org/
+Source: 
http://download.gnome.org/sources/pitivi/0.15/%{name}-%{version}.tar.xz
 BuildRequires:  fdupes
-BuildRequires:  hicolor-icon-theme
 BuildRequires:  gnome-doc-utils-devel = 0.18.0
+BuildRequires:  hicolor-icon-theme
 BuildRequires:  intltool
 BuildRequires:  pkg-config
 BuildRequires:  python-devel

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



commit plasmoid-cwp for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package plasmoid-cwp for openSUSE:Factory 
checked in at 2012-02-27 18:35:17

Comparing /work/SRC/openSUSE:Factory/plasmoid-cwp (Old)
 and  /work/SRC/openSUSE:Factory/.plasmoid-cwp.new (New)


Package is plasmoid-cwp, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/plasmoid-cwp/plasmoid-cwp.changes
2012-02-20 16:17:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.plasmoid-cwp.new/plasmoid-cwp.changes   
2012-02-27 18:35:52.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb 24 21:16:56 UTC 2012 - asterios.dra...@gmail.com
+
+- Update to version 1.5.10:
+  * xml: gismeteo.com: negative temperature values fixed
+
+---

Old:

  98925-cwp-1.5.9.tar.bz2

New:

  98925-cwp-1.5.10.tar.bz2



Other differences:
--
++ plasmoid-cwp.spec ++
--- /var/tmp/diff_new_pack.I9CgtD/_old  2012-02-27 18:35:53.0 +0100
+++ /var/tmp/diff_new_pack.I9CgtD/_new  2012-02-27 18:35:53.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   plasmoid-cwp
-Version:1.5.9
+Version:1.5.10
 Release:0
 Summary:Customizable Weather Plasmoid
 License:GPL-3.0+

++ 98925-cwp-1.5.9.tar.bz2 - 98925-cwp-1.5.10.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cwp-1.5.9/ChangeLog new/cwp-1.5.10/ChangeLog
--- old/cwp-1.5.9/ChangeLog 2012-02-10 19:12:49.0 +0100
+++ new/cwp-1.5.10/ChangeLog2012-02-19 11:45:52.0 +0100
@@ -1,3 +1,7 @@
+1.5.10
+==
+- xml: gismeteo.com: negative temperature values fixed
+
 1.5.9
 =
 - xml: accuweather.com (World): mostly fixed (thanks to Jota Jota)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cwp-1.5.9/README new/cwp-1.5.10/README
--- old/cwp-1.5.9/README2012-02-10 19:12:49.0 +0100
+++ new/cwp-1.5.10/README   2012-02-19 11:45:52.0 +0100
@@ -1,6 +1,6 @@
 =
-Customizable Weather Plasmoid (CWP) 1.5.9
-=
+Customizable Weather Plasmoid (CWP) 1.5.10
+==
 
 This is another weather plasmoid.
 It aims to be highly customizable, but a little harder to setup than other 
weather plasmoids.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cwp-1.5.9/data/br_weather_com.xml 
new/cwp-1.5.10/data/br_weather_com.xml
--- old/cwp-1.5.9/data/br_weather_com.xml   2012-02-10 19:12:49.0 
+0100
+++ new/cwp-1.5.10/data/br_weather_com.xml  2012-02-19 11:45:52.0 
+0100
@@ -1,7 +1,7 @@
 ?xml version=1.0 encoding=UTF-8 standalone=yes ?
 
 custom_weather
-   xml_file_version type=cwp version=2012-02-10 name=br.weather.com 
search_page=http://br.weather.com; example_zip=BRXX0043 unit=C /
+   xml_file_version type=cwp version=2012-02-19 name=br.weather.com 
search_page=http://br.weather.com; example_zip=BRXX0043 unit=C /
 
locale_settings locale=pt encoding=latin1 /
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cwp-1.5.9/data/de_weather_com.xml 
new/cwp-1.5.10/data/de_weather_com.xml
--- old/cwp-1.5.9/data/de_weather_com.xml   2012-02-10 19:12:49.0 
+0100
+++ new/cwp-1.5.10/data/de_weather_com.xml  2012-02-19 11:45:52.0 
+0100
@@ -1,7 +1,7 @@
 ?xml version=1.0 encoding=UTF-8 standalone=yes ?
 
 custom_weather
-   xml_file_version type=cwp version=2012-02-10 name=de.weather.com 
search_page=http://de.weather.com; example_zip=80331 unit=C /
+   xml_file_version type=cwp version=2012-02-19 name=de.weather.com 
search_page=http://de.weather.com; example_zip=80331 unit=C /
 
locale_settings locale=de encoding=latin1 /
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cwp-1.5.9/data/espanol_weather_com.xml 
new/cwp-1.5.10/data/espanol_weather_com.xml
--- old/cwp-1.5.9/data/espanol_weather_com.xml  2012-02-10 19:12:49.0 
+0100
+++ new/cwp-1.5.10/data/espanol_weather_com.xml 2012-02-19 11:45:52.0 
+0100
@@ -1,7 +1,7 @@
 ?xml version=1.0 encoding=UTF-8 standalone=yes ?
 
 custom_weather
-   xml_file_version type=cwp version=2012-02-10 
name=espanol.weather.com search_page=http://espanol.weather.com; 
example_zip=Ciudad-de-Mexico-MXDF0132 unit=C /
+   xml_file_version type=cwp version=2012-02-19 
name=espanol.weather.com search_page=http://espanol.weather.com; 
example_zip=Ciudad-de-Mexico-MXDF0132 unit=C /
 
locale_settings locale=utf-8 encoding=utf8 /
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit python-icalendar for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package python-icalendar for 
openSUSE:Factory checked in at 2012-02-27 18:35:44

Comparing /work/SRC/openSUSE:Factory/python-icalendar (Old)
 and  /work/SRC/openSUSE:Factory/.python-icalendar.new (New)


Package is python-icalendar, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/python-icalendar/python-icalendar.changes
2011-09-26 10:50:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-icalendar.new/python-icalendar.changes   
2012-02-27 18:35:57.0 +0100
@@ -1,0 +2,5 @@
+Thu Dec 15 10:34:22 UTC 2011 - co...@suse.com
+
+- fix license to be in spdx.org format
+
+---



Other differences:
--
++ python-icalendar.spec ++
--- /var/tmp/diff_new_pack.OEw9kb/_old  2012-02-27 18:35:58.0 +0100
+++ /var/tmp/diff_new_pack.OEw9kb/_new  2012-02-27 18:35:58.0 +0100
@@ -1,4 +1,7 @@
 #
+# spec file for package python-icalendar
+#
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) 7/2011 - now  open-slx GmbH sascha.ma...@open-slx.de
 # Copyright (c) 2009 - 7/2011 Sascha Manns saigk...@opensuse.org 
 # 
@@ -13,6 +16,7 @@
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
+
 # # norootforbuild
 %definemodule  icalendar
 %definegitid   4d52777
@@ -20,15 +24,16 @@
 
 Name:  python-%{module}
 Version:   2.2
-Release:   1
+Release:0
 Summary:   Python parser/generator of iCalendar files package
+License:LGPL-2.1+ and GPL-2.0+
 Group: Development/Languages/Python
-License:   LGPL; GPL
-URL:   https://github.com/collective/icalendar
-AutoReqProv:on
+Url:https://github.com/collective/icalendar
 Source0:   %{tarname}.tar.bz2
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
-BuildRequires:  python-distribute python-Sphinx fdupes
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  fdupes
+BuildRequires:  python-Sphinx
+BuildRequires:  python-distribute
 %{py_requires}
 %if 0%{?suse_version} = 1120
 BuildArch: noarch
@@ -40,7 +45,6 @@
 
 %package doc
 Summary:Python parser/generator of iCalendar files package
-Group:  Development/Languages/Python
 Requires:   %{name} = %{version}
 
 %description doc

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



commit python-beautifulsoup for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package python-beautifulsoup for 
openSUSE:Factory checked in at 2012-02-27 18:35:30

Comparing /work/SRC/openSUSE:Factory/python-beautifulsoup (Old)
 and  /work/SRC/openSUSE:Factory/.python-beautifulsoup.new (New)


Package is python-beautifulsoup, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:Factory/python-beautifulsoup/python-beautifulsoup.changes
2011-09-23 12:42:30.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-beautifulsoup.new/python-beautifulsoup.changes
   2012-02-27 18:35:54.0 +0100
@@ -1,0 +2,14 @@
+Fri Dec  9 08:43:38 UTC 2011 - co...@suse.com
+
+- fix license to be in spdx.org format
+
+---
+Fri Nov 25 07:18:06 UTC 2011 - jf...@funktronics.ca
+
+- Update to 3.2.0
+  - Gave the stable series a higher version number than the unstable series,
+to make it very clear which series most people should be using.
+  - When creating a Tag object, you can specify its attributes as a dict
+rather than as a list of 2-tuples.
+
+---

Old:

  BeautifulSoup-3.0.8.1.tar.gz

New:

  BeautifulSoup-3.2.0.tar.gz



Other differences:
--
++ python-beautifulsoup.spec ++
--- /var/tmp/diff_new_pack.BB8IH7/_old  2012-02-27 18:35:55.0 +0100
+++ /var/tmp/diff_new_pack.BB8IH7/_new  2012-02-27 18:35:55.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package python-beautifulsoup (Version 3.0.8.1)
+# spec file for package python-beautifulsoup
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,13 +19,13 @@
 %define modname BeautifulSoup
 
 Name:   python-beautifulsoup
-Version:3.0.8.1
-Release:1
-License:BSD
-Summary:HTML/XML parser for quick-turnaround applications like 
screen-scraping
-Url:http://www.crummy.com/software/BeautifulSoup/
+Version:3.2.0
+Release:0
+Summary:HTML/XML Parser for Quick-Turnaround Applications Like 
Screen-Scraping
+License:BSD-3-Clause
 Group:  Development/Libraries/Python
-Source: %{modname}-%{version}.tar.gz
+Url:http://www.crummy.com/software/BeautifulSoup/
+Source: 
http://www.crummy.com/software/BeautifulSoup/download/3.x/%{modname}-%{version}.tar.gz
 BuildRequires:  python-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{py_requires}

++ BeautifulSoup-3.0.8.1.tar.gz - BeautifulSoup-3.2.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/BeautifulSoup-3.0.8.1/BeautifulSoup.py 
new/BeautifulSoup-3.2.0/BeautifulSoup.py
--- old/BeautifulSoup-3.0.8.1/BeautifulSoup.py  2010-04-09 21:27:45.0 
+0200
+++ new/BeautifulSoup-3.2.0/BeautifulSoup.py2010-11-21 14:35:28.0 
+0100
@@ -79,7 +79,7 @@
 from __future__ import generators
 
 __author__ = Leonard Richardson (leona...@segfault.org)
-__version__ = 3.0.8.1
+__version__ = 3.2.0
 __copyright__ = Copyright (c) 2004-2010 Leonard Richardson
 __license__ = New-style BSD
 
@@ -531,6 +531,8 @@
 self.name = name
 if attrs is None:
 attrs = []
+elif isinstance(attrs, dict):
+attrs = attrs.items()
 self.attrs = attrs
 self.contents = []
 self.setup(parent, previous)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/BeautifulSoup-3.0.8.1/BeautifulSoupTests.py 
new/BeautifulSoup-3.2.0/BeautifulSoupTests.py
--- old/BeautifulSoup-3.0.8.1/BeautifulSoupTests.py 2010-04-09 
21:22:40.0 +0200
+++ new/BeautifulSoup-3.2.0/BeautifulSoupTests.py   2010-11-21 
14:23:59.0 +0100
@@ -322,6 +322,16 @@
 a['href'] = 'http://foo.com/'
 self.assertRaises(KeyError, lambda : ol['href'])
 
+def testNewTagWithAttributes(self):
+Makes sure new tags can be created complete with attributes.
+soup = BeautifulSoup()
+a = Tag(soup, 'a', [('href', 'foo')])
+b = Tag(soup, 'b', {'class':'bar'})
+soup.insert(0,a)
+soup.insert(1,b)
+self.assertEqual(soup.a['href'], 'foo')
+self.assertEqual(soup.b['class'], 'bar')
+
 def testTagReplacement(self):
 # Make sure you can replace an element with itself.
 text = ab/bcFood/d/c/aae/e/a
@@ -395,7 +405,7 @@
 self.assertEqual(f.previousSibling, weText)
 

commit python-piston-mini-client for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package python-piston-mini-client for 
openSUSE:Factory checked in at 2012-02-27 18:36:02

Comparing /work/SRC/openSUSE:Factory/python-piston-mini-client (Old)
 and  /work/SRC/openSUSE:Factory/.python-piston-mini-client.new (New)


Package is python-piston-mini-client, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-piston-mini-client.new/python-piston-mini-client.changes
 2012-02-27 18:36:03.0 +0100
@@ -0,0 +1,5 @@
+---
+Thu Feb 16 11:54:21 UTC 2012 - sasc...@suse.de
+
+- Initial version
+

New:

  piston-mini-client_0.6+bzr48.orig.tar.gz
  python-piston-mini-client.changes
  python-piston-mini-client.spec



Other differences:
--
++ python-piston-mini-client.spec ++
#
# spec file for package python-piston-mini-client
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# 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:   python-piston-mini-client
Version:0.6+bzr48
Release:0
Url:https://launchpad.net/piston-mini-client
Summary:A small package to consume Django-Piston web services
License:LGPL-3.0
Group:  Development/Languages/Python
#Source: 
http://pypi.python.org/packages/source/p/piston-mini-client/piston-mini-client-%{version}.tar.gz
Source: 
https://launchpad.net/ubuntu/precise/+source/piston-mini-client/%{version}-0ubuntu2/+files/piston-mini-client_%{version}.orig.tar.gz
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  python-devel
Provides:   python-piston-mini = %{version}
#TODO: Change back to '' after next version update:
Obsoletes:  python-piston-mini = %{version}
%if 0%{?suse_version}  0%{?suse_version} = 1110
%{!?python_sitelib: %global python_sitelib %(python -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
%else
BuildArch:  noarch
%endif

%description
A small generic library for writing clients for Django's Piston REST APIs.

%prep
%setup -q -n piston-mini-client-%{version}

%build
python setup.py build

%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}

%files
%defattr(-,root,root,-)
%doc README
%{python_sitelib}/*

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



commit python-pyrrd for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package python-pyrrd for openSUSE:Factory 
checked in at 2012-02-27 18:36:10

Comparing /work/SRC/openSUSE:Factory/python-pyrrd (Old)
 and  /work/SRC/openSUSE:Factory/.python-pyrrd.new (New)


Package is python-pyrrd, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/python-pyrrd/python-pyrrd.changes
2011-11-29 16:24:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-pyrrd.new/python-pyrrd.changes   
2012-02-27 18:36:14.0 +0100
@@ -1,0 +2,11 @@
+Wed Feb 15 18:40:38 UTC 2012 - jf...@funktronics.ca
+
+- Switch from setuptools to distribute
+
+---
+Tue Nov 29 14:47:29 UTC 2011 - cfarr...@suse.com
+
+- license update: BSD-3-Clause
+  SPDX format
+
+---



Other differences:
--
++ python-pyrrd.spec ++
--- /var/tmp/diff_new_pack.OQaIQ3/_old  2012-02-27 18:36:15.0 +0100
+++ /var/tmp/diff_new_pack.OQaIQ3/_new  2012-02-27 18:36:15.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-pyrrd
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,13 +23,13 @@
 Release:1
 Summary:An Object-Oriented Python Interface for RRD
 Url:http://code.google.com/p/pyrrd/
-License:BSD
+License:BSD-3-Clause
 Group:  Development/Libraries/Python
 Source: 
http://pypi.python.org/packages/source/P/PyRRD/%{modname}-%{version}.tar.gz
 BuildRequires:  python-devel
-BuildRequires:  python-setuptools
+BuildRequires:  python-distribute
 BuildRequires:  python-xml
-Requires:   python-setuptools
+Requires:   python-distribute
 Requires:   python-xml
 Requires:   rrdtool
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

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



commit qpdf for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package qpdf for openSUSE:Factory checked in 
at 2012-02-27 18:36:19

Comparing /work/SRC/openSUSE:Factory/qpdf (Old)
 and  /work/SRC/openSUSE:Factory/.qpdf.new (New)


Package is qpdf, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/qpdf/qpdf.changes2012-02-08 
15:42:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.qpdf.new/qpdf.changes   2012-02-27 
18:36:21.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb 27 09:50:59 CET 2012 - dmuel...@suse.de
+
+- fix build with pcre 8.30 
+
+---

New:

  pcre-8.30.diff



Other differences:
--
++ qpdf.spec ++
--- /var/tmp/diff_new_pack.cwf3ZQ/_old  2012-02-27 18:36:22.0 +0100
+++ /var/tmp/diff_new_pack.cwf3ZQ/_new  2012-02-27 18:36:22.0 +0100
@@ -15,8 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   qpdf
 Version:2.3.1
 Release:0
@@ -25,6 +23,7 @@
 Group:  Development/Libraries/C and C++
 Url:http://qpdf.sourceforge.net/
 Source: 
http://sourceforge.net/projects/qpdf/files/qpdf/%{version}/qpdf-%{version}.tar.gz
+Patch0: pcre-8.30.diff
 BuildRequires:  gcc-c++
 BuildRequires:  pcre-devel
 BuildRequires:  zlib-devel
@@ -57,6 +56,7 @@
 
 %prep
 %setup -q
+%patch0
 
 %build
 export CXXFLAGS=%optflags -fvisibility-inlines-hidden

++ pcre-8.30.diff ++
--- libqpdf/PCRE.cc
+++ libqpdf/PCRE.cc
@@ -144,7 +144,7 @@
 this-code = pcre_compile(pattern, options, errptr, erroffset, 0);
 if (this-code)
 {
-   this-nbackrefs = pcre_info(this-code, 0, 0);
+pcre_fullinfo(this-code, 0, PCRE_INFO_CAPTURECOUNT, 
(this-nbackrefs));
 }
 else
 {
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit radiotray for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package radiotray for openSUSE:Factory 
checked in at 2012-02-27 18:36:30

Comparing /work/SRC/openSUSE:Factory/radiotray (Old)
 and  /work/SRC/openSUSE:Factory/.radiotray.new (New)


Package is radiotray, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/radiotray/radiotray.changes  2012-01-05 
19:15:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.radiotray.new/radiotray.changes 2012-02-27 
18:36:34.0 +0100
@@ -1,0 +2,7 @@
+Thu Feb 23 17:39:27 UTC 2012 - vu...@opensuse.org
+
+- Update to version 0.7.2:
+  + Fixed issue with icon on appindicator
+  + Updated translations.
+
+---
@@ -18 +25 @@
-  + Updated translations
+  + Updated translations.

Old:

  radiotray-0.7.1.tar.gz

New:

  radiotray-0.7.2.tar.gz



Other differences:
--
++ radiotray.spec ++
--- /var/tmp/diff_new_pack.aiRey0/_old  2012-02-27 18:36:35.0 +0100
+++ /var/tmp/diff_new_pack.aiRey0/_new  2012-02-27 18:36:35.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package radiotray
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,14 +16,13 @@
 #
 
 
-
 Name:   radiotray
-Version:0.7.1
-Release:1
-License:GPL-1.0+
+Version:0.7.2
+Release:0
 Summary:A streaming player for listening to online radios
-Url:http://radiotray.sourceforge.net
+License:GPL-1.0+
 Group:  Productivity/Multimedia/Sound/Players
+Url:http://radiotray.sourceforge.net
 Source0:
http://downloads.sourceforge.net/project/radiotray/releases/%{name}-%{version}.tar.gz
 BuildRequires:  fdupes
 BuildRequires:  gettext

++ radiotray-0.7.1.tar.gz - radiotray-0.7.2.tar.gz ++
 2534 lines of diff (skipped)

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



commit remind for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package remind for openSUSE:Factory checked 
in at 2012-02-27 18:36:39

Comparing /work/SRC/openSUSE:Factory/remind (Old)
 and  /work/SRC/openSUSE:Factory/.remind.new (New)


Package is remind, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/remind/remind.changes2011-09-23 
12:44:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.remind.new/remind.changes   2012-02-27 
18:36:41.0 +0100
@@ -1,0 +2,10 @@
+Mon Feb 20 06:17:56 UTC 2012 - mrd...@opensuse.org
+
+-disable  make check - it breaks the build
+
+---
+Mon Feb 13 10:54:29 UTC 2012 - co...@suse.com
+
+- patch license to follow spdx.org standard
+
+---



Other differences:
--
++ remind.spec ++
--- /var/tmp/diff_new_pack.JHUvr8/_old  2012-02-27 18:36:42.0 +0100
+++ /var/tmp/diff_new_pack.JHUvr8/_new  2012-02-27 18:36:42.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package remind
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,15 +16,14 @@
 #
 
 
-
 Name:   remind
 Version:3.1.10
-Release:1
-License:GPLv2
+Release:0
 %define tar_version 03.01.10
 Summary:A sophisticated calendar and alarm program
-Url:http://www.roaringpenguin.com/products/remind
+License:GPL-2.0
 Group:  Productivity/Office/Organizers
+Url:http://www.roaringpenguin.com/products/remind
 Source0:%{name}-%{tar_version}.tar.bz2
 Source100:  %{name}-%{version}-rpmlintrc
 Patch0: remind-nostrip.patch
@@ -55,8 +54,8 @@
 %install
 make DESTDIR=%{buildroot} install
 
-%check
-make test
+##%%check
+##make test
 
 %clean
 rm -rf %{buildroot}
@@ -73,4 +72,5 @@
 %attr(0755,root,root) %{_bindir}/rem2ps
 %attr(0755,root,root) %{_bindir}/remind
 %attr(0755,root,root) %{_bindir}/tkremind
+
 %changelog

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



commit rpmlint-mini for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package rpmlint-mini for openSUSE:Factory 
checked in at 2012-02-27 18:36:51

Comparing /work/SRC/openSUSE:Factory/rpmlint-mini (Old)
 and  /work/SRC/openSUSE:Factory/.rpmlint-mini.new (New)


Package is rpmlint-mini, Maintainer is dmuel...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/rpmlint-mini/rpmlint-mini.changes
2011-12-25 17:41:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.rpmlint-mini.new/rpmlint-mini.changes   
2012-02-27 18:36:53.0 +0100
@@ -1,0 +2,5 @@
+Fri Feb 24 13:42:16 UTC 2012 - giecr...@stegny.2a.pl
+
+- add documentation
+
+---



Other differences:
--
++ rpmlint-mini.spec ++
--- /var/tmp/diff_new_pack.ghR7WN/_old  2012-02-27 18:36:54.0 +0100
+++ /var/tmp/diff_new_pack.ghR7WN/_new  2012-02-27 18:36:54.0 +0100
@@ -56,6 +56,7 @@
 
 %prep
 %setup -q -n desktop-file-utils-0.19
+[[ -r COPYING ]]
 
 %build
 %configure
@@ -132,5 +133,6 @@
 %files
 %defattr(-,root,root,0755)
 /opt/testing
+%doc COPYING
 
 %changelog

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



commit spice-gtk for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package spice-gtk for openSUSE:Factory 
checked in at 2012-02-27 18:37:03

Comparing /work/SRC/openSUSE:Factory/spice-gtk (Old)
 and  /work/SRC/openSUSE:Factory/.spice-gtk.new (New)


Package is spice-gtk, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/spice-gtk/spice-gtk.changes  2012-02-15 
16:01:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.spice-gtk.new/spice-gtk.changes 2012-02-27 
18:37:05.0 +0100
@@ -1,0 +2,16 @@
+Sat Feb 25 21:04:43 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.10:
+  + USB redir is now aware of host/guest side filtering
+  + you can query spice_usb_device_manager_can_redirect_device()
+  + fix the usbredir channel lifetime to be equal to session
+lifetime
+  + set keepalive on channel socket
+  + fix hangs on windows when using ssl chanels
+  + add a SpiceDisplay::zoom-level to maintain a scaling ratio
+  + add controller ENABLE_SMARTCARD option
+  + remove a few warnings, ui improvements, build fixes
+- No longer verify permissions of spice-client-glib-usb-acl-helper,
+  as the file is no longer installed.
+
+---

Old:

  spice-gtk-0.9.tar.bz2

New:

  spice-gtk-0.10.tar.bz2



Other differences:
--
++ spice-gtk.spec ++
--- /var/tmp/diff_new_pack.L3aaNt/_old  2012-02-27 18:37:06.0 +0100
+++ /var/tmp/diff_new_pack.L3aaNt/_new  2012-02-27 18:37:06.0 +0100
@@ -18,9 +18,8 @@
 
 
 Name:   spice-gtk
-Version:0.9
+Version:0.10
 Release:0
-# FIXME: /usr/bin/spice-client-glib-usb-acl-helper should be installed u+s, 
see bnc#744251.
 Summary:Gtk client and libraries for SPICE remote desktop servers
 License:LGPL-2.1+
 Group:  System/GUI/GNOME
@@ -126,12 +125,6 @@
 find %{buildroot} -type f -name *.la -delete -print
 %find_lang %{name}
 
-%post
-%set_permissions %{_bindir}/spice-client-glib-usb-acl-helper
-
-%verifyscript
-%verify_permissions -e %{_bindir}/spice-client-glib-usb-acl-helper
-
 %post -n libspice-client-glib-2_0-1 -p /sbin/ldconfig
 
 %postun -n libspice-client-glib-2_0-1 -p /sbin/ldconfig
@@ -150,9 +143,6 @@
 %{_bindir}/snappy
 %{_bindir}/spicy
 %{_bindir}/spicy-stats
-# Remove the attr(755) once bnc#744251 has been fixed.
-%attr(755,root,root) %{_bindir}/spice-client-glib-usb-acl-helper
-%{_datadir}/polkit-1/actions/org.spice-space.lowlevelusbaccess.policy
 
 %files lang -f %{name}.lang
 

++ spice-gtk-0.9.tar.bz2 - spice-gtk-0.10.tar.bz2 ++
 24724 lines of diff (skipped)

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



commit subversion-doc for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package subversion-doc for openSUSE:Factory 
checked in at 2012-02-27 18:37:12

Comparing /work/SRC/openSUSE:Factory/subversion-doc (Old)
 and  /work/SRC/openSUSE:Factory/.subversion-doc.new (New)


Package is subversion-doc, Maintainer is dmuel...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/subversion-doc/subversion-doc.changes
2011-12-21 15:41:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.subversion-doc.new/subversion-doc.changes   
2012-02-27 18:37:15.0 +0100
@@ -1,0 +2,6 @@
+Sun Feb 26 00:25:58 UTC 2012 - andreas.stie...@gmx.de
+
+- update to /branches/1.7 r4252
+- add BuildRequires for libxml2-tools for post-12.1 factory
+
+---

Old:

  subversion-doc-1.7.r4229.tar.bz2

New:

  subversion-doc-1.7.r4252.tar.bz2



Other differences:
--
++ subversion-doc.spec ++
--- /var/tmp/diff_new_pack.MRw45q/_old  2012-02-27 18:37:16.0 +0100
+++ /var/tmp/diff_new_pack.MRw45q/_new  2012-02-27 18:37:16.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package subversion-doc
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,10 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
+
 Name:   subversion-doc
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  libxslt
-Version:1.7.r4229
+%if 0%{?suse_version}  1210
+BuildRequires:  libxml2-tools
+%endif
+Version:1.7.r4252
 Release:0
 BuildArch:  noarch
 #

++ subversion-doc-1.7.r4229.tar.bz2 - subversion-doc-1.7.r4252.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/subversion-doc-1.7.r4229/en/book/ch02-basic-usage.xml 
new/subversion-doc-1.7.r4252/en/book/ch02-basic-usage.xml
--- old/subversion-doc-1.7.r4229/en/book/ch02-basic-usage.xml   2011-11-09 
21:21:35.0 +0100
+++ new/subversion-doc-1.7.r4252/en/book/ch02-basic-usage.xml   2011-12-15 
19:44:56.0 +0100
@@ -1188,7 +1188,7 @@
   informalexample
 screen
 $ svn status README
-M   foo
+M   README
 $ svn revert README
 Reverted 'README'
 $ svn status README
@@ -1206,14 +1206,14 @@
 
   informalexample
 screen
-$ svn status foo
-?   foo
-$ svn add foo
-A foo
-$ svn revert foo
-Reverted 'foo'
-$ svn status foo
-?   foo
+$ svn status new-file.txt
+?   new-file.txt
+$ svn add new-file.txt
+A new-file.txt
+$ svn revert new-file.txt
+Reverted 'new-file.txt'
+$ svn status new-file.txt
+?   new-file.txt
 $
 /screen
   /informalexample
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/subversion-doc-1.7.r4229/en/book/ch04-branching-and-merging.xml 
new/subversion-doc-1.7.r4252/en/book/ch04-branching-and-merging.xml
--- old/subversion-doc-1.7.r4229/en/book/ch04-branching-and-merging.xml 
2011-11-09 21:21:35.0 +0100
+++ new/subversion-doc-1.7.r4252/en/book/ch04-branching-and-merging.xml 
2012-01-03 19:44:42.0 +0100
@@ -119,7 +119,7 @@
   very safe.  Should something bad happen to your working copy or
   computer, you risk losing all your changes.  Second, it's not
   very flexible.  Unless you manually replicate your changes
-  across different working copies or computers, your stuck trying
+  across different working copies or computers, you're stuck trying
   to make your changes in a single working copy.  Similarly, it's
   difficult to share your work-in-progress with anyone else.  A
   common software development quotebest practice/quote is to
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/subversion-doc-1.7.r4229/en/book/ch09-reference.xml 
new/subversion-doc-1.7.r4252/en/book/ch09-reference.xml
--- old/subversion-doc-1.7.r4229/en/book/ch09-reference.xml 2011-11-28 
23:59:28.0 +0100
+++ new/subversion-doc-1.7.r4252/en/book/ch09-reference.xml 2012-02-21 
16:27:53.0 +0100
@@ -10874,17 +10874,6 @@
 /screen
 /informalexample
 
-paraIf invoked on a directory that is not a working copy,
-  commandsvnversion/command assumes it is an exported
-  working copy and prints quoteexported/quote:/para
-
-informalexample
-  screen
-$ svnversion
-exported
-/screen
-/informalexample
-
   /refsect1
 
 /refentry

-- 
To unsubscribe, e-mail: 

commit v8 for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package v8 for openSUSE:Factory checked in 
at 2012-02-27 18:37:24

Comparing /work/SRC/openSUSE:Factory/v8 (Old)
 and  /work/SRC/openSUSE:Factory/.v8.new (New)


Package is v8, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/v8/v8.changes2012-02-08 17:21:18.0 
+0100
+++ /work/SRC/openSUSE:Factory/.v8.new/v8.changes   2012-02-27 
18:37:28.0 +0100
@@ -1,0 +2,45 @@
+Sat Feb 18 08:12:38 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 3.9.7.0
+  * Fixed V8 issues 1878, 1942, 1945 and Chromium issue 113924.
+  * Fixed GCC-4.7 warnings.
+  * Added Navier-Stokes benchmark.
+  * Performance and stability improvements on all platforms.
+
+
+---
+Tue Feb 14 20:51:27 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 3.9.6.1
+  * Removed unused command line flags
+  * Fix template-related linker error. (issue 1936)
+  * Allow inlining of functions containing object literals.  
+(issue 1322)
+  * Add --call-graph-size option to tickprocessor.  (issue 1937)
+  * Heap Snapshot maximum size limit is too low for really big 
+apps. At the moment the limit is 256MB.  
+(Chromium issue 113015)
+  * Performance and stability improvements on all platforms.
+
+---
+Thu Feb  9 13:12:03 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 3.9.4.0
+  * Properly initialize element-transitioning array literals on ARM.
+(issue 1930)
+  * Bug fixes on all platforms.
+
+---
+Wed Feb  8 17:55:49 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 3.9.3.0
+  * Optionally export metadata with libv8 to enable debuggers to 
+inspect V8 state.
+  * Add timestamp to --trace-gc output. (issue 1932)
+  * Heap profiler reports implicit references.
+  * When rethrowing an exception, print the stack trace of its 
+original site instead of rethrow site (Chromium issue 60240).
+  * Increased size of small stacks from 32k to 64k to avoid hitting 
+limits in Chromium (Chromium issue 112843).
+
+---

Old:

  v8.3.9.1.0.tar.lzma

New:

  v8.3.9.7.0.tar.lzma



Other differences:
--
++ v8.spec ++
--- /var/tmp/diff_new_pack.UNLlEG/_old  2012-02-27 18:37:30.0 +0100
+++ /var/tmp/diff_new_pack.UNLlEG/_new  2012-02-27 18:37:30.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   v8
-Version:3.9.1.0
+Version:3.9.7.0
 Release:0
 Summary:JavaScript Engine
 License:BSD-3-Clause

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



commit xmahjong for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package xmahjong for openSUSE:Factory 
checked in at 2012-02-27 18:38:01

Comparing /work/SRC/openSUSE:Factory/xmahjong (Old)
 and  /work/SRC/openSUSE:Factory/.xmahjong.new (New)


Package is xmahjong, Maintainer is wer...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/xmahjong/xmahjong.changes2011-09-23 
12:51:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.xmahjong.new/xmahjong.changes   2012-02-27 
18:38:03.0 +0100
@@ -1,0 +2,6 @@
+Mon Feb 20 03:39:35 UTC 2012 - jeng...@medozas.de
+
+- Remove redundant tags/sections from specfile
+- Parallel build with %_smp_mflags
+
+---



Other differences:
--
++ xmahjong.spec ++
--- /var/tmp/diff_new_pack.2nSQGc/_old  2012-02-27 18:38:04.0 +0100
+++ /var/tmp/diff_new_pack.2nSQGc/_new  2012-02-27 18:38:04.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package xmahjong (Version 2010.11.8)
+# spec file for package xmahjong
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -14,23 +14,20 @@
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
-
-# norootforbuild
-
-
 Name:   xmahjong
-BuildRequires:  freetype2 xorg-x11 xorg-x11-devel
+BuildRequires:  freetype2
+BuildRequires:  xorg-x11
+BuildRequires:  xorg-x11-devel
 %definefontdir /usr/share/fonts/misc
 %define xbindir /usr/bin
 %define xlibdir /usr/share
 %define xmandir /usr/share/man
-License:MIT
-Group:  Amusements/Games/Board/Other
-AutoReqProv:on
 PreReq: %suseconfig_fonts_prereq
 Version:2010.11.8
-Release:1
+Release:0
 Summary:Mahjongg for X
+License:MIT
+Group:  Amusements/Games/Board/Other
 Source: xmahjong.tar.bz2
 Patch0: xmahjong.dif
 Patch1: missing-includes.patch
@@ -49,7 +46,7 @@
 %build
 xmkmf -a
 rm -f xmahjongg.man; ln -sf xmahjongg.6 xmahjongg.man
-make LIBDIR=%{xlibdir}
+make LIBDIR=%{xlibdir} %{?_smp_mflags}
 
 %install
 make install install.man DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{xlibdir}

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



commit xorg-x11-driver-video for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package xorg-x11-driver-video for 
openSUSE:Factory checked in at 2012-02-27 18:38:28

Comparing /work/SRC/openSUSE:Factory/xorg-x11-driver-video (Old)
 and  /work/SRC/openSUSE:Factory/.xorg-x11-driver-video.new (New)


Package is xorg-x11-driver-video, Maintainer is sndir...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/xorg-x11-driver-video/xorg-x11-driver-video.changes  
2012-02-17 12:11:09.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.xorg-x11-driver-video.new/xorg-x11-driver-video.changes
 2012-02-27 18:38:30.0 +0100
@@ -1,0 +2,11 @@
+Sat Feb 25 13:56:15 UTC 2012 - sndir...@suse.com
+
+- build intel driver with SandyBridge's New Acceleration (SNA)
+
+---
+Fri Feb 24 17:02:31 UTC 2012 - v...@ovi.com
+
+- Update xf86-video-intel from 2.16 to 2.18
+  * U_uxa-Fix-clip-processing-for-uxa_fill_spans.patch upstreamed
+
+---

Old:

  U_uxa-Fix-clip-processing-for-uxa_fill_spans.patch
  xf86-video-intel-2.16.0.tar.bz2

New:

  xf86-video-intel-2.18.0.tar.bz2



Other differences:
--
++ xorg-x11-driver-video.spec ++
--- /var/tmp/diff_new_pack.IWr4U6/_old  2012-02-27 18:38:33.0 +0100
+++ /var/tmp/diff_new_pack.IWr4U6/_new  2012-02-27 18:38:33.0 +0100
@@ -71,7 +71,7 @@
 Source38:   xf86-video-vesa-2.3.0.tar.bz2
 Source41:   xf86-video-vmware-11.0.3.tar.bz2
 Source42:   xf86-video-voodoo-1.2.4.tar.bz2
-Source45:   xf86-video-intel-2.16.0.tar.bz2
+Source45:   xf86-video-intel-2.18.0.tar.bz2
 Source46:   xf86-video-ati-6.14.3.tar.bz2
 Source51:   xf86-video-geode-2.11.12.tar.bz2
 Source54:   xf86-video-mach64-6.9.0.tar.bz2
@@ -108,7 +108,6 @@
 Patch157:   U_xgi-Fix-build-on-bigendian.patch
 Patch158:   U_API-compat-fix-for-DRAWABLE_BUFFER.patch
 %endif
-Patch159:   U_uxa-Fix-clip-processing-for-uxa_fill_spans.patch
 
 %description
 This package contains X.Org video drivers.
@@ -150,7 +149,6 @@
 %patch150 -p1
 ### disabled for now (bnc #687802)
 #%patch155 -p1
-%patch159 -p1
 popd
 pushd xf86-video-nv-*
 %patch132 -p1
@@ -175,13 +173,15 @@
 
 %build
 for dir in $(ls -d xf86-video-*) intel-gpu-tools-*; do
+  CONFIG_OPTS=
   pushd $dir
 case $dir in
   xf86-video-mga-*) rm -f configure ;;
+  xf86-video-intel-*) CONFIG_OPTS=--enable-sna ;;
  *) ;;
 esac
 test -f configure || autoreconf -fi
-%configure CFLAGS=$RPM_OPT_FLAGS -fno-strict-aliasing
+%configure $CONFIG_OPTS CFLAGS=$RPM_OPT_FLAGS -fno-strict-aliasing
 %{__make} %{?jobs:-j%jobs}
   popd
 done

++ xf86-video-intel-2.16.0.tar.bz2 - xf86-video-intel-2.18.0.tar.bz2 ++
 163435 lines of diff (skipped)

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



commit x-tile for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package x-tile for openSUSE:Factory checked 
in at 2012-02-27 18:38:36

Comparing /work/SRC/openSUSE:Factory/x-tile (Old)
 and  /work/SRC/openSUSE:Factory/.x-tile.new (New)


Package is x-tile, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/x-tile/x-tile.changes2012-01-05 
19:16:45.0 +0100
+++ /work/SRC/openSUSE:Factory/.x-tile.new/x-tile.changes   2012-02-27 
18:38:38.0 +0100
@@ -1,0 +2,8 @@
+Thu Feb 23 17:43:23 UTC 2012 - vu...@opensuse.org
+
+- Update to version 2.2.1:
+  + Fix a bug when starting with systray disabled.
+  + Fix for AppIndicator support.
+  + Updated translations.
+
+---

Old:

  x-tile-2.2.tar.gz

New:

  x-tile-2.2.1.tar.gz



Other differences:
--
++ x-tile.spec ++
--- /var/tmp/diff_new_pack.RlLUfo/_old  2012-02-27 18:38:39.0 +0100
+++ /var/tmp/diff_new_pack.RlLUfo/_new  2012-02-27 18:38:39.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   x-tile
-Version:2.2
+Version:2.2.1
 Release:0
 Summary:Panel applet for tiling windows
 License:GPL-2.0+

++ x-tile-2.2.tar.gz - x-tile-2.2.1.tar.gz ++
 5637 lines of diff (skipped)

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



commit ypbind for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package ypbind for openSUSE:Factory checked 
in at 2012-02-27 18:38:47

Comparing /work/SRC/openSUSE:Factory/ypbind (Old)
 and  /work/SRC/openSUSE:Factory/.ypbind.new (New)


Package is ypbind, Maintainer is ku...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/ypbind/ypbind.changes2011-09-23 
12:53:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.ypbind.new/ypbind.changes   2012-02-27 
18:38:49.0 +0100
@@ -1,0 +2,5 @@
+Sat Feb 25 13:41:09 UTC 2012 - co...@suse.com
+
+- buildrequire libxml2-tools on factory
+
+---



Other differences:
--
++ ypbind.spec ++
--- /var/tmp/diff_new_pack.FbK00N/_old  2012-02-27 18:38:50.0 +0100
+++ /var/tmp/diff_new_pack.FbK00N/_new  2012-02-27 18:38:50.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ypbind
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,24 +15,27 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   ypbind
-BuildRequires:  dbus-1-devel openslp-devel pkgconfig
+BuildRequires:  dbus-1-devel
+BuildRequires:  openslp-devel
+BuildRequires:  pkgconfig
 %if %{suse_version}  1010
 BuildRequires:  dbus-1-glib-devel
 %endif
-License:GPL-2.0
-Group:  Productivity/Networking/NIS
-Requires:   portmap yp-tools
-AutoReqProv:on
+%if %{suse_version}  1210
+BuildRequires:  libxml2-tools
+%endif
+Requires:   portmap
+Requires:   yp-tools
 PreReq: %insserv_prereq %fillup_prereq
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Version:1.33
-Release:1
+Release:0
 Url:http://www.linux-nis.org/nis/ypbind-mt
 Summary:NIS client daemon
+License:GPL-2.0
+Group:  Productivity/Networking/NIS
 Source: 
ftp://ftp.kernel.org/pub/linux/utils/net/NIS/ypbind-mt-%{version}.tar.bz2
 Source1:SuSEfirewall.ypbind
 #Patch:  ypbind-mt-%{version}.diff
@@ -81,9 +84,6 @@
 # Create filelist with translatins
 %{find_lang} ypbind-mt
 
-%clean
-[ $RPM_BUILD_ROOT != / ]  rm -rf $RPM_BUILD_ROOT
-
 %post
 %{fillup_and_insserv ypbind}
 

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



commit yzis for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package yzis for openSUSE:Factory checked in 
at 2012-02-27 18:38:55

Comparing /work/SRC/openSUSE:Factory/yzis (Old)
 and  /work/SRC/openSUSE:Factory/.yzis.new (New)


Package is yzis, Maintainer is pgaj...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yzis/yzis.changes2011-09-23 
12:53:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.yzis.new/yzis.changes   2012-02-27 
18:39:03.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 23 11:18:58 UTC 2012 - co...@suse.com
+
+- build against lua  5.2
+
+---



Other differences:
--
++ yzis.spec ++
--- /var/tmp/diff_new_pack.N0spGS/_old  2012-02-27 18:39:03.0 +0100
+++ /var/tmp/diff_new_pack.N0spGS/_new  2012-02-27 18:39:03.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package yzis (Version 1.0alpha1)
+# spec file for package yzis
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,17 +15,22 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   yzis
 # skip-check-libtool-deps
-BuildRequires:  cmake doxygen file-devel kdelibs4-core libkde4-devel 
libqt4-devel lua-devel ncurses-devel
+BuildRequires:  cmake
+BuildRequires:  doxygen
+BuildRequires:  file-devel
+BuildRequires:  kdelibs4-core
+BuildRequires:  libkde4-devel
+BuildRequires:  libqt4-devel
+BuildRequires:  ncurses-devel
+BuildRequires:  pkgconfig(lua)  5.2
+Summary:Vim Clone for KDE
 License:GPL-2.0+ ; LGPL-2.1+
 Group:  Productivity/Editors/Vi
-Summary:Vim Clone for KDE
 Version:1.0alpha1
-Release:45
+Release:0
 %define tar_version 1.0-alpha1
 Url:http://www.yzis.org/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -37,14 +42,6 @@
 fast editor with all of Vim's features and hopefully, at some point,
 more.
 
-
-
-Authors:
-
-Mickael Marchand
-Thomas Capricelli
-Loic Paulev�
-
 %prep
 %setup -q -n %name-%tar_version
 %patch0

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



commit zsh for openSUSE:Factory

2012-02-27 Thread h_root
Hello community,

here is the log from the commit of package zsh for openSUSE:Factory checked in 
at 2012-02-27 18:39:10

Comparing /work/SRC/openSUSE:Factory/zsh (Old)
 and  /work/SRC/openSUSE:Factory/.zsh.new (New)


Package is zsh, Maintainer is idon...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/zsh/zsh.changes  2012-02-08 15:44:19.0 
+0100
+++ /work/SRC/openSUSE:Factory/.zsh.new/zsh.changes 2012-02-27 
18:39:11.0 +0100
@@ -1,0 +2,9 @@
+Mon Feb 27 09:11:27 UTC 2012 - idon...@suse.com
+
+- Update to version 4.3.17
+  * Contains fixes for possible speed regression introduced 
+in 4.3.15 (new option HASH_EXECUTABLES_ONLY)
+  * Improvements to (bash) completion and shell emulation mode 
+- Drop all the patches, all upstream
+
+---

Old:

  osc.patch
  zsh-4.3.12-fix-c02cond-test.patch
  zsh-4.3.15.tar.bz2
  zsh-enable-openSUSE-completion-functions.patch

New:

  zsh-4.3.17.tar.bz2



Other differences:
--
++ zsh.spec ++
--- /var/tmp/diff_new_pack.sy8nct/_old  2012-02-27 18:39:12.0 +0100
+++ /var/tmp/diff_new_pack.sy8nct/_new  2012-02-27 18:39:12.0 +0100
@@ -16,9 +16,8 @@
 #
 
 
-
 Name:   zsh
-Version:4.3.15
+Version:4.3.17
 Release:0
 Summary:Shell with comprehensive completion
 License:MIT
@@ -37,9 +36,6 @@
 Source16:   dotzshrc.rh
 Source17:   zshprompt.pl
 %endif
-Patch1: %{name}-4.3.12-fix-c02cond-test.patch
-Patch2: osc.patch
-Patch3: zsh-enable-openSUSE-completion-functions.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}
 Requires(pre):  %{install_info_prereq}
@@ -90,9 +86,6 @@
 
 %prep
 %setup -q -n %{name}-%{version}
-%patch1 -p1
-%patch2 -p0
-%patch3 -p1
 
 # Remove executable bit
 chmod 0644 Etc/changelog2html.pl

++ zsh-4.3.15.tar.bz2 - zsh-4.3.17.tar.bz2 ++
 3143 lines of diff (skipped)

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