commit libxml2 for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package libxml2 for openSUSE:Factory checked 
in at 2012-09-23 21:28:39

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


Package is "libxml2", Maintainer is "vci...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/libxml2/libxml2.changes  2012-09-23 
08:30:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.libxml2.new/libxml2.changes 2012-09-23 
21:28:40.0 +0200
@@ -1,0 +2,5 @@
+Sun Sep 23 19:28:04 UTC 2012 - co...@suse.com
+
+- readd .la file, python-libxml2 needs it
+
+---



Other differences:
--
++ libxml2.spec ++
--- /var/tmp/diff_new_pack.g7sCK7/_old  2012-09-23 21:28:41.0 +0200
+++ /var/tmp/diff_new_pack.g7sCK7/_new  2012-09-23 21:28:41.0 +0200
@@ -144,7 +144,6 @@
 
 %install
 make install DESTDIR="%buildroot" BASE_DIR="%_docdir" DOC_MODULE="%name"
-rm -f "%buildroot/%_libdir"/*.la
 mkdir -p "%buildroot/%_docdir/%name"
 cp -a AUTHORS NEWS README COPYING* Copyright TODO* 
%{buildroot}%{_docdir}/%{name}/
 ln -s libxml2/libxml %{buildroot}%{_includedir}/libxml
@@ -180,6 +179,7 @@
 %{_includedir}/libxml
 %{_includedir}/libxml2
 %{_libdir}/lib*.so
+%{_libdir}/libxml2.la
 %{_libdir}/*.sh
 %{_libdir}/pkgconfig/*.pc
 %doc %{_mandir}/man1/xml2-config.1*

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



commit file for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package file for openSUSE:Factory checked in 
at 2012-09-23 21:16:00

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


Package is "file", Maintainer is "wer...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/file/file.changes2012-08-26 
11:31:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.file.new/file.changes   2012-09-23 
21:16:02.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep 18 10:24:58 UTC 2012 - wer...@suse.de
+
+- Add small patch to make clear if file follows symbloc links or not
+  as tihs depend on the environment variable POSIXLY_CORRECT
+- Remove the README file as this is for packagers and not for users
+
+---

New:

  file-5.11-nitpick.dif



Other differences:
--
++ file.spec ++
--- /var/tmp/diff_new_pack.C2naRY/_old  2012-09-23 21:16:03.0 +0200
+++ /var/tmp/diff_new_pack.C2naRY/_new  2012-09-23 21:16:03.0 +0200
@@ -59,6 +59,7 @@
 Patch32:file-5.07-clicfs.dif
 Patch33:file-ocloexec.patch
 Patch34:file-endian.patch
+Patch35:file-5.11-nitpick.dif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global _sysconfdir /etc
 %global _miscdir%{_datadir}/misc
@@ -107,8 +108,9 @@
 %patch31 -p0 -b .biorad
 %patch32 -p0 -b .clicfs
 %patch33 -p0 -b .clexe
+%patch34 -p0 -b .endian
+%patch35 -p0 -b .nitpick
 %patch -b .0
-%patch34 
 %build
 export LANG=POSIX
 export LC_ALL=POSIX
@@ -155,7 +157,7 @@
 %{_miscdir}/magic.mgc
 %doc %{_mandir}/man1/file.1.gz
 %doc %{_mandir}/man5/magic.5.gz
-%doc README COPYING AUTHORS NEWS ChangeLog
+%doc COPYING AUTHORS NEWS ChangeLog
 
 %files -n file-devel
 %defattr (644,root,root,755)

++ file-5.11-nitpick.dif ++
--- src/file.c
+++ src/file.c  2012-09-18 10:27:51.094936322 +
@@ -94,10 +94,12 @@ private const char *separator = ":";/*
 private const struct option long_options[] = {
 #define OPT(shortname, longname, opt, doc)  \
 {longname, opt, NULL, shortname},
+#define OPT_POSIX OPT
 #define OPT_LONGONLY(longname, opt, doc)\
 {longname, opt, NULL, 0},
 #include "file_opts.h"
 #undef OPT
+#undef OPT_POSIX
 #undef OPT_LONGONLY
 {0, 0, NULL, 0}
 };
@@ -487,16 +489,21 @@ usage(void)
 private void
 help(void)
 {
+   const unsigned long posix = (unsigned long)getenv("POSIXLY_CORRECT");
(void)fputs(
 "Usage: file [OPTION...] [FILE...]\n"
 "Determine type of FILEs.\n"
 "\n", stdout);
 #define OPT(shortname, longname, opt, doc)  \
fprintf(stdout, "  -%c, --" longname doc, shortname);
+#define OPT_POSIX(shortname, longname, opt, doc) \
+   fprintf(stdout, "  -%c, --" longname doc "%s\n", shortname, \
+   (shortname == 'L') ? (posix ? " (default)" : "") : (posix ? "" 
: " (default)"));
 #define OPT_LONGONLY(longname, opt, doc)\
fprintf(stdout, "  --" longname doc);
 #include "file_opts.h"
 #undef OPT
+#undef OPT_POSIX
 #undef OPT_LONGONLY
fprintf(stdout, "\nReport bugs to http://bugs.gw.com/\n";);
exit(0);
--- src/file_opts.h
+++ src/file_opts.h 2012-09-18 10:14:38.438397131 +
@@ -34,8 +34,8 @@ OPT_LONGONLY("mime-encoding", 0, "
 OPT('k', "keep-going", 0, "   don't stop at the first match\n")
 #ifdef S_IFLNK
 OPT('l', "list", 0, " list magic strength\n")
-OPT('L', "dereference", 0, "  follow symlinks (default)\n")
-OPT('h', "no-dereference", 0, "   don't follow symlinks\n")
+OPT_POSIX('L', "dereference", 0, "  follow symlinks")
+OPT_POSIX('h', "no-dereference", 0, "   don't follow symlinks")
 #endif
 OPT('n', "no-buffer", 0, "do not buffer output\n")
 OPT('N', "no-pad", 0, "   do not pad output\n")
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit tdb for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package tdb for openSUSE:Factory checked in 
at 2012-09-23 21:15:49

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


Package is "tdb", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/tdb/tdb.changes  2012-07-09 13:34:35.0 
+0200
+++ /work/SRC/openSUSE:Factory/.tdb.new/tdb.changes 2012-09-23 
21:15:51.0 +0200
@@ -4 +4 @@
-- Ignore tdb run transaction expand check on ppc as well 
+- Ignore tdb run transaction expand check on ppc as well; (bnc#769268). 
@@ -14,0 +15,5 @@
+
+---
+Wed Jun 13 10:23:35 UTC 2012 - dd...@suse.com
+
+- Build and link binaries with PIE flags.

New:

  build_pie.patch



Other differences:
--
++ tdb.spec ++
--- /var/tmp/diff_new_pack.5LTJnd/_old  2012-09-23 21:15:51.0 +0200
+++ /var/tmp/diff_new_pack.5LTJnd/_new  2012-09-23 21:15:51.0 +0200
@@ -43,6 +43,7 @@
 Source1:http://download.samba.org/pub/tdb/tdb-%{version}.tar.asc
 Source4:baselibs.conf
 Patch0: ignore-tdb1-run-transaction-expand.diff
+Patch1: build_pie.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -118,6 +119,7 @@
 %ifarch ppc ppc64
 %patch0 -p1
 %endif
+%patch1 -p1
 
 %build
 %if 0%{?suse_version} && 0%{?suse_version} < 911

++ build_pie.patch ++
Author: David Disseldorp 
Date:   Wed Aug 15 18:33:08 CEST 2012

Build and link binaries with PIE flags.

Index: tdb-1.2.10/wscript
===
--- tdb-1.2.10.orig/wscript
+++ tdb-1.2.10/wscript
@@ -94,20 +94,27 @@ def build(bld):
 
 bld.SAMBA_BINARY('tdbrestore',
  'tools/tdbrestore.c',
- 'tdb', manpages='manpages/tdbrestore.8')
+ 'tdb',
+cflags='-fPIE', ldflags='-pie',
+manpages='manpages/tdbrestore.8')
 
 bld.SAMBA_BINARY('tdbdump',
  'tools/tdbdump.c',
- 'tdb', manpages='manpages/tdbdump.8')
+ 'tdb',
+cflags='-fPIE', ldflags='-pie',
+manpages='manpages/tdbdump.8')
 
 bld.SAMBA_BINARY('tdbbackup',
  'tools/tdbbackup.c',
  'tdb',
+cflags='-fPIE', ldflags='-pie',
  manpages='manpages/tdbbackup.8')
 
 bld.SAMBA_BINARY('tdbtool',
  'tools/tdbtool.c',
- 'tdb', manpages='manpages/tdbtool.8')
+ 'tdb',
+cflags='-fPIE', ldflags='-pie',
+manpages='manpages/tdbtool.8')
 
 # FIXME: This hardcoded list is stupid, stupid, stupid.
 bld.SAMBA_SUBSYSTEM('tdb-test-helpers',

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



commit uget for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package uget for openSUSE:Factory checked in 
at 2012-09-23 21:14:46

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


Package is "uget", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/uget/uget.changes2012-05-16 
21:10:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.uget.new/uget.changes   2012-09-23 
21:14:47.0 +0200
@@ -1,0 +2,37 @@
+Sun Sep 16 12:01:29 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.10.1:
+  + This version need GTK 3.4+ and GLib 2.32+.
+  + Add global speed limits for aria2.
+  + Add new option "Retrieve timestamp" in Download dialog.
+  + Add new option "User Agent" in Download dialog.
+  + Add Commandline Settings for some FlashGot users.
+  + Add setting option "Apply recently download settings". (Enabled
+by default)
+  + Change aria2 default arguments to "--enable-rpc=true -D
+--check-certificate=false".
+  + aria2 plug-in use argument "continue=true".
+  + aria2 plug-in can use user specified filename.
+  + curl plug-in disable peer SSL certificate verification.
+  + curl plug-in can keep user specified filename.
+  + Fix: program crash when user deleting files.
+  + Fix minor bugs.
+  + Updated translations.
+- Drop uget-gtk-deprecation.patch: fixed upstream.
+- Remove conditional gtk2 BuildRequires: uget 1.10 no longer
+  supports being built against GTK+ 2.0.
+- Replace libindicator-devel BuildRequires with
+  pkgconfig(appindicator3-0.1): this represents exactly what
+  configure is checking for.
+- Replace libnotify-devel BuildRequires with pkgconfig(libnotify)
+  and gstreamer-0_10-devel with pkgconfig(gstreamer-0.10): use the
+  same as configure is checking for. This might switch older
+  releases to 'unresolvable' if they do not support pkgconfig()-
+  style BuildRequires, but those would not have GTK 3.4 neither.
+- Remove the favor_gtk2 conditions: no longer posisble to build
+  gtk2
+- Do not pass --enable-gtk3 to confgiure: the parameter is now
+  unknown
+- Minor spec cleanup: do not check for outdated openSUSE releases.
+
+---

Old:

  uget-1.8.2.tar.gz
  uget-gtk-deprecation.patch

New:

  uget-1.10.1.tar.gz



Other differences:
--
++ uget.spec ++
--- /var/tmp/diff_new_pack.Njekwg/_old  2012-09-23 21:14:48.0 +0200
+++ /var/tmp/diff_new_pack.Njekwg/_new  2012-09-23 21:14:48.0 +0200
@@ -17,29 +17,23 @@
 
 
 Name:   uget
-Version:1.8.2
+Version:1.10.1
 Release:0
 Summary:Easy-to-use GTK+ Download Manager
 License:LGPL-2.1+
 Group:  Productivity/Networking/Web/Utilities
 Url:http://urlget.sourceforge.net/
-Source: 
http://downloads.sourceforge.net/project/urlget/uget%20%28stable%29/1.8.2/%{name}-%{version}.tar.gz
-# PATCH-FIX-UPSTREAM uget-gtk-deprecation.patch sf#3388226 
dims...@opensuse.org -- Replace deprecated gtk_[hv].*_new with current 
equivalents.
-Patch0: uget-gtk-deprecation.patch
-BuildRequires:  glib2-devel
-BuildRequires:  gstreamer-0_10-devel
+Source: 
http://downloads.sourceforge.net/project/urlget/uget%20%28stable%29/1.10.1/%{name}-%{version}.tar.gz
 BuildRequires:  intltool
 %if 0%{?WITH_APPINDICATOR}
-BuildRequires:  libappindicator-devel
+BuildRequires:  pkgconfig(appindicator3-0.1)
 %endif
 BuildRequires:  libcurl-devel
-BuildRequires:  libnotify-devel
 BuildRequires:  update-desktop-files
-%if 0%{?favor_gtk2}
-BuildRequires:  gtk2-devel
-%else
-BuildRequires:  pkgconfig(gtk+-3.0)
-%endif
+BuildRequires:  pkgconfig(glib-2.0) >= 2.32
+BuildRequires:  pkgconfig(gstreamer-0.10)
+BuildRequires:  pkgconfig(gtk+-3.0) >= 3.4
+BuildRequires:  pkgconfig(libnotify)
 Requires:   aria2
 Recommends: %{name}-lang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -52,15 +46,9 @@
 %lang_package
 %prep
 %setup -q
-%if ! (0%{?favor_gtk2})
-%patch0 -p1
-%endif
 
 %build
 %configure \
-%if ! (0%{?favor_gtk2})
---with-gtk3 \
-%endif
 %if 0%{?WITH_APPINDICATOR}
 --enable-appindicator=yes
 %endif
@@ -76,20 +64,12 @@
 rm -rf %{buildroot}
 
 %post
-%if 0%{?suse_version} > 1130
 %desktop_database_post
 %icon_theme_cache_post
-%else
-gtk-update-icon-cache %{_datadir}/icons/hicolor || true
-%endif
 
 %postun
-%if 0%{?suse_version} > 1130
 %desktop_database_postun
 %icon_theme_cache_postun
-%else
-gtk-update-icon-cache %{_datadir}/icons/hicolor || true
-%endif
 
 %files
 %defattr(-,root,root)

++ uget-1.8.2.tar.gz -> uget-1.10.1.tar.gz ++
 25513 lines of diff (skipped)

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

commit tasque for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package tasque for openSUSE:Factory checked 
in at 2012-09-23 21:14:36

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


Package is "tasque", Maintainer is "gnome-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/tasque/tasque.changes2011-09-23 
12:47:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.tasque.new/tasque.changes   2012-09-23 
21:14:37.0 +0200
@@ -1,0 +2,21 @@
+Sun Sep  2 20:18:35 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.1.11:
+  + Internal cleanup.
+  + Updated translations.
+- Changes from version 0.1.10:
+  + Fixed some automake issues.
+  + Tasque runs now on .NET 4 profile.
+  + Added support for Ubuntu/Unity's Application Indicator in
+addition to Gtk's StatusIcon.
+  + Fixed "Unable to complete tasks in RTM" bug. Side effect: Smart
+lists are temporarily not supported by Tasque.
+  + Evolution backend disabled.
+  + Bugs fixed: bgo#557792, bgo#578279, bgo#645040, bgo#570517,
+bgo#579428, bgo#591090, bgo#614505, bgo#607816, bgo#555680,
+bgo#613969.
+  + Updated translations.
+- Drop evolution-sharp BuildRequires: no longer needed, as the
+  evolution backend has been disabled.
+
+---

Old:

  tasque-0.1.9.tar.bz2

New:

  tasque-0.1.11.tar.xz



Other differences:
--
++ tasque.spec ++
--- /var/tmp/diff_new_pack.TRqs4d/_old  2012-09-23 21:14:38.0 +0200
+++ /var/tmp/diff_new_pack.TRqs4d/_new  2012-09-23 21:14:38.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package tasque
 #
-# 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,33 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 Url:http://live.gnome.org/Tasque
 
 Name:   tasque
 %define dbus_min_version 0.60-26
-Version:0.1.9
-Release:11
+Version:0.1.11
+Release:0
+Summary:A simple task management app (TODO list) for the Linux Desktop
 License:LGPL-2.1+ ; MIT
-Provides:   tasky = %{version}
-Obsoletes:  tasky < %{version}
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  dbus-1-devel evolution-sharp fdupes gconf2-devel gnome-sharp2 
intltool mono-devel ndesk-dbus ndesk-dbus-glib-devel notify-sharp
-Source: %{name}-%{version}.tar.bz2
 Group:  Productivity/Office/Organizers
-Summary:A simple task management app (TODO list) for the Linux Desktop
+Source: 
http://ftp.acc.umu.se/pub/GNOME/sources/tasque/0.1/tasque-0.1.11.tar.xz
+BuildRequires:  fdupes
+BuildRequires:  gnome-sharp2
+BuildRequires:  intltool
+BuildRequires:  mono-devel
+BuildRequires:  ndesk-dbus
+BuildRequires:  ndesk-dbus-glib-devel
+BuildRequires:  notify-sharp
+BuildRequires:  pkgconfig(dbus-1)
+BuildRequires:  pkgconfig(gconf-2.0)
 Requires:   dbus-1-glib >= %{dbus_min_version}
 Requires:   dbus-1-x11 >= %{dbus_min_version}
 Requires:   ndesk-dbus
 Recommends: %{name}-lang
+Provides:   tasky = %{version}
+Obsoletes:  tasky < %{version}
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
@@ -54,16 +61,16 @@
 %build
 %configure \
 --enable-standard-backends
-%__make
+make
 
 %install
-%makeinstall
+%make_install
 %find_lang %{name} %{?no_lang_C}
 %suse_update_desktop_file %{name}
-%fdupes -s $RPM_BUILD_ROOT
+%fdupes -s %{buildroot}
 
 %clean
-rm -rf "$RPM_BUILD_ROOT"
+rm -rf %{buildroot}
 
 %if 0%{?suse_version} > 1130
 
@@ -86,8 +93,7 @@
 %{_libdir}/tasque/
 %{_datadir}/applications/tasque.desktop
 %{_datadir}/dbus-1/services/org.gnome.Tasque.service
-%{_datadir}/icons/hicolor/*/apps/tasque.png
-%{_datadir}/icons/hicolor/scalable/apps/tasque.svg
+%{_datadir}/icons/hicolor/*/apps/tasque*.*
 %{_datadir}/pixmaps/note-16.png
 %{_datadir}/pixmaps/rtmLogo.png
 %{_datadir}/pixmaps/tasque-*.png

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



commit spice-protocol for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package spice-protocol for openSUSE:Factory 
checked in at 2012-09-23 21:14:21

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


Package is "spice-protocol", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/spice-protocol/spice-protocol.changes
2012-07-31 13:59:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.spice-protocol.new/spice-protocol.changes   
2012-09-23 21:14:23.0 +0200
@@ -1,0 +2,8 @@
+Tue Sep 18 15:12:29 UTC 2012 - sndir...@suse.com
+
+- Update to version 0.12.2
+  + display channel: A8 surface capability
+  + qxl: client present, client capabilities and client monitors
+configuration.
+
+---

Old:

  spice-protocol-0.12.0.tar.bz2

New:

  spice-protocol-0.12.2.tar.bz2



Other differences:
--
++ spice-protocol.spec ++
--- /var/tmp/diff_new_pack.WITZtX/_old  2012-09-23 21:14:23.0 +0200
+++ /var/tmp/diff_new_pack.WITZtX/_new  2012-09-23 21:14:23.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   spice-protocol
-Version:0.12.0
+Version:0.12.2
 Release:0
 Url:http://www.spice-space.org/
 Summary:SPICE-protocol definitions

++ spice-protocol-0.12.0.tar.bz2 -> spice-protocol-0.12.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/spice-protocol-0.12.0/INSTALL 
new/spice-protocol-0.12.2/INSTALL
--- old/spice-protocol-0.12.0/INSTALL   2012-02-03 12:02:58.0 +0100
+++ new/spice-protocol-0.12.2/INSTALL   2011-02-19 03:47:06.0 +0100
@@ -1,8 +1,8 @@
 Installation Instructions
 *
 
-Copyright (C) 1994-1996, 1999-2002, 2004-2011 Free Software Foundation,
-Inc.
+Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
+2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 
Copying and distribution of this file, with or without modification,
 are permitted in any medium without royalty provided the copyright
@@ -226,11 +226,6 @@
 
 and if that doesn't work, install pre-built binaries of GCC for HP-UX.
 
-   HP-UX `make' updates targets which have the same time stamps as
-their prerequisites, which makes it generally unusable when shipped
-generated files such as `configure' are involved.  Use GNU `make'
-instead.
-
On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
 parse its `' header file.  The option `-nodtk' can be used as
 a workaround.  If GNU CC is not installed, it is therefore recommended
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/spice-protocol-0.12.0/Makefile.in 
new/spice-protocol-0.12.2/Makefile.in
--- old/spice-protocol-0.12.0/Makefile.in   2012-07-16 18:32:42.0 
+0200
+++ new/spice-protocol-0.12.2/Makefile.in   2012-09-18 17:10:25.0 
+0200
@@ -1,9 +1,9 @@
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
+# Makefile.in generated by automake 1.11.1 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-# Foundation, Inc.
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
+# Inc.
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -47,11 +47,11 @@
 CONFIG_HEADER = config.h
 CONFIG_CLEAN_FILES = spice-protocol.pc
 CONFIG_CLEAN_VPATH_FILES =
-AM_V_GEN = $(am__v_GEN_@AM_V@)
-am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+AM_V_GEN = $(am__v_GEN_$(V))
+am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
 am__v_GEN_0 = @echo "  GEN   " $@;
-AM_V_at = $(am__v_at_@AM_V@)
-am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+AM_V_at = $(am__v_at_$(V))
+am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
 am__v_at_0 = @
 SOURCES =
 DIST_SOURCES =
@@ -83,12 +83,6 @@
 am__base_list = \
   sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
   sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
-am__uninstall_files_from_dir = { \
-  test -z "$$files" \
-|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
-|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
- $(am__cd) "$$dir" && rm -f $$files; }; \
-  }
 am__installdirs = "$(DESTDIR)$(pkgconfigdir)"
 DATA = $(pkgconfig_DATA)
 RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive\
@@ -103,11 +97,9 @@
 distdir = $(PACKAGE)-$(VERSION)
 top_distdir = $(distdir)
 am__remove_distdir = \
-  if test -d "$(distdir)"

commit smuxi for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package smuxi for openSUSE:Factory checked 
in at 2012-09-23 21:14:10

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


Package is "smuxi", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/smuxi/smuxi.changes  2012-02-16 
12:28:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.smuxi.new/smuxi.changes 2012-09-23 
21:14:13.0 +0200
@@ -1,0 +2,12 @@
+Wed Sep 12 08:49:57 UTC 2012 - awa...@opensuse.org
+
+- Update to version 0.8.10.1:
+  + Integrated spell checking
+  + Favicons for Server tabs
+  + Quick Join bar
+  + Enhanced Text frontend
+  + Indentation of multi-lin messages
+  + Enhanced commands
+  + Updated translations.
+
+---

Old:

  smuxi-0.8.9.2.tar.gz

New:

  smuxi-0.8.10.1.tar.gz



Other differences:
--
++ smuxi.spec ++
--- /var/tmp/diff_new_pack.w3ZzWJ/_old  2012-09-23 21:14:14.0 +0200
+++ /var/tmp/diff_new_pack.w3ZzWJ/_new  2012-09-23 21:14:14.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   smuxi
-Version:0.8.9.2
+Version:0.8.10.1
 Release:0
 # FIXME: when db4o is in Factory, uncomment BuildRequires for it
 Url:http://www.smuxi.org

++ smuxi-0.8.9.2.tar.gz -> smuxi-0.8.10.1.tar.gz ++
 13227 lines of diff (skipped)

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



commit scite for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package scite for openSUSE:Factory checked 
in at 2012-09-23 21:13:59

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


Package is "scite", Maintainer is "nadvor...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/scite/scite.changes  2012-07-02 
11:12:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.scite.new/scite.changes 2012-09-23 
21:14:02.0 +0200
@@ -1,0 +2,60 @@
+Sun Aug 26 13:54:50 UTC 2012 - malcolmle...@opensuse.org
+
+- Updated to version 3.2.1:
+  + In Scintilla.iface, specify features as properties instead of
+functions where possible and fix some enumerations.
+  + In SciTE Lua scripts, string properties in Scintilla API can
+be retrieved as well as set using property notation.
+  + Added character class APIs: SCI_SETPUNCTUATIONCHARS,
+SCI_GETWORDCHARS, SCI_GETWHITESPACECHARS, and
+SCI_GETPUNCTUATIONCHARS. Feature #3529805.
+  + Less/Hss support added to CSS lexer. Feature #3532413.
+  + C++ lexer style SCE_C_PREPROCESSORCOMMENT added for stream
+comments in preprocessor (sf#3487406).
+  + Fix incorrect styling of inactive code in C++ lexer
+(sf#3533036).
+  + Fix incorrect styling by C++ lexer after empty lines in
+preprocessor style.
+  + C++ lexer option "lexer.cpp.allow.dollars" fixed so can be
+turned off after being on (sf#3541461).
+  + Fortran fixed format lexer fixed to style comments from column
+73 (sf#3540486).
+  + Fortran folder folds CRITICAL .. END CRITICAL (sf#3540486).
+  + Fortran lexer fixes styling after comment line ending with
+'&' (sf#3087226).
+  + Fortran lexer styles preprocessor lines so they do not trigger
+incorrect folding (sf#2906275).
+  + Fortran folder fixes folding of nested ifs (sf#2809176).
+  + HTML folder fixes folding of CDATA when
+fold.html.preprocessor=0 (sf#3540491).
+  + On Cocoa, fix autocompletion font lifetime issue and row
+height computation.
+  + In 'choose single' mode, autocompletion will close an existing
+list if asked to display a single entry list.
+  + Fixed SCI_MARKERDELETE to only delete one marker per call
+(sf#3535806).
+  + Properly position caret after undoing coalesced delete
+operations (sf#3523326).
+  + Ensure margin is redrawn when SCI_MARGINSETSTYLE called.
+  + Fix clicks in first pixel of margins to send SCN_MARGINCLICK.
+  + Fix infinite loop when drawing block caret for a zero width
+space character at document start.
+  + Crash fixed for deleting negative range.
+  + For characters that overlap the beginning of their space such
+as italics descenders and bold serifs, allow start of text to
+draw 1 pixel into margin (sf#699587 sf#3537799).
+  + Fixed problems compiling Scintilla for Qt with GCC 4.7.1 x64.
+  + Fixed problem with determining GTK+ sub-platform caused when
+adding Qt support in 3.2.0.
+  + Fix incorrect measurement of untitled file in SciTE on Linux
+leading to message "File ...' is 2147483647 bytes long"
+(sf#3537764).
+  + In SciTE, fix open of selected filename with line number to go
+to that line.
+  + Fix problem with last visible buffer closing in SciTE causing
+invisible buffers to be active.
+  + Avoid blinking of SciTE's current word highlight when output
+pane changes.
+  + SciTE properties files can be longer than 60K.
+
+---

Old:

  scite320.tgz

New:

  scite321.tgz



Other differences:
--
++ scite.spec ++
--- /var/tmp/diff_new_pack.gzXsvz/_old  2012-09-23 21:14:03.0 +0200
+++ /var/tmp/diff_new_pack.gzXsvz/_new  2012-09-23 21:14:03.0 +0200
@@ -18,13 +18,13 @@
 
 
 Name:   scite
-Version:3.2.0
+Version:3.2.1
 Release:0
 Summary:Source Code Editor based on Scintilla
 License:MIT
 Group:  Productivity/Text/Editors
 Url:http://www.scintilla.org/SciTE.html
-Source0:http://download.sourceforge.net/scintilla/%{name}320.tgz
+Source0:http://download.sourceforge.net/scintilla/%{name}321.tgz
 # PATCH-FIX-UPSTREAM scite-fix-desktop-categories.patch sf#3491187 
malcolmle...@opensuse.org -- Update desktop catgories.
 Patch0: scite-fix-desktop-categories.patch
 BuildRequires:  gcc-c++

++ scite320.tgz -> scite321.tgz ++
 4659 lines of diff (skipped)

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



commit sblim-cim-client2 for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package sblim-cim-client2 for 
openSUSE:Factory checked in at 2012-09-23 21:13:47

Comparing /work/SRC/openSUSE:Factory/sblim-cim-client2 (Old)
 and  /work/SRC/openSUSE:Factory/.sblim-cim-client2.new (New)


Package is "sblim-cim-client2", Maintainer is "vdziewie...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/sblim-cim-client2/sblim-cim-client2.changes  
2012-08-16 14:09:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.sblim-cim-client2.new/sblim-cim-client2.changes 
2012-09-23 21:13:49.0 +0200
@@ -1,0 +2,65 @@
+Sat Sep 15 10:49:28 UTC 2012 - kkae...@suse.com
+
+- Update to Version 2.2.0
+
+  PLEASE NOTE: Version 2.2.0 is fully compliant with the final
+  JSR48 1.0.0 specification.  In order to meet this requirement,
+  several changes occurred which may be disruptive to applications
+  that work with previous (2.1.x) versions.  Please see the following
+  for more details:
+
+  
http://sblim.sourceforge.net/cim-client2-v22-doc/org/sblim/cimclient/doc-files/history.html
+
+  Detailed changes
+  
+  3567429 Update detailed release history HTML for 2.2.0
+  3555752 Sync up javax.* javadoc with JSR48 1.0.0 Final IV
+  3565581 TCK: remove unnecessary overriding methods
+  3562235 LogAndTraceBrokerTest breaks unit test tracing
+  3536399 Add client/listener peer authentication properties
+  3529151 TCK: CIMInstance property APIs include keys from COP
+  3536398 Update HTML to reflect secure indication support
+  3554738 dump CIM xml by LogAndTraceBroker.trace()
+  3553858 Append duplicate HTTP header fields instead of replace
+  3535383 HashDoS fix 3498482
+  3545797 Support new error code of SFCB
+  3529066 Add Jsr48IndicationTester
+  3524050 Improve WWW-Authenticate in HTTPClient.java
+  3529065 Enable WBEMListener get/setProperty
+  3529062 WBEMListenerFactory should return new instance
+  3527580 WBEMClient should not throw IllegalArgumentException
+  3526681 CIMError valid status codes out-of-date
+  3526679 DOM parser ignores ERROR node CODE
+  3526675 Unit test fails on Java 7
+  3525914 TCK: SetPropertyTest.testSetProperty failing
+  3521157 JSR48 1.0.0: PROP_ENABLE_*_LOGGING is Level, not 0/1
+  3525657 Sync up javax.* javadoc with JSR48 1.0.0 Final III
+  3525150 Remove CIMGetClassOp.getPropertyLis
+  3525145 Remove CIMDeleteNameSpaceOp.getNamespace
+  3525138 Remove WBEMConstants.PROTOCOL_CIMXML
+  3525135 Remove CIMResponse.isSuccessul
+  3525128 Remove WBEMTransportException/WBEMAuthenticationException
+  3523918 "java.io.IOException: Unexpected EOF" returned as HTTP 401
+  3522904 Add new API WBEMClientSBLIM.isActive()
+  3521328 JSR48 1.0.0: remove WBEMClient associators and references
+  3521119 JSR48 1.0.0: remove CIMObjectPath 2/3/4-parm ctors
+  3521131 Sync up javax.* javadoc with JSR48 1.0.0 Final II
+  3466280 get instance failure for CIM_IndicationSubscription
+  3513228 Reliable Indications support can create lots of threads
+  3517503 Missing parm in CIMDataType ctor javadoc
+  3516848 enumerateNamespaces() method to WBEMClient
+  3515180 JSR48 log dir/file should handle UNIX/Win separators
+  3514685 TCK: getProperty must return default values
+  3514537 TCK: execQueryInstances requires boolean, not Boolean
+  3513357 Handle multiple CDATAs in CimXmlSerializer
+  3513347 TCK: CIMObjectPath allows empty string
+  3513343 TCK: CIMObjectPath must validate XML schema name
+  3513349 TCK: CIMDataType must not accept null string
+  3513353 TCK: CIMDataType arrays must have length >= 1
+  3511454 SAX nodes not reinitialized properly
+  3510090 Fix CIMObjectPath.toString() inconsistencies
+  3510321 Handle CDATA in CimXmlSerializer
+  3505681 Add detailed release history HTML
+  3500619 JSR48 1.0.0: CIMClass association/key clean up
+
+---

Old:

  sblim-cim-client2-2.1.12-doc.zip
  sblim-cim-client2-2.1.12-src.zip

New:

  sblim-cim-client2-2.2.0-doc.zip
  sblim-cim-client2-2.2.0-src.zip



Other differences:
--
++ sblim-cim-client2.spec ++
--- /var/tmp/diff_new_pack.hlnvrt/_old  2012-09-23 21:13:51.0 +0200
+++ /var/tmp/diff_new_pack.hlnvrt/_new  2012-09-23 21:13:51.0 +0200
@@ -21,7 +21,7 @@
 # -
 
 Name:   sblim-cim-client2
-Version:2.1.12
+Version:2.2.0
 Release:0
 Url:http://sblim.sourceforge.net/
 Summary:Java CIM Client library

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



commit rubygem-inifile for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package rubygem-inifile for openSUSE:Factory 
checked in at 2012-09-23 21:13:32

Comparing /work/SRC/openSUSE:Factory/rubygem-inifile (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-inifile.new (New)


Package is "rubygem-inifile", Maintainer is "jsr...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-inifile/rubygem-inifile.changes  
2012-09-23 17:08:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-inifile.new/rubygem-inifile.changes 
2012-09-23 21:13:34.0 +0200
@@ -1,0 +2,12 @@
+Sun Sep 23 15:22:12 UTC 2012 - co...@suse.com
+
+- updated to version 2.0.2
+  - Lack of newline at end of file causes error (thanks erebor) [issue #12]
+
+---
+Thu Sep 13 09:14:25 UTC 2012 - co...@suse.com
+
+- updated to version 2.0.1
+  - Better error message for malformed INI files
+
+---

Old:

  inifile-2.0.0.gem

New:

  inifile-2.0.2.gem



Other differences:
--
++ rubygem-inifile.spec ++
--- /var/tmp/diff_new_pack.SIvXxY/_old  2012-09-23 21:13:36.0 +0200
+++ /var/tmp/diff_new_pack.SIvXxY/_new  2012-09-23 21:13:36.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   rubygem-inifile
-Version:2.0.0
+Version:2.0.2
 Release:0
 %define mod_name inifile
 %define mod_full_name %{mod_name}-%{version}

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



commit rubygem-hoe for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package rubygem-hoe for openSUSE:Factory 
checked in at 2012-09-23 21:13:20

Comparing /work/SRC/openSUSE:Factory/rubygem-hoe (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-hoe.new (New)


Package is "rubygem-hoe", Maintainer is "dmacvi...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-hoe/rubygem-hoe.changes  2012-09-01 
10:34:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-hoe.new/rubygem-hoe.changes 
2012-09-23 21:13:21.0 +0200
@@ -1,0 +2,9 @@
+Sun Sep 23 09:20:14 UTC 2012 - co...@suse.com
+
+- updated to version 3.1.0
+ * 1 minor enhancement:
+   * Added Hoe#licenses and Hoe#license for declaring your gem's license. 
(flavorjones)
+ * 1 bug fix:
+   * Rake 0.8.7 sets verbose flag to true, breaking 2 tests. (michelboaventura)
+
+---

Old:

  hoe-3.0.8.gem

New:

  hoe-3.1.0.gem



Other differences:
--
++ rubygem-hoe.spec ++
--- /var/tmp/diff_new_pack.JjCCOf/_old  2012-09-23 21:13:22.0 +0200
+++ /var/tmp/diff_new_pack.JjCCOf/_new  2012-09-23 21:13:22.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   rubygem-hoe
-Version:3.0.8
+Version:3.1.0
 Release:0
 %define mod_name hoe
 %define mod_full_name %{mod_name}-%{version}

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



commit rubygem-eventmachine for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package rubygem-eventmachine for 
openSUSE:Factory checked in at 2012-09-23 21:11:18

Comparing /work/SRC/openSUSE:Factory/rubygem-eventmachine (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-eventmachine.new (New)


Package is "rubygem-eventmachine", Maintainer is "cth...@suse.com"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-eventmachine/rubygem-eventmachine.changes
2012-09-11 09:19:44.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-eventmachine.new/rubygem-eventmachine.changes
   2012-09-23 21:11:21.0 +0200
@@ -1,0 +2,5 @@
+Sun Sep 23 15:16:32 UTC 2012 - co...@suse.com
+
+- updated to version 1.0.0, finaly final - still no changelog
+
+---

Old:

  eventmachine-1.0.0.rc.4.gem

New:

  eventmachine-1.0.0.gem



Other differences:
--
++ rubygem-eventmachine.spec ++
--- /var/tmp/diff_new_pack.iDm5QU/_old  2012-09-23 21:11:22.0 +0200
+++ /var/tmp/diff_new_pack.iDm5QU/_new  2012-09-23 21:11:22.0 +0200
@@ -17,17 +17,20 @@
 
 
 Name:   rubygem-eventmachine
-Version:1.0.0.rc.4
+Version:1.0.0
 Release:0
 %define mod_name eventmachine
 %define mod_full_name %{mod_name}-%{version}
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  ruby-macros >= 1
+BuildRequires:  rubygem(rdoc) > 3.10
+# MANUAL BEGIN
 BuildRequires:  gcc-c++
 BuildRequires:  openssl-devel
 BuildRequires:  pkg-config
 BuildRequires:  ruby-devel
-BuildRequires:  ruby-macros >= 1
+# MANUAL END
 Url:http://rubyeventmachine.com
 Source: %{mod_full_name}.gem
 Summary:Ruby/EventMachine library

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



commit rsyslog for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package rsyslog for openSUSE:Factory checked 
in at 2012-09-23 21:10:51

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


Package is "rsyslog", Maintainer is "m...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/rsyslog/rsyslog.changes  2012-09-14 
12:36:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.rsyslog.new/rsyslog.changes 2012-09-23 
21:11:20.0 +0200
@@ -1,0 +2,63 @@
+Fri Sep 21 08:09:46 UTC 2012 - m...@suse.com
+
+- Changed default /etc/rsyslog.conf we install to not use multiple
+  facilities with the same priority pattern in one statement using
+  the comma operator. This started to cause a start failure with
+  rsyslog-6.4.x (bnc#780607) and seems to be a bug in rsyslog.
+  Upstream report http://bugzilla.adiscon.com/show_bug.cgi?id=358,
+  switched to use alternative syntax using semicolon separator.
+
+---
+Thu Sep 20 21:39:48 UTC 2012 - andreas.stie...@gmx.de
+
+- update to 6.4.2  [V6-STABLE] 2012-09-20:
+  - bugfix: potential abort, if action queue could not be properly 
+started
+  - bugfix: remove invalid socket option call from imuxsock
+  - bugfix: missing support for escape sequences in RainerScript
+  - bugfix: config validation run did not always return correct 
+return state
+
+---
+Thu Sep 20 21:20:17 UTC 2012 - andreas.stie...@gmx.de
+
+- add rsyslog-6.4.1-CheckConnection-no-return-in-nonvoid-function.patch
+  to fix rsyslog no-return-in-nonvoid-function netstrm.c:258 in
+  CheckConnection()
+
+---
+Mon Sep 17 12:13:04 UTC 2012 - m...@suse.com
+
+- Update to 6.4.1  [V6-STABLE] 2012-09-06:
+  - bugfix: multiple main queues with same queue file name were not
+detected.  This lead to queue file corruption. While the root
+cause is a config error, it is a bug that this important and
+hard to find config error was not detected by rsyslog.
+  - bugfix: “jsonf” property replacer option did generate invalid
+JSON in JSON, we have “fieldname”:”value”, but the option
+emitted “fieldname”=”value”. Interestingly, this was accepted
+by a couple of sinks, most importantly elasticsearch. Now the
+correct format is emitted, which causes a remote chance that
+some things that relied on the wrong format will break.
+Thanks to Miloslav Trmač for the patch
+  - change $!all-json did emit an empty (thus non-JSON) string if
+no libee data was present. It now emits {} and thus valid JSON.
+There is a small risk that this may break some things that
+relied on the previous inconsistency. Thanks to Miloslav Trmač
+for the patch
+  - bugfix: omusrsmsg incorrect return state & config warning
+handling. During config file processing, Omusrmsg often
+incorrectly returned a warning status, even when no warning was
+present (caused by uninitialized variable). Also, the core
+handled warning messages incorrectly, and treated them as
+errors. As a result, omusrmsg (most often) could not properly be
+loaded. Note that this only occurs with legacy config action
+syntax. This was a regression caused by an incorrect merge in to
+the 6.3.x codebase.
+Thanks to Stefano Mason for alerting us of this bug.
+  - bugfix: Fixed TCP CheckConnection handling in omfwd.c. Interface
+needed to be changed in lower stream classes. Syslog TCP Sending
+is now resumed properly. Unfixed, that lead to non-detection of
+downstate of remote hosts.
+
+---

Old:

  rsyslog-6.4.0.tar.gz

New:

  rsyslog-6.4.1-CheckConnection-no-return-in-nonvoid-function.patch
  rsyslog-6.4.2.tar.gz



Other differences:
--
++ rsyslog.spec ++
--- /var/tmp/diff_new_pack.m0lxsi/_old  2012-09-23 21:11:21.0 +0200
+++ /var/tmp/diff_new_pack.m0lxsi/_new  2012-09-23 21:11:21.0 +0200
@@ -20,7 +20,7 @@
 Summary:The enhanced syslogd for Linux and Unix
 License:(GPL-3.0+ and Apache-2.0)
 Group:  System/Daemons
-Version:6.4.0
+Version:6.4.2
 Release:0
 # for setting those bcond_with* configs see
 # http://lizards.opensuse.org/2008/09/12/conditional-features-aka-use-flags/
@@ -129,6 +129,8 @@
 Source4:rsyslog.d.remote.conf.in
 #PATCH-FIX-OPENSUSE 
rsyslog-6.3.11-glblCheckCnf-no-return-in-nonvoid-function.patch 
andreas.stie...@gmx.de -- fix compiler error
 Patch0: rsyslog-6.3.11-glblCheckCnf-no-return-in-nonvoid-function.patch
+#PATCH-FIX-OPENSUSE 
rsyslog-

commit python-WebTest for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package python-WebTest for openSUSE:Factory 
checked in at 2012-09-23 21:10:30

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


Package is "python-WebTest", Maintainer is "cth...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/python-WebTest/python-WebTest.changes
2012-06-10 21:52:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-WebTest.new/python-WebTest.changes   
2012-09-23 21:10:32.0 +0200
@@ -1,0 +2,15 @@
+Sat Sep 22 18:38:46 UTC 2012 - os-...@jacraig.com
+
+- Update to 1.4.0:
+  * added webtest.ext - allow to use casperjs
+- Changes from 1.3.6:
+  * fix #42: Check uppercase method.
+  * fix #36: Radio can use forced value.
+  * fix #24: Include test fixtures.
+  * fix bug when trying to print a response which contain some unicode chars
+- Changes from 1.3.5:
+  * fix #39: Add PATCH to acceptable methods.
+- Removed dependency on python-nose and python-dtopt: these are only needed to
+  run tests.
+
+---

Old:

  WebTest-1.3.4.tar.gz

New:

  WebTest-1.4.0.tar.gz



Other differences:
--
++ python-WebTest.spec ++
--- /var/tmp/diff_new_pack.jf4FkE/_old  2012-09-23 21:10:32.0 +0200
+++ /var/tmp/diff_new_pack.jf4FkE/_new  2012-09-23 21:10:32.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-WebTest
-Version:1.3.4
+Version:1.4.0
 Release:0
 Url:http://webtest.pythonpaste.org/
 Summary:Helper to test WSGI applications
@@ -28,8 +28,6 @@
 BuildRequires:  python-devel
 BuildRequires:  python-distribute
 Requires:   python-WebOb
-Requires:   python-dtopt
-Requires:   python-nose
 Provides:   python-webtest = %{version}
 Obsoletes:  python-webtest < %{version}
 %if 0%{?suse_version} && 0%{?suse_version} <= 1110

++ WebTest-1.3.4.tar.gz -> WebTest-1.4.0.tar.gz ++
 3149 lines of diff (skipped)

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



commit python-WebOb for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package python-WebOb for openSUSE:Factory 
checked in at 2012-09-23 21:10:19

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


Package is "python-WebOb", Maintainer is "cth...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/python-WebOb/python-WebOb.changes
2012-06-26 17:26:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-WebOb.new/python-WebOb.changes   
2012-09-23 21:10:24.0 +0200
@@ -1,0 +2,16 @@
+Sat Sep 22 18:48:34 UTC 2012 - os-...@jacraig.com
+
+- Update to 1.2.2:
+  * Fix multiple calls to ``cache_expires()`` not fully overriding the
+previously set headers.
+  * Fix parsing of form submissions where fields have different encodings.
+- Many changes between versions 1.1.1 and 1.2.1.  Please see docs/news.txt
+  for full details.  Major changes include support for only Python 3.2, 2.7,
+  2.6.
+- Removed dependency on python-Tempita and python-wsgiproxy: these are only
+  used in example code in the documentation and not actual runtime reqs.
+- Removed dependency on python-nose: it is only needed to run tests.
+- Removed dependency on python-WebTest: it was removed as a testing
+  requirement in 1.2a1.
+
+---

Old:

  WebOb-1.1.1.zip

New:

  WebOb-1.2.2.zip



Other differences:
--
++ python-WebOb.spec ++
--- /var/tmp/diff_new_pack.V2GKnO/_old  2012-09-23 21:10:25.0 +0200
+++ /var/tmp/diff_new_pack.V2GKnO/_new  2012-09-23 21:10:25.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-WebOb
 #
-# 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
@@ -11,25 +11,22 @@
 # 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-WebOb
-Version:1.1.1
+Version:1.2.2
 Release:0
-License:MIT
 Summary:WSGI request and response object
-Url:http://webob.org/
+License:MIT
 Group:  Development/Languages/Python
+Url:http://webob.org/
 Source: 
http://pypi.python.org/packages/source/W/WebOb/WebOb-%{version}.zip
 BuildRequires:  python-devel
 BuildRequires:  python-distribute
 BuildRequires:  unzip
-Requires:   python-Tempita
-Requires:   python-WebTest
-Requires:   python-nose
-Requires:   python-wsgiproxy
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}
 %py_requires

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



commit post-build-checks for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package post-build-checks for 
openSUSE:Factory checked in at 2012-09-23 21:10:07

Comparing /work/SRC/openSUSE:Factory/post-build-checks (Old)
 and  /work/SRC/openSUSE:Factory/.post-build-checks.new (New)


Package is "post-build-checks", Maintainer is "r...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/post-build-checks/post-build-checks.changes  
2012-09-20 15:48:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.post-build-checks.new/post-build-checks.changes 
2012-09-23 21:10:23.0 +0200
@@ -1,0 +2,6 @@
+Sun Sep 23 09:37:34 UTC 2012 - co...@suse.com
+
+- change the permissions check to use chkstat directly,
+  possibly this check outdated itself though
+
+---



Other differences:
--
++ post-build-checks-1.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/post-build-checks-1.0/checks/08-check-permissions 
new/post-build-checks-1.0/checks/08-check-permissions
--- old/post-build-checks-1.0/checks/08-check-permissions   2012-09-17 
16:41:44.0 +0200
+++ new/post-build-checks-1.0/checks/08-check-permissions   2012-09-23 
11:37:14.0 +0200
@@ -17,16 +17,16 @@
$BUILD_ROOT/etc/sysconfig/security > 
$BUILD_ROOT/etc/sysconfig/security.tmp
 mv $BUILD_ROOT/etc/sysconfig/security 
$BUILD_ROOT/etc/sysconfig/security.bak
 mv $BUILD_ROOT/etc/sysconfig/security.tmp 
$BUILD_ROOT/etc/sysconfig/security
-chroot $BUILD_ROOT /sbin/SuSEconfig --module permissions >/dev/null 2>&1
+chroot $BUILD_ROOT /usr/bin/chkstat --system >/dev/null 2>&1
 chroot $BUILD_ROOT rpm -Vp ${i#$BUILD_ROOT} > 
$BUILD_ROOT/.build_patchrpmcheck2
 mv $BUILD_ROOT/etc/sysconfig/security.bak 
$BUILD_ROOT/etc/sysconfig/security
-chroot $BUILD_ROOT /sbin/SuSEconfig --module permissions >/dev/null 2>&1
+chroot $BUILD_ROOT /usr/bin/chkstat --system >/dev/null 2>&1
 
 umount -n $BUILD_ROOT/proc
 if ! cmp -s $BUILD_ROOT/.build_patchrpmcheck1 
$BUILD_ROOT/.build_patchrpmcheck2; then
echo 
""
echo "package: $NAME"
-   echo "SuSEconfig.permissions modified files that are not properly 
handled!"
+   echo "/usr/bin/chkstat modified files that are not properly handled!"
echo "this will break rpm -V, ask ro for details."
echo "diff for both runs of rpm -V:"
diff -u $BUILD_ROOT/.build_patchrpmcheck1 
$BUILD_ROOT/.build_patchrpmcheck2 | tail -n+4 | grep -v '^ '

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



commit pixz for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package pixz for openSUSE:Factory checked in 
at 2012-09-23 21:09:27

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


Package is "pixz", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/pixz/pixz.changes2012-09-03 
18:56:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.pixz.new/pixz.changes   2012-09-23 
21:09:31.0 +0200
@@ -1,0 +2,7 @@
+Sat Sep 22 16:45:49 UTC 2012 - idon...@suse.com
+
+- Update to git snapshot c5f99bf4b4
+  * Removed pixz-link-pthread.patch, fixed upstream.
+  * 32bit fix
+
+---

Old:

  pixz-bd56f5706c.tar.xz
  pixz-link-pthread.patch

New:

  pixz-c5f99bf4b4.tar.xz



Other differences:
--
++ pixz.spec ++
--- /var/tmp/diff_new_pack.KVg0j1/_old  2012-09-23 21:09:33.0 +0200
+++ /var/tmp/diff_new_pack.KVg0j1/_new  2012-09-23 21:09:33.0 +0200
@@ -16,20 +16,19 @@
 #
 
 
-%define _githash bd56f5706c
+%define _githash c5f99bf4b4
 
 Name:   pixz
-Version:0.0+git20110808
+Version:0.0+git20120918
 Release:0
 Summary:Parallel, indexing version of XZ
 License:BSD-2-Clause
 Group:  Productivity/Archiving/Compression
 Url:https://github.com/vasi/pixz
 Source: pixz-%{_githash}.tar.xz
-Patch:  pixz-link-pthread.patch
 BuildRequires:  libarchive-devel
-BuildRequires:  xz-devel
 BuildRequires:  xz
+BuildRequires:  xz-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -41,8 +40,7 @@
   rather than a collection of smaller blocks. This makes random access to the 
original data impossible.
 
 %prep
-%setup -q -n pixz-%{_githash}
-%patch -p1
+%setup -q -n pixz
 
 %build
 make %{?_smp_mflags}

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



commit pidgin-sipe for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package pidgin-sipe for openSUSE:Factory 
checked in at 2012-09-23 21:09:14

Comparing /work/SRC/openSUSE:Factory/pidgin-sipe (Old)
 and  /work/SRC/openSUSE:Factory/.pidgin-sipe.new (New)


Package is "pidgin-sipe", Maintainer is "gb...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/pidgin-sipe/pidgin-sipe.changes  2012-04-20 
15:19:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.pidgin-sipe.new/pidgin-sipe.changes 
2012-09-23 21:09:17.0 +0200
@@ -1,0 +2,10 @@
+Sun Sep 16 19:06:03 UTC 2012 - zai...@opensuse.org
+
+- Update to version 1.13.3:
+  + Fixed OpenBSD build issue.
+  + Support Lync 2010 meet URLs.
+  + Revert to legacy MSOC protocol on Lync FT invitation.
+  + Fix broken busy->available status switch.
+  + Updated translations.
+
+---

Old:

  pidgin-sipe-1.13.1.tar.bz2

New:

  pidgin-sipe-1.13.3.tar.bz2



Other differences:
--
++ pidgin-sipe.spec ++
--- /var/tmp/diff_new_pack.FUJJTA/_old  2012-09-23 21:09:18.0 +0200
+++ /var/tmp/diff_new_pack.FUJJTA/_new  2012-09-23 21:09:18.0 +0200
@@ -19,14 +19,14 @@
 %define build_telepathy 0
 
 Name:   pidgin-sipe
-Version:1.13.1
+Version:1.13.3
 Release:0
 # FIXME: enable telepathy plugin when it'll be available (not in 1.11.0)
 Summary:Pidgin protocol plugin to connect to MS Office Communicator
 License:GPL-2.0+
 Group:  Productivity/Networking/Instant Messenger
 Url:http://sipe.sourceforge.net/
-Source: 
http://downloads.sourceforge.net/project/sipe/sipe/pidgin-sipe-1.13.1/%{name}-%{version}.tar.bz2
+Source: 
http://downloads.sourceforge.net/project/sipe/sipe/pidgin-sipe-1.13.3/%{name}-%{version}.tar.bz2
 BuildRequires:  gettext-devel
 BuildRequires:  glib2-devel >= 2.12.0
 BuildRequires:  gmime-devel

++ pidgin-sipe-1.13.1.tar.bz2 -> pidgin-sipe-1.13.3.tar.bz2 ++
 2057 lines of diff (skipped)

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



commit package-translations for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package package-translations for 
openSUSE:Factory checked in at 2012-09-23 21:08:53

Comparing /work/SRC/openSUSE:Factory/package-translations (Old)
 and  /work/SRC/openSUSE:Factory/.package-translations.new (New)


Package is "package-translations", Maintainer is "co...@suse.com"

Changes:

--- 
/work/SRC/openSUSE:Factory/package-translations/package-translations.changes
2012-09-23 08:08:48.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.package-translations.new/package-translations.changes
   2012-09-23 21:08:55.0 +0200
@@ -2 +2 @@
-Tue Sep 18 16:13:59 CEST 2012 - 
+Sun Sep 23 16:13:33 CEST 2012 - 
@@ -4 +4 @@
-- automated update on 2012-09-18
+- automated update on 2012-09-23



Other differences:
--
++ package-translations.tar.bz2 ++
Files old/mo/package-translations-de.mo and new/mo/package-translations-de.mo 
differ
Files old/mo/package-translations-ja.mo and new/mo/package-translations-ja.mo 
differ
Files old/mo/package-translations-nl.mo and new/mo/package-translations-nl.mo 
differ
Files old/mo/package-translations-ru.mo and new/mo/package-translations-ru.mo 
differ
Files old/mo/package-translations-zh_CN.mo and 
new/mo/package-translations-zh_CN.mo differ

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



commit mangler for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package mangler for openSUSE:Factory checked 
in at 2012-09-23 21:08:01

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


Package is "mangler", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/mangler/mangler.changes  2012-02-28 
14:14:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.mangler.new/mangler.changes 2012-09-23 
21:08:03.0 +0200
@@ -1,0 +2,18 @@
+Sun Sep 16 14:20:55 UTC 2012 - zai...@opensuse.org
+
+- Update to version 1.2.4:
+  + This minor release fixes a problem affecting users that do not
+have a Logitech G15 keyboard.
+  + Add manpages.
+- Changes of version 1.2.3:
+  + Replaced celt with opus libraries.
+  + Linkified comments and URLS in the user information for android
+version.
+  + Fixed chat scrolling in android.
+  + Fixed private chat window send button upon a reopened session.
+- Add pkgconfig(opus) BuildRequires, enable support for opus in
+  12.3 and newer.
+- Remove libcelt-devel BuildRequires, it has been obsoleted.
+- Re-add gdk-pixbuf-loader-rsvg BuildRequires, build fails if not.
+
+---

Old:

  mangler-1.2.2.tar.bz2

New:

  mangler-1.2.4.tar.bz2



Other differences:
--
++ mangler.spec ++
--- /var/tmp/diff_new_pack.QDXR0v/_old  2012-09-23 21:08:04.0 +0200
+++ /var/tmp/diff_new_pack.QDXR0v/_new  2012-09-23 21:08:04.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mangler
-Version:1.2.2
+Version:1.2.4
 Release:0
 Summary:Ventrilo Compatible Client for Linux
 License:GPL-3.0+
@@ -28,13 +28,16 @@
 BuildRequires:  dbus-1-glib-devel
 BuildRequires:  espeak-devel
 BuildRequires:  gcc-c++
+BuildRequires:  gdk-pixbuf-loader-rsvg
 BuildRequires:  gtkmm2-devel
-BuildRequires:  libcelt-devel
 BuildRequires:  libgsm-devel
 BuildRequires:  libpulse-devel
 BuildRequires:  speex-devel
 BuildRequires:  update-desktop-files
 BuildRequires:  xosd-devel
+%if 0%{?suse_version} > 1220
+BuildRequires:  pkgconfig(opus) >= 0.9.11
+%endif 
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xi)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -88,6 +91,7 @@
 %{_bindir}/mangler
 %{_datadir}/applications/mangler.desktop
 %{_datadir}/pixmaps/mangler_logo.svg
+%{_mandir}/man1/%{name}.1%{?ext_man}
 
 %files -n libventrilo3-0
 %defattr (-,root,root)

++ mangler-1.2.2.tar.bz2 -> mangler-1.2.4.tar.bz2 ++
 196418 lines of diff (skipped)

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



commit libvpx for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package libvpx for openSUSE:Factory checked 
in at 2012-09-23 21:07:21

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


Package is "libvpx", Maintainer is "sts...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/libvpx/libvpx.changes2011-11-29 
17:16:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.libvpx.new/libvpx.changes   2012-09-23 
21:07:23.0 +0200
@@ -1,0 +2,28 @@
+Tue Sep 18 08:50:29 UTC 2012 - dims...@opensuse.org
+
+- Update to version 1.1.0:
+  + Enhancements:
+- Adds a motion compensated temporal denoiser to the encoder
+- support for new compilers and platforms were added
+- Changing resolution with vpx_codec_enc_config_set() is now
+  supported
+  + Improved performance
+  + Bugs fixed
+- Changes from version 1.0.0:
+  + Enhancements:
+- This release introduces several substantial new features to
+  the encoder, of particular interest to real time streaming
+   applications.
+  + Improved performance
+  + Encoder quality in the single stream case is consistent with
+the Cayuga release.
+  + Bug fixes
+- Rename libvpx0 to libvpx1, following upstreams soname bump (also
+  in baselibs.conf)
+- Add pkg-config BuildRequires: as we provide a .pc file, we need
+  pkg-config to be able to create the pkgconfig() provides
+  (automatically).
+- libvpx-configure-add-armv7-tgt-isa.patch currently disabled:
+  needs more work.
+
+---

Old:

  libvpx-v0.9.7-p1.tar.bz2

New:

  libvpx-v1.1.0.tar.bz2



Other differences:
--
++ libvpx.spec ++
--- /var/tmp/diff_new_pack.r1fKQi/_old  2012-09-23 21:07:24.0 +0200
+++ /var/tmp/diff_new_pack.r1fKQi/_new  2012-09-23 21:07:24.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libvpx
 #
-# 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,20 @@
 #
 
 
-
 Name:   libvpx
-Version:0.9.7
-Release:1
-%define patchlevel -p1
-License:BSD-3-Clause ; GPL-2.0+
+Version:1.1.0
+Release:0
 Summary:VP8 codec library
-Url:http://www.webmproject.org/
+License:BSD-3-Clause ; GPL-2.0+
 Group:  Productivity/Multimedia/Other
-Source0:
http://webm.googlecode.com/files/%{name}-v%{version}%{patchlevel}.tar.bz2
+Url:http://www.webmproject.org/
+Source0:http://webm.googlecode.com/files/%{name}-v%{version}.tar.bz2
 # PATCH-FIX-UPSTREAM libvpx-define-config_pic.patch dims...@opensuse.org -- 
For older compilers, CONFIG_PIC need to be defined.
 Patch0: libvpx-define-config_pic.patch
 Patch1: libvpx-configure-add-armv7-tgt-isa.patch
 Patch2: libvpx-configure-add-s390.patch
+# Needed to be able to create pkgconfig() provides.
+BuildRequires:  pkg-config
 BuildRequires:  yasm
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -42,8 +42,8 @@
 The WebM file structure is based on the Matroska container.
 
 %package -n vpx-tools
-License:BSD-3-Clause ; GPL-2.0+
 Summary:VP8 codec library - Utilities
+License:BSD-3-Clause ; GPL-2.0+
 Group:  Productivity/Multimedia/Other
 
 %description -n vpx-tools
@@ -56,13 +56,13 @@
 and audio streams compressed with the Vorbis audio codec.
 The WebM file structure is based on the Matroska container.
 
-%package -n %{name}0
+%package -n %{name}1
 
-License:BSD-3-Clause
 Summary:VP8 codec library
+License:BSD-3-Clause
 Group:  System/Libraries
 
-%description -n %{name}0
+%description -n %{name}1
 WebM is an open, royalty-free, media file format designed for the web.
 
 WebM defines the file container structure, video and audio formats.
@@ -71,10 +71,10 @@
 The WebM file structure is based on the Matroska container.
 
 %package devel
-License:BSD-3-Clause ; GPL-2.0+
 Summary:VP8 codec library - Development headers
+License:BSD-3-Clause ; GPL-2.0+
 Group:  Development/Languages/C and C++
-Requires:   %{name}0 = %{version}
+Requires:   %{name}1 = %{version}
 
 %description devel
 Development headers and library
@@ -87,9 +87,9 @@
 The WebM file structure is based on the Matroska container.
 
 %prep
-%setup -q -n %name-v%version%patchlevel
+%setup -q -n %name-v%version
 %patch0 -p1
-%patch1 -p1
+#patch1 -p1
 %patch2
 
 %build
@@ -122,22 +122,21 @@
 %clean
 rm -rf %{buildroot}
 
-%post -n %{

commit ksh for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package ksh for openSUSE:Factory checked in 
at 2012-09-23 21:06:29

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


Package is "ksh", Maintainer is "wer...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/ksh/ksh.changes  2012-07-30 20:31:29.0 
+0200
+++ /work/SRC/openSUSE:Factory/.ksh.new/ksh.changes 2012-09-23 
21:06:33.0 +0200
@@ -1,0 +2,5 @@
+Tue Sep 18 14:18:09 UTC 2012 - wer...@suse.de
+
+- Add polling builtin patch (bnc #779888)
+
+---

New:

  astksh_builtin_poll20120806_001.diff



Other differences:
--
++ ksh.spec ++
--- /var/tmp/diff_new_pack.Q46vEQ/_old  2012-09-23 21:06:35.0 +0200
+++ /var/tmp/diff_new_pack.Q46vEQ/_new  2012-09-23 21:06:35.0 +0200
@@ -109,6 +109,7 @@
 Patch24:ksh93-builtin.dif
 Patch25:ksh93-vmleak.dif
 Patch26:ksh93-read-dont-ignore-esc.dif
+Patch27:astksh_builtin_poll20120806_001.diff
 Patch42:ksh-locale.patch
 
 %description
@@ -191,6 +192,7 @@
 %patch24
 %patch25
 %patch26
+%patch27
 
 %build
   #

++ astksh_builtin_poll20120806_001.diff ++
 893 lines (skipped)

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



commit java-1_7_0-openjdk for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package java-1_7_0-openjdk for 
openSUSE:Factory checked in at 2012-09-23 21:05:45

Comparing /work/SRC/openSUSE:Factory/java-1_7_0-openjdk (Old)
 and  /work/SRC/openSUSE:Factory/.java-1_7_0-openjdk.new (New)


Package is "java-1_7_0-openjdk", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/java-1_7_0-openjdk/java-1_7_0-openjdk.changes
2012-09-11 11:22:46.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.java-1_7_0-openjdk.new/java-1_7_0-openjdk.changes   
2012-09-23 21:05:51.0 +0200
@@ -1,0 +2,10 @@
+Tue Sep 18 10:11:57 UTC 2012 - mvysko...@suse.com
+
+- add the optional jamvm support 
+  * running build --with jamvm enables it
+- add an initial support for build of older releases
+  * make some buildrequires dependant on suse_version
+  * workaround older zlib w/o pkgconfig
+  * fix cacerts installation on pre-11.3
+
+---

New:

  icedtea-2.3.2-fix-extract-jamvm-dependency.patch
  jamvm-e70f2450890b82c37422616cc85e1a23385f03cd.tar.gz



Other differences:
--
++ java-1_7_0-openjdk.spec ++
--- /var/tmp/diff_new_pack.hw7ofo/_old  2012-09-23 21:05:54.0 +0200
+++ /var/tmp/diff_new_pack.hw7ofo/_new  2012-09-23 21:05:54.0 +0200
@@ -28,8 +28,13 @@
 %endif
 %endif
 
+%bcond_with jamvm
+
+# turn zero on non jit arches by default, unless jamvm has been specified
 %ifnarch %{jit_arches}
-%define _with_zero 1
+%if ! %{with jamvm}
+%define _with_zero --with-zero
+%endif
 %endif
 %bcond_with zero
 
@@ -145,6 +150,7 @@
 Source10:   
http://icedtea.classpath.org/hg/release/icedtea7-forest-2.3/langtools/archive/867d5041bee6.tar.gz
 Source11:   
http://icedtea.classpath.org/hg/release/icedtea7-forest-2.1/hotspot/archive/ea39d76b3bde.tar.gz
 Source12:   
http://icedtea.classpath.org/hg/release/icedtea7-forest-2.1/hotspot/archive/47a867dd3005.tar.gz
+Source13:   
http://icedtea.classpath.org/download/drops/jamvm/jamvm-e70f2450890b82c37422616cc85e1a23385f03cd.tar.gz
 
 #Source1000: java-1_7_0-openjdk-rpmlintrc
 # those properties are for opeSUSE only
@@ -176,10 +182,6 @@
 # OpenJDK specific patches
 #
 
-# DROP: included in icedtea tarball
-# Add rhino support
-# Patch100:   rhino.patch
-
 # Type fixing for s390
 Patch101:   java-1.7.0-openjdk-bitmap.patch
 Patch102:   java-1.7.0-openjdk-size_t.patch
@@ -205,6 +207,9 @@
 Patch1003:  java-1_7_0-openjdk-add-memory-limit.patch
 
 Patch1004:  java-1_7_0-openjdk-zero-annotate-aborting-functions-zero.patch
+# PATCH-FIX-OPENSUSE: fix the dependency issues on jamvm builds
+# sent to distro-pkg-dev
+Patch1005:  icedtea-2.3.2-fix-extract-jamvm-dependency.patch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -221,13 +226,20 @@
 BuildRequires:  libjpeg-devel
 BuildRequires:  liblcms2-devel
 BuildRequires:  libpng-devel
+%if %{with jamvm}
+BuildRequires:  libtool
+%endif
+%if 0%{?suse_version} >= 1220
 BuildRequires:  libxslt-tools
+%endif
 BuildRequires:  rhino
 BuildRequires:  wget
 BuildRequires:  xorg-x11
 BuildRequires:  xorg-x11-devel
 BuildRequires:  xorg-x11-proto-devel
+%if 0%{?suse_version} >= 1220
 BuildRequires:  xprop
+%endif
 #BuildRequires:  xalan-j2
 # make sure to use bootstrap requires of ant
 #BuildRequires:  xerces-j2-bootstrap
@@ -438,6 +450,10 @@
 are provided by OpenJDK 7.
 
 %prep
+%if %{with jamvm} && %{with zero}
+echo "ERROR: use either --with jamvm either--with zero, both are not 
supported!" >&2
+exit 1
+%endif
 %setup -q -n icedtea-%{icedtea_version}
 %setup -q -n icedtea-%{icedtea_version} -T -D -a 3
 %setup -q -n icedtea-%{icedtea_version} -T -D -a 1
@@ -449,6 +465,7 @@
 %patch1000 -p1
 %patch1003 -p1
 
+%patch1005 -p1
 %build
 export LANG=C
 unset JAVA_HOME
@@ -457,6 +474,12 @@
 export NUM_PROC=`/usr/bin/getconf _NPROCESSORS_ONLN 2> /dev/null || :`
 export NUM_PROC=${NUM_PROC:-1}
 
+# handle zlib packages without pkg-config file
+%if 0%{?suse_version} <= 1130
+export ZLIB_CFLAGS=" "
+export ZLIB_LIBS="-L/%{_lib} -lz"
+%endif
+
 %{configure} \
 --with-abs-install-dir=%{_jvmdir}/%{sdkdir} \
 %ifnarch %{arm}
@@ -475,6 +498,13 @@
 %if %{with zero}
 --enable-zero \
 %endif
+%if %{with jamvm}
+--enable-jamvm \
+--with-jamvm-src-zip=%{SOURCE13} \
+%endif
+%if 0%{?suse_version} <= 1110
+--disable-system-gio \
+%endif
 --with-openjdk-src-zip=%{SOURCE5} \
 --with-corba-src-zip=%{SOURCE6} \
 --with-jaxp-src-zip=%{SOURCE7} \
@@ -711,9 +741,7 @@
 %fdupes -s $RPM_BUILD_ROOT/%{_jvmdir}/%{sdkdir}/demo
 %fdupes -s $RPM_BUILD_ROOT%{_javadocdir}/%{sdklnk}
 
-%if ! %{suse_version} >= 1130
-# touch %{buildroot}/%{_jvmdir}/%{jredir}/lib/security/cacert

commit inkscape for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package inkscape for openSUSE:Factory 
checked in at 2012-09-23 21:05:21

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


Package is "inkscape", Maintainer is "gnome-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/inkscape/inkscape.changes2012-09-14 
12:26:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.inkscape.new/inkscape.changes   2012-09-23 
21:05:23.0 +0200
@@ -1,0 +2,6 @@
+Fri Sep 14 15:49:03 UTC 2012 - dmuel...@suse.com
+
+- Reduce memory usage during linking on ARM to let the build
+  succeed.
+
+---



Other differences:
--
++ inkscape.spec ++
--- /var/tmp/diff_new_pack.lECKNx/_old  2012-09-23 21:05:24.0 +0200
+++ /var/tmp/diff_new_pack.lECKNx/_new  2012-09-23 21:05:24.0 +0200
@@ -165,8 +165,13 @@
 %patch4 -p1
 
 %build
-export CFLAGS="%{optflags} -fno-strict-aliasing"
-export CXXFLAGS="%{optflags} -fno-strict-aliasing"
+RPM_OPT_FLAGS="%{optflags}"
+%ifarch %arm
+RPM_OPT_FLAGS="${RPM_OPT_FLAGS/-g/}"
+export LDFLAGS+="-Wl,--no-keep-memory -Wl,--reduce-memory-overheads"
+%endif
+export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
+export CXXFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
 # We're building without perl support for now...
 %configure\
--with-python\

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



commit icc_examin for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package icc_examin for openSUSE:Factory 
checked in at 2012-09-23 21:04:56

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


Package is "icc_examin", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/icc_examin/icc_examin.changes2012-03-22 
12:33:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.icc_examin.new/icc_examin.changes   
2012-09-23 21:04:57.0 +0200
@@ -1,0 +2,5 @@
+Thu Sep 20 08:46:57 UTC 2012 - co...@suse.com
+
+- add explicit buildrequire on pkgconfig(glu)
+
+---



Other differences:
--
++ icc_examin.spec ++
--- /var/tmp/diff_new_pack.XiJM1v/_old  2012-09-23 21:04:57.0 +0200
+++ /var/tmp/diff_new_pack.XiJM1v/_new  2012-09-23 21:04:57.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package icc_examin
 #
-# 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
@@ -22,11 +22,12 @@
 %define pixmapdir   /usr/share/pixmaps
 %define desktopdir  /usr/share/applications
 Summary:ICC profile viewer and colour visualisation
-Requires:   oyranos-ui-fltk oyranos-monitor
-
-Name:   icc_examin
 License:(GPL-2.0+ and SUSE-FLTK) and BSD-2-Clause
 Group:  Productivity/Graphics/Other
+Requires:   oyranos-monitor
+Requires:   oyranos-ui-fltk
+
+Name:   icc_examin
 Url:http://www.oyranos.org/icc-examin
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -52,9 +53,9 @@
 BuildRequires:  gcc-c++
 BuildRequires:  gettext
 BuildRequires:  gettext-devel
+BuildRequires:  libXcm-devel
 BuildRequires:  libjpeg-devel
 BuildRequires:  libpng-devel
-BuildRequires:  libXcm-devel
 BuildRequires:  pkgconfig
 BuildRequires:  zlib-devel
 %endif
@@ -63,12 +64,15 @@
 Recommends: oyranos-monitor-nvidia freefont
 BuildRequires:  Mesa
 BuildRequires:  Mesa-devel
+BuildRequires:  liblcms-devel
+BuildRequires:  update-desktop-files
+BuildRequires:  xdg-utils
+BuildRequires:  xorg-x11
+BuildRequires:  xorg-x11-devel
 BuildRequires:  xorg-x11-fonts-devel
 BuildRequires:  xorg-x11-libICE
 BuildRequires:  xorg-x11-libICE-devel
 BuildRequires:  xorg-x11-libSM
-BuildRequires:  xorg-x11
-BuildRequires:  xorg-x11-devel
 BuildRequires:  xorg-x11-libSM-devel
 BuildRequires:  xorg-x11-libX11
 BuildRequires:  xorg-x11-libX11-devel
@@ -102,9 +106,10 @@
 BuildRequires:  xorg-x11-proto-devel
 BuildRequires:  xorg-x11-util-devel
 BuildRequires:  xorg-x11-xtrans-devel
-BuildRequires:  liblcms-devel
-BuildRequires:  update-desktop-files
-BuildRequires:  xdg-utils
+%endif
+
+%if 0%{?suse_version} > 1130
+BuildRequires:  pkgconfig(glu)
 %endif
 
 %if 0%{?mandriva_version} > 0

-- 
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-09-23 Thread h_root
Hello community,

here is the log from the commit of package gwibber for openSUSE:Factory checked 
in at 2012-09-23 21:04:39

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-09-04 
12:54:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.gwibber.new/gwibber.changes 2012-09-23 
21:04:44.0 +0200
@@ -0,0 +1,7 @@
+
+Wed Sep 12 22:19:45 UTC 2012 - malcolmle...@opensuse.org
+
+- Add Requires typelib-1_0-Wnck-3_0 and typelib-1_0-WebKit-3_0 as a
+  temporary workaround for gwibber-accounts does not start on
+  GNOME 3 (bnc#780059).
+



Other differences:
--
++ gwibber.spec ++
--- /var/tmp/diff_new_pack.rpovZf/_old  2012-09-23 21:04:45.0 +0200
+++ /var/tmp/diff_new_pack.rpovZf/_new  2012-09-23 21:04:45.0 +0200
@@ -56,6 +56,9 @@
 Requires:   python-oauth
 Requires:   python-simplejson
 Requires:   python-xdg
+# FIXME Temporary workaround for bnc#780059 -- gwibber-accounts does not start 
on GNOME 3
+Requires:   typelib-1_0-WebKit-3_0
+Requires:   typelib-1_0-Wnck-3_0
 Recommends: %{name}-lang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %glib2_gsettings_schema_requires

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



commit grub2 for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package grub2 for openSUSE:Factory checked 
in at 2012-09-23 21:04:15

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


Package is "grub2", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/grub2/grub2.changes  2012-08-31 
09:28:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.grub2.new/grub2.changes 2012-09-23 
21:04:17.0 +0200
@@ -1,0 +2,13 @@
+Wed Sep 19 18:54:34 UTC 2012 - arvidj...@gmail.com
+
+- add 20_memtest86+ (bnc#780622) 
+
+---
+Tue Sep 18 09:26:29 UTC 2012 - mch...@suse.com
+
+- Fix un-bootable grub2 testing entry in grub's menu.lst (bnc#779370) 
+- Not add new grub2 testing entry if it's not found in menu.lst
+- Update grub2 stuff and config if there's grub2 entry in menu.lst
+- Check for current bootloader as update-bootloader acts on it
+
+---

New:

  20_memtest86+



Other differences:
--
++ grub2.spec ++
--- /var/tmp/diff_new_pack.lHZNVI/_old  2012-09-23 21:04:18.0 +0200
+++ /var/tmp/diff_new_pack.lHZNVI/_new  2012-09-23 21:04:18.0 +0200
@@ -78,6 +78,7 @@
 # rsync -Lrtvz  translationproject.org::tp/latest/grub/ po
 Source5:translations-20120622.tar.xz
 Source6:grub2-once
+Source7:20_memtest86+
 Source1000: PATCH_POLICY
 Patch0: grub2-correct-font-path.patch
 Patch1: rename-grub-info-file-to-grub2.patch
@@ -254,6 +255,9 @@
 # Script that makes part of grub.cfg persist across updates
 install -m 755 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/grub.d/
 
+# Script to generate memtest86+ menu entry
+install -m 755 %{SOURCE7} $RPM_BUILD_ROOT%{_sysconfdir}/grub.d/
+
 # Ghost config file
 install -d $RPM_BUILD_ROOT/boot/%{name}
 touch $RPM_BUILD_ROOT/boot/%{name}/grub.cfg
@@ -272,39 +276,93 @@
 /sbin/install-info %{_infodir}/grub-dev.info %{_infodir}/dir || :
 /sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir || :
 
-mkdir -p /boot/%{name}/ 2>/dev/null || true
-# Determine the partition with /boot
-BOOT_PARTITION=$(df -h /boot |(read; awk '{print $1; exit}'))
-# Generate core.img, but don't let it be installed in boot sector
-%{name}-install --grub-setup=/bin/true $BOOT_PARTITION || true
-exec >/dev/null 2>&1
-# Remove stale menu.lst entries
-/sbin/update-bootloader --remove --image /boot/%{name}/core.img --name="GNU 
GRUB 2" || true
-# Add core.img as multiboot kernel to GRUB Legacy menu
-/sbin/update-bootloader --add --image /boot/%{name}/core.img --name="GNU GRUB 
2" || true
-/sbin/update-bootloader --refresh || true
+# To check by current loader settings
+if [ -f %{_sysconfdir}/sysconfig/bootloader ]; then
+  . %{_sysconfdir}/sysconfig/bootloader
+fi
+
+# If the grub is the current loader, we'll handle the grub2 testing entry
+if [ "x${LOADER_TYPE}" = "xgrub" ]; then
+
+  exec >/dev/null 2>&1
+
+  # check if entry for grub2's core.img exists in the config
+  # if yes, we will correct obsoleted path and update grub2 stuff and config 
to make it work
+  # if no, do nothing
+  if [ -f /boot/grub/menu.lst ]; then
+
+# If grub config contains obsolete core.img path, remove and use the new 
one
+if /usr/bin/grep -l "^\s*kernel\s*.*/boot/%{name}/core.img" 
/boot/grub/menu.lst; then
+  /sbin/update-bootloader --remove --image /boot/%{name}/core.img || true
+  /sbin/update-bootloader --add --image /boot/%{name}/i386-pc/core.img 
--name "GNU GRUB 2" || true
+fi
+
+# Install grub2 stuff and config to make the grub2 testing entry to work 
with updated version
+if /usr/bin/grep -l "^\s*kernel\s*.*/boot/%{name}/i386-pc/core.img" 
/boot/grub/menu.lst; then
+  # Determine the partition with /boot
+  BOOT_PARTITION=$(df -h /boot |(read; awk '{print $1; exit}'))
+  # Generate core.img, but don't let it be installed in boot sector
+  %{name}-install --grub-setup=/bin/true $BOOT_PARTITION || true
+  # Create a working grub2 config, otherwise that entry is un-bootable
+  /usr/sbin/grub2-mkconfig -o /boot/%{name}/grub.cfg
+fi
+  fi
+
+elif [ "x${LOADER_TYPE}" = "xgrub2" ]; then
+
+  # It's enought to call update-bootloader --refesh to install grub2 and 
update it's config
+  /sbin/update-bootloader --refresh || true
+fi
 
 %ifarch %{efi}
 
 %post efi
 /sbin/install-info %{_infodir}/grub-dev.info %{_infodir}/dir || :
 /sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir || :
+
+# To check by current loader settings
+if [ -f %{_sysconfdir}/sysconfig/bootloader ]; then
+  . %{_sysconfdir}/etc/sysconfig/bootloader
+fi
+if [ "x${LOADER_TYPE}" = "xgrub2-efi" ]; then
+
+  # It's enought to 

commit gramps for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package gramps for openSUSE:Factory checked 
in at 2012-09-23 21:04:01

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


Package is "gramps", Maintainer is "j...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/gramps/gramps.changes2012-06-05 
15:31:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.gramps.new/gramps.changes   2012-09-23 
21:04:03.0 +0200
@@ -1,0 +2,11 @@
+Sun Sep 16 14:01:38 UTC 2012 - zai...@opensuse.org
+
+- Update to version 3.4.1:
+  + Fixed error in export to xml of family order.
+  + Fixed crash in windows after some use due to too much terminal
+output.
+  + Some platform-specific fixes (Windows, OSX).
+  + Misc bug fixes.
+  + Updated translations.
+
+---

Old:

  gramps-3.4.0.tar.gz

New:

  gramps-3.4.1.tar.gz



Other differences:
--
++ gramps.spec ++
--- /var/tmp/diff_new_pack.12jczi/_old  2012-09-23 21:04:05.0 +0200
+++ /var/tmp/diff_new_pack.12jczi/_new  2012-09-23 21:04:05.0 +0200
@@ -18,14 +18,14 @@
 
 
 Name:   gramps
-Version:3.4.0
+Version:3.4.1
 Release:0
 # FIXME: missing recommends because of missing packages: python-exiv2, 
osm-gps-map
 Summary:Genealogical Research Software
 License:GPL-2.0+
 Group:  Productivity/Other
 Url:http://www.gramps-project.org/
-Source: 
http://downloads.sourceforge.net/project/gramps/Stable/3.4.0/%{name}-%{version}.tar.gz
+Source: 
http://downloads.sourceforge.net/project/gramps/Stable/3.4.1/%{name}-%{version}.tar.gz
 BuildRequires:  fdupes
 BuildRequires:  intltool
 # For directory ownership
@@ -102,6 +102,7 @@
 %lang(nl) %{_mandir}/nl/man1/%{name}.*
 %lang(pl) %{_mandir}/pl/man1/%{name}.*
 %lang(sv) %{_mandir}/sv/man1/%{name}.*
+%lang(pt_BR) %{_mandir}/pt_BR/man1/%{name}.*
 # man doesn't provide those directories, so we have to own them
 %lang(cs) %dir %{_mandir}/cs
 %lang(cs) %dir %{_mandir}/cs/man1
@@ -111,6 +112,8 @@
 %lang(pl) %dir %{_mandir}/pl/man1
 %lang(sv) %dir %{_mandir}/sv
 %lang(sv) %dir %{_mandir}/sv/man1
+%lang(pt_BR) %dir %{_mandir}/pt_BR
+%lang(pt_BR) %dir %{_mandir}/pt_BR/man1
 
 %files lang -f %{name}.lang
 

++ gramps-3.4.0.tar.gz -> gramps-3.4.1.tar.gz ++
/work/SRC/openSUSE:Factory/gramps/gramps-3.4.0.tar.gz 
/work/SRC/openSUSE:Factory/.gramps.new/gramps-3.4.1.tar.gz differ: char 5, line 
1

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



commit gparted for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package gparted for openSUSE:Factory checked 
in at 2012-09-23 21:03:38

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


Package is "gparted", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/gparted/gparted.changes  2012-09-15 
17:27:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.gparted.new/gparted.changes 2012-09-23 
21:03:40.0 +0200
@@ -1,0 +2,8 @@
+Sun Sep 16 17:52:46 UTC 2012 - zai...@opensuse.org
+
+- Update to version 0.13.1:
+  + Fix failure creating read-only view of rescued file systems
+(bgo#680740).
+  + Updated translations.
+
+---

Old:

  gparted-0.13.0.tar.bz2

New:

  gparted-0.13.1.tar.bz2



Other differences:
--
++ gparted.spec ++
--- /var/tmp/diff_new_pack.0cbkYb/_old  2012-09-23 21:03:42.0 +0200
+++ /var/tmp/diff_new_pack.0cbkYb/_new  2012-09-23 21:03:42.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   gparted
-Version:0.13.0
+Version:0.13.1
 Release:0
 Summary:Gnome Partition Editor
 License:GPL-2.0
 Group:  System/Filesystems
 Url:http://gparted.sourceforge.net/
-Source0:
http://downloads.sourceforge.net/project/gparted/gparted/gparted-0.13.0/%{name}-%{version}.tar.bz2
+Source0:
http://downloads.sourceforge.net/project/gparted/gparted/gparted-0.13.1/%{name}-%{version}.tar.bz2
 BuildRequires:  e2fsprogs-devel
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++

++ gparted-0.13.0.tar.bz2 -> gparted-0.13.1.tar.bz2 ++
 14412 lines of diff (skipped)

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



commit gle-graphics for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package gle-graphics for openSUSE:Factory 
checked in at 2012-09-23 19:34:27

Comparing /work/SRC/openSUSE:Factory/gle-graphics (Old)
 and  /work/SRC/openSUSE:Factory/.gle-graphics.new (New)


Package is "gle-graphics", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/gle-graphics/gle-graphics.changes
2012-07-24 17:21:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.gle-graphics.new/gle-graphics.changes   
2012-09-23 19:34:29.0 +0200
@@ -1,0 +2,5 @@
+Tue Sep 18 13:35:11 UTC 2012 - idon...@suse.com
+
+- Add explicit glu dependency 
+
+---



Other differences:
--
++ gle-graphics.spec ++
--- /var/tmp/diff_new_pack.08om1T/_old  2012-09-23 19:34:30.0 +0200
+++ /var/tmp/diff_new_pack.08om1T/_new  2012-09-23 19:34:30.0 +0200
@@ -50,6 +50,7 @@
 BuildRequires:  ncurses-devel
 BuildRequires:  perl
 BuildRequires:  texlive-latex
+BuildRequires:  pkgconfig(glu)
 %if %suse_version > 1220
 BuildRequires:  texlive-amsfonts
 BuildRequires:  texlive-cm-super


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



commit geeqie for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package geeqie for openSUSE:Factory checked 
in at 2012-09-23 19:33:46

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


Package is "geeqie", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/geeqie/geeqie.changes2011-09-28 
15:24:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.geeqie.new/geeqie.changes   2012-09-23 
19:33:48.0 +0200
@@ -1,0 +2,19 @@
+Sun Sep 16 13:05:05 UTC 2012 - zai...@opensuse.org
+
+- Update to version 1.1:
+  + Support for stereoscopic images.
+  + input: side-by-side (JPS) and MPO format.
+  + output: single image, anaglyph, SBS, mirror, SBS half size
+(3DTV).
+  + Custom tiff loader - better handling of large tiff files.
+  + Rewritten file grouping.
+- Add libjpeg-devel and libtiff-devel BuildReqiuires, support jpg,
+  and tiff loader.
+- Add FIXME entry for champlain support.
+- Pass enable-gps to configure, even if this is not taken into
+  accout at the moment, libchamplain is not an active
+  BuildRequires. 
+- Change configure switch --with-helpdir to --with-html dir,
+  upstream does not support --with-helpdir anymore.
+
+---

Old:

  geeqie-1.0.tar.gz

New:

  geeqie-1.1.tar.gz



Other differences:
--
++ geeqie.spec ++
--- /var/tmp/diff_new_pack.vitzoe/_old  2012-09-23 19:33:49.0 +0200
+++ /var/tmp/diff_new_pack.vitzoe/_new  2012-09-23 19:33:49.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package geeqie
 #
-# 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,19 +16,23 @@
 #
 
 
-
 Name:   geeqie
-Version:1.0
-Release:1
-License:GPL-2.0+
+Version:1.1
+Release:0
 Summary:Lightweight Gtk+ based image viewer
-Url:http://geeqie.sourceforge.net/
+License:GPL-2.0+
 Group:  Productivity/Graphics/Viewers
-Source: %{name}-%{version}.tar.gz
+## FIXME - Check on version update if support for the libchamplain we have in 
factory is finaly supported, last checked version 1.1
+Url:http://geeqie.sourceforge.net/
+Source: 
http://downloads.sourceforge.net/project/geeqie/geeqie/geeqie-1.1/%{name}-%{version}.tar.gz
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  gnome-doc-utils
 BuildRequires:  intltool
+## FIXME - disabled since the version we have in factory is not supportet by 
current version 1.1
+# BuildRequires:  libchamplain-devel
+BuildRequires:  libjpeg-devel
+BuildRequires:  libtiff-devel
 BuildRequires:  lirc-devel
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(exiv2) >= 0.11
@@ -50,8 +54,9 @@
 %build
 %configure \
 --enable-lirc \
+--enable-gps \
 --with-readmedir=%{_defaultdocdir}/%{name} \
---with-helpdir=%{_defaultdocdir}/%{name}/html
+--with-htmldir=%{_defaultdocdir}/%{name}/html
 make %{?_smp_mflags}
 
 %install

++ geeqie-1.0.tar.gz -> geeqie-1.1.tar.gz ++
 71298 lines of diff (skipped)

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



commit gcstar for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package gcstar for openSUSE:Factory checked 
in at 2012-09-23 19:33:36

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


Package is "gcstar", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/gcstar/gcstar.changes2011-10-04 
18:10:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.gcstar.new/gcstar.changes   2012-09-23 
19:33:38.0 +0200
@@ -1,0 +2,27 @@
+Sun Sep 16 12:03:59 UTC 2012 - zai...@opensuse.org
+
+- Update to version 1.7.0:
+  + User interface changes:
+- All the settings for the current type of list can be changed
+  directly below the list.
+- It's now possible to define default values for the fields
+  when adding a new item to a collection.
+- New menu to show/hide menu, tool and status bars.
+- Slight animations have been added in image mode.
+- A popup is displayed in image mode to show a summary of the
+  item.
+  + Bugs fixed:
+- When saving an item which date is the current one.
+- The list of saved searches in toolbar was not reset when
+  displaying all collection items.
+- Ranges were not handled correctly when searching.
+- With collections of video games, the units field was not
+  hidden if user chose to hide file size.
+- In image mode, some items were not displayed correctly when
+  grouping.
+- Fixed some website plugins.
+  + Updated translations.
+- Drop hack to kill backupfiles previously found in tarball. Fixed
+  upstream.
+
+---

Old:

  gcstar-1.6.2.tar.gz

New:

  gcstar-1.7.0.tar.gz



Other differences:
--
++ gcstar.spec ++
--- /var/tmp/diff_new_pack.8NCDYv/_old  2012-09-23 19:33:42.0 +0200
+++ /var/tmp/diff_new_pack.8NCDYv/_new  2012-09-23 19:33:42.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gcstar
 #
-# 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,35 +16,34 @@
 #
 
 
-
 Name:   gcstar
-Version:1.6.2
-Release:1
-License:GPL-2.0
+Version:1.7.0
+Release:0
 Summary:Application to manage collections
-Url:http://www.gcstar.org/
+License:GPL-2.0
 Group:  Productivity/Office/Management
+Url:http://www.gcstar.org/
 Source0:http://download.gna.org/gcstar/%{name}-%{version}.tar.gz
 # PATCH-FIX-OPENSUSE gcstar-fix-desktop.patch vu...@opensuse.org -- Fix 
desktop file for openSUSE
 Patch0: gcstar-fix-desktop.patch
 BuildRequires:  fdupes
 BuildRequires:  perl
+BuildRequires:  perl-libwww-perl
 BuildRequires:  perl(Crypt::SSLeay)
 BuildRequires:  perl(Gtk2) >= 1.054
 BuildRequires:  perl(HTML::Parser)
 BuildRequires:  perl(XML::Parser)
 BuildRequires:  perl(XML::Simple)
-BuildRequires:  perl-libwww-perl
 # We need the %%mime_database_* macros
 BuildRequires:  shared-mime-info
 BuildRequires:  update-desktop-files
 Requires:   perl
+Requires:   perl-libwww-perl
 Requires:   perl(Crypt::SSLeay)
 Requires:   perl(Gtk2) >= 1.054
 Requires:   perl(HTML::Parser)
 Requires:   perl(XML::Parser)
 Requires:   perl(XML::Simple)
-Requires:   perl-libwww-perl
 Recommends: perl(Archive::Zip)
 Recommends: perl(GD)
 Recommends: perl(GD::Graph::area)
@@ -87,8 +86,6 @@
 install -m 644 share/applications/gcstar.xml 
%{buildroot}%{_datadir}/mime/packages
 mkdir -p %{buildroot}%{_datadir}/applications
 %suse_update_desktop_file -i gcstar Database
-# A hack around killing backup files found in the tarball. Remove when failing.
-rm %{buildroot}/usr/lib/gcstar/GCPlugins/GCbooks/GCSaraiva.pm.orig
 %fdupes %{buildroot}%{_datadir}
 
 %clean

++ gcstar-1.6.2.tar.gz -> gcstar-1.7.0.tar.gz ++
 33030 lines of diff (skipped)

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



commit emacs for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package emacs for openSUSE:Factory checked 
in at 2012-09-23 19:33:22

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


Package is "emacs", Maintainer is "wer...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/emacs/emacs.changes  2012-09-11 
09:05:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.emacs.new/emacs.changes 2012-09-23 
19:33:25.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep 18 12:07:26 UTC 2012 - wer...@suse.de
+
+- Update to to emacs version 24.2
+  * This is mainly a bug-fix release
+- Last patch already included 
+
+---

Old:

  emacs-24.1-configure.patch
  emacs-24.1-gets.patch
  emacs-24.1.tar.bz2
  site-lisp.tar.bz2

New:

  emacs-24.2-configure.patch
  emacs-24.2.tar.xz
  site-lisp.tar.xz



Other differences:
--
++ emacs.spec ++
--- /var/tmp/diff_new_pack.ptjoSi/_old  2012-09-23 19:33:30.0 +0200
+++ /var/tmp/diff_new_pack.ptjoSi/_new  2012-09-23 19:33:30.0 +0200
@@ -60,7 +60,7 @@
 BuildRequires:  gpm
 %endif
 Url:http://www.gnu.org/software/emacs/
-Version:24.1
+Version:24.2
 Release:0
 Requires:   ctags
 Requires:   emacs-info = %{version}
@@ -70,14 +70,14 @@
 Group:  Productivity/Editors/Emacs
 Provides:   nxml-mode = 20041004
 Obsoletes:  nxml-mode < 20041004
-Source: ftp://ftp.gnu.org/gnu/emacs/emacs-24.1.tar.bz2
+Source: ftp://ftp.gnu.org/gnu/emacs/emacs-24.2.tar.xz
 Source1:app-defaults.Emacs
-Source2:site-lisp.tar.bz2
+Source2:site-lisp.tar.xz
 Source3:dot.gnu-emacs
 Source4:emacs-rpmlintrc
 Source5:emacs.desktop
 Patch:  emacs-24.1.dif
-Patch1: emacs-24.1-configure.patch
+Patch1: emacs-24.2-configure.patch
 Patch2: emacs-24.1-glibc.patch
 Patch3: emacs-24.1-decl.dif
 Patch4: emacs-23.1-asian-print.patch
@@ -95,7 +95,6 @@
 Patch22:emacs-24.1-bnc628268.patch
 Patch23:emacs-24.1-xevent.patch
 Patch24:emacs-24.1-xgselect.patch
-Patch25:emacs-24.1-gets.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global bug_345669  0
 %{expand: %%global _exec_prefix %(type -p pkg-config &>/dev/null && pkg-config 
--variable prefix x11 || echo /usr/X11R6)}
@@ -204,7 +203,6 @@
 %patch22
 %patch23
 %patch24
-%patch25 -p1
 %if 0%{?suse_version} < 1130
 %patch1
 %endif
@@ -248,7 +246,7 @@
   esac
   }
 
-  if test "$(sed -rn '\@^\$[({]infodir[})]/@{ s@.*/([^:]*):.*@\1@p; }' 
doc/*/Makefile.in | xargs)" != "%info_files"
+  if test "$(sed -rn '\@^\$[({](build)?infodir[})]/@{ s@.*/([^:]*):.*@\1@p; }' 
doc/*/Makefile.in | xargs)" != "%info_files"
   then
   echo Please update info_files >&2
   exit 1

++ emacs-24.1-configure.patch -> emacs-24.2-configure.patch ++
--- /work/SRC/openSUSE:Factory/emacs/emacs-24.1-configure.patch 2012-07-23 
10:15:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.emacs.new/emacs-24.2-configure.patch
2012-09-23 19:33:25.0 +0200
@@ -3,8 +3,8 @@
 @@ -1,11 +1,9 @@
  #! /bin/sh
  # Guess values for system-dependent variables and create Makefiles.
--# Generated by GNU Autoconf 2.68 for emacs 24.1.
-+# Generated by GNU Autoconf 2.69 for emacs 24.1.
+-# Generated by GNU Autoconf 2.68 for emacs 24.2.
++# Generated by GNU Autoconf 2.69 for emacs 24.2.
  #
  #
 -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -187,7 +187,7 @@
 @@ -2134,9 +2152,9 @@ test -n "$ac_init_help" && exit $ac_stat
  if $ac_init_version; then
cat <<\_ACEOF
- emacs configure 24.1
+ emacs configure 24.2
 -generated by GNU Autoconf 2.68
 +generated by GNU Autoconf 2.69
  
@@ -258,7 +258,7 @@
 @@ -2863,7 +2886,7 @@ This file contains any messages produced
  running configure, to aid debugging if configure makes a mistake.
  
- It was created by emacs $as_me 24.1, which was
+ It was created by emacs $as_me 24.2, which was
 -generated by GNU Autoconf 2.68.  Invocation command line was
 +generated by GNU Autoconf 2.69.  Invocation command line was
  
@@ -383,7 +383,7 @@
  /* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
  struct buf { int x; };
  FILE * (*rcsopen) (struct buf *, struct stat *, int);
-@@ -5900,7 +5923,7 @@ do
+@@ -5902,7 +5925,7 @@ do
  for ac_prog in grep ggrep; do
  for ac_exec_ext in '' $ac_executable_extensions; do
ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
@@ -392,7 +392,7 @@
  # Check for GNU ac_path_GREP and select it if it is found.
# Check for GNU $ac_path_GREP
  case `"$ac_path_GREP" --version 2>&1` in
-@@ -5966,7 +5989,7 @@ do
+@@ -5

commit eclipse-swt for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package eclipse-swt for openSUSE:Factory 
checked in at 2012-09-23 19:33:10

Comparing /work/SRC/openSUSE:Factory/eclipse-swt (Old)
 and  /work/SRC/openSUSE:Factory/.eclipse-swt.new (New)


Package is "eclipse-swt", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/eclipse-swt/eclipse-swt.changes  2012-06-29 
14:03:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.eclipse-swt.new/eclipse-swt.changes 
2012-09-23 19:33:12.0 +0200
@@ -1,0 +2,5 @@
+Fri Sep 21 09:35:34 UTC 2012 - idon...@suse.com
+
+- Add explicit glu dependency
+
+---



Other differences:
--
++ eclipse-swt.spec ++
--- /var/tmp/diff_new_pack.1g4vbo/_old  2012-09-23 19:33:16.0 +0200
+++ /var/tmp/diff_new_pack.1g4vbo/_new  2012-09-23 19:33:16.0 +0200
@@ -61,6 +61,7 @@
 BuildRequires:  libgnome-devel
 BuildRequires:  libgnomeui-devel
 BuildRequires:  mozilla-nspr-devel
+BuildRequires:  pkgconfig(glu)
 
 %description
 SWT is the software component that delivers native widget functionality


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



commit dosbox for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package dosbox for openSUSE:Factory checked 
in at 2012-09-23 19:33:00

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


Package is "dosbox", Maintainer is "lnus...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/dosbox/dosbox.changes2011-12-08 
11:27:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.dosbox.new/dosbox.changes   2012-09-23 
19:33:02.0 +0200
@@ -1,0 +2,5 @@
+Fri Sep 21 08:22:01 UTC 2012 - idon...@suse.com
+
+- Add explicit glu dependency
+
+---



Other differences:
--
++ dosbox.spec ++
--- /var/tmp/diff_new_pack.ACoHv0/_old  2012-09-23 19:33:03.0 +0200
+++ /var/tmp/diff_new_pack.ACoHv0/_new  2012-09-23 19:33:03.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package dosbox
 #
-# 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/
 #
 
+
 Name:   dosbox
 BuildRequires:  Mesa-devel
 BuildRequires:  SDL-devel
@@ -23,17 +24,18 @@
 BuildRequires:  gcc-c++
 BuildRequires:  libpng-devel
 BuildRequires:  update-desktop-files
+BuildRequires:  pkgconfig(glu)
 %if 0%suse_version > 1020
 BuildRequires:  SDL_net-devel
 %else
 BuildRequires:  SDL_net
 %endif
 Url:http://dosbox.sourceforge.net/
-License:GPL-2.0+
-Group:  System/Emulators/PC
 Version:0.74
 Release:0
 Summary:DOS Emulator Well-Suited for Playing Games
+License:GPL-2.0+
+Group:  System/Emulators/PC
 Source: 
http://switch.dl.sourceforge.net/sourceforge/dosbox/dosbox-%{version}.tar.gz
 Source1:dosbox.desktop
 Source2:dosbox.png


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



commit deja-dup for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package deja-dup for openSUSE:Factory 
checked in at 2012-09-23 19:32:21

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-05-03 
10:55:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.deja-dup.new/deja-dup.changes   2012-09-23 
19:32:23.0 +0200
@@ -1,0 +2,29 @@
+Fri Sep 21 23:39:21 UTC 2012 - nmo.marq...@gmail.com
+
+- Update to version 23.92:
+  + Only allow one deja-dup-monitor process at a time
+- Changes from version 23.90:
+  + Add extra checks at the end of a backup to verify we can
+successfully restore it later
+- Changes from version 23.4:
+  + Always makes a fresh backup every three months now, regardless
+of how often automatic backups happen
+  + Don't prompt for root password when restoring from Ubuntu One,
+as it won't work anyway (U1 needs to talk to your session bus,
+which root can't do)
+  + Use pkexec instead of gksu
+- Changes from version 23.2:
+  + Build system adjustments
+  + Updated translations.
+- Add pkgconfig(libpea-1.0) BuildRequires: new dependency.
+- Recommend python-cloudfiles, as is available for since openSUSE
+  12.2
+- Removed scripts to find localized files: %find_lang handles this
+  ok now.
+- Drop xz BuildRequires as it now comes for free in the build
+  system.
+- Drop gnome-doc-utils-devel BuildRequires: it's not needed, as the
+  help system had been migrated to yelp-tools earlier.
+- Remove checks for outdated openSUSE versions (<= 11.3).
+
+---

Old:

  deja-dup-22.1.tar.xz

New:

  deja-dup-23.92.tar.xz



Other differences:
--
++ deja-dup.spec ++
--- /var/tmp/diff_new_pack.Bm0Kpu/_old  2012-09-23 19:32:24.0 +0200
+++ /var/tmp/diff_new_pack.Bm0Kpu/_new  2012-09-23 19:32:24.0 +0200
@@ -17,11 +17,9 @@
 
 
 Name:   deja-dup
-Version:22.1
+Version:23.92
 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
 License:GPL-3.0+
 Group:  Productivity/Archiving/Backup
@@ -30,23 +28,21 @@
 # For make check to work, we need dbus-launch
 BuildRequires:  dbus-1-x11
 BuildRequires:  fdupes
-BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  intltool
 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:  vala >= 0.16.0
 BuildRequires:  yelp-tools
+BuildRequires:  pkgconfig(glib-2.0) >= 2.32
 BuildRequires:  pkgconfig(gnome-keyring-1)
-BuildRequires:  pkgconfig(gtk+-3.0)
+BuildRequires:  pkgconfig(gtk+-3.0) >= 3.0
 BuildRequires:  pkgconfig(libnautilus-extension)
-BuildRequires:  pkgconfig(libnotify)
+BuildRequires:  pkgconfig(libnotify) >= 0.7
+BuildRequires:  pkgconfig(libpeas-1.0)
 Requires:   duplicity
 Recommends: %{name}-lang
 Recommends: python-boto
-# Needed for Rackspace Cloud Files support, but not packaged :/
-#Recommends: python-cloudfiles
+Recommends: python-cloudfiles
 %glib2_gsettings_schema_requires
 
 %description
@@ -96,14 +92,6 @@
 %suse_update_desktop_file deja-dup-monitor
 %suse_update_desktop_file -r deja-dup-preferences GTK GNOME System Archiving 
X-SuSE-Backup
 %find_lang %{name} %{?no_lang_C}
-# Localized help
-for help in %{buildroot}%{_datadir}/help/*/deja-dup/; do
-LOCALE=`echo $help | sed "s:.*%{_datadir}/help/\([^/]*\)/deja-dup/:\1:g"`
-echo "%%lang($LOCALE) %%dir %%{_datadir}/help/$LOCALE" >> 
%{name}.help-lang.tmp
-echo "%%lang($LOCALE) %%doc /${help##%{buildroot}}" >> 
%{name}.help-lang.tmp
-done
-sort -u %{name}.help-lang.tmp | grep -v "^%%lang(C)" > %{name}.help-lang
-rm %{name}.help-lang.tmp
 # Localized man pages
 for man in %{buildroot}%{_mandir}/*/man1/*; do
 LOCALE=`echo $man | sed "s:.*%{_mandir}/\([^/]*\)/man1/.*:\1:g"`
@@ -122,21 +110,15 @@
 # FIXME: disabled because of lp#940110
 #make check
 
-%if 0%{?suse_version} > 1130
-
 %post
 %glib2_gsettings_schema_post
 %desktop_database_post
 %icon_theme_cache_post
-%endif
-
-%if 0%{?suse_version} > 1130
 
 %postun
 %glib2_gsettings_schema_postun
 %desktop_database_postun
 %icon_theme_cache_postun
-%endif
 
 %files -f %{name}.man-lang
 %defattr(-,root,root)
@@ -151,6 +133,7 @@
 # put the files in 

commit dee for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package dee for openSUSE:Factory checked in 
at 2012-09-23 19:31:46

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


Package is "dee", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/dee/dee.changes  2012-04-20 15:12:09.0 
+0200
+++ /work/SRC/openSUSE:Factory/.dee.new/dee.changes 2012-09-23 
19:31:47.0 +0200
@@ -1,0 +2,8 @@
+Sun Sep 16 15:10:50 UTC 2012 - zai...@opensuse.org
+
+- Update to version 1.0.14:
+  + Bugs fixed: lp#1030092.
+- Changes of version 1.0.12:
+  + Bugs fixed: lp#988443, lp#1017277.  
+
+---

Old:

  dee-1.0.10.tar.gz

New:

  dee-1.0.14.tar.gz



Other differences:
--
++ dee.spec ++
--- /var/tmp/diff_new_pack.5vl9uO/_old  2012-09-23 19:31:48.0 +0200
+++ /var/tmp/diff_new_pack.5vl9uO/_new  2012-09-23 19:31:48.0 +0200
@@ -19,7 +19,7 @@
 %define soname 1_0-4
 
 Name:   dee
-Version:1.0.10
+Version:1.0.14
 Release:0
 Summary:Library that uses DBus to provide objects
 License:LGPL-3.0
@@ -27,7 +27,7 @@
 Url:http://launchpad.net/dee
 Source0:
http://launchpad.net/dee/1.0/%{version}/+download/%{name}-%{version}.tar.gz
 BuildRequires:  fdupes
-BuildRequires:  libicu-devel >= 4.8
+BuildRequires:  libicu-devel >= 4.6
 BuildRequires:  libtool
 BuildRequires:  vala
 BuildRequires:  pkgconfig(glib-2.0)

++ dee-1.0.10.tar.gz -> dee-1.0.14.tar.gz ++
 24837 lines of diff (skipped)

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



commit chmsee for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package chmsee for openSUSE:Factory checked 
in at 2012-09-23 19:31:12

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


Package is "chmsee", Maintainer is "p...@novell.com"

Changes:

--- /work/SRC/openSUSE:Factory/chmsee/chmsee.changes2012-03-13 
09:32:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.chmsee.new/chmsee.changes   2012-09-23 
19:31:14.0 +0200
@@ -1,0 +2,7 @@
+Sun Sep 16 21:02:23 UTC 2012 - w...@rosenauer.org
+
+- Update to version 1.99.14 (bnc#780651)
+  * compatibility with Gecko >= 15
+- use fdupes
+
+---

Old:

  jungleji-chmsee-v1.99.08-0-g339d2c3.tar.gz

New:

  jungleji-chmsee-v1.99.14-0-gd5fb276.tar.gz



Other differences:
--
++ chmsee.spec ++
--- /var/tmp/diff_new_pack.ebhqbo/_old  2012-09-23 19:31:15.0 +0200
+++ /var/tmp/diff_new_pack.ebhqbo/_new  2012-09-23 19:31:15.0 +0200
@@ -20,20 +20,21 @@
 Summary:A Gtk+2 CHM document viewer
 License:GPL-2.0+
 Group:  Productivity/Graphics/Viewers
-Version:1.99.08
+Version:1.99.14
 Release:0
 Url:http://code.google.com/p/chmsee/
-Source0:jungleji-chmsee-v1.99.08-0-g339d2c3.tar.gz
+Source0:jungleji-chmsee-v1.99.14-0-gd5fb276.tar.gz
 Source1:Makefile
-# PATCH-FIX-UPSTREAM chmsee-newer-firefox.patch vu...@opensuse.org -- Declare 
chmsee compatible with Firefox 9
+# PATCH-FIX-UPSTREAM chmsee-newer-firefox.patch vu...@opensuse.org -- Declare 
chmsee compatible with Firefox 17
 Patch0: chmsee-newer-firefox.patch
 BuildRequires:  chmlib-devel
+BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  pkg-config
 BuildRequires:  python
 BuildRequires:  shared-mime-info
 BuildRequires:  update-desktop-files
-BuildRequires:  pkgconfig(libxul) >= 9.0
+BuildRequires:  pkgconfig(libxul) >= 13.0
 %define xulrunner_version %(rpm -q --queryformat '%{VERSION}' xulrunner-devel)
 %define xulrunner_base %(pkg-config --variable=libdir libxul)
 Requires:   xulrunner >= %{xulrunner_version}
@@ -48,7 +49,7 @@
 and several other great people.
 
 %prep
-%setup -q -n jungleji-chmsee-422e522
+%setup -q -n jungleji-chmsee-d5fb276
 cp %{SOURCE1} src
 %patch0 -p1
 
@@ -91,6 +92,8 @@
 install -D -m0644 data/chmsee.mime 
%{buildroot}/%{_datadir}/mime-info/chmsee.mime
 install -D -m0644 data/chmsee.keys 
%{buildroot}/%{_datadir}/mime-info/chmsee.keys
 DESTDIR=%{buildroot} mime-info-to-mime
+# fdupes
+%fdupes $RPM_BUILD_ROOT
 
 %post
 %if 0%{?suse_version} > 1130
@@ -112,7 +115,7 @@
 
 %files
 %defattr(-, root, root)
-%doc README COPYING AUTHORS ChangeLog NEWS HACKING
+%doc COPYING AUTHORS NEWS README.md HACKING
 %{_bindir}/chmsee
 %{_libdir}/chmsee/
 %{_datadir}/applications/*.desktop

++ Makefile ++
--- /var/tmp/diff_new_pack.ebhqbo/_old  2012-09-23 19:31:15.0 +0200
+++ /var/tmp/diff_new_pack.ebhqbo/_new  2012-09-23 19:31:15.0 +0200
@@ -7,4 +7,11 @@
 CHMLIB_INCLUDES = -I/usr/include
 CHMLIB_LIBS = -lchm
 
+PYTHON2 = /usr/bin/python2
+
+XPCOMCHM = libxpcomchm.so
+
+DEFINES = -pthread
+LDFLAGS = -Wl,-soname,${TARGET} -L${LIBXUL_SDK}/bin -lpthread
+
 include ./common.mk

++ chmsee-newer-firefox.patch ++
--- /var/tmp/diff_new_pack.ebhqbo/_old  2012-09-23 19:31:15.0 +0200
+++ /var/tmp/diff_new_pack.ebhqbo/_new  2012-09-23 19:31:15.0 +0200
@@ -5,6 +5,6 @@
 @@ -25,4 +25,4 @@ ID={f48601d0-39a1-11e0-a013-00241d8cf371}
  
  [Gecko]
- MinVersion=9.0
--MaxVersion=10.*
-+MaxVersion=11.*
+ MinVersion=13.0
+-MaxVersion=16.*
++MaxVersion=17.*

++ jungleji-chmsee-v1.99.08-0-g339d2c3.tar.gz -> 
jungleji-chmsee-v1.99.14-0-gd5fb276.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jungleji-chmsee-422e522/README 
new/jungleji-chmsee-d5fb276/README
--- old/jungleji-chmsee-422e522/README  2012-02-19 15:38:07.0 +0100
+++ new/jungleji-chmsee-d5fb276/README  1970-01-01 01:00:00.0 +0100
@@ -1,62 +0,0 @@
-Introduction
-
-
-ChmSee is an HTML Help viewer for Unix/Linux.
-
-Homepage: http://code.google.com/p/chmsee
-
-Building
-
-
-From 2.0, ChmSee becomes a xulrunner application. I think this
-migration will bring some interesting features and make developing
-ChmSee more fun.
-
-In the new version of ChmSee, most of codes use cross-platform
-languages: XUL, JavaScript, CSS and DTD. One advantage feature of
-these script and markup language is that they do not need to build
-before running. But ChmSee still depends on the CHMLIB - a C Lib used
-to retrieved book contents from CHM file. In order to call 

commit cantarell-fonts for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package cantarell-fonts for openSUSE:Factory 
checked in at 2012-09-23 19:30:54

Comparing /work/SRC/openSUSE:Factory/cantarell-fonts (Old)
 and  /work/SRC/openSUSE:Factory/.cantarell-fonts.new (New)


Package is "cantarell-fonts", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/cantarell-fonts/cantarell-fonts.changes  
2012-09-14 12:15:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.cantarell-fonts.new/cantarell-fonts.changes 
2012-09-23 19:30:57.0 +0200
@@ -1,0 +2,9 @@
+Fri Sep 14 11:35:00 UTC 2012 - vu...@opensuse.org
+
+- Update to version 0.0.10:
+  + Generate OTF from SFDs automatically
+  + Install to appropriate system directories
+  + Fix cyrillic metrics
+  + Improve EE diacritics
+
+---

Old:

  cantarell-fonts-0.0.9.tar.xz

New:

  cantarell-fonts-0.0.10.tar.xz



Other differences:
--
++ cantarell-fonts.spec ++
--- /var/tmp/diff_new_pack.j9uOrn/_old  2012-09-23 19:30:58.0 +0200
+++ /var/tmp/diff_new_pack.j9uOrn/_new  2012-09-23 19:30:58.0 +0200
@@ -19,7 +19,7 @@
 %define cantarell_dir %{_fontsdir}/cantarell
 
 Name:   cantarell-fonts
-Version:0.0.9
+Version:0.0.10
 Release:0
 Summary:Contemporary Humanist Sans Serif Font
 License:OFL-1.1

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



commit armagetron for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package armagetron for openSUSE:Factory 
checked in at 2012-09-23 19:30:37

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


Package is "armagetron", Maintainer is "p...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/armagetron/armagetron.changes2012-03-20 
11:25:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.armagetron.new/armagetron.changes   
2012-09-23 19:30:39.0 +0200
@@ -1,0 +2,5 @@
+Tue Sep 18 12:22:27 UTC 2012 - co...@suse.com
+
+- add explicit buildrequire for pkgconfig(glu)
+
+---



Other differences:
--
++ armagetron.spec ++
--- /var/tmp/diff_new_pack.VZUNWT/_old  2012-09-23 19:30:42.0 +0200
+++ /var/tmp/diff_new_pack.VZUNWT/_new  2012-09-23 19:30:42.0 +0200
@@ -20,6 +20,7 @@
 BuildRequires:  SDL_image-devel
 BuildRequires:  SDL_mixer-devel
 BuildRequires:  kdelibs3-devel
+BuildRequires:  pkgconfig(glu)
 PreReq: sh-utils fileutils
 Summary:OpenGL Game Similar to the Film Tron
 License:GPL-2.0+

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



commit aegisub for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package aegisub for openSUSE:Factory checked 
in at 2012-09-23 19:30:27

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


Package is "aegisub", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/aegisub/aegisub.changes  2012-05-08 
12:09:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.aegisub.new/aegisub.changes 2012-09-23 
19:30:29.0 +0200
@@ -1,0 +2,14 @@
+Fri Sep 21 10:20:14 UTC 2012 - reddw...@opensuse.org
+
+- Add aegisub-2.1.9-no_glu.patch
+- Remove explicit glu dependency.
+  wxWidgets-devel is the one that should have it
+- Remove explicit xfixes,xdamage and xxf86vm dependencies.
+  Mesa-libGL-devel is the one that should be fixed (probably removing the .la 
file)
+
+---
+Fri Sep 21 08:27:11 UTC 2012 - idon...@suse.com
+
+- Add explicit glu,xfixes,xdagame and xxf86vm dependency
+
+---

New:

  aegisub-2.1.9-no_glu.patch



Other differences:
--
++ aegisub.spec ++
--- /var/tmp/diff_new_pack.jrX59y/_old  2012-09-23 19:30:30.0 +0200
+++ /var/tmp/diff_new_pack.jrX59y/_new  2012-09-23 19:30:30.0 +0200
@@ -28,9 +28,14 @@
 Group:  Productivity/Multimedia/Video/Editors and Convertors
 Url:http://www.aegisub.net/
 Source0:http://ftp.aegisub.org/pub/releases/aegisub-%{version}.tar.gz
+# PATCH-FEATURE-OPENSUSE aegisub-2.1.9-system_libs.patch reddw...@opensuse.org 
-- Use system libraries instead of included ones
 Patch0: aegisub-2.1.9-system_libs.patch
+# PATCH-FIX-UPSTREAM aegisub-2.1.8.99.rev5789-ld.patch reddw...@opensuse.org 
-- Link against librt. Fixed upstream.
 Patch1: aegisub-2.1.8.99.rev5789-ld.patch
+# PATCH-FIX-UPSTREAM aegisub-2.1.9-underlinking.patch reddw...@opensuse.org -- 
Link against libz, Fixed upstream.
 Patch2: aegisub-2.1.9-underlinking.patch
+# PATCH-FIX-UPSTREAM aegisub-2.1.9-no_glu.patch 
http://devel.aegisub.org/ticket/1511 reddw...@opensuse.org -- Don't ask for GLU 
since it's not being used
+Patch3: aegisub-2.1.9-no_glu.patch
 BuildRequires:  ImageMagick
 BuildRequires:  boost-devel >= 1.34
 BuildRequires:  gcc-c++
@@ -75,6 +80,7 @@
 %patch0
 %patch1
 %patch2
+%patch3
 rm -r src/boost
 rm -r src/gl
 FAKE_BUILDDATE=$(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes '+%%b %%e 
%%Y')

++ aegisub-2.1.9-no_glu.patch ++
Index: configure
===
--- configure.orig
+++ configure
@@ -20102,55 +20102,6 @@ See \`config.log' for more details." "$L
 fi
 
 
-  aegisub_save_LIBS="$LIBS"
-  aegisub_save_CPPFLAGS="$CPPFLAGS"
-  CPPFLAGS="$GL_CFLAGS"
-  LIBS="$GL_LIBS -lGLU"
-  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether OpenGLU works" 
>&5
-$as_echo_n "checking whether OpenGLU works... " >&6; }
-if test "${agi_cv_with_openglu+set}" = set; then :
-  $as_echo_n "(cached) " >&6
-else
-  if test "$cross_compiling" = yes; then :
-  if test $? -ne 0; then
-   eval agi_cv_with_openglu="no";
-   else
-   eval agi_cv_with_openglu="yes";
-   fi
-else
-  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h.  */
-
-#include 
-int main(void) {
-  return 0;
-}
-_ACEOF
-if ac_fn_cxx_try_run "$LINENO"; then :
-  eval agi_cv_with_openglu="yes"
-else
-  eval agi_cv_with_openglu="no"
-fi
-rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
-  conftest.$ac_objext conftest.beam conftest.$ac_ext
-fi
-
-
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $agi_cv_with_openglu" >&5
-$as_echo "$agi_cv_with_openglu" >&6; }
-  CPPFLAGS="$aegisub_save_CPPFLAGS"
-  LIBS="$aegisub_save_LIBS"
-
-
-if test "$agi_cv_with_openglu" = "no" && test "$build_darwin" != "yes"; then
-   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "Please install a working OpenGL GLU library.
-See \`config.log' for more details." "$LINENO" 5; }
-fi
-
-
 ###
 ## Freetype
 ###
Index: configure.in
===
--- configure.in.orig
+++ configure.in
@@ -368,16 +368,6 @@ if test "$agi_cv_with_opengl" = "no"; th
AC_MSG_FAILURE([Please install a working OpenGL library.])
 fi
 
-AC_AGI_COMPILE([OpenGLU], [openglu], [$GL_CFLAGS], [$GL_LIBS -lGLU],[
-#include 
-int main(void) {
-  return 0;
-}])
-
-if test "$agi_cv_with_openglu" = "no" && test "$build_darwin" != "yes"; then
-   AC_MSG_FAILURE([Please install a working OpenGL GLU librar

commit filesystem for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package filesystem for openSUSE:Factory 
checked in at 2012-09-23 17:32:13

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


Package is "filesystem", Maintainer is "kkae...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/filesystem/filesystem.changes2012-09-14 
12:16:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.filesystem.new/filesystem.changes   
2012-09-23 17:32:15.0 +0200
@@ -1,0 +2,5 @@
+Thu Sep 20 13:46:26 CEST 2012 - ku...@suse.de
+
+- Remove SuSEconfig directories [FATE#100011]
+
+---



Other differences:
--
++ filesystem.spec ++
--- /var/tmp/diff_new_pack.HoMnEx/_old  2012-09-23 17:32:16.0 +0200
+++ /var/tmp/diff_new_pack.HoMnEx/_new  2012-09-23 17:32:16.0 +0200
@@ -194,4 +194,6 @@
 
 
 
+
+
 %changelog

++ directory.list ++
--- /var/tmp/diff_new_pack.HoMnEx/_old  2012-09-23 17:32:16.0 +0200
+++ /var/tmp/diff_new_pack.HoMnEx/_new  2012-09-23 17:32:16.0 +0200
@@ -2,7 +2,6 @@
 0755 root root /boot
 0755 root root /dev
 0755 root root /etc
-0755 root root /etc/SuSEconfig
 0755 root root /etc/X11
 0755 root root /etc/aliases.d
 0775 root   lp /etc/cups
@@ -165,9 +164,6 @@
 0755 root root /var/adm/backup/sysconfig
 0755 root root /var/adm/fillup-templates
 0755 root root /var/adm/perl-modules
-0755 root root /var/adm/SuSEconfig
-0755 root root /var/adm/SuSEconfig/bin
-0755 root root /var/adm/SuSEconfig/md5
 0755 root root /var/cache
 0755 man root /var/cache/man
 0755 root root /var/crash

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



commit exiv2 for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package exiv2 for openSUSE:Factory checked 
in at 2012-09-23 17:31:49

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


Package is "exiv2", Maintainer is "kde-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/exiv2/exiv2.changes  2012-05-08 
11:14:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.exiv2.new/exiv2.changes 2012-09-23 
17:31:51.0 +0200
@@ -1,0 +2,23 @@
+Wed Sep 19 17:16:50 CEST 2012 - fcro...@suse.com
+
+- Add 90_changeset_r2743.diff: add support for additional Samgsung
+  EXIF tags (backport for upstream)
+- Add 90_changeset_r2744.diff: add support for additional Pentax
+  EXIF tags (backport for upstream)
+- Add more Canon models (5D Mark III, 600D, 60D, 1100D, WFT-E2 II,
+  WFT-E4 II, 650D)
+- Add 90_changeset_r2756.diff: add support for EOS-M Sigma 12-24mm
+  f/4.5-5.6 DG HSM II lens (backport from upstream)
+- Add 90_changeset_r2818_partial.diff: add support for additional
+  Canon camera (5D Mark III, 600D, 60D, 1100D, WFT-E2 II, WFT-E4
+  II, 650D) and EF/EF-M lenses. (backport from upstream)
+- Add 99_pending_canon_eos_m.diff: add support for some Canon EOS-M
+  lenses (pending upstream merge)
+- Add 99_pending_minolta_manual_lens.diff: add support for Minolta
+  manual lens (pending upstream merge)
+- Add 99_pending_pentax_da_35.diff: add support for PENTAX-DA 35mm
+  F2.4 AL lens (pending upstream merge)
+- Add 99_pending_zeiss_planar_35_ze.diff: add support for Carl
+  Zeiss Planar T* 50mm f/1.4 ZE lens (pending upstream merge)
+
+---

New:

  90_changeset_r2743.diff
  90_changeset_r2744.diff
  90_changeset_r2756.diff
  90_changeset_r2818_partial.diff
  99_pending_canon_eos_m.diff
  99_pending_minolta_manual_lens.diff
  99_pending_pentax_da_35.diff
  99_pending_zeiss_planar_35_ze.diff



Other differences:
--
++ exiv2.spec ++
--- /var/tmp/diff_new_pack.NwsJTx/_old  2012-09-23 17:31:53.0 +0200
+++ /var/tmp/diff_new_pack.NwsJTx/_new  2012-09-23 17:31:53.0 +0200
@@ -25,6 +25,16 @@
 Url:http://www.exiv2.org/
 Source0:http://www.exiv2.org/%{name}-%{version}.tar.gz
 Source1:baselibs.conf
+# Patches from upstream
+Patch0: 90_changeset_r2743.diff
+Patch1: 90_changeset_r2744.diff
+Patch2: 90_changeset_r2756.diff
+Patch3: 90_changeset_r2818_partial.diff
+# Patches pending upstream merge
+Patch4: 99_pending_canon_eos_m.diff
+Patch5: 99_pending_minolta_manual_lens.diff
+Patch6: 99_pending_pentax_da_35.diff
+Patch7: 99_pending_zeiss_planar_35_ze.diff
 BuildRequires:  doxygen
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -64,6 +74,14 @@
 %lang_package
 %prep
 %setup -q
+%patch0 -p1
+%patch1 -p1
+%patch2 -p1
+%patch3 -p1
+%patch4 -p1
+%patch5 -p1
+%patch6 -p1
+%patch7 -p1
 
 %build
 %configure --disable-static --with-pic

++ 90_changeset_r2743.diff ++
--- a/src/exif.cpp  (revision 2742)
+++ b/src/exif.cpp  (revision 2743)
@@ -752,6 +752,8 @@
 { pttLen, "Exif.Pentax.PreviewLength" },
 { pttTag, "Exif.Pentax.PreviewOffset" },
 { pttTag, "Exif.Pentax.PreviewResolution" },
+{ pttLen, "Exif.SamsungPreview.JPEGInterchangeFormatLength" },
+{ pttIfd, "SamsungPreview"},
 { pttLen, "Exif.Thumbnail.StripByteCounts"},
 { pttIfd, "Thumbnail" },
 { pttLen, "Exif.Thumbnail.JPEGInterchangeFormatLength"},
++ 90_changeset_r2744.diff ++
--- a/src/exif.cpp  (revision 2743)
+++ b/src/exif.cpp  (revision 2744)
@@ -752,6 +752,9 @@
 { pttLen, "Exif.Pentax.PreviewLength" },
 { pttTag, "Exif.Pentax.PreviewOffset" },
 { pttTag, "Exif.Pentax.PreviewResolution" },
+{ pttLen, "Exif.PentaxDng.PreviewLength"  },
+{ pttTag, "Exif.PentaxDng.PreviewOffset"  },
+{ pttTag, "Exif.PentaxDng.PreviewResolution"  },
 { pttLen, "Exif.SamsungPreview.JPEGInterchangeFormatLength" },
 { pttIfd, "SamsungPreview"},
 { pttLen, "Exif.Thumbnail.StripByteCounts"},
++ 90_changeset_r2756.diff ++
Index: canonmn.cpp
===
--- a/src/canonmn.cpp   (revision 2755)
+++ b/src/canonmn.cpp   (revision 2756)
@@ -525,7 +5

commit crmsh for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package crmsh for openSUSE:Factory checked 
in at 2012-09-23 17:31:39

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


Package is "crmsh", Maintainer is "dmuhameda...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/crmsh/crmsh.changes  2012-09-15 
17:26:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.crmsh.new/crmsh.changes 2012-09-23 
17:31:41.0 +0200
@@ -1,0 +2,11 @@
+Tue Sep 18 15:47:25 UTC 2012 - dmuhameda...@suse.com
+
+- help: add topics to the help system
+- help: add '?' as alias for help
+- help: append slash to levels in overview help screen
+- help: page overview help screens
+- ui: add vim syntax highlighting support
+- utils: use crm_simulate if ptest is not available
+- upstream cs: df0b30262868 (release 1.2.0)
+
+---



Other differences:
--
++ crmsh.spec ++
--- /var/tmp/diff_new_pack.Dni03f/_old  2012-09-23 17:31:43.0 +0200
+++ /var/tmp/diff_new_pack.Dni03f/_new  2012-09-23 17:31:43.0 +0200
@@ -35,16 +35,24 @@
 
 %global crmsh_release %{specversion}
 
+%if 0%{?fedora_version} || 0%{?centos_version} || 0%{?rhel_version}
+%define pkg_group System Environment/Daemons
+%else
+%define pkg_group Productivity/Clustering/HA
+%endif
+
 Name:   crmsh
 Summary:Pacemaker command line interface
 License:GPL-2.0
-Group:  Productivity/Clustering/HA
-Version:1.1.0
+Group:  %{pkg_group}
+Version:1.2.0
 Release:0
 Url:http://savannah.nongnu.org/projects/crmsh
 Source0:crmsh.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if 0%{?suse_version}
 Requires(pre): pacemaker-ticket-support >= 2.0
+%endif
 Requires(pre): pacemaker >= 1.1.6
 Requires:   pssh
 Requires:   python >= 2.4
@@ -62,8 +70,13 @@
 BuildRequires:  asciidoc
 BuildRequires:  autoconf
 BuildRequires:  automake
+%if 0%{?suse_version}
 BuildRequires:  libglue-devel
 BuildRequires:  libpacemaker-devel
+%else
+BuildRequires:  cluster-glue-libs-devel
+BuildRequires:  pacemaker-libs-devel
+%endif
 BuildRequires:  libtool
 BuildRequires:  pkgconfig
 BuildRequires:  python
@@ -121,6 +134,13 @@
 
 %install
 %make_install
+%if 0%{?fedora_version} || 0%{?centos_version} || 0%{?rhel_version}
+# docs magically end up in /usr/share/doc/crmsh-$version on Fedora etc.
+# so if we don't get rid of 'em here, they'll end up duplicated, which
+# by default causes an "Installed (but unpackaged) file(s) found" error
+# during build.
+rm -r %{buildroot}%{crmsh_docdir}
+%endif
 
 %if 0%{?with_regression_tests}
 %post
@@ -152,6 +172,7 @@
 %doc AUTHORS
 %doc ChangeLog
 %doc README
+%doc contrib
 
 %dir %attr (770, %{uname}, %{gname}) %{_var}/cache/crm
 

++ crmsh.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/crmsh/.hg_archival.txt new/crmsh/.hg_archival.txt
--- old/crmsh/.hg_archival.txt  2012-08-29 14:56:25.0 +0200
+++ new/crmsh/.hg_archival.txt  2012-09-18 17:40:54.0 +0200
@@ -1,5 +1,5 @@
 repo: 13c3bd69e935090cd25213c474cafc3f01b5910b
-node: a4f00b8fb5c8d8014285d4a499e847b89f9851b6
+node: df0b30262868a52fc5f21177fdb3d4a02badb49d
 branch: default
-latesttag: Pacemaker-1.1.5
-latesttagdistance: 160
+latesttag: crmsh-1.2.0
+latesttagdistance: 1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/crmsh/.hgtags new/crmsh/.hgtags
--- old/crmsh/.hgtags   2012-08-29 14:56:25.0 +0200
+++ new/crmsh/.hgtags   2012-09-18 17:40:54.0 +0200
@@ -17,3 +17,4 @@
 f731b72e3c82226b22c133a27462a019055f39e7 Pacemaker-1.0.3
 f731b72e3c82226b22c133a27462a019055f39e7 SLE11-HAE-GMC
 fd6bd4648675c2be80c7bed2d8f8d3e5a5074c59 Pacemaker-1.0.5
+45886ac2c124ce49fc004dbc080974dc76dea605 crmsh-1.2.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/crmsh/ChangeLog new/crmsh/ChangeLog
--- old/crmsh/ChangeLog 2012-08-29 14:56:25.0 +0200
+++ new/crmsh/ChangeLog 2012-09-18 17:40:54.0 +0200
@@ -1,3 +1,74 @@
+* Tue Sep 18 2012 Dejan Muhamedagic  and many others
+- stable release 1.2.0
+- cibconfig: support the kind attribute in orders
+- cibconfig: implement node-attribute in collocations
+- cibconfig: support require-all in resource sets
+- cibconfig: support for fencing-topology
+- cibconfig: new schema command
+- rsctest: resource testing
+- history: implement session saving
+- history: add alias (timeframe) for the limit command
+- xml: support for RNG schema
+- site: ticket standby and activate commands
+- site: update interface to crm_ticket
+- cibstatus:

commit octave for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package octave for openSUSE:Factory checked 
in at 2012-09-23 17:31:32

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


Package is "octave", Maintainer is "pgaj...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/octave/octave.changes2012-09-11 
09:13:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.octave.new/octave.changes   2012-09-23 
17:31:34.0 +0200
@@ -1,0 +2,10 @@
+Tue Sep 18 20:12:09 UTC 2012 - idon...@suse.com
+
+- Add BuildRequires on texinfo (instead of makeinfo) and texlive-dvips
+
+---
+Tue Sep 11 12:24:07 UTC 2012 - pgaj...@suse.com
+
+- fix /etc/ld.so.conf.d/octave.conf [bnc#779072]
+
+---



Other differences:
--
++ octave.spec ++
--- /var/tmp/diff_new_pack.b6ya72/_old  2012-09-23 17:31:35.0 +0200
+++ /var/tmp/diff_new_pack.b6ya72/_new  2012-09-23 17:31:35.0 +0200
@@ -46,7 +46,6 @@
 BuildRequires:  libMagick++-devel
 BuildRequires:  libcurl-devel
 BuildRequires:  liblcms-devel
-BuildRequires:  makeinfo
 BuildRequires:  pcre-devel
 BuildRequires:  pkg-config
 BuildRequires:  qhull-devel
@@ -54,7 +53,10 @@
 BuildRequires:  readline-devel
 BuildRequires:  suitesparse-devel
 BuildRequires:  termcap
-BuildRequires:  texlive-devel
+BuildRequires:  texinfo
+%if 0%{?suse_version} > 1220
+BuildRequires:  texlive-dvips
+%endif
 BuildRequires:  texlive-latex
 BuildRequires:  xorg-x11-libSM-devel
 BuildRequires:  xorg-x11-libX11-devel
@@ -111,7 +113,7 @@
 %makeinstall
 # see bnc#557340
 mkdir -p %{buildroot}/%{_sysconfdir}/ld.so.conf.d
-echo %{_libdir}/%{name}-%{version} > 
%{buildroot}/%{_sysconfdir}/ld.so.conf.d/%{name}.conf
+echo %{_libdir}/%{name}/%{version} > 
%{buildroot}/%{_sysconfdir}/ld.so.conf.d/%{name}.conf
 rm %{buildroot}/%{_libdir}/%{name}/%{version}/*.la
 
 mkdir -p %{buildroot}/%{_libdir}/%{name}/packages

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



commit suspend for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package suspend for openSUSE:Factory checked 
in at 2012-09-23 17:31:26

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


Package is "suspend", Maintainer is "hma...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/suspend/suspend.changes  2012-09-14 
12:39:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.suspend.new/suspend.changes 2012-09-23 
17:31:28.0 +0200
@@ -1,0 +2,6 @@
+Tue Sep 18 16:26:27 UTC 2012 - fcro...@suse.com
+
+- Correctly handle plymouth not being installed in plymouth patch
+  (bnc#779399).
+
+---



Other differences:
--
++ suspend-plymouth.patch ++
--- /var/tmp/diff_new_pack.Kd86lC/_old  2012-09-23 17:31:29.0 +0200
+++ /var/tmp/diff_new_pack.Kd86lC/_new  2012-09-23 17:31:29.0 +0200
@@ -1,7 +1,8 @@
-diff -urNB suspend-utils-1.0/configure.ac new/configure.ac
 suspend-utils-1.0/configure.ac 2011-03-07 00:24:15.0 +0100
-+++ new/configure.ac   2012-02-16 16:47:16.909290161 +0100
-@@ -74,6 +74,12 @@
+Index: suspend-utils-1.0/configure.ac
+===
+--- suspend-utils-1.0.orig/configure.ac
 suspend-utils-1.0/configure.ac
+@@ -74,6 +74,12 @@ AC_ARG_ENABLE(
,
[enable_fbsplash="no"]
  )
@@ -14,7 +15,7 @@
  AC_ARG_WITH(
[devdir],
[AC_HELP_STRING([--with-devdir=DIR], [use if --enable-create-device, 
put devices in this directory, default /dev])],
-@@ -249,6 +255,21 @@
+@@ -249,6 +255,21 @@ if test "${enable_fbsplash}" = "yes"; th
)
  fi
  
@@ -36,7 +37,7 @@
  if test "${enable_threads}" = "yes"; then
CONFIG_FEATURES="${CONFIG_FEATURES} threads"
AC_DEFINE([CONFIG_THREADS], [1], [Define if threads enabled])
-@@ -301,6 +322,7 @@
+@@ -301,6 +322,7 @@ AM_CONDITIONAL([ENABLE_RESUME_STATIC], [
  AM_CONDITIONAL([ENABLE_CREATE_DEVICE], [test "${enable_create_device}" = 
"yes"])
  AM_CONDITIONAL([ENABLE_SPLASHY], [test "${enable_splashy}" = "yes"])
  AM_CONDITIONAL([ENABLE_FBSPLASH], [test "${enable_fbsplash}" = "yes"])
@@ -44,10 +45,11 @@
  AC_CONFIG_FILES([
Makefile
doc/Makefile
-diff -urNB suspend-utils-1.0/Makefile.am new/Makefile.am
 suspend-utils-1.0/Makefile.am  2011-03-07 00:24:15.0 +0100
-+++ new/Makefile.am2012-02-16 16:47:16.909290161 +0100
-@@ -29,6 +29,9 @@
+Index: suspend-utils-1.0/Makefile.am
+===
+--- suspend-utils-1.0.orig/Makefile.am
 suspend-utils-1.0/Makefile.am
+@@ -29,6 +29,9 @@ if ENABLE_DEBUG
  if ENABLE_FBSPLASH
  noinst_PROGRAMS+=fbsplash-test
  endif
@@ -57,7 +59,7 @@
  endif
  noinst_LIBRARIES=\
libsuspend-common.a
-@@ -88,6 +91,12 @@
+@@ -88,6 +91,12 @@ AM_CFLAGS+=\
  common_s2disk_libs+=\
${FBSPLASH_LIBS}
  endif
@@ -70,7 +72,7 @@
  
  libsuspend_common_a_SOURCES=\
swsusp.h suspend_ioctls.h \
-@@ -99,6 +108,7 @@
+@@ -99,6 +108,7 @@ libsuspend_common_a_SOURCES=\
splash.h splash.c \
splashy_funcs.h splashy_funcs.c \
fbsplash_funcs.h fbsplash_funcs.c \
@@ -78,7 +80,7 @@
bootsplash.h bootsplash.c \
memalloc.h memalloc.c load.c \
whitelist.h whitelist.csv whitelist.c \
-@@ -179,6 +189,11 @@
+@@ -179,6 +189,11 @@ whitelist.c: whitelist.csv
  clean-local:
rm -f whitelist.c
  
@@ -90,10 +92,11 @@
  #
  # Misc functions
  #
-diff -urNB suspend-utils-1.0/plymouth_funcs.c new/plymouth_funcs.c
 suspend-utils-1.0/plymouth_funcs.c 1970-01-01 01:00:00.0 +0100
-+++ new/plymouth_funcs.c   2012-02-16 17:18:06.983379699 +0100
-@@ -0,0 +1,258 @@
+Index: suspend-utils-1.0/plymouth_funcs.c
+===
+--- /dev/null
 suspend-utils-1.0/plymouth_funcs.c
+@@ -0,0 +1,259 @@
 +/*
 + * plymouth_funcs.c
 + *
@@ -156,7 +159,8 @@
 +  int fd = open("/dev/null", O_RDWR);
 +  dup2(fd, 2);
 +  close(fd);
-+  execl(cmd, cmd, arg, (char *) NULL);
++  if (execl(cmd, cmd, arg, (char *) NULL) == -1)
++  exit(1);
 +  }
 +  else {
 +  int status;
@@ -352,9 +356,10 @@
 +
 +
 +#endif
-diff -urNB suspend-utils-1.0/plymouth_funcs.h new/plymouth_funcs.h
 suspend-utils-1.0/plymouth_funcs.h 1970-01-01 01:00:00.0 +0100
-+++ new/plymouth_funcs.h   2012-02-16 17:18:15.332380115 +0100
+Index: suspend-utils-1.0/plymouth_funcs.h
+===
+--- /dev/null
 suspend-utils-1.0/plymouth_funcs.h
 @@ -0,0 +1,28 @@
 +/*
 + * ply

commit ibus-table-chinese for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package ibus-table-chinese for 
openSUSE:Factory checked in at 2012-09-23 17:31:18

Comparing /work/SRC/openSUSE:Factory/ibus-table-chinese (Old)
 and  /work/SRC/openSUSE:Factory/.ibus-table-chinese.new (New)


Package is "ibus-table-chinese", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/ibus-table-chinese/ibus-table-chinese.changes
2012-09-11 09:07:34.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ibus-table-chinese.new/ibus-table-chinese.changes   
2012-09-23 17:31:20.0 +0200
@@ -1,0 +2,5 @@
+Wed Sep 19 09:10:07 CEST 2012 - ti...@suse.de
+
+- Fix the license tags of some sub packages to GPL-3.0+ (bnc#779935)
+
+---



Other differences:
--
++ ibus-table-chinese.spec ++
--- /var/tmp/diff_new_pack.A5v3sl/_old  2012-09-23 17:31:21.0 +0200
+++ /var/tmp/diff_new_pack.A5v3sl/_new  2012-09-23 17:31:21.0 +0200
@@ -52,7 +52,6 @@
 
 %package array
 Summary:Array input methods
-License:Freely redistributable without restriction
 Group:  System/I18n/Chinese
 Summary(zh_CN): 行列输入法
 Summary(zh_TW): 行列輸入法
@@ -80,7 +79,6 @@
 
 %package cangjie
 Summary:Cangjie based input methods
-License:Freely redistributable without restriction
 Group:  System/I18n/Chinese
 Summary(zh_TW): 倉頡輸入法
 Summary(zh_CN): 仓颉输入法
@@ -100,7 +98,6 @@
 %package cantonese
 
 Summary:Cantonese input methods
-License:GPL-3.0+
 Group:  System/I18n/Chinese
 Summary(zh_TW): 粵語輸入法
 Provides:   locale(ibus:zh_TW)
@@ -121,7 +118,6 @@
 %package easy
 
 Summary:Easy input method
-License:GPL-3.0+
 Group:  System/I18n/Chinese
 Summary(zh_CN): 轻松输入法
 Summary(zh_TW): 輕鬆輸入法
@@ -141,7 +137,6 @@
 
 %package erbi
 Summary:Erbi input method
-License:Freely redistributable without restriction
 Group:  System/I18n/Chinese
 Summary(zh_CN): 二笔输入法
 Summary(zh_TW): 二筆輸入法
@@ -168,7 +163,6 @@
 
 %package quick
 Summary:Quick-to-learn input methods
-License:Freely redistributable without restriction
 Group:  System/I18n/Chinese
 Summary(zh_CN): 速成输入法
 Summary(zh_TW): 速成輸入法
@@ -196,7 +190,6 @@
 %package scj
 
 Summary:Smart Cangjie
-License:GPL-3.0+
 Group:  System/I18n/Chinese
 Summary(zh_CN): 快速仓颉输入法
 Summary(zh_TW): 快速倉頡輸入法
@@ -238,7 +231,6 @@
 %package stroke5
 
 Summary:Stroke 5 input method
-License:GPL-3.0+
 Group:  System/I18n/Chinese
 Summary(zh_CN): 笔顺五码输入法
 Summary(zh_TW): 筆順五碼輸入法
@@ -258,7 +250,6 @@
 %package wu
 
 Summary:Wu pronunciation input method
-License:GPL-3.0+
 Group:  System/I18n/Chinese
 Summary(zh_CN): 上海吳语注音输入法
 Summary(zh_TW): 上海吳語注音輸入法
@@ -282,7 +273,6 @@
 
 %package wubi-haifeng
 Summary:Haifeng Wubi input method
-License:BSD-3-Clause
 Group:  System/I18n/Chinese
 Summary(zh_CN): 海峰五笔输入法
 Summary(zh_TW): 海峰五筆輸入法
@@ -304,7 +294,6 @@
 
 %package wubi-jidian
 Summary:Jidian Wubi input method
-License:Freely redistributable without restriction
 Group:  System/I18n/Chinese
 Summary(zh_CN): 极点五笔输入法
 Summary(zh_TW): 極點五筆輸入法
@@ -327,7 +316,6 @@
 %package yong
 
 Summary:YongMa input method
-License:GPL-3.0+
 Group:  System/I18n/Chinese
 Summary(zh_CN): 永码输入法
 Summary(zh_TW): 永碼輸入法

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



commit yast2 for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package yast2 for openSUSE:Factory checked 
in at 2012-09-23 17:31:12

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


Package is "yast2", Maintainer is "jsr...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/yast2/yast2.changes  2012-08-31 
10:10:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2.new/yast2.changes 2012-09-23 
17:31:14.0 +0200
@@ -1,0 +2,6 @@
+Tue Sep 18 22:32:59 CEST 2012 - jsuch...@suse.cz
+
+- added San Marino to the list of countries (bnc#780639)
+- 2.23.5 
+
+---

Old:

  yast2-2.23.4.tar.bz2

New:

  yast2-2.23.5.tar.bz2



Other differences:
--
++ yast2.spec ++
--- /var/tmp/diff_new_pack.e4J1wj/_old  2012-09-23 17:31:15.0 +0200
+++ /var/tmp/diff_new_pack.e4J1wj/_new  2012-09-23 17:31:15.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2
 #
-# 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,25 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   yast2
-Version:2.23.4
+Version:2.23.5
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:yast2-%{version}.tar.bz2
 
-
-Group:  System/YaST
-License:GPL-2.0+
 Source1:yast2-rpmlintrc
 
-BuildRequires:  perl-XML-Writer update-desktop-files yast2-devtools 
yast2-perl-bindings yast2-testsuite
+BuildRequires:  perl-XML-Writer
+BuildRequires:  update-desktop-files
+BuildRequires:  yast2-devtools
+BuildRequires:  yast2-perl-bindings
+BuildRequires:  yast2-testsuite
 # Needed already in build time
-BuildRequires:  yast2-core >= 2.18.12 yast2-pkg-bindings >= 2.20.3 
yast2-ycp-ui-bindings >= 2.18.4
+BuildRequires:  yast2-core >= 2.18.12
+BuildRequires:  yast2-pkg-bindings >= 2.20.3
+BuildRequires:  yast2-ycp-ui-bindings >= 2.18.4
 
 # pre-requires for filling the sysconfig template (sysconfig.yast2)
 PreReq: %fillup_prereq
@@ -51,8 +52,10 @@
 Requires:   perl-Config-Crontab
 # for ag_tty (/bin/stty)
 # for /usr/bin/md5sum
-Requires:   coreutils sysconfig
-Requires:   yast2-xml yast2-hardware-detection
+Requires:   coreutils
+Requires:   sysconfig
+Requires:   yast2-hardware-detection
+Requires:   yast2-xml
 # for SLPAPI.pm
 Requires:   yast2-perl-bindings
 # for ag_anyxml
@@ -92,22 +95,30 @@
 
 Provides:   yast2-lib-sequencer
 Obsoletes:  yast2-lib-sequencer
-Provides:   yast2-lib-wizard yast2-lib-wizard-devel yast2-trans-wizard
-Obsoletes:  yast2-lib-wizard yast2-lib-wizard-devel yast2-trans-wizard
-Provides:   yast2-trans-menu y2t_menu
-Obsoletes:  yast2-trans-menu y2t_menu
+Provides:   yast2-lib-wizard
+Provides:   yast2-lib-wizard-devel
+Provides:   yast2-trans-wizard
+Obsoletes:  yast2-lib-wizard
+Obsoletes:  yast2-lib-wizard-devel
+Obsoletes:  yast2-trans-wizard
+Provides:   y2t_menu
+Provides:   yast2-trans-menu
+Obsoletes:  y2t_menu
+Obsoletes:  yast2-trans-menu
 
 # moved here from another packages
-Provides:   yast2-installation:/usr/share/YaST2/modules/Installation.ycp
-Provides:   yast2-installation:/usr/share/YaST2/modules/Product.ycp
+Provides:   yast2-dns-server:/usr/share/YaST2/modules/DnsServerAPI.pm
 Provides:   yast2-installation:/usr/share/YaST2/modules/Hotplug.ycp
 Provides:   yast2-installation:/usr/share/YaST2/modules/HwStatus.ycp
+Provides:   yast2-installation:/usr/share/YaST2/modules/Installation.ycp
+Provides:   yast2-installation:/usr/share/YaST2/modules/Product.ycp
+Provides:   yast2-mail-aliases
 Provides:   yast2-network:/usr/share/YaST2/modules/Internet.ycp
 Provides:   yast2-packager:/usr/lib/YaST2/servers_non_y2/ag_anyxml
-Provides:   yast2-dns-server:/usr/share/YaST2/modules/DnsServerAPI.pm
-Provides:   yast2-mail-aliases
 
 Summary:YaST2 - Main Package
+License:GPL-2.0+
+Group:  System/YaST
 
 %description
 This package contains scripts and data needed for SuSE Linux
@@ -115,14 +126,14 @@
 
 %package devel-doc
 Requires:   yast2 = %version
-Group:  System/YaST
 Provides:   yast2-lib-sequencer-devel
-Obsoletes:  yast2-lib-sequencer-devel
 Obsoletes:  yast2-devel
+Obsoletes:  yast2-lib-sequencer-devel
 Provides:   yast2-devel
 Requires:   yast2-core-devel
 

commit valgrind for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package valgrind for openSUSE:Factory 
checked in at 2012-09-23 17:31:08

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


Package is "valgrind", Maintainer is "dmuel...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/valgrind/valgrind.changes2012-09-13 
07:10:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.valgrind.new/valgrind.changes   2012-09-23 
17:31:09.0 +0200
@@ -1,0 +2,9 @@
+Thu Sep 20 16:34:47 UTC 2012 - bur...@net-b.de
+
+- update to 3.8.1 (bnc#776211):
+* Fixes some assertion failures.
+* Support for some missing instructions on ARM.
+* Support instructions MOVAPS and TZCNT.
+* Bug fixes.
+
+---
@@ -4 +13 @@
-- update to 3.8.0:
+- update to 3.8.0 (FATE#314090):

Old:

  valgrind-3.8.0.tar.bz2

New:

  valgrind-3.8.1.tar.bz2



Other differences:
--
++ valgrind.spec ++
--- /var/tmp/diff_new_pack.IFdT9u/_old  2012-09-23 17:31:11.0 +0200
+++ /var/tmp/diff_new_pack.IFdT9u/_new  2012-09-23 17:31:11.0 +0200
@@ -33,7 +33,7 @@
 License:GPL-2.0+
 Group:  Development/Tools/Debuggers
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Version:3.8.0
+Version:3.8.1
 Release:0
 Source0:%{name}-%{version}.tar.bz2
 # svn  di svn://svn.valgrind.org/valgrind/tags/VALGRIND_3_5_0 
svn://svn.valgrind.org/valgrind/branches/VALGRIND_3_5_BRANCH > 3_5_BRANCH.diff

++ valgrind-3.8.0.tar.bz2 -> valgrind-3.8.1.tar.bz2 ++
/work/SRC/openSUSE:Factory/valgrind/valgrind-3.8.0.tar.bz2 
/work/SRC/openSUSE:Factory/.valgrind.new/valgrind-3.8.1.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 udev for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package udev for openSUSE:Factory checked in 
at 2012-09-23 17:31:02

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


Package is "udev", Maintainer is "rmila...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/udev/udev.changes2012-08-13 
19:54:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.udev.new/udev.changes   2012-09-23 
17:31:04.0 +0200
@@ -1,0 +2,5 @@
+Tue Sep 18 09:26:59 UTC 2012 - rmila...@suse.com
+
+- create /dev/root symlink with dynamic rule for systemd (bnc#776882).
+
+---

New:

  udev-root-symlink.systemd
  write_dev_root_rule



Other differences:
--
++ udev.spec ++
--- /var/tmp/diff_new_pack.aAAAfs/_old  2012-09-23 17:31:07.0 +0200
+++ /var/tmp/diff_new_pack.aAAAfs/_new  2012-09-23 17:31:07.0 +0200
@@ -50,6 +50,8 @@
 Source1:udev-rpmlintrc
 Source2:baselibs.conf
 Source60:   boot.udev
+Source61:   write_dev_root_rule
+Source62:   udev-root-symlink.systemd
 # PATCH-FIX-OPENSUSE move-udevd-and-udevadm-back-to-sbin.patch
 Patch0: move-udevd-and-udevadm-back-to-sbin.patch
 # PATCH-FIX-OPENSUSE 0001-Reinstate-TIMEOUT-handling.patch
@@ -240,6 +242,10 @@
 
 cp -ax README NEWS $RPM_BUILD_ROOT%{_docdir}/udev
 install -m755 -D %{S:60} $RPM_BUILD_ROOT/etc/init.d/boot.udev
+install -m755 -D %{S:61} $RPM_BUILD_ROOT/lib/udev/write_dev_root_rule
+install -m644 -D %{S:62} 
$RPM_BUILD_ROOT/lib/systemd/system/udev-root-symlink.service
+mkdir -p $RPM_BUILD_ROOT/lib/systemd/system/basic.target.wants
+ln -sf ../udev-root-symlink.service 
$RPM_BUILD_ROOT/lib/systemd/system/basic.target.wants
 
 %pre
 /usr/bin/getent group tape > /dev/null 2>&1 || /usr/sbin/groupadd -r tape 2> 
/dev/null

++ boot.udev ++
--- /var/tmp/diff_new_pack.aAAAfs/_old  2012-09-23 17:31:07.0 +0200
+++ /var/tmp/diff_new_pack.aAAAfs/_new  2012-09-23 17:31:07.0 +0200
@@ -17,24 +17,12 @@
 PATH="/sbin:/bin"
 udev_timeout=180
 
-root_symlink_rule() {
-   eval $(/sbin/udevadm info --export --export-prefix=ROOT_ 
--device-id-of-file=/)
-   [ "$ROOT_MAJOR" -gt 0 ] || return
-   
-   [ -d /run/udev/rules.d ] || mkdir -m 0755 -p /run/udev/rules.d
-   ln -sf /run/udev/rules.d /dev/.udev 2>/dev/null || :
-
-   echo "\
-ACTION==\"add|change\", SUBSYSTEM==\"block\", \
-ENV{MAJOR}==\"$ROOT_MAJOR\", ENV{MINOR}==\"$ROOT_MINOR\", \
-SYMLINK+=\"root\"" > /run/udev/rules.d/10-root-symlink.rules
-}
-
-
 case "$1" in
start)
# create /dev/root symlink with dynamic rule
-   root_symlink_rule
+   if [ -x /lib/udev/write_dev_root_rule ]; then
+   /lib/udev/write_dev_root_rule
+   fi
 
# start udevd
echo -n "Starting udevd: "

++ udev-root-symlink.systemd ++
[Unit]
Description=create /dev/root symlink with dynamic rule
Before=udev.service
DefaultDependencies=no

[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/lib/udev/write_dev_root_rule
++ write_dev_root_rule ++
#!/bin/sh

eval $(/sbin/udevadm info --export --export-prefix=ROOT_ --device-id-of-file=/)

[ "$ROOT_MAJOR" -gt 0 ] || return
mkdir -m 0755 -p /run/udev/rules.d >/dev/null 2>&1
ln -sf /run/udev /dev/.udev 2>/dev/null || :

echo "ACTION==\"add|change\", SUBSYSTEM==\"block\", \
ENV{MAJOR}==\"$ROOT_MAJOR\", ENV{MINOR}==\"$ROOT_MINOR\", \
SYMLINK+=\"root\"" > /run/udev/rules.d/10-root-symlink.rules

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



commit rpm for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package rpm for openSUSE:Factory checked in 
at 2012-09-23 17:13:54

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


Package is "rpm", Maintainer is "m...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/rpm/python3-rpm.changes  2012-01-25 
11:09:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.rpm.new/python3-rpm.changes 2012-09-23 
17:13:57.0 +0200
@@ -1,0 +2,5 @@
+Sat Sep 22 13:24:30 UTC 2012 - idon...@suse.com
+
+- Update for rpm 4.10.0 
+
+---
rpm.changes: same change



Other differences:
--
++ python3-rpm.spec ++
--- /var/tmp/diff_new_pack.JcA8AP/_old  2012-09-23 17:14:04.0 +0200
+++ /var/tmp/diff_new_pack.JcA8AP/_new  2012-09-23 17:14:04.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-rpm
-Version:4.9.1.2
+Version:4.10.0
 Release:0
 #!BuildIgnore:  rpmlint-Factory
 Summary:Python Bindings for Manipulating RPM Packages

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



commit xscreensaver for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package xscreensaver for openSUSE:Factory 
checked in at 2012-09-23 17:12:22

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


Package is "xscreensaver", Maintainer is "sbra...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/xscreensaver/xscreensaver.changes
2012-06-26 17:43:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.xscreensaver.new/xscreensaver.changes   
2012-09-23 17:12:24.0 +0200
@@ -1,0 +2,5 @@
+Tue Sep 18 12:55:31 UTC 2012 - co...@suse.com
+
+- add explicit buildrequire on pkgconfig(glu)
+
+---



Other differences:
--
++ xscreensaver.spec ++
--- /var/tmp/diff_new_pack.2MsDde/_old  2012-09-23 17:12:25.0 +0200
+++ /var/tmp/diff_new_pack.2MsDde/_new  2012-09-23 17:12:25.0 +0200
@@ -30,6 +30,7 @@
 BuildRequires:  perl-XML-Parser
 BuildRequires:  update-desktop-files
 BuildRequires:  xorg-x11-devel
+BuildRequires:  pkgconfig(glu)
 Provides:   xscreensaver-gnome
 Provides:   xscrns
 Obsoletes:  xscreensaver-gnome

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



commit vigra for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package vigra for openSUSE:Factory checked 
in at 2012-09-23 17:11:46

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


Package is "vigra", Maintainer is "sbra...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/vigra/vigra.changes  2011-11-21 
15:50:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.vigra.new/vigra.changes 2012-09-23 
17:12:07.0 +0200
@@ -1,0 +2,14 @@
+Tue Sep 18 12:06:46 UTC 2012 - idon...@suse.com
+
+- Update to version 1.8.0
+  * See http://hci.iwr.uni-heidelberg.de/vigra/doc/vigra/CreditsChangelog.html
+- Drop all the patches, fixed upstream.
+- Fixed dependencies for the devel package.
+
+---
+Thu Sep  6 08:40:22 UTC 2012 - pgaj...@suse.com
+
+- build also against libpng15
+  * libpng15.patch
+
+---

Old:

  vigra-config.patch
  vigra1.6.0-autoconf.patch
  vigra1.6.0-libpng14.patch
  vigra1.6.0.tar.bz2

New:

  vigra-1.8.0-src.tar.gz



Other differences:
--
++ vigra.spec ++
--- /var/tmp/diff_new_pack.kBvJfE/_old  2012-09-23 17:12:09.0 +0200
+++ /var/tmp/diff_new_pack.kBvJfE/_new  2012-09-23 17:12:09.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package vigra
 #
-# 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,21 +15,31 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
+%define _shlibname libvigraimpex4
 Name:   vigra
-BuildRequires:  boost-devel fftw3-devel gcc-c++ libjpeg-devel libpng-devel 
libtiff-devel libtool pkg-config python-devel zlib-devel
+BuildRequires:  boost-devel
+BuildRequires:  cmake
+BuildRequires:  fftw3-devel
+BuildRequires:  gcc-c++
+%if 0%{?suse_version} >= 1220
+BuildRequires:  hdf5-devel
+%endif
+BuildRequires:  libjpeg-devel
+BuildRequires:  libpng-devel
+BuildRequires:  libtiff-devel
+%if 0%{?suse_version} > 1220
+BuildRequires:  openexr-devel
+%endif
+BuildRequires:  pkg-config
+BuildRequires:  python-devel
+BuildRequires:  zlib-devel
+Summary:Computer vision Library
 License:MIT
 Group:  Development/Libraries/C and C++
-AutoReqProv:on
-Summary:Computer vision Library
-Version:1.6.0
-Release:20
-Source: %{name}%{version}.tar.bz2
-Patch:  vigra1.6.0-autoconf.patch
-Patch1: vigra1.6.0-libpng14.patch
-Patch2: vigra-config.patch
+Version:1.8.0
+Release:0
+Source: 
http://hci.iwr.uni-heidelberg.de/vigra/vigra-%{version}-src.tar.gz
 Url:http://kogs-www.informatik.uni-hamburg.de/~koethe/vigra/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -41,20 +51,13 @@
 VIGRA component to the needs of your application, without giving up
 execution speed.
 
-
-
-Authors:
-
-Ullrich Koethe 
-
-%package -n libvigraimpex2
-License:MIT
-Group:  Development/Libraries/C and C++
+%package -n %{_shlibname}
 Summary:Computer vision Library
+Group:  Development/Libraries/C and C++
 Provides:   %{name} = %{version}
 Obsoletes:  %{name} < %{version}
 
-%description -n libvigraimpex2
+%description -n %{_shlibname}
 VIGRA stands for "Vision with Generic Algorithms". It is a novel
 computer vision library that puts its main emphasis on customizable
 algorithms and data structures. By using template techniques similar to
@@ -62,21 +65,22 @@
 VIGRA component to the needs of your application, without giving up
 execution speed.
 
-
-
-Authors:
-
-Ullrich Koethe 
-
 %package devel
-License:MIT
-Group:  Development/Libraries/C and C++
 Summary:Development files for VIGRA Library
-Requires:   libvigraimpex2 = %{version} 
-Requires:   glibc-devel
+Group:  Development/Libraries/C and C++
+Requires:   %{_shlibname} = %{version}
+Requires:   fftw3-devel
+%if 0%{?suse_version} >= 1220
+Requires:   hdf5-devel
+%endif
+Requires:   libjpeg-devel
+Requires:   libpng-devel
 Requires:   libstdc++-devel 
 Requires:   libtiff-devel
-Requires:   fftw3-devel
+%if 0%{?suse_version} > 1220
+Requires:   openexr-devel
+%endif
+Requires:   zlib-devel
 
 %description devel
 VIGRA stands for "Vision with Generic Algorithms". It is a novel
@@ -86,62 +90,35 @@
 VIGRA component to the needs of your application, without giving up
 execution spe

commit vegastrike for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package vegastrike for openSUSE:Factory 
checked in at 2012-09-23 17:11:29

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


Package is "vegastrike", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/vegastrike/vegastrike.changes2012-05-11 
20:48:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.vegastrike.new/vegastrike.changes   
2012-09-23 17:11:32.0 +0200
@@ -1,0 +2,5 @@
+Tue Sep 18 12:27:58 UTC 2012 - co...@suse.com
+
+- add explict buildrequire on glu
+
+---



Other differences:
--
++ vegastrike.spec ++
--- /var/tmp/diff_new_pack.kLBI7f/_old  2012-09-23 17:11:33.0 +0200
+++ /var/tmp/diff_new_pack.kLBI7f/_new  2012-09-23 17:11:33.0 +0200
@@ -51,6 +51,9 @@
 BuildRequires:  fdupes
 BuildRequires:  libexpat-devel
 BuildRequires:  xorg-x11-libXmu-devel
+%if %suse_version > 1210
+BuildRequires:  pkgconfig(glu)
+%endif
 %endif
 %if 0%{?fedora} > 0
 BuildRequires:  expat-devel
@@ -123,9 +126,6 @@
 %fdupes -s $RPM_BUILD_ROOT%{_mandir}/man6
 %endif
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-,root,root,-)
 %doc AUTHORS COPYING DOCUMENTATION README ToDo.txt

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



commit stellarium for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package stellarium for openSUSE:Factory 
checked in at 2012-09-23 17:11:08

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


Package is "stellarium", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/stellarium/stellarium.changes2012-06-13 
13:33:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.stellarium.new/stellarium.changes   
2012-09-23 17:11:12.0 +0200
@@ -1,0 +2,5 @@
+Tue Sep 18 19:22:10 UTC 2012 - idon...@suse.com
+
+- Add explicit glu dependency
+
+---



Other differences:
--
++ stellarium.spec ++
--- /var/tmp/diff_new_pack.edRHyZ/_old  2012-09-23 17:11:17.0 +0200
+++ /var/tmp/diff_new_pack.edRHyZ/_new  2012-09-23 17:11:17.0 +0200
@@ -27,15 +27,16 @@
 Source1:stellarium_user_guide-0.10.2-1.pdf
 Source2:stellarium_user_guide.desktop
 BuildRequires:  ImageMagick
-BuildRequires:  hicolor-icon-theme
 BuildRequires:  Mesa-devel
 BuildRequires:  cmake
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
+BuildRequires:  hicolor-icon-theme
 BuildRequires:  libqt4-devel >= 4.6
 BuildRequires:  phonon-devel
 BuildRequires:  update-desktop-files
 BuildRequires:  zlib-devel
+BuildRequires:  pkgconfig(glu)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

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



commit samba for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package samba for openSUSE:Factory checked 
in at 2012-09-23 17:10:44

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


Package is "samba", Maintainer is "samba-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/samba/samba.changes  2012-09-17 
14:09:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.samba.new/samba.changes 2012-09-23 
17:11:09.0 +0200
@@ -1,0 +2,41 @@
+Mon Sep 17 12:00:22 UTC 2012 - lmue...@suse.com
+
+- Update to 3.6.8.
+  + Fix crash bug in smbd caused by a blocking lock followed by close;
+(bso#9084).
+  + Fix Winbind panic if we couldn't find the domain; (bso#9135).
+
+---
+Mon Sep 17 11:56:46 UTC 2012 - lmue...@suse.com
+
+- Backport FSCTL codes and fix segfault in smbstatus from master; (bso#9058).
+- Fix bad call to memcpy source3/registry/regfio.c; (bso#9065).
+- "Domain Users" incorrectly added as additional group on domain members;
+  (bso#9066).
+- Use correct RID for "Domain Guests" primary group; (bso#9067).
+- Fix crash bug in smbd caused by a blocking lock followed by close;
+  (bso#9084).
+- Fix smbclient/tarmode panic when connecting to Windows 2000 clients;
+  (bso#9088).
+- Fix refreshing of Kerberos tickets in Winbind; (bso#9098).
+- Fix identification of idle clients in Winbind to avoid crashes and NDR
+  parsing errors; (bso#9104).
+- Fix compilation with newer MIT Kerberos which hides internal symbols;
+  (bso#9111).
+- Fix flooding the logs with records we don't find in pcap; (bso#9112).
+- Initialize the print backend after we setup winreg; (bso#9122).
+- Fix lprng job tracking errors; (bso#9123).
+- Fix setting of "inherited" bit on inherited ACE's; (bso#9124).
+- Fix Winbind panic if we couldn't find the domain; (bso#9135).
+- Make 'smbclient allinfo' show the snapshot list; (bso#9137).
+- Fix nfs quota support with Linux nfs4 mounts; (bso#9144).
+- Valid open requests can cause smbd assert due to incorrect oplock handling
+  on delete requests; (bso#9150).
+
+---
+Thu Sep 13 05:32:48 MDT 2012 - sharga...@novell.com
+
+- NMB registration for a duplicate workstation fails with registration
+  refuse; (bso#9085); (bnc#770056).
+
+---

Old:

  samba-3.6.7.tar.bz2

New:

  samba-3.6.8.tar.bz2



Other differences:
--
++ samba-doc.spec ++
--- /var/tmp/diff_new_pack.dAMIc5/_old  2012-09-23 17:11:12.0 +0200
+++ /var/tmp/diff_new_pack.dAMIc5/_new  2012-09-23 17:11:12.0 +0200
@@ -93,7 +93,7 @@
 BuildRequires:  libtdb-devel
 BuildRequires:  libtevent-devel
 %endif
-%definesamba_ver 3.6.7
+%definesamba_ver 3.6.8
 %definesamba_ver_suffix %nil
 %definesamba_ver_full %{samba_ver}%{samba_ver_suffix}
 %if 0%{?suse_version} && 0%{?suse_version} < 
@@ -117,7 +117,7 @@
 %else
 %definebuild_make_smp_mflags %{?jobs:-j%jobs}
 %endif
-Version:3.6.7
+Version:3.6.8
 Release:1
 %defineldapsmb_ver 1.34b
 Url:http://www.samba.org/
@@ -463,7 +463,7 @@
 the man pages.
 
 
-Source Timestamp: 2833
-Branch  : 3.6.7
+Source Timestamp: 2839
+Branch  : 3.6.8
 
 %changelog

++ samba.spec ++
--- /var/tmp/diff_new_pack.dAMIc5/_old  2012-09-23 17:11:12.0 +0200
+++ /var/tmp/diff_new_pack.dAMIc5/_new  2012-09-23 17:11:12.0 +0200
@@ -93,7 +93,7 @@
 BuildRequires:  libtdb-devel
 BuildRequires:  libtevent-devel
 %endif
-%definesamba_ver 3.6.7
+%definesamba_ver 3.6.8
 %definesamba_ver_suffix %nil
 %definesamba_ver_full %{samba_ver}%{samba_ver_suffix}
 %if 0%{?suse_version} && 0%{?suse_version} < 
@@ -117,7 +117,7 @@
 %else
 %definebuild_make_smp_mflags %{?jobs:-j%jobs}
 %endif
-Version:3.6.7
+Version:3.6.8
 Release:1
 %defineldapsmb_ver 1.34b
 License:GPL-3.0+
@@ -224,8 +224,8 @@
 how to.
 
 
-Source Timestamp: 2833
-Branch  : 3.6.7
+Source Timestamp: 2839
+Branch  : 3.6.8
 
 %package client
 License:GPL-3.0+
@@ -265,8 +265,8 @@
 how to.
 
 
-Source Timestamp: 2833
-Branch  : 3.6.7
+Source Timestamp: 2839
+Branch  : 3.6.8
 
 %if 0%{?suse_version} == 0 || 0%{?suse_version} > 1020
 
@@ -285,8 +285,8 @@
 develop programs which make use of Samba.
 
 
-Source Timestamp: 2833
-Branch  : 3.6.7
+Source Timestamp: 2839
+Branch  : 3.6.8
 
 %endif
 %if 0%{?suse_version} && 0%{?suse_version} < 1001 || 0%{?suse_version} > 1110
@@ -310,8 +310,8 @@
 the man pages.
 
 
-Source Timestamp: 2833
-Branch  

commit rubygem-locale for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package rubygem-locale for openSUSE:Factory 
checked in at 2012-09-23 17:10:15

Comparing /work/SRC/openSUSE:Factory/rubygem-locale (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-locale.new (New)


Package is "rubygem-locale", Maintainer is "r...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-locale/rubygem-locale.changes
2012-03-27 08:58:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-locale.new/rubygem-locale.changes   
2012-09-23 17:10:40.0 +0200
@@ -1,0 +2,10 @@
+Thu Aug 30 05:40:56 UTC 2012 - co...@suse.com
+
+- updated to version 2.0.8
+
+---
+Wed Aug 29 08:22:38 UTC 2012 - co...@suse.com
+
+- updated to version 2.0.7
+
+---

Old:

  locale-2.0.5.gem

New:

  locale-2.0.8.gem



Other differences:
--
++ rubygem-locale.spec ++
--- /var/tmp/diff_new_pack.JtJTmn/_old  2012-09-23 17:10:43.0 +0200
+++ /var/tmp/diff_new_pack.JtJTmn/_new  2012-09-23 17:10:43.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package rubygem-locale (Version 2.0.5)
+# spec file for package rubygem-locale
 #
-# 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,48 +15,65 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   rubygem-locale
-Version:2.0.5
+Version:2.0.8
 Release:0
 %define mod_name locale
-#
-Group:  Development/Languages/Ruby
-License:Ruby
-#
+%define mod_full_name %{mod_name}-%{version}
+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  rubygems_with_buildroot_patch
-%rubygems_requires
-Provides:   
ruby-gettext:%{_libdir}/ruby/vendor_ruby/1.8/gettext/active_record.rb
-#
-Url:http://locale.rubyforge.org/
-Source: %{mod_name}-%{version}.gem
-#
-Summary:Ruby-Locale is the pure ruby library which provides basic APIs 
for localization
+BuildRequires:  ruby-macros >= 1
+Url:https://github.com/ruby-gettext/locale
+Source: %{mod_full_name}.gem
+Summary:Ruby-Locale is the pure ruby library which provides basic APIs 
for
+License:Ruby
+Group:  Development/Languages/Ruby
 
 %description
 Ruby-Locale is the pure ruby library which provides basic APIs for
 localization.
 
+%package doc
+Summary:RDoc documentation for %{mod_name}
+Group:  Development/Languages/Ruby
+Requires:   %{name} = %{version}
+
+%description doc
+Documentation generated at gem installation time.
+Usually in RDoc and RI formats.
 
+%package testsuite
+Summary:Test suite for %{mod_name}
+Group:  Development/Languages/Ruby
+Requires:   %{name} = %{version}
+
+%description testsuite
+Test::Unit or RSpec files, useful for developers.
 
 %prep
+#gem_unpack
+#if you need patches, apply them here and replace the # with a % sign in the 
surrounding lines
+#gem_build
 
 %build
 
 %install
-%gem_install %{S:0}
-
-%clean
-%{__rm} -rf %{buildroot}
+%gem_install -f
 
 %files
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_name}-%{version}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_name}-%{version}.gemspec
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_name}-%{version}/
+%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
+%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
+%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
+%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
+
+%files doc
+%defattr(-,root,root,-)
+%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
+
+%files testsuite
+%defattr(-,root,root,-)
+%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
 
 %changelog

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



commit rubygem-inifile for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package rubygem-inifile for openSUSE:Factory 
checked in at 2012-09-23 17:08:54

Comparing /work/SRC/openSUSE:Factory/rubygem-inifile (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-inifile.new (New)


Package is "rubygem-inifile", Maintainer is "jsr...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-inifile/rubygem-inifile.changes  
2011-11-28 18:27:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-inifile.new/rubygem-inifile.changes 
2012-09-23 17:08:56.0 +0200
@@ -1,0 +2,10 @@
+Thu Aug 30 05:42:56 UTC 2012 - co...@suse.com
+
+- updated to version 2.0.0
+
+---
+Wed Aug  1 05:04:39 UTC 2012 - co...@suse.com
+
+- updated to version 1.1.0
+
+---

Old:

  inifile-0.4.0.gem

New:

  inifile-2.0.0.gem



Other differences:
--
++ rubygem-inifile.spec ++
--- /var/tmp/diff_new_pack.CGvWHc/_old  2012-09-23 17:08:57.0 +0200
+++ /var/tmp/diff_new_pack.CGvWHc/_new  2012-09-23 17:08:57.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-inifile
 #
-# 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,80 +15,95 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
+
 Name:   rubygem-inifile
-Version:0.4.0
+Version:2.0.0
 Release:0
 %define mod_name inifile
-#
-Group:  Development/Languages/Ruby
-License:MIT
-#
+%define mod_full_name %{mod_name}-%{version}
+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  rubygems_with_buildroot_patch
-%rubygems_requires
-#
-Url:http://gemcutter.org/gems/inifile
-Source: %{mod_name}-%{version}.gem
-#
+BuildRequires:  ruby-macros >= 1
+BuildRequires:  rubygem(rdoc) > 3.10
+Url:http://rubygems.org/gems/inifile
+Source: %{mod_full_name}.gem
 Summary:INI file reader and writer
-%description
-This is a native Ruby package for reading and writing INI files.
+License:MIT
+Group:  Development/Languages/Ruby
 
+%description
 Although made popular by Windows, INI files can be used on any system thanks
 to their flexibility. They allow a program to store configuration data, which
 can then be easily parsed and changed. Two notable systems that use the INI
 format are Samba and Trac.
-
-An initialization file, or INI file, is a configuration file that contains
-configuration data for Microsoft Windows based applications. Starting with
-Windows 95, the INI file format was superseded but not entirely replaced by
-a registry database in Microsoft operating systems.
-
-Although made popular by Windows, INI files can be used on any system thanks
-to their flexibility. They allow a program to store configuration data, which
-can then be easily parsed and changed.
+More information about INI files can be found on the [Wikipedia
+Page](http://en.wikipedia.org/wiki/INI_file).
+### Properties
+The basic element contained in an INI file is the property. Every property has
+a name and a value, delimited by an equals sign *=*. The name appears to the
+left of the equals sign and the value to the right.
+name=value
+### Sections
+Section declarations start with *[* and end with *]* as in `[section1]` and
+`[section2]` shown in the example below. The section declaration marks the
+beginning of a section. All properties after the section declaration will be
+associated with that section.
+### Comments
+All lines beginning with a semicolon *;* or a number sign *#* are considered
+to be comments. Comment lines are ignored when parsing INI files.
+### Example File Format
+A typical INI file might look like this:
+[section1]
+; some comment on section1
+var1 = foo
+var2 = doodle
+var3 = multiline values \
+are also possible
+[section2]
+# another comment
+var1 = baz
+var2 = shoodle
 
 %package doc
 Summary:RDoc documentation for %{mod_name}
 Group:  Development/Languages/Ruby
-License:MIT
 Requires:   %{name} = %{version}
+
 %description doc
 Documentation generated at gem installation time.
 Usually in RDoc and RI formats.
 
-
 %package testsuite
 Summary:Test suite for %{mod_name}
 Group:  Development/Languages/Ruby
-License:MIT
 Requires:   %{name} = %{version}
+
 %description testsuite
 Test::Unit or RSpec files, useful for developers.
 
-
 %prep
+#gem_unpack
+#

commit python-chardet for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package python-chardet for openSUSE:Factory 
checked in at 2012-09-23 17:08:37

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


Package is "python-chardet", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/python-chardet/python-chardet.changes
2012-02-15 22:24:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-chardet.new/python-chardet.changes   
2012-09-23 17:08:39.0 +0200
@@ -1,0 +2,6 @@
+Fri Jul 27 15:10:36 UTC 2012 - alexan...@exatati.com.br
+
+- Update to 1.1:
+  - Sorry, no changelog.
+
+---

Old:

  python2-chardet-2.0.1.tar.bz2

New:

  chardet-1.1.tar.bz2



Other differences:
--
++ python-chardet.spec ++
--- /var/tmp/diff_new_pack.KFsybz/_old  2012-09-23 17:08:40.0 +0200
+++ /var/tmp/diff_new_pack.KFsybz/_new  2012-09-23 17:08:40.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-chardet
 #
-# 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
@@ -14,25 +14,25 @@
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
-%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
+
 
 Name:   python-chardet
-Version:2.0.1
+Version:1.1
 Release:0
-Url:http://chardet.feedparser.org/
 Summary:Universal encoding detector
 License:LGPL-2.1+
 Group:  Development/Languages/Python
-Source: python2-chardet-%{version}.tar.bz2
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Url:http://chardet.feedparser.org/
+Source: chardet-%{version}.tar.bz2
 BuildRequires:  python-devel
-%if 0%{?suse_version}
-%py_requires
-%if 0%{?suse_version} > 1110
+BuildRequires:  python-distribute
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%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()")}
+%{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
+%else
 BuildArch:  noarch
 %endif
-%endif
 
 %description
 Universal character encoding detector
@@ -51,8 +51,20 @@
  - ISO-8859-8, windows-1255 (Visual and Logical Hebrew)
  - TIS-620 (Thai)
 
+Requires Python 2.1 or later
+
+Command-line Tool
+-
+
+chardet comes with a command-line script which reports on the encodings of one
+or more files::
+
+% chardetect.py somefile someotherfile
+somefile: windows-1252 with confidence 0.5
+someotherfile: ascii with confidence 1.0
+
 %prep
-%setup -q -n python2-chardet-%{version}
+%setup -q -n chardet-%{version}
 
 %build
 python setup.py build
@@ -63,5 +75,6 @@
 %files
 %defattr(-,root,root,-)
 %{python_sitelib}/*
+%{_bindir}/chardetect.py
 
 %changelog

++ python2-chardet-2.0.1.tar.bz2 -> chardet-1.1.tar.bz2 ++
 2183 lines of diff (skipped)

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



commit perl-SDL_Perl for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package perl-SDL_Perl for openSUSE:Factory 
checked in at 2012-09-23 17:08:28

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


Package is "perl-SDL_Perl", Maintainer is "prus...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/perl-SDL_Perl/perl-SDL_Perl.changes  
2011-09-23 12:38:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-SDL_Perl.new/perl-SDL_Perl.changes 
2012-09-23 17:08:30.0 +0200
@@ -1,0 +2,5 @@
+Tue Sep 18 19:12:56 UTC 2012 - idon...@suse.com
+
+- Add explicit build dependency on glu 
+
+---



Other differences:
--
++ perl-SDL_Perl.spec ++
--- /var/tmp/diff_new_pack.Rh7pw3/_old  2012-09-23 17:08:31.0 +0200
+++ /var/tmp/diff_new_pack.Rh7pw3/_new  2012-09-23 17:08:31.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-SDL_Perl (Version 2.2.6)
+# spec file for package perl-SDL_Perl
 #
-# 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,18 +15,23 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-SDL_Perl
-BuildRequires:  Mesa-devel libSDL_image-devel libSDL_mixer-devel 
libSDL_net-devel libSDL_ttf-devel perl-Module-Build perl-YAML
+BuildRequires:  Mesa-devel
+BuildRequires:  libSDL_image-devel
+BuildRequires:  libSDL_mixer-devel
+BuildRequires:  libSDL_net-devel
+BuildRequires:  libSDL_ttf-devel
+BuildRequires:  perl-Module-Build
+BuildRequires:  perl-YAML
+BuildRequires:  pkgconfig(glu)
 Url:http://sdl.perl.org/
-License:LGPL-2.1+
-Group:  System/Libraries
 Requires:   perl = %{perl_version}
 Version:2.2.6
-Release:6
+Release:0
 Summary:Glue between Perl and SDL
+License:LGPL-2.1+
+Group:  System/Libraries
 # .bz2 is larger than .gz, that's why we use .gz  ...
 Source: 
http://search.cpan.org/CPAN/authors/id/K/KT/KTHAKORE/SDL_Perl-v%{version}.tar.gz
 Patch0: %{name}-2.1.3-perl-5.10.0.patch
@@ -37,12 +42,6 @@
 %description
 Programming SDL with Perl.
 
-
-
-Authors:
-
-David J. Goehrig 
-
 %prep
 %setup -q -n SDL_Perl-v%{version}
 %patch0
@@ -59,9 +58,6 @@
 # %check
 # ./Build test
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-,root,root)
 %doc CHANGELOG COPYING README

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



commit orc for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package orc for openSUSE:Factory checked in 
at 2012-09-23 17:08:01

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


Package is "orc", Maintainer is "sts...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/orc/orc.changes  2012-03-09 21:24:56.0 
+0100
+++ /work/SRC/openSUSE:Factory/.orc.new/orc.changes 2012-09-23 
17:08:02.0 +0200
@@ -1,0 +2,7 @@
+Mon Sep 17 17:48:52 UTC 2012 - sch...@linux-m68k.org
+
+- ppc64.patch: Add support for PowerPC64
+- altivec.patch: Fix altivec implementation of cmpltf and cmplef operations
+- Reenable check on ppc and ppc64
+
+---

New:

  altivec.patch
  ppc64.patch



Other differences:
--
++ orc.spec ++
--- /var/tmp/diff_new_pack.9VtIuU/_old  2012-09-23 17:08:05.0 +0200
+++ /var/tmp/diff_new_pack.9VtIuU/_new  2012-09-23 17:08:05.0 +0200
@@ -26,6 +26,8 @@
 Url:http://code.entropywave.com/projects/orc/
 Source: 
http://code.entropywave.com/download/orc/%{name}-%{version}.tar.gz
 Source99:   baselibs.conf
+Patch1: ppc64.patch
+Patch2: altivec.patch
 BuildRequires:  gtk-doc
 BuildRequires:  pkg-config
 Provides:   %{name}-devel = %{version}
@@ -62,6 +64,8 @@
 
 %prep
 %setup -q
+%patch1
+%patch2
 
 %build
 %configure \
@@ -77,7 +81,7 @@
 find %{buildroot}%{_libdir} -name '*.la' -delete -print
 
 %check
-%ifnarch %arm ppc ppc64
+%ifnarch %arm
 make check
 %endif
 

++ altivec.patch ++
--- orc/orcrules-altivec.c
+++ orc/orcrules-altivec.c
@@ -1141,7 +1141,7 @@ powerpc_rule_cmpltf (OrcCompiler *p, void *user, 
OrcInstruction *insn)
   int src2 = ORC_SRC_ARG (p, insn, 1);
   int dest = ORC_DEST_ARG (p, insn, 0);
 
-  powerpc_emit_VXR (p, "vcmpgefp", 0x11c6, dest, src2, src1, FALSE);
+  powerpc_emit_VXR (p, "vcmpgtfp", 0x12c6, dest, src2, src1, FALSE);
 }
 
 static void
@@ -1151,7 +1151,7 @@ powerpc_rule_cmplef (OrcCompiler *p, void *user, 
OrcInstruction *insn)
   int src2 = ORC_SRC_ARG (p, insn, 1);
   int dest = ORC_DEST_ARG (p, insn, 0);
 
-  powerpc_emit_VXR (p, "vcmpgtfp", 0x12c6, dest, src2, src1, FALSE);
+  powerpc_emit_VXR (p, "vcmpgefp", 0x11c6, dest, src2, src1, FALSE);
 }
 
 static void
++ ppc64.patch ++
--- orc/orcpowerpc.c
+++ orc/orcpowerpc.c
@@ -150,6 +150,48 @@ powerpc_emit_stwu (OrcCompiler *compiler, int regs, int 
rega, int offset)
 }
 
 void
+powerpc_emit_ld (OrcCompiler *compiler, int regd, int rega, int imm)
+{
+  unsigned int insn;
+
+  ORC_ASM_CODE(compiler,"  ld %s, %d(%s)\n",
+  powerpc_get_regname(regd),
+  imm, powerpc_get_regname(rega));
+  insn = (58<<26) | (powerpc_regnum (regd)<<21) | (powerpc_regnum (rega)<<16);
+  insn |= imm&0x;
+
+  powerpc_emit (compiler, insn);
+}
+
+void
+powerpc_emit_std (OrcCompiler *compiler, int regs, int rega, int offset)
+{
+  unsigned int insn;
+
+  ORC_ASM_CODE(compiler,"  std %s, %d(%s)\n",
+  powerpc_get_regname(regs),
+  offset, powerpc_get_regname(rega));
+  insn = (62<<26) | (powerpc_regnum (regs)<<21) | (powerpc_regnum (rega)<<16);
+  insn |= offset&0x;
+
+  powerpc_emit (compiler, insn);
+}
+
+void
+powerpc_emit_stdu (OrcCompiler *compiler, int regs, int rega, int offset)
+{
+  unsigned int insn;
+
+  ORC_ASM_CODE(compiler,"  stdu %s, %d(%s)\n",
+  powerpc_get_regname(regs),
+  offset, powerpc_get_regname(rega));
+  insn = (62<<26) | (powerpc_regnum (regs)<<21) | (powerpc_regnum (rega)<<16);
+  insn |= (offset&0x) | 1;
+
+  powerpc_emit (compiler, insn);
+}
+
+void
 powerpc_emit_srawi (OrcCompiler *compiler, int regd, int rega, int shift,
 int record)
 {
@@ -381,6 +423,9 @@ orc_powerpc_flush_cache (OrcCode *code)
   int size = code->code_size;
 
   ptr = code->code;
+#ifdef __powerpc64__
+  *(unsigned char **) ptr = (unsigned char *) code->exec + 24;
+#endif
   for (i=0;iis_64bit) {
+powerpc_emit_ld (p,
+   greg,
+   POWERPC_R3,
+   (int)ORC_STRUCT_OFFSET(OrcExecutor, arrays[ORC_VAR_A2]));
+powerpc_emit_ld (p,
+   greg, greg,
+   (int)ORC_STRUCT_OFFSET(OrcCode, exec));
+  } else {
+powerpc_emit_lwz (p,
+   greg,
+   POWERPC_R3,
+   (int)ORC_STRUCT_OFFSET(OrcExecutor, arrays[ORC_VAR_A2]));
+powerpc_emit_lwz (p,
+   greg, greg,
+   (int)ORC_STRUCT_OFFSET(OrcCode, exec));
+  }
 
   powerpc_add_fixup (p, 1, p->codeptr, label_data);
   {
--- orc/orcpowerpc.h
+++ orc/orcpowerpc.h
@@ -6,6 +6,10 @@
 
 ORC_BEGIN_DECLS
 
+typedef enum {
+  ORC_TARGET_POWERPC_64BIT = (1<<0)
+} OrcTargetPowerPCFlags;
+
 #ifdef ORC_ENABLE_UNSTABLE_API
 
 enum {
@@ -86,6 +90,9 @@ void powerpc_emit_addi (OrcCompiler *compil

commit mysql-workbench for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package mysql-workbench for openSUSE:Factory 
checked in at 2012-09-23 17:07:38

Comparing /work/SRC/openSUSE:Factory/mysql-workbench (Old)
 and  /work/SRC/openSUSE:Factory/.mysql-workbench.new (New)


Package is "mysql-workbench", Maintainer is "mhruse...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/mysql-workbench/mysql-workbench.changes  
2012-04-17 07:46:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.mysql-workbench.new/mysql-workbench.changes 
2012-09-23 17:07:40.0 +0200
@@ -1,0 +2,16 @@
+Tue Sep 18 14:40:15 UTC 2012 - idon...@suse.com
+
+- Add build dependency on xxf86vm to fix the build 
+
+---
+Sun Jun 17 11:16:14 UTC 2012 - gan...@opensuse.org
+
+- update to version 5.2.40
+  see http://dev.mysql.com/doc/workbench/en/wb-news-5-2-40.html
+  see http://dev.mysql.com/doc/workbench/en/wb-news-5-2-39.html
+  see http://dev.mysql.com/doc/workbench/en/wb-news-5-2-38.html
+- add mime type support
+- use fdups
+- rebase patches
+
+---

Old:

  mysql-workbench-gpl-5.2.34-ctemplate-fix.patch
  mysql-workbench-gpl-5.2.36-avoid-version.patch
  mysql-workbench-gpl-5.2.37-src.tar.bz2

New:

  mysql-workbench-gpl-5.2.40-avoid-version.patch
  mysql-workbench-gpl-5.2.40-ctemplate-fix.patch
  mysql-workbench-gpl-5.2.40-src.tar.gz



Other differences:
--
++ mysql-workbench.spec ++
--- /var/tmp/diff_new_pack.dqWw23/_old  2012-09-23 17:07:44.0 +0200
+++ /var/tmp/diff_new_pack.dqWw23/_new  2012-09-23 17:07:44.0 +0200
@@ -16,18 +16,17 @@
 #
 
 
-
 Name:   mysql-workbench
 Summary:A MySQL visual modeling tool
 License:GPL-2.0+
 Group:  Productivity/Databases/Clients
-Version:5.2.37
+Version:5.2.40
 Release:0
 Url:http://dev.mysql.com/downloads/workbench
-Source: %{name}-gpl-%{version}-src.tar.bz2
+Source: %{name}-gpl-%{version}-src.tar.gz
 Source1:openSUSE_(Vendor_Package).xml
-Patch0: mysql-workbench-gpl-5.2.34-ctemplate-fix.patch
-Patch1: mysql-workbench-gpl-5.2.36-avoid-version.patch
+Patch0: mysql-workbench-gpl-5.2.40-ctemplate-fix.patch
+Patch1: mysql-workbench-gpl-5.2.40-avoid-version.patch
 Summary:A MySQL visual modeling tool
 Group:  Productivity/Databases/Clients
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -58,6 +57,7 @@
 BuildRequires:  php-devel
 BuildRequires:  python-devel
 BuildRequires:  readline-devel
+BuildRequires:  pkgconfig(xxf86vm)
 %if 0%{?suse_version}
 BuildRequires:  FastCGI-devel
 BuildRequires:  libuuid-devel
@@ -76,14 +76,18 @@
 %endif
 BuildRequires:  cairo-devel >= 1.5.12
 BuildRequires:  libctemplate-devel
+Requires(post):shared-mime-info
+Requires(postun):  shared-mime-info
+Requires(post):desktop-file-utils
+Requires(postun):  desktop-file-utils
 Requires:   python-paramiko
 Requires:   python-pexpect
-Provides:   mysql-administrator=%{version}
-Provides:   mysql-gui-tools=%{version}
-Provides:   mysql-querybrovser=%{version}
-Obsoletes:  mysql-administrator<%{version}
-Obsoletes:  mysql-gui-tools<%{version}
-Obsoletes:  mysql-querybrovser<%{version}
+Provides:   mysql-administrator = %{version}
+Provides:   mysql-gui-tools = %{version}
+Provides:   mysql-querybrovser = %{version}
+Obsoletes:  mysql-administrator < %{version}
+Obsoletes:  mysql-gui-tools < %{version}
+Obsoletes:  mysql-querybrovser < %{version}
 
 %description
 MySQL Workbench provides DBAs and developers an integrated tools environment
@@ -132,12 +136,10 @@
 rm -f %{buildroot}%{_libdir}/%{name}/lib*.so
 install -D -m 0644 images/icons/MySQLWorkbench-48.png 
%{buildroot}%{_datadir}/pixmaps/%{name}.png
 install -D -m 0644 "%{S:1}" %{buildroot}%{_datadir}/%{name}/mysql.profiles
-rm -f "$RPM_SOURCE_DIR"/*.desktop
-sed -i 's/^Icon.*/Icon=%{name}.png/' 
"%{buildroot}%{_datadir}"/applications/MySQLWorkbench.desktop
-sed -i 's/;$//' "%{buildroot}%{_datadir}"/applications/MySQLWorkbench.desktop
+
 %if 0%{?suse_version}
 mv "%{buildroot}%{_datadir}"/applications/MySQLWorkbench.desktop 
"$RPM_SOURCE_DIR"/%{name}.desktop
-%suse_update_desktop_file -i -r -G "Database GUI Tool" %{name} 
"GTK;Development;Database;GUIDesigner;"
+%suse_update_desktop_file -i -r -G "Database GUI Tool" %{name} 
"GTK;Development;Office;Database;GUIDesigner;"
 %fdupes -s %{_datadir}/%{name}/images
 %else
 mv "%{buildroot}%{_datadir}"/applications/MySQLWorkbench.desktop 
"%{buildroot}%{_datadir}"/applications/%{name}.desktop
@@ -145,6 +147,7 @@
 for i in ChangeLog README.plu

commit khunphan for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package khunphan for openSUSE:Factory 
checked in at 2012-09-23 17:06:10

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


Package is "khunphan", Maintainer is "p...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/khunphan/khunphan.changes2012-09-06 
08:52:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.khunphan.new/khunphan.changes   2012-09-23 
17:06:11.0 +0200
@@ -1,0 +2,5 @@
+Tue Sep 18 13:45:44 UTC 2012 - idon...@suse.com
+
+- Add explicity glu dependency 
+
+---



Other differences:
--
++ khunphan.spec ++
--- /var/tmp/diff_new_pack.FackpH/_old  2012-09-23 17:06:14.0 +0200
+++ /var/tmp/diff_new_pack.FackpH/_new  2012-09-23 17:06:14.0 +0200
@@ -27,6 +27,7 @@
 BuildRequires:  libxml2-devel
 BuildRequires:  update-desktop-files
 BuildRequires:  xorg-x11-Mesa-devel
+BuildRequires:  pkgconfig(glu)
 Summary:Traditional Thai Puzzle Board Game in 3D with Wooden Blocks
 License:GPL-2.0+
 Group:  Amusements/Games/3D/Other

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



commit kdevelop4 for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2012-09-23 17:05:58

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


Package is "kdevelop4", Maintainer is "kde-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2012-04-19 
12:38:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2012-09-23 
17:05:59.0 +0200
@@ -1,0 +2,24 @@
+Mon Sep 10 10:56:46 UTC 2012 - wstephen...@suse.com
+
+- Update to 4.3.90 (4.4RC1)
+  * kdevelop_attach renamed to "kdevelop!"
+  * Fix auto type-deduction for cases like 'auto a(1.1);'.
+  * Move plain Qt application templates into a Qt category
+  * Add Thread and Frame Information on Execution
+  * Improve the way we map to cmake's variables model
+  * support multiple location breakpoints
+  * Fix threading problem in the CMakeManager
+  * add support for padding parenthesis headers
+  * Improve KDev's Dashboard projects' names
+  * Properly add the build directory
+  * Properly initialize CMAKE_INCLUDE_CURRENT_DIR
+  * Explicitly disable "Apply" button after re-reading CMake cache.
+  * Be less strict about named and unnamed arguments.
+  * Let the OutputView take ownership of the make output delegate.
+  * Directly set the model's data when we toggle a checkbox.
+  * Don't call load() in our ctor, that is done automatically.
+  * Don't tell the user the make config has changed when he first sees it.
+  * Fix memory leaks of Ui objects.
+  * Don't use raw Declaration pointers across unlocked DUChain code paths.
+
+---

Old:

  kdevelop-4.3.1.tar.bz2

New:

  kdevelop-4.3.90.tar.bz2



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.vBU5cw/_old  2012-09-23 17:06:00.0 +0200
+++ /var/tmp/diff_new_pack.vBU5cw/_new  2012-09-23 17:06:00.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdevelop4
-Version:4.3.1
+Version:4.3.90
 Release:0
 Summary:Integrated Development Environment for the X Window System, 
Qt, KDE, and GNOME
 License:GPL-3.0+
@@ -67,6 +67,7 @@
   %find_lang kdevqthelp %{name}.lang
   %find_lang kdevokteta %{name}.lang
   %find_lang kdevmanpage %{name}.lang
+  %find_lang kdevelopsessions %{name}.lang
   %find_lang plasma_runner_kdevelopsessions %{name}.lang
 
 %post
@@ -130,9 +131,14 @@
 %{_kde4_appsdir}/kdevelop
 %{_kde4_appsdir}/kdevgdb
 %{_kde4_appsdir}/kdevokteta
+%dir %{_kde4_appsdir}/plasma
+%dir %{_kde4_appsdir}/plasma/plasmoids
+%{_kde4_appsdir}/plasma/plasmoids/kdevelopsessions
+%{_kde4_appsdir}/plasma/services/org.kde.plasma.dataengine.kdevelopsessions.operations
 %{_kde4_bindir}/kdevelop
-%{_kde4_bindir}/kdevelop_attach
+%{_kde4_bindir}/kdevelop!
 %config %{_kde_config_dir}/kdeveloprc
+%config %{_kde_config_dir}/kdevelop-qthelp.knsrc
 %{_kde4_datadir}/mime/packages/kdevelop.xml
 %{_kde4_iconsdir}/*
 %{_kde4_libdir}/libkdev4cmakecommon.so
@@ -156,7 +162,10 @@
 %{_kde4_modulesdir}/kdevqthelp.so
 %{_kde4_modulesdir}/kdevqthelp_config.so
 %{_kde4_modulesdir}/krunner_kdevelopsessions.so
+%{_kde4_modulesdir}/plasma_engine_kdevelopsessions.so
 %{_kde4_servicesdir}/kcm_kdev*
 %{_kde4_servicesdir}/kdev*
+%{_kde4_servicesdir}/plasma-applet-kdevelopsessions.desktop
+%{_kde4_servicesdir}/plasma-dataengine-kdevelopsessions.desktop
 
 %changelog

++ kdevelop-4.3.1.tar.bz2 -> kdevelop-4.3.90.tar.bz2 ++
 159877 lines of diff (skipped)

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



commit kalgebra for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package kalgebra for openSUSE:Factory 
checked in at 2012-09-23 17:05:48

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


Package is "kalgebra", Maintainer is "kde-maintain...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/kalgebra/kalgebra.changes2012-09-11 
07:55:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.kalgebra.new/kalgebra.changes   2012-09-23 
17:05:50.0 +0200
@@ -1,0 +2,5 @@
+Tue Sep 18 13:43:19 UTC 2012 - idon...@suse.com
+
+- Add explicit glu dependency 
+
+---



Other differences:
--
++ kalgebra.spec ++
--- /var/tmp/diff_new_pack.aTLMEs/_old  2012-09-23 17:05:51.0 +0200
+++ /var/tmp/diff_new_pack.aTLMEs/_new  2012-09-23 17:05:51.0 +0200
@@ -23,6 +23,7 @@
 BuildRequires:  perl
 BuildRequires:  readline-devel
 BuildRequires:  xz
+BuildRequires:  pkgconfig(glu)
 
 # currently in DOESNOTBUILD (2008-07-03)
 %ifnarch ppc ppc64 s390 s390x


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



commit inn for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package inn for openSUSE:Factory checked in 
at 2012-09-23 17:05:38

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


Package is "inn", Maintainer is "m...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/inn/inn.changes  2012-09-14 12:26:54.0 
+0200
+++ /work/SRC/openSUSE:Factory/.inn.new/inn.changes 2012-09-23 
17:05:41.0 +0200
@@ -1,0 +2,6 @@
+Mon Sep 17 14:19:18 UTC 2012 - co...@suse.com
+
+- fix ownership of directories so subpackages can be installed with
+  rpm 4.10
+
+---



Other differences:
--
++ inn.spec ++
--- /var/tmp/diff_new_pack.wt1OzX/_old  2012-09-23 17:05:42.0 +0200
+++ /var/tmp/diff_new_pack.wt1OzX/_new  2012-09-23 17:05:42.0 +0200
@@ -47,15 +47,6 @@
 %description
 Rich Salz's InterNetNews news transport system.
 
-
-
-Authors:
-
-Rich Salz 
-Andreas Klemm 
-Vince Skahan  
-Arjan de Vet  
-
 %package devel
 Requires:   %name = %version
 Summary:InterNetNews development files
@@ -67,15 +58,6 @@
 This package contains the files needed to develop software depending on
 inn.
 
-
-
-Authors:
-
-Rich Salz 
-Andreas Klemm 
-Vince Skahan  
-Arjan de Vet  
-
 %package -n mininews
 Summary:Inews - Post News from an NNTP Client
 Group:  Productivity/Networking/News/Utilities
@@ -85,12 +67,6 @@
 %description -n mininews
 Rich Salz's InterNetNews news transport system.
 
-
-
-Authors:
-
-Rich Salz 
-
 %prep
 %setup -n inn%{PatchVersion} 
 %setup -n inn%{PatchVersion} -D -T -a 1 
@@ -212,6 +188,8 @@
 $0 == "/etc/news" { next }
 $0 == "/usr/lib/news" { next }
 $0 == "/var/lib/news" { next }
+$0 == "/usr/lib/news/include" { next }
+$0 == "/usr/lib/news/include/inn" { next }
 { pfx="" }
 $0 == "/var/spool/news" { pfx = "%%attr(775,news,news) " }
 $0 == "/var/run/news" { pfx = "%ghost %%attr(750,news,news) "}
@@ -305,7 +283,7 @@
 %files -n mininews
 %defattr(-,root,root)
 %config(noreplace)  /etc/news/inn.conf
-%dir   /usr/lib/news/bin
+%dir %attr(-,news,news)/usr/lib/news/bin
 %attr(4550,news,uucp)   /usr/lib/news/bin/rnews
 %attr(2555,news,news)   /usr/lib/news/bin/inews
 /usr/bin/[ri]news


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



commit fiwalk for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package fiwalk for openSUSE:Factory checked 
in at 2012-09-23 17:04:37

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


Package is "fiwalk", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/fiwalk/fiwalk.changes2012-03-20 
02:05:16.0 +0100
+++ /work/SRC/openSUSE:Factory/.fiwalk.new/fiwalk.changes   2012-09-23 
17:04:39.0 +0200
@@ -1,0 +2,9 @@
+Tue Sep 18 13:13:16 UTC 2012 - idon...@suse.com
+
+- Update to v0.6.16
+  * Python3 compatibility
+- Add fiwalk-0.6.16-tsk_errno.patch to compile with new sleuthkit
+- Drop fiwalk-gcc47.patch : fixed upstream
+- Add %check
+
+---

Old:

  fiwalk-gcc47.patch
  fiwalk.tar.gz

New:

  fiwalk-0.6.16-tsk_errno.patch
  fiwalk-0.6.16.tar.gz



Other differences:
--
++ fiwalk.spec ++
--- /var/tmp/diff_new_pack.QGqE0Y/_old  2012-09-23 17:04:41.0 +0200
+++ /var/tmp/diff_new_pack.QGqE0Y/_new  2012-09-23 17:04:41.0 +0200
@@ -17,14 +17,14 @@
 
 
 Name:   fiwalk
-Version:0.6.15
+Version:0.6.16
 Release:0
 Summary:A computer forensic application for walking forensic images
 License:SUSE-Public-Domain
 Group:  Productivity/File utilities
-Url:http://afflib.org/downloads/%name.tar.gz
-Source: %name.tar.gz
-Patch0: fiwalk-gcc47.patch
+Url:http://afflib.org/downloads/%name-%{version}.tar.gz
+Source: http://afflib.org/downloads/%name-%{version}.tar.gz
+Patch1: fiwalk-0.6.16-tsk_errno.patch
 BuildRequires:  afflib-devel
 BuildRequires:  gcc-c++
 BuildRequires:  libewf-devel
@@ -42,14 +42,17 @@
 
 %prep
 %setup -q 
-%patch0 -p1
+%patch1 -p1
 
 %build
 %configure 
 make %{?_smp_mflags}
 
 %install
-%make_install
+%makeinstall
+
+%check
+make check
 
 %files
 %defattr(-,root,root)

++ fiwalk-0.6.16-tsk_errno.patch ++
Index: fiwalk-0.6.16/src/fiwalk_tsk.cpp
===
--- fiwalk-0.6.16.orig/src/fiwalk_tsk.cpp
+++ fiwalk-0.6.16/src/fiwalk_tsk.cpp
@@ -170,7 +170,7 @@ process_tsk_file(TSK_FS_FILE * fs_file,
if (tsk_fs_file_walk (fs_file, (TSK_FS_FILE_WALK_FLAG_ENUM) myflags, 
file_act, (void *) &ci)) {
 
// ignore errors from deleted files that were being recovered
-   if (tsk_errno != TSK_ERR_FS_RECOVER) {
+   if (tsk_error_get_errno() != TSK_ERR_FS_RECOVER) {
if(opt_debug){
fprintf(stderr,"Processing: %s/%s (%" PRIuINUM ")\n", path,
   fs_file->name->name, fs_file->meta->addr);
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit fetchmail for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package fetchmail for openSUSE:Factory 
checked in at 2012-09-23 17:04:25

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


Package is "fetchmail", Maintainer is "vci...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/fetchmail/fetchmail.changes  2012-07-04 
13:51:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.fetchmail.new/fetchmail.changes 2012-09-23 
17:04:27.0 +0200
@@ -1,0 +2,30 @@
+Tue Sep 11 09:09:21 UTC 2012 - vci...@suse.com
+
+- update to 6.3.22
+  # SECURITY FIXES
+* CVE-2012-3482 (bnc#775988)
+* CVE-2011-3389
+  # BUG FIX
+* The Server certificate: message in verbose mode now appears on stdout 
like the
+  remainder of the output. Reported by Henry Jensen, to fix Debian Bug 
#639807.
+* The GSSAPI-related autoconf code now matches gssapi.c better, and uses
+  a different check to look for GSS_C_NT_HOSTBASED_SERVICE.
+  This fixes the GSSAPI-enabled build on NetBSD 6 Beta.
+  # CHANGES
+* The security and errata notices fetchmail-{EN,SA}-20??-??.txt are now
+  under the more relaxed CC BY-ND 3.0 license (the noncommercial clause
+  was dropped). The Creative Commons address was updated.
+* The Python-related Makefile.am parts were simplified to avoid an automake
+  1.11.X bug around noinst_PYTHON, Automake Bug #10995.
+* Configuring fetchmail without SSL now triggers a configure warning,
+  and asks the user to consider running configure --with-ssl.
+  # WORKAROUNDS
+* Some servers, notably Zimbra, return A1234 987 FETCH () in response to
+  a header request, in the face of message corruption.  fetchmail now 
treats
+  these as temporary errors. Report and Patch by Mikulas Patocka, Red Hat.
+* Some servers, notably Microsoft Exchange, return "A0009 OK FETCH 
completed."
+  without any header in response to a header request for meeting reminder
+  messages (with a "meeting.ics" attachment). fetchmail now treats these as
+  transient errors.  Report by John Connett, Patch by Sunil Shetye.
+
+---

Old:

  README-security.txt
  fetchmail-6.3.21-repacked.tar.bz2

New:

  fetchmail-6.3.22.tar.bz2



Other differences:
--
++ fetchmail.spec ++
--- /var/tmp/diff_new_pack.N7JNH4/_old  2012-09-23 17:04:28.0 +0200
+++ /var/tmp/diff_new_pack.N7JNH4/_new  2012-09-23 17:04:28.0 +0200
@@ -30,19 +30,19 @@
 %if 0%{?with_krb5}
 BuildRequires:  krb5-devel
 %endif
-Version:6.3.21
+Version:6.3.22
 Release:0
 Summary:Full-Featured POP and IMAP Mail Retrieval Daemon
 License:GPL-2.0+
 Group:  Productivity/Networking/Email/Utilities
 Url:http://fetchmail.berlios.de/
-# Always repack upstream tarball without fetchmail-{EN,SA}-*.txt
-# bnc#713698
-Source: %{name}-%{version}-repacked.tar.bz2
+# The fetchmail-{EN,SA}-*.txt security advisories
+# were relicensed to CC BY-ND 3.0, so there's no need
+# to repack the tarball without them anymore (bnc#713698)
+Source: %{name}-%{version}.tar.bz2
 Source1:%{name}.init
 Source2:%{name}.logrotate
 Source3:sysconfig.%{name}
-Source4:README-security.txt
 Patch0: fetchmail-6.3.8-smtp_errors.patch
 PreReq: %fillup_prereq
 PreReq: %insserv_prereq
@@ -78,7 +78,7 @@
 %prep
 %setup -q -n %{name}-%{version}
 %patch0 -p1
-cp -a %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} .
+cp -a %{SOURCE1} %{SOURCE2} %{SOURCE3} .
 
 %build
 %if 0%{?suse_version} > 1010

++ fetchmail-6.3.21-repacked.tar.bz2 -> fetchmail-6.3.22.tar.bz2 ++
 34322 lines of diff (skipped)

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



commit csmash for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package csmash for openSUSE:Factory checked 
in at 2012-09-23 17:04:15

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


Package is "csmash", Maintainer is "nadvor...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/csmash/csmash.changes2011-09-28 
14:06:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.csmash.new/csmash.changes   2012-09-23 
17:04:17.0 +0200
@@ -1,0 +2,5 @@
+Tue Sep 18 13:04:54 UTC 2012 - idon...@suse.com
+
+- Add explicit glu dependency 
+
+---



Other differences:
--
++ csmash.spec ++
--- /var/tmp/diff_new_pack.YCDFwX/_old  2012-09-23 17:04:19.0 +0200
+++ /var/tmp/diff_new_pack.YCDFwX/_new  2012-09-23 17:04:19.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package csmash
 #
-# 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:   csmash
 Version:0.6.6
-Release:254
-License:GPL-2.0+
+Release:0
 Summary:3D Table Tennis Game
-Url:http://cannonsmash.sourceforge.net/
+License:GPL-2.0+
 Group:  Amusements/Games/3D/Other
+Url:http://cannonsmash.sourceforge.net/
 Source: %{name}-%{version}.tar.bz2
 Source1:danslatristesse2-48.ogg
 Source2:%{name}.desktop
@@ -33,6 +32,7 @@
 Patch3: %{name}-%{version}-qualification.diff
 Patch4: %{name}-%{version}-definitions.diff
 Patch5: %{name}-%{version}-uninitialized.diff
+BuildRequires:  Mesa-devel
 BuildRequires:  SDL-devel
 BuildRequires:  SDL_image-devel
 BuildRequires:  SDL_mixer-devel
@@ -42,7 +42,7 @@
 BuildRequires:  gtk2-devel
 BuildRequires:  libdrm-devel
 BuildRequires:  xorg-x11-devel
-BuildRequires:  Mesa-devel
+BuildRequires:  pkgconfig(glu)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description


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



commit clementine for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package clementine for openSUSE:Factory 
checked in at 2012-09-23 17:04:07

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


Package is "clementine", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/clementine/clementine.changes2012-05-21 
07:23:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.clementine.new/clementine.changes   
2012-09-23 17:04:10.0 +0200
@@ -1,0 +2,7 @@
+Mon Sep 17 13:10:04 UTC 2012 - davejpla...@gmail.com
+
+- Update to 17/09/2012 git head to fix bnc#779411
+- For upstream changes see :
+  /usr/share/doc/packages/clementine/Changelog
+
+---

Old:

  clementine-1.0.1.git.tar.bz2

New:

  clementine-1.0.1.git1.tar.bz2



Other differences:
--
++ clementine.spec ++
--- /var/tmp/diff_new_pack.n5f5Po/_old  2012-09-23 17:04:16.0 +0200
+++ /var/tmp/diff_new_pack.n5f5Po/_new  2012-09-23 17:04:16.0 +0200
@@ -16,8 +16,11 @@
 #
 
 
+# NOTE: kde package doesn't build with current git
+%define kdepack 0
+
 Name:   clementine
-Version:1.0.1.git
+Version:1.0.1.git1
 Release:0
 Summary:A cross-platform Music Player based on Amarok 1
 License:GPL-3.0+
@@ -83,6 +86,7 @@
 * Cross-platform - works on Windows, Mac OS X and Linux
 * Native desktop notifications on Linux (libnotify) and Mac OS X (Growl)
 
+%if %{kdepack} == 1
 %package kde
 Summary:Clementine's support for plasma search
 Group:  System/GUI/KDE
@@ -93,6 +97,7 @@
 port of Amarok 1.4, with some features rewritten to take advantage of Qt4.
 
 This package provides clementine's support for plasma global search.
+%endif
 
 %prep
 %setup -q
@@ -144,7 +149,7 @@
 %doc Changelog COPYING
 %{_bindir}/clementine
 %{_datadir}/applications/clementine.desktop
-%{_datadir}/clementine
+#%%{_datadir}/clementine
 %{_datadir}/icons/hicolor/64x64/apps/application-x-clementine.png
 %{_datadir}/icons/hicolor/scalable/apps/application-x-clementine.svg
 %{_bindir}/clementine-tagreader
@@ -156,10 +161,12 @@
 %{_mandir}/man1/%{name}.1.gz
 %endif
 
+%if %{kdepack} == 1
 %files kde
 %defattr(-,root,root)
 %dir /usr/lib/kde4
 /usr/lib/kde4/plasma_runner_clementine.so
 %{_datadir}/kde4/services/plasma-runner-clementine.desktop
+%endif
 
 %changelog

++ clementine-1.0.1.git.tar.bz2 -> clementine-1.0.1.git1.tar.bz2 ++
/work/SRC/openSUSE:Factory/clementine/clementine-1.0.1.git.tar.bz2 
/work/SRC/openSUSE:Factory/.clementine.new/clementine-1.0.1.git1.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