drop ntfsprogs from openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

FYI: Package ntfsprogs was dropped from openSUSE:Factory at Fri Aug 12 01:00:59 
CEST 2011.

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

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

Remember to have fun...

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



drop banshee-1 from openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

FYI: Package banshee-1 was dropped from openSUSE:Factory at Fri Aug 12 01:00:39 
CEST 2011.

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

https://build.opensuse.org/package/show?project=openSUSE:Dropped&package=banshee-1

Remember to have fun...

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



drop ntfs-3g from openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

FYI: Package ntfs-3g was dropped from openSUSE:Factory at Fri Aug 12 01:00:15 
CEST 2011.

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

https://build.opensuse.org/package/show?project=openSUSE:Dropped&package=ntfs-3g

Remember to have fun...

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



commit ecryptfs-utils for openSUSE:11.4

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package ecryptfs-utils for openSUSE:11.4
checked in at Thu Aug 11 21:01:08 CEST 2011.




--- old-versions/11.4/all/ecryptfs-utils/ecryptfs-utils.changes 2010-04-10 
17:40:48.0 +0200
+++ 11.4/ecryptfs-utils/ecryptfs-utils.changes  2011-08-11 18:07:00.0 
+0200
@@ -1,0 +2,13 @@
+Thu Aug 11 18:05:51 CEST 2011 - meiss...@suse.de
+
+- Various security fixes (bnc#709771)
+  CVE-2011-1831 - Race condition when checking mountpoint during mount.
+  CVE-2011-1832 - Race condition when checking mountpoint during unmount.
+  CVE-2011-1833 - Race condition when checking source during mount.
+  CVE-2011-1834 - Improper mtab handling allowing corruption due to resource
+  limits, signals, etc.
+  CVE-2011-1835 - Key poisoning in ecryptfs-setup-private due to insecure temp
+  directory.
+  CVE-2011-1837 - Predictable lock counter name and associated races.
+
+---

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


New:

  CVE-2011-1831,1832,1834.patch
  CVE-2011-1833.patch
  CVE-2011-1835.patch
  CVE-2011-1837.patch



Other differences:
--
++ ecryptfs-utils.spec ++
--- /var/tmp/diff_new_pack.jXcGnt/_old  2011-08-11 21:00:39.0 +0200
+++ /var/tmp/diff_new_pack.jXcGnt/_new  2011-08-11 21:00:39.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package ecryptfs-utils (Version 83)
+# spec file for package ecryptfs-utils
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,9 +25,13 @@
 AutoReqProv:on
 Summary:Userspace Utilities for ecryptfs
 Version:83
-Release:2
+Release:6.
 Source0:
http://launchpad.net/ecryptfs/trunk/%version/+download/ecryptfs-utils_%version.orig.tar.gz
 Source1:baselibs.conf
+Patch0: CVE-2011-1831,1832,1834.patch
+Patch1: CVE-2011-1833.patch
+Patch2: CVE-2011-1835.patch
+Patch4: CVE-2011-1837.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  gtk2-devel intltool keyutils-devel keyutils-libs 
libgcrypt-devel mozilla-nss-devel openssl-devel pam-devel pkcs11-helper-devel 
python-devel trousers-devel
 BuildRequires:  update-desktop-files
@@ -47,6 +51,10 @@
 
 %prep
 %setup -q
+%patch0 -p1
+%patch1 -p1
+%patch2 -p1
+%patch4 -p1
 
 %build
 export RPM_OPT_FLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"

++ CVE-2011-1831,1832,1834.patch ++
Description: fix privilege escalation via mountpoint race conditions
Author: Dan Rosenberg
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/ecryptfs-utils/+bug/732628

Index: ecryptfs-utils-83/src/utils/mount.ecryptfs_private.c
===
--- ecryptfs-utils-83.orig/src/utils/mount.ecryptfs_private.c
+++ ecryptfs-utils-83/src/utils/mount.ecryptfs_private.c
@@ -152,6 +152,47 @@ char *fetch_sig(char *pw_dir, int entry)
return sig;
 }
 
+int check_ownership_mnt(int uid, char **mnt) {
+/* Check ownership of mount point, chdir into it, and
+ * canonicalize the path for use in mtab updating.
+ * Return 0 if everything is in order, 1 on error.
+ */
+   struct stat s;
+   char *cwd;
+
+   /* From here on, we'll refer to "." as our mountpoint, to avoid
+* races.
+*/
+   if (chdir(*mnt) != 0) {
+   fputs("Cannot chdir into mountpoint.\n", stderr);
+   return 1;
+   }
+   if (stat(".", &s) != 0) {
+   fputs("Cannot examine mountpoint.\n", stderr);
+   return 1;
+   }
+   if (!S_ISDIR(s.st_mode)) {
+   fputs("Mountpoint is not a directory.\n", stderr);
+   return 1;
+   }
+   if (s.st_uid != uid) {
+   fputs("You do not own that mountpoint.\n", stderr);
+   return 1;
+   }
+
+   /* Canonicalize our pathname based on the current directory to
+* avoid races.
+*/
+   cwd = getcwd(NULL, 0);
+   if (!cwd) {
+   fputs("Failed to get current directory\n", stderr);
+   return 1;
+   }
+   *mnt = cwd;
+   return 0;
+}
+
+
 int check_ownerships(int uid, char *path) {
 /* Check ownership of device and mount point.
  * Return 0 if everything is in order, 1 on error.
@@ -177,31 +218,77 @@ int update_mtab(char *dev, char *mnt, ch
 /* Update /etc/mtab with new mount entry.
  * Return 0 on success, 1 on failure.
  */
-   FILE *fh;
-   struct mntent m;
-   fh = setmntent

commit ecryptfs-utils for openSUSE:11.3

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package ecryptfs-utils for openSUSE:11.3
checked in at Thu Aug 11 21:00:25 CEST 2011.




--- old-versions/11.3/all/ecryptfs-utils/ecryptfs-utils.changes 2010-04-10 
17:40:48.0 +0200
+++ 11.3/ecryptfs-utils/ecryptfs-utils.changes  2011-08-11 18:11:43.0 
+0200
@@ -1,0 +2,13 @@
+Thu Aug 11 18:11:21 CEST 2011 - meiss...@suse.de
+
+- Various security fixes (bnc#709771)
+  CVE-2011-1831 - Race condition when checking mountpoint during mount.
+  CVE-2011-1832 - Race condition when checking mountpoint during unmount.
+  CVE-2011-1833 - Race condition when checking source during mount.
+  CVE-2011-1834 - Improper mtab handling allowing corruption due to resource
+  limits, signals, etc.
+  CVE-2011-1835 - Key poisoning in ecryptfs-setup-private due to insecure temp
+  directory.
+  CVE-2011-1837 - Predictable lock counter name and associated races.
+
+---

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


New:

  CVE-2011-1831,1832,1834.patch
  CVE-2011-1833.patch
  CVE-2011-1835.patch
  CVE-2011-1837.patch



Other differences:
--
++ ecryptfs-utils.spec ++
--- /var/tmp/diff_new_pack.EXY4Jh/_old  2011-08-11 20:59:47.0 +0200
+++ /var/tmp/diff_new_pack.EXY4Jh/_new  2011-08-11 20:59:47.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package ecryptfs-utils (Version 83)
+# spec file for package ecryptfs-utils
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,9 +25,13 @@
 AutoReqProv:on
 Summary:Userspace Utilities for ecryptfs
 Version:83
-Release:2
+Release:3.
 Source0:
http://launchpad.net/ecryptfs/trunk/%version/+download/ecryptfs-utils_%version.orig.tar.gz
 Source1:baselibs.conf
+Patch0: CVE-2011-1831,1832,1834.patch
+Patch1: CVE-2011-1833.patch
+Patch2: CVE-2011-1835.patch
+Patch3: CVE-2011-1837.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  gtk2-devel intltool keyutils-devel keyutils-libs 
libgcrypt-devel mozilla-nss-devel openssl-devel pam-devel pkcs11-helper-devel 
python-devel trousers-devel
 BuildRequires:  update-desktop-files
@@ -47,6 +51,10 @@
 
 %prep
 %setup -q
+%patch0 -p1
+%patch1 -p1
+%patch2 -p1
+%patch3 -p1
 
 %build
 export RPM_OPT_FLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"

++ CVE-2011-1831,1832,1834.patch ++
Description: fix privilege escalation via mountpoint race conditions
Author: Dan Rosenberg
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/ecryptfs-utils/+bug/732628

Index: ecryptfs-utils-83/src/utils/mount.ecryptfs_private.c
===
--- ecryptfs-utils-83.orig/src/utils/mount.ecryptfs_private.c
+++ ecryptfs-utils-83/src/utils/mount.ecryptfs_private.c
@@ -152,6 +152,47 @@ char *fetch_sig(char *pw_dir, int entry)
return sig;
 }
 
+int check_ownership_mnt(int uid, char **mnt) {
+/* Check ownership of mount point, chdir into it, and
+ * canonicalize the path for use in mtab updating.
+ * Return 0 if everything is in order, 1 on error.
+ */
+   struct stat s;
+   char *cwd;
+
+   /* From here on, we'll refer to "." as our mountpoint, to avoid
+* races.
+*/
+   if (chdir(*mnt) != 0) {
+   fputs("Cannot chdir into mountpoint.\n", stderr);
+   return 1;
+   }
+   if (stat(".", &s) != 0) {
+   fputs("Cannot examine mountpoint.\n", stderr);
+   return 1;
+   }
+   if (!S_ISDIR(s.st_mode)) {
+   fputs("Mountpoint is not a directory.\n", stderr);
+   return 1;
+   }
+   if (s.st_uid != uid) {
+   fputs("You do not own that mountpoint.\n", stderr);
+   return 1;
+   }
+
+   /* Canonicalize our pathname based on the current directory to
+* avoid races.
+*/
+   cwd = getcwd(NULL, 0);
+   if (!cwd) {
+   fputs("Failed to get current directory\n", stderr);
+   return 1;
+   }
+   *mnt = cwd;
+   return 0;
+}
+
+
 int check_ownerships(int uid, char *path) {
 /* Check ownership of device and mount point.
  * Return 0 if everything is in order, 1 on error.
@@ -177,31 +218,77 @@ int update_mtab(char *dev, char *mnt, ch
 /* Update /etc/mtab with new mount entry.
  * Return 0 on success, 1 on failure.
  */
-   FILE *fh;
-   struct mntent m;
-   fh = setmntent

commit pcmanfm for openSUSE:11.3

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package pcmanfm for openSUSE:11.3
checked in at Thu Aug 11 20:59:32 CEST 2011.




--- old-versions/11.3/UPDATES/all/pcmanfm/pcmanfm.changes   2010-11-09 
00:02:53.0 +0100
+++ 11.3/pcmanfm/pcmanfm.changes2011-08-10 07:43:00.0 +0200
@@ -1,0 +2,14 @@
+Wed Aug 10 00:40:06 UTC 2011 - and...@opensuse.org
+
+- new upstream version 0.9.9 rc3
+  detailed changelog at: http://blog.lxde.org/?p=908
+- removed pcmanfm-0.9.8-fixbnc648882.patch now in upstream code 
+- added pcmanfm-0.9.9-fix-no_return_in_non_void.patch to
+  fix compiler warning
+
+---
+Mon Mar 14 18:53:58 UTC 2011 - g...@opensuse.org
+
+- call %desktop_database_post/un
+
+---

calling whatdependson for 11.3-i586


Old:

  pcmanfm-0.9.8-fixbnc648882.patch
  pcmanfm-0.9.8.tar.bz2

New:

  pcmanfm-0.9.9-fix-no_return_in_non_void.patch
  pcmanfm-0.9.9.tar.bz2



Other differences:
--
++ pcmanfm.spec ++
--- /var/tmp/diff_new_pack.fp3scl/_old  2011-08-11 20:58:59.0 +0200
+++ /var/tmp/diff_new_pack.fp3scl/_new  2011-08-11 20:58:59.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package pcmanfm (Version 0.9.8_rc2)
+# spec file for package pcmanfm
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,19 +20,19 @@
 
 Name:   pcmanfm
 Summary:The next generation LXDE file manager
-Version:0.9.8_rc2
-Release:1.
+Version:0.9.9_rc3
+Release:0.
 License:GPLv2
 Group:  Productivity/File utilities
 Url:http://www.lxde.org/
-Source0:%name-0.9.8.tar.bz2
+Source0:%name-0.9.9.tar.bz2
 Source1:%name-rpmlintrc
-Patch0: %name-0.9.8-fixbnc648882.patch
+Patch0: %name-0.9.9-fix-no_return_in_non_void.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  autoconf automake desktop-file-utils gcc gcc-c++
 BuildRequires:  fdupes gtk2-devel intltool menu-cache-devel
 BuildRequires:  make pkg-config update-desktop-files
-BuildRequires:  libfm-devel >=  0.1.14
+BuildRequires:  libfm-devel >=  0.1.16
 Requires:   libfm
 # needed for trash
 Requires:   gvfs gvfs-backends
@@ -55,12 +55,10 @@
 
 %lang_package
 %prep
-%setup -q -n %name-0.9.8
+%setup -q -n %name-0.9.9
 %patch0 -p1
 
 %build
-export CFLAGS="$RPM_OPT_FLAGS"
-export CXXFLAGS="$RPM_OPT_FLAGS"
 %configure --enable-debug
 %__make %{?jobs:-j%{jobs}}
 
@@ -73,6 +71,15 @@
 %clean
 %__rm -rf %buildroot
 
+%if 0%{?suse_version} >= 1140
+
+%post
+%desktop_database_post
+
+%postun
+%desktop_database_postun
+%endif
+
 %files
 %defattr(-,root,root)
 %_bindir/%name

++ pcmanfm-0.9.9-fix-no_return_in_non_void.patch ++
>From 7a98615b1d7a408b03a0ceb6d365d60f50d4e717 Mon Sep 17 00:00:00 2001
From: Andrea Florio 
Date: Wed, 10 Aug 2011 07:38:53 +0200
Subject: [PATCH] fixed no return in non void function

---
 src/main-win.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/main-win.c b/src/main-win.c
index b7a173d..c5af013 100644
--- a/src/main-win.c
+++ b/src/main-win.c
@@ -1128,7 +1128,7 @@ static void on_tab_page_status_text(FmTabPage* page, 
guint type, const char* sta
 }
 }
 
-static on_tab_page_chdir(FmTabPage* page, FmPath* path, FmMainWin* win)
+static void on_tab_page_chdir(FmTabPage* page, FmPath* path, FmMainWin* win)
 {
 fm_path_entry_set_path(win->location, path);
 gtk_window_set_title(GTK_WINDOW(win), fm_tab_page_get_title(page));
-- 
1.7.0.1


++ pcmanfm-0.9.8.tar.bz2 -> pcmanfm-0.9.9.tar.bz2 ++
 49774 lines of diff (skipped)






Remember to have fun...

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



commit libfm for openSUSE:11.3

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package libfm for openSUSE:11.3
checked in at Thu Aug 11 20:58:41 CEST 2011.




--- old-versions/11.3/UPDATES/all/libfm/libfm.changes   2010-10-20 
11:36:59.0 +0200
+++ 11.3/libfm/libfm.changes2011-08-10 02:37:22.0 +0200
@@ -1,0 +2,31 @@
+Wed Aug 10 00:37:31 UTC 2011 - and...@opensuse.org
+
+- new upstream version 0.1.16 rc3
+  detailed changelog at: http://blog.lxde.org/?p=908
+- removed all patches now in upstream code
+
+---
+Sun Aug  7 13:26:36 UTC 2011 - and...@opensuse.org
+
+- added libfm-0.1.14-fix_bnc710881.patch to fix bnc 710881 bug
+  that causes data loss if catting and paste a folder into a place
+  without writing permission 
+
+---
+Tue Jun 21 09:56:23 UTC 2011 - co...@novell.com
+
+- add prerequires for the rpm scripts
+
+---
+Sat Jan 22 23:27:41 UTC 2011 - g...@opensuse.org
+
+- added libfm-0.1.14-disable-gio-extension.patch in order to
+  disable the GIO extension implementing libfm-specific preferences
+  for URI scheme handlers for glib > 2.27 where the needed
+  extension point has been removed; preferred handlers set through
+  libfm/pref-apps.conf will be ignored and the new default glib
+  mechanism using x-scheme-handler will be used instead
+- enabled gtk-doc generation and disabled parallel make which
+  breaks it
+
+---

calling whatdependson for 11.3-i586


Old:

  libfm-0.1.14-fix_sf3089624.patch
  libfm-0.1.14-remove_rpath.patch
  libfm-0.1.14.tar.bz2

New:

  libfm-0.1.16-fix_build_older_gtk.patch
  libfm-0.1.16.tar.bz2



Other differences:
--
++ libfm.spec ++
--- /var/tmp/diff_new_pack.0s55ox/_old  2011-08-11 20:58:16.0 +0200
+++ /var/tmp/diff_new_pack.0s55ox/_new  2011-08-11 20:58:16.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package libfm (Version 0.1.14_rc2)
+# spec file for package libfm
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,17 +20,15 @@
 
 Name:   libfm
 Summary:A glib/gio-based lib used to develop file managers
-Version:0.1.14_rc2
-Release:2.
+Version:0.1.16_rc3
+Release:0.
 License:GPLv2
 Group:  Development/Libraries/C and C++
 Url:http://www.lxde.org/
-Source0:%name-0.1.14.tar.bz2
+Source0:%name-0.1.16.tar.bz2
 Source1:%name-rpmlintrc
 Patch0: %name-default-config.patch
-Patch1: %name-0.1.14-remove_rpath.patch
-# PATCH-FIX-UPSTREAM libfm-0.1.14-fix_sf3089624.patch - 
fixed "Filenames with spaces not supported in copy/paste"
-Patch2: %name-0.1.14-fix_sf3089624.patch
+Patch1: %name-0.1.16-fix_build_older_gtk.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  gcc-c++
 BuildRequires:  gtk2-devel
@@ -41,33 +39,35 @@
 BuildRequires:  update-desktop-files
 BuildRequires:  fdupes
 BuildRequires:  autoconf
+PreReq: desktop-file-utils
+PreReq: shared-mime-info
 
 %description
 A glib/gio-based lib used to develop file managers providing some
 file management utilities and related-widgets missing in gtk+/glib.
 
-%package -n libfm0
+%package -n libfm1
 License:GPLv2
 Group:  System/Libraries
 Summary:Libfm libraries
 
-%description  -n libfm0
+%description  -n libfm1
 libfm libraries for development
 
-%package -n libfm-gtk0
+%package -n libfm-gtk1
 License:GPLv2
 Group:  System/Libraries
 Summary:GTK libfm libraries
 
-%description  -n libfm-gtk0
+%description  -n libfm-gtk1
 GTK libfm libraries for development
 
 %package devel
 License:GPLv2
 Group:  Development/Libraries/C and C++
 Summary:Devel files for libfm
-Requires:   libfm0 = %version
-Requires:   libfm-gtk0 = %version
+Requires:   libfm1 = %version
+Requires:   libfm-gtk1 = %version
 Requires:   %name = %version
 Requires:   gtk2-devel
 Requires:   glib2-devel
@@ -87,31 +87,35 @@
 libfm developers documentation
 
 %prep
-%setup -q -n %name-0.1.14
+%setup -q -n %name-0.1.16
 %patch0 -p1
 %patch1 -p1
-%patch2 -p1
 
 %build
 autoreconf -fi
-export CFLAGS="$RPM_OPT_FLAGS"
-export CXXFLAGS="$RPM_OPT_FLAGS"
 %configure \
--disable-static \
-   --enable-debug
+   --enable-debug \
+   --enable-gtk-doc
 
 # remove rpath
 sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
 sed -i 's|^runpath_var=LD

commit apparmor for openSUSE:11.4

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package apparmor for openSUSE:11.4
checked in at Thu Aug 11 19:21:40 CEST 2011.





calling whatdependson for 11.4-i586




Other differences:
--
++ apparmor.spec ++
--- /var/tmp/diff_new_pack.ypX8Mv/_old  2011-08-11 19:18:59.0 +0200
+++ /var/tmp/diff_new_pack.ypX8Mv/_new  2011-08-11 19:18:59.0 +0200
@@ -49,7 +49,7 @@
 %endif
 Summary:AppArmor userlevel parser utility
 Version:%{srcversion}.%{bzr_commit}
-Release:52.
+Release:52.
 Group:  Productivity/Networking/Security
 Source0:apparmor-%{srcversion}.tar.bz2
 Source1:%{name}-profile-editor.png







Remember to have fun...

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



commit pcmanfm for openSUSE:11.4

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package pcmanfm for openSUSE:11.4
checked in at Thu Aug 11 17:22:43 CEST 2011.




--- old-versions/11.4/all/pcmanfm/pcmanfm.changes   2010-11-09 
00:02:53.0 +0100
+++ 11.4/pcmanfm/pcmanfm.changes2011-08-10 07:43:00.0 +0200
@@ -1,0 +2,14 @@
+Wed Aug 10 00:40:06 UTC 2011 - and...@opensuse.org
+
+- new upstream version 0.9.9 rc3
+  detailed changelog at: http://blog.lxde.org/?p=908
+- removed pcmanfm-0.9.8-fixbnc648882.patch now in upstream code 
+- added pcmanfm-0.9.9-fix-no_return_in_non_void.patch to
+  fix compiler warning
+
+---
+Mon Mar 14 18:53:58 UTC 2011 - g...@opensuse.org
+
+- call %desktop_database_post/un
+
+---

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


Old:

  pcmanfm-0.9.8-fixbnc648882.patch
  pcmanfm-0.9.8.tar.bz2

New:

  pcmanfm-0.9.9-fix-no_return_in_non_void.patch
  pcmanfm-0.9.9.tar.bz2



Other differences:
--
++ pcmanfm.spec ++
--- /var/tmp/diff_new_pack.AYE6RE/_old  2011-08-11 17:21:54.0 +0200
+++ /var/tmp/diff_new_pack.AYE6RE/_new  2011-08-11 17:21:54.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package pcmanfm (Version 0.9.8_rc2)
+# spec file for package pcmanfm
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,19 +20,19 @@
 
 Name:   pcmanfm
 Summary:The next generation LXDE file manager
-Version:0.9.8_rc2
-Release:2
+Version:0.9.9_rc3
+Release:0.
 License:GPLv2
 Group:  Productivity/File utilities
 Url:http://www.lxde.org/
-Source0:%name-0.9.8.tar.bz2
+Source0:%name-0.9.9.tar.bz2
 Source1:%name-rpmlintrc
-Patch0: %name-0.9.8-fixbnc648882.patch
+Patch0: %name-0.9.9-fix-no_return_in_non_void.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  autoconf automake desktop-file-utils gcc gcc-c++
 BuildRequires:  fdupes gtk2-devel intltool menu-cache-devel
 BuildRequires:  make pkg-config update-desktop-files
-BuildRequires:  libfm-devel >=  0.1.14
+BuildRequires:  libfm-devel >=  0.1.16
 Requires:   libfm
 # needed for trash
 Requires:   gvfs gvfs-backends
@@ -55,12 +55,10 @@
 
 %lang_package
 %prep
-%setup -q -n %name-0.9.8
+%setup -q -n %name-0.9.9
 %patch0 -p1
 
 %build
-export CFLAGS="$RPM_OPT_FLAGS"
-export CXXFLAGS="$RPM_OPT_FLAGS"
 %configure --enable-debug
 %__make %{?jobs:-j%{jobs}}
 
@@ -73,6 +71,15 @@
 %clean
 %__rm -rf %buildroot
 
+%if 0%{?suse_version} >= 1140
+
+%post
+%desktop_database_post
+
+%postun
+%desktop_database_postun
+%endif
+
 %files
 %defattr(-,root,root)
 %_bindir/%name

++ pcmanfm-0.9.9-fix-no_return_in_non_void.patch ++
>From 7a98615b1d7a408b03a0ceb6d365d60f50d4e717 Mon Sep 17 00:00:00 2001
From: Andrea Florio 
Date: Wed, 10 Aug 2011 07:38:53 +0200
Subject: [PATCH] fixed no return in non void function

---
 src/main-win.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/main-win.c b/src/main-win.c
index b7a173d..c5af013 100644
--- a/src/main-win.c
+++ b/src/main-win.c
@@ -1128,7 +1128,7 @@ static void on_tab_page_status_text(FmTabPage* page, 
guint type, const char* sta
 }
 }
 
-static on_tab_page_chdir(FmTabPage* page, FmPath* path, FmMainWin* win)
+static void on_tab_page_chdir(FmTabPage* page, FmPath* path, FmMainWin* win)
 {
 fm_path_entry_set_path(win->location, path);
 gtk_window_set_title(GTK_WINDOW(win), fm_tab_page_get_title(page));
-- 
1.7.0.1


++ pcmanfm-0.9.8.tar.bz2 -> pcmanfm-0.9.9.tar.bz2 ++
 49774 lines of diff (skipped)






Remember to have fun...

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



commit libfm for openSUSE:11.4

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package libfm for openSUSE:11.4
checked in at Thu Aug 11 17:20:46 CEST 2011.




--- old-versions/11.4/all/libfm/libfm.changes   2011-01-24 14:48:33.0 
+0100
+++ 11.4/libfm/libfm.changes2011-08-10 02:37:22.0 +0200
@@ -1,0 +2,19 @@
+Wed Aug 10 00:37:31 UTC 2011 - and...@opensuse.org
+
+- new upstream version 0.1.16 rc3
+  detailed changelog at: http://blog.lxde.org/?p=908
+- removed all patches now in upstream code
+
+---
+Sun Aug  7 13:26:36 UTC 2011 - and...@opensuse.org
+
+- added libfm-0.1.14-fix_bnc710881.patch to fix bnc 710881 bug
+  that causes data loss if catting and paste a folder into a place
+  without writing permission 
+
+---
+Tue Jun 21 09:56:23 UTC 2011 - co...@novell.com
+
+- add prerequires for the rpm scripts
+
+---

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


Old:

  libfm-0.1.14-disable-gio-extension.patch
  libfm-0.1.14-fix_sf3089624.patch
  libfm-0.1.14-remove_rpath.patch
  libfm-0.1.14.tar.bz2

New:

  libfm-0.1.16.tar.bz2



Other differences:
--
++ libfm.spec ++
--- /var/tmp/diff_new_pack.53ozlf/_old  2011-08-11 16:36:41.0 +0200
+++ /var/tmp/diff_new_pack.53ozlf/_new  2011-08-11 16:36:41.0 +0200
@@ -20,18 +20,14 @@
 
 Name:   libfm
 Summary:A glib/gio-based lib used to develop file managers
-Version:0.1.14_rc2
-Release:3
+Version:0.1.16_rc3
+Release:0.
 License:GPLv2
 Group:  Development/Libraries/C and C++
 Url:http://www.lxde.org/
-Source0:%name-0.1.14.tar.bz2
+Source0:%name-0.1.16.tar.bz2
 Source1:%name-rpmlintrc
 Patch0: %name-default-config.patch
-Patch1: %name-0.1.14-remove_rpath.patch
-# PATCH-FIX-UPSTREAM libfm-0.1.14-fix_sf3089624.patch - 
fixed "Filenames with spaces not supported in copy/paste"
-Patch2: %name-0.1.14-fix_sf3089624.patch
-Patch3: %name-0.1.14-disable-gio-extension.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  gcc-c++
 BuildRequires:  gtk2-devel
@@ -42,34 +38,35 @@
 BuildRequires:  update-desktop-files
 BuildRequires:  fdupes
 BuildRequires:  autoconf
-BuildRequires:  gtk-doc
+PreReq: desktop-file-utils
+PreReq: shared-mime-info
 
 %description
 A glib/gio-based lib used to develop file managers providing some
 file management utilities and related-widgets missing in gtk+/glib.
 
-%package -n libfm0
+%package -n libfm1
 License:GPLv2
 Group:  System/Libraries
 Summary:Libfm libraries
 
-%description  -n libfm0
+%description  -n libfm1
 libfm libraries for development
 
-%package -n libfm-gtk0
+%package -n libfm-gtk1
 License:GPLv2
 Group:  System/Libraries
 Summary:GTK libfm libraries
 
-%description  -n libfm-gtk0
+%description  -n libfm-gtk1
 GTK libfm libraries for development
 
 %package devel
 License:GPLv2
 Group:  Development/Libraries/C and C++
 Summary:Devel files for libfm
-Requires:   libfm0 = %version
-Requires:   libfm-gtk0 = %version
+Requires:   libfm1 = %version
+Requires:   libfm-gtk1 = %version
 Requires:   %name = %version
 Requires:   gtk2-devel
 Requires:   glib2-devel
@@ -89,16 +86,11 @@
 libfm developers documentation
 
 %prep
-%setup -q -n %name-0.1.14
+%setup -q -n %name-0.1.16
 %patch0 -p1
-%patch1 -p1
-%patch2 -p1
-%patch3 -p1
 
 %build
 autoreconf -fi
-export CFLAGS="$RPM_OPT_FLAGS"
-export CXXFLAGS="$RPM_OPT_FLAGS"
 %configure \
--disable-static \
--enable-debug \
@@ -112,7 +104,6 @@
 
 %install
 %makeinstall
-%__rm -rf %{buildroot}/%{_datadir}/locale/{es_VE,ur_PK}
 %__rm -f %{buildroot}%{_libdir}/*.la
 %__rm -f %{buildroot}/%{_libdir}/gio/modules/libgiofm.la
 # these settings will have no effect without the gio extension so remove them
@@ -134,13 +125,13 @@
 /usr/bin/update-mime-database %{_datadir}/mime &> /dev/null || :
 /usr/bin/update-desktop-database
 
-%post -n libfm-gtk0 -p /sbin/ldconfig
+%post -n libfm-gtk1 -p /sbin/ldconfig
 
-%postun -n libfm-gtk0 -p /sbin/ldconfig
+%postun -n libfm-gtk1 -p /sbin/ldconfig
 
-%post -n libfm0 -p /sbin/ldconfig
+%post -n libfm1 -p /sbin/ldconfig
 
-%postun -n libfm0 -p /sbin/ldconfig
+%postun -n libfm1 -p /sbin/ldconfig
 
 %clean
 rm -rf %{buildroot}
@@ -150,22 +141,20 @@
 %dir %{_sysconfdir}/xdg/%name
 %config %{_sysconfdir}/xdg/%name/%name.conf
 %{_datadir}/mime/packages/%name.xml
-%dir %{_libdir}/%name
-%{_libdir}/%name/gnome-terminal
 %if 0%{?s

commit NetworkManager-kde4 for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package NetworkManager-kde4 for 
openSUSE:Factory
checked in at Thu Aug 11 16:11:47 CEST 2011.




--- KDE/NetworkManager-kde4/NetworkManager-kde4.changes 2011-08-04 
15:29:39.0 +0200
+++ 
/mounts/work_src_done/STABLE/NetworkManager-kde4/NetworkManager-kde4.changes
2011-08-11 14:44:24.0 +0200
@@ -1,0 +2,11 @@
+Thu Aug 11 12:43:50 UTC 2011 - idon...@novell.com
+
+- Update to git snapshot 20110811
+  * Fix loading/saving VPN profiles
+
+---
+Thu Aug  4 19:36:51 UTC 2011 - idon...@novell.com
+
+- Fix build on 11.4 
+
+---

calling whatdependson for head-i586




Other differences:
--
++ NetworkManager-kde4.spec ++
--- /var/tmp/diff_new_pack.NZlLnv/_old  2011-08-11 16:11:20.0 +0200
+++ /var/tmp/diff_new_pack.NZlLnv/_new  2011-08-11 16:11:20.0 +0200
@@ -20,14 +20,14 @@
 
 Name:   NetworkManager-kde4
 BuildRequires:  kdebase4-workspace-devel
-%if %suse_version > 1140
-BuildRequires:  NetworkManager-devel > 0.8.997
+%if %suse_version >= 1210
+BuildRequires:  NetworkManager-devel > 0.8.999
 %else
 BuildRequires:  NetworkManager-devel < 0.8.5
 %endif
 BuildRequires:  git
-Version:0.9.1git20110722
-Release:5
+Version:0.9.1git20110811
+Release:1
 License:LGPL v2 or later
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Group:  System/GUI/KDE
@@ -39,14 +39,6 @@
 Requires:   %{name}-libs = %{version}-%{release}
 Provides:   NetworkManager-client
 ExcludeArch:s390 s390x
-# currently not our default
-%if 0
-%if %suse_version > 1110
-Supplements:packageand(NetworkManager:kdebase4-session)
-%endif
-Obsoletes:  NetworkManager-kde <= 0.7r848570
-Conflicts:  plasmoid-networkmanagement
-%endif
 %kde4_runtime_requires
 
 %description
@@ -150,7 +142,7 @@
 %lang_package -n %name-libs
 %prep
 %setup -q -n networkmanagement
-%if %suse_version > 1140
+%if %suse_version >= 1210
 git checkout nm09
 %endif
 tar -xjf %{SOURCE1}

++ networkmanagement.tar.bz2 ++
KDE/NetworkManager-kde4/networkmanagement.tar.bz2 
/mounts/work_src_done/STABLE/NetworkManager-kde4/networkmanagement.tar.bz2 
differ: char 11, line 1






Remember to have fun...

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



commit shorewall for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package shorewall for openSUSE:Factory
checked in at Thu Aug 11 15:58:21 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/shorewall/shorewall.changes2011-06-16 
09:06:17.0 +0200
@@ -0,0 +1,531 @@
+---
+Thu Jun 16 06:59:20 UTC 2011 - tog...@opensuse.org
+
+- Update to 4.4.20.3. Changes in this release are
+ * Deprecated options have been removed from the .conf files. 
+   They remain in the man pages.
+ * A simple configuration like the 'Universal' sample that includes a
+   single wildcard interface ('+' in the INTERFACE column) produces a
+   ruleset that blocks all incoming packets.
+
+   As part of correcting this defect, which was introduced in
+   4.4.20.2, one or more superfluous rules (which could never
+   match) have been eliminated from most configurations.
+
+
+---
+Wed Jun 15 06:57:32 UTC 2011 - tog...@opensuse.org
+
+- Update to 4.4.20.2
+  * A defect introduced in 4.4.20 could cause the following failure at
+start/restart:
+
+ERROR: Command "tc qdisc add dev eth0 parent 1:11 handle 1:
+   sfq quantum 12498 limit 127 perturb 10" failed
+  * The 'sfilter' interface option introduced in 4.4.20 was only
+applied to forwarded traffic. Now it is also applied to traffic
+addressed to the firewall itself.
+  * Issues with iptables-restore is corrected  
+  * IPSEC traffic is now (correctly) excluded from sfilter.
+  * The following incorrect warning message has been eliminated:
+
+ WARNING: sfilter is ineffective with FASTACCEPT=Yes
+
+
+---
+Tue Jun  7 14:14:12 UTC 2011 - tog...@opensuse.org
+
+- Update to 4.4.20.1
+  * The address of the Free Software Foundation has been corrected in
+  the License files.
+  * The shorewall[6].conf file installed in
+/usr/share/shorewall[6]/configfiles is no longer modified for use
+with Shorewall[6]-lite. When creating a new configuration for a
+remote forewall, two lines need to be modified in the copy
+
+  CONFIG_PATH=/usr/share/shorewall (or shorewall6)
+  STARTUP_LOG=/var/log/shorewall-lite-init.log
+  (or shorewall6-lite-init.log)
+
+
+---
+Mon Jun  6 07:30:14 UTC 2011 - tog...@opensuse.org
+
+- Update to 4.4.20 
+  *Removed backported patches for openSUSE specific locations as
+  they are incorporated in upstream.
+
+- Changes in 4.4.20 (for more read changelog.txt and releasenotes.txt)
+  * Support for the AUDIT target has been added. AUDIT is a feature of
+  the 2.6.39 kernel and iptables 1.4.10 that allows security auditing
+  of access decisions.
+
+---
+Wed May 18 11:03:16 UTC 2011 - tog...@opensuse.org
+
+- Update to 4.4.19.4
+ * Previously, the compiler would allow a degenerate entry (only the
+   BAND specified) in /etc/shorewall/tcpri. Such an entry now raises a
+   compilation error.
+ * Previously, it was possible to specify tcfilters and tcrules that
+   classified traffic with the class-id of a non-leaf HFSC class. Such
+   classes are not capabable of handling packets.
+   Shorewall now generates a compile-time warning in this case and
+   ignores the entry.
+
+   If a non-leaf class is specified as the default class, then
+   Shorewall now generates a compile-time error since that
+   configuration allows no network traffic to flow.
+
+ * Traditionally, Shorewall has not checked for the existance of
+   ipsets mentioned in the configuration, potentially resulting in a
+   run-time start/restart failure. Now, the compiler will issue a
+   WARNING if:
+
+   a) The compiler is being run by root.
+   b) The compilation isn't producing a script to run on a remote
+   system under a -lite product.
+   c) An ipset appearing in the configuration does not exist on the
+   local system.
+
+* As previously implemented, the 'refresh' command could fail or
+  could result in a ruleset other than what was intended. If there
+  had been changes in the ruleset since it was originally
+  started/restarted/restored that added or deleted sequenced chains
+  (chains such as ~lognnn and ~exclnnn), the resulting ruleset could
+  jump to the wrong such chains or could fail to 'refresh'
+  successfully.
+
+  This issue has been corrected as follows. When a 'refresh' is done
+  and individual chains are involved, then each table that contains
+  both sequenced chains and one of the chains being refreshed is
+  refreshed in its entirety.
+
+  For example, if 'shorwall refresh foo' is issued and the filter
+  table (which is the default) contains any sequenced chains, then
+  the entire table is reloaded. Note that this reload operation is

commit kdepim4 for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package kdepim4 for openSUSE:Factory
checked in at Thu Aug 11 15:56:55 CEST 2011.




--- KDE/kdepim4/kdepim4.changes 2011-04-21 22:20:48.0 +0200
+++ /mounts/work_src_done/STABLE/kdepim4/kdepim4.changes2011-08-09 
15:09:58.0 +0200
@@ -1,0 +2,51 @@
+Tue Aug  9 13:09:15 UTC 2011 - idon...@novell.com
+
+- kmail & korganizer are licensed under GPLv2 only because they
+  link to GPLv2 only libraries, bnc #710584
+
+---
+Fri Aug  5 21:10:16 UTC 2011 - idon...@novell.com
+
+- Drop kalarm-disable-rtcwake.patch, we are now whitelisted 
+
+---
+Thu Aug  4 09:58:50 UTC 2011 - idon...@novell.com
+
+- Add kalarm-disable-rtcwake.patch to disable kalarm rtcwake support
+  until bnc #707723 is resolved 
+
+---
+Thu Aug  4 08:53:59 UTC 2011 - idon...@novell.com
+
+- Add kdepim4-4.7-branch.patch, sync with 4.7 branch
+  * Memory leak fixes
+  * Crash fixes
+- Drop fix-progressmanager.diff, already in branch update
+
+---
+Wed Jul 27 12:47:49 UTC 2011 - cgiboude...@gmx.com
+
+- Update fix-progressmanager.diff. Add commit db0f6aba which is also needed
+
+---
+Mon Jul 25 10:16:10 UTC 2011 - cgiboude...@gmx.com
+
+- Add fix-progressmanager.diff
+Fixes kde#278112, kde#278235
+(will be part of kdepim 4.7.1)
+
+
+---
+Fri Jul 22 20:20:31 CEST 2011 - dmuel...@suse.de
+
+- update to 4.7.0
+  * Small fixes over KDE 4.7 RC2
+  *  see http://kde.org/announcements/4.7 for details
+  
+
+---
+Thu Jul 21 12:57:29 UTC 2011 - idon...@novell.com
+
+- Update to 4.6.95 
+
+---

calling whatdependson for head-i586


Old:

  4_4_BRANCH.diff
  assuan2.diff
  kdepim-4.4.11.1.tar.bz2
  ktimetracker_bnc651155.diff

New:

  kdepim-4.7.0.tar.bz2
  kdepim4-4.7-branch.patch
  make-kmail-faster.patch



Other differences:
--
++ kdepim4.spec ++
 702 lines (skipped)
 between KDE/kdepim4/kdepim4.spec
 and /mounts/work_src_done/STABLE/kdepim4/kdepim4.spec

++ akregator-useragent.diff ++
--- /var/tmp/diff_new_pack.Q75Iy9/_old  2011-08-11 15:56:27.0 +0200
+++ /var/tmp/diff_new_pack.Q75Iy9/_new  2011-08-11 15:56:27.0 +0200
@@ -1,13 +1,11 @@
-Index: akregator/src/akregator_part.cpp
-===
 akregator/src/akregator_part.cpp.orig
+--- akregator/src/akregator_part.cpp
 +++ akregator/src/akregator_part.cpp
-@@ -182,7 +182,7 @@ Part::Part( QWidget *parentWidget, QObje
+@@ -264,7 +264,7 @@ Part::Part( QWidget *parentWidget, QObje
  connect(m_autosaveTimer, SIGNAL(timeout()), this, 
SLOT(slotSaveFeedList()));
  m_autosaveTimer->start(5*60*1000); // 5 minutes
  
--QString useragent = QString( "Akregator/%1; syndication" ).arg( 
AKREGATOR_VERSION );
-+QString useragent = QString( "Akregator/%1; syndication SUSE" ).arg( 
AKREGATOR_VERSION );
+-QString useragent = QString( "Akregator/%1; syndication" ).arg( 
KDEPIM_VERSION );
++QString useragent = QString( "Akregator/%1; syndication SUSE" ).arg( 
KDEPIM_VERSION );
  
  if( !Settings::customUserAgent().isEmpty() )
  useragent = Settings::customUserAgent();

++ desktop-files.diff ++
--- /var/tmp/diff_new_pack.Q75Iy9/_old  2011-08-11 15:56:27.0 +0200
+++ /var/tmp/diff_new_pack.Q75Iy9/_new  2011-08-11 15:56:27.0 +0200
@@ -1,22 +1,28 @@
 akonadiconsole/akonadiconsole.desktop.sav  2009-12-14 11:54:45.0 
+0100
-+++ akonadiconsole/akonadiconsole.desktop  2009-12-19 21:23:12.0 
+0100
-@@ -77,4 +77,5 @@ Comment[x-test]=xxAkonadi Management and
+Index: akonadiconsole/akonadiconsole.desktop
+===
+--- akonadiconsole/akonadiconsole.desktop.orig
 akonadiconsole/akonadiconsole.desktop
+@@ -90,4 +90,5 @@ Comment[x-test]=xxAkonadi Management and
  Comment[zh_CN]=用于管理和调试 Akonadi 的控制台
  Comment[zh_TW]=Akonadi 管理與除錯主控台
  Terminal=false
 -Categories=Qt;KDE;Development;
 +Categories=Qt;KDE;Development;Debugger;X-KDE-Utilities-PIM;
 +Hidden=true
 ktimetracker/support/ktimetracker.desktop.sav  2009-12-11 
00:14:26.0 +0100
-+++ ktimetracker/support/ktimetracker.desktop  2009-12-19 21:10:07.0 
+0100
-@@ -104,4 +104,4 @@ Type=Application
+Index: ktimetracker/support/ktimetracker.desktop
+===
+--- ktimetracker/support/ktimetrack

commit kernel-firmware for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package kernel-firmware for openSUSE:Factory
checked in at Thu Aug 11 15:56:10 CEST 2011.




--- kernel-firmware/kernel-firmware.changes 2011-08-04 16:37:31.0 
+0200
+++ /mounts/work_src_done/STABLE/kernel-firmware/kernel-firmware.changes
2011-08-09 12:48:42.0 +0200
@@ -1,0 +2,5 @@
+Tue Aug  9 10:48:15 UTC 2011 - mma...@suse.cz
+
+- Remove the PE520.cis symlink, it was only needed for SLE11-SP2.
+
+---

calling whatdependson for head-i586




Other differences:
--
++ kernel-firmware.spec ++
--- /var/tmp/diff_new_pack.XwhKX8/_old  2011-08-11 15:55:56.0 +0200
+++ /var/tmp/diff_new_pack.XwhKX8/_new  2011-08-11 15:55:56.0 +0200
@@ -20,7 +20,7 @@
 Name:   kernel-firmware
 BuildRequires:  fdupes kernel-default
 Version:20110709
-Release:2
+Release:7
 Summary:Linux kernel firmware files
 License:Distributable in unmodified form; GPL v2 only; GPL v2 or 
later; X11/MIT
 Group:  System/Kernel
@@ -75,7 +75,6 @@
 mkdir -p %{buildroot}/lib/firmware
 cp -avf * %{buildroot}/lib/firmware
 rm -f %{buildroot}/lib/firmware/WHENCE
-ln -s cis/src/PE520.cis %{buildroot}/lib/firmware/PE520.cis
 bash %_sourcedir/firmware.sh --kill-duplicates %buildroot/lib/firmware/
 %fdupes %{buildroot}
 






Remember to have fun...

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



commit libqxmpp1 for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package libqxmpp1 for openSUSE:Factory
checked in at Thu Aug 11 15:55:40 CEST 2011.





calling whatdependson for head-i586




Other differences:
--
++ libqxmpp1.spec ++
--- /var/tmp/diff_new_pack.1YpOIC/_old  2011-08-11 15:55:26.0 +0200
+++ /var/tmp/diff_new_pack.1YpOIC/_new  2011-08-11 15:55:26.0 +0200
@@ -19,7 +19,7 @@
 
 Name:   libqxmpp1
 Version:0.3.45.1
-Release:1
+Release:3
 License:LGPL-2.0+
 Source0:
https://github.com/downloads/0xd34df00d/qxmpp-dev/qxmpp-0.3.45.1-extras.tar.bz2 
 Source1:baselibs.conf
@@ -46,6 +46,7 @@
 
 %package -n libqxmpp-devel
 
+
 Summary:Qxmpp Development Files
 Group:  Development/Libraries/C and C++
 Requires:   libqxmpp1 = %{version}
@@ -78,12 +79,11 @@
 
 %files
 %defattr(-,root,root,-)
-
+%doc AUTHORS CHANGELOG LICENSE.LGPL README
 %{_libdir}/libqxmpp.so.*
 
 %files -n libqxmpp-devel
 %defattr(-,root,root,-)
-%doc AUTHORS CHANGELOG LICENSE.LGPL README
 %{_includedir}/qxmpp
 %{_libdir}/libqxmpp.so
 %{_libdir}/pkgconfig/qxmpp.pc






Remember to have fun...

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



commit backintime for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package backintime for openSUSE:Factory
checked in at Thu Aug 11 15:54:23 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/backintime/backintime.changes  2011-07-20 
22:01:37.0 +0200
@@ -0,0 +1,315 @@
+---
+Wed Jul 20 19:52:28 UTC 2011 - tejas.gurusw...@opensuse.org
+
+- new upstream version 1.0.8
+  * Fix bug: lp#723545
++ Cache UID/GID to improve backup speed
+  * Fix bug: https://bugs.launchpad.net/backintime/+bug/705237
++ wrong profile name in message box
+  * Fix bug: lp#696663
++ Empty directories created during build
+  * Fix bug: lp#671946
++ Invalid notification ID
+
+---
+Sun Jun 26 21:47:18 UTC 2011 - tejas.gurusw...@opensuse.org
+
+- Fix missing language directories
+
+---
+Mon Apr 18 22:51:09 UTC 2011 - tejas.gurusw...@opensuse.org
+
+- Imported package from packman
+
+---
+Mon Jan  3 00:00:00 UTC 2011 - det...@links2linux.de
+
+- new upstream version <1.0.6>
+  * Fix bug:
+https://bugs.launchpad.net/backintime/+bug/676223
+https://bugs.launchpad.net/backintime/+bug/672705
+  * Smart remove: configurable options:
+https://bugs.launchpad.net/backintime/+bug/406765
+
+---
+Sat Oct 30 00:00:00 UTC 2010 - det...@links2linux.de
+
+- new upstream version <1.0.4>
+  * SettingsDialog: show highly recommended excludes
+  * Fix bug: https://bugs.launchpad.net/backintime/+bug/664783
+  * Option to use checksum to detect changes 
(https://bugs.launchpad.net/backintime/+bug/666964)
+  * Option to select log verbosity 
(https://bugs.launchpad.net/backintime/+bug/664423)
+  * Gnome: use gloobus-preview if installed
+
+---
+Sat Oct 16 00:00:00 UTC 2010 - det...@links2linux.de
+
+- new upstream version <1.0.2>
+  * reduce log file (no more duplicate "Compare with..." lines)
+  * declare backintime-kde4 packages as a replacement of backintime-kde
+
+---
+Wed Sep 15 00:00:00 UTC 2010 - det...@links2linux.de
+
+- new upstream version <1.0>
+  * add '.dropbox*' to default exclude patterns 
(https://bugs.launchpad.net/backintime/+bug/628172)
+  * add option to take a snapshot at every boot 
(https://bugs.launchpad.net/backintime/+bug/621810)
+  * add continue on errors (https://bugs.launchpad.net/backintime/+bug/616299)
+  * add expert options: copy unsafe links & copy links
+  * "user-callback" replace "user.callback" and receive profile informations
+  * documentation: on-line only (easier to maintain)
+  * add error log and error log view dialog (Gnome & KDE4)
+  * merge with: lp:~dave2010/backintime/minor-edits
+  * merge with: lp:~mcfonty/backintime/unique-snapshots-view
+  * reduce memory usage during compare with previous snapshot process
+  * custom backup hour (for daily backups or mode): 
https://bugs.launchpad.net/backintime/+bug/507451
+  * smart remove was slightly changed 
(https://bugs.launchpad.net/backintime/+bug/502435)
+  * make backup on restore optional
+  * add ionice support for user/cron backup process
+  * remove "schedule per included directory" (profiles do that) (+ bug LP: 
#412470)
+  * update Slovak translation (Tomáš Vadina )
+  * multiple profiles support
+  * backintime snapshot folder is restructured to 
../backintime/machine/user/profile_id/
+  * added the possibility to include other snapshot folders within a profile, 
it can only read those, there is not a GUI implementation yet
+  * added a tag suffix to the snapshot_id, to avoid double snapshot_ids
+  * added a desktop file for kdesu and a test if kdesu or kdesudo should be 
used (LP: #389988)
+  * added expert option to disable snapshots when on battery (LP: #388178)
+  * snapshots are stored entirely read-only (LP: #386275)
+  * changed default exclude patterns to caches, thumbnails, trashbins, and 
backups (LP: #422132)
+  * write access to snapshot folder is checked & change to snapshot version 2 
(LP: #423086)
+  * Used a more standard crontab syntax (LP: #409783)
+  * Stop the "Over zealous removal of crontab entries" (LP: #451811)
+  * and many bugfixes
+
+---
+Sat Aug 22 00:00:00 UTC 2009 - det...@links2linux.de
+
+- fix Requires
+
+---
+Mon Jun 22 00:00:00 UTC 2009 - herb...@links2linux.de
+
+- new upstream version <0.9.26>
+  * update translations from Launchpad
+  * Fix a but smart-remove algorithm 
(https://bugs.launchpad.net/backintime/+bug/376104)
+  * Fix bug: https://bugs.launchpa

commit ccgfs for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package ccgfs for openSUSE:Factory
checked in at Thu Aug 11 15:53:12 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/ccgfs/ccgfs.changes2011-07-21 
15:45:23.0 +0200
@@ -0,0 +1,5 @@
+---
+Thu Jul 21 13:44:34 UTC 2011 - jeng...@medozas.de
+
+- Initial package for build.opensuse.org
+

calling whatdependson for head-i586


New:

  ccgfs-0.79.tar.xz
  ccgfs.changes
  ccgfs.spec



Other differences:
--
++ ccgfs.spec ++
#
# spec file for package ccgfs
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:   ccgfs
Version:0.79
Release:1
Group:  System/Filesystems
Summary:Transport-agnostic network filesystem
License:GPLv3
Url:http://ccgfs.sf.net/

#Git-Clone: git://ccgfs.sf.net/gitroot/ccgfs/ccgfs
Source: %name-%version.tar.xz
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  fuse-devel >= 2.6.5 libattr-devel libxml2-devel >= 2.6
BuildRequires:  libHX-devel >= 3.4 openssl-devel >= 0.9.7 pkg-config >= 0.19
BuildRequires:  xz

%description
ccgfs is a transport-agnostic filesystem. Common transport modes are
"pull" and "push", the latter of which makes it possible to export a
filesystem located in a LAN to a DMZ host without needing to allow
connections from the DMZ as would be the case with the pull model.
Any transport can be used, e.g. ssh for encryption.

Author:
---
Jan Engelhardt

%prep
%setup -q

%build
%configure
make %{?_smp_mflags}

%install
make install DESTDIR="%buildroot";

%preun
%stop_on_removal ccgfs-super

%postun
%insserv_cleanup

%files
%defattr(-,root,root)
%_sysconfdir/init.d/*
%_sbindir/*
%doc doc/*.txt
%doc %_mandir/*/*

%changelog





Remember to have fun...

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



commit emacs for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package emacs for openSUSE:Factory
checked in at Thu Aug 11 15:50:53 CEST 2011.




--- emacs/emacs.changes 2011-07-11 17:36:50.0 +0200
+++ /mounts/work_src_done/STABLE/emacs/emacs.changes2011-08-11 
11:38:59.0 +0200
@@ -1,0 +2,5 @@
+Thu Aug 11 09:37:07 UTC 2011 - wer...@suse.de
+
+- Change tar ball to avoid intrinsic emacs GPL violoation (bnc#710247)
+
+---

calling whatdependson for head-i586


Old:

  emacs-23.3.tar.bz2

New:

  emacs-23.3a.tar.bz2



Other differences:
--
++ emacs.spec ++
--- /var/tmp/diff_new_pack.h27b3j/_old  2011-08-11 15:50:14.0 +0200
+++ /var/tmp/diff_new_pack.h27b3j/_new  2011-08-11 15:50:14.0 +0200
@@ -30,7 +30,7 @@
 License:GPLv2+
 Group:  Productivity/Editors/Emacs
 Version:23.3
-Release:1
+Release:2
 Obsoletes:  ge_exec ge_site emacmisc emacsger emacs-url Mule-UCS 
emacs-calc erc
 Requires:   emacs-info = %{version}
 Requires:   emacs_program = %{version}-%{release}
@@ -38,7 +38,7 @@
 Provides:   ge_site ge_exec emacs-url Mule-UCS emacs-calc erc emacmisc
 AutoReqProv:on
 Summary:GNU Emacs Base Package
-Source: ftp://mirrors.kernel.org/gnu/emacs/emacs-23.3.tar.bz2
+Source: ftp://ftp.gnu.org/gnu/emacs/emacs-23.3a.tar.bz2
 Source1:app-defaults.Emacs
 Source2:site-lisp.tar.bz2
 Source3:dot.gnu-emacs
@@ -818,6 +818,17 @@
 %dir %{_datadir}/emacs/%{version}/etc/gnus/
 %doc %{_datadir}/emacs/%{version}/etc/gnus/gnus-setup.ast
 %doc %{_datadir}/emacs/%{version}/etc/gnus/news-server.ast
+%dir %{_datadir}/emacs/%{version}/etc/grammars/
+%doc %{_datadir}/emacs/%{version}/etc/grammars/README
+%{_datadir}/emacs/%{version}/etc/grammars/bovine-grammar.el
+%{_datadir}/emacs/%{version}/etc/grammars/c.by
+%{_datadir}/emacs/%{version}/etc/grammars/fixes.patch
+%{_datadir}/emacs/%{version}/etc/grammars/java-tags.wy
+%{_datadir}/emacs/%{version}/etc/grammars/js.wy
+%{_datadir}/emacs/%{version}/etc/grammars/make.by
+%{_datadir}/emacs/%{version}/etc/grammars/python.wy
+%{_datadir}/emacs/%{version}/etc/grammars/scheme.by
+%{_datadir}/emacs/%{version}/etc/grammars/wisent-grammar.el
 %doc %{_datadir}/emacs/%{version}/etc/grep.txt
 %dir %{_datadir}/emacs/%{version}/etc/images/
 %doc %{_datadir}/emacs/%{version}/etc/images/README

++ emacs-23.3.tar.bz2 -> emacs-23.3a.tar.bz2 ++
emacs/emacs-23.3.tar.bz2 /mounts/work_src_done/STABLE/emacs/emacs-23.3a.tar.bz2 
differ: char 11, line 1






Remember to have fun...

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



commit foomatic-filters for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package foomatic-filters for openSUSE:Factory
checked in at Thu Aug 11 15:49:55 CEST 2011.




--- foomatic-filters/foomatic-filters.changes   2011-02-09 17:17:16.0 
+0100
+++ /mounts/work_src_done/STABLE/foomatic-filters/foomatic-filters.changes  
2011-08-11 11:48:21.0 +0200
@@ -1,0 +2,12 @@
+Thu Aug 11 10:56:54 CEST 2011 - jsm...@suse.de
+
+- Version upgrade to foomatic-filters-4.0.9.
+  SECURITY FIX for CVE-2011-2697 (see bnc#698451).
+  Use "ps2write" instead of "pswrite" as PostScript output device.
+  Added support for ICC-based color managment. Both colord
+  and CUPS' ICC-related PPD extensions are supported. For
+  colord D-Bus is required.
+  Several bugs fixed.
+  See the ChangeLog file for details.
+
+---

calling whatdependson for head-i586


Old:

  foomatic-filters-4.0.6.tar.bz2

New:

  foomatic-filters-4.0.9.tar.gz



Other differences:
--
++ foomatic-filters.spec ++
--- /var/tmp/diff_new_pack.EkdPXR/_old  2011-08-11 15:49:04.0 +0200
+++ /var/tmp/diff_new_pack.EkdPXR/_new  2011-08-11 15:49:04.0 +0200
@@ -26,7 +26,10 @@
 # the dependency resolver in our build system installs ghostscript-mini
 # so that ghostscript-library must be explicitely requested here,
 # see https://bugzilla.novell.com/show_bug.cgi?id=507414
-BuildRequires:  a2ps ghostscript-devel ghostscript-library
+# Since a foomatic-filters version after 4.0.6 pkg-config is required for 
build.
+# Since foomatic-filters-4.0.8 D-Bus is required for build
+# because there is ICC color managment via colord and colord requires D-Bus.
+BuildRequires:  a2ps dbus-1-devel ghostscript-devel ghostscript-library 
pkg-config
 License:GPLv2+
 Group:  Hardware/Printing
 # The /usr/lib/cups/backend/beh is perl script text:
@@ -35,15 +38,15 @@
 # "Non-PostScript/PDF files are translated to PostScript ... This is usually 
done by a2ps":
 Recommends: a2ps
 # See the VERSION file if it is a snapshot with "bzrdate":
-Version:4.0.6
-Release:2
+Version:4.0.9
+Release:1
 AutoReqProv:on
 # Source0...Source9 is for sources from upstream:
 # URL for Source0: 
http://www.openprinting.org/download/foomatic/foomatic-filters-4.0-20090513.tar.gz
 #%define bzrdate 4.0-20090513
 #Source0:%{name}-%{bzrdate}.tar.bz2
-# URL for Source0: 
http://www.openprinting.org/download/foomatic/foomatic-filters-4.0.6.tar.gz
-Source0:%{name}-%{version}.tar.bz2
+# URL for Source0: 
http://www.openprinting.org/download/foomatic/foomatic-filters-4.0.9.tar.gz
+Source0:%{name}-%{version}.tar.gz
 # Patch0...Patch9 is for patches from upstream:
 # ...
 # Patch10...Patch99 is for Suse patches for the sources from upstream:






Remember to have fun...

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



commit mc for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package mc for openSUSE:Factory
checked in at Thu Aug 11 15:46:09 CEST 2011.




--- GNOME/mc/mc.changes 2011-04-25 11:19:39.0 +0200
+++ /mounts/work_src_done/STABLE/mc/mc.changes  2011-08-11 07:05:43.0 
+0200
@@ -0,0 +1,6 @@
+Thu Aug 11 08:44:25 UTC 2011 - vladsp...@gmail.com
+
+- update to 4.7.5.3
+  * numerous changes and enhancements, see
+/usr/share/doc/packages/mc/NEWS
+

calling whatdependson for head-i586


Old:

  mc-4.7.5.1.tar.lzma

New:

  mc-4.7.5.3.tar.lzma



Other differences:
--
++ mc.spec ++
--- /var/tmp/diff_new_pack.wWZi5R/_old  2011-08-11 15:45:46.0 +0200
+++ /var/tmp/diff_new_pack.wWZi5R/_new  2011-08-11 15:45:46.0 +0200
@@ -22,9 +22,9 @@
 Summary:Midnight Commander
 Group:  Productivity/File utilities
 License:GPLv2+
-Url:http://www.ibiblio.org/mc/
-Version:4.7.5.1
-Release:8
+Url:http://www.midnight-commander.org/
+Version:4.7.5.3
+Release:1
 Source: mc-%{version}.tar.lzma
 Source1:x11_browser
 Source2:%{name}.desktop







Remember to have fun...

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



commit pcmciautils for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package pcmciautils for openSUSE:Factory
checked in at Thu Aug 11 15:45:38 CEST 2011.




--- pcmciautils/pcmciautils.changes 2010-11-11 11:03:40.0 +0100
+++ /mounts/work_src_done/STABLE/pcmciautils/pcmciautils.changes
2011-08-11 11:21:24.0 +0200
@@ -1,0 +2,7 @@
+Thu Aug 11 09:19:17 UTC 2011 - a...@suse.de
+
+- Only install E-CARD.cis, all other files are part of kernel-firmware
+  package.
+- Use set_permissions.
+
+---

calling whatdependson for head-i586




Other differences:
--
++ pcmciautils.spec ++
--- /var/tmp/diff_new_pack.18faUY/_old  2011-08-11 15:45:24.0 +0200
+++ /var/tmp/diff_new_pack.18faUY/_new  2011-08-11 15:45:24.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package pcmciautils (Version 017)
+# spec file for package pcmciautils
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -27,7 +27,7 @@
 %endif
 Url:http://kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html
 Version:017
-Release:2
+Release:115
 Summary:Utilities for PC-Cards
 License:GPLv2+
 Group:  Hardware/Other
@@ -71,13 +71,16 @@
 make install DESTDIR=%{buildroot}
 install -m 644 suse-files/NOTE %{buildroot}/etc/pcmcia
 mkdir -p %{buildroot}/lib/firmware
-install -m 644 cis-files/* %{buildroot}/lib/firmware
+# Only install E-CARD.cis, all other files are part of
+# kernel-firmware package, so no need to duplicate them.
+install -m 644 cis-files/E-CARD.cis %{buildroot}/lib/firmware
 mkdir -p %{buildroot}/%{_docdir}/pcmciautils
 install -m 644 suse-files/README.SUSE %{buildroot}/%{_docdir}/pcmciautils
 
 %post
-%run_permissions
+%set_permissions /sbin/pccardctl
 rm -vf /etc/sysconfig/pcmcia
+
 %verifyscript
 %verify_permissions -e /sbin/pccardctl
 
@@ -95,7 +98,6 @@
 /sbin/lspcmcia
 /lib/firmware/*
 /%{_docdir}/pcmciautils
-#/%{_mandir}/man[458]/*
 /%{_mandir}/man8/*
 
 %changelog






Remember to have fun...

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



commit perl-DBD-SQLite for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package perl-DBD-SQLite for openSUSE:Factory
checked in at Thu Aug 11 15:45:05 CEST 2011.




--- perl-DBD-SQLite/perl-DBD-SQLite.changes 2010-12-01 14:43:03.0 
+0100
+++ /mounts/work_src_done/STABLE/perl-DBD-SQLite/perl-DBD-SQLite.changes
2011-08-11 00:11:29.0 +0200
@@ -1,0 +2,31 @@
+Wed Aug 10 22:09:58 UTC 2011 - greg.freem...@gmail.com
+
+- Update to 1.33
+- Updated to SQLite 3.7.6.3 (ISHIGAKI)
+- Made util/getsqlite.pl state that it needs fixing to work for
+  SQLite 3.7.5+ when it dies at the last step, and outline what the
+  user needs to do manually instead, until getsqlite is fixed (DUNCAND)
+- Resolved #67843 for DBD-SQLite: savepoint rollback alters AC
+  state (ISHIGAKI)
+- Resolved #65267 for DBD-SQLite: Add RTree support option;
+  skip fts3/metadata tests if those features are disabled
+  (ISHIGAKI)
+- Resolved #65267: Add RTree support option (CJFIELDS)
+- Added sqlite_see_if_its_a_number database handle attribute
+  to deal with issues caused by (quoted) bind values against
+  numbers such as return values from a function etc. (ISHIGAKI)
+- Made util/getsqlite.pl work with the amalg distro filename changes
+  introd by SQLite 3.7.4, and still with older ones also (DUNCAND)
+- Updated to SQLite 3.7.4 (DUNCAND)
+- Resolved #61355: Fails testing in parallel (ISHIGAKI)
+- Resolved #61361: Problems building 1.31 with system SQLite (ISHIGAKI)
+- Resolved #61117: Supporting database as an alias for dbname in
+  DSN (ISHIGAKI)
+- Resolved #62370: Segfaults during operations on disconnected
+  handles (ISHIGAKI)
+- Resolved #61958: REGEXP should return NULL when one of its
+  arguments is NULL (ISHIGAKI)
+- Removed PrintWarn tweak introduced in 1.19_09 (Tim Bunce's
+  advice) (ISHIGAKI)
+
+---

calling whatdependson for head-i586


Old:

  DBD-SQLite-1.31.tar.bz2

New:

  DBD-SQLite-1.33.tar.gz



Other differences:
--
++ perl-DBD-SQLite.spec ++
--- /var/tmp/diff_new_pack.kYB60z/_old  2011-08-11 15:43:40.0 +0200
+++ /var/tmp/diff_new_pack.kYB60z/_new  2011-08-11 15:43:40.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-DBD-SQLite (Version 1.31)
+# spec file for package perl-DBD-SQLite
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -21,13 +21,13 @@
 Name:   perl-DBD-SQLite
 %define cpan_name DBD-SQLite
 Summary:Self-contained RDBMS in a DBI Driver
-Version:1.31
-Release:2
+Version:1.33
+Release:1
 License:GPL+ or Artistic
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/DBD-SQLite/
 #Source: 
http://www.cpan.org/modules/by-module/DBD/DBD-SQLite-%{version}.tar.bz2
-Source: 
http://www.cpan.org/authors/id/A/AD/ADAMK/%{cpan_name}-%{version}.tar.bz2
+Source: 
http://www.cpan.org/authors/id/A/AD/ADAMK/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}
 BuildRequires:  perl






Remember to have fun...

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



commit yast2-pkg-bindings for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package yast2-pkg-bindings for 
openSUSE:Factory
checked in at Thu Aug 11 15:43:29 CEST 2011.




--- yast2-pkg-bindings/yast2-pkg-bindings.changes   2011-08-05 
09:42:02.0 +0200
+++ /mounts/work_src_done/STABLE/yast2-pkg-bindings/yast2-pkg-bindings.changes  
2011-08-11 08:38:04.0 +0200
@@ -1,0 +2,9 @@
+Wed Aug 10 13:17:36 UTC 2011 - lsle...@suse.cz
+
+- Pkg::SourceStartManager() - always display progress, do not
+  assume that any repository present cannot trigger refresh,
+  that's false if the previous refresh failed and causes crash
+  (bnc#711182)
+- 2.21.9
+
+---

calling whatdependson for head-i586


Old:

  yast2-pkg-bindings-2.21.8.tar.bz2

New:

  yast2-pkg-bindings-2.21.9.tar.bz2



Other differences:
--
++ yast2-pkg-bindings-devel-doc.spec ++
--- /var/tmp/diff_new_pack.g43pcH/_old  2011-08-11 15:41:23.0 +0200
+++ /var/tmp/diff_new_pack.g43pcH/_new  2011-08-11 15:41:23.0 +0200
@@ -20,12 +20,12 @@
 
 Name:   yast2-pkg-bindings-devel-doc
 
-Version:2.21.8
+Version:2.21.9
 Release:1
 License:GPL
 Group:  Documentation/HTML
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-pkg-bindings-2.21.8.tar.bz2
+Source0:yast2-pkg-bindings-2.21.9.tar.bz2
 Prefix: %_prefix
 
 # same as in the main package (because we use the same configure.in.in)
@@ -42,7 +42,7 @@
 from the pkg-bindings sources.
 
 %prep
-%setup -n yast2-pkg-bindings-2.21.8
+%setup -n yast2-pkg-bindings-2.21.9
 # build only documentation, ignore all other directories
 echo "doc" > SUBDIRS
 

++ yast2-pkg-bindings.spec ++
--- /var/tmp/diff_new_pack.g43pcH/_old  2011-08-11 15:41:23.0 +0200
+++ /var/tmp/diff_new_pack.g43pcH/_new  2011-08-11 15:41:23.0 +0200
@@ -19,11 +19,11 @@
 
 
 Name:   yast2-pkg-bindings
-Version:2.21.8
+Version:2.21.9
 Release:1
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-pkg-bindings-2.21.8.tar.bz2
+Source0:yast2-pkg-bindings-2.21.9.tar.bz2
 
 Prefix: /usr
 
@@ -46,7 +46,7 @@
 library in YaST2.
 
 %prep
-%setup -n yast2-pkg-bindings-2.21.8
+%setup -n yast2-pkg-bindings-2.21.9
 # build only the library, ignore documentation (it is in devel-doc package)
 echo "src" > SUBDIRS
 

++ yast2-pkg-bindings-2.21.8.tar.bz2 -> yast2-pkg-bindings-2.21.9.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-pkg-bindings-2.21.8/VERSION 
new/yast2-pkg-bindings-2.21.9/VERSION
--- old/yast2-pkg-bindings-2.21.8/VERSION   2011-08-05 09:36:41.0 
+0200
+++ new/yast2-pkg-bindings-2.21.9/VERSION   2011-08-11 08:35:19.0 
+0200
@@ -1 +1 @@
-2.21.8
+2.21.9
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-pkg-bindings-2.21.8/configure 
new/yast2-pkg-bindings-2.21.9/configure
--- old/yast2-pkg-bindings-2.21.8/configure 2011-08-05 09:40:10.0 
+0200
+++ new/yast2-pkg-bindings-2.21.9/configure 2011-08-11 08:37:03.0 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for yast2-pkg-bindings 2.21.8.
+# Generated by GNU Autoconf 2.68 for yast2-pkg-bindings 2.21.9.
 #
 # Report bugs to .
 #
@@ -570,8 +570,8 @@
 # Identity of this package.
 PACKAGE_NAME='yast2-pkg-bindings'
 PACKAGE_TARNAME='yast2-pkg-bindings'
-PACKAGE_VERSION='2.21.8'
-PACKAGE_STRING='yast2-pkg-bindings 2.21.8'
+PACKAGE_VERSION='2.21.9'
+PACKAGE_STRING='yast2-pkg-bindings 2.21.9'
 PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
 PACKAGE_URL=''
 
@@ -1363,7 +1363,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 yast2-pkg-bindings 2.21.8 to adapt to many kinds of 
systems.
+\`configure' configures yast2-pkg-bindings 2.21.9 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1435,7 +1435,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of yast2-pkg-bindings 2.21.8:";;
+ short | recursive ) echo "Configuration of yast2-pkg-bindings 2.21.9:";;
esac
   cat <<\_ACEOF
 
@@ -1553,7 +1553,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-yast2-pkg-bindings configure 2.21.8
+yast2-pkg-bindings configure 2.21.9
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2006,7 +2006,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid 

commit sysstat for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package sysstat for openSUSE:Factory
checked in at Thu Aug 11 15:41:13 CEST 2011.




--- sysstat/sysstat.changes 2011-06-27 14:50:07.0 +0200
+++ /mounts/work_src_done/STABLE/sysstat/sysstat.changes2011-08-11 
09:32:24.0 +0200
@@ -1,0 +2,5 @@
+Thu Aug 11 07:31:36 UTC 2011 - pu...@novell.com
+
+- enable boot.sysstat service on new installation (bnc#711574) 
+
+---

calling whatdependson for head-i586




Other differences:
--
++ sysstat.spec ++
--- /var/tmp/diff_new_pack.NFdIpN/_old  2011-08-11 15:40:35.0 +0200
+++ /var/tmp/diff_new_pack.NFdIpN/_new  2011-08-11 15:40:35.0 +0200
@@ -19,7 +19,7 @@
 
 Name:   sysstat
 Version:10.0.1
-Release:1
+Release:18
 License:GNU General Public License version 2 or later (GPL v2 or later)
 Summary:Sar and Iostat Commands for Linux
 Url:http://pagesperso-orange.fr/sebastien.godard/
@@ -117,7 +117,7 @@
 [ "$1" -gt 0 ] || rm -f %{_localstatedir}/log/sa/*
 
 %post
-%{fillup_and_insserv boot.sysstat}
+%{fillup_and_insserv -y boot.sysstat}
 
 %postun
 %{insserv_cleanup}






Remember to have fun...

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



commit grilo-plugins for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package grilo-plugins for openSUSE:Factory
checked in at Thu Aug 11 15:39:32 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/grilo-plugins/grilo-plugins.changes
2011-08-04 15:42:09.0 +0200
@@ -0,0 +1,18 @@
+---
+Wed Aug  3 18:59:32 UTC 2011 - dims...@opensuse.org
+
+- Spec file cleanup for inclusion into Factory.
+- Add grilo-plugins-gdata0.9.patch: Fix build with gdata 0.9, taken
+  from git.
+
+---
+Fri Jul  8 13:51:01 UTC 2011 - cbosdon...@novell.com
+
+- Added tracker-sparql-0.11 and libquvi dependencies for build on
+  Factory.
+
+---
+Thu Jul  7 15:59:54 UTC 2011 - cbosdon...@novell.com
+
+- Initial package for grilo plugins
+

calling whatdependson for head-i586


New:

  grilo-plugins-0.1.16.tar.bz2
  grilo-plugins-gdata0.9.patch
  grilo-plugins.changes
  grilo-plugins.spec
  tracker-sparql-version.patch



Other differences:
--
++ grilo-plugins.spec ++
#
# spec file for package grilo-plugins
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:   grilo-plugins
Version:0.1.16
Release:1
# FIXME: The various plugins probably need to be split out in smaller packages. 
(see bnc#710364)
License:LGPL-2.1+
Summary:Media discovering and browsing framework -- Media and Metadata 
Plugins
Url:https://live.gnome.org/Grilo
Group:  Productivity/Multimedia/Other
Source: 
http://ftp.gnome.org/pub/GNOME/sources/grilo/0.1/%{name}-%{version}.tar.bz2
# PATCH-FIX-UPSTREAM tracker-sparql-version.patch bgo#654248 
cbosdon...@suse.com -- Check for tracker-sparql-0.11 to build on Factory
Patch0: tracker-sparql-version.patch
# PATCH-FIX-UPSTREAM grilo-plugins-gdata0.9.patch dims...@opensuse.org -- Fix 
build with libgdata 0.9. Taken from git, commits 4e36c - 37ee6
Patch1: grilo-plugins-gdata0.9.patch
# Needed for Patch1
BuildRequires:  gnome-common
BuildRequires:  pkgconfig(gio-2.0)
BuildRequires:  pkgconfig(glib-2.0)
BuildRequires:  pkgconfig(gmime-2.4)
BuildRequires:  pkgconfig(gmodule-2.0)
BuildRequires:  pkgconfig(gobject-2.0)
BuildRequires:  pkgconfig(grilo-0.1) = 0.1.16
BuildRequires:  pkgconfig(gthread-2.0)
BuildRequires:  pkgconfig(gupnp-1.0)
BuildRequires:  pkgconfig(gupnp-av-1.0)
BuildRequires:  pkgconfig(libgdata)
BuildRequires:  pkgconfig(libsoup-2.4)
BuildRequires:  pkgconfig(libxml-2.0)
BuildRequires:  pkgconfig(sqlite3)
%if 0%{?suse_version} > 1140
BuildRequires:  pkgconfig(libquvi) >= 0.2.15
BuildRequires:  pkgconfig(tracker-sparql-0.11)
%else
BuildRequires:  pkgconfig(tracker-sparql-0.10)
%endif
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
Grilo is a framework for browsing and searching media content from
various sources using a single API.

This package provides plugins for accessing content from various media
providers, including podcasts, UPnP/DLNA, Apple trailers, Flickr,
Jamendo, Vimeo, YouTube.

%prep
%setup -q
%patch0 -p1
%patch1 -p1

%build
# reconfiguration needed for patch1
NOCONFIGURE=1 gnome-autogen.sh
%configure --disable-static
make %{?_smp_mflags}

%install
%make_install
find %{buildroot} -type f -name "*.la" -delete -print

%check
make check

%clean
%{?buildroot:rm -rf %{buildroot}}

%files
%defattr(-,root,root)
%doc AUTHORS ChangeLog COPYING NEWS README
# Explicitly list plugins
%{_libdir}/grilo-0.1/libgrlappletrailers.so
%{_datadir}/grilo-0.1/plugins/grl-apple-trailers.xml
%{_libdir}/grilo-0.1/libgrlbookmarks.so
%{_datadir}/grilo-0.1/plugins/grl-bookmarks.xml
%{_libdir}/grilo-0.1/libgrlfilesystem.so
%{_datadir}/grilo-0.1/plugins/grl-filesystem.xml
%{_libdir}/grilo-0.1/libgrlflickr.so
%{_datadir}/grilo-0.1/plugins/grl-flickr.xml
%{_libdir}/grilo-0.1/libgrlgravatar.so
%{_datadir}/grilo-0.1/plugins/grl-gravatar.xml
%{_libdir}/grilo-0.1/libgrljamendo.so
%{_datadir}/grilo-0.1/plugins/grl-jamendo.xml
%{_libdir}/grilo-0.1/libgrllastfm-albumart.so
%{_datadir}/grilo-0.1/plugins/grl-lastfm-albumart.xml
%{_libdir}/grilo-0.1/libgrll

commit opensuse-manuals_ru for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package opensuse-manuals_ru for 
openSUSE:Factory
checked in at Thu Aug 11 15:36:57 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ 
/mounts/work_src_done/STABLE/opensuse-manuals_ru/opensuse-manuals_ru.changes
2011-07-26 07:01:13.0 +0200
@@ -0,0 +1,20 @@
+---
+Tue Jul 26 05:01:37 UTC 2011 - pastak...@yandex.ru
+
+- Update text and image files.
+
+---
+Wed Jul 20 17:06:34 UTC 2011 - pastak...@yandex.ru
+
+- update security_acls.
+
+---
+Wed Jul 20 07:58:19 UTC 2011 - pastak...@yandex.ru
+
+- Update text and image files.
+
+---
+Thu Jul 14 08:32:45 CEST 2011 - k...@suse.de
+
+- New package.
+

calling whatdependson for head-i586


New:

  attributes
  doc_pre_checkin.sh
  opensuse-html_ru-desktop.tar.bz2
  opensuse-html_ru-graphics.tar.bz2
  opensuse-html_ru-html.tar.bz2
  opensuse-html_ru.tar.bz2
  opensuse-kvm_ru-pdf-yelp.tar.bz2
  opensuse-kvm_ru.pdf
  opensuse-manuals_ru.changes
  opensuse-manuals_ru.spec
  opensuse-reference_ru-pdf-yelp.tar.bz2
  opensuse-reference_ru.pdf
  opensuse-security_ru-pdf-yelp.tar.bz2
  opensuse-security_ru.pdf
  opensuse-startup_ru-pdf-yelp.tar.bz2
  opensuse-startup_ru.pdf
  opensuse-tuning_ru-pdf-yelp.tar.bz2
  opensuse-tuning_ru.pdf



Other differences:
--
++ opensuse-manuals_ru.spec ++
#
# spec file for package opensuse-manuals_ru
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#

# norootforbuild


Name:   opensuse-manuals_ru
%define my_lang ru
%define my_book opensuse-html
Version:11.4
Release:1
Provides:   locale(desktop-data-openSUSE:ru)
Obsoletes:  opensuse-manual_ru < 11.2 opensuse-kdequick_ru < 11.1 
opensuse-gnomequick_ru < 11.1 opensuse-gnomeuser_ru < 11.1 opensuse-kdeuser_ru 
< 11. opensuse-kde3user_ru < 11.1 apparmor-admin_ru < 11.1
Provides:   opensuse-manual_ru = %{version}-%{release} opensuse-kdequick_ru 
= %{version}-%{release} opensuse-gnomequick_ru = %{version}-%{release} 
opensuse-gnomeuser_ru = %{version}-%{release} opensuse-kdeuser_ru = 
%{version}-%{release} opensuse-kde3user_ru = %{version}-%{release} 
apparmor-admin_ru = %{version}-%{release}
Obsoletes:  opensuse-manual_ru-pdf < 11.2 opensuse-kde3user_ru-pdf < 11.1 
opensuse-manuals_ru-pdf < 11.3 opensuse-apparmor-admin_ru-pdf < 11.3
Provides:   opensuse-manual_ru-pdf = %{version}-%{release} 
opensuse-kde3user_ru-pdf = %{version}-%{release} opensuse-manuals_ru-pdf = 
%{version}-%{release} opensuse-apparmor-admin_ru-pdf = %{version}-%{release}
#OBS
Source00:   opensuse-html_ru-html.tar.bz2
Source01:   opensuse-html_ru-desktop.tar.bz2
Source02:   opensuse-html_ru-graphics.tar.bz2
Source03:   opensuse-html_ru.tar.bz2
Source10:   opensuse-startup_ru.pdf
#Source11: opensuse-startup_ru-graphics.tar.bz2
#Source12: opensuse-startup_ru.tar.bz2
Source13:   opensuse-startup_ru-pdf-yelp.tar.bz2
Source20:   opensuse-reference_ru.pdf
#Source21: opensuse-reference_ru-graphics.tar.bz2
#Source22: opensuse-reference_ru.tar.bz2
Source23:   opensuse-reference_ru-pdf-yelp.tar.bz2
Source30:   opensuse-security_ru.pdf
#Source31: opensuse-security_ru-graphics.tar.bz2
#Source32: opensuse-security_ru.tar.bz2
Source33:   opensuse-security_ru-pdf-yelp.tar.bz2
Source40:   opensuse-kvm_ru.pdf
#Source41: opensuse-kvm_ru-graphics.tar.bz2
#Source42: opensuse-kvm_ru.tar.bz2
Source43:   opensuse-kvm_ru-pdf-yelp.tar.bz2
Source50:   opensuse-tuning_ru.pdf
#Source51: opensuse-tuning_ru-graphics.tar.bz2
#Source52: opensuse-tuning_ru.tar.bz2
Source53:   opensuse-tuning_ru-pdf-yelp.tar.bz2
#SOURCES
Source901:  doc_pre_checkin.sh
Source903:  attributes
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildArch:  noarch
Group:  Documentation/SUSE
License:GFDLv1.2
Summary:Complete set of openSUSE Manuals (HTML, Russian)
%define _defaultdocdir %{_datadir}/doc/manual
%define _docdir %{_datadir}/doc/manual

%

commit banshee for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package banshee for openSUSE:Factory
checked in at Thu Aug 11 15:35:56 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/banshee/banshee.changes2011-08-03 
14:10:19.0 +0200
@@ -0,0 +1,1227 @@
+---
+Wed Aug  3 13:37:25 CEST 2011 - vu...@opensuse.org
+
+- Add banshee-recent-gpod.patch: fix build with recent gtkpod.
+- Remove pkgconfig(gnome-vfs-2.0) BuildRequires, since it's not
+  used anymore.
+
+---
+Fri Jul 15 03:26:54 UTC 2011 - nmarq...@opensuse.org
+
+- Remove bundleize-pkg-config.awk: no longer required.
+
+---
+Fri Jul  8 01:37:29 UTC 2011 - nmarq...@opensuse.org
+
+- Remove '#!BuildIgnore: ndesk-dbus-glib': it is no longer required
+  with patched notify-sharp that uses dbus-sharp/dbus-sharp-glib.
+
+---
+Tue Jul  5 09:53:45 UTC 2011 - nmarq...@opensuse.org
+
+- Add  '#!BuildIgnore: ndesk-dbus-glib' to spec, otherwise it
+  prevents dbus-sharp-glib from install and build breaks. From
+  2.1.0 onwards Banshee requires dbus-sharp-glib and drops
+  ndesk-dbus-glib.
+
+---
+Tue May 31 10:26:32 UTC 2011 - nmarq...@opensuse.org
+
+- Rename source package from banshee-1 to banshee, as we're at
+  version 2.x.
+- Update to version 2.1.0:
+  + New Features:
+- eMusic Store
+  + Enhancements:
+- ArtworkManager: add --fetch-artwork argument
+- bgo#647754: Xperia X12 support
+- bgo#508713: MiniMode: Reduce height of window
+- bgo#648941: Support .spc files
+- bgo#649401: Set UserAgent when doing MusicBrainz queries
+  + Notable Bugs Fixed (51 fixed since 2.0):
+- Windows installer fixes;
+- AmazonMp3.Store: Fix signed-in detection for UK store;
+- bgo#633552: AppleDevice: Ensure m4a/mp3 are supported;
+- PodcastFeedPropertiesDialog: Fix display of feed URL;
+- bgo#647059, bgo#647089, bgo#644648, bgo#642113, bgo#647144,
+  bgo#634647, bgo#642140, bgo#648133, bgo#647932, bgo#646991,
+  bgo#647024, bgo#636057, bgo#648458, bgo#611489, bgo#641748,
+  bgo#638889.
+  + Packaging Changes:
+- HAL dependency dropped
+- ipod-sharp and podsleuth dependencies dropped
+- NDesk.DBus dependency dropped
+- dbus-sharp >= 0.7 and dbus-sharp-glib >= 0.5 required
+  (available from http://mono.github.com/dbus-sharp/)
+- Gtk# >= 2.12.10 required
+- Mono >= 2.4.3 required
+- GStreamer >= 0.10.26 required
+- Various configure flags removed:
+  + --disable-ipod
+  + --disable-hal
+  + --disable-podcasts
+- The packaging changed quite a bit. Important highlights:
+  + Stop supporting a mode for upstream builds and for old versions
+of openSUSE/SLE, as this is not supported upstream anymore.
+  + Update BuildRequires according to upstream changes, and move to
+pkgconfig() BuildRequires.
+  + Remove .la files.
+  + Drop backend-hal and dmp-ipod-devices subpackages.
+  + Merge the client-classic subpackage in the main subpackage, as
+people installing the banshee package expect to have the
+classic interface.
+  + Add various Provides/Obsoletes for smooth upgrades from
+banshee-1.
+
+---
+Thu May 26 16:33:08 UTC 2011 - nmarq...@opensuse.org
+
+- Update to version 2.0.1:
+  + Notable Bugs Fixed:
+- AmazonMp3.Store: Fix signed-in detection for UK store;
+- PodcastFeedPropertiesDialog: Fix display of feed URL
+  (underscore);
+- bgo#648941: Add .spc to whitelist;
+- bgo#648458: PlsPlaylistFormat: Make parsing the header
+  case-insensitive;
+- bgo#647754: Add USB ids for Xperia X12;
+- bgo#647024: Lastfm: Fix NRE crash;
+- bgo#646991: AlbumListView: Fix disappearing option in
+  Preferences;
+- bgo#647932: DatabaseSource: Fix NRE in SkipTrackIfRemoved;
+- bgo#642140: Last.fm: Close HTTP streams when finished with
+  them;
+- bgo#633552: AppleDevice: Ensure m4a/mp3 are supported;
+- bgo#647144: StreamPositionLabel: Avoid unnecessary redraws;
+- bgo#647089: Daap: Bind to IPAddress.Loopback instead of Any;
+- bgo#647059: Fix Remote Daap crash;
+  + Updated Translations:
+- Dutch
+- Galician
+- Greek
+- Hungarian
+- Korean
+- Russian
+- Telugu
+- Vietnamese
+
+---
+Mon Apr  4 16:03:01 CDT 2011 - gb...@suse.de
+
+- Update to 2.0.0 release 
+  + Notable Bugs Fixed:
+  * BansheeMetrics: Only enable collection 5% of the time
+  * Dap.MassStorage: Support the LG Optimus S Android phone (bgo#646593)
+  * CoverArt: If cache folder missin

commit QtZeitgeist for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package QtZeitgeist for openSUSE:Factory
checked in at Thu Aug 11 15:00:12 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/QtZeitgeist/QtZeitgeist.changes
2011-07-22 11:28:57.0 +0200
@@ -0,0 +1,4 @@
+---
+Fri Jul 22 11:14:25 UTC 2011 - toddrme2...@gmail.com
+  
+- Initial version
\ No newline at end of file

calling whatdependson for head-i586


New:

  QtZeitgeist-0.7.0-fix_build.patch
  QtZeitgeist-0.7.0.tar.bz2
  QtZeitgeist.changes
  QtZeitgeist.spec



Other differences:
--
++ QtZeitgeist.spec ++
#
# spec file for package QtZeitgeist
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:   QtZeitgeist
%define libname libqzeitgeist0
Version:0.7.0
Release:1
License:LGPL v2.1
Summary:Qt Zeitgeist Library
Group:  Development/Libraries/KDE
Url:http://releases.zeitgeist-project.com/qzeitgeist/
Source: %{name}-%{version}.tar.bz2
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  libkde4-devel
BuildRequires:  pkg-config
Patch0: QtZeitgeist-0.7.0-fix_build.patch

%description
Zeitgeist is a service which logs the user's activities 
and notifications, anywhere from files opened to websites 
visited and conversations, and makes this information 
readily available for other applications to use. It is 
also able to establish relationships between items based 
on similarity and usage patterns.

This package provides the Qt interface for Zeitgeist

%prep
%setup -q -n %{name}-%{version}-Source
%patch0 -p1

%build
%cmake_kde4 -d build
%make_jobs

%install
cd build
%makeinstall
%kde_post_install
cd ..

%package -n %{libname}

License:LGPL v2.1
Summary:Qt Zeitgeist Library
Group:  Development/Libraries/KDE

%description -n %{libname}
Zeitgeist is a service which logs the user's activities 
and notifications, anywhere from files opened to websites 
visited and conversations, and makes this information 
readily available for other applications to use. It is 
also able to establish relationships between items based 
on similarity and usage patterns.

This package provides the Qt interface for Zeitgeist

%post -n %{libname} -p /sbin/ldconfig

%postun -n %{libname} -p /sbin/ldconfig

%files -n %{libname}
%defattr(-,root,root)
%doc README COPYING
%_libdir/libqzeitgeist.so.*

%package devel
License:LGPL v2.1
Summary:Development files for QtZeitgeist
Group:  Development/Libraries/KDE
Requires:   %{libname} = %{version}
Requires:   libqt4-devel

%description devel
Zeitgeist is a service which logs the user's activities 
and notifications, anywhere from files opened to websites 
visited and conversations, and makes this information 
readily available for other applications to use. It is 
also able to establish relationships between items based 
on similarity and usage patterns.

This package provides headers and libraries needed to 
build against the Qt interface for Zeitgeist

%files devel
%defattr(-,root,root)
%_kde4_includedir/QtZeitgeist
%_libdir/libqzeitgeist.so
%_datadir/qzeitgeist
%_libdir/pkgconfig/QtZeitgeist.pc

%changelog
++ QtZeitgeist-0.7.0-fix_build.patch ++
--- a/CMakeLists.txt2011-03-28 18:16:34.0 +0200
+++ b/CMakeLists.txt2011-05-25 05:07:25.0 +0200
@@ -7,6 +7,13 @@
 
 find_package(Qt4 4.7.0 COMPONENTS QtCore QtDBus QtTest REQUIRED)
 
+include(CheckCXXCompilerFlag)
+
+check_cxx_compiler_flag(-fvisibility=hidden __HAVE_GCC_VISIBILITY)
+if (__HAVE_GCC_VISIBILITY AND NOT WIN32)
+set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility=hidden")
+endif (__HAVE_GCC_VISIBILITY AND NOT WIN32)
+
 
 set(CPACK_PACKAGE_VERSION_MAJOR "0")
 set(CPACK_PACKAGE_VERSION_MINOR "7")
@@ -39,7 +46,7 @@
 
 # Generate pkg-config file
 configure_file(${CMAKE_SOURCE_DIR}/QtZeitgeist.pc.in 
${CMAKE_BINARY_DIR}/QtZeitgeist.pc)
-install(FILES ${CMAKE_BINARY_DIR}/QtZeitgeist.pc DESTINATION lib/pkgconfig)
+install(FILES ${CMAKE_BINARY_DIR}/QtZeitgeist.pc DESTINATION 
lib${LIB_SUFFIX}/pkgconfig)
 
 add_subdirectory(include)

commit artha for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package artha for openSUSE:Factory
checked in at Thu Aug 11 14:56:23 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/artha/artha.changes2011-08-06 
00:56:36.0 +0200
@@ -0,0 +1,10 @@
+---
+Fri Aug  5 22:56:12 UTC 2011 - badshah...@gmail.com
+
+- Minor spec file cleanup
+
+---
+Thu Jul 28 23:30:52 UTC 2011 - badshah...@gmail.com
+
+- Initial package (version 1.0.2)
+

calling whatdependson for head-i586


New:

  artha-1.0.2.tar.bz2
  artha.changes
  artha.spec



Other differences:
--
++ artha.spec ++
#
# spec file for package artha
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:   artha
Version:1.0.2
Release:1
License:GPLv2
Summary:Offline English thesaurus based on WordNet
Url:http://artha.sourceforge.net
Group:  Productivity/Office/Dictionary
Source: %{name}-%{version}.tar.bz2
BuildRequires:  desktop-file-utils
BuildRequires:  pkgconfig
BuildRequires:  update-desktop-files
BuildRequires:  wordnet-devel
BuildRequires:  pkgconfig(dbus-glib-1)
BuildRequires:  pkgconfig(gtk+-2.0)
Requires:   enchant
Requires:   hunspell
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
Artha is a free cross-platform English thesaurus that works
completely off-line and is based on WordNet. Stable releases for
download are currently available for GNU/Linux and Microsoft Windows;
it is tested on major Desktop Environments like GNOME, KDE, Xfce, etc
and on Microsoft Windows XP, Vista and 7. Artha is released under the
GNU General Public Licence version 2.

%prep
%setup -q
chmod -x TODO

%build
%configure
make %{?_smp_mflags}

%install
%make_install DESTDIR=%{buildroot} INSTALL="install -p"
%suse_update_desktop_file -r artha Office Dictionary

%clean
%{?buildroot:rm -rf %{buildroot}}

%files
%defattr(-,root,root)
%doc ChangeLog README COPYING NEWS TODO AUTHORS
%dir %{_datadir}/artha
%{_bindir}/artha
%{_datadir}/applications/artha.desktop
%{_datadir}/artha/gui.glade
%{_datadir}/pixmaps/artha.png
%{_mandir}/man1/artha.1.gz

%changelog





Remember to have fun...

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



commit foomatic-filters for openSUSE:11.4

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package foomatic-filters for openSUSE:11.4
checked in at Thu Aug 11 13:50:44 CEST 2011.




--- old-versions/11.4/all/foomatic-filters/foomatic-filters.changes 
2011-02-09 17:17:16.0 +0100
+++ 11.4/foomatic-filters/foomatic-filters.changes  2011-08-11 
10:25:04.0 +0200
@@ -1,0 +2,6 @@
+Thu Aug 11 10:17:55 CEST 2011 - jsm...@suse.de
+
+- foomaticrip.c.4.0.6.CVE-2011-2697.patch fixes CVE-2011-2697
+  which is a remote code execution as user lp issue (bnc#698451).
+
+---

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


New:

  foomaticrip.c.4.0.6.CVE-2011-2697.patch



Other differences:
--
++ foomatic-filters.spec ++
--- /var/tmp/diff_new_pack.RlHlig/_old  2011-08-11 13:50:12.0 +0200
+++ /var/tmp/diff_new_pack.RlHlig/_new  2011-08-11 13:50:12.0 +0200
@@ -36,7 +36,7 @@
 Recommends: a2ps
 # See the VERSION file if it is a snapshot with "bzrdate":
 Version:4.0.6
-Release:2
+Release:7.
 AutoReqProv:on
 # Source0...Source9 is for sources from upstream:
 # URL for Source0: 
http://www.openprinting.org/download/foomatic/foomatic-filters-4.0-20090513.tar.gz
@@ -47,7 +47,9 @@
 # Patch0...Patch9 is for patches from upstream:
 # ...
 # Patch10...Patch99 is for Suse patches for the sources from upstream:
-# ...
+# Patch10 foomaticrip.c.4.0.6.CVE-2011-2697.patch fixes CVE-2011-2697
+# which is a remote code execution as user lp issue (bnc#698451):
+Patch10:foomaticrip.c.4.0.6.CVE-2011-2697.patch
 # Source100... is for special Suse sources:
 # ...
 Url:http://www.openprinting.org/
@@ -74,6 +76,9 @@
 %setup -q
 # Use this "setup" if it is a snapshot with "bzrdate":
 # setup -q -n %{name}-%{bzrdate}
+# Patch10 foomaticrip.c.4.0.6.CVE-2011-2697.patch fixes CVE-2011-2697
+# which is a remote code execution as user lp issue (bnc#698451):
+%patch10
 
 %build
 export CFLAGS="$RPM_OPT_FLAGS -fstack-protector"

++ foomaticrip.c.4.0.6.CVE-2011-2697.patch ++
--- foomaticrip.c.orig  2010-12-15 17:19:21.0 +0100
+++ foomaticrip.c   2011-08-11 09:49:02.0 +0200
@@ -1236,8 +1236,11 @@ int main(int argc, char** argv)
 }
 
 /* Check for LPRng first so we do not pick up bogus ppd files by the -ppd 
option */
-if (arglist_remove_flag(arglist, "--lprng"))
-spooler = SPOOLER_LPRNG;
+if (spooler != SPOOLER_CUPS && spooler != SPOOLER_PPR && 
+   spooler != SPOOLER_PPR_INT) {
+if (arglist_remove_flag(arglist, "--lprng"))
+spooler = SPOOLER_LPRNG;
+}
 
 /* 'PRINTCAP_ENTRY' environment variable is : LPRng
the :ppd=/path/to/ppdfile printcap entry should be used */
@@ -1259,96 +1262,104 @@ int main(int argc, char** argv)
 }
 }
 
-/* PPD file name given via the command line
-   allow duplicates, and use the last specified one */
-if (spooler != SPOOLER_LPRNG) {
-while ((str = arglist_get_value(arglist, "-p"))) {
-strncpy(job->ppdfile, str, 256);
-arglist_remove(arglist, "-p");
+/* CUPS calls foomatic-rip only with 5 or 6 positional parameters,
+   not with named options, like for example "-p ". Also PPR
+   does not used named options. */
+if (spooler != SPOOLER_CUPS && spooler != SPOOLER_PPR && 
+   spooler != SPOOLER_PPR_INT) {
+/* Check for LPD/GNUlpr by typical options which the spooler puts onto
+   the filter's command line (options "-w": text width, "-l": text
+   length, "-i": indent, "-x", "-y": graphics size, "-c": raw printing,
+   "-n": user name, "-h": host name) */
+if ((str = arglist_get_value(arglist, "-h"))) {
+if (spooler != SPOOLER_GNULPR && spooler != SPOOLER_LPRNG)
+spooler = SPOOLER_LPD;
+strncpy(job->host, str, 127);
+job->host[127] = '\0';
+arglist_remove(arglist, "-h");
 }
-}
-while ((str = arglist_get_value(arglist, "--ppd"))) {
-strncpy(job->ppdfile, str, 256);
-arglist_remove(arglist, "--ppd");
-}
-
-/* Check for LPD/GNUlpr by typical options which the spooler puts onto
-   the filter's command line (options "-w": text width, "-l": text
-   length, "-i": indent, "-x", "-y": graphics size, "-c": raw printing,
-   "-n": user name, "-h": host name) */
-if ((str = arglist_get_value(arglist, "-h"))) {
-if (spooler != SPOOLER_GNULPR && spooler != SPOOLER_LPRNG)
-spooler = SPOOLER_LPD;
-strncpy(job->host, str, 127);
-job->host[127] = '\0';
-arglist_remove(arglist, "-h");
-}
-if ((str = arglist_get_va

commit apparmor for openSUSE:11.4

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package apparmor for openSUSE:11.4
checked in at Thu Aug 11 13:50:40 CEST 2011.




--- old-versions/11.4/UPDATES/all/apparmor/apparmor.changes 2011-06-29 
14:19:25.0 +0200
+++ 11.4/apparmor/apparmor.changes  2011-08-02 21:41:02.0 +0200
@@ -1,0 +2,5 @@
+Tue Aug  2 21:40:26 CEST 2011 - je...@suse.de
+
+- dovecot: Added support for /var/spool/mail (bnc#691072)
+
+---

calling whatdependson for 11.4-i586




Other differences:
--
++ apparmor.spec ++
--- /var/tmp/diff_new_pack.1h2UNC/_old  2011-08-11 13:50:15.0 +0200
+++ /var/tmp/diff_new_pack.1h2UNC/_new  2011-08-11 13:50:15.0 +0200
@@ -49,7 +49,7 @@
 %endif
 Summary:AppArmor userlevel parser utility
 Version:%{srcversion}.%{bzr_commit}
-Release:52.
+Release:52.
 Group:  Productivity/Networking/Security
 Source0:apparmor-%{srcversion}.tar.bz2
 Source1:%{name}-profile-editor.png


++ apparmor-profiles-dovecot ++
--- /var/tmp/diff_new_pack.1h2UNC/_old  2011-08-11 13:50:15.0 +0200
+++ /var/tmp/diff_new_pack.1h2UNC/_new  2011-08-11 13:50:15.0 +0200
@@ -1,11 +1,21 @@
 ---
- profiles/apparmor.d/usr.lib.dovecot.imap |3 +++
- profiles/apparmor.d/usr.sbin.dovecot |   11 +++
- 2 files changed, 10 insertions(+), 4 deletions(-)
+ profiles/apparmor.d/usr.lib.dovecot.deliver |1 +
+ profiles/apparmor.d/usr.lib.dovecot.imap|4 
+ profiles/apparmor.d/usr.lib.dovecot.pop3|1 +
+ profiles/apparmor.d/usr.sbin.dovecot|   11 +++
+ 4 files changed, 13 insertions(+), 4 deletions(-)
 
+--- a/profiles/apparmor.d/usr.lib.dovecot.deliver
 b/profiles/apparmor.d/usr.lib.dovecot.deliver
+@@ -17,4 +17,5 @@
+   @{HOME}/mail/.imap/** klrw,
+   /usr/lib/dovecot/deliver mr,
+   /var/mail/* klrw,
++  /var/spool/mail/* klrw,
+ }
 --- a/profiles/apparmor.d/usr.lib.dovecot.imap
 +++ b/profiles/apparmor.d/usr.lib.dovecot.imap
-@@ -11,6 +11,9 @@
+@@ -11,9 +11,13 @@
@{HOME} r,
@{HOME}/Maildir/ rw,
@{HOME}/Maildir/** klrw,
@@ -15,6 +25,20 @@
@{HOME}/mail/ rw,
@{HOME}/mail/* klrw,
@{HOME}/mail/.imap/** klrw,
+   /usr/lib/dovecot/imap mr,
+   /var/mail/* klrw,
++  /var/spool/mail/* klrw,
+ }
+--- a/profiles/apparmor.d/usr.lib.dovecot.pop3
 b/profiles/apparmor.d/usr.lib.dovecot.pop3
+@@ -9,6 +9,7 @@
+   capability setuid,
+ 
+   /var/mail/* klrw,
++  /var/spool/mail/* klrw,
+   @{HOME} r,
+   @{HOME}/mail/* klrw,
+   @{HOME}/mail/.imap/** klrw,
 --- a/profiles/apparmor.d/usr.sbin.dovecot
 +++ b/profiles/apparmor.d/usr.sbin.dovecot
 @@ -13,9 +13,12 @@






Remember to have fun...

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



commit freetds for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package freetds for openSUSE:Factory
checked in at Thu Aug 11 13:42:52 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/freetds/freetds.changes2011-08-06 
11:49:09.0 +0200
@@ -0,0 +1,93 @@
+---
+Sat Aug 6 11:48:21 UTC 2011 - toddrme2...@gmail.com
+
+- Split into library and tools (binary) packages
+- Fixed license labeling.
+
+---
+Thu Aug  4 09:43:30 UTC 2011 - co...@novell.com
+
+- ran format_spec source service
+
+---
+Fri Jul 15 21:19:35 UTC 2011 - toddrme2...@gmail.com
+
+- Updated to 0.91 rc2
+- Various spec file style cleanups
+- Changed to valid groups (fix for rpmlint warning)
+- Check for duplicate files (fix for rpmlint warning)
+- Move %changes contents to existing .changes file
+
+
+---
+Fri Jul 15 21:19:35 UTC 2011 - crrodrig...@opensuse.org
+
+- Update to version 0.9.2
+
+
+---
+Thu May 13 00:00:00 UTC 2010 Matthias Eckermann 
+
+- update to 0.83.dev.20100512
+
+
+---
+Fri Feb 19 00:00:00 UTC 2010 Matthias Eckermann 
+
+- update to 0.82.1.dev.20091223
+
+
+---
+Thu May  8 00:00:00 UTC 2008 Matthias Eckermann 
+
+- adopted for openSUSE buildservice
+
+
+---
+Wed Mar 28 00:00:00 UTC 2007 Frediano Ziglio 
+
+- removed libtdssrv
+
+
+---
+Thu Sep 09 00:00:00 UTC 2004 Frediano Ziglio 
+
+- remove dependency from freetds-unixodbc
+- fix field name (Copyright instead of License)
+- updated URL
+
+
+---
+Sun Mar 30 21:19:35 UTC 2003 Frediano Ziglio 
+
+- add reference to doc package
+
+
+---
+Wed Feb  5 00:00:00 UTC 2003 Ian Grant 
+
+- 0.61 tweaked. Added libtdssrv libraries and tools in /usr/bin + man pages
+
+
+---
+Sun Dec 30 21:19:35 UTC 2002 David Hollis 
+
+- 0.60 tweaked.  Move .a & .la files to -devel package
+
+
+---
+Thu Dec 20 00:00:00 UTC 2001 Brian Bruns  
+
+- Modifications for 0.53 ver and removing interfaces file
+
+
+---
+Wed Jun 28 00:00:00 UTC 2001 Brian Bruns  
+
+- Modifications for 0.52 ver and ODBC drivers 
+
+
+---
+Wed Feb 14 00:00:00 UTC 2001 David Hollis  
+
+- First stab at RPM for 0.51 ver 

calling whatdependson for head-i586


New:

  freetds-0.91rc.tar.bz2
  freetds.changes
  freetds.spec



Other differences:
--
++ freetds.spec ++
#
# spec file for package freetds
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:   freetds
Version:0.9.1rc2
Release:1
%define dirver  0.91.dev.20110715RC2
%define filever 0.91rc
License:LGPL
Summary:A free re-implementation of the TDS (Tabular DataStream) 
protocol
Url:http://www.freetds.org/
Group:  Productivity/Databases/Clients
Source: %{name}-%{filever}.tar.bz2
BuildRequires:  fdupes
BuildRequires:  gcc-c++
BuildRequires:  unixODBC
BuildRequires:  unixODBC-devel
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%if 0%{?suse_version}
Requires:   glibc-locale
%endif

%description
FreeTDS is a project to document and implement the TDS (Tabular DataStream)
protocol. TDS is used by Sybase and Microsoft for client to database server
communications. FreeTDS includes call level interfaces for DB-Lib, CT-Lib,
and ODBC.

%package -n libfreetds

Summary:A free re-implementation of the TDS (Tabular DataStream) 
protocol
Provides:   %

commit python-veusz for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package python-veusz for openSUSE:Factory
checked in at Thu Aug 11 13:39:48 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/python-veusz/python-veusz.changes  
2011-08-06 00:46:21.0 +0200
@@ -0,0 +1,69 @@
+---
+Fri Aug  5 22:08:59 UTC 2011 - badshah...@gmail.com
+
+- Update to version 1.12:
+  + Multiple widgets can now be selected for editing properties
+  + Add Edit->Select menu and context menu for above
+  + Added context menu on dataset browser for filenames to reload,
+delete or unlink all associated datasets
+  + New tree-like dataset browsing widget is shown in data edit
+dialog
+  + Importing 1D fits images is now supported
+  + Date / time data has its own dataset type
+  + The data edit dialog box can create or edit date/time data in
+human-readable form
+  + Add LaTeX commands \cdot, \nabla, \overline plus some arrows
+  + Inform user in exception dialog if a new version is available
+  + Add linevertbar and linehorzbar error bar styles
+  + Bug fixes:
+- Fix crash on filling filled error regions if no error bars
+- Remove grouping separator to numbers in locale as it creates
+  ambiguous lists of numbers
+- Undo works properly for boolean and integer settings
+- Prevent widgets getting the same names when dragging and
+  dropping
+- Hidden plot widgets are ignored when calculating axis ranges
+- Combo boxes are now case sensitive when displaying matches
+  with previous text
+- Fix errors if plotting DatasetRange or Dataset1DPlugin
+  datasets against data with nan values
+- Fix division by zero in dataset preview
+- Do not leave settings pointing to deleted widgets after an
+  undo
+- Fix errors when using super/subscripts of super/subscripts
+- Fix crash when giving positions of bar plot and labels
+- Do not allow dataset names to be invalid after remaining
+- Several EMF format bug fixes
+- Stop crash when contouring zero-sized datasets
+- Changes from version 1.11:
+  + New data point picker for finding coordinates of points on plot
+  + New data navigator window for filtering, sorting and examining
+dataset statistics
+  + ".." button next to dataset settings pops up data navigator for
+choosing datasets
+  + Data fitting can now use PyMinuit, giving error estimates
+  + Console history now uses currently entered characters to select
+lines from history
+  + New self test script, comparing graph output with expected
+output
+  + Put superscripts and subscripts above each other when
+formatting
+  + Key entries can have multiple lines (using \\)
+  + Option to treat blanks as data items in CSV files
+  + Locale support added for number formatting
+- Can use current locale or US/English in documents
+- Can use US/English or current local in user interface
+  + Contours avoid missing (nan) values
+  + Several bug fixes (see ChangeLog file for details)
+- Spec file cleanup:
+  + Removed BuildRequires: python-distribute to allow building
+with openSUSE 11.4 and earlier
+  + Use %suse_update_desktop_file macro to install .desktop entry
+  + Miscellaneous minor modifications
+
+---
+Sun Dec 19 06:00:52 UTC 2010 - ocef...@yahoo.com.br
+
+- First OpenSuse release
+
+

calling whatdependson for head-i586


New:

  python-veusz.changes
  python-veusz.spec
  veusz-1.12.tar.bz2
  veusz.desktop
  veusz.xml



Other differences:
--
++ python-veusz.spec ++
#
# spec file for package python-veusz
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


%define pyname veusz

Name:   python-%{pyname}
Version:1.12
Release:1
# The entire source code is GPLv2+ except helpers/src/_nc_cntr.c which is Python
License:GPLv2+ and Python
Summary:GUI scientific plotting package
Url:http://home.gna.org/veusz/
Group:  Productivity/Scientific/Other
Source0:veusz-%{version}.tar.bz2
Source1:%{pyname}.desktop
Source2:%{pyname}.xml
B

commit fsvs for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package fsvs for openSUSE:Factory
checked in at Thu Aug 11 13:31:23 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/fsvs/fsvs.changes  2011-07-21 
16:44:13.0 +0200
@@ -0,0 +1,47 @@
+---
+Thu Jul 21 16:43:40 CEST 2011 - dmuel...@suse.de
+
+- update to 1.2.3:
+  * Fix length calculation bug, found by Mark via a (bad?) compilation warning.
+  Thank you!
+
+---
+Sat Mar 13 01:54:38 UTC 2010 - pascal.ble...@opensuse.org
+
+- update to 1.2.2:
+  * documentation fixes
+  * fixed config_dir, so that using other authentication paths work 
(previously $CONF/auth was fixed; better default)
+  * fix "unversion" on the wc root
+  * fix "." as only parameter when started from the root
+  * fix SIGPIPE handling
+  * don't do the "_base" symlink; it breaks eg. "grep -r /etc" -- write a 
readme instead
+  * fix ENOMEM because of still mapped file data
+  * new option "dir_exclude_mtime"
+
+- changes from 1.2.1:
+  * documentation updates
+  * fixed some small bugs
+  * the secondary URL/revision file doesn't have to exist
+  * fix recursive behaviour of "_build-new-list"
+  * now supports arbitrary "svn+" tunnels, like subversion does
+  * "fsvs log -v" for now filters the changed entries list, and shows the 
paths relative to the parameter
+  * fixed "-o verbose=all" output; would be interpreted as "totally silent" 
because of signed compares
+  * better out-of-date messages
+  * compatibility fixes for subversion 1.6.4
+  * fix tempfile being left after FSVS run
+  * bugfix: on commit empty property hashes got created
+  * bugfix for selection of entries (filter bit)
+  * bugfixes for non-UTF8 locales and update/sync
+
+---
+Sat Jul 18 01:27:59 CEST 2009 - pascal.ble...@opensuse.org
+
+- update to 1.2.0
+
+- fixed spec file
+
+---
+Fri Dec 12 15:57:26 CET 2008 - po...@suse.de
+
+- build 1.1.17 on all repos.
+

calling whatdependson for head-i586


New:

  fsvs-1.2.3.tar.bz2
  fsvs-destdir.patch
  fsvs.changes
  fsvs.spec
  gcc46.diff



Other differences:
--
++ fsvs.spec ++
#
# spec file for package fsvs
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:   fsvs
Version:1.2.3
Release:1
License:GPL
Url:http://fsvs.tigris.org/
Group:  Productivity/Archiving/Backup
Summary:Backup/Restore/Versioning of large Data Sets with Meta-Data
Source: http://download.fsvs-software.org/fsvs-%{version}.tar.bz2
Patch1: fsvs-destdir.patch
Patch2: gcc46.diff
BuildRequires:  apache2-devel ctags db-devel ed gcc-c++ gdbm gdbm-devel 
neon-devel openldap2-devel openssl-devel pcre-devel subversion-devel zlib-devel
BuildRequires:  libapr-util1-devel libapr1-devel pkgconfig
BuildRequires:  gcc glibc-devel make
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
FSVS is the abbreviation for “Fast System VerSioning”, and is pronounced
[fisvis].

It is a complete backup/restore/versioning tool for all files in a directory
tree or whole filesystems, with a subversionTM repository as the backend.

You may think of it as some kind of tar or rsync with versioned storage. 




Author:
---
Philipp Marek 

%prep
%setup -q
%patch1
%patch2

%build
export SUSE_ASNEEDED=0
export CFLAGS="%{optflags} $(pkg-config --includes apr-1)"
export CFLAGS="$CFLAGS -fno-strict-aliasing"

CFLAGS="$CFLAGS" \
CPPFLAGS="$CFLAGS" \
%configure
%__make %{?jobs:-j%{jobs}}

%install
%makeinstall

%__rm -rf doc/develop
echo -n >manfiles.lst
for p in doc/*.{1,5}; do
f="${p##*/}"
m="${f##*.}"
%__install -D -m0644 "$p" "%{buildroot}%{_mandir}/man${m}/${f}"
%__rm "$p"
echo "%doc %{_mandir}/man${m}/${f}"'*' >>manfiles.lst
done

%files -f manfiles.lst
%defattr(-,root,root)
%doc doc CHANGES LICENSE README
%{_bindir}/fsvs

%changelog
++ fsvs-destdir.patch ++
--- src/Makefile.in.orig2010-03-13 02:58:08.0 +0100
+++ s

commit grilo for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package grilo for openSUSE:Factory
checked in at Thu Aug 11 13:23:13 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/grilo/grilo.changes2011-08-03 
20:37:43.0 +0200
@@ -0,0 +1,16 @@
+---
+Wed Aug  3 18:15:43 UTC 2011 - dims...@opensuse.org
+
+- Spec cleanup for inclusion into Factory.
+
+---
+Thu Jul  7 15:24:30 UTC 2011 - cbosdon...@novell.com
+
+- Added vala and gtk+3 dependencies
+- Spec file cleanup
+
+---
+Thu Jul  7 13:52:12 UTC 2011 - cbosdon...@novell.com
+
+- Created initial packages with grilo 0.1.16
+

calling whatdependson for head-i586


New:

  grilo-0.1.16.tar.bz2
  grilo.changes
  grilo.spec



Other differences:
--
++ grilo.spec ++
#
# spec file for package grilo
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:   grilo
Version:0.1.16
Release:1
License:LGPL-2.1+
Summary:Framework for browsing and searching media content
Url:https://live.gnome.org/Grilo
Group:  Productivity/Multimedia/Other
Source: 
http://download.gnome.org/sources/grilo/0.1/%{name}-%{version}.tar.bz2
BuildRequires:  intltool
BuildRequires:  fdupes
# Required to build documentation
BuildRequires:  gtk-doc
BuildRequires:  vala
BuildRequires:  pkgconfig(gio-2.0)
BuildRequires:  pkgconfig(glib-2.0)
BuildRequires:  pkgconfig(gmodule-2.0)
BuildRequires:  pkgconfig(gobject-2.0)
BuildRequires:  pkgconfig(gobject-introspection-1.0)
BuildRequires:  pkgconfig(gtk+-3.0)
BuildRequires:  pkgconfig(libsoup-2.4)
BuildRequires:  pkgconfig(libxml-2.0)
BuildRequires:  pkgconfig(libvala-0.14)
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
Grilo is a framework for browsing and searching media content from
various sources using a single API.

%package -n libgrilo-0_1-0
License:LGPL-2.1+
Summary:Framework for browsing and searching media content
Group:  System/Libraries
# Without plugins, grilo is useless
Recommends: grilo-plugins

%description -n libgrilo-0_1-0
Grilo is a framework for browsing and searching media content from
various sources using a single API.

%package -n libgrlnet-0_1-0
License:LGPL-2.1+
Summary:Framework for browsing and searching media content -- 
Networking Helper Library
Group:  System/Libraries

%description -n libgrlnet-0_1-0
Grilo is a framework for browsing and searching media content from
various sources using a single API.

%package tools
License:LGPL-2.1+
Summary:Framework for browsing and searching media content -- Tools
Group:  Productivity/Multimedia/Other

%description tools
Grilo is a framework for browsing and searching media content from
various sources using a single API.

This package provides tools related to Grilo.

%package devel
License:LGPL-2.1+
Summary:Framework for browsing and searching media content -- 
Development Files
Group:  Development/Libraries/GNOME
Requires:   libgrilo-0_1-0 = %{version}
Requires:   libgrlnet-0_1-0 = %{version}

%description devel
Grilo is a framework for browsing and searching media content from
various sources using a single API.

%prep
%setup -q

%build
# Hack: We need libvala-0.14 support. Remove when grep fails.
grep -q libvala-0.14 configure* && false
sed -i "s:libvala-0.12:libvala-0.14:g" configure*
%configure \
   --disable-static \
   --disable-tests \
   --enable-grl-net \
   --enable-gtk-doc
make %{?_smp_mflags}

%install
%make_install
find %{buildroot}%{_libdir} -type f -name "*.la" -delete -print
# Create directories needed for plugins
install -d %{buildroot}%{_libdir}/grilo-0.1
install -d %{buildroot}%{_datadir}/grilo-0.1/plugins
%fdupes %{buildroot}%{_datadir}

%check
make check

%clean

%post -n libgrilo-0_1-0 -p /sbin/ldconfig

%postun -n libgrilo-0_1-0 -p /sbin/ldconfig

%post -n libgrlnet-0_1-0 -p /sbin/ldconfig

%postun -n libgrlnet-0_1-0 -p /sbin/ldconfig

%files -n libgrilo-0_1-0
%defatt

commit jenkins for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package jenkins for openSUSE:Factory
checked in at Thu Aug 11 13:15:42 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/jenkins/jenkins.changes2011-08-04 
14:31:44.0 +0200
@@ -0,0 +1,29 @@
+---
+Thu Aug  4 12:28:56 UTC 2011 - sasc...@suse.de
+
+- Update to version 1.424:
+  * Java Web Start binaries weren't signed. (report)
+  * Fixed Maven build error if headless option is set and MAVEN_OPTS
+empty (issue 10375)
+  * Tests not recognized as failed if test initialization failed (issue 6700)
+  * Support for gzipped log in consoleText (issue 10400)
+  * Expand variables in the Maven POM definition in Maven projects. (issue 
5885)
+  * Some CLI command are not available. (issue 10418)
+  * Maven jobs deploying or installing artifacts should be used for
+dependency graph instead of jobs which don't (issue 10366)
+  * Maven jobs which are disabled should be excluded from dependency
+graph (issue 10367)
+  * Updated JDK installer to reflect changes in Oracle download
+server (issue 10511)
+
+---
+Tue Aug  2 09:04:33 UTC 2011 - sasc...@gmx.de
+
+- sysvinit script, $time is already in Should-Start, remove from
+  Required-Start to please insserv on SLE-11-SP1
+
+---
+Mon Aug  1 10:06:24 UTC 2011 - sasc...@suse.de
+
+- Initial package, based on openSUSE package from jenkins-ci.org
+

calling whatdependson for head-i586


New:

  jenkins.changes
  jenkins.init
  jenkins.logrotate
  jenkins.spec
  jenkins.sysconfig
  jenkins.war



Other differences:
--
++ jenkins.spec ++
#
# spec file for package jenkins
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2011, Sascha Peilicke 
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:   jenkins
Version:1.423
Release:1
Summary:An extendable open source continuous integration server
Group:  Development/Tools/Building
License:MIT/X License ; GPL/CDDL ; ASL2
Url:https://jenkins-ci.org
Source: http://mirrors.jenkins-ci.org/war/1.423/jenkins.war
Source1:%{name}.init
Source2:%{name}.sysconfig
Source3:%{name}.logrotate
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildArch:  noarch
BuildRequires:  unzip
Requires:   java >= 1.6
Provides:   hudson = %{version}
Obsoletes:  hudson < %{version}
%if 0%{?suse_version}
Suggests:   logrotate
%endif
PreReq: %insserv_prereq %fillup_prereq /usr/sbin/groupadd 
/usr/sbin/useradd

%description
Jenkins-CI monitors executions of repeated jobs, such as building a software
project or jobs run by cron. Among those things, current Jenkins-CI focuses
on the following two jobs:

   1. Building/testing software projects continuously, just like
  CruiseControl or DamageControl. In a nutshell, Jenkins-CI provides an
  easy-to-use so-called continuous integration system, making it
  easier for developers to integrate changes to the project, and
  making it easier for users to obtain a fresh build. The automated,
  continuous build increases the productivity.
   2. Monitoring executions of externally-run jobs, such as cron jobs and
  procmail jobs, even those that are run on a remote machine. For
  example, with cron, all you receive is regular e-mails that capture
  the output, and it is up to you to look at them diligently and notice
  when it broke. Jenkins-CI keeps those outputs and makes it easy for you
  to notice when something is wrong.

%prep

%build

%install
install -Dm0644 %{SOURCE0} %{buildroot}%{_prefix}/lib/%{name}/%{name}.war
install -Dm0755 %{SOURCE1} %{buildroot}%{_sysconfdir}/init.d/%{name}
install -d %{buildroot}%{_sbindir}
ln -sf ../../%{_sysconfdir}/init.d/%{name} %{buildroot}%{_sbindir}/rc%{name}
install -Dm0644 %{SOURCE2} 
%{buildroot}%{_var}/adm/fillup-templates/sysconfig.%{name}
install -Dm0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/logrotate.d/%{name}
install -d %{buildroot}%{_var}/lib/%{name}
install -d %{buildroot

commit ibus-table-chinese for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package ibus-table-chinese for 
openSUSE:Factory
checked in at Thu Aug 11 13:11:10 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/ibus-table-chinese/ibus-table-chinese.changes  
2011-08-04 12:12:09.0 +0200
@@ -0,0 +1,28 @@
+---
+Thu Aug  4 12:09:10 CEST 2011 - ti...@suse.de
+
+- Corrected the license tag to GPLv3+ (bnc#709986)
+
+---
+Mon Jul 25 13:00:24 CEST 2011 - ti...@suse.de
+
+- Add locale-specific provides tags for automatic installation
+- Don't remove buildroot at installation, use make_install macro
+
+---
+Tue Jun 14 14:58:26 UTC 2011 - swy...@gmail.com
+
+- This package is a compound package of Chinese input method table,
+  includes these old packages in M17N project,
+  The following packages should be removed in M17N:
+  ibus-table-array30
+  ibus-table-cangjie
+  ibus-table-cantonese
+  ibus-table-easy
+  ibus-table-erbi
+  ibus-table-quick
+  ibus-table-stroke5
+  ibus-table-wu
+  ibus-table-wubi
+  ibus-table-yong 
+

calling whatdependson for head-i586


New:

  ibus-table-chinese-1.3.0.20101206-Source.tar.gz
  ibus-table-chinese.changes
  ibus-table-chinese.spec



Other differences:
--
++ ibus-table-chinese.spec ++
#
# spec file for package ibus-table-chinese
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#

# norootforbuild

%define ibus_tables_dir %{_datadir}/ibus-table/tables
%define ibus_icons_dir %{_datadir}/ibus-table/icons
%define createdb ibus-table-createdb

Name:   ibus-table-chinese
Version:1.3.0.20101206
Release:1
Summary:Various Chinese input method table for IBus framework
Summary(zh_CN): 中文码表输入法
Summary(zh_TW): 中文碼表輸入法
License:GPLv3+
Group:  System/I18n/Chinese
Provides:   locale(ibus:zh)
Url:http://code.google.com/p/ibus/
Source0:
http://ibus.googlecode.com/files/%{name}-%{version}-Source.tar.gz

BuildRoot:  %{_tmppath}/%{name}-%{version}-build

BuildRequires:  cmake >= 2.4
BuildRequires:  ibus-table-devel >= 1.2
BuildRequires:  pkg-config python
BuildArch:  noarch
Requires:   ibus-table >= 1.2
Requires(post):   ibus-table >= 1.2

%description
ibus-table-chinese is provides the infrastructure for Chinese input methods.
Input tables themselves are in sub-packages.

%description -l zh_TW
ibus-table-chinese 提供了中文碼表輸入法的基礎架構。
輸入法本身則在子套件裡。

%package array
Summary:Array input methods
Summary(zh_CN): 行列输入法
Summary(zh_TW): 行列輸入法
Group:  System/I18n/Chinese
Provides:   locale(ibus:zh)
License:Freely redistributable without restriction
Requires:   %{name} = %{version}-%{release}
Provides:   ibus-table-array30 = %{version}-%{release}
Obsoletes:  ibus-table-array30 < 1.3

%description array
Array input method is a free, open-minded character-structured
input method. Includes:
array30: 27489 characters.
array30-big: 27489 characters + Unicode ExtB.

%description -l zh_TW array
行列輸入法是一套免費授權、具有開放理念的字根式
中文輸入法,發明人是行列科技負責人廖明德。

行列輸入法除了可以輸入繁體中文和簡體中文之外,
亦可輸入Unicode當中的中日韓統一表意文字。

包含了:
行列30: 27489 字
行列30大字集: 27489 字 + Unicode ExtB.

%package cangjie
Summary:Cangjie based input methods
Summary(zh_TW): 倉頡輸入法
Summary(zh_CN): 仓颉输入法
Group:  System/I18n/Chinese
Provides:   locale(ibus:zh)
License:Freely redistributable without restriction
Requires:   %{name} = %{version}-%{release}
Provides:   ibus-table-cangjie = %{version}-%{release}
Obsoletes:  ibus-table-cangjie < 1.3

%description cangjie
Cangjie based input methods, includes:
Cangjie3, Canjie5, and Cangjie big tables.

%description -l zh_TW cangjie
倉頡以及其衍生輸入法,包含:
倉頡三代、倉頡五代以及倉頡大字集。

%package cantonese

Summary:Cantonese input methods
Summary(zh_TW): 粵語輸入法
Group:  System/I18n/Chinese
Provides:   locale(ibus:zh_TW)
Requires:   %{name} = %{version}-%{release}
Provides:   ibus-table-cantonese = %{version}-%{release}
Obsoletes:  ibus-table-cantonese < 1.3

%description cantonese
Cantonese input met

commit libqxmpp1 for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package libqxmpp1 for openSUSE:Factory
checked in at Thu Aug 11 12:42:54 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/libqxmpp1/libqxmpp1.changes2011-07-31 
21:02:40.0 +0200
@@ -0,0 +1,5 @@
+---
+Sun Jul 31 18:58:49 UTC 2011 - nlmin...@gmail.com
+
+- first package 
+

calling whatdependson for head-i586


New:

  baselibs.conf
  libqxmpp1.changes
  libqxmpp1.spec
  qxmpp-0.3.45.1-extras.tar.bz2
  qxmpp-dynamiclib.patch



Other differences:
--
++ libqxmpp1.spec ++
#
# spec file for package libqxmpp1
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:   libqxmpp1
Version:0.3.45.1
Release:1
License:LGPL-2.0+
Source0:
https://github.com/downloads/0xd34df00d/qxmpp-dev/qxmpp-0.3.45.1-extras.tar.bz2 
Source1:baselibs.conf
#Patch0:qxmpp.patch
Patch0: qxmpp-dynamiclib.patch
Group:  System/Libraries
Summary:Qt XMPP Library
Url:https://github.com/0xd34df00d/qxmpp-dev

BuildRequires:  libqt4-devel
BuildRequires:  speex-devel

BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
QXmpp is a cross-platform C++ XMPP client library. It is based on Qt and C++.
 
QXmpp is pretty intuitive and easy to use. It uses Qt extensively. Qt is the 
only
third party library it is dependent on. Users need to a have working knowledge 
of
C++ and Qt basics (Signals and Slots and Qt data types). The underlying TCP 
socket
and the XMPP RFCs (RFC3920 and RFC3921) have been encapsulated into classes and
functions. Therefore the user would not be bothered with these details. But it 
is
always recommended to the advanced users to read and enjoy the low level 
details.

%package -n libqxmpp-devel

Summary:Qxmpp Development Files
Group:  Development/Libraries/C and C++
Requires:   libqxmpp1 = %{version}

%description -n libqxmpp-devel
It's a development package for qxmpp.

QXmpp is a cross-platform C++ XMPP client library. It is based on Qt and C++.

%prep
%setup -q -n qxmpp-%{version}
%patch0

%build
qmake PREFIX=%{_prefix} QMAKE_STRIP="" QMAKE_CXXFLAGS+="%{optflags}"
%__make %{?_smp_mflags}

%install
%makeinstall INSTALL_ROOT=%{buildroot}
%ifarch x86_64
%__mv %{buildroot}/usr/{lib,lib64}
%endif

%post -n %{name} -p /sbin/ldconfig

%postun -n %{name} -p /sbin/ldconfig

%clean
%{__rm} -rf %{buildroot}

%files
%defattr(-,root,root,-)

%{_libdir}/libqxmpp.so.*

%files -n libqxmpp-devel
%defattr(-,root,root,-)
%doc AUTHORS CHANGELOG LICENSE.LGPL README
%{_includedir}/qxmpp
%{_libdir}/libqxmpp.so
%{_libdir}/pkgconfig/qxmpp.pc

%changelog
++ baselibs.conf ++
libqxmpp1++ qxmpp-dynamiclib.patch ++
--- qxmpp.pri   2011-07-18 03:12:56.0 +0300
+++ qxmpp.pri   2011-07-30 10:06:40.882149129 +0300
@@ -32,7 +32,7 @@
 # Path of the QXmpp library file, for expressing dependency.
 symbian {
 } else:unix {
-QXMPP_LIBRARY_FILE = $${QXMPP_LIBRARY_DIR}/lib$${QXMPP_LIBRARY_NAME}.a
+QXMPP_LIBRARY_FILE = $${QXMPP_LIBRARY_DIR}/lib$${QXMPP_LIBRARY_NAME}.so
 }
 
 unix {
--- src/src.pro 2011-07-18 03:12:56.0 +0300
+++ src/src.pro 2011-07-30 10:06:14.832474792 +0300
@@ -4,7 +4,7 @@
 
 TEMPLATE = lib
 
-CONFIG += staticlib
+CONFIG += dynamiclib
 INCLUDEPATH += $$QXMPP_INCLUDE_DIR $$QXMPP_INTERNAL_INCLUDES
 LIBS += $$QXMPP_INTERNAL_LIBS
 





Remember to have fun...

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



commit libwebp for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package libwebp for openSUSE:Factory
checked in at Thu Aug 11 12:12:09 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/libwebp/libwebp.changes2011-08-06 
20:59:10.0 +0200
@@ -0,0 +1,5 @@
+---
+Sat Aug  6 18:57:59 UTC 2011 - jeng...@medozas.de
+
+- Rename subpackage libwebp-tools to webp-tools to get out of
+  rpmlint's pedant observation that it does not contain libraries.

calling whatdependson for head-i586


New:

  libwebp-0.1.2.tar.xz
  libwebp.changes
  libwebp.spec



Other differences:
--
++ libwebp.spec ++
#
# spec file for package libwebp
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:   libwebp
%define lname   libwebp0
Version:0.1.2
Release:1
Group:  System/Libraries
Url:http://webmproject.org/
Summary:Library and tools for the WebP graphics format
License:BSD3c

#Source:http://webp.googlecode.com/files/libwebp-0.1.tar.gz
Source: %name-%version.tar.xz
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  libjpeg-devel libpng-devel xz

%define debug_package_requires %lname = %version-%release

%description
WebP is an image format that does lossy compression of digital
photographic images. WebP consists of a codec based on VP8, and a
container based on RIFF. Webmasters, web developers and browser
developers can use WebP to compress, archive and distribute digital
images more efficiently.

%package -n webp-tools

Group:  Productivity/Archiving/Compression
Summary:The WebP command line tools

%description -n webp-tools
WebP is an image format that does lossy compression of digital
photographic images. WebP consists of a codec based on VP8, and a
container based on RIFF. Webmasters, web developers and browser
developers can use WebP to compress, archive and distribute digital
images more efficiently.

%package -n %lname

Group:  System/Libraries
Summary:Library for the WebP graphics format

%description -n %lname
WebP is an image format that does lossy compression of digital
photographic images. WebP consists of a codec based on VP8, and a
container based on RIFF. Webmasters, web developers and browser
developers can use WebP to compress, archive and distribute digital
images more efficiently.

%package devel

Group:  Development/Libraries/C and C++
Summary:Development files for libwebp, a library for the WebP format
Requires:   %lname = %version

%description devel
WebP is an image format that does lossy compression of digital
photographic images. WebP consists of a codec based on VP8, and a
container based on RIFF. Webmasters, web developers and browser
developers can use WebP to compress, archive and distribute digital
images more efficiently.

%prep
%setup -qn %name

%build
mkdir -p m4;
./autogen.sh;
%configure --disable-static
make %{?_smp_mflags};

%install
b="%buildroot";
make install DESTDIR="$b";
find "$b/%_libdir" -type f -name "*.la" -delete;

%post -n %lname -p /sbin/ldconfig

%postun -n %lname -p /sbin/ldconfig

%files -n webp-tools
%defattr(-,root,root)
%_bindir/*
%_mandir/man*/*

%files -n %lname
%defattr(-,root,root)
%_libdir/%{name}*.so.*

%files devel
%defattr(-,root,root)
%_libdir/%{name}*.so
%_includedir/*
%_libdir/pkgconfig/*

%changelog





Remember to have fun...

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



commit npapi-sdk for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package npapi-sdk for openSUSE:Factory
checked in at Thu Aug 11 12:07:01 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/npapi-sdk/npapi-sdk.changes2011-07-27 
15:59:06.0 +0200
@@ -0,0 +1,5 @@
+---
+Wed Jul 27 13:37:55 UTC 2011 - w...@rosenauer.org
+
+- initial openSUSE package
+

calling whatdependson for head-i586


New:

  npapi-sdk-0.27.tar.bz2
  npapi-sdk.changes
  npapi-sdk.pc.in
  npapi-sdk.spec



Other differences:
--
++ npapi-sdk.spec ++
#
# spec file for package npapi-sdk
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2011 Wolfgang Rosenauer
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#

# norootforbuild


Name:   npapi-sdk
BuildRequires:  pkg-config
License:MPLv1.1 or GPLv2+ or LGPLv2.1+
Version:0.27
Release:1
Summary:Netscape Plugin API (NPAPI)
Url:https://wiki.mozilla.org/NPAPI
Group:  System/Libraries
Source: npapi-sdk-%{version}.tar.bz2
Source1:npapi-sdk.pc.in
Provides:   npapi-devel
BuildArch:  noarch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
This package provides the header and development files to create
NPAPI browser plugins.

%prep
%setup -n npapi-sdk -q

%build

%install
mkdir -p $RPM_BUILD_ROOT%{_datadir}/pkgconfig
mkdir -p $RPM_BUILD_ROOT%{_includedir}/npapi
cp headers/*.h $RPM_BUILD_ROOT%{_includedir}/npapi/
sed "s:%%VERSION%%:%{version}:g" \
  %{SOURCE1} > $RPM_BUILD_ROOT%{_datadir}/pkgconfig/npapi-sdk.pc

%clean
rm -rf $RPM_BUILD_ROOT

%files
%defattr(-, root, root)
%{_includedir}/npapi/
%{_datadir}/pkgconfig/*

%changelog
++ npapi-sdk.pc.in ++
prefix=/usr
includedir=/usr/include/npapi

Name: Mozilla Plug-In API
Description: Mozilla Plug-In API
Version: %VERSION%
Cflags: -I${includedir} -DXP_UNIX





Remember to have fun...

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



commit ntfs-3g_ntfsprogs for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package ntfs-3g_ntfsprogs for 
openSUSE:Factory
checked in at Thu Aug 11 12:06:01 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/ntfs-3g_ntfsprogs/ntfs-3g_ntfsprogs.changes
2011-07-01 16:01:02.0 +0200
@@ -0,0 +1,567 @@
+---
+Fri Jul  1 15:41:25 CEST 2011 - vu...@opensuse.org
+
+- Rename source package from ntfs-3g to ntfs-3g_ntfsprogs
+  (following upstream).
+- Remove ntfsprogs BuildRequires as it will now be built with this
+  package; update %check to reference the mkntfs binary we built
+  instead of the system one.
+- Define a ntfs-3g subpackage, for compatibility with old package.
+- Split libntfs-3g in libntfs-3g81 subpackage to follow shared
+  library packaging policy.
+- Rename devel subpackage to libntfs-3g-devel for extra clarity,
+  and add appropriate Provides/Obsoletes.
+- Package /sbin/mount.ntfs and %{_mandir}/man8/mount.ntfs.8 as
+  ghost files, to fix rpmlint warning.
+
+---
+Tue Jun 28 17:10:56 CEST 2011 - dims...@opensuse.org
+
+- Update to version 2011.4.12:
+  + ntfs-3g:
+- fixed possible wrong hole size when overwriting compressed
+  data
+- fixed listxattr() to environments with extended attributes
+- fixed ENOSPC when making an index non-resident
+- fixed partial mapping ahead of mapped runlist
+- enabled forensic mounting (currently same as read-only)
+- expand an attribute without creating a hole
+- improved appending data to a long hole
+- deny direct modifications to metadata files
+- option 'acl' to request the use of Posix ACLs
+  + ntfsclone:
+- fixed reading old big-endian ntfsclone images
+- avoided writing beyond allocated variable
+- close volume and cleanup when exiting
+- new option not to clear the timestamps
+- sync created image before remounting
+- use a stream to produce aligned writes during image creation
+  + ntfsinfo: display times in UTC
+  + mkntfs:
+- don't store full bitmap and logfile in memory
+- set a volume UUID if option -U
+- fixed $MFT allocated size
+- fixed allocated size of resident unnamed data
+  + ntfsfix:
+- new option -n for no action
+- try alternate boot sector if cannot start up
+- check and fix the upcase table
+- try to fix file systems with incorrect size
+  + ntfsundelete: fixed a segfault
+  + ntfsresize:
+- new option --info-mb-only
+- new option --check
+- ntfs-3g and ntfsprogs are now part of one source tarball. For
+  easiest upgrade path, we create a subpackage called ntfsprogs.
+  The version number is higher than the latest released one, so
+  there is no need for special care.
+
+---
+Sat Apr 30 18:14:05 UTC 2011 - crrodrig...@opensuse.org
+
+- Fix build with gcc 4.6: Remove -Werror from CFLAGS in the spec
+  file. It currently fails on "error: variable 'foo' set but not
+  used [-Werror=unused-but-set-variable]"
+
+---
+Sun Mar 20 22:23:50 CET 2011 - dims...@opensuse.org
+
+- Update to version 2011.1.15:
+  + New festures:
+- implemented fsync() and fsyncdir().
+- implemented the ’sync’ mount option.
+- sanity check upcase table.
+- added a big-endian extended attribute name for attrib and
+  times.
+- added an extended attribute name for creation time.
+- enable renaming of system extended attributes.
+  + Bug fixes:
+- improved appending data to fragmented files.
+- improved rebuilding a runlist.
+- improved comparing filenames on big-endian CPUs.
+- stat(2) for system files with no data.
+- alignment on cached structures.
+- Posix ACLs for big-endian CPUs.
+- deleting files using ignore_case option.
+- allocated size when an attribute update causes unnamed
+  data to be expelled.
+
+---
+Mon Oct  4 12:06:02 CEST 2010 - vu...@opensuse.org
+
+- Update to version 2010.10.2:
+  + Bug fixes:
+- Fixed filename encoding when standard functions are not
+  available.
+- Fixed checking mounted device status on some non-Linux
+  platforms.
+- Fixed mounting with SELinux context.
+- Fixed -n and --no-mtab mount option handling, needed by
+  automount.
+- Improved consistency checks of POSIX ACLs.
+- NTFS-3G manual update.
+
+---
+Mon Aug  9 11:30:16 CEST 2010 - vu...@opensuse.org
+
+- Update to version 2010.8.8:
+  + New features:
+- Full, transparent, read-write compression support.
+- Two new mount options: compression and nocompression
+  (default).
+- Introduced windows_names mount option to e

commit ntrack for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package ntrack for openSUSE:Factory
checked in at Thu Aug 11 11:57:42 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/ntrack/ntrack.changes  2011-04-18 
23:01:21.0 +0200
@@ -0,0 +1,5 @@
+---
+Mon Apr 18 20:14:35 UTC 2011 - fi...@opensuse.org
+
+- initial package, version 014
+

calling whatdependson for head-i586


New:

  ntrack-014.tar.gz
  ntrack.changes
  ntrack.spec



Other differences:
--
++ ntrack.spec ++
#
# spec file for package ntrack
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


%define soname 0
%define glib_soname 2
%define gobject_soname 1
%define qt4_soname 1
%define libnl_soname 1

Name:   ntrack
Version:014
Release:1
License:LGPLv3+
Summary:Network connectivity tracking library for desktop applications
Url:https://launchpad.net/ntrack
Group:  System/Libraries
Source: ntrack-014.tar.gz
BuildRequires:  pkgconfig(QtCore)
BuildRequires:  pkgconfig(glib-2.0)
BuildRequires:  pkgconfig(gobject-2.0)
BuildRequires:  pkgconfig(libnl-1)
BuildRequires:  pkgconfig(pygobject-2.0)
BuildRequires:  pkgconfig(python)
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
ntrack aims to be a lightweight and easy to use library for application 
developers
that want to get events on network online status changes such as online, 
offline or route changes.

%package -n lib%{name}%{soname}


License:LGPLv3+
Summary:Network connectivity tracking library for desktop applications
Group:  System/Libraries
Requires:   %{name}-libnl%{libnl_soname}

%description -n lib%{name}%{soname}
ntrack aims to be a lightweight and easy to use library for application 
developers
that want to get events on network online status changes such as online, 
offline or route changes.

%package devel
License:LGPLv3+
Summary:Network connectivity tracking library for desktop applications
Group:  Development/Libraries/C and C++
Requires:   lib%{name}%{soname} = %{version}

%description devel
ntrack aims to be a lightweight and easy to use library for application 
developers
that want to get events on network online status changes such as online, 
offline or route changes.

Development files for lib%{name}%{soname}.

%package -n lib%{name}-qt4-%{qt4_soname}


License:LGPLv3+
Summary:Network connectivity tracking library for desktop applications
Group:  System/Libraries

%description -n lib%{name}-qt4-%{qt4_soname}
ntrack aims to be a lightweight and easy to use library for application 
developers
that want to get events on network online status changes such as online, 
offline or route changes.

Qt4 monitor API to get network connectivity change updates.

%package -n lib%{name}-qt4-devel


License:LGPLv3+
Summary:Network connectivity tracking library for desktop applications
Group:  Development/Libraries/C and C++
Requires:   lib%{name}-qt4-%{qt4_soname} = %{version}
Requires:   %{name}-devel = %{version}

%description -n lib%{name}-qt4-devel
ntrack aims to be a lightweight and easy to use library for application 
developers
that want to get events on network online status changes such as online, 
offline or route changes.

Developments files for lib%{name}-qt4-%{qt4_soname}.

%package -n lib%{name}-glib%{glib_soname}


License:LGPLv3+
Summary:Network connectivity tracking library for desktop applications
Group:  System/Libraries

%description -n lib%{name}-glib%{glib_soname}
ntrack aims to be a lightweight and easy to use library for application 
developers
that want to get events on network online status changes such as online, 
offline or route changes.

Glib monitor API to get network connectivity change updates.

%package -n lib%{name}-glib-devel


License:LGPLv3+
Summary:Network connectivity tracking library for desktop applications
Group:  Development/Libraries/C and C++
Requires:   lib%{name}-glib%{glib_soname} = %{version}
Requires:   %{name}-devel = %{ve

commit perl-Net-SMTP-SSL for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package perl-Net-SMTP-SSL for 
openSUSE:Factory
checked in at Thu Aug 11 11:38:42 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/perl-Net-SMTP-SSL/perl-Net-SMTP-SSL.changes
2011-08-08 10:14:19.0 +0200
@@ -0,0 +1,17 @@
+---
+Mon Aug  8 08:06:15 UTC 2011 - vci...@novell.com
+
+- package recreated by cpanspec 1.78.03
+
+---
+Wed Dec  1 11:53:34 UTC 2010 - co...@novell.com
+
+- switch to perl_requires macro
+
+---
+Tue Oct 19 08:38:52 UTC 2010 - co...@novell.com
+
+- add perl as explicit buildrequire
+
+* Wed Mar 25 2009 tuukka.pasa...@ilmi.fi
+- packaged perl-Net-SMTP-SSL version 1.01 using the buildservice spec file 
wizard

calling whatdependson for head-i586


New:

  Net-SMTP-SSL-1.01.tar.gz
  perl-Net-SMTP-SSL.changes
  perl-Net-SMTP-SSL.spec



Other differences:
--
++ perl-Net-SMTP-SSL.spec ++
#
# spec file for package perl-Net-SMTP-SSL
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:   perl-Net-SMTP-SSL
Version:1.01
Release:1
License:GPL+ or Artistic
%define cpan_name Net-SMTP-SSL
Summary:SSL support for Net::SMTP
Url:http://search.cpan.org/dist/Net-SMTP-SSL/
Group:  Development/Libraries/Perl
#Source: 
http://www.cpan.org/authors/id/C/CW/CWEST/Net-SMTP-SSL-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.gz
BuildRequires:  perl(IO::Socket::SSL)
BuildRequires:  perl
BuildRequires:  perl-macros
Requires:   perl(IO::Socket::SSL)
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildArch:  noarch
%{perl_requires}

%description
Implements the same API as Net::SMTP, but uses IO::Socket::SSL for its
network operations. Due to the nature of 'Net::SMTP''s 'new' method, it is
not overridden to make use of a default port for the SMTPS service. Perhaps
future versions will be smart like that. Port '465' is usually what you
want, and it's not a pain to specify that.

For interface documentation, please see Net::SMTP.

%prep
%setup -q -n %{cpan_name}-%{version}

%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}

%check
%{__make} test

%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist

%clean
%{__rm} -rf %{buildroot}

%files -f %{name}.files
%defattr(644,root,root,755)
%doc Changes README

%changelog





Remember to have fun...

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



commit perl-MIME-EncWords for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package perl-MIME-EncWords for 
openSUSE:Factory
checked in at Thu Aug 11 11:39:47 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/perl-MIME-EncWords/perl-MIME-EncWords.changes  
2011-07-12 20:45:37.0 +0200
@@ -0,0 +1,21 @@
+---
+Tue Jul 12 18:44:00 UTC 2011 - opens...@cboltz.de
+
+- update to 1.012.3
+  * created by cpanspec 1.78.03
+
+---
+Sat Dec  4 22:08:33 UTC 2010 - opens...@cboltz.de
+
+- re-packaged 1.012 using cpanspec 1.78.03
+
+---
+Wed Dec  1 22:12:37 UTC 2010 - opens...@cboltz.de
+
+- update to 1.012
+
+---
+Fri Oct 31 22:00:00 UTC 2008 - opens...@cboltz.de
+
+- initial package
+

calling whatdependson for head-i586


New:

  MIME-EncWords-1.012.3.tar.gz
  perl-MIME-EncWords.changes
  perl-MIME-EncWords.spec



Other differences:
--
++ perl-MIME-EncWords.spec ++
#
# spec file for package perl-MIME-EncWords
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:   perl-MIME-EncWords
Version:1.012.3
Release:1
License:GPL+ or Artistic
%define cpan_name MIME-EncWords
Summary:deal with RFC 2047 encoded words (improved)
Url:http://search.cpan.org/dist/MIME-EncWords/
Group:  Development/Libraries/Perl
#Source: 
http://www.cpan.org/authors/id/N/NE/NEZUMI/MIME-EncWords-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.gz
BuildRequires:  perl(MIME::Charset) >= 1.008.2
BuildRequires:  perl
BuildRequires:  perl-macros
Requires:   perl(MIME::Charset) >= 1.008.2
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildArch:  noarch
%{perl_requires}

%description
Fellow Americans, you probably won't know what the hell this module is for.
Europeans, Russians, et al, you probably do. ':-)'.

For example, here's a valid MIME header you might get:

  From: =?US-ASCII?Q?Keith_Moore?= 
  To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= 
  CC: =?ISO-8859-1?Q?Andr=E9_?= Pirard 
  Subject: =?ISO-8859-1?B?SWYgeW91IGNhbiByZWFkIHRoaXMgeW8=?=
   =?ISO-8859-2?B?dSB1bmRlcnN0YW5kIHRoZSBleGFtcGxlLg==?=
   =?US-ASCII?Q?.._cool!?=

The fields basically decode to (sorry, I can only approximate the Latin
characters with 7 bit sequences /o and 'e):

  From: Keith Moore 
  To: Keld J/orn Simonsen 
  CC: Andr'e  Pirard 
  Subject: If you can read this you understand the example... cool!

*Supplement*: Fellow Americans, Europeans, you probably won't know what the
hell this module is for. East Asians, et al, you probably do. '(^_^)'.

For example, here's a valid MIME header you might get:

  Subject: =?EUC-KR?B?sNTAuLinKGxhemluZXNzKSwgwvzB9ri7seIoaW1w?=
   =?EUC-KR?B?YXRpZW5jZSksILGzuLgoaHVicmlzKQ==?=

The fields basically decode to (sorry, I cannot approximate the non-Latin
multibyte characters with any 7 bit sequences):

  Subject: ???(laziness), (impatience), ??(hubris)

%prep
%setup -q -n %{cpan_name}-%{version}

%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}

%check
%{__make} test

%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist

%clean
%{__rm} -rf %{buildroot}

%files -f %{name}.files
%defattr(644,root,root,755)
%doc ARTISTIC Changes GPL README

%changelog





Remember to have fun...

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



commit rkhunter for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package rkhunter for openSUSE:Factory
checked in at Thu Aug 11 11:31:24 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/rkhunter/rkhunter.changes  2011-08-04 
16:29:35.0 +0200
@@ -0,0 +1,194 @@
+---
+Thu Aug  4 14:28:31 UTC 2011 - sascha.ma...@open-slx.de
+
+- fixed License to GPLv2 or later
+  has misunderstood a message 
+
+---
+Tue May 24 11:30:58 UTC 2011 - saigk...@opensuse.org
+
+- fixed bnc#695317 based on Volker Kuhlmann THX 
+
+---
+Wed Nov 17 13:56:58 UTC 2010 - saigk...@opensuse.org
+
+- Updated to version 1.3.8 
+
+---
+Mon Nov 30 16:44:30 UTC 2009 - saigk...@opensuse.org
+
+- updated to Version 1.3.6 
+
+---
+Mon Nov 30 16:42:06 UTC 2009 - saigk...@opensuse.org
+
+- cleanup : 
+
+---
+Sat Jan 10 18:46:00 UTC 2009 - saigk...@opensuse.org - 1.3.4
+
+- branched for OpenSUSE:Factory:contrib
+- changed License to GPLv3 
+- changed Sourcecode from *.tar.gz to tar.bz2
+
+---
+Wed Dec 31 00:00:00 CET 2008 - lr...@suse.de - 1.3.4
+
+- update to 1.3.4
+   + The change log lists 4 additions, 8 changes and 9 bugfixes. Here are a 
few:
+   + Added IntoXonia-NG rootkit check.
+   + Added Phalanx2 rootkit check.
+   + Added support for TCB shadow files.
+   + The '--propupd' option can now take an optional file, 
+  directory or package name after it.
+   + Revised file properties inode check.
+   + Improved the O/S name detection.
+   + Improved hidden files and directories check.
+   + Improved debug file option.
+
+---
+Fri Nov 14 12:29:36 CET 2008 - lr...@suse.de - 1.3.2
+
+- added rkhunter-1.3.2-CVE-2008-4982.patch
+
+---
+Tue Nov  4 10:31:05 CET 2008 - l...@linux-schulserver.de - 1.3.2
+
+- added --no-mail-on-warning as option to the sysconfig and cronjob
+  to avoid double mails
+
+---
+Mon Jun 30 15:01:42 CEST 2008 - lr...@suse.de - 1.3.2
+
+- added /dev/shm/pulse-shm to allowed dev files 
+
+---
+Mon May 26 15:09:19 CEST 2008 - lr...@suse.de - 1.3.2
+
+- allow users to disable SuSEconfig script via sysconfig file
+
+---
+Thu May  8 13:24:38 CEST 2008 - lr...@suse.de - 1.3.2
+
+- remove the --propupd option from cron: makes more problems than 
+  it solves
+- add SuSEconfig.rkhunter instead if build in OBS
+- update README.SuSE
+
+---
+Tue May  6 12:31:43 CEST 2008 - lr...@suse.de - 1.3.2
+
+- fix typo in cronjob (bnc#384668)
+- logrotate script is %config
+
+---
+Mon Apr 28 18:10:37 CEST 2008 - lr...@suse.de - 1.3.2
+
+- allow /dev/shm/sysconfig/new-stamp-* files
+
+---
+Tue Apr  8 12:12:50 CEST 2008 - lr...@suse.de - 1.3.2
+
+- fix typo in sysconfig file 
+
+---
+Thu Apr  3 19:41:37 CEST 2008 - lr...@suse.de - 1.3.2
+
+- update to 1.3.2:
+  The changelog lists 3 additions, 6 changes and 14 bugfixes. 
+  Naming a few: 
+  + Socklog and rsyslog daemons support. 
+  + Application version check errors mostly ignored. 
+  + Unset ALLOW_SSH_ROOT_USER and ALLOW_SSH_PROT_V1. 
+  + Application check whitelisting. 
+  + Correct scanning of /dev in LAZY mode. 
+  + Whitelisted passwordless account names logged. 
+  + Corrected obtaining process names in Solaris. 
+  + Correct hidden files/directories test behaviour. 
+  + Cater for those using fdesc/fdescfs. 
+
+---
+Wed Feb  6 13:51:10 CET 2008 - lr...@suse.de - 1.3.0
+
+- update to 1.3.0:
+  - many new features
+  (needs testing)
+
+---
+Wed Nov 28 17:17:47 CET 2007 - lr...@suse.de - 1.2.9
+
+- newdb.tar.bz2 updated
+- rkhunter-10.3.patch adapted
+
+---
+Fri Jun 01 17:31:19 CET 2007 - lr...@suse.de - 1.2.9
+
+- update to 1.29
+- improved the cronjob
+- added sysconfig file for cronjob
+- add /var/log/rkhunter.log as %ghost
+- add hashupd.sh to scripts directory
+
+---

commit scim-unikey for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package scim-unikey for openSUSE:Factory
checked in at Thu Aug 11 11:18:56 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/scim-unikey/scim-unikey.changes
2011-05-24 19:41:39.0 +0200
@@ -0,0 +1,4 @@
+---
+Tue May  24 18:38:11 UTC 2010 - nlmin...@gmail.com
+
+- Error fixed

calling whatdependson for head-i586


New:

  scim-unikey-0.3.1.tar.bz2
  scim-unikey.changes
  scim-unikey.spec



Other differences:
--
++ scim-unikey.spec ++
#
# spec file for package scim-unikey
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#

# norootforbuild


Name:   scim-unikey
Version:0.3.1
Release:1
Summary:Vietnamese Input Method Engine for SCIM using Unikey IME
License:GPLv2
Group:  System/Localization
Url:http://code.google.com/p/scim-unikey/
Source: %{name}-%{version}.tar.bz2
BuildRequires:  scim-devel >= 1.4.7
BuildRequires:  gcc-c++
Requires:   scim

BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
SCIM (Smart Common Input Method) is an input method (IM) platform.
scim-unikey is a IME for scim. Use for type Vietnamese
Support via forum at: http://forum.ubuntu-vn.com/viewforum.php?f=85

%prep
%setup -q

%build
%configure -libdir=%_libdir --prefix=%{_prefix}
%__make

%install
%makeinstall
%__rm -f %{buildroot}%{_libdir}/*.so

%if ! 0%{?sles_version}
%ifarch x86_64
%__mv %{buildroot}/usr/{lib,lib64}/scim-setup-unikey
%endif
%endif

find $RPM_BUILD_ROOT -name *.la -exec rm '{}' +
%find_lang %{name}

%post -p /sbin/ldconfig

%postun -p /sbin/ldconfig

%clean
rm -rf $RPM_BUILD_ROOT

%files -f %name.lang  
%defattr(-,root,root)
%doc AUTHORS ChangeLog COPYING INSTALL NEWS README
%_libdir/scim-1.0/1.4.0/IMEngine/unikey.*
%_libdir/scim-1.0/1.4.0/Helper/unikey-helper.so
%_datadir/scim-unikey/
%_libdir/libunikey-scim.so.*
%_datadir/scim/icons/scim-unikey*.png
%_libdir/scim-setup-unikey

%changelog





Remember to have fun...

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



commit site-config for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package site-config for openSUSE:Factory
checked in at Thu Aug 11 11:11:58 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/site-config/site-config.changes
2011-08-03 20:57:42.0 +0200
@@ -0,0 +1,5 @@
+---
+Wed Aug  3 18:59:32 CEST 2011 - sbra...@suse.cz
+
+- New package created (bnc#382344).
+

calling whatdependson for head-i586


New:

  site-config.AUTHORS
  site-config.COPYING
  site-config.changes
  site-config.libdir.biarch
  site-config.libexecdir
  site-config.spec



Other differences:
--
++ site-config.spec ++
#
# spec file for package site-config
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#

# norootforbuild


Name:   site-config
License:BSD3
Group:  Development/Tools/Building
Version:0.1
Release:1
Summary:Site Paths Configuration for autoconf Based configure Scripts
Source: %{name}.libdir.biarch
Source1:%{name}.libexecdir
Source2:%{name}.AUTHORS
Source3:%{name}.COPYING
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  autoconf libtool
Supplements:make autoconf

%description
Site configuration for autoconf based configure scripts provides smart
defaults for paths that are not specified.

%prep
%setup -q -T -c %{name}-%{version}
cp -a %{S:0} %{S:1} .
cp -a %{S:2} AUTHORS
cp -a %{S:3} COPYING
touch site-config.libdir.uniarch

%build
SITE_PLATFORM=`%{_datadir}/libtool/config/config.guess`
# Extract fully expanded needed parts of the actual implementation of 
AC_SITE_LOAD.
cat >configure.in >site-config
else
cat site-config.libdir.biarch >>site-config
fi
cat site-config.libexecdir >>site-config
echo '# Continue with the standard behavior of configure defined in 
AC_SITE_LOAD:' >>site-config
cat ac_site_load_files >>site-config

%install
mkdir -p $RPM_BUILD_ROOT%{_datadir}/site $RPM_BUILD_ROOT%{_sysconfdir}/profile.d
SITE_PLATFORM=`%{_datadir}/libtool/config/config.guess`
if test -z "$SITE_PLATFORM" ; then
echo "ERROR: libtool implementation changed. Please update 
SITE_PLATFORM definition."
exit 1
fi
cp -a site-config $RPM_BUILD_ROOT%{_datadir}/site/$SITE_PLATFORM

cat >$RPM_BUILD_ROOT%{_sysconfdir}/profile.d/site.sh <$RPM_BUILD_ROOT%{_sysconfdir}/profile.d/site.csh <
++ site-config.COPYING ++
GNU GENERAL PUBLIC LICENSE
   Version 2, June 1991

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

Preamble

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

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

  To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.

commit xplanet for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package xplanet for openSUSE:Factory
checked in at Thu Aug 11 11:06:54 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/xplanet/xplanet.changes2011-05-22 
23:04:30.0 +0200
@@ -0,0 +1,275 @@
+---
+Sun May 22 20:18:13 UTC 2011 - asterios.dra...@gmail.com
+
+- Update to 1.2.2:
+  * Lots of changes (see ChangeLog).
+- Spec file updates:
+  * Changes based on spec-cleaner run.
+  * Added libjpeg-devel and pango-devel in BuildRequires:.
+  * Minor other updates.
+  * Removed changelog entries.
+- Removed fix-buffer-overflow.patch (fixed upstream).
+- Removed gcc43 and gcc44 patches (not needed).
+
+---
+Sat Dec  5 00:00:00 UTC 2009 - dg...@gmx.de
+
+- Fix compilation with gcc44
+
+---
+Wed Oct  3 11:27:30 CEST 2007 - co...@suse.de
+
+- fix compilation with gcc43
+
+---
+Fri Aug 10 04:55:52 CEST 2007 - crrodrig...@suse.de
+
+- libnetpbm-devel fixes build
+- add fno-strict-aliasing as well.  
+
+---
+Wed Jan 17 12:19:05 CET 2007 - jsm...@suse.de
+
+- Use our preferred architecture-specific RPM_OPT_FLAGS.
+- fix-buffer-overflow.patch avoids an unfounded buffer overflow
+  error message.
+
+---
+Thu Dec  7 16:46:16 CET 2006 - jsm...@suse.de
+
+- Changed /usr/X11R6/bin/ to /usr/bin/
+  (see Suse bugzilla bug #224882).
+
+---
+Wed Jan 25 21:43:22 CET 2006 - m...@suse.de
+
+- converted neededforbuild to BuildRequires
+
+---
+Wed Jun 22 13:13:48 CEST 2005 - m...@suse.de
+
+- Update to 1.2.0 including:
+  o Added the -grs_longitude option, to specify the longitude of
+Jupiter's Great Red Spot, in System II coordinates.  This assumes
+the Jupiter image has the center of the Great Red Spot at pixel 0
+(at the left side of the image) in order to draw it at the right
+position.
+  o Added the Icosagnomonic projection
+  o Fixed a bug where output filenames had an extra digit in some
+cases
+  o Added the bump_map and bump_scale options in the configuration
+file
+  o Added the -glare option to set the size of the sun's glare
+  o An image map may be specified for the sun in the configuration
+file now.  A shade value is now required for the sun (should be
+100, otherwise the sun will have a night side!)
+  o Added the -arc_spacing option to set the default angular
+distance between great arc points.  It used to be 0.1 degree, so
+arcs smaller than this wouldn't get drawn
+  o Fixed a bug where markers were not aligned properly when using
+align = "above" or "below"
+  o Added warnings if options are specified in the [default] section
+of the configuration file that probably shouldn't be there
+
+---
+Mon Dec  6 09:34:19 CET 2004 - m...@suse.de
+
+- Update to xplanet-1.1.2 including:
+  o Saturn's rings are now drawn properly when using "magnify" in
+the config file.
+  o Added marker_fontsize as an option in the configuration file.
+  o Added the Bonne, Gnomonic, Polyconic, and Tangential Spherical
+Cube (TSC) projections.
+  o Added the -proj_param option.  Note that the -projection option
+cannot be abbreviated to -proj anymore!
+  o Color cloud maps are now allowed.
+  o A color may now be specified with -background.
+
+---
+Mon Aug  9 10:55:44 CEST 2004 - m...@suse.de
+
+- Update to xplanet-1.1.1 including:
+  o Added -north path, -target path, and -path_relative_to options.
+  o Added -output_start_index option.
+  o Print a list of compile-time options when using the -version
+option.
+  o Fixed a bug where orbits were not drawn for bodies using SPICE
+kernels.
+  o Added ssec_map option to configuration files to use University
+of Wisconsin cloud maps.
+
+---
+Tue Jun 29 07:22:54 CEST 2004 - m...@suse.de
+
+- Update to xplanet-1.1.0 including:
+  o Added the -fork option.
+  o Fixed a bug where stars were not drawn when using the -proj
+option.
+
+---
+Mon May 24 13:29:54 CEST 2004 - m...@suse.de
+
+- Update to xplanet-1.0.8 including:
+  o Fixed a bug where eclipse shadows were not drawn properly
+  o Timer now sleeps until it's time to wake up, instead of
+sleeping for a set time.
+
+

commit tinyproxy for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

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




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/tinyproxy/tinyproxy.changes2011-07-18 
14:45:08.0 +0200
@@ -0,0 +1,5 @@
+---
+Mon Jul 18 12:44:15 UTC 2011 - jeng...@medozas.de
+
+- Initial package
+

calling whatdependson for head-i586


New:

  tinyproxy-1.8.2.tar.xz
  tinyproxy.changes
  tinyproxy.spec



Other differences:
--
++ tinyproxy.spec ++
#
# spec file for package tinyproxy
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:   tinyproxy
Version:1.8.2
Release:1
Group:  Productivity/Networking/Web/Proxy
Summary:Minimalist WWW proxy
License:GPLv2+
Url:https://banu.com/tinyproxy/

#Source:https://banu.com/pub/tinyproxy/1.8/tinyproxy-1.8.2.tar.bz2
Source: %name-%version.tar.xz

BuildRoot:  %{_tmppath}/%{name}-%{version}-build
# libxslt -> xsltproc
BuildRequires:  asciidoc libxslt xz

%description
Tinyproxy is a light-weight HTTP/HTTPS proxy daemon for POSIX
operating systems. Designed from the ground up to be fast and yet
small, it is an ideal solution for use cases such as embedded
deployments where a full featured HTTP proxy is required, but the
system resources for a larger proxy are unavailable.

%prep
%setup -q

%build
%configure
make  %{?_smp_mflags};

%install
make install DESTDIR="%buildroot";

%files
%defattr(-,root,root)
%config(noreplace) %_sysconfdir/*.conf
%_sbindir/*
%_mandir/man*/*
%_datadir/tinyproxy

%changelog





Remember to have fun...

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



commit ucommon for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package ucommon for openSUSE:Factory
checked in at Thu Aug 11 10:52:25 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/ucommon/ucommon.changes2011-07-31 
08:36:59.0 +0200
@@ -0,0 +1,8 @@
+---
+Sat Jul  30 09:10:00 MEZ 2011 - werner.dittm...@t-online.de
+
+- First version of GNU uCommon as standard package
+  The changelog file in the source package contains the the full history 
+  of GNU uCommon. Changes to GNU uCommon that happen after it becomes
+  a standard package will be recorded in ucommon.changes file as well.
+

calling whatdependson for head-i586


New:

  ucommon-5.0.5.tar.bz2
  ucommon.changes
  ucommon.spec



Other differences:
--
++ ucommon.spec ++
#
# spec file for package ucommon
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2008, 2009 David Sugar, Tycho Softworks.
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without
# modifications, as long as this notice is preserved.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:   ucommon
Version:5.0.5
Release:1
License:LGPLv3+
Summary:Runtime library for portable C++ threading and sockets
Url:http://www.gnu.org/software/commoncpp
Group:  System/Libraries
Source0:
http://www.gnutelephony.org/dist/tarballs/ucommon-%{version}.tar.bz2
BuildRequires:  cmake
BuildRequires:  doxygen
BuildRequires:  gcc-c++
BuildRequires:  graphviz-gd
BuildRequires:  openssl-devel
BuildRequires:  pkgconfig
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
GNU uCommon C++ is a lightweight library to facilitate using C++ design
patterns even for very deeply embedded applications, such as for systems using
uClibc along with POSIX threading support. For this reason, uCommon disables
language features that consume memory or introduce runtime overhead. uCommon
introduces some design patterns from Objective-C, such as reference counted
objects, memory pools, and smart pointers.  uCommon introduces some new
concepts for handling of thread locking and synchronization.

%package bin


Summary:GNU uCommon system and support applications
Group:  Development/Tools/Other
Requires:   %{name} = %{version}

%package devel


Summary:Headers for building ucommon applications
Group:  Development/Libraries/C and C++
Requires:   %{name} = %{version}
Requires:   %{name}-bin = %{version}
Requires:   openssl-devel
Requires:   pkgconfig

%package doc


Summary:Generated class documentation for ucommon
Group:  Documentation

%description bin
This is a collection of command line tools that use various aspects of the
ucommon library.  Some may be needed to prepare files or for development of
applications.

%description devel
This package provides header and support files needed for building
applications that use the uCommon library and frameworks.

%description doc
Generated class documentation for GNU uCommon library from header files,
html browsable.

%prep
%setup -q

%build
rm -rf build
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} \
  -DSYSCONFDIR=%{_sysconfdir} \
  -DMANDIR=%{_mandir} \
  -DCMAKE_VERBOSE_MAKEFILE=TRUE \
  -DCMAKE_C_FLAGS_RELEASE:STRING="%{optflags}" \
  -DCMAKE_CXX_FLAGS_RELEASE:STRING="%{optflags}" \
  ..
make %{?_smp_mflags}

%install
cd build
rm -rf %{buildroot}
%make_install
chmod 0755 %{buildroot}%{_bindir}/ucommon-config
chmod 0755 %{buildroot}%{_bindir}/commoncpp-config
rm -rf %{buildroot}%{_libdir}/*.la

%clean
rm -rf %{buildroot}

%files
%defattr(-,root,root,-)
%doc AUTHORS README COPYING COPYING.LESSER COPYRIGHT NEWS SUPPORT ChangeLog
%{_libdir}/libucommon.so.*
%{_libdir}/libusecure.so.*
%{_libdir}/libcommoncpp.so.*

%files bin
%defattr(-,root,root,-)
%{_bindir}/args
%{_bindir}/car
%{_bindir}/scrub-files
%{_bindir}/mdsum
%{_bindir}/sockaddr
%{_bindir}/zerofill
%{_mandir}/man1/args.*
%{_mandir}/man1/scrub-files.*
%{_mandir}/man1/mdsum.*
%{_mandir}/man1/zerofill.*
%{_mandir}/man1/

commit bundle-lang-common for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package bundle-lang-common for 
openSUSE:Factory
checked in at Thu Aug 11 10:49:56 CEST 2011.




--- bundle-lang-common/bundle-lang-common.changes   2011-07-12 
20:55:46.0 +0200
+++ /mounts/work_src_done/STABLE/bundle-lang-common/bundle-lang-common.changes  
2011-08-03 10:12:17.0 +0200
@@ -1,0 +2,10 @@
+Wed Aug  3 08:20:13 CEST 2011 - vu...@opensuse.org
+
+- update package list
+
+---
+Thu Jul 14 07:01:13 UTC 2011 - a...@suse.de
+
+- Update version to 12.1
+
+---
--- bundle-lang-common/bundle-lang-gnome-extras.changes 2011-07-14 
09:01:54.0 +0200
+++ 
/mounts/work_src_done/STABLE/bundle-lang-common/bundle-lang-gnome-extras.changes
2011-08-03 10:12:18.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug  3 08:20:13 CEST 2011 - vu...@opensuse.org
+
+- update package list
+
+---
--- bundle-lang-common/bundle-lang-gnome.changes2011-07-14 
09:01:54.0 +0200
+++ /mounts/work_src_done/STABLE/bundle-lang-common/bundle-lang-gnome.changes   
2011-08-03 10:12:19.0 +0200
@@ -2 +2,6 @@
-Thu Jul 14 07:01:09 UTC 2011 - a...@suse.de
+Wed Aug  3 08:20:13 CEST 2011 - vu...@opensuse.org
+
+- update package list
+
+---
+Thu Jul 14 07:01:13 UTC 2011 - a...@suse.de
bundle-lang-kde.changes: same change

calling whatdependson for head-i586




Other differences:
--
++ bundle-lang-common.spec ++
--- /var/tmp/diff_new_pack.52cnaD/_old  2011-08-11 10:47:13.0 +0200
+++ /var/tmp/diff_new_pack.52cnaD/_new  2011-08-11 10:47:13.0 +0200
@@ -37,6 +37,7 @@
 BuildRequires:  gtk2-lang
 BuildRequires:  gstreamer-0_10-plugins-base-lang
 BuildRequires:  gstreamer-0_10-lang
+BuildRequires:  gsettings-desktop-schemas-lang
 BuildRequires:  gpg2-lang
 BuildRequires:  gnome-vfs2-lang
 BuildRequires:  gnome-keyring-lang
@@ -62,7 +63,7 @@
 License:MIT License (or similar)
 Group:  System/Localization
 Version:12.1
-Release:1
+Release:29
 Summary:Translations for a Group of Programs
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
@@ -116,6 +117,8 @@
 Provides:   locale(gnome-vfs2:en)
 Provides:   gpg2-lang = %(rpm -q --queryformat '%{VERSION}' gpg2-lang)
 Provides:   locale(gpg2:en)
+Provides:   gsettings-desktop-schemas-lang = %(rpm -q --queryformat 
'%{VERSION}' gsettings-desktop-schemas-lang)
+Provides:   locale(gsettings-desktop-schemas:en)
 Provides:   gstreamer-0_10-lang = %(rpm -q --queryformat '%{VERSION}' 
gstreamer-0_10-lang)
 Provides:   locale(gstreamer-0_10:en)
 Provides:   gstreamer-0_10-plugins-base-lang = %(rpm -q --queryformat 
'%{VERSION}' gstreamer-0_10-plugins-base-lang)
@@ -192,6 +195,8 @@
 Provides:   locale(gnome-vfs2:de)
 Provides:   gpg2-lang = %(rpm -q --queryformat '%{VERSION}' gpg2-lang)
 Provides:   locale(gpg2:de)
+Provides:   gsettings-desktop-schemas-lang = %(rpm -q --queryformat 
'%{VERSION}' gsettings-desktop-schemas-lang)
+Provides:   locale(gsettings-desktop-schemas:de)
 Provides:   gstreamer-0_10-lang = %(rpm -q --queryformat '%{VERSION}' 
gstreamer-0_10-lang)
 Provides:   locale(gstreamer-0_10:de)
 Provides:   gstreamer-0_10-plugins-base-lang = %(rpm -q --queryformat 
'%{VERSION}' gstreamer-0_10-plugins-base-lang)
@@ -268,6 +273,8 @@
 Provides:   locale(gnome-vfs2:es)
 Provides:   gpg2-lang = %(rpm -q --queryformat '%{VERSION}' gpg2-lang)
 Provides:   locale(gpg2:es)
+Provides:   gsettings-desktop-schemas-lang = %(rpm -q --queryformat 
'%{VERSION}' gsettings-desktop-schemas-lang)
+Provides:   locale(gsettings-desktop-schemas:es)
 Provides:   gstreamer-0_10-lang = %(rpm -q --queryformat '%{VERSION}' 
gstreamer-0_10-lang)
 Provides:   locale(gstreamer-0_10:es)
 Provides:   gstreamer-0_10-plugins-base-lang = %(rpm -q --queryformat 
'%{VERSION}' gstreamer-0_10-plugins-base-lang)
@@ -344,6 +351,8 @@
 Provides:   locale(gnome-vfs2:it)
 Provides:   gpg2-lang = %(rpm -q --queryformat '%{VERSION}' gpg2-lang)
 Provides:   locale(gpg2:it)
+Provides:   gsettings-desktop-schemas-lang = %(rpm -q --queryformat 
'%{VERSION}' gsettings-desktop-schemas-lang)
+Provides:   locale(gsettings-desktop-schemas:it)
 Provides:   gstreamer-0_10-lang = %(rpm -q --queryformat '%{VERSION}' 
gstreamer-0_10-lang)
 Provides:   locale(gstreamer-0_10:it)
 Provides:   gstreamer-0_10-plugins-base-lang = %(rpm -q --queryformat 
'%{VERSION}' gstreamer-0_10-plugins-base-lang)
@@ -420,6 +429,8 @@
 Provides:   locale(gnome-vfs2:fr)
 Provides:   gpg2-lang = %(rpm -q --queryformat '%{V

commit calibre for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package calibre for openSUSE:Factory
checked in at Thu Aug 11 10:46:29 CEST 2011.




--- calibre/calibre.changes 2011-07-29 21:26:23.0 +0200
+++ /mounts/work_src_done/STABLE/calibre/calibre.changes2011-08-10 
16:31:55.0 +0200
@@ -1,0 +2,35 @@
+Wed Aug 10 14:26:44 UTC 2011 - sascha.ma...@open-slx.de
+
+- New Features
+  o Add a new action 'Pick Random Book' that can be added to the toolbar
+via Preferences->Toolbars.
+  o Driver for Droid X2
+  o PDF metadata: Support reading/writing of tags from the Keywords field
+in PDF files.
+  o MOBI Input: Speedup reading of HUFF/CDIC compressed files
+  o MOBI Output: Add a command line option --extract-to that uses the
+inspect MOBI tool to extract the created MOBI file to the specified
+directory
+  o Template language: Add a few new functions to manipulate lists
+(list_difference, list_intersection, list_sort)
+  o Make the Manage Tags/Publishers/etc. dialog show a column with counts
+for each item, to easily sort by number of items
+  o MOBI Output: Generate navpoints for items at every level in the TOC,
+not just the deepest level 
+
+- Bug Fixes
+  o MOBI Output: Remove option to choose masthead font as the font
+selection control causes crashes on some windows systems
+  o MOBI Output: Fix bug that caused paragraphs that had only a non
+breaking space as text before the first child element to be removed.
+  o Display undefined dates properly in the Book details panel.
+  o Fix regression that broke deleting of books from first generation
+Kobos with un-upgraded firmware
+  o Get books: Fix Gutenberg store and improvements to chitanka.info and
+e-knigni.net
+  o News download: Support https proxies
+  o Check library did not know about original_* files
+  o Fix crash caused by having very large numbers of authors > 100 for a
+book
+
+---

calling whatdependson for head-i586


Old:

  calibre-0.8.12-nofonts.tar.bz2

New:

  calibre-0.8.13-nofonts.tar.bz2



Other differences:
--
++ calibre.spec ++
--- /var/tmp/diff_new_pack.nR0lvN/_old  2011-08-11 10:46:13.0 +0200
+++ /var/tmp/diff_new_pack.nR0lvN/_new  2011-08-11 10:46:13.0 +0200
@@ -19,7 +19,7 @@
 Summary:EBook Management Application
 
 Name:   calibre
-Version:0.8.12
+Version:0.8.13
 Release:1
 Url:http://calibre-ebook.com
 Group:  Productivity/Other

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







Remember to have fun...

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



commit ibus-table-others for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package ibus-table-others for 
openSUSE:Factory
checked in at Thu Aug 11 10:45:40 CEST 2011.




--- ibus-table-others/ibus-table-others.changes 2011-06-28 10:20:10.0 
+0200
+++ /mounts/work_src_done/STABLE/ibus-table-others/ibus-table-others.changes
2011-07-25 14:04:24.0 +0200
@@ -1,0 +2,5 @@
+Mon Jul 25 14:04:04 CEST 2011 - ti...@suse.de
+
+- Add locale-specific provides tags for automatic installation
+
+---

calling whatdependson for head-i586




Other differences:
--
++ ibus-table-others.spec ++
--- /var/tmp/diff_new_pack.7HljL8/_old  2011-08-11 10:44:23.0 +0200
+++ /var/tmp/diff_new_pack.7HljL8/_new  2011-08-11 10:44:23.0 +0200
@@ -20,7 +20,7 @@
 
 Name:   ibus-table-others
 Version:1.3.0.20100528
-Release:1
+Release:3
 Summary:Other non-Chinese tables for ibus
 Group:  System/Localization
 License:GPLv3
@@ -39,6 +39,7 @@
 
 %package -n ibus-table-latex
 
+
 Summary:Latex input method for IBus framework  
 Group:  System/Localization
 Requires:   ibus-table
@@ -49,6 +50,7 @@
 
 %package -n ibus-table-cns11643
 
+
 Summary:Cns11643 input method for IBus framework  
 Group:  System/Localization
 Requires:   ibus-table
@@ -59,6 +61,7 @@
 
 %package -n ibus-table-emoji
 
+
 Summary:Emoji input method for IBus framework  
 Group:  System/Localization
 Requires:   ibus-table
@@ -72,6 +75,7 @@
 
 Summary:Rustrad input method for IBus framework  
 Group:  System/Localization
+Provides:   locale(ibus:ru)
 Requires:   ibus-table
 
 %description -n ibus-table-rustrad
@@ -82,6 +86,7 @@
 
 Summary:Translit input method for IBus framework  
 Group:  System/Localization
+Provides:   locale(ibus:ru)
 Requires:   ibus-table
 
 %description -n ibus-table-translit
@@ -92,6 +97,7 @@
 
 Summary:Translit-ua input method for IBus framework  
 Group:  System/Localization
+Provides:   locale(ibus:uk)
 Requires:   ibus-table
 
 %description -n ibus-table-translit-ua
@@ -140,6 +146,7 @@
 
 Summary:The Viqr (Vietnamese) table for ibus-table  
 Group:  System/Localization
+Provides:   locale(ibus:vi)
 Requires:   ibus-table
 
 %description -n ibus-table-viqr






Remember to have fun...

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



commit kdedesktopcheck for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package kdedesktopcheck for openSUSE:Factory
checked in at Thu Aug 11 10:44:11 CEST 2011.




--- KDE/kdedesktopcheck/kdedesktopcheck.changes 2006-01-25 21:45:34.0 
+0100
+++ /mounts/work_src_done/STABLE/kdedesktopcheck/kdedesktopcheck.changes
2011-08-09 20:44:18.0 +0200
@@ -1,0 +2,8 @@
+Tue Aug  9 20:03:58 UTC 2011 - toddrme2...@gmail.com
+ 
+- Removed old commented command
+- Cleaned up spec file formatting
+- Removed contents of %changelog section.
+  The entries are already in the .changes file
+
+---

calling whatdependson for head-i586




Other differences:
--
++ kdedesktopcheck.spec ++
--- /var/tmp/diff_new_pack.zz72Bw/_old  2011-08-11 10:43:38.0 +0200
+++ /var/tmp/diff_new_pack.zz72Bw/_new  2011-08-11 10:43:38.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package kdedesktopcheck (Version 0.1)
+# spec file for package kdedesktopcheck
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,48 +15,39 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   kdedesktopcheck
-License:GPL v2 or later
-Group:  Development/Tools/Other
-AutoReqProv:on
 Version:0.1
-Release:134
+Release:145
+License:GPLv2+
 Summary:Perl Script for Integrity Checks on .desktop Files
 Url:http://linux.f-seidel.de
+Group:  Development/Tools/Other
 Source: %{name}-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
-#ExclusiveArch: %ix86
 
 %description
 This tool is intended for quality assurance of desktop files. It does
 many integrity checks on .desktop files, for example, whether icon and
 executable are defined and also installed on the system.
 
-
-
-Authors:
-
-Frank Seidel 
-
 %prep
-%setup
+%setup -q
 
 %build
 
 %install
-install -d $RPM_BUILD_ROOT/usr/bin
-install kdedesktopcheck.pl $RPM_BUILD_ROOT/usr/bin/
+install -d %{buildroot}%{_prefix}/bin
+install kdedesktopcheck.pl %{buildroot}%{_bindir}/
 
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -rf %{buildroot}
 
 %files
 %defattr(-,root,root)   
-/usr/bin/kdedesktopcheck.pl
 %doc README COPYING
+%{_bindir}/kdedesktopcheck.pl
 
 %changelog






Remember to have fun...

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



commit kio_sysinfo-branding-upstream for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package kio_sysinfo-branding-upstream for 
openSUSE:Factory
checked in at Thu Aug 11 10:19:58 CEST 2011.




--- KDE/kio_sysinfo-branding-upstream/kio_sysinfo-branding-upstream.changes 
2010-11-24 08:25:33.0 +0100
+++ 
/mounts/work_src_done/STABLE/kio_sysinfo-branding-upstream/kio_sysinfo-branding-upstream.changes
2011-08-09 20:41:05.0 +0200
@@ -1,0 +2,7 @@
+Tue Aug  9 20:03:58 UTC 2011 - toddrme2...@gmail.com
+ 
+- Added Url (fix for RPMLINT warning)
+- Fixed excessive folder ownership
+- Cleaned up spec file formatting
+
+---

calling whatdependson for head-i586




Other differences:
--
++ kio_sysinfo-branding-upstream.spec ++
--- /var/tmp/diff_new_pack.8adoNu/_old  2011-08-11 10:19:08.0 +0200
+++ /var/tmp/diff_new_pack.8adoNu/_new  2011-08-11 10:19:08.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package kio_sysinfo-branding-upstream (Version 11.4)
+# spec file for package kio_sysinfo-branding-upstream
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,25 +20,19 @@
 
 Name:   kio_sysinfo-branding-upstream
 License:GPLv2+
-%if 0%{?suse_version} >= 1120
 BuildRequires:  branding-upstream
-%endif
+BuildRequires:  kde4-filesystem
 Group:  System/GUI/KDE
 Summary:System Information KIO-Slave Branding
-PreReq: %fillup_prereq
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Version:11.4
-Release:1
+Release:7
 Source0:sysinfo.tar.bz2
 Source1:COPYING
 Requires:   kio_sysinfo
+Url:http://websvn.kde.org/trunk/playground/base/kio_sysinfo/
 Supplements:packageand(kio_sysinfo:branding-upstream)
-%if 0%{?suse_version} == 1120
-# 11.2 has it wrong
-Provides:   kio_sysinfo-branding = 11.2
-%else
 Provides:   kio_sysinfo-branding = %(rpm -q --queryformat %{VERSION} 
branding-upstream)
-%endif
 Conflicts:  otherproviders(kio_sysinfo-branding)
 BuildArch:  noarch
 # appeared last time in 11.1 
@@ -54,16 +48,15 @@
 %build
 
 %install
-  install -D -m644 %{SOURCE1} 
$RPM_BUILD_ROOT/usr/share/doc/packages/kio_sysinfo-branding-upstream/COPYING
-  mkdir -p $RPM_BUILD_ROOT/usr/share/kde4/apps/sysinfo
-  cd $RPM_BUILD_ROOT/usr/share/kde4/apps/sysinfo
+  install -D -m644 %{SOURCE1} 
%{buildroot}%{_docdir}/kio_sysinfo-branding-upstream/COPYING
+  mkdir -p %{buildroot}%{_kde4_appsdir}/sysinfo
+  cd %{buildroot}%{_kde4_appsdir}/sysinfo
   tar xfj %SOURCE0
-  rm -rf $RPM_BUILD_ROOT/usr/share/kde4/apps/sysinfo/about/CMakeLists.txt
+  rm -rf %{buildroot}%{_kde4_appsdir}/sysinfo/about/CMakeLists.txt
 
 %files
 %defattr(-,root,root)
-%dir /usr/share/doc/packages/kio_sysinfo-branding-upstream
-%doc /usr/share/doc/packages/kio_sysinfo-branding-upstream/COPYING
-/usr/share/kde4/
+%{_docdir}/kio_sysinfo-branding-upstream
+%{_kde4_appsdir}/sysinfo
 
 %changelog






Remember to have fun...

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



commit kiten for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package kiten for openSUSE:Factory
checked in at Thu Aug 11 10:19:00 CEST 2011.




--- kiten/kiten.changes 2011-07-22 20:24:39.0 +0200
+++ /mounts/work_src_done/STABLE/kiten/kiten.changes2011-08-09 
09:46:53.0 +0200
@@ -1,0 +2,5 @@
+Tue Aug  9 07:42:12 UTC 2011 - m...@suse.com
+
+- split development package for fix RPMLINT warning
+
+---

calling whatdependson for head-i586




Other differences:
--
++ kiten.spec ++
--- /var/tmp/diff_new_pack.Bk3SAW/_old  2011-08-11 10:17:59.0 +0200
+++ /var/tmp/diff_new_pack.Bk3SAW/_new  2011-08-11 10:17:59.0 +0200
@@ -48,7 +48,7 @@
 BuildRequires:  ocaml-facile
 %endif
 Version:4.7.0
-Release:1
+Release:2
 License:GPLv2+
 Summary:Japanese Reference/Study Tool
 Url:http://edu.kde.org
@@ -63,7 +63,18 @@
 %kde4_runtime_requires
 
 %description
-Kiten is a tool to learn Japanese
+Kiten is a tool to learn Japanese.
+
+%package devel
+License:GPLv2+
+Summary:Development files for kiten
+Group:  Development/Libraries/KDE
+Requires:   kiten = %{version}
+
+%description devel
+Kiten is a tool to learn Japanese.
+
+This package contains files for developing applications using kiten.
 
 %prep
 %setup -q -n %{name}-%{version}
@@ -96,8 +107,7 @@
 %_kde4_bindir/kiten
 %_kde4_bindir/kitengen
 %_kde4_bindir/kitenradselect
-%{_includedir}/libkiten/
-%_kde4_libdir/libkiten.so*
+%_kde4_libdir/libkiten.so.*
 %_kde4_applicationsdir/kiten.desktop
 %_kde4_htmldir/en/kiten/
 %_kde4_iconsdir/hicolor/*/apps/kiten.*
@@ -105,4 +115,9 @@
 %_kde4_appsdir/kitenradselect/
 %_kde4_sharedir/config.kcfg/kiten.kcfg
 
+%files devel
+%defattr(-,root,root)
+%_kde4_libdir/libkiten.so
+%{_includedir}/libkiten/
+
 %changelog






Remember to have fun...

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



commit monodevelop-java for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package monodevelop-java for openSUSE:Factory
checked in at Thu Aug 11 10:17:52 CEST 2011.




--- GNOME/monodevelop-java/monodevelop-java.changes 2010-10-29 
19:13:20.0 +0200
+++ /mounts/work_src_done/STABLE/monodevelop-java/monodevelop-java.changes  
2011-07-07 10:54:57.0 +0200
@@ -1,0 +2,5 @@
+Thu Jul  7 08:54:49 UTC 2011 - a...@suse.de
+
+- Add directory ownership
+
+---

calling whatdependson for head-i586




Other differences:
--
++ monodevelop-java.spec ++
--- /var/tmp/diff_new_pack.7bqB9O/_old  2011-08-11 10:17:20.0 +0200
+++ /var/tmp/diff_new_pack.7bqB9O/_new  2011-08-11 10:17:20.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package monodevelop-java (Version 2.4)
+# spec file for package monodevelop-java
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 
 Name:   monodevelop-java
 Version:2.4
-Release:1
+Release:6
 License:GPLv2+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 AutoReqProv:on
@@ -41,6 +41,8 @@
 %{_prefix}/lib/monodevelop/AddIns/JavaBinding/JavaBinding.dll*
 %dir %{_prefix}/lib/monodevelop/AddIns/JavaBinding
 %dir %{_prefix}/lib/monodevelop/AddIns/JavaBinding/locale
+%dir %{_prefix}/lib/monodevelop/AddIns/JavaBinding/locale/*
+%dir %{_prefix}/lib/monodevelop/AddIns/JavaBinding/locale/*/*
 
 %prep
 %setup -q






Remember to have fun...

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



commit oldstandard-fonts for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package oldstandard-fonts for 
openSUSE:Factory
checked in at Thu Aug 11 10:17:12 CEST 2011.




--- oldstandard-fonts/oldstandard-fonts.changes 2011-07-07 04:33:36.0 
+0200
+++ /mounts/work_src_done/STABLE/oldstandard-fonts/oldstandard-fonts.changes
2011-08-11 02:04:40.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug 10 23:56:22 UTC 2011 - lazy.k...@opensuse.org
+
+- Fixed provided locales
+
+---

calling whatdependson for head-i586




Other differences:
--
++ oldstandard-fonts.spec ++
--- /var/tmp/diff_new_pack.5oQpNa/_old  2011-08-11 10:16:52.0 +0200
+++ /var/tmp/diff_new_pack.5oQpNa/_new  2011-08-11 10:16:52.0 +0200
@@ -20,7 +20,7 @@
 
 Name:   oldstandard-fonts
 Version:2.2
-Release:3
+Release:5
 License:OFL-1.1
 Summary:Old Standard Font Family
 Url:http://thessalonica.org.ru/en/oldstandard.html
@@ -31,7 +31,6 @@
 Requires(pre):  %suseconfig_fonts_prereq
 BuildRequires:  unzip
 BuildRequires:  xorg-x11-devel
-Provides:   locale(el;ru)
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -54,9 +53,9 @@
 
 %package otf
 
-
 Summary:Old Standard Font Family (OpenType Format)
 Group:  System/X11/Fonts
+Provides:   locale(el;ru)
 
 %description otf
 Old Standard was intended as a multilingual font family suitable for
@@ -79,9 +78,9 @@
 
 %package ttf
 
-
 Summary:Old Standard Font Family (TrueType Format)
 Group:  System/X11/Fonts
+Provides:   locale(el;ru)
 
 %description ttf
 Old Standard was intended as a multilingual font family suitable for








Remember to have fun...

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



commit pam_mount for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package pam_mount for openSUSE:Factory
checked in at Thu Aug 11 10:16:43 CEST 2011.




--- pam_mount/pam_mount.changes 2011-04-15 18:35:46.0 +0200
+++ /mounts/work_src_done/STABLE/pam_mount/pam_mount.changes2011-08-10 
13:02:28.0 +0200
@@ -1,0 +2,19 @@
+Wed Aug 10 11:00:29 UTC 2011 - jeng...@medozas.de
+
+- Add commit 2f8daad from upstream - call umount.crypt directly
+  from pam_mount.so while mount.crypt is having no support for
+  utab (bnc#671276); also add commit eb20a26 for better wording of
+  this situation.
+
+---
+Sun Aug  7 00:09:17 UTC 2011 - jeng...@medozas.de
+
+- Update to new upstream release 2.11
+* Allow specifying CIFS/NCP/NFS s without a
+  "server" attribute (this allows AD integration via pam_winbind)
+* Added a handful of diagnostics to umount.crypt to determine
+  failure to find vfsmounts
+* Use /run directory for our variadic data
+* pmt-ehd: Exclusively create LUKS partitions from now on
+
+---

calling whatdependson for head-i586


Old:

  mount.encfs13
  pam_mount-2.10.tar.xz
  pam_mount-2.10.tar.xz.asc

New:

  2f8daad-call-umount-crypt-directly.diff
  eb20a26-utab-explain.diff
  pam_mount-2.11.tar.xz
  pam_mount-2.11.tar.xz.asc



Other differences:
--
++ pam_mount.spec ++
--- /var/tmp/diff_new_pack.QOHSf2/_old  2011-08-11 10:13:37.0 +0200
+++ /var/tmp/diff_new_pack.QOHSf2/_new  2011-08-11 10:13:37.0 +0200
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   pam_mount
@@ -27,7 +26,7 @@
 Requires:   device-mapper >= 1.02.48
 BuildRequires:  linux-kernel-headers >= 2.6
 Summary:A PAM Module that can Mount Volumes for a User Session
-Version:2.10
+Version:2.11
 Release:1
 # for fd0ssh and ofl:
 Suggests:   hxtools >= 20090116
@@ -38,13 +37,14 @@
 Group:  System/Libraries
 Source: %name-%version.tar.xz
 Source9:%name-%version.tar.xz.asc
-BuildRequires:  xz
+BuildRequires:  man xz
 Source1:convert_pam_mount_conf.pl
 Source2:convert_keyhash.pl
 Source3:mount.crypt
-Source4:mount.encfs13
 Source5:baselibs.conf
 Patch1: pam_mount-0.47-enable-logout-kill.dif
+Patch2: eb20a26-utab-explain.diff
+Patch3: 2f8daad-call-umount-crypt-directly.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://pam-mount.sf.net/
 Requires(post):coreutils, perl-XML-Writer, perl-XML-Parser
@@ -60,11 +60,13 @@
 mount call, such as encrypted volumes. This includes SMB/CIFS, FUSE,
 dm-crypt and LUKS.
 
-
+Author(s):
+--
+   Jan Engelhardt
 
 %prep
 %setup -q
-%patch1 -p1
+%patch -P 1 -P 2 -P 3 -p1
 
 %build
 %configure --with-slibdir=/%_lib %{?_with_selinux:--with-selinux}
@@ -81,15 +83,11 @@
 install -m 755 %SOURCE2 %buildroot/%_docdir/%name/examples/
 #
 # move /sbin/mount.crypt to %_sbindir/mount.crypt and put a wrapper script to 
/sbin/mount.crypt
-# The same for mount.encfs13
 #
 mkdir -p %buildroot%_sbindir/
 mv %buildroot/sbin/mount.crypt %buildroot%_sbindir/
-mv %buildroot/sbin/mount.encfs13 %buildroot%_sbindir/
 ln -s %_sbindir/mount.crypt %buildroot%_sbindir/umount.crypt
-ln -s %_sbindir/mount.encfs13 %buildroot%_sbindir/umount.encfs13
 install -m755 %SOURCE3 %buildroot/sbin/
-install -m755 %SOURCE4 %buildroot/sbin/
 
 %post
 if [ -e etc/security/pam_mount.conf ]
@@ -116,11 +114,8 @@
 /%_lib/security/pam_mount*.so
 /sbin/mount.crypt*
 /sbin/umount.crypt*
-/sbin/mount.encfs13
 %_sbindir/mount.crypt
 %_sbindir/umount.crypt
-%_sbindir/mount.encfs13
-%_sbindir/umount.encfs13
 %_sbindir/pmvarrun
 %_sbindir/pmt-ehd
 %config(noreplace) %_sysconfdir/security/pam_mount.conf.xml

++ 2f8daad-call-umount-crypt-directly.diff ++
parent eb20a2681362520a9728038a9ff3bdbba58eb1cb (v2.11-1-geb20a26)
commit 2f8daad6ee71bade802f78e5072410e46bfd74c1
Author: Jan Engelhardt 
Date:   Wed Aug 10 12:48:49 2011 +0200

config: default to calling umount.crypt directly

As long as utab (no mtab or ro mtab) is not supported, at least try to
get the user's volumes unmounted on logout.
---
 doc/changelog.txt |1 +
 src/rdconf1.c |2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/doc/changelog.txt b/doc/changelog.txt
index d14828f..d99e52f 100644
--- a/doc/changelog.txt
+++ b/doc/changelog.txt
@@ -3,6 +3,7 @@ For details, see the history as recorded in the git repository.
 
 HEAD
 
+config: default to calling umount.crypt directly
 
 
 v2.11 (2011-08-07)
diff --git a/src/rdconf1.c b/src/rdconf1.c
index 37b465c..e64df06 100644
--- a/src/rdconf1.c
+++ b/src/rdconf1.c
@@ -1367,7 +1367,7 @@ static const struct pmt_command def

commit rng-tools for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package rng-tools for openSUSE:Factory
checked in at Thu Aug 11 10:13:21 CEST 2011.




--- rng-tools/rng-tools.changes 2011-03-09 14:18:20.0 +0100
+++ /mounts/work_src_done/STABLE/rng-tools/rng-tools.changes2011-08-10 
06:43:47.0 +0200
@@ -1,0 +2,8 @@
+Wed Aug 10 04:40:10 UTC 2011 - crrodrig...@opensuse.org
+
+- Work around VIA Nano xstore bug
+- Add support for Linux 3.0
+- Enable large file support
+- Enable VIA PadLock support on x86_64
+
+---

calling whatdependson for head-i586


Old:

  rng-tools_2-unofficial-mt.12-1ubuntu3.diff.gz
  rng-tools_2-unofficial-mt.12.orig.tar.bz2

New:

  rng-tools_2-unofficial-mt.14.orig.tar.bz2



Other differences:
--
++ rng-tools.spec ++
--- /var/tmp/diff_new_pack.q0fm0b/_old  2011-08-11 10:12:35.0 +0200
+++ /var/tmp/diff_new_pack.q0fm0b/_new  2011-08-11 10:12:35.0 +0200
@@ -25,11 +25,10 @@
 ExclusiveArch:  %ix86 ia64 x86_64
 Summary:Support daemon for hardware random device
 Version:2
-Release:151
+Release:152
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://sourceforge.net/projects/gkernel/
-Source: rng-tools_2-unofficial-mt.12.orig.tar.bz2 
-Patch:  rng-tools_2-unofficial-mt.12-1ubuntu3.diff.gz
+Source: rng-tools_2-unofficial-mt.14.orig.tar.bz2 
 Source1:%name.init
 PreReq: %fillup_prereq
 Supplements:modalias(pci:v1022d746Bsv*sd*bc*sc*i*)
@@ -85,11 +84,11 @@
 Matt Sottek
 
 %prep
-%setup -q -n rng-tools-2-unofficial-mt.11
-%patch -p1
+%setup -q -n rng-tools-2-unofficial-mt.14
 
 %build
 autoreconf --force --install
+export CFLAGS="%optflags -pthread"
 %configure
 make
 
@@ -106,7 +105,6 @@
 
 %preun
 %stop_on_removal rng-tools
-true   # ignore errors
 
 %postun
 %restart_on_update rng-tools

++ rng-tools_2-unofficial-mt.12.orig.tar.bz2 -> 
rng-tools_2-unofficial-mt.14.orig.tar.bz2 ++
 12359 lines of diff (skipped)






Remember to have fun...

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



commit rocs for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package rocs for openSUSE:Factory
checked in at Thu Aug 11 10:12:28 CEST 2011.




--- rocs/rocs.changes   2011-07-22 20:31:18.0 +0200
+++ /mounts/work_src_done/STABLE/rocs/rocs.changes  2011-08-09 
09:47:16.0 +0200
@@ -1,0 +2,7 @@
+Tue Aug  9 06:53:49 UTC 2011 - m...@suse.com
+
+- Fixed Group for devel package (fix for RPMLINT warning)
+- Add version of the dependency requirement for devel package
+  (fix for RPMLINT warning)
+
+---

calling whatdependson for head-i586




Other differences:
--
++ rocs.spec ++
--- /var/tmp/diff_new_pack.SsRV8a/_old  2011-08-11 10:12:12.0 +0200
+++ /var/tmp/diff_new_pack.SsRV8a/_new  2011-08-11 10:12:12.0 +0200
@@ -48,7 +48,7 @@
 BuildRequires:  ocaml-facile
 %endif
 Version:4.7.0
-Release:1
+Release:2
 License:GPLv2+
 Summary:Graph Theory IDE for professors and students
 Url:http://edu.kde.org
@@ -91,9 +91,9 @@
 
 %package devel
 License:GPLv2+
-Summary:Graph Theory IDE for professors and students:
-Group:  Amusements/Teaching/Mathematics
-Requires:   rocs
+Summary:Graph Theory IDE for professors and students
+Group:  Development/Libraries/KDE
+Requires:   rocs = %{version}
 
 %description devel
 A Graph Theory IDE for professors and students:






Remember to have fun...

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



commit theano-fonts for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package theano-fonts for openSUSE:Factory
checked in at Thu Aug 11 10:12:04 CEST 2011.





calling whatdependson for head-i586




Other differences:
--
++ theano-fonts.spec ++
--- /var/tmp/diff_new_pack.BIcQdB/_old  2011-08-11 10:11:46.0 +0200
+++ /var/tmp/diff_new_pack.BIcQdB/_new  2011-08-11 10:11:46.0 +0200
@@ -20,7 +20,7 @@
 
 Name:   theano-fonts
 Version:2.0
-Release:3
+Release:5
 License:OFL-1.1
 Summary:Theano Classical Fonts
 Url:http://www.thessalonica.org.ru/en/theano.html
@@ -31,7 +31,6 @@
 Requires(pre):  %suseconfig_fonts_prereq
 BuildRequires:  unzip
 BuildRequires:  xorg-x11-devel
-Provides:   locale(el;ru)
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -69,9 +68,9 @@
 
 %package otf
 
-
 Summary:Theano Classical Fonts (OpenType Format)
 Group:  System/X11/Fonts
+Provides:   locale(el;ru)
 
 %description otf
 Theano Classical Fonts include three fonts listed below. Each font is
@@ -109,9 +108,9 @@
 
 %package ttf
 
-
 Summary:Theano Classical Fonts (TrueType Format)
 Group:  System/X11/Fonts
+Provides:   locale(el;ru)
 
 %description ttf
 Theano Classical Fonts include three fonts listed below. Each font is








Remember to have fun...

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



commit filesystem for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package filesystem for openSUSE:Factory
checked in at Thu Aug 11 10:10:56 CEST 2011.




--- filesystem/filesystem.changes   2011-07-25 20:56:06.0 +0200
+++ /mounts/work_src_done/STABLE/filesystem/filesystem.changes  2011-08-04 
11:57:10.0 +0200
@@ -1,0 +2,5 @@
+Thu Aug  4 09:56:31 UTC 2011 - lnus...@suse.de
+
+- remove /var/lock/subsys as /var/lock is on tmpfs now
+
+---

calling whatdependson for head-i586




Other differences:
--
++ filesystem.spec ++
--- /var/tmp/diff_new_pack.946IXh/_old  2011-08-11 10:10:43.0 +0200
+++ /var/tmp/diff_new_pack.946IXh/_new  2011-08-11 10:10:43.0 +0200
@@ -24,7 +24,7 @@
 AutoReqProv:on
 Summary:Basic Directory Layout
 Version:12.1
-Release:1
+Release:23
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Obsoletes:  aaa_dir
 Provides:   aaa_dir

++ directory.list ++
--- /var/tmp/diff_new_pack.946IXh/_old  2011-08-11 10:10:43.0 +0200
+++ /var/tmp/diff_new_pack.946IXh/_new  2011-08-11 10:10:44.0 +0200
@@ -181,7 +181,6 @@
 0700 root root /var/lib/pam_devperm
 0755 wwwrun root /var/lib/wwwrun
 1775 root lock /var/lock
-0755 root root /var/lock/subsys
 0755 root root /var/run
 0755 root root /var/spool
 0755 lp lp /var/spool/lpd






Remember to have fun...

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



commit kdebase4-openSUSE for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package kdebase4-openSUSE for 
openSUSE:Factory
checked in at Thu Aug 11 10:10:36 CEST 2011.




--- KDE/kdebase4-openSUSE/kdebase4-openSUSE.changes 2011-07-21 
14:22:45.0 +0200
+++ /mounts/work_src_done/STABLE/kdebase4-openSUSE/kdebase4-openSUSE.changes
2011-08-10 23:32:10.0 +0200
@@ -1,0 +2,6 @@
+Wed Aug 10 23:31:46 CEST 2011 - dmuel...@suse.de
+
+- fix search provider link
+- include updated translations
+
+---

calling whatdependson for head-i586




Other differences:
--
++ kdebase4-openSUSE.spec ++
--- /var/tmp/diff_new_pack.4BmUyr/_old  2011-08-11 10:10:16.0 +0200
+++ /var/tmp/diff_new_pack.4BmUyr/_new  2011-08-11 10:10:16.0 +0200
@@ -32,7 +32,7 @@
 
 Name:   kdebase4-openSUSE
 Version:%{_version}
-Release:13
+Release:14
 License:GPLv2+
 Summary:openSUSE KDE Extension
 Group:  System/GUI/KDE

++ kdebase4-openSUSE-12.1.tar.bz2 ++
 4470 lines of diff (skipped)






Remember to have fun...

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



commit virtualbox for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package virtualbox for openSUSE:Factory
checked in at Thu Aug 11 10:10:02 CEST 2011.




--- virtualbox/virtualbox.changes   2011-07-21 12:54:25.0 +0200
+++ /mounts/work_src_done/STABLE/virtualbox/virtualbox.changes  2011-08-09 
14:41:27.0 +0200
@@ -1,0 +2,5 @@
+Tue Aug  9 12:37:27 UTC 2011 - mse...@gmail.com
+
+- modified usb udev rule in virtualbox-60-vboxdrv.rules (thanks to Dirk O. 
Kaar)
+
+---

calling whatdependson for head-i586




Other differences:
--
++ virtualbox.spec ++
--- /var/tmp/diff_new_pack.Qt3vDJ/_old  2011-08-11 10:09:42.0 +0200
+++ /var/tmp/diff_new_pack.Qt3vDJ/_new  2011-08-11 10:09:42.0 +0200
@@ -54,7 +54,7 @@
 #
 ExclusiveArch:  %ix86 x86_64
 Version:4.1.0
-Release:1
+Release:3
 Summary:VirtualBox is an Emulator
 License:GPLv2+
 Group:  System/Emulators/PC

++ virtualbox-60-vboxdrv.rules ++
--- /var/tmp/diff_new_pack.Qt3vDJ/_old  2011-08-11 10:09:44.0 +0200
+++ /var/tmp/diff_new_pack.Qt3vDJ/_new  2011-08-11 10:09:44.0 +0200
@@ -1,5 +1,5 @@
 KERNEL=="vboxdrv", NAME="vboxdrv", OWNER="root", GROUP="root", MODE="0600"
 #these two lines give access permission to vboxusers to properly work with usb 
nodes, this could be security risk (bnc#664520) !!
-#SUBSYSTEM=="usb_device", ATTR{devnum}=="?*", 
ATTR{busnum}=="?*",NAME="vboxusb/$attr{busnum}/$attr{devnum}", GROUP="vboxusers"
-#SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", ATTR{devnum}=="?*", 
ATTR{busnum}=="?*",NAME="vboxusb/$attr{busnum}/$attr{devnum}", GROUP="vboxusers"
+#SUBSYSTEM=="usb_device", ATTR{devnum}=="?*", 
ATTR{busnum}=="?*",SYMLINK+="vboxusb/$attr{busnum}/$attr{devnum}", 
GROUP="vboxusers"
+#SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", ATTR{devnum}=="?*", 
ATTR{busnum}=="?*",SYMLINK="vboxusb/$attr{busnum}/$attr{devnum}", 
GROUP="vboxusers"
 






Remember to have fun...

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



commit libHX for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package libHX for openSUSE:Factory
checked in at Thu Aug 11 10:09:25 CEST 2011.




--- libHX/libHX.changes 2011-07-25 14:14:32.0 +0200
+++ /mounts/work_src_done/STABLE/libHX/libHX.changes2011-08-10 
12:38:22.0 +0200
@@ -1,0 +2,6 @@
+Wed Aug 10 10:26:37 UTC 2011 - jeng...@medozas.de
+
+- Remove pkgincludedir.diff and instead just use --includedir
+  to %configure
+
+---

calling whatdependson for head-i586


Old:

  pkgincludedir.diff



Other differences:
--
++ libHX.spec ++
--- /var/tmp/diff_new_pack.kyGAju/_old  2011-08-11 10:08:56.0 +0200
+++ /var/tmp/diff_new_pack.kyGAju/_new  2011-08-11 10:08:56.0 +0200
@@ -22,13 +22,12 @@
 %define lname   libHX27
 Summary:Useful collection of routines for C and C++ programming
 Version:3.11
-Release:1
+Release:3
 License:LGPL v2+
 Group:  System/Libraries
 Source: http://downloads.sf.net/libhx/libHX-%version.tar.xz
 Source3:http://downloads.sf.net/libhx/libHX-%version.tar.xz.asc
 Source2:baselibs.conf
-Patch1: pkgincludedir.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  gcc-c++ pkg-config xz
 %define debug_package_requires %lname = %version-%release
@@ -54,7 +53,6 @@
 
 %package -n %lname
 
-
 License:LGPL v2+
 Summary:Useful collection of routines for C and C++ programming
 Group:  System/Libraries
@@ -103,11 +101,10 @@
 
 %prep
 %setup -q
-%patch -P 1 -p1
 
 %build
 ./autogen.sh
-%configure
+%configure --includedir=%_includedir/%name-%version
 make %{?_smp_mflags}
 
 %install








Remember to have fun...

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



commit gkeyfile-sharp for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package gkeyfile-sharp for openSUSE:Factory
checked in at Thu Aug 11 10:08:47 CEST 2011.




--- GNOME/gkeyfile-sharp/gkeyfile-sharp.changes 2010-11-11 23:17:16.0 
+0100
+++ /mounts/work_src_done/STABLE/gkeyfile-sharp/gkeyfile-sharp.changes  
2011-08-02 13:26:06.0 +0200
@@ -1,0 +2,5 @@
+Tue Aug  2 11:26:02 UTC 2011 - a...@suse.de
+
+- Fix filelist.
+
+---

calling whatdependson for head-i586




Other differences:
--
++ gkeyfile-sharp.spec ++
--- /var/tmp/diff_new_pack.VPtk0L/_old  2011-08-11 10:08:37.0 +0200
+++ /var/tmp/diff_new_pack.VPtk0L/_new  2011-08-11 10:08:37.0 +0200
@@ -20,7 +20,7 @@
 
 Name:   gkeyfile-sharp
 Version:0.2
-Release:1
+Release:6
 License:LGPLv2.1
 Group:  Development/Languages/Mono
 Summary:.NET/C# Bindings for GKeyFile
@@ -70,7 +70,7 @@
 %{_prefix}/lib/mono/gkeyfile-sharp/*.dll*
 %dir %{_prefix}/lib/mono/gac/gkeyfile-sharp/
 %dir %{_prefix}/lib/mono/gac/gkeyfile-sharp/*
-%dir %{_prefix}/lib/mono/gac/gkeyfile-sharp/*/gkeyfile-sharp.dll*
+%{_prefix}/lib/mono/gac/gkeyfile-sharp/*/gkeyfile-sharp.dll*
 
 %files devel
 %defattr(-,root,root)






Remember to have fun...

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



commit grep for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package grep for openSUSE:Factory
checked in at Thu Aug 11 10:08:28 CEST 2011.




--- grep/grep.changes   2010-09-24 14:51:56.0 +0200
+++ /mounts/work_src_done/STABLE/grep/grep.changes  2011-08-10 
05:20:41.0 +0200
@@ -1,0 +2,8 @@
+Wed Aug 10 03:17:41 UTC 2011 - crrodrig...@opensuse.org
+
+- Upgrade to version 2.9 
+* grep no longer clobbers heap for an ERE like '(^| )*( |$)'' )'
+* grep -P no longer aborts when PCRE's backtracking limit is exceeded
+* grep's interpretation of range expression is now more consistent
+
+---

calling whatdependson for head-i586


Old:

  grep-2.7.tar.bz2

New:

  grep-2.9.tar.bz2



Other differences:
--
++ grep.spec ++
--- /var/tmp/diff_new_pack.fsZjUi/_old  2011-08-11 10:07:36.0 +0200
+++ /var/tmp/diff_new_pack.fsZjUi/_new  2011-08-11 10:07:36.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package grep (Version 2.7)
+# spec file for package grep
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -28,8 +28,8 @@
 Provides:   base:/usr/bin/grep
 AutoReqProv:on
 PreReq: %{install_info_prereq}
-Version:2.7
-Release:2
+Version:2.9
+Release:1
 Summary:Print lines matching a pattern
 Source: grep-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -47,10 +47,10 @@
 
 %build
 %if 0%{?suse_version} < 1120
-%configure -C --bindir=/bin --without-included-regex
+%configure -C --bindir=/bin --disable-silent-rules --without-included-regex
 %else
 AUTOPOINT=true autoreconf --force --install
-%configure --bindir=/bin --without-included-regex
+%configure --disable-silent-rules --bindir=/bin --without-included-regex
 %endif
 %{__make} %{?_smp_mflags}
 
@@ -76,7 +76,7 @@
 %doc README AUTHORS NEWS THANKS TODO
 /bin/*
 /usr/bin/*
-%doc %{_mandir}/man1/*.gz
-%doc %{_infodir}/*.gz
+%{_mandir}/man1/*.gz
+%{_infodir}/*.gz
 
 %changelog

++ grep-2.7.tar.bz2 -> grep-2.9.tar.bz2 ++
 111361 lines of diff (skipped)






Remember to have fun...

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



commit gudev-sharp for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package gudev-sharp for openSUSE:Factory
checked in at Thu Aug 11 10:07:27 CEST 2011.




--- gudev-sharp/gudev-sharp.changes 2010-11-11 23:30:49.0 +0100
+++ /mounts/work_src_done/STABLE/gudev-sharp/gudev-sharp.changes
2011-08-02 13:26:15.0 +0200
@@ -1,0 +2,5 @@
+Tue Aug  2 11:26:12 UTC 2011 - a...@suse.de
+
+- Fix filelist.
+
+---

calling whatdependson for head-i586




Other differences:
--
++ gudev-sharp.spec ++
--- /var/tmp/diff_new_pack.zbkCKU/_old  2011-08-11 10:06:57.0 +0200
+++ /var/tmp/diff_new_pack.zbkCKU/_new  2011-08-11 10:06:57.0 +0200
@@ -20,7 +20,7 @@
 
 Name:   gudev-sharp
 Version:0.2
-Release:1
+Release:6
 License:LGPLv2.1
 Group:  Development/Languages/Mono
 Summary:.NET/C# Bindings for GUDev
@@ -74,7 +74,7 @@
 %{_prefix}/lib/mono/gudev-sharp-1.0/*.dll*
 %dir %{_prefix}/lib/mono/gac/gudev-sharp/
 %dir %{_prefix}/lib/mono/gac/gudev-sharp/*
-%dir %{_prefix}/lib/mono/gac/gudev-sharp/*/gudev-sharp.dll*
+%{_prefix}/lib/mono/gac/gudev-sharp/*/gudev-sharp.dll*
 
 %files devel
 %defattr(-,root,root)






Remember to have fun...

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



commit libtunepimp for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package libtunepimp for openSUSE:Factory
checked in at Thu Aug 11 10:06:50 CEST 2011.




--- libtunepimp/libtunepimp.changes 2011-05-02 02:40:35.0 +0200
+++ /mounts/work_src_done/STABLE/libtunepimp/libtunepimp.changes
2011-08-08 19:06:19.0 +0200
@@ -1,0 +2,5 @@
+Mon Aug  8 17:05:35 UTC 2011 - crrodrig...@opensuse.org
+
+- Fix build with newer curl 
+
+---

calling whatdependson for head-i586




Other differences:
--
++ libtunepimp.spec ++
--- /var/tmp/diff_new_pack.YvSEUq/_old  2011-08-11 10:06:33.0 +0200
+++ /var/tmp/diff_new_pack.YvSEUq/_new  2011-08-11 10:06:33.0 +0200
@@ -38,7 +38,7 @@
 License:LGPL v2.1 or later
 Group:  System/Libraries
 Version:0.5.3
-Release:150
+Release:152
 # Package name for 9.1 and SLES9:
 Provides:   trm
 Obsoletes:  trm < %{version}
@@ -170,7 +170,7 @@
 
 %prep
 %setup -q
-%patch -p1
+%patch
 %patch1
 
 %build

++ libtunepimp-fixes.patch ++
--- /var/tmp/diff_new_pack.YvSEUq/_old  2011-08-11 10:06:33.0 +0200
+++ /var/tmp/diff_new_pack.YvSEUq/_new  2011-08-11 10:06:33.0 +0200
@@ -1,7 +1,5 @@
-Index: libtunepimp-0.5.3/lib/utf8/utf8util.cpp
-===
 libtunepimp-0.5.3.orig/lib/utf8/utf8util.cpp
-+++ libtunepimp-0.5.3/lib/utf8/utf8util.cpp
+--- lib/utf8/utf8util.cpp.orig
 lib/utf8/utf8util.cpp
 @@ -26,6 +26,7 @@
  */
  
@@ -10,10 +8,8 @@
  #include "utf8util.h"
  #include "utf8.h"
  #ifdef WIN32
-Index: libtunepimp-0.5.3/include/tunepimp-0.5/metadata.h
-===
 libtunepimp-0.5.3.orig/include/tunepimp-0.5/metadata.h
-+++ libtunepimp-0.5.3/include/tunepimp-0.5/metadata.h
+--- include/tunepimp-0.5/metadata.h.orig
 include/tunepimp-0.5/metadata.h
 @@ -28,6 +28,7 @@
  #define __METADATA_H__
  
@@ -22,10 +18,8 @@
  #include 
  
  #include "defs.h"
-Index: libtunepimp-0.5.3/lib/metadata.cpp
-===
 libtunepimp-0.5.3.orig/lib/metadata.cpp
-+++ libtunepimp-0.5.3/lib/metadata.cpp
+--- lib/metadata.cpp.orig
 lib/metadata.cpp
 @@ -25,6 +25,7 @@
  
  */
@@ -34,11 +28,9 @@
  #include 
  #include "metadata.h"
  #include "../config.h"
-Index: libtunepimp-0.5.3/lib/protocol.cpp
-===
 libtunepimp-0.5.3.orig/lib/protocol.cpp
-+++ libtunepimp-0.5.3/lib/protocol.cpp
-@@ -9,6 +9,7 @@
+--- lib/protocol.cpp.orig
 lib/protocol.cpp
+@@ -9,10 +9,13 @@
  #include 
  #include 
  #include 
@@ -46,10 +38,14 @@
  #include 
  #include 
  #include 
-Index: libtunepimp-0.5.3/lib/tunepimp.cpp
-===
 libtunepimp-0.5.3.orig/lib/tunepimp.cpp
-+++ libtunepimp-0.5.3/lib/tunepimp.cpp
++#ifdef HAVE_CURL_TYPES_H
+ #include 
++#endif
+ #include 
+ using namespace std;
+ 
+--- lib/tunepimp.cpp.orig
 lib/tunepimp.cpp
 @@ -32,6 +32,7 @@
  
  #include 
@@ -58,10 +54,8 @@
  using namespace std;
  
  #ifdef WIN32
-Index: libtunepimp-0.5.3/lib/c_wrapper.cpp
-===
 libtunepimp-0.5.3.orig/lib/c_wrapper.cpp
-+++ libtunepimp-0.5.3/lib/c_wrapper.cpp
+--- lib/c_wrapper.cpp.orig
 lib/c_wrapper.cpp
 @@ -28,6 +28,7 @@
  #include "mutex.h"
  #include "tp_c.h"
@@ -70,10 +64,8 @@
  
  #define DB printf("%s:%d\n", __FILE__, __LINE__);
  
-Index: libtunepimp-0.5.3/lib/readmeta.cpp
-===
 libtunepimp-0.5.3.orig/lib/readmeta.cpp
-+++ libtunepimp-0.5.3/lib/readmeta.cpp
+--- lib/readmeta.cpp.orig
 lib/readmeta.cpp
 @@ -31,6 +31,7 @@
  #endif
  
@@ -82,10 +74,8 @@
  #ifndef WIN32
  #include 
  #endif
-Index: libtunepimp-0.5.3/lib/fileio.cpp
-===
 libtunepimp-0.5.3.orig/lib/fileio.cpp
-+++ libtunepimp-0.5.3/lib/fileio.cpp
+--- lib/fileio.cpp.orig
 lib/fileio.cpp
 @@ -28,6 +28,8 @@
  #include 
  #include 
@@ -107,10 +97,8 @@
  ptr = strrchr(path, dirSepChar);
  if (ptr)
  {
-Index: libtunepimp-0.5.3/plugins/wma/wmafile.cpp
-===
 libtunepimp-0.5.3.orig/plugins/wma/wmafile.cpp
-+++ libtunepimp-0.5.3/plugins/wma/wmafile.cpp
+--- plugins/wma/wmafile.cpp.orig
 plugins/wma/wmafile.cpp
 @@ -20,6 +20,7 @@
   ***/
  
@@ -119,10 +107,8 @@
  #include 
  #include 
  #include 

commit quvi for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package quvi for openSUSE:Factory
checked in at Thu Aug 11 10:06:24 CEST 2011.




--- quvi/quvi.changes   2011-05-31 10:43:00.0 +0200
+++ /mounts/work_src_done/STABLE/quvi/quvi.changes  2011-08-09 
12:59:17.0 +0200
@@ -1,0 +2,10 @@
+Tue Aug  9 10:57:33 UTC 2011 - d...@opensuse.org
+
+- fixed soname in .spec (warnings: TODO)
+
+---
+Sun Aug  7 18:25:18 UTC 2011 - d...@opensuse.org
+
+- upstream update to 0.2.19 (YT has changed API once again)
+
+---

calling whatdependson for head-i586


Old:

  quvi-0.2.16.tar.bz2

New:

  quvi-0.2.19.tar.bz2



Other differences:
--
++ quvi.spec ++
--- /var/tmp/diff_new_pack.KjCKb5/_old  2011-08-11 10:05:55.0 +0200
+++ /var/tmp/diff_new_pack.KjCKb5/_new  2011-08-11 10:05:55.0 +0200
@@ -17,10 +17,10 @@
 
 # norootforbuild
 
-%define soname 0
+%define soname 6
 
 Name:   quvi
-Version:0.2.16
+Version:0.2.19
 Release:1
 Summary:Parsing video downloads links for Youtube and others
 Group:  Productivity/Multimedia/Other
@@ -39,6 +39,7 @@
 
 %package -n libquvi%{soname}
 
+
 Summary:Parsing video downloads links for Youtube and others
 Group:  Development/Libraries/C and C++
 
@@ -48,6 +49,7 @@
 
 %package -n libquvi-devel
 
+
 Summary:Parsing video downloads links for Youtube and others
 Group:  Development/Libraries/C and C++
 Requires:   libquvi%{soname} = %{version}-%{release}
@@ -98,6 +100,5 @@
 %{_includedir}/%{name}/
 %{_libdir}/*.so
 %{_libdir}/pkgconfig/*.pc
-%{_datadir}/doc/%{name}/
 
 %changelog

++ quvi-0.2.16.tar.bz2 -> quvi-0.2.19.tar.bz2 ++
 36901 lines of diff (skipped)






Remember to have fun...

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



commit mdadm for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package mdadm for openSUSE:Factory
checked in at Thu Aug 11 10:05:45 CEST 2011.




--- mdadm/mdadm.changes 2011-06-14 08:08:58.0 +0200
+++ /mounts/work_src_done/STABLE/mdadm/mdadm.changes2011-08-10 
04:55:26.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug 10 02:54:57 UTC 2011 - crrodrig...@opensuse.org
+
+- Do not use -fno-strict-aliasing when not needed 
+
+---

calling whatdependson for head-i586




Other differences:
--
++ mdadm.spec ++
--- /var/tmp/diff_new_pack.EbEPyt/_old  2011-08-11 09:58:39.0 +0200
+++ /var/tmp/diff_new_pack.EbEPyt/_new  2011-08-11 09:58:39.0 +0200
@@ -20,7 +20,7 @@
 
 Name:   mdadm
 Version:3.1.4
-Release:17
+Release:21
 BuildRequires:  sgmltool
 PreReq: %fillup_prereq %insserv_prereq
 Obsoletes:  raidtools
@@ -58,7 +58,7 @@
 
 %build
 %{suse_update_config -f}
-make %{?_smp_mflags} CXFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing -Wno-error"
+make %{?_smp_mflags} CXFLAGS="$RPM_OPT_FLAGS -Wno-error"
 cd Software-RAID.HOWTO
 sgml2html Software-RAID.HOWTO.sgml
 sgml2txt Software-RAID.HOWTO.sgml






Remember to have fun...

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



commit libmodplug for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package libmodplug for openSUSE:Factory
checked in at Thu Aug 11 09:58:31 CEST 2011.




--- libmodplug/libmodplug.changes   2011-05-25 16:29:02.0 +0200
+++ /mounts/work_src_done/STABLE/libmodplug/libmodplug.changes  2011-08-08 
20:47:12.0 +0200
@@ -1,0 +2,13 @@
+Mon Aug  8 20:08:13 CEST 2011 - sbra...@suse.cz
+
+- Update to version 0.8.8.4 (bnc#710726):
+  * Improve timidity.cfg parsing capability
+  * Add source command capability in timidity.cfg
+(useful for debian default)
+  * Fix integer overflow in WAV reader (SA45131/A)
+  * Fix S3M stack overflow possibility (SA45131/B)
+  * Bound seeking and reading in PAT files
+  * Fix AMS/AMSv2 and DSM too large by one (SA45131/C)
+  * Use bmpvalues in Octamed files when calcuting default tempo
+
+---
@@ -5,0 +19,4 @@
+  * Improve compatibility with MSVC 2010
+  * Improve PTM playback (Fix byteswapping)
+  * Improve S3M support (ignore corrupted data, bnc#686624)
+  * Improve AMF support (bounds checking)

calling whatdependson for head-i586


Old:

  _service:recompress:download_url:libmodplug-0.8.8.3.tar.bz2

New:

  _service:recompress:download_url:libmodplug-0.8.8.4.tar.bz2



Other differences:
--
++ _service:set_version:libmodplug.spec ++
--- /var/tmp/diff_new_pack.jfSHV5/_old  2011-08-11 09:57:34.0 +0200
+++ /var/tmp/diff_new_pack.jfSHV5/_new  2011-08-11 09:57:34.0 +0200
@@ -20,7 +20,7 @@
 
 Name:   libmodplug
 Summary:A MOD playing library
-Version: 0.8.8.3
+Version: 0.8.8.4
 Release: 0
 Group:  System/Libraries
 License:Public Domain

++ libmodplug.spec ++
--- /var/tmp/diff_new_pack.jfSHV5/_old  2011-08-11 09:57:34.0 +0200
+++ /var/tmp/diff_new_pack.jfSHV5/_new  2011-08-11 09:57:34.0 +0200
@@ -21,7 +21,7 @@
 Name:   libmodplug
 Summary:A MOD playing library
 Version:to_be_filled_by_service
-Release:4
+Release:5
 Group:  System/Libraries
 License:Public Domain
 Url:http://modplug-xmms.sourceforge.net

++ _service ++
--- /var/tmp/diff_new_pack.jfSHV5/_old  2011-08-11 09:57:34.0 +0200
+++ /var/tmp/diff_new_pack.jfSHV5/_new  2011-08-11 09:57:34.0 +0200
@@ -3,12 +3,12 @@
   
 http
 downloads.sourceforge.net
-/project/modplug-xmms/libmodplug/0.8.8.3/libmodplug-0.8.8.3.tar.gz
+/project/modplug-xmms/libmodplug/0.8.8.4/libmodplug-0.8.8.4.tar.gz
   
   
-_service:download_url:libmodplug-0.8.8.3.tar.gz
+_service:download_url:libmodplug-0.8.8.4.tar.gz
 sha256
-0d52a259e85c4f50491d66128d7c476bc67a44d3930b965014954289c0c3f4a5
+5c5ee13dddbed144be26276e5f102da17ff5b1c992f3100389983082da2264f7
   
   
 *.gz

++ _service:recompress:download_url:libmodplug-0.8.8.3.tar.bz2 -> 
_service:recompress:download_url:libmodplug-0.8.8.4.tar.bz2 ++
 12863 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/libmodplug-0.8.8.3/INSTALL new/libmodplug-0.8.8.4/INSTALL
--- old/libmodplug-0.8.8.3/INSTALL  2009-05-10 05:05:27.0 +0200
+++ new/libmodplug-0.8.8.4/INSTALL  2011-07-17 14:52:38.0 +0200
@@ -1,3 +1,365 @@
-(1) ./configure
-(2) make
-(3) su -c "make install"
+Installation Instructions
+*
+
+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
+notice and this notice are preserved.  This file is offered as-is,
+without warranty of any kind.
+
+Basic Installation
+==
+
+   Briefly, the shell commands `./configure; make; make install' should
+configure, build, and install this package.  The following
+more-detailed instructions are generic; see the `README' file for
+instructions specific to this package.  Some packages provide this
+`INSTALL' file but do not implement all of the features documented
+below.  The lack of an optional feature in a given package is not
+necessarily a bug.  More recommendations for GNU packages can be found
+in *note Makefile Conventions: (standards)Makefile Conventions.
+
+   The `configure' shell script attempts to guess correct values for
+various system-dependent variables used during compilation.  It uses
+those values to create a `Makefile' in each directory of the package.
+It may also create one or m

commit libqt4 for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package libqt4 for openSUSE:Factory
checked in at Thu Aug 11 09:57:18 CEST 2011.




libqt4-sql-plugins.changes: same change
--- libqt4/libqt4.changes   2011-07-09 10:25:27.0 +0200
+++ /mounts/work_src_done/STABLE/libqt4/libqt4.changes  2011-08-09 
15:53:05.0 +0200
@@ -1,0 +2,5 @@
+Tue Aug  9 09:41:57 UTC 2011 - meiss...@novell.com
+
+- run fdupes, images should not be executable
+
+---

calling whatdependson for head-i586




Other differences:
--
++ libqt4-devel-doc.spec ++
--- /var/tmp/diff_new_pack.V9DbuG/_old  2011-08-11 09:48:12.0 +0200
+++ /var/tmp/diff_new_pack.V9DbuG/_new  2011-08-11 09:48:12.0 +0200
@@ -31,7 +31,7 @@
 # COMMON-VERSION-BEGIN
 # COMMON-VERSION-BEGIN
 Version:4.7.3
-Release:4
+Release:5
 %define base_name libqt4
 %define x11_free  -everywhere-opensource-src-
 %define rversion %version

libqt4-sql-plugins.spec: same change
++ libqt4.spec ++
--- /var/tmp/diff_new_pack.V9DbuG/_old  2011-08-11 09:48:12.0 +0200
+++ /var/tmp/diff_new_pack.V9DbuG/_new  2011-08-11 09:48:12.0 +0200
@@ -54,7 +54,7 @@
 Obsoletes:  libqt4-dbus-1 < 4.4.0
 # COMMON-VERSION-BEGIN
 Version:4.7.3
-Release:7
+Release:9
 %define base_name libqt4
 %define x11_free  -everywhere-opensource-src-
 %define rversion %version
@@ -315,6 +315,7 @@
 %if %with_phonon
 
 %package -n phonon
+
 License:LGPLv2.0+
 Summary:Phonon Multimedia Platform Abstraction
 Group:  Development/Libraries/KDE
@@ -329,6 +330,7 @@
 
 
 %package -n phonon-devel
+
 License:LGPLv2.0+
 Summary:Phonon Multimedia Platform Abstraction
 Group:  Development/Libraries/KDE
@@ -344,6 +346,7 @@
 
 
 %package -n libphonon4
+
 License:LGPLv2.0+
 Summary:Phonon Multimedia Platform Abstraction
 Group:  Development/Libraries/KDE
@@ -360,6 +363,7 @@
 %if %with_phonon_backend
 
 %package -n phonon-backend-gstreamer-0_10
+
 License:LGPLv2.0+
 Summary:Phonon Multimedia Platform Abstraction
 Group:  Development/Libraries/KDE
@@ -374,6 +378,7 @@
 
 
 %package -n phonon-backend-xine
+
 License:LGPLv2.0+
 Summary:Phonon Multimedia Platform Abstraction
 Group:  Development/Libraries/KDE
@@ -454,6 +459,9 @@
 done
 
 %fdupes  %{buildroot}/usr/include
+%fdupes  %{buildroot}/usr/share/qt4
+%fdupes  %{buildroot}/usr/share/doc/packages/libqt4
+find %{buildroot}/usr/share/doc/packages/libqt4/src/images/* -type f |xargs 
chmod a-x
 #
 # we do not package qvfb, and assistant in devel-doc
 #









Remember to have fun...

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



commit xaw3d for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package xaw3d for openSUSE:Factory
checked in at Thu Aug 11 09:47:51 CEST 2011.




--- xaw3d/xaw3d.changes 2011-07-04 11:54:24.0 +0200
+++ /mounts/work_src_done/STABLE/xaw3d/xaw3d.changes2011-08-09 
16:42:34.0 +0200
@@ -1,0 +2,5 @@
+Tue Aug  9 14:42:06 UTC 2011 - wer...@suse.de
+
+- Correct path of latest change as .conf is required 
+
+---

calling whatdependson for head-i586




Other differences:
--
++ xaw3d.spec ++
--- /var/tmp/diff_new_pack.CTf2rs/_old  2011-08-11 09:47:28.0 +0200
+++ /var/tmp/diff_new_pack.CTf2rs/_new  2011-08-11 09:47:28.0 +0200
@@ -29,7 +29,7 @@
 %endif
 #
 Version:1.5E
-Release:423
+Release:425
 Summary:3D Athena Widgets
 Url:http://www.visi.com/~hawkeyd/xaw3d.html
 Source: Xaw3d-1.5E.tar.bz2
@@ -214,7 +214,7 @@
 
 # Create /etc/ld.so.conf.d/xaw3dd.conf
 mkdir -p %{buildroot}/etc/ld.so.conf.d
-cat > %{buildroot}/etc/ld.so.conf.d/xaw3dd < %{buildroot}/etc/ld.so.conf.d/xaw3dd.conf <

commit dos2unix for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package dos2unix for openSUSE:Factory
checked in at Thu Aug 11 09:47:18 CEST 2011.




--- dos2unix/dos2unix.changes   2011-05-25 09:03:16.0 +0200
+++ /mounts/work_src_done/STABLE/dos2unix/dos2unix.changes  2011-08-10 
12:48:00.0 +0200
@@ -1,0 +2,9 @@
+Wed Aug 10 12:46:41 CEST 2011 - p...@suse.de
+
+- Update to 5.3.1:
+  * Spanish tranlation of messages and manual.
+  * File ownership is maintained in old file mode (Unix only).
+  * Dos2unix and Unix2dos share the same language files.
+  * Code cleanup.
+
+---

calling whatdependson for head-i586


Old:

  dos2unix-5.3.tar.xz
  dos2unix-cloexec.patch

New:

  dos2unix-5.3.1.tar.xz



Other differences:
--
++ dos2unix.spec ++
--- /var/tmp/diff_new_pack.v48S2Y/_old  2011-08-11 09:42:00.0 +0200
+++ /var/tmp/diff_new_pack.v48S2Y/_new  2011-08-11 09:42:00.0 +0200
@@ -19,14 +19,13 @@
 
 Name:   dos2unix
 Summary:Text converters to and from DOS/MAC to UNIX
-Version:5.3
-Release:3
+Version:5.3.1
+Release:1
 Group:  Productivity/Text/Convertors
 License:BSD3c
 Url:http://www.xs4all.nl/~waterlan/#DOS2UNIX
 Source: %{name}-%{version}.tar.xz
 Patch0: dos2unix-correct_ending.patch
-Patch1: dos2unix-cloexec.patch
 Provides:   unix2dos = %{version}
 Obsoletes:  unix2dos < %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -41,8 +40,7 @@
 
 %prep
 %setup -q
-%patch0 -p1
-%patch1
+%patch0
 find . -type f | xargs chmod -x
 
 %build

++ dos2unix-correct_ending.patch ++
--- /var/tmp/diff_new_pack.v48S2Y/_old  2011-08-11 09:42:00.0 +0200
+++ /var/tmp/diff_new_pack.v48S2Y/_new  2011-08-11 09:42:00.0 +0200
@@ -1,8 +1,9 @@
-diff -rupN dos2unix-5.3.orig//Makefile dos2unix-5.3//Makefile
 dos2unix-5.3.orig//Makefile2011-05-21 19:34:56.217828000 +0300
-+++ dos2unix-5.3//Makefile 2011-05-21 19:39:38.670827981 +0300
-@@ -94,7 +94,7 @@ ifdef ENABLE_NLS
-   MOFILES = $(DOS2UNIX_MOFILES) $(UNIX2DOS_MOFILES)
+Index: Makefile
+===
+--- Makefile.orig  2011-08-08 22:27:20.0 +0200
 Makefile   2011-08-10 12:42:45.756865674 +0200
+@@ -89,7 +89,7 @@ ifdef ENABLE_NLS
+   EOX_POFILES = po/eo-x.po
  endif
  
 -DOCFILES  = $(PACKAGE).txt $(PACKAGE).htm
@@ -10,7 +11,7 @@
  INSTALL_OBJS_DOC = README.txt NEWS.txt ChangeLog.txt COPYING.txt TODO.txt 
BUGS.txt $(DOCFILES)
  
  #PODFILES = man/man1/dos2unix.pod $(wildcard man/*/man1/dos2unix.pod)
-@@ -293,7 +293,7 @@ $(UNIX2DOS_POT) : unix2dos.c
+@@ -279,7 +279,7 @@ $(POT) : dos2unix.c unix2dos.c common.c
  %.pdf: %.ps
ps2pdf $< $@
  
@@ -19,4 +20,3 @@
pod2html --title="$(PACKAGE) $(DOS2UNIX_VERSION) - DOS/MAC to UNIX and 
vice versa text file format converter" $< > $@
  
  install: all
-Binary files dos2unix-5.3.orig//.Makefile.swp and dos2unix-5.3//.Makefile.swp 
differ






Remember to have fun...

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



commit sysconfig for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package sysconfig for openSUSE:Factory
checked in at Thu Aug 11 09:41:52 CEST 2011.




--- sysconfig/sysconfig.changes 2011-08-04 15:22:06.0 +0200
+++ /mounts/work_src_done/STABLE/sysconfig/sysconfig.changes2011-08-10 
05:05:51.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug 10 03:05:20 UTC 2011 - crrodrig...@opensuse.org
+
+- Do not use -fno-strict-aliasing when not needed
+
+---

calling whatdependson for head-i586




Other differences:
--
++ sysconfig.spec ++
--- /var/tmp/diff_new_pack.YBqipe/_old  2011-08-11 09:41:30.0 +0200
+++ /var/tmp/diff_new_pack.YBqipe/_new  2011-08-11 09:41:30.0 +0200
@@ -20,7 +20,7 @@
 
 Name:   sysconfig
 Version:0.75.0
-Release:3
+Release:5
 Summary:The system configuration scheme
 Url:http://gitorious.org/opensuse/sysconfig
 Group:  System/Base
@@ -54,7 +54,7 @@
 
 %build
 autoreconf --force --install
-CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing -fPIC" \
+CFLAGS="$RPM_OPT_FLAGS -fPIC" \
 ./configure --prefix=/ \
 --sbindir=/sbin \
 --libdir=/%_lib \






Remember to have fun...

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



commit util-linux for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package util-linux for openSUSE:Factory
checked in at Thu Aug 11 09:41:22 CEST 2011.




--- util-linux/util-linux.changes   2011-08-02 16:03:08.0 +0200
+++ /mounts/work_src_done/STABLE/util-linux/util-linux.changes  2011-08-10 
15:51:17.0 +0200
@@ -1,0 +2,15 @@
+Wed Aug 10 13:42:33 UTC 2011 - pu...@novell.com
+
+- add util-linux-2.20-rc1-hexdump-segfault.patch (bnc#710877) 
+
+---
+Wed Aug 10 12:20:41 UTC 2011 - pu...@novell.com
+
+- add util-linux-2.20-rc-fix-dmesg.patch (bnc#710417) 
+
+---
+Wed Aug 10 11:06:15 UTC 2011 - pu...@novell.com
+
+- add util-linux-2.20-rc1-agetty-fixes.patch (bnc#711240) 
+
+---

calling whatdependson for head-i586


New:

  util-linux-2.20-rc-fix-dmesg.patch
  util-linux-2.20-rc1-agetty-fixes.patch
  util-linux-2.20-rc1-hexdump-segfault.patch



Other differences:
--
++ util-linux.spec ++
--- /var/tmp/diff_new_pack.flUzRL/_old  2011-08-11 09:39:16.0 +0200
+++ /var/tmp/diff_new_pack.flUzRL/_new  2011-08-11 09:39:16.0 +0200
@@ -32,7 +32,7 @@
 BuildRequires:  readline-devel
 BuildRequires:  zlib-devel
 Version:2.19.91
-Release:1
+Release:2
 Url:http://kernel.org/~kzak/util-linux/
 Supplements:filesystem(minix)
 Provides:   fsck-with-dev-lock = %{version}
@@ -83,6 +83,12 @@
 Patch2: util-linux-2.17.1-mount_losetup_crypto.patch
 Patch3: util-linux-fix-manpages.patch
 Patch4: util-linux-wall-build-with-pie.patch
+# bnc#711240 - squashed 4 upstream patches
+Patch5: util-linux-2.20-rc1-agetty-fixes.patch
+# bnc#710471
+Patch6: util-linux-2.20-rc-fix-dmesg.patch
+# bnc#710877
+Patch7: util-linux-2.20-rc1-hexdump-segfault.patch
 ##
 ## adjtimex
 ##
@@ -185,6 +191,9 @@
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
+%patch5 -p1
+%patch6 -p1
+%patch7 -p1
 
 #
 cd adjtimex-*

++ util-linux-2.20-rc-fix-dmesg.patch ++
>From dd8f12f4bc28eaf8e746ae2e4489a4445793d4e3 Mon Sep 17 00:00:00 2001
From: Petr Uzel 
Date: Wed, 10 Aug 2011 14:08:55 +0200
Subject: [PATCH] dmesg: avoid mess at the end of dmesg output

Since util-linux commit a7ee94f2204011f26232ed3133514bf6e0d4a62c,
dmesg incorrectly calculates number of bytes that are remaining in the
buffer in get_next_record(). This could, under specific circumstances,
cause printing mess at the end of dmesg output:

> dmesg | tail
[ 1191.478725] Adding 285488k swap on /root/swapfile.  Priority:-2 extents:15 
across:1186612k
[ 1205.588331] Adding 285488k swap on /root/swapfile.  Priority:-2 extents:15 
across:1186612k
\xffba\xffba

Reported-by: Glenn Doig 
Addresses: https://bugzilla.novell.com/show_bug.cgi?id=710417

Signed-off-by: Petr Uzel 
---
 sys-utils/dmesg.c |2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

Index: util-linux-2.20-rc1/sys-utils/dmesg.c
===
--- util-linux-2.20-rc1.orig/sys-utils/dmesg.c
+++ util-linux-2.20-rc1/sys-utils/dmesg.c
@@ -492,6 +492,8 @@ static int get_next_record(struct dmesg_
 
rec->next_size -= end - rec->next;
rec->next = rec->next_size > 0 ? end + 1 : NULL;
+   if (rec->next_size > 0)
+   rec->next_size--;
 
return 0;
}
++ util-linux-2.20-rc1-agetty-fixes.patch ++
Index: util-linux-2.20-rc1/term-utils/agetty.8
===
--- util-linux-2.20-rc1.orig/term-utils/agetty.8
+++ util-linux-2.20-rc1/term-utils/agetty.8
@@ -87,9 +87,11 @@ whatever init(8) may have set, and is in
 Assume that the tty is 8-bit clean, hence disable parity detection.
 .TP
 \-a, \-\-autologin \fIusername\fP
-Log the specified user automatically in without asking for a login
-name and password. Check the \-f option from
-\fB/bin/login\fP for this.
+Log the specified user automatically in without asking for a login name and
+password. The \-f \fIusername\fP option is added to the \fB/bin/login\fP
+command line by default. The \-\-login-options option changes this default
+behaviour and then only \\u is replaced by the \fIusername\fP and no other
+option is added to the login command line.
 .TP
 \-c, \-\-noreset
 Don't reset terminal cflags (control modes). See \fItermios(3)\fP for more
@@ -160,9 +162,10 @@ is run as root.
 .TP
 \-o, \-\-login\-options \fI"login_options"\fP
 Options  that  are passed to the login program.  \\u is replaced
-by the login name. Defaults to "-- \\u", which is suitable for
-\fB/bin/login\fP.  Please read the SECURITY NOTICE below if
-you want to use this.
+by the login name. The default \fB/bin/login\fP command l

commit bzip2 for openSUSE:Factory

2011-08-11 Thread h_root

Hello community,

here is the log from the commit of package bzip2 for openSUSE:Factory
checked in at Thu Aug 11 09:39:01 CEST 2011.




--- bzip2/bzip2.changes 2011-07-26 13:44:05.0 +0200
+++ /mounts/work_src_done/STABLE/bzip2/bzip2.changes2011-08-10 
22:25:14.0 +0200
@@ -1,0 +2,6 @@
+Wed Aug 10 17:43:49 UTC 2011 - pu...@novell.com
+
+- package all documentation files referenced by README; also
+  point to bzip2-doc package (bnc#709260)
+
+---

calling whatdependson for head-i586


New:

  bzip2-point-to-doc-pkg.patch



Other differences:
--
++ bzip2.spec ++
--- /var/tmp/diff_new_pack.XildyT/_old  2011-08-11 09:22:08.0 +0200
+++ /var/tmp/diff_new_pack.XildyT/_new  2011-08-11 09:22:08.0 +0200
@@ -20,7 +20,7 @@
 
 Name:   bzip2
 Version:1.0.6
-Release:9
+Release:11
 Provides:   bzip
 Obsoletes:  bzip
 BuildRequires:  pkg-config
@@ -45,6 +45,7 @@
 Patch2: bzip2-maxlen20.patch
 Patch3: bzip2-faster.patch
 Patch5: bzip2-unsafe_strcpy.patch
+Patch6: bzip2-point-to-doc-pkg.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -108,6 +109,7 @@
 %patch2
 %patch3
 %patch5
+%patch6 -p1
 
 %build
 profile_bzip2()
@@ -164,7 +166,7 @@
 
 %files doc
 %defattr(-,root,root)
-%doc manual.ps.gz manual*.html
+%doc manual.ps.gz manual*.html bzip2.txt manual.pdf
 
 %files -n libbz2-1
 %defattr(-,root,root)

++ bzip2-point-to-doc-pkg.patch ++
Index: bzip2-1.0.6/README
===
--- bzip2-1.0.6.orig/README
+++ bzip2-1.0.6/README
@@ -17,7 +17,8 @@ in the file LICENSE.
 
 Complete documentation is available in Postscript form (manual.ps),
 PDF (manual.pdf) or html (manual.html).  A plain-text version of the
-manual page is available as bzip2.txt.
+manual page is available as bzip2.txt. bzip2 documentation is
+available in separate bzip2-doc package.
 
 
 HOW TO BUILD -- UNIX







Remember to have fun...

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