commit tclx for openSUSE:Factory

2013-03-03 Thread h_root
Hello community,

here is the log from the commit of package tclx for openSUSE:Factory checked in 
at 2013-03-03 21:09:30

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


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

Changes:

--- /work/SRC/openSUSE:Factory/tclx/tclx.changes2012-01-04 
07:32:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.tclx.new/tclx.changes   2013-03-03 
21:09:31.0 +0100
@@ -1,0 +2,5 @@
+Fri Mar  1 06:24:13 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ tclx.spec ++
--- /var/tmp/diff_new_pack.6WAvrE/_old  2013-03-03 21:09:32.0 +0100
+++ /var/tmp/diff_new_pack.6WAvrE/_new  2013-03-03 21:09:32.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package tclx
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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,7 +22,7 @@
 Version:8.4
 Release:0
 Summary:TclX - Extended Tcl
-License:SUSE-Permissive ; BSD-3-Clause
+License:SUSE-Permissive and BSD-3-Clause
 Group:  Development/Languages/Tcl
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:%name%version-20050712.tar.bz2

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



commit systemtap for openSUSE:Factory

2013-03-03 Thread h_root
Hello community,

here is the log from the commit of package systemtap for openSUSE:Factory 
checked in at 2013-03-03 21:09:18

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


Package is "systemtap", Maintainer is "to...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/systemtap/systemtap.changes  2013-01-12 
14:54:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.systemtap.new/systemtap.changes 2013-03-03 
21:09:20.0 +0100
@@ -1,0 +2,9 @@
+Fri Feb 22 06:30:58 UTC 2013 - to...@suse.com
+
+- Change how systemtap looks for tracepoint header files 
+  (bnc#796574, new patch: systemtap-build-source-dir.patch)
+- Add libebl1 dependancy. Systemtap manually loads libebl backends and
+  the manual Requires: was incorrectly removed in a previous revision
+  (bnc#800335)
+
+---

New:

  systemtap-build-source-dir.patch



Other differences:
--
++ systemtap.spec ++
--- /var/tmp/diff_new_pack.7aCAtE/_old  2013-03-03 21:09:21.0 +0100
+++ /var/tmp/diff_new_pack.7aCAtE/_new  2013-03-03 21:09:21.0 +0100
@@ -37,8 +37,10 @@
 Source2:README-BEFORE-ADDING-PATCHES
 Source3:stap-server.conf
 Patch1: systemtap-fix-for-kernels-without-vm_executable.patch
+Patch2: systemtap-build-source-dir.patch
 Obsoletes:  systemtap-client < 1.5
 Requires:   %{name}-runtime = %{version}-%{release}
+Requires:   libebl1
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -85,6 +87,7 @@
 %prep
 %setup -q
 %patch1 -p1
+%patch2 -p1
 
 %build
 %configure --disable-docs --docdir=%{_docdir}/systemtap

++ systemtap-build-source-dir.patch ++
From: Tony Jones 
Subject: adjust build source dir for SuSE packaging
References: bnc#796574

kernel-$flavor:
/lib/modules/$version-$flavor

kernel-$flavor-devel: requires kernel-source
   /usr/src/linux-$version-obj/$arch/$flavor
   /lib/modules/$version-$flavor/build -> 
/usr/src/linux-$version-obj/$arch/$flavor
   /lib/modules/$version-$flavor/source -> /usr/src/linux-$version 
[kernel-source]

kernel-flavor-debugsource:
   /usr/src/debug/kernel-$flavor/
  linux-obj/ {corresponds to /lib/modules/$version-$flavor/build}
  linux-3.0/ {mirrors kernel-source}

DW_AT_comp_dir points to debugsource/linux-obj directory but internal trace
headers are only found in linux-3.0.  Regardless, we don't want to require
debugsource as devel already requires kernel-source which provides the 
necessary headers.

---
 session.cxx |   28 
 1 file changed, 24 insertions(+), 4 deletions(-)

--- a/session.cxx
+++ b/session.cxx
@@ -90,6 +90,7 @@ systemtap_session::systemtap_session ():
   kernel_release = string (buf.release);
   release = kernel_release;
   kernel_build_tree = "/lib/modules/" + kernel_release + "/build";
+  kernel_source_tree = "/lib/modules/" + kernel_release + "/source";
   architecture = machine = normalize_machine(buf.machine);
 
   for (unsigned i=0; i<5; i++) perpass_verbose[i]=0;
@@ -258,6 +259,7 @@ systemtap_session::systemtap_session (co
 {
   release = kernel_release = kern;
   kernel_build_tree = "/lib/modules/" + kernel_release + "/build";
+  kernel_source_tree = "/lib/modules/" + kernel_release + "/source";
   architecture = machine = normalize_machine(arch);
   setup_kernel_release(kern.c_str());
   native_build = false; // assumed; XXX: could be computed as in 
check_options()
@@ -1540,21 +1542,39 @@ systemtap_session::setup_kernel_release
   // normal search in tapsets.cxx.  Without CONFIG_DEBUG_INFO, we'd
   // need heuristics such as this one:
 
-  string some_random_source_only_file = kernel_build_tree + "/COPYING";
+  // SUSE: if "build" link specified, attempt to determine "source" link
+  // N.B we won't match using above tapsets.cxx check
+  struct stat buf;
+  string source_tree = kernel_build_tree;
+
+  if (lstat(kernel_build_tree.c_str(), &buf) != -1 && 
S_ISLNK(buf.st_mode)) {
+   size_t pos = source_tree.find_last_of('/');
+   if (pos < source_tree.length() && source_tree.substr(pos+1, 
string::npos) == "build")
+  source_tree.replace(pos+1, string::npos, "source");
+  }
+
+retry:
+  string some_random_source_only_file = source_tree + "/COPYING";
   ifstream epic (some_random_source_only_file.c_str());
   if (! epic.fail())
 {
-  kernel_source_tree = kernel_build_tree;
+  kernel_source_tree = source_tree;
   if (verbose > 2)
 clog << _F("Located kernel source tree (COPYING) at '%s'", 
kernel_source_tree.c_str()) << endl;
-}
+} else if (source_tree != kern

commit suspend for openSUSE:Factory

2013-03-03 Thread h_root
Hello community,

here is the log from the commit of package suspend for openSUSE:Factory checked 
in at 2013-03-03 21:09:02

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


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

Changes:

--- /work/SRC/openSUSE:Factory/suspend/suspend.changes  2013-02-26 
15:25:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.suspend.new/suspend.changes 2013-03-03 
21:09:04.0 +0100
@@ -1,0 +2,5 @@
+Sat Mar  2 11:20:24 UTC 2013 - seife+...@b1-systems.com
+
+- add suspend-automake-1_13.diff, fix build with automake-1.13.1
+
+---

New:

  suspend-automake-1_13.diff



Other differences:
--
++ suspend.spec ++
--- /var/tmp/diff_new_pack.un4RPy/_old  2013-03-03 21:09:05.0 +0100
+++ /var/tmp/diff_new_pack.un4RPy/_new  2013-03-03 21:09:05.0 +0100
@@ -2,6 +2,7 @@
 # spec file for package suspend
 #
 # Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 B1 Systems GmbH, Vohburg, Germany
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -62,6 +63,8 @@
 #Mandriva patch to enable plymouth support (Thanks to F. Crozat)
 Patch17:suspend-plymouth.patch
 Patch18:s2disk-do-not-fail-hibernation-withoug-a-vt-console
+# fix for automake-1.13.1
+Patch19:suspend-automake-1_13.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 ExclusiveArch:  %ix86 x86_64 ppc ppc64
 %if 0%{?suse_version}
@@ -95,6 +98,7 @@
 %patch16 -p1
 %patch17 -p1
 %patch18 -p1
+%patch19 -p1
 cp %{S:3} scripts/
 #cp -vb --suffix=-0.5 %{S:99} whitelist.c
 

++ suspend-automake-1_13.diff ++
Index: b/configure.ac
===
--- a/configure.ac
+++ b/configure.ac
@@ -7,11 +7,11 @@
 #
 
 AC_PREREQ([2.59])
 AC_INIT([suspend-utils], [1.0])
 AM_INIT_AUTOMAKE([${PACKAGE_NAME}], [${PACKAGE_VERSION}])
-AM_CONFIG_HEADER([config.h])
+AC_CONFIG_HEADERS([config.h])
 AC_CONFIG_SRCDIR([suspend.c])
 
 AC_CANONICAL_HOST
 
 AC_ARG_ENABLE(
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit skanlite for openSUSE:Factory

2013-03-03 Thread h_root
Hello community,

here is the log from the commit of package skanlite for openSUSE:Factory 
checked in at 2013-03-03 21:08:53

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


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

Changes:

--- /work/SRC/openSUSE:Factory/skanlite/skanlite.changes2012-10-06 
18:43:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.skanlite.new/skanlite.changes   2013-03-03 
21:08:54.0 +0100
@@ -1,0 +2,15 @@
+Thu Feb 28 20:29:21 UTC 2013 - asterios.dra...@gmail.com
+
+- Update to version 1.0:
+  * Fix "save crash" when libksane returns an odd number sized buffer in 16 bit
+mode
+kde#314108
+  * Save sequence number across sessions
+kde#202432
+  * Add option to set sequence-number. Do not open "first image" dialog after
+settings dialog has been canceled
+kde#310687
+kde#310688
+kde#310689
+
+---

Old:

  skanlite-0.9.tar.bz2

New:

  skanlite-1.0.tar.bz2



Other differences:
--
++ skanlite.spec ++
--- /var/tmp/diff_new_pack.6jXMf1/_old  2013-03-03 21:08:55.0 +0100
+++ /var/tmp/diff_new_pack.6jXMf1/_new  2013-03-03 21:08:55.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package skanlite
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -17,7 +17,7 @@
 
 
 Name:   skanlite
-Version:0.9
+Version:1.0
 Release:0
 Summary:Image Scanner Application
 License:LGPL-2.1+

++ skanlite-0.9.tar.bz2 -> skanlite-1.0.tar.bz2 ++
 7560 lines of diff (skipped)

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



commit SDL_mixer for openSUSE:Factory

2013-03-03 Thread h_root
Hello community,

here is the log from the commit of package SDL_mixer for openSUSE:Factory 
checked in at 2013-03-03 21:08:39

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


Package is "SDL_mixer", Maintainer is "orpha...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/SDL_mixer/SDL_mixer.changes  2013-01-08 
14:59:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.SDL_mixer.new/SDL_mixer.changes 2013-03-03 
21:08:41.0 +0100
@@ -1,0 +2,17 @@
+Sun Feb 24 09:35:38 UTC 2013 - mailaen...@opensuse.org
+
+- Update to 1.2.12
+  * SDL_mixer is now under the zlib license
+  * Fixed seek offset with SMPEG (was relative, should be absolute)
+  * Added Mix_LoadMUSType_RW() so you can tell SDL_mixer what type the music is
+  * Added /usr/local/share/timidity to the timidity data path
+  * Fixed timidity loading of some MIDI files
+  * Fixed dropping audio in the FLAC audio decoding
+  * Fixed memory leak in SDL_LoadMUS()
+  * Removed GPL native MIDI code for new licensing
+  * Fixed drums playing on MIDI channel 16 with timidity
+  * The music-finished hook can start a track immediately
+  * Added support for FluidSynth
+  * Added support for libmodplug (disabled by default)
+
+---

Old:

  SDL_mixer-1.2.11-repack.tar.bz2

New:

  SDL_mixer-1.2.12.tar.gz



Other differences:
--
++ SDL_mixer.spec ++
--- /var/tmp/diff_new_pack.vM4MCN/_old  2013-03-03 21:08:42.0 +0100
+++ /var/tmp/diff_new_pack.vM4MCN/_new  2013-03-03 21:08:42.0 +0100
@@ -18,17 +18,16 @@
 
 Name:   SDL_mixer
 BuildRequires:  flac-devel
+BuildRequires:  fluidsynth-devel
 BuildRequires:  libSDL-devel
 BuildRequires:  libmikmod-devel
 BuildRequires:  libvorbis-devel
 Summary:Sample Mixer Library for SDL
-License:LGPL-2.1+
+License:Zlib
 Group:  System/Libraries
-Version:1.2.11
+Version:1.2.12
 Release:0
-# removed VisualC.zip, Watcom-OS2.zip, Xcode.tar.gz from upstream tarball 
[bnc#508180]
-# removed libmikmod-3.1.12.zip
-Source: %{name}-%{version}-repack.tar.bz2
+Source: %{name}-%{version}.tar.gz
 Source1:baselibs.conf
 Url:http://www.libsdl.org/projects/SDL_mixer/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -44,7 +43,7 @@
 Summary:Sample Mixer Library for SDL
 Group:  System/Libraries
 Provides:   SDL_mixer = %{version}
-Obsoletes:  SDL_mixer <= %{version}
+Obsoletes:  SDL_mixer < %{version}
 # bug437293
 %ifarch ppc64
 Obsoletes:  SDL_mixer-64bit
@@ -65,7 +64,7 @@
 Requires:   libSDL-devel
 Requires:   libSDL_mixer-1_2-0 = %{version}
 Provides:   SDL_mixer-devel = %{version}
-Obsoletes:  SDL_mixer-devel <= %{version}
+Obsoletes:  SDL_mixer-devel < %{version}
 # bug437293
 %ifarch ppc64
 Obsoletes:  SDL_mixer-devel-64bit
@@ -80,11 +79,16 @@
 
 %prep
 %setup -q
+# remove unneccessary files from upstream tarball [bnc#508180] to clean up 
source RPM
+rm libmikmod-3.1.12.zip
+rm Watcom-OS2.zip
+rm -rf VisualC
+rm -rf Xcode
+rm -rf Xcode-iOS
 
 %build
 %configure --disable-music-mod-shared --disable-music-ogg-shared 
--disable-music-flac-shared \
---disable-static \
---with-pic
+   --disable-static --with-pic
 make %{?_smp_mflags}
 
 %install

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



commit sanlock for openSUSE:Factory

2013-03-03 Thread h_root
Hello community,

here is the log from the commit of package sanlock for openSUSE:Factory checked 
in at 2013-03-03 21:08:31

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


Package is "sanlock", Maintainer is "jfeh...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/sanlock/sanlock.changes  2012-12-19 
13:22:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.sanlock.new/sanlock.changes 2013-03-03 
21:08:33.0 +0100
@@ -1,0 +2,5 @@
+Fri Mar  1 06:25:28 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ sanlock.spec ++
--- /var/tmp/diff_new_pack.ov91rY/_old  2013-03-03 21:08:34.0 +0100
+++ /var/tmp/diff_new_pack.ov91rY/_new  2013-03-03 21:08:34.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package sanlock
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -27,7 +27,7 @@
 Version:2.6
 Release:1%{?dist}
 Summary:A shared disk lock manager
-License:GPL-2.0 ; GPL-2.0+ ; LGPL-2.1+
+License:GPL-2.0 and GPL-2.0+ and LGPL-2.1+
 Group:  System/Base
 
 Url:https://fedorahosted.org/sanlock/

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



commit q4wine for openSUSE:Factory

2013-03-03 Thread h_root
Hello community,

here is the log from the commit of package q4wine for openSUSE:Factory checked 
in at 2013-03-03 21:08:24

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


Package is "q4wine", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/q4wine/q4wine.changes2012-06-28 
16:44:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.q4wine.new/q4wine.changes   2013-03-03 
21:08:25.0 +0100
@@ -1,0 +2,30 @@
+Sun Jan 27 06:37:20 UTC 2013 - lazy.k...@opensuse.org
+
+- Update to 1.0+r1.
+  * Fixed:
++ Prefix tree "Delete" menu item do not remove menu tree.
++ Support for utf8 system user name.
++ Winetricks doesn't work properly if WINEPATH contain spaces.
+
+---
+Sun Jan 20 14:54:51 UTC 2013 - lazy.k...@opensuse.org
+
+- Update to 1.0.
+  * Added:
++ Option to set default directory for new wine prefixes
+  (default: $HOME/.local/share/wineprefixes).
++ q4wine desktop menu tree.
+  * Removed:
++ File -> Install wizard menu entry.
+  * Fixed:
++ Quote run string in case of console useage (gnome-terminal).
++ Winetricks functionality fails to work.
++ Cannot run 'Create Fake Drive' for a new prefix with a win32
+  architecture.
++ System Language autodetection does not work.
++ Error while loading application settings by key: 'WineLibs'.
+  File or path does not exist: "".
++ q4wine doesn't clean up user's tmp directory.
+- Add fdupes to build dependencies; use %fdupes macro.
+
+---

Old:

  q4wine-0.999-rc8.tar.bz2

New:

  q4wine-1.0-r1.tar.bz2



Other differences:
--
++ q4wine.spec ++
--- /var/tmp/diff_new_pack.T8VD1r/_old  2013-03-03 21:08:27.0 +0100
+++ /var/tmp/diff_new_pack.T8VD1r/_new  2013-03-03 21:08:27.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package q4wine
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -17,14 +17,15 @@
 
 
 Name:   q4wine
-Version:0.999.rc8
+Version:1.0+r1
 Release:0
 Summary:Qt4 GUI for WINE
 License:GPL-3.0
 Group:  System/Emulators/PC
 Url:http://q4wine.brezblock.org.ua/
-Source0:
http://downloads.sourceforge.net/%{name}/%{name}-0.999-rc8.tar.bz2
+Source0:http://downloads.sourceforge.net/%{name}/%{name}-1.0-r1.tar.bz2
 BuildRequires:  cmake
+BuildRequires:  fdupes
 BuildRequires:  fuseiso
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  icoutils
@@ -64,7 +65,7 @@
 %lang_package
 
 %prep
-%setup -qn %{name}-0.999-rc8
+%setup -qn %{name}-1.0-r1
 
 %build
 mkdir build
@@ -79,6 +80,7 @@
 pushd build
 %make_install
 popd
+%fdupes -s %{buildroot}%{_datadir}/
 %find_lang %{name} --with-qt
 %suse_update_desktop_file %{name}
 
@@ -94,15 +96,15 @@
 %defattr(-,root,root,-)
 %doc AUTHORS ChangeLog COPYING README TODO
 %{_bindir}/%{name}*
-%{_datadir}/%{name}
-%exclude %{_datadir}/%{name}/i18n
+%{_datadir}/%{name}/
+%exclude %{_datadir}/%{name}/i18n/
 %{_datadir}/applications/%{name}.desktop
 %{_datadir}/icons/hicolor/*/*/%{name}.*
-%{_libdir}/%{name}
+%{_libdir}/%{name}/
 %doc %{_mandir}/man?/*
 
 %files lang -f %{name}.lang
 %defattr(-,root,root,-)
-%dir %{_datadir}/%{name}/i18n
+%dir %{_datadir}/%{name}/i18n/
 
 %changelog

++ q4wine-0.999-rc8.tar.bz2 -> q4wine-1.0-r1.tar.bz2 ++
 26277 lines of diff (skipped)

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



commit psi+ for openSUSE:Factory

2013-03-03 Thread h_root
Hello community,

here is the log from the commit of package psi+ for openSUSE:Factory checked in 
at 2013-03-03 21:08:16

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


Package is "psi+", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/psi+/psi+.changes2013-02-13 
12:10:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.psi+.new/psi+.changes   2013-03-03 
21:08:17.0 +0100
@@ -1,0 +2,7 @@
+Sat Mar  2 09:29:08 UTC 2013 - jsl...@suse.com
+
+- update to 20130227
+  * updated translations
+  * many bugfixes
+
+---

Old:

  psi+-20130211.tar.xz

New:

  psi+-20130227.tar.xz



Other differences:
--
++ psi+.spec ++
--- /var/tmp/diff_new_pack.aUw2DS/_old  2013-03-03 21:08:19.0 +0100
+++ /var/tmp/diff_new_pack.aUw2DS/_new  2013-03-03 21:08:19.0 +0100
@@ -18,7 +18,7 @@
 
 Name:   psi+
 Url:http://code.google.com/p/psi-dev/
-Version:20130211
+Version:20130227
 Release:0
 Summary:Jabber client using Qt
 License:GPL-2.0+

++ psi-plus-l10n-1.tar.xz ++
Files /var/tmp/diff_new_pack.aUw2DS/_old and /var/tmp/diff_new_pack.aUw2DS/_new 
differ

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



commit pragha for openSUSE:Factory

2013-03-03 Thread h_root
Hello community,

here is the log from the commit of package pragha for openSUSE:Factory checked 
in at 2013-03-03 21:07:55

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


Package is "pragha", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/pragha/pragha.changes2012-08-26 
14:22:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.pragha.new/pragha.changes   2013-03-03 
21:07:56.0 +0100
@@ -1,0 +2,28 @@
+Thu Feb 21 20:10:51 UTC 2013 - lazy.k...@opensuse.org
+
+- Update to 1.1.2.
+  * Improved indexing of the library. Also allows continue
+listening music while analyzing.
+  * The database uses prepared statements, improving the general
+performance of Pragha.
+  * A general cleaning of the code.
+  * Now add, remove or rename playlist and radios is super fast.
+  * Now select the content of the "Track No" and "Year" in "Edit
+tags" window after focusing or clicking into them.
+  * Now you can drag songs from the library to any file manager to
+copy or burn with brasero.
+  * Now you can add playlists using command line or file managers.
+  * Save and restore menu accelerators edited.
+  * Now whenever you add songs, select the first song added.
+  * Bugs fixed:
++ glyr-related.c: Use lang autodetection to get artist bio
++ mpris: fix problems with long tracks
++ translations: fix plural forms
++ add workaround for crash in taglib
++ fix a deadlock on adding to current playlist
+  * Updated translations.
+- Change source URL.
+- Update russian.patch.
+- BuildRequires: pkgconfig(gthread-2.0) >= 2.32, intltool.
+
+---

Old:

  pragha-1.1.1-russian.patch
  pragha-1.1.1.tar.bz2

New:

  pragha-1.1.2-russian.patch
  pragha-1.1.2.tar.bz2



Other differences:
--
++ pragha.spec ++
--- /var/tmp/diff_new_pack.WDbdsE/_old  2013-03-03 21:07:57.0 +0100
+++ /var/tmp/diff_new_pack.WDbdsE/_new  2013-03-03 21:07:57.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package pragha
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -17,40 +17,38 @@
 
 
 Name:   pragha
-Version:1.1.1
+Version:1.1.2
 Release:0
 Summary:Lightweight Music Player
 License:GPL-3.0+
 Group:  Productivity/Multimedia/Sound/Players
 Url:http://pragha.wikispaces.com/
-Source0:
https://github.com/downloads/matiasdelellis/%{name}/%{name}-%{version}.tar.bz2
+Source0:
http://dissonance.googlecode.com/files/%{name}-%{version}.tar.bz2
 # PATCH-FIX-OPENSUSE pragha-1.0.2-pixdir.patch lazy.k...@opensuse.org -- 
install icons into program dir, not into system one
 Patch0: pragha-1.0.2-pixdir.patch
-# PATCH-FIX-UPSTREAM pragha-1.1.1-russian.patch lazy.k...@opensuse.org -- 
correct Russian translation
-Patch1: pragha-1.1.1-russian.patch
+# PATCH-FIX-UPSTREAM pragha-1.1.2-russian.patch lazy.k...@opensuse.org -- 
correct Russian translation
+Patch1: pragha-1.1.2-russian.patch
 BuildRequires:  ImageMagick
 BuildRequires:  autoconf
+BuildRequires:  desktop-file-utils
 BuildRequires:  fdupes
-BuildRequires:  libcdio-devel
+BuildRequires:  intltool
 BuildRequires:  libtool
-BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(dbus-glib-1)
 BuildRequires:  pkgconfig(gstreamer-0.10)
 BuildRequires:  pkgconfig(gstreamer-plugins-base-0.10)
+BuildRequires:  pkgconfig(gthread-2.0) >= 2.32
 BuildRequires:  pkgconfig(gtk+-2.0) >= 2.24
 BuildRequires:  pkgconfig(keybinder)
 BuildRequires:  pkgconfig(libcddb)
+BuildRequires:  pkgconfig(libcdio)
 BuildRequires:  pkgconfig(libcdio_paranoia)
 BuildRequires:  pkgconfig(libclastfm) >= 0.5
 BuildRequires:  pkgconfig(libglyr)
 BuildRequires:  pkgconfig(libnotify)
 BuildRequires:  pkgconfig(libxfce4ui-1)
-BuildRequires:  pkgconfig(totem-plparser)
-%if 0%{?suse_version} >= 1210
 BuildRequires:  pkgconfig(taglib)
-%else
-BuildRequires:  taglib-devel
-%endif
+BuildRequires:  pkgconfig(totem-plparser)
 Requires:   gstreamer-0_10-plugins-base
 Requires:   gstreamer-0_10-plugins-good
 Recommends: %{name}-lang
@@ -85,7 +83,7 @@
 %prep
 %setup -q
 %patch0
-%patch1
+%patch1 -p1
 
 %build
 %configure
@@ -104,9 +102,8 @@
 convert -resize ${size} data/%{name}.png \
 %{buildroot}%{_datadir}/icons/hicolor/${size}/apps/%{name}.png
 done
-%fdupes -s %{buildroot}%{_datadir}
+%fdupes -s %{buildroot}%{_datadir}/
 %find_lang %{name}
-%s

commit libssh2_org for openSUSE:Factory

2013-03-03 Thread h_root
Hello community,

here is the log from the commit of package libssh2_org for openSUSE:Factory 
checked in at 2013-03-03 21:07:24

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


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

Changes:

--- /work/SRC/openSUSE:Factory/libssh2_org/libssh2_org.changes  2013-01-12 
14:52:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.libssh2_org.new/libssh2_org.changes 
2013-03-03 21:07:25.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 28 21:13:29 UTC 2013 - crrodrig...@opensuse.org
+
+- Use AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER, fixes 
+  build with new automake
+
+---



Other differences:
--
++ libssh2_org.spec ++
--- /var/tmp/diff_new_pack.jEzmew/_old  2013-03-03 21:07:26.0 +0100
+++ /var/tmp/diff_new_pack.jEzmew/_new  2013-03-03 21:07:26.0 +0100
@@ -70,7 +70,9 @@
 %patch -p1
 
 %build
-./buildconf
+sed -i -e 's@AM_CONFIG_HEADER@AC_CONFIG_HEADERS@g' configure.ac
+cp src/libssh2_config.h.in example/libssh2_config.h
+autoreconf -fiv
 export CFLAGS="%optflags -DOPENSSL_LOAD_CONF"
 %configure \
--disable-static --with-pic \

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



commit id3lib for openSUSE:Factory

2013-03-03 Thread h_root
Hello community,

here is the log from the commit of package id3lib for openSUSE:Factory checked 
in at 2013-03-03 21:06:39

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


Package is "id3lib", Maintainer is "vdziewie...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/id3lib/id3lib.changes2012-09-25 
10:20:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.id3lib.new/id3lib.changes   2013-03-03 
21:06:40.0 +0100
@@ -1,0 +2,8 @@
+Thu Feb 28 17:58:39 UTC 2013 - crrodrig...@opensuse.org
+
+- extend id3lib-3.8.3-autoconf.patch :
+ * AM_CONFIG_HEADER is gone, fixes build with new automake
+ * Do not use bundled zlib, ensure we never pick it and always
+   use system version.
+
+---



Other differences:
--
++ id3lib.spec ++
--- /var/tmp/diff_new_pack.X2mQda/_old  2013-03-03 21:06:42.0 +0100
+++ /var/tmp/diff_new_pack.X2mQda/_new  2013-03-03 21:06:42.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package id3lib
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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,17 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   id3lib
-BuildRequires:  dos2unix doxygen fdupes gcc-c++ libstdc++-devel zlib-devel
+BuildRequires:  dos2unix
+BuildRequires:  doxygen
+BuildRequires:  fdupes
+BuildRequires:  gcc-c++
+BuildRequires:  libstdc++-devel
 BuildRequires:  libtool
-License:LGPL-2.1+
-Group:  System/Libraries
-Group:  System/Libraries
-AutoReqProv:on
+BuildRequires:  zlib-devel
 Version:3.8.3
-Release:247
+Release:0
 Source0:%{name}-%{version}.tar.bz2
 Patch1: id3lib-%{version}-autoconf.patch
 Patch2: id3lib-%{version}-cleanup.patch
@@ -44,6 +43,8 @@
 Url:http://id3lib.sourceforge.net/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:A Library for Manipulating ID3v1 and ID3v2 tags
+License:LGPL-2.1+
+Group:  System/Libraries
 
 %description
 This package provides a software library for manipulating ID3v1 and
@@ -63,10 +64,10 @@
 Dirk Mahoney 
 
 %package  devel
-License:LGPL-2.1+
 Summary:Documentation and Headers for id3lib
 Group:  Development/Libraries/C and C++
-Requires:   %{name} = %{version} libstdc++-devel
+Requires:   %{name} = %{version}
+Requires:   libstdc++-devel
 
 %description   devel
 This package contains the headers and documentation for the id3lib API
@@ -82,7 +83,6 @@
 Dirk Mahoney 
 
 %package  examples
-License:LGPL-2.1+
 Summary:Example Applications for the id3lib Library
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}

++ id3lib-3.8.3-autoconf.patch ++
--- /var/tmp/diff_new_pack.X2mQda/_old  2013-03-03 21:06:42.0 +0100
+++ /var/tmp/diff_new_pack.X2mQda/_new  2013-03-03 21:06:42.0 +0100
@@ -1,4 +1,4 @@
 Makefile.am
+--- Makefile.am.orig
 +++ Makefile.am
 @@ -11,6 +11,7 @@
  
@@ -8,7 +8,19 @@
  
  EXTRA_DIST =\
  HISTORY \
 configure.in
+@@ -21,11 +22,6 @@ EXTRA_DIST =\
+ reconf\
+   makefile.win32  \
+   makewin32.bat
+-if ID3_NEEDZLIB
+-zlib_subdir = zlib
+-else
+-zlib_subdir = 
+-endif
+ 
+ SUBDIRS =  . m4 $(zlib_subdir) doc include id3com src examples
+ DIST_SUBDIRS = . m4 zlib doc include id3com src examples prj libprj
+--- configure.in.orig
 +++ configure.in
 @@ -11,14 +11,82 @@
  # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
@@ -95,17 +107,31 @@
  dnl The following has been adapted from glib (http://www.gtk.org)
  dnl
  dnl we need to AC_DIVERT_PUSH/AC_DIVERT_POP these variable definitions so they
-@@ -89,9 +157,6 @@
+@@ -83,14 +151,10 @@ ID3LIB_FULLNAME=$ID3LIB_NAME-$ID3LIB_VER
  
- AC_ISC_POSIX
+ AC_SUBST(ID3LIB_FULLNAME)
  
+-AM_CONFIG_HEADER(config.h)
++AC_CONFIG_HEADERS(config.h)
+ 
+ AM_INIT_AUTOMAKE($PACKAGE,$VERSION)
+ 
+-AC_ISC_POSIX
+-
 -dnl Initialize libtool
 -AM_PROG_LIBTOOL
--
+ 
  dnl Initialize maintainer mode
  AM_MAINTAINER_MODE
+@@ -114,19 +178,24 @@ dnl
+ AC_SUBST(ID3LIB_DEBUG_FLAGS)
  
-@@ -119,11 +184,15 @@
+ dnl Checks for programs
+-AC_PROG_CC
++AC_PROG_CC_STDC
++AC_USE_SYSTEM_EXTENSIONS
++AC_SYS_LARGEFILE
+ AC_PROG_CXX
  AC_PROG_CXXCPP
  AC_PROG_INSTALL
  
@@ -116,13 +

commit i4l-base for openSUSE:Factory

2013-03-03 Thread h_root
Hello community,

here is the log from the commit of package i4l-base for openSUSE:Factory 
checked in at 2013-03-03 21:06:19

Comparing /work/SRC/openSUSE:Factory/i4l-base (Old)
 and  /work/SRC/openSUSE:Factory/.i4l-base.new (New)


Package is "i4l-base", Maintainer is "orpha...@suse.de"

Changes:

--- /work/SRC/openSUSE:Factory/i4l-base/i4l-base.changes2012-12-10 
14:04:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.i4l-base.new/i4l-base.changes   2013-03-03 
21:06:20.0 +0100
@@ -1,0 +2,5 @@
+Sat Mar  2 11:10:31 UTC 2013 - seife+...@b1-systems.com
+
+- add isdn4k-utils-automake-1_13.diff, fix build with new automake
+
+---

New:

  isdn4k-utils-automake-1_13.diff



Other differences:
--
++ i4l-base.spec ++
--- /var/tmp/diff_new_pack.lk38cC/_old  2013-03-03 21:06:22.0 +0100
+++ /var/tmp/diff_new_pack.lk38cC/_new  2013-03-03 21:06:22.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package i4l-base
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -66,6 +66,8 @@
 Patch34:vboxbeep-pie.patch
 Patch35:isdnctrl-pie.patch
 Patch36:divactrl_2.1-dialog.patch
+# fix build with newer automake
+Patch50:isdn4k-utils-automake-1_13.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: /bin/cat
 PreReq: fileutils
@@ -225,6 +227,7 @@
 %patch11 -p1
 %patch12 -p0
 popd
+%patch50 -p1
 
 %build
 # This package failed when testing with -Wl,-as-needed being default.

++ isdn4k-utils-automake-1_13.diff ++
Index: b/capifax/configure.in
===
--- a/capifax/configure.in
+++ b/capifax/configure.in
@@ -41,7 +41,7 @@ CS_TEST_ALERT
 CS_TEST_GLOBALCONFIG
 
 AC_SUBST(INSTALL)
 AC_SUBST(CONFIG_SBINDIR)
 AC_SUBST(CONFIG_MANDIR)
-AM_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADERS(config.h)
 AC_OUTPUT(Makefile)
Index: b/capiinfo/configure.in
===
--- a/capiinfo/configure.in
+++ b/capiinfo/configure.in
@@ -40,7 +40,7 @@ AC_ARG_WITH(man,
 AC_SUBST(INSTALL)
 AC_SUBST(I4LCONFDIR)
 AC_SUBST(I4LVERSION)
 AC_SUBST(CONFIG_SBINDIR)
 AC_SUBST(CONFIG_MANDIR)
-AM_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADERS(config.h)
 AC_OUTPUT(Makefile)
Index: b/capiinit/configure.in
===
--- a/capiinit/configure.in
+++ b/capiinit/configure.in
@@ -22,7 +22,7 @@ dnl Checks for typedefs, structures, and
 
 AC_SUBST(INSTALL)
 AC_SUBST(CONFIG_SBINDIR)
 AC_SUBST(CONFIG_MANDIR)
 AC_SUBST(CONFIG_FIRMWAREDIR)
-AM_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADERS(config.h)
 AC_OUTPUT(Makefile)
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit fsarchiver for openSUSE:Factory

2013-03-03 Thread h_root
Hello community,

here is the log from the commit of package fsarchiver for openSUSE:Factory 
checked in at 2013-03-03 21:05:48

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


Package is "fsarchiver", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/fsarchiver/fsarchiver.changes2013-02-09 
10:04:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.fsarchiver.new/fsarchiver.changes   
2013-03-03 21:05:49.0 +0100
@@ -1,0 +2,9 @@
+Thu Feb 28 14:29:33 UTC 2013 - lazy.k...@opensuse.org
+
+- Update to 0.6.17.
+  + Implemented "mkfsopt" restfs option to pass extra options to
+mkfs.
+  + Fixed parsing of "/proc/self/mountinfo" (mount options were not
+parsed on new systems).
+
+---

Old:

  fsarchiver-0.6.16.tar.gz

New:

  fsarchiver-0.6.17.tar.gz



Other differences:
--
++ fsarchiver.spec ++
--- /var/tmp/diff_new_pack.9Kfi8a/_old  2013-03-03 21:05:51.0 +0100
+++ /var/tmp/diff_new_pack.9Kfi8a/_new  2013-03-03 21:05:51.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   fsarchiver
-Version:0.6.16
+Version:0.6.17
 Release:0
 Summary:Filesystem Archiver
 License:GPL-2.0

++ fsarchiver-0.6.16.tar.gz -> fsarchiver-0.6.17.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fsarchiver-0.6.16/ChangeLog 
new/fsarchiver-0.6.17/ChangeLog
--- old/fsarchiver-0.6.16/ChangeLog 2013-02-07 19:49:08.0 +0100
+++ new/fsarchiver-0.6.17/ChangeLog 2013-02-25 20:29:25.0 +0100
@@ -1,5 +1,9 @@
 fsarchiver: Filesystem Archiver for Linux [http://www.fsarchiver.org]
 =
+* 0.6.17 (2013-02-25):
+  - Implemented "mkfsopt" restfs option to pass extra options to mkfs (Michael 
Moninski)
+  - Fixed parsing of "/proc/self/mountinfo" (mount options were not parsed on 
new systems)
+  - Removed the ebuild for gentoo as fsarchiver is now in the official portage 
tree
 * 0.6.16 (2013-02-07):
   - Fixed mke2fs requirement for the "ext_attr" feature (affects RHLE5/CentOS5)
   - Fixed parsing of "/proc/self/mountinfo" for systemd based systems
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fsarchiver-0.6.16/configure 
new/fsarchiver-0.6.17/configure
--- old/fsarchiver-0.6.16/configure 2013-02-07 19:49:20.0 +0100
+++ new/fsarchiver-0.6.17/configure 2013-02-25 20:29:44.0 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.63 for fsarchiver 0.6.16.
+# Generated by GNU Autoconf 2.63 for fsarchiver 0.6.17.
 #
 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
 # 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
@@ -594,8 +594,8 @@
 # Identity of this package.
 PACKAGE_NAME='fsarchiver'
 PACKAGE_TARNAME='fsarchiver'
-PACKAGE_VERSION='0.6.16'
-PACKAGE_STRING='fsarchiver 0.6.16'
+PACKAGE_VERSION='0.6.17'
+PACKAGE_STRING='fsarchiver 0.6.17'
 PACKAGE_BUGREPORT=''
 
 # Factoring default headers for most tests.
@@ -1334,7 +1334,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures fsarchiver 0.6.16 to adapt to many kinds of systems.
+\`configure' configures fsarchiver 0.6.17 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1405,7 +1405,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of fsarchiver 0.6.16:";;
+ short | recursive ) echo "Configuration of fsarchiver 0.6.17:";;
esac
   cat <<\_ACEOF
 
@@ -1523,7 +1523,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-fsarchiver configure 0.6.16
+fsarchiver configure 0.6.17
 generated by GNU Autoconf 2.63
 
 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -1537,7 +1537,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by fsarchiver $as_me 0.6.16, which was
+It was created by fsarchiver $as_me 0.6.17, which was
 generated by GNU Autoconf 2.63.  Invocation command line was
 
   $ $0 $@
@@ -1907,7 +1907,7 @@
 
 
 cat >>confdefs.h <<\_ACEOF
-#define PACKAGE_RELDATE "2013-02-07"
+#define PACKAGE_RELDATE "2013-02-25"
 _ACEOF
 
 
@@ -1927,7 +1927,7 @@
 
 
 cat >>confdefs.h <<\_ACEOF
-#define PACKAGE_VERSION_C 16
+#define PACKAGE_

commit djvusmooth for openSUSE:Factory

2013-03-03 Thread h_root
Hello community,

here is the log from the commit of package djvusmooth for openSUSE:Factory 
checked in at 2013-03-03 21:05:38

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


Package is "djvusmooth", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/djvusmooth/djvusmooth.changes2012-10-12 
14:15:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.djvusmooth.new/djvusmooth.changes   
2013-03-03 21:05:40.0 +0100
@@ -1,0 +2,20 @@
+Thu Feb 28 20:17:49 UTC 2013 - lazy.k...@opensuse.org
+
+- Update to 0.2.14.
+  * Add "Open recent" submenu.
+  * Do not abort opening a new file if user chose to save the
+current one.
+  * Check Python version at runtime.
+  * Improve the manual page, as per man-pages(7) recommendations.
+  * Improve the setup script.
+  * Improve error handling.
+- Verify GPG signature.
+- Add BuildRequires: python-devel (as recommended in
+  openSUSE:Packaging Python).
+- Replace BuildRequires: update-desktop-files with
+  desktop-file-utils.
+- Remove %py_requires macro.
+- Don't use '--record-rpm' in install stage; write files into
+  %files section.
+
+---

Old:

  djvusmooth-0.2.13.tar.gz

New:

  djvusmooth-0.2.14.tar.gz
  djvusmooth-0.2.14.tar.gz.asc
  djvusmooth.keyring



Other differences:
--
++ djvusmooth.spec ++
--- /var/tmp/diff_new_pack.5E4m2t/_old  2013-03-03 21:05:43.0 +0100
+++ /var/tmp/diff_new_pack.5E4m2t/_new  2013-03-03 21:05:43.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package djvusmooth
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -17,23 +17,29 @@
 
 
 Name:   djvusmooth
-Version:0.2.13
+Version:0.2.14
 Release:0
 Summary:Graphical Text Editor for DjVu
 License:GPL-2.0
 Group:  Productivity/Publishing/Other
 Url:http://jwilk.net/software/djvusmooth
 Source0:
http://pypi.python.org/packages/source/d/%{name}/%{name}-%{version}.tar.gz
-Source1:djvusmooth.png
+Source1:
http://pypi.python.org/packages/source/d/%{name}/%{name}-%{version}.tar.gz.asc
+Source2:djvusmooth.png
+Source3:%{name}.keyring
+BuildRequires:  desktop-file-utils
+%if 0%{?suse_version} >= 1230
+BuildRequires:  gpg-offline
+%endif
 BuildRequires:  hicolor-icon-theme
 %if 0%{?suse_version} >= 1210
 BuildRequires:  python-distribute
 %else
 BuildRequires:  python-setuptools
 %endif
-BuildRequires:  update-desktop-files
 # Not actually needed for build, but in order to make the build fail
 # if the runtime dependencies are not available in the repository:
+BuildRequires:  python-devel
 BuildRequires:  python-djvulibre
 Requires:   djvulibre
 Requires:   python-djvulibre
@@ -42,7 +48,6 @@
 Recommends: %{name}-lang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
-%py_requires
 
 %description
 DjVuSmooth is a graphical text editor for DjVu documents.
@@ -50,6 +55,9 @@
 %lang_package
 
 %prep
+%if 0%{?gpg_verify:1}
+%gpg_verify %{SOURCE1}
+%endif
 %setup -q
 
 %build
@@ -76,17 +84,11 @@
 
 python setup.py install \
 --root=%{buildroot} \
---prefix=%{_prefix} \
---record-rpm=INSTALLED_FILES
+--prefix=%{_prefix}
 install -Dm 0644 %{SOURCE1} \
 %{buildroot}%{_datadir}/icons/hicolor/48x48/apps/%{name}.png
 
-# Remove locales, man and standard directory from the list.
-sed -i '/locale/d;/\/man\/man/d;/%dir \/usr\/share\/applications/d' \
-INSTALLED_FILES
-
 %find_lang %{name}
-%suse_update_desktop_file %{name}
 
 %post
 %desktop_database_post
@@ -96,12 +98,14 @@
 %desktop_database_postun
 %icon_theme_cache_postun
 
-%files -f INSTALLED_FILES
+%files
 %defattr(-,root,root,-)
 %doc COPYING doc/changelog
+%{_bindir}/%{name}
 %{_datadir}/applications/%{name}.desktop
 %{_datadir}/icons/hicolor/*/*/%{name}.png
 %doc %{_mandir}/man?/*
+%{python_sitelib}/*
 
 %files lang -f %{name}.lang
 

++ djvusmooth-0.2.13.tar.gz -> djvusmooth-0.2.14.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/djvusmooth-0.2.13/MANIFEST.in 
new/djvusmooth-0.2.14/MANIFEST.in
--- old/djvusmooth-0.2.13/MANIFEST.in   2012-03-13 21:01:47.0 +0100
+++ new/djvusmooth-0.2.14/MANIFEST.in   2013-02-20 20:46:05.0 +0100
@@ -8,5 +8,5 @@
 include doc/changelog
 include extra/*
 include po/*.po
-include update-i18n
+include private/*
 recursive-include