commit NetworkManager for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package NetworkManager for openSUSE:Factory
checked in at Tue Oct 18 13:55:47 CEST 2011.




--- openSUSE:Factory/NetworkManager/NetworkManager.changes  2011-10-03 
19:59:36.0 +0200
+++ /mounts/work_src_done/STABLE/NetworkManager/NetworkManager.changes  
2011-10-14 14:42:59.0 +0200
@@ -1,0 +2,8 @@
+Fri Oct 14 10:02:06 UTC 2011 - lnus...@suse.de
+
+- avoid annoying polkit popups when connecting to 802.11x networks
+  that are supposed to ask for passwords (bnc#713639)
+- also avoid asking for a password (and thereore polkit auth) when
+  an AP goes of range.
+
+---

calling whatdependson for head-i586


New:

  nm-don-t-consider-not-needed-secrets-for-has_system_secr.diff
  nm-remove-AP-always-on-device-disconnect.diff
  nm-treat-not-saved-secrets-just-like-agent-owned-when-cl.diff



Other differences:
--
++ NetworkManager.spec ++
--- /var/tmp/diff_new_pack.0pAsIt/_old  2011-10-18 13:55:42.0 +0200
+++ /var/tmp/diff_new_pack.0pAsIt/_new  2011-10-18 13:55:42.0 +0200
@@ -33,6 +33,12 @@
 Patch0: systemd-network-config.patch
 # PATCH-FIX-UPSTREAM nm-udev-rfkill-handling.patch bnc709733,bgo655773 
g...@suse.com -- improve the rfkill handling to avoid some false-positive case
 Patch1: nm-udev-rfkill-handling.patch
+# PATCH-UGLY-HACK-OPENSUSE nm-remove-AP-always-on-device-disconnect.diff 
lnus...@suse.com -- avoid pw dialog if AP out of range
+Patch2: nm-remove-AP-always-on-device-disconnect.diff
+# PATCH-HACK-OPENSUSE 
nm-don-t-consider-not-needed-secrets-for-has_system_secr.diff lnus...@suse.com 
-- avoid polkit popups for 802.11x
+Patch3: nm-don-t-consider-not-needed-secrets-for-has_system_secr.diff
+# PATCH-HACK-OPENSUSE 
nm-treat-not-saved-secrets-just-like-agent-owned-when-cl.diff lnus...@suse.com 
-- avoid polkit popups for 802.11x
+Patch4: nm-treat-not-saved-secrets-just-like-agent-owned-when-cl.diff
 BuildRequires:  fdupes
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  gtk-doc
@@ -130,10 +136,12 @@
 translation-update-upstream
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
+%patch3 -p1
+%patch4 -p1
 
 %build
-#needed by patch0
-autoreconf
+#NOCONFIGURE=1 ./autogen.sh
 pppddir=`ls -1d /usr/%_lib/pppd/2*`
 test -n $pppddir || exit 1
 export CFLAGS=$RPM_OPT_FLAGS -fno-strict-aliasing

++ nm-don-t-consider-not-needed-secrets-for-has_system_secr.diff ++
From 7e3c0930ff594c3e6b08c221dedadc9235006d9f Mon Sep 17 00:00:00 2001
From: Ludwig Nussel ludwig.nus...@suse.de
Date: Fri, 7 Oct 2011 13:58:48 +0200
Subject: [PATCH 3/3] don't consider not needed secrets for has_system_secrets()

---
 src/settings/nm-agent-manager.c |   56 +++---
 1 files changed, 51 insertions(+), 5 deletions(-)

diff --git a/src/settings/nm-agent-manager.c b/src/settings/nm-agent-manager.c
index 5ccbdc6..f3519c3 100644
--- a/src/settings/nm-agent-manager.c
+++ b/src/settings/nm-agent-manager.c
@@ -889,6 +889,11 @@ get_agent_modify_auth_cb (NMAuthChain *chain,
nm_auth_chain_unref (chain);
 }
 
+struct system_secrets_cb_data {
+   GHashTable *hash;
+   gboolean *has_system;
+};
+
 static void
 check_system_secrets_cb (NMSetting *setting,
  const char *key,
@@ -897,11 +902,17 @@ check_system_secrets_cb (NMSetting *setting,
  gpointer user_data)
 {
NMSettingSecretFlags secret_flags = NM_SETTING_SECRET_FLAG_NONE;
-   gboolean *has_system = user_data;
+   struct system_secrets_cb_data *data = user_data;
+   gboolean has_system = FALSE;
 
if (!(flags  NM_SETTING_PARAM_SECRET))
return;
 
+   if (!g_hash_table_lookup(data-hash, key)) {
+   nm_log_dbg (LOGD_AGENTS, %s: %s not needed, __FUNCTION__, 
key);
+   return;
+   }
+
/* Clear out system-owned or always-ask secrets */
if (NM_IS_SETTING_VPN (setting)  !strcmp (key, 
NM_SETTING_VPN_SECRETS)) {
GHashTableIter iter;
@@ -913,21 +924,44 @@ check_system_secrets_cb (NMSetting *setting,
secret_flags = NM_SETTING_SECRET_FLAG_NONE;
nm_setting_get_secret_flags (setting, secret_name, 
secret_flags, NULL);
if (secret_flags == NM_SETTING_SECRET_FLAG_NONE)
-   *has_system = TRUE;
+   has_system = TRUE;
}
} else {
nm_setting_get_secret_flags (setting, key, secret_flags, NULL);
if (secret_flags == NM_SETTING_SECRET_FLAG_NONE)
-   *has_system = TRUE;
+   has_system = TRUE;
}
+   nm_log_dbg (LOGD_AGENTS, %s: %s has_system=%d, __FUNCTION__, key, 
has_system);
+   

commit OpenPrintingPPDs for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package OpenPrintingPPDs for openSUSE:Factory
checked in at Tue Oct 18 13:56:01 CEST 2011.




--- openSUSE:Factory/OpenPrintingPPDs/OpenPrintingPPDs.changes  2011-09-23 
01:51:07.0 +0200
+++ /mounts/work_src_done/STABLE/OpenPrintingPPDs/OpenPrintingPPDs.changes  
2011-09-17 12:02:01.0 +0200
@@ -1,0 +2,6 @@
+Sat Sep 17 10:01:52 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant tags/sections from specfile
+- Pick stronger compression
+
+---

calling whatdependson for head-i586




Other differences:
--
++ OpenPrintingPPDs.spec ++
--- /var/tmp/diff_new_pack.du7yBG/_old  2011-10-18 13:55:54.0 +0200
+++ /var/tmp/diff_new_pack.du7yBG/_new  2011-10-18 13:55:54.0 +0200
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   OpenPrintingPPDs
@@ -26,7 +25,6 @@
 Url:
http://www.linuxfoundation.org/collaborate/workgroups/openprinting/database/query
 License:GPLv2+ ; MIT
 Group:  Hardware/Printing
-AutoReqProv:on
 BuildArch:  noarch
 # The main-package OpenPrintingPPDs alone is useless because it does not 
contain any PPD files.
 # The PPD files are provided via its sub-packages depending on which kind of 
driver software
@@ -214,7 +212,7 @@
 for d in $PPDs_DIRs
 do echo Compressing the PPDs in $d
for p in $d/*.ppd
-   do gzip $p
+   do gzip -9 $p
done
echo Finished compressing the PPDs in $d
 done
@@ -237,9 +235,6 @@
 # individual /usr/share/cups/model/OpenPrintingPPDs/ghostscript/*gdi* PPD 
files.
 rm 
%{buildroot}/usr/share/cups/model/OpenPrintingPPDs/ghostscript/Generic-GDI_Printer.gdi.ppd.gz
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-,root,root)
 %doc HOWTO README gpl-2.0.txt

continue with 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 aaa_base for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package aaa_base for openSUSE:Factory
checked in at Tue Oct 18 13:56:13 CEST 2011.




--- openSUSE:Factory/aaa_base/aaa_base.changes  2011-10-04 18:06:23.0 
+0200
+++ /mounts/work_src_done/STABLE/aaa_base/aaa_base.changes  2011-10-14 
15:03:10.0 +0200
@@ -1,0 +2,6 @@
+Fri Oct 14 13:02:54 UTC 2011 - lnus...@suse.de
+
+- mount /media as tmpfs
+- resolve symlink for rcXX - XX.service sytemd magic
+
+---

calling whatdependson for head-i586




Other differences:
--
++ aaa_base.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base/files/etc/init.d/boot.localfs 
new/aaa_base/files/etc/init.d/boot.localfs
--- old/aaa_base/files/etc/init.d/boot.localfs  2011-09-16 16:04:33.0 
+0200
+++ new/aaa_base/files/etc/init.d/boot.localfs  2011-10-14 15:02:14.0 
+0200
@@ -291,6 +291,9 @@
if test -d /var/run  ! mountpoint -q /var/run; then
mount -n --bind /run /var/run
fi
+   if test -d /media  ! mountpoint -q /media; then
+   mount -n -t tmpfs -o mode=0755,nodev,nosuid tmpfs /media
+   fi
 
# now handle uncommon mount points
memfs_nonudev
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base/files/etc/rc.status 
new/aaa_base/files/etc/rc.status
--- old/aaa_base/files/etc/rc.status2011-09-16 16:04:33.0 +0200
+++ new/aaa_base/files/etc/rc.status2011-10-14 15:02:14.0 +0200
@@ -42,7 +42,13 @@
/etc/init.d/*)
_rc_base=${0##*/} ;;
*/rc*)
-   _rc_base=${0##*/rc} ;;
+   if test -L $0; then
+   _rc_base=`readlink $0`
+   _rc_base=${_rc_base##*/}
+   else
+   _rc_base=${0##*/rc}
+   fi
+   ;;
esac
if test -n $_rc_base -a -x /bin/systemctl ; then
exec /bin/systemctl $1 ${_rc_base}.service

continue with 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 aisleriot for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package aisleriot for openSUSE:Factory
checked in at Tue Oct 18 13:56:23 CEST 2011.




--- openSUSE:Factory/aisleriot/aisleriot.changes2011-10-02 
09:47:04.0 +0200
+++ /mounts/work_src_done/STABLE/aisleriot/aisleriot.changes2011-10-17 
17:47:13.0 +0200
@@ -1,0 +2,7 @@
+Mon Oct 17 17:35:56 CEST 2011 - dims...@opensuse.org
+
+- Update to version 3.2.1:
+  + Minor bugfixes
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  aisleriot-3.2.0.tar.bz2

New:

  aisleriot-3.2.1.tar.bz2



Other differences:
--
++ aisleriot.spec ++
--- /var/tmp/diff_new_pack.mIXdZA/_old  2011-10-18 13:56:17.0 +0200
+++ /var/tmp/diff_new_pack.mIXdZA/_new  2011-10-18 13:56:17.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   aisleriot
-Version:3.2.0
+Version:3.2.1
 Release:1
 # FIXME: the %%{_datadir}/help/$locale/ files should be found by %%find_lang
 License:GPLv3+

++ aisleriot-3.2.0.tar.bz2 - aisleriot-3.2.1.tar.bz2 ++
 12331 lines of diff (skipped)


continue with 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 alpine for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package alpine for openSUSE:Factory
checked in at Tue Oct 18 13:56:33 CEST 2011.




--- openSUSE:Factory/alpine/alpine.changes  2011-10-11 18:20:45.0 
+0200
+++ /mounts/work_src_done/STABLE/alpine/alpine.changes  2011-10-17 
10:48:47.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct 17 08:45:32 UTC 2011 - m...@suse.com
+
+- Fix two instances of premature closedir() and a potential buffer
+  overflow in the maildir handler (alpine-maildir-closedir.patch).
+
+---

calling whatdependson for head-i586


New:

  alpine-maildir-closedir.patch



Other differences:
--
++ alpine.spec ++
--- /var/tmp/diff_new_pack.YFjYE5/_old  2011-10-18 13:56:29.0 +0200
+++ /var/tmp/diff_new_pack.YFjYE5/_new  2011-10-18 13:56:29.0 +0200
@@ -66,6 +66,7 @@
 Patch5: alpine-gcc44.diff
 Patch6: alpine-2.00-as_needed.patch
 Patch7: alpine-month_name-utf8.patch
+Patch8: alpine-maildir-closedir.patch
 Patch10:pico-fix-spurious-undef-warnings.diff
 Patch20:pine-expression-warnings.diff
 Patch40:pico-stripwhitespace.diff
@@ -164,6 +165,7 @@
 %patch5 -p0
 %patch6 -p0
 %patch7
+%patch8
 %patch10 -p1
 %patch20 -p1
 %patch40 -p1

++ alpine-maildir-closedir.patch ++
--- imap/src/osdep/unix/maildir.c   2011-10-17 10:11:55.0 +0200
+++ imap/src/osdep/unix/maildir.c   2011-10-17 10:39:31.0 +0200
@@ -2396,7 +2396,6 @@
|| !strncmp(d-d_name, MDUIDTEMP, strlen(MDUIDTEMP)))
break;
   }
-  closedir(dir);
   rv = d ? !strncmp(d-d_name, tmp, strlen(tmp)) : 1;
   createtemp = d ? 0 : 1;
   if (d  rv == 0){   /* is there a temp file that is not ours? */
@@ -2410,6 +2409,7 @@
unlink(tmp);
  }
   }
+  closedir(dir);
   if(createtemp){
 FILE *fp;
 sprintf(tmp,%s/%s.%d.%lu, LOCAL-dir, MDUIDTEMP, getpid(), time(0));
@@ -2442,7 +2442,6 @@
   if(!strncmp(d-d_name, MDUIDLAST, strlen(MDUIDLAST)))
break;
   }
-  closedir(dir);
   createuid = d == NULL ? 1 : 0;
   if(uid_last == NULL)
 deleteuid++;
@@ -2473,9 +2472,10 @@
  }
   }
   if(deleteuid){
- sprintf(tmp,%s/%s, LOCAL-dir, d-d_name);
+ snprintf(tmp, sizeof(tmp), %s/%s, LOCAL-dir, d-d_name);
  unlink(tmp);
   }
+  closedir(dir);
   if(createuid)
  maildir_write_uid(stream, (uid_last ? *uid_last : stream-uid_last), 
uid_validity ? *uid_validity : time(0));
Nur in alpine-2.00/imap/src/osdep/unix: maildir.c~.

continue with 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 alsa-utils for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package alsa-utils for openSUSE:Factory
checked in at Tue Oct 18 13:56:43 CEST 2011.




--- openSUSE:Factory/alsa-utils/alsa-utils.changes  2011-09-23 
01:51:41.0 +0200
+++ /mounts/work_src_done/STABLE/alsa-utils/alsa-utils.changes  2011-09-20 
09:58:25.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep 20 09:47:45 CEST 2011 - ti...@suse.de
+
+- Backport upstream fixes
+  - Increase the max channels of aplay to 256.
+  - Fix sed usage in Makefile.am
+
+---

calling whatdependson for head-i586


New:

  0019-aplay-increase-channel-limit-to-256.patch
  0020-fix-use-of-SED.patch



Other differences:
--
++ alsa-utils.spec ++
--- /var/tmp/diff_new_pack.4kPZXp/_old  2011-10-18 13:56:39.0 +0200
+++ /var/tmp/diff_new_pack.4kPZXp/_new  2011-10-18 13:56:39.0 +0200
@@ -53,8 +53,9 @@
 Patch16:0016-aplay-Use-standard-endian-convesions.patch
 Patch17:0017-speaker-test.1-Clarify-man-page-by-giving-examples.patch
 Patch18:0018-alsa-utils-amixer-Fix-SND_CTL_TLVT_DB_RANGE-handling.patch
+Patch19:0019-aplay-increase-channel-limit-to-256.patch
+Patch20:0020-fix-use-of-SED.patch
 Patch99:alsa-utils-gettext-version-removal.diff
-# Patch100:   alsa-utils-po-pre-patch.diff
 Url:http://www.alsa-project.org/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -66,10 +67,8 @@
 %setup -q -n %{name}-%{package_version}
 # fix stupid automake's automatic action
 sed -i -e's/EXTRA_DIST= config.rpath /EXTRA_DIST=/' Makefile.am
-# fix po changes in tarball first
-# %%patch100 -p1
 # rm -f po/Makefile* po/*.gmo po/*.pot po/*.header po/stamp-*
-# %%patch -p1
+# patch -p1
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
@@ -87,6 +86,8 @@
 %patch16 -p1
 %patch17 -p1
 %patch18 -p1
+%patch19 -p1
+%patch20 -p1
 %if %suse_version  1020
 %patch99 -p1
 %endif

++ 0019-aplay-increase-channel-limit-to-256.patch ++
From 0131ab6a67e18ae3c30b7b3fabc2fdf1592f075c Mon Sep 17 00:00:00 2001
From: Tim Blechmann t...@klingt.org
Date: Wed, 29 Jun 2011 09:44:06 +0200
Subject: [PATCH] aplay: increase channel limit to 256

aplay is limited to 32 channels, which makes it impossible to use it for
testing devices with more channels. here we increase the limit to 256,
which should be sufficient for a virtual device made of 4 64-channel
soundcards.

Signed-off-by: Tim Blechmann t...@klingt.org
Signed-off-by: Jaroslav Kysela pe...@perex.cz
---
 aplay/aplay.c |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/aplay/aplay.c b/aplay/aplay.c
index 50e01ef..07e6bc0 100644
--- a/aplay/aplay.c
+++ b/aplay/aplay.c
@@ -526,7 +526,7 @@ int main(int argc, char *argv[])
break;
case 'c':
rhwparams.channels = strtol(optarg, NULL, 0);
-   if (rhwparams.channels  1 || rhwparams.channels  32) {
+   if (rhwparams.channels  1 || rhwparams.channels  256) 
{
error(_(value %i for channels is invalid), 
rhwparams.channels);
return 1;
}
@@ -1015,7 +1015,7 @@ static int test_au(int fd, void *buffer)
if (hwparams.rate  2000 || hwparams.rate  256000)
return -1;
hwparams.channels = BE_INT(ap-channels);
-   if (hwparams.channels  1 || hwparams.channels  128)
+   if (hwparams.channels  1 || hwparams.channels  256)
return -1;
if ((size_t)safe_read(fd, buffer + sizeof(AuHeader), 
BE_INT(ap-hdr_size) - sizeof(AuHeader)) != BE_INT(ap-hdr_size) - 
sizeof(AuHeader)) {
error(_(read error));
-- 
1.7.6.1

++ 0020-fix-use-of-SED.patch ++
From e80b015689ce7a632c8cf57a29bd703eef4edbbc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= mgo...@gentoo.org
Date: Wed, 31 Aug 2011 22:27:10 +0200
Subject: [PATCH] fix use of $(SED)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

The alsactl Makefile used 'sed $(SED)' which is going to failed when SED
is actually set. Replaced that with '$(SED)', and a few 'sed' calls in
alsaconf Makefile as well. Added AC_PROG_SED to configure to have it
set.

Fixes: https://bugtrack.alsa-project.org/alsa-bug/view.php?id=5363
Fixes: http://bugs.gentoo.org/show_bug.cgi?id=366587
Signed-off-by: Michał Górny mgo...@gentoo.org
Signed-off-by: Clemens Ladisch clem...@ladisch.de
---
 alsaconf/Makefile.am |   16 
 alsactl/Makefile.am  |2 +-
 configure.in |1 +
 3 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/alsaconf/Makefile.am b/alsaconf/Makefile.am
index a11ecc5..a4f5e4a 100644
--- a/alsaconf/Makefile.am
+++ b/alsaconf/Makefile.am
@@ -5,13 +5,13 @@ SUBDIRS = po
 
 

commit apache2-icons-oxygen for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package apache2-icons-oxygen for 
openSUSE:Factory
checked in at Tue Oct 18 13:56:53 CEST 2011.




--- openSUSE:Factory/apache2-icons-oxygen/apache2-icons-oxygen.changes  
2011-09-23 01:51:52.0 +0200
+++ 
/mounts/work_src_done/STABLE/apache2-icons-oxygen/apache2-icons-oxygen.changes  
2011-09-17 13:13:20.0 +0200
@@ -1,0 +2,5 @@
+Sat Sep 17 11:13:16 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant tags/sections from specfile
+
+---

calling whatdependson for head-i586




Other differences:
--
++ apache2-icons-oxygen.spec ++
--- /var/tmp/diff_new_pack.z9ZE2O/_old  2011-10-18 13:56:49.0 +0200
+++ /var/tmp/diff_new_pack.z9ZE2O/_new  2011-10-18 13:56:49.0 +0200
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   apache2-icons-oxygen
@@ -34,10 +33,6 @@
 %description  
 KDE/Oxygen icons for Apache 2.
 
-Authors:  
-  
-Javier Llorente jav...@opensuse.org  
-  
 %prep  
 %setup -q -n %name-%version
 
@@ -51,9 +46,6 @@
 mkdir -p $RPM_BUILD_ROOT%{apache_sysconfdir}
 cp mod_autoindex-defaults-oxygen.conf $RPM_BUILD_ROOT%{apache_sysconfdir}  
 
-%clean  
-rm -rf $RPM_BUILD_ROOT  
-
 %files  
 %defattr(-,root,root)  
 %doc README.SuSE COPYING

continue with 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 branding-basedonopensuse for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package branding-basedonopensuse for 
openSUSE:Factory
checked in at Tue Oct 18 13:58:05 CEST 2011.




--- openSUSE:Factory/branding-basedonopensuse/branding-basedonopensuse.changes  
2011-10-13 12:18:09.0 +0200
+++ 
/mounts/work_src_done/STABLE/branding-basedonopensuse/branding-basedonopensuse.changes
  2011-10-17 11:02:15.0 +0200
@@ -1,0 +2,10 @@
+Mon Oct 17 09:01:50 UTC 2011 - co...@suse.com
+
+- add relaxed versions of branding-openSUSE's requires to basedonopensuse
+
+---
+Mon Oct 17 08:30:06 UTC 2011 - co...@suse.com
+
+- use latest branding packages too
+
+---

calling whatdependson for head-i586




Other differences:
--
++ branding-basedonopensuse.spec ++
--- /var/tmp/diff_new_pack.L8J4in/_old  2011-10-18 13:58:01.0 +0200
+++ /var/tmp/diff_new_pack.L8J4in/_new  2011-10-18 13:58:01.0 +0200
@@ -32,6 +32,7 @@
 BuildRequires:  gfxboot-branding-openSUSE
 BuildRequires:  gimp-branding-openSUSE
 BuildRequires:  gio-branding-openSUSE
+BuildRequires:  gnome-control-center-branding-openSUSE
 BuildRequires:  gnome-menus-branding-openSUSE
 BuildRequires:  gnome-panel-branding-openSUSE
 BuildRequires:  gtk2-branding-openSUSE
@@ -57,6 +58,7 @@
 BuildRequires:  splashy-branding-openSUSE
 BuildRequires:  susegreeter-branding-openSUSE
 BuildRequires:  systemd-presets-branding-openSUSE
+BuildRequires:  thunar-volman-branding-openSUSE
 BuildRequires:  wallpaper-branding-openSUSE
 BuildRequires:  xfce4-notifyd-branding-openSUSE
 BuildRequires:  xfce4-panel-branding-openSUSE
@@ -134,6 +136,7 @@
 packages=$packages gfxboot-branding-openSUSE
 packages=$packages gimp-branding-openSUSE
 packages=$packages gio-branding-openSUSE
+packages=$packages gnome-control-center-branding-openSUSE
 packages=$packages gnome-menus-branding-openSUSE
 packages=$packages gnome-panel-branding-openSUSE
 packages=$packages gtk2-branding-openSUSE
@@ -159,6 +162,7 @@
 packages=$packages splashy-branding-openSUSE
 packages=$packages susegreeter-branding-openSUSE
 packages=$packages systemd-presets-branding-openSUSE
+packages=$packages thunar-volman-branding-openSUSE
 packages=$packages wallpaper-branding-openSUSE
 packages=$packages xfce4-notifyd-branding-openSUSE
 packages=$packages xfce4-panel-branding-openSUSE
@@ -262,6 +266,13 @@
 Requires:   branding-basedonopensuse
 Conflicts:  otherproviders(bootsplash-branding)
 Supplements:packageand(bootsplash:branding-basedonopensuse)
+Requires:   bootsplash
+Requires:   coreutils
+Requires:   diffutils
+Requires:   fillup
+Requires:   grep
+Requires:   mkinitrd
+Requires:   perl
 
 %description -n bootsplash-branding-basedonopensuse
 Debranded copy of openSUSE branding for bootsplash
@@ -281,6 +292,9 @@
 Requires:   branding-basedonopensuse
 Conflicts:  otherproviders(compiz-branding)
 Supplements:packageand(compiz:branding-basedonopensuse)
+Requires:   /bin/ln
+Requires:   /bin/rm
+Requires:   compiz
 
 %description -n compiz-branding-basedonopensuse
 Debranded copy of openSUSE branding for compiz
@@ -293,6 +307,7 @@
 Requires:   branding-basedonopensuse
 Conflicts:  otherproviders(dynamic-wallpaper-branding)
 Supplements:
packageand(wallpaper-branding-basedonopensuse:gnome-settings-daemon)
+Requires:   update-alternatives
 
 %description -n dynamic-wallpaper-branding-basedonopensuse
 Debranded copy of openSUSE branding for dynamic-wallpaper
@@ -305,6 +320,7 @@
 Requires:   branding-basedonopensuse
 Conflicts:  otherproviders(epiphany-branding)
 Supplements:packageand(epiphany:branding-basedonopensuse)
+Requires:   epiphany
 
 %description -n epiphany-branding-basedonopensuse
 Debranded copy of openSUSE branding for epiphany
@@ -329,6 +345,7 @@
 Requires:   branding-basedonopensuse
 Conflicts:  otherproviders(gconf2-branding)
 Supplements:packageand(gconf2:branding-basedonopensuse)
+Requires:   gconf2
 
 %description -n gconf2-branding-basedonopensuse
 Debranded copy of openSUSE branding for gconf2
@@ -341,6 +358,7 @@
 Requires:   branding-basedonopensuse
 Conflicts:  otherproviders(gdm-branding)
 Supplements:packageand(gdm:branding-basedonopensuse)
+Requires:   gdm
 
 %description -n gdm-branding-basedonopensuse
 Debranded copy of openSUSE branding for gdm
@@ -353,6 +371,7 @@
 Requires:   branding-basedonopensuse
 Conflicts:  otherproviders(gfxboot-branding)
 Supplements:packageand(gfxboot:branding-basedonopensuse)
+Requires:   gfxboot
 
 %description -n gfxboot-branding-basedonopensuse
 Debranded copy of openSUSE branding for gfxboot
@@ -368,6 +387,7 @@
 Requires:   branding-basedonopensuse
 Conflicts:  

commit chromium for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package chromium for openSUSE:Factory
checked in at Tue Oct 18 13:58:18 CEST 2011.




--- openSUSE:Factory/chromium/chromium.changes  2011-10-10 00:48:02.0 
+0200
+++ /mounts/work_src_done/STABLE/chromium/chromium.changes  2011-10-16 
13:35:17.0 +0200
@@ -1,0 +2,23 @@
+Sun Oct 16 11:21:52 UTC 2011 - tittiatc...@gmail.com
+
+- Update to 16.0.910
+  + Delay network requests on startup if any webRequest or 
+webNavigation extensions are enabled.
+  + Make escape exit tabbed fullscreen mode even if browser was in 
+fullscreen mode before. (bug#89208)
+  + [Sync] Support open tabs experiment enabling before sync setup 
+completion. (bug#99403)
+  + On Linux, turn off panels when there is no window manager 
+present. (bug#100381)
+  + Linux: add the other bookmarks folder to the new bookmark 
+menu. (bug#81263)
+  + Add google search app to list of apps installed by default. 
+(bug#94920)
+  + PrintPreview: Added code to honor the grayscale color model
+  + Linux: add basic bookmark menu support. More features can be 
+added later. Currently, only supports ctrl-click/middle click 
+to open in a new tab. It's supposed to be quite fancy and 
+support context menus and maybe other gestures as well; these 
+are not yet supported. (bug#81263)
+
+---

calling whatdependson for head-i586


Old:

  chromium.16.0.904.0.svn104670.tar.lzma

New:

  chromium.16.0.910.0.svn105660.tar.lzma



Other differences:
--
++ chromium.spec ++
--- /var/tmp/diff_new_pack.Jrh7vU/_old  2011-10-18 13:58:14.0 +0200
+++ /var/tmp/diff_new_pack.Jrh7vU/_new  2011-10-18 13:58:14.0 +0200
@@ -16,11 +16,11 @@
 #
 
 
-%define svn_rev 104670
+%define svn_rev 105660
 %define v8_ver 3.6.4.1
 
 Name:   chromium
-Version:16.0.904.0
+Version:16.0.910.0
 Release:1
 License:BSD-3-Clause and LGPL-2.1+
 Summary:Google's opens source browser project
@@ -75,8 +75,6 @@
 Patch28:chromium-7.0.500.0-system-speex.patch
 # PATCH-FIX-OPENSUSE patches in the system libvpx library
 Patch32:chromium-7.0.542.0-system-libvpx.patch
-# PATCH-FIX-OPENSUSE further changes to ensure working with the system minizip 
and v8 libraries
-#Patch34:chromium-7.0.542.0-codechanges-system-minizip-v8.patch
 # PATCH-FIX-OPENSUSE remove the rpath in the libraries
 Patch62:chromium-norpath.patch
 # PATCH-FIX-OPENSUSE patches in the system v8 library

++ chromium-6.0.406.0-system-gyp-v8.patch ++
--- /var/tmp/diff_new_pack.Jrh7vU/_old  2011-10-18 13:58:14.0 +0200
+++ /var/tmp/diff_new_pack.Jrh7vU/_new  2011-10-18 13:58:14.0 +0200
@@ -16,7 +16,7 @@
  },
  {
 +  'target_name': 'v8',
-+  'type': 'settings',
++  'type': 'none',
 +  'conditions': [
 +['_toolset==target', {
 +  'link_settings': {

++ chromium-7.0.500.0-system-speex.patch ++
--- /var/tmp/diff_new_pack.Jrh7vU/_old  2011-10-18 13:58:14.0 +0200
+++ /var/tmp/diff_new_pack.Jrh7vU/_new  2011-10-18 13:58:14.0 +0200
@@ -6,7 +6,7 @@
  },
  {
 +  'target_name': 'speex',
-+  'type': 'settings',
++  'type': 'none',
 +  'conditions': [
 +['_toolset==target', {
 +  'direct_dependent_settings': {

++ chromium-7.0.542.0-system-libvpx.patch ++
--- /var/tmp/diff_new_pack.Jrh7vU/_old  2011-10-18 13:58:14.0 +0200
+++ /var/tmp/diff_new_pack.Jrh7vU/_new  2011-10-18 13:58:14.0 +0200
@@ -6,7 +6,7 @@
  },
  {
 +  'target_name': 'libvpx',
-+  'type': 'settings',
++  'type': 'none',
 +  'conditions': [
 +['_toolset==target', {
 +  'direct_dependent_settings': {


++ chromium-system-glew.patch ++
--- /var/tmp/diff_new_pack.Jrh7vU/_old  2011-10-18 13:58:14.0 +0200
+++ /var/tmp/diff_new_pack.Jrh7vU/_new  2011-10-18 13:58:14.0 +0200
@@ -7,7 +7,7 @@
  },
 +{
 +  'target_name': 'icu',
-+  'type': 'settings',
++  'type': 'none',
 +  'conditions': [
 +['_toolset==target', {
 +  'direct_dependent_settings': {
@@ -29,7 +29,7 @@
 +},   
 +{
 +  'target_name': 'glew',
-+  'type': 'settings',
++  'type': 'none',
 +  'conditions': [
 +['_toolset==target', {
 +  'link_settings': {

continue with 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 cint for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package cint for openSUSE:Factory
checked in at Tue Oct 18 13:58:30 CEST 2011.




--- openSUSE:Factory/cint/cint.changes  2011-09-23 01:53:30.0 +0200
+++ /mounts/work_src_done/STABLE/cint/cint.changes  2011-10-16 
15:12:51.0 +0200
@@ -1,0 +2,6 @@
+Sun Oct 16 12:35:58 CEST 2011 - mhruse...@suse.cz
+
+- supporting $RPM_OPT_FLAGS
+- compiling with -fPIC on ARM and x86_64 (fixed build)
+
+---

calling whatdependson for head-i586




Other differences:
--
++ cint.spec ++
--- /var/tmp/diff_new_pack.VVq7ma/_old  2011-10-18 13:58:26.0 +0200
+++ /var/tmp/diff_new_pack.VVq7ma/_new  2011-10-18 13:58:26.0 +0200
@@ -44,6 +44,11 @@
 ./configure --prefix=%{_prefix} \
 --libdir=%{_libdir} \
 --readlinelib=%{_libdir}/libreadline.so
+%ifarch %{arm} x86_64
+export RPM_OPT_FLAGS=${RPM_OPT_FLAGS} -fPIC
+%endif
+echo G__CFG_CFLAGS := ${RPM_OPT_FLAGS}  Makefile.conf
+echo G__CFG_CXXFLAGS := ${RPM_OPT_FLAGS} -DG__GNUREADLINE  Makefile.conf
 make %{_smp_mflags}
 
 %install

continue with 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 clutter for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package clutter for openSUSE:Factory
checked in at Tue Oct 18 13:58:49 CEST 2011.




--- openSUSE:Factory/clutter/clutter.changes2011-10-04 16:55:31.0 
+0200
+++ /mounts/work_src_done/STABLE/clutter/clutter.changes2011-10-17 
20:44:21.0 +0200
@@ -1,0 +2,12 @@
+Mon Oct 17 20:39:13 CEST 2011 - dims...@opensuse.org
+
+- Update to version 1.8.2:
+  + Plug memory leaks in ClutterBoxLayout
+  + Fix the handling of out-of-stage actors in OffscreenEffect
+  + Do not complete a PaintVolume multiple times
+  + Update the MingW cross-compilation script
+  + Bugs fixed: bgo#659625, bgo#659893, bgo#659601, bgo#660985,
+bgo#661022.
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  clutter-1.8.0.tar.bz2

New:

  clutter-1.8.2.tar.bz2



Other differences:
--
++ clutter.spec ++
--- /var/tmp/diff_new_pack.Abu2zR/_old  2011-10-18 13:58:44.0 +0200
+++ /var/tmp/diff_new_pack.Abu2zR/_new  2011-10-18 13:58:44.0 +0200
@@ -19,7 +19,7 @@
 Summary:The clutter library
 
 Name:   clutter
-Version:1.8.0
+Version:1.8.2
 Release:1
 License:LGPLv2.1+
 Url:http://clutter-project.org/

++ clutter-1.8.0.tar.bz2 - clutter-1.8.2.tar.bz2 ++
 26616 lines of diff (skipped)

continue with 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 cogl for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package cogl for openSUSE:Factory
checked in at Tue Oct 18 13:59:04 CEST 2011.




--- openSUSE:Factory/cogl/cogl.changes  2011-10-02 09:52:43.0 +0200
+++ /mounts/work_src_done/STABLE/cogl/cogl.changes  2011-10-17 
20:42:12.0 +0200
@@ -1,0 +2,11 @@
+Mon Oct 17 20:39:07 CEST 2011 - dims...@opensuse.org
+
+- Update to version 1.8.2:
+  + Fix a crash while generating ARBfp code with layers containing
+a NULL texture.
+  + Improvements to the mingw-fetch-dependencies script to work
+without first needing to find a copy of config.guess.
+  + Bugs fixed: bgo#660184, bgo#660387, bgo#660986.
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  cogl-1.8.0.tar.bz2

New:

  cogl-1.8.2.tar.bz2



Other differences:
--
++ cogl.spec ++
--- /var/tmp/diff_new_pack.5h5ae0/_old  2011-10-18 13:59:00.0 +0200
+++ /var/tmp/diff_new_pack.5h5ae0/_new  2011-10-18 13:59:00.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   cogl
-Version:1.8.0
+Version:1.8.2
 Release:1
 License:LGPLv2.1+
 Summary:An object oriented GL/GLES Abstraction/Utility Layer

++ cogl-1.8.0.tar.bz2 - cogl-1.8.2.tar.bz2 ++
 7906 lines of diff (skipped)

continue with 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 collectd for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package collectd for openSUSE:Factory
checked in at Tue Oct 18 13:59:45 CEST 2011.




--- openSUSE:Factory/collectd/collectd.changes  2011-09-23 01:53:48.0 
+0200
+++ /mounts/work_src_done/STABLE/collectd/collectd.changes  2011-10-17 
11:20:43.0 +0200
@@ -1,0 +2,10 @@
+Mon Oct 17 09:19:25 UTC 2011 - sch...@suse.com
+
+- fixed build ( new yajl lib API )
+
+---
+Fri Sep 16 14:35:10 UTC 2011 - co...@suse.com
+
+- adding patch from jengelh to fix build
+
+---

calling whatdependson for head-i586


Old:

  collectd-libip4tc.patch

New:

  collectd-fix_new_yajl_lib.patch
  collectd-iptc.diff



Other differences:
--
++ collectd.spec ++
--- /var/tmp/diff_new_pack.zbDFyi/_old  2011-10-18 13:59:33.0 +0200
+++ /var/tmp/diff_new_pack.zbDFyi/_new  2011-10-18 13:59:33.0 +0200
@@ -115,7 +115,7 @@
 
 Name:   collectd
 Version:4.10.3
-Release:1
+Release:0
 Summary:Statistics Collection Daemon for filling RRD Files
 Source: http://collectd.org/files/collectd-%{version}.tar.bz2
 Source1:collectd.suse.init
@@ -126,6 +126,7 @@
 # workaround for missing pthread.pc on openSUSE, required by OpenIPMIpthread.pc
 # see https://bugzilla.novell.com/show_bug.cgi?id=388026
 Source20:   collectd-pthread.pc
+Source99:   collectd-rpmlintrc
 Patch4: collectd-lib64.patch
 Patch7: collectd-fix-config.patch
 Patch9: collectd-version.patch
@@ -144,9 +145,9 @@
 Patch23:collectd-javac_target.patch
 Patch24:collectd-pkgconfig_libnotify_add_gtk.patch
 Patch25:collectd-df-remove-duplicates.patch
-Patch26:collectd-libip4tc.patch
+Patch26:collectd-iptc.diff
 Patch27:collectd-libnotify_070.patch
-Source99:   collectd-rpmlintrc
+Patch28:collectd-fix_new_yajl_lib.patch
 Url:http://collectd.org/
 Group:  System/Monitoring
 License:GNU General Public License (GPL)
@@ -247,15 +248,7 @@
 files it's very fast and easy on the system. Also, the statistics are very
 fine grained since the files are updated every 10 seconds.
 
-
-
-
-Authors:
-
-Florian octo Forster o...@verplant.org
-
 %package web
-
 Summary:Web Frontend for watching the %{name} Statistics
 Group:  System/Monitoring
 Requires:   perl apache2 rrdtool
@@ -271,7 +264,6 @@
 Please look at /etc/apache2/conf.d/%{name}.conf on how to enable.
 
 %package web-js
-
 Summary:Web/JavaScript Frontend for watching %{name} Statistics
 Group:  System/Monitoring
 Requires:   perl apache2 rrdtool
@@ -292,7 +284,6 @@
 %if %libnotify
 
 %package plugin-notify-desktop
-
 Summary:Desktop Notification Plugin for %{name}
 Group:  System/Monitoring
 Requires:   %{name} = %{version}-%{release}
@@ -304,7 +295,6 @@
 %if %ipmi
 
 %package plugin-ipmi
-
 Summary:OpenIPMI Monitoring Plugin for %{name}
 Group:  System/Monitoring
 Requires:   %{name} = %{version}-%{release}
@@ -317,7 +307,6 @@
 %if %snmp
 
 %package plugin-snmp
-
 Summary:SNMP Monitoring Plugin for %{name}
 Group:  System/Monitoring
 Requires:   %{name} = %{version}-%{release}
@@ -332,7 +321,6 @@
 %if %with_mysql
 
 %package plugin-mysql
-
 Summary:MySQL Monitoring Plugin for %{name}
 Group:  System/Monitoring
 Requires:   %{name} = %{version}-%{release}
@@ -344,7 +332,6 @@
 %if %with_pgsql
 
 %package plugin-postgresql
-
 Summary:PostgreSQL Monitoring Plugin for %{name}
 Group:  System/Monitoring
 Requires:   %{name} = %{version}-%{release}
@@ -354,7 +341,6 @@
 %endif #with_pgsql
 
 %package plugin-python
-
 Summary:Python API for %{name}
 Group:  System/Monitoring
 Requires:   %{name} = %{version}-%{release}
@@ -366,7 +352,6 @@
 %if %java
 
 %package plugin-java
-
 Summary:Java API for %{name}
 Group:  System/Monitoring
 Requires:   %{name} = %{version}-%{release}
@@ -379,7 +364,6 @@
 %if %virt
 
 %package plugin-virt
-
 Summary:Virtual Machine Statistics Plugin for %{name}
 Group:  System/Monitoring
 Requires:   %{name} = %{version}-%{release}
@@ -392,7 +376,6 @@
 %if %xmms
 
 %package plugin-xmms
-
 Summary:XMMS Monitoring Plugin for %{name}
 Group:  System/Monitoring
 Requires:   %{name} = %{version}-%{release}
@@ -405,7 +388,6 @@
 %if %dbi
 
 %package plugin-dbi
-
 Summary:DBI Storage Plugin for %{name}
 Group:  System/Monitoring
 Requires:   %{name} = %{version}-%{release}
@@ -418,7 +400,6 @@
 %if %memcachec
 
 %package plugin-memcachec
-
 Summary:Memcache Daemon Monitoring Plugin for %{name}
 

commit coreutils for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package coreutils for openSUSE:Factory
checked in at Tue Oct 18 13:59:54 CEST 2011.




--- openSUSE:Factory/coreutils/coreutils.changes2011-10-16 
12:43:42.0 +0200
+++ /mounts/work_src_done/STABLE/coreutils/coreutils.changes2011-10-17 
15:29:22.0 +0200
@@ -1,0 +2,8 @@
+Mon Oct 17 15:25:21 CEST 2011 - p...@suse.de
+
+- Add upstream patch that fixes three bugs in tac:
+  - remove sole use of sprintf in favor of stpcpy
+  - don't misbehave with multiple non-seekable inputs
+  - don't leak a file descriptor for each non-seekable input   
   
+
+---

calling whatdependson for head-i586


New:

  coreutils-fix_tac.patch



Other differences:
--
++ coreutils.spec ++
--- /var/tmp/diff_new_pack.7QlP9y/_old  2011-10-18 13:59:49.0 +0200
+++ /var/tmp/diff_new_pack.7QlP9y/_new  2011-10-18 13:59:49.0 +0200
@@ -56,6 +56,7 @@
 Patch32:coreutils-ptr_int_casts.patch
 Patch33:coreutils-8.9-singlethreaded-sort.patch
 Patch34:coreutils-acl-nofollow.patch
+Patch35:coreutils-fix_tac.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 # this will create a cycle, broken up randomly - coreutils is just too core to 
have other
 # prerequires
@@ -97,6 +98,7 @@
 %patch32
 %patch33
 %patch34
+%patch35
 
 xz -dc %{S:4} po/de.po
 



++ coreutils-fix_tac.patch ++
From cdd328f232a93fb40aec25d0681ef191eaeba2da Mon Sep 17 00:00:00 2001
From: Jim Meyering meyer...@redhat.com
Date: Sun, 16 Oct 2011 10:35:56 +0200
Subject: [PATCH 1/3] maint: tac: remove sole use of sprintf in favor of
 stpcpy

* src/tac.c (copy_to_temp): Use stpcpy rather than sprintf.
Move some declarations down to point of initialization.
---
 src/tac.c |   17 +++--
 1 files changed, 7 insertions(+), 10 deletions(-)

Index: src/tac.c
===
--- src/tac.c.orig  2011-02-19 18:17:03.0 +0100
+++ src/tac.c   2011-10-17 15:46:27.879485098 +0200
@@ -426,20 +426,17 @@ copy_to_temp (FILE **g_tmp, char **g_tem
 {
   static char *template = NULL;
   static char const *tempdir;
-  char *tempfile;
-  FILE *tmp;
-  int fd;
 
   if (template == NULL)
 {
-  char const * const Template = %s/tacXX;
+  char const * const Template = tacXX;
   tempdir = getenv (TMPDIR);
   if (tempdir == NULL)
 tempdir = DEFAULT_TMPDIR;
 
-  /* Subtract 2 for `%s' and add 1 for the trailing NUL byte.  */
-  template = xmalloc (strlen (tempdir) + strlen (Template) - 2 + 1);
-  sprintf (template, Template, tempdir);
+  /* Add 1 for the slash and one for the trailing NUL byte.  */
+  template = xmalloc (strlen (tempdir) + strlen (Template) + 1 + 1);
+  stpcpy (stpcpy (stpcpy (template, tempdir), /), Template);
 }
 
   /* FIXME: there's a small window between a successful mkstemp call
@@ -451,21 +448,23 @@ copy_to_temp (FILE **g_tmp, char **g_tem
  FIXME: clean up upon fatal signal.  Don't block them, in case
  $TMPFILE is a remote file system.  */
 
-  tempfile = template;
-  fd = mkstemp (template);
+  char *tempfile = xstrdup (template);
+  int fd = mkstemp (tempfile);
   if (fd  0)
 {
   error (0, errno, _(cannot create temporary file in %s),
  quote (tempdir));
+  free (tempfile);
   return false;
 }
 
-  tmp = fdopen (fd, (O_BINARY ? w+b : w+));
+  FILE *tmp = fdopen (fd, (O_BINARY ? w+b : w+));
   if (! tmp)
 {
   error (0, errno, _(cannot open %s for writing), quote (tempfile));
   close (fd);
   unlink (tempfile);
+  free (tempfile);
   return false;
 }
 
@@ -501,6 +500,7 @@ copy_to_temp (FILE **g_tmp, char **g_tem
 
  Fail:
   fclose (tmp);
+  free (tempfile);
   return false;
 }
 
@@ -512,8 +512,14 @@ tac_nonseekable (int input_fd, const cha
 {
   FILE *tmp_stream;
   char *tmp_file;
-  return (copy_to_temp (tmp_stream, tmp_file, input_fd, file)
-   tac_seekable (fileno (tmp_stream), tmp_file));
+
+  if (!copy_to_temp (tmp_stream, tmp_file, input_fd, file))
+return false;
+
+  bool ok = tac_seekable (fileno (tmp_stream), tmp_file);
+  fclose (tmp_stream);
+  free (tmp_file);
+  return ok;
 }
 
 /* Print FILE in reverse, copying it to a temporary
Index: tests/Makefile.am
===
--- tests/Makefile.am.orig  2011-10-17 15:40:44.533154336 +0200
+++ tests/Makefile.am   2011-10-17 15:40:44.882149592 +0200
@@ -270,6 +270,7 @@ TESTS = \
   misc/sum-sysv\
   misc/tac \
   misc/tac-continue

commit deja-dup for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package deja-dup for openSUSE:Factory
checked in at Tue Oct 18 14:00:14 CEST 2011.




--- openSUSE:Factory/deja-dup/deja-dup.changes  2011-10-02 09:55:59.0 
+0200
+++ /mounts/work_src_done/STABLE/deja-dup/deja-dup.changes  2011-10-18 
08:43:56.0 +0200
@@ -1,0 +2,15 @@
+Tue Oct 18 06:41:29 UTC 2011 - vu...@opensuse.org
+
+- Update to version 20.1:
+  + Bug Fixes:
+- Correctly backup or exclude folders with [, ], ?, and * in
+  their names
+- Fix translation of some strings when used in control center
+  panel mode
+- Fix a nautilus crash if the gsettings schema isn't installed
+  correctly
+- Allow LUKS encrypted volumes to appear in backup location
+  list
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  deja-dup-20.0.tar.bz2

New:

  deja-dup-20.1.tar.bz2



Other differences:
--
++ deja-dup.spec ++
--- /var/tmp/diff_new_pack.x2YyJ5/_old  2011-10-18 14:00:02.0 +0200
+++ /var/tmp/diff_new_pack.x2YyJ5/_new  2011-10-18 14:00:02.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   deja-dup
-Version:20.0
+Version:20.1
 Release:1
 # FIXME: the %%{_datadir}/help/$locale/ files be found by %%find_lang
 # FIXME: check if python-cloudfiles is packaged, and if yes, uncomment 
Recommends

++ deja-dup-20.0.tar.bz2 - deja-dup-20.1.tar.bz2 ++
 16725 lines of diff (skipped)

continue with 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 desktop-file-utils for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package desktop-file-utils for 
openSUSE:Factory
checked in at Tue Oct 18 14:00:29 CEST 2011.




--- openSUSE:Factory/desktop-file-utils/desktop-file-utils.changes  
2011-10-02 09:56:14.0 +0200
+++ /mounts/work_src_done/STABLE/desktop-file-utils/desktop-file-utils.changes  
2011-10-05 20:43:10.0 +0200
@@ -1,0 +2,5 @@
+Wed Oct  5 20:41:12 CEST 2011 - sbra...@suse.cz
+
+- Added MIME defaults heuristic (bnc#456026, fdo#30214).
+
+---

calling whatdependson for head-i586


New:

  desktop-file-utils-generate-defaults-list.patch



Other differences:
--
++ desktop-file-utils.spec ++
--- /var/tmp/diff_new_pack.jP9ZqL/_old  2011-10-18 14:00:25.0 +0200
+++ /var/tmp/diff_new_pack.jP9ZqL/_new  2011-10-18 14:00:25.0 +0200
@@ -30,6 +30,8 @@
 Patch0: desktop-file-utils-suse-keys.patch
 # PATCH-FIX-UPSTREAM deskopt-file-utils-unity.patch vu...@opensuse.org -- 
Accept Unity as desktop environment, taken from git
 Patch1: desktop-file-utils-unity.patch
+# PATCH-FEATURE-UPSTREAM desktop-file-utils-generate-defaults-list.patch 
fdo30214 sbra...@suse.cz -- Generate defaults.list.
+Patch2: desktop-file-utils-generate-defaults-list.patch
 BuildRequires:  glib2-devel
 BuildRequires:  pkg-config
 PreReq: /bin/rm
@@ -48,8 +50,10 @@
 %setup -q
 %patch0 -p0
 %patch1 -p1
+%patch2 -p1
 
 %build
+mkdir m4 ; autoreconf -f -i
 %configure \
 --with-lispdir=%{_datadir}/emacs/site-lisp
 %__make %{?_smp_mflags}
@@ -68,7 +72,8 @@
 touch %{buildroot}%{_datadir}/applications/mimeinfo.cache
 
 %post
-%{_bindir}/update-desktop-database --quiet %{_datadir}/applications || true
+%{_bindir}/update-desktop-database --quiet --defaults-list || true
+%{_bindir}/update-desktop-database --quiet --defaults-list 
%{_datadir}/applications || true
 
 %files
 %defattr(-, root, root)
@@ -85,5 +90,6 @@
 %dir %{_datadir}/emacs/site-lisp
 %{_datadir}/emacs/site-lisp/*.el*
 %{_sysconfdir}/rpm/macros.desktop-file-utils
+%config %{_sysconfdir}/xdg/*.conf
 
 %changelog

++ desktop-file-utils-generate-defaults-list.patch ++
 743 lines (skipped)

++ macros.desktop-file-utils ++
--- /var/tmp/diff_new_pack.jP9ZqL/_old  2011-10-18 14:00:25.0 +0200
+++ /var/tmp/diff_new_pack.jP9ZqL/_new  2011-10-18 14:00:25.0 +0200
@@ -18,8 +18,10 @@
 %desktop_database_post()   
   \
 if test -x %{_bindir}/update-desktop-database; then
   \
 %if x%1 != x%%1
   \
+  %{_bindir}/update-desktop-database --quiet --defaults-list || true   
   \
   %{_bindir}/update-desktop-database --quiet %1 || true  
   \
 %else  
   \
+  %{_bindir}/update-desktop-database --quiet --defaults-list || true   
   \
   %{_bindir}/update-desktop-database --quiet %{_datadir}/applications || 
true   \
 %endif 
   \
 fi 
@@ -30,8 +32,10 @@
 if [ $1 -eq 0 ]; then  
   \
   if test -x %{_bindir}/update-desktop-database; then  
   \
 %if x%1 != x%%1
   \
+%{_bindir}/update-desktop-database --quiet --defaults-list || true 
   \
 %{_bindir}/update-desktop-database --quiet %1 || true
   \
 %else  
   \
+%{_bindir}/update-desktop-database --quiet --defaults-list || true 
   \
 %{_bindir}/update-desktop-database --quiet %{_datadir}/applications || 
true \
 %endif 
   \
   fi   
   \

continue with 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 empathy for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package empathy for openSUSE:Factory
checked in at Tue Oct 18 14:00:39 CEST 2011.




--- openSUSE:Factory/empathy/empathy.changes2011-10-11 16:52:35.0 
+0200
+++ /mounts/work_src_done/STABLE/empathy/empathy.changes2011-10-17 
17:54:11.0 +0200
@@ -1,0 +2,9 @@
+Mon Oct 17 17:36:32 CEST 2011 - dims...@opensuse.org
+
+- Update to version 3.2.1:
+  + bgo#658542: Use new Subject and RoomConfig APIs rather than
+Telepathy.Properties
+  + bgo#660586: setting to third party Adium theme leads to crash
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  empathy-3.2.0.1.tar.bz2

New:

  empathy-3.2.1.tar.bz2



Other differences:
--
++ empathy.spec ++
--- /var/tmp/diff_new_pack.wTnzUC/_old  2011-10-18 14:00:34.0 +0200
+++ /var/tmp/diff_new_pack.wTnzUC/_new  2011-10-18 14:00:34.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   empathy
-Version:3.2.0.1
+Version:3.2.1
 Release:1
 # FIXME: add telepathy-fastream BuildRequires when upstream is happy with it 
(ie, not experimental anymore)
 License:GPLv2+
@@ -57,7 +57,7 @@
 BuildRequires:  pkgconfig(mission-control-plugins)
 BuildRequires:  pkgconfig(nautilus-sendto)
 BuildRequires:  pkgconfig(telepathy-farsight) = 0.0.14
-BuildRequires:  pkgconfig(telepathy-glib) = 0.15.5
+BuildRequires:  pkgconfig(telepathy-glib) = 0.16.0
 BuildRequires:  pkgconfig(telepathy-logger-0.2) = 0.2.10
 BuildRequires:  pkgconfig(webkitgtk-3.0) = 1.3.13
 Requires:   iso-codes

++ empathy-3.2.0.1.tar.bz2 - empathy-3.2.1.tar.bz2 ++
 19668 lines of diff (skipped)

continue with 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 eog for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package eog for openSUSE:Factory
checked in at Tue Oct 18 14:00:52 CEST 2011.




--- openSUSE:Factory/eog/eog.changes2011-10-05 11:08:14.0 +0200
+++ /mounts/work_src_done/STABLE/eog/eog.changes2011-10-17 
22:53:03.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct 17 20:45:29 UTC 2011 - dims...@opensuse.org
+
+- Update to version 3.2.1:
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  eog-3.2.0.tar.bz2

New:

  eog-3.2.1.tar.bz2



Other differences:
--
++ eog.spec ++
--- /var/tmp/diff_new_pack.oISnPn/_old  2011-10-18 14:00:47.0 +0200
+++ /var/tmp/diff_new_pack.oISnPn/_new  2011-10-18 14:00:47.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   eog
-Version:3.2.0
+Version:3.2.1
 Release:1
 # FIXME: replace libexempi-devel BuildRequires with pkgconfig(exempi-2.0) once 
fixed exempi is in
 License:GPLv2+ ; LGPLv2.1+

++ eog-3.2.0.tar.bz2 - eog-3.2.1.tar.bz2 ++
 26066 lines of diff (skipped)

continue with 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 evince for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package evince for openSUSE:Factory
checked in at Tue Oct 18 14:01:07 CEST 2011.




--- openSUSE:Factory/evince/evince.changes  2011-10-04 18:09:15.0 
+0200
+++ /mounts/work_src_done/STABLE/evince/evince.changes  2011-10-17 
20:09:49.0 +0200
@@ -1,0 +2,9 @@
+Mon Oct 17 20:06:18 CEST 2011 - dims...@opensuse.org
+
+- Update to version 3.2.1:
+  + Make sure page labels are valid utf-8 strings in PostScript
+backend (bgo#654263)
+  + Documentation improvements.
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  evince-3.2.0.tar.bz2

New:

  evince-3.2.1.tar.bz2



Other differences:
--
++ evince.spec ++
--- /var/tmp/diff_new_pack.dQGuZm/_old  2011-10-18 14:01:01.0 +0200
+++ /var/tmp/diff_new_pack.dQGuZm/_new  2011-10-18 14:01:01.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   evince
-Version:3.2.0
+Version:3.2.1
 Release:1
 %define _major_version 3.0
 License:GPLv2+

++ evince-3.2.0.tar.bz2 - evince-3.2.1.tar.bz2 ++
 30866 lines of diff (skipped)

continue with 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 evolution for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package evolution for openSUSE:Factory
checked in at Tue Oct 18 14:01:20 CEST 2011.




--- openSUSE:Factory/evolution/evolution.changes2011-10-13 
12:23:20.0 +0200
+++ /mounts/work_src_done/STABLE/evolution/evolution.changes2011-10-16 
19:50:34.0 +0200
@@ -1,0 +2,12 @@
+Sun Oct 16 17:44:25 UTC 2011 - vu...@opensuse.org
+
+- Update to version 3.2.1:
+  + Bugs fixed: bgo#576478, bgo#655625, bgo#658066, bgo#658835,
+bgo#659440, bgo#659486, bgo#659517, bgo#659558, bgo#659568,
+bgo#659726, bgo#659828, bgo#659874, bgo#659876, bgo#659932,
+bgo#660224, bgo#660721, bgo#660782, bgo#660799, bgo#660829,
+bgo#660850, bgo#660861, bgo#661434, bgo#661542.
+  + Updated translations.
+- Drop evolution-fix-cannot-upgrade-random.patch: fixed upstream.
+
+---

calling whatdependson for head-i586


Old:

  evolution-3.2.0.tar.bz2
  evolution-fix-cannot-upgrade-random.patch

New:

  evolution-3.2.1.tar.bz2



Other differences:
--
++ evolution.spec ++
--- /var/tmp/diff_new_pack.sT3652/_old  2011-10-18 14:01:16.0 +0200
+++ /var/tmp/diff_new_pack.sT3652/_new  2011-10-18 14:01:16.0 +0200
@@ -72,13 +72,11 @@
 Group:  Productivity/Networking/Email/Clients
 # This should be updated upon major version changes; it should match 
BASE_VERSION as defined in configure.in.
 %define evolution_base_version 3.2
-Version:3.2.0
+Version:3.2.1
 Release:1
 # FIXME: check with upstream/meego if we want to enable clutter for express 
mode
 Summary:The Integrated GNOME Mail, Calendar, and Address Book Suite
 Source0:
http://download.gnome.org/sources/evolution/3.2/%{name}-%{version}.tar.bz2
-# PATCH-FIX-UPSTREAM evolution-fix-cannot-upgrade-random.patch 
vu...@opensuse.org -- Properly initialize memory to avoid weird Cannot upgrade 
from version random dialog
-Patch0: evolution-fix-cannot-upgrade-random.patch
 # PATCH-FIX-OPENSUSE evolution-custom-openldap-includes.patch m...@novell.com 
-- look for ldap includes in %{_libdir}/evoldap/include
 Patch15:evolution-custom-openldap-includes.patch
 # PATCH-FIX-UPSTREAM bnc-435722-book-uri-long.patch bnc#435722 
abhar...@suse.de -- Book URI: Spills Into Second Column.
@@ -173,7 +171,6 @@
 %prep
 %setup -q
 translation-update-upstream
-%patch0 -p1
 %if %USE_EVOLDAP
 %patch15 -p1
 %endif

++ evolution-3.2.0.tar.bz2 - evolution-3.2.1.tar.bz2 ++
openSUSE:Factory/evolution/evolution-3.2.0.tar.bz2 
/mounts/work_src_done/STABLE/evolution/evolution-3.2.1.tar.bz2 differ: char 11, 
line 1

continue with 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 evolution-data-server for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package evolution-data-server for 
openSUSE:Factory
checked in at Tue Oct 18 14:01:44 CEST 2011.




--- openSUSE:Factory/evolution-data-server/evolution-data-server.changes
2011-10-02 09:59:40.0 +0200
+++ 
/mounts/work_src_done/STABLE/evolution-data-server/evolution-data-server.changes
2011-10-16 19:43:12.0 +0200
@@ -1,0 +2,9 @@
+Sun Oct 16 17:41:31 UTC 2011 - vu...@opensuse.org
+
+- Update to version 3.2.1:
+  + Bugs fixed: bgo#620382, bgo#659438, bgo#659553, bgo#659568,
+bgo#659914, bgo#660246, bgo#660533, bgo#660615, bgo#660829,
+bgo#661432.
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  evolution-data-server-3.2.0.tar.bz2

New:

  evolution-data-server-3.2.1.tar.bz2



Other differences:
--
++ evolution-data-server.spec ++
--- /var/tmp/diff_new_pack.LCShve/_old  2011-10-18 14:01:31.0 +0200
+++ /var/tmp/diff_new_pack.LCShve/_new  2011-10-18 14:01:31.0 +0200
@@ -33,7 +33,7 @@
 %define _evo_version 3.2
 License:LGPLv2+
 Group:  Development/Libraries/GNOME
-Version:3.2.0
+Version:3.2.1
 Release:1
 Summary:Evolution Data Server
 Url:http://www.gnome.org

++ evolution-data-server-3.2.0.tar.bz2 - 
evolution-data-server-3.2.1.tar.bz2 ++
 65116 lines of diff (skipped)

continue with 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 evolution-exchange for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package evolution-exchange for 
openSUSE:Factory
checked in at Tue Oct 18 14:02:13 CEST 2011.




--- openSUSE:Factory/evolution-exchange/evolution-exchange.changes  
2011-10-02 10:00:04.0 +0200
+++ /mounts/work_src_done/STABLE/evolution-exchange/evolution-exchange.changes  
2011-10-16 19:49:34.0 +0200
@@ -1,0 +2,11 @@
+Sun Oct 16 17:48:07 UTC 2011 - vu...@opensuse.org
+
+- Update to version 3.2.1:
+  + Bugs fixed:
+- bgo#656806: Public calendar can be accessed only after
+  restart
+- bgo#659554: Calendars always read-only
+- bgo#659666: Critical warning on folder rename
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  evolution-exchange-3.2.0.tar.bz2

New:

  evolution-exchange-3.2.1.tar.bz2



Other differences:
--
++ evolution-exchange.spec ++
--- /var/tmp/diff_new_pack.iQGT8v/_old  2011-10-18 14:02:09.0 +0200
+++ /var/tmp/diff_new_pack.iQGT8v/_new  2011-10-18 14:02:09.0 +0200
@@ -37,7 +37,7 @@
 BuildRequires:  translation-update-upstream
 License:GPLv2+
 Group:  Productivity/Networking/Email/Utilities
-Version:3.2.0
+Version:3.2.1
 Release:1
 Summary:Evolution Connector for Microsoft Exchange Server 2000/2003
 Source: 
http://download.gnome.org/sources/evolution-exchange/3.2/%{name}-%{version}.tar.bz2

++ evolution-exchange-3.2.0.tar.bz2 - evolution-exchange-3.2.1.tar.bz2 
++
 7581 lines of diff (skipped)

continue with 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 evolution-groupwise for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package evolution-groupwise for 
openSUSE:Factory
checked in at Tue Oct 18 14:02:29 CEST 2011.




--- openSUSE:Factory/evolution-groupwise/evolution-groupwise.changes
2011-10-02 10:00:11.0 +0200
+++ 
/mounts/work_src_done/STABLE/evolution-groupwise/evolution-groupwise.changes
2011-10-16 19:46:39.0 +0200
@@ -1,0 +2,6 @@
+Sun Oct 16 17:44:58 UTC 2011 - vu...@opensuse.org
+
+- Update to version 3.2.1:
+  + bgo#661543: GroupWise connector always sets SOAP port to 0
+
+---

calling whatdependson for head-i586


Old:

  evolution-groupwise-3.2.0.tar.bz2

New:

  evolution-groupwise-3.2.1.tar.bz2



Other differences:
--
++ evolution-groupwise.spec ++
--- /var/tmp/diff_new_pack.GdDvVp/_old  2011-10-18 14:02:18.0 +0200
+++ /var/tmp/diff_new_pack.GdDvVp/_new  2011-10-18 14:02:18.0 +0200
@@ -21,7 +21,7 @@
 Name:   evolution-groupwise
 # This should be updated upon major version changes; it should match 
BASE_VERSION as defined in configure.in.
 %define evolution_base_version 3.2
-Version:3.2.0
+Version:3.2.1
 Release:1
 License:LGPLv2.1
 Summary:GroupWise Connector for Evolution

++ evolution-groupwise-3.2.0.tar.bz2 - evolution-groupwise-3.2.1.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/evolution-groupwise-3.2.0/ChangeLog 
new/evolution-groupwise-3.2.1/ChangeLog
--- old/evolution-groupwise-3.2.0/ChangeLog 2011-09-24 23:07:34.0 
+0200
+++ new/evolution-groupwise-3.2.1/ChangeLog 2011-10-16 18:15:48.0 
+0200
@@ -1,2 +1,38 @@
 # Generated by Makefile. Do not edit.
 
+commit 97dab0e4cd6f618eb768560e7b2cd12f61b32163
+Author: Matthew Barnes mbar...@redhat.com
+Date:   Sun Oct 16 12:14:33 2011 -0400
+
+NEWS update for 3.2.1 release.
+
+ NEWS |8 
+ 1 files changed, 8 insertions(+), 0 deletions(-)
+
+commit 3aae80f55d5fd565274f19210564e74d5350a66c
+Author: Vibha Yadav yvi...@novell.com
+Date:   Fri Oct 14 11:09:12 2011 +0530
+
+Bug #661543 - Evolution GroupWise connector always sets SOAP port to 0
+
+Porting CamelGroupwiseSettings:soap-port from unsigned int to string
+type for proper property binding.
+
+ src/camel/camel-groupwise-settings.c |   23 ---
+ src/camel/camel-groupwise-settings.h |4 ++--
+ src/camel/camel-groupwise-store.c|8 
+ src/plugins/camel-gw-listener.c  |   26 +-
+ src/plugins/proxy-login.c|8 
+ src/plugins/proxy.c  |4 ++--
+ src/plugins/send-options.c   |4 ++--
+ src/plugins/share-folder-common.c|4 ++--
+ 8 files changed, 41 insertions(+), 40 deletions(-)
+
+commit e0bc344798997751f267ade46da6dcfdadff3862
+Author: Milan Crha mc...@redhat.com
+Date:   Mon Sep 26 08:24:23 2011 +0200
+
+Post-release version bump
+
+ configure.ac |2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/evolution-groupwise-3.2.0/NEWS 
new/evolution-groupwise-3.2.1/NEWS
--- old/evolution-groupwise-3.2.0/NEWS  2011-09-24 22:37:32.0 +0200
+++ new/evolution-groupwise-3.2.1/NEWS  2011-10-16 18:14:25.0 +0200
@@ -1,3 +1,11 @@
+Evolution GroupWise 3.2.1 2011-07-17
+
+
+Bug Fixes:
+   Bug 661543 - Evolution GroupWise connector always sets SOAP port to 0
+(Vibha Yadav)
+
+
 Evolution GroupWise 3.2.0 2011-09-26
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/evolution-groupwise-3.2.0/configure 
new/evolution-groupwise-3.2.1/configure
--- old/evolution-groupwise-3.2.0/configure 2011-09-24 23:07:15.0 
+0200
+++ new/evolution-groupwise-3.2.1/configure 2011-10-16 18:14:55.0 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for evolution-groupwise 3.2.0.
+# Generated by GNU Autoconf 2.68 for evolution-groupwise 3.2.1.
 #
 # Report bugs to 
http://bugzilla.gnome.org/enter_bug.cgi?product=Evolution%20Groupwise.
 #
@@ -571,8 +571,8 @@
 # Identity of this package.
 PACKAGE_NAME='evolution-groupwise'
 PACKAGE_TARNAME='evolution-groupwise'
-PACKAGE_VERSION='3.2.0'
-PACKAGE_STRING='evolution-groupwise 3.2.0'
+PACKAGE_VERSION='3.2.1'
+PACKAGE_STRING='evolution-groupwise 3.2.1'
 
PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=Evolution%20Groupwise'
 PACKAGE_URL=''
 
@@ -1460,7 +1460,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long 

commit file-roller for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package file-roller for openSUSE:Factory
checked in at Tue Oct 18 14:02:41 CEST 2011.




--- openSUSE:Factory/file-roller/file-roller.changes2011-10-11 
16:53:03.0 +0200
+++ /mounts/work_src_done/STABLE/file-roller/file-roller.changes
2011-10-17 21:35:00.0 +0200
@@ -1,0 +2,8 @@
+Mon Oct 17 19:33:30 UTC 2011 - dims...@opensuse.org
+
+- Update to version 3.2.1:
+  + Do not crash if nautilus schema is not present
+  + Use $(DISABLE_DEPRECATED) in copy-n-paste/Makefile.am
+- Drop file-roller-no-crash-without-nautilus.patch: fixed upstream.
+
+---

calling whatdependson for head-i586


Old:

  file-roller-3.2.0.tar.bz2
  file-roller-no-crash-without-nautilus.patch

New:

  file-roller-3.2.1.tar.bz2



Other differences:
--
++ file-roller.spec ++
--- /var/tmp/diff_new_pack.xRS35e/_old  2011-10-18 14:02:36.0 +0200
+++ /var/tmp/diff_new_pack.xRS35e/_new  2011-10-18 14:02:36.0 +0200
@@ -18,15 +18,13 @@
 
 
 Name:   file-roller
-Version:3.2.0
+Version:3.2.1
 Release:1
 License:GPLv2+
 Summary:An Archive Manager for GNOME
 Url:http://fileroller.sourceforge.net
 Group:  Productivity/Archiving/Compression
 Source: 
http://download.gnome.org/sources/file-roller/3.2/%{name}-%{version}.tar.bz2
-# PATCH-FIX-UPSTREAM file-roller-no-crash-without-nautilus.patch bgo#649094 
bnc#722863 vu...@opensuse.org -- Do not crash if nautilus gsettings schemas are 
not installed
-Patch0: file-roller-no-crash-without-nautilus.patch
 # Needed for directory ownership
 BuildRequires:  dbus-1
 BuildRequires:  fdupes
@@ -92,7 +90,6 @@
 %prep
 %setup -q
 translation-update-upstream
-%patch0 -p1
 
 %build
 %configure\

++ file-roller-3.2.0.tar.bz2 - file-roller-3.2.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/file-roller-3.2.0/ChangeLog 
new/file-roller-3.2.1/ChangeLog
--- old/file-roller-3.2.0/ChangeLog 2011-09-26 20:21:41.0 +0200
+++ new/file-roller-3.2.1/ChangeLog 2011-10-17 20:18:02.0 +0200
@@ -1,6 +1,52 @@
+commit 6a69a8ecaefa712460b8b7613a93ebcd33c1822a
+Author: Paolo Bacchilega pao...@src.gnome.org
+Date:   2011-10-17
+
+updated for version 3.2.1
+
+M  NEWS
+M  configure.ac
+
+commit 0d5608aaf3dd5e60d1baafa10f3c19f5a1239905
+Author: Paolo Bacchilega pao...@src.gnome.org
+Date:  2011-10-11
+
+Fixed Nautilus schema check
+
+M  src/fr-window.c
+
+commit 83ab53d16213fa79baad17ee63290287c708b0cf
+Author: Andreas Henriksson andr...@fatal.se
+Date:  2011-10-10
+
+Use $(DISABLE_DEPRECATED) in copy-n-paste/Makefile.am
+
+Take the --disable-deprecated configure flag into account instead
+of just always disabling deprecated code in copy-n-paste/.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=661031
+
+M  copy-n-paste/Makefile.am
+
+commit 8b0c2a1401c10b351a7065bf83b7908fc52dd2b5
+Author: Vincent Untz vu...@gnome.org
+Date:  2011-10-10
+
+Do not crash if nautilus schema is not present
+
+A lot of users use file-roller in non-GNOME environments, where
+nautilus
+is not installed. We don't want to crash in that case as we only need
+the nautilus schema to determine if we use single-click vs
+double-click.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=649094
+
+M  src/fr-window.c
+
 commit 5605825a022cd03e5d5d6614fdd5545f2929a0e6
 Author: Paolo Bacchilega pao...@src.gnome.org
-Date:   2011-09-26
+Date:  2011-09-26
 
 updated for version 3.2.0
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/file-roller-3.2.0/NEWS new/file-roller-3.2.1/NEWS
--- old/file-roller-3.2.0/NEWS  2011-09-26 20:21:15.0 +0200
+++ new/file-roller-3.2.1/NEWS  2011-10-17 20:14:45.0 +0200
@@ -1,3 +1,11 @@
+version 3.2.1
+-
+
+ Bugs fixed:
+
+  * Do not crash if nautilus schema is not present (Vincent Untz)
+  * Use $(DISABLE_DEPRECATED) in copy-n-paste/Makefile.am (Andreas Henriksson)
+
 version 3.2.0
 -
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/file-roller-3.2.0/aclocal.m4 
new/file-roller-3.2.1/aclocal.m4
--- old/file-roller-3.2.0/aclocal.m42011-09-26 20:16:40.0 +0200
+++ new/file-roller-3.2.1/aclocal.m42011-10-17 20:15:01.0 +0200
@@ -84,7 +84,7 @@
 [
   m4_pattern_allow([AM_V_GEN])
   AC_ARG_ENABLE(schemas-compile,
-AC_HELP_STRING([--disable-schemas-compile],
+AS_HELP_STRING([--disable-schemas-compile],
[Disable regeneration of gschemas.compiled on 
install]),
 [case ${enableval} in
   yes) 

commit gedit for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package gedit for openSUSE:Factory
checked in at Tue Oct 18 14:03:07 CEST 2011.




--- openSUSE:Factory/gedit/gedit.changes2011-10-07 10:29:38.0 
+0200
+++ /mounts/work_src_done/STABLE/gedit/gedit.changes2011-10-17 
08:01:39.0 +0200
@@ -1,0 +2,9 @@
+Mon Oct 17 06:00:23 UTC 2011 - vu...@opensuse.org
+
+- Update to version 3.2.1:
+  + More help awesome
+  + Use GtkGrid in the replace dialog.
+  + Misc bugfixes
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  gedit-3.2.0.tar.bz2

New:

  gedit-3.2.1.tar.bz2



Other differences:
--
++ gedit.spec ++
--- /var/tmp/diff_new_pack.R1oIUx/_old  2011-10-18 14:02:57.0 +0200
+++ /var/tmp/diff_new_pack.R1oIUx/_new  2011-10-18 14:02:57.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   gedit
-Version:3.2.0
+Version:3.2.1
 Release:1
 License:GPLv2+
 Summary:Small and lightweight UTF-8 text editor
@@ -40,7 +40,7 @@
 BuildRequires:  pkgconfig(gtksourceview-3.0)
 BuildRequires:  pkgconfig(libpeas-gtk-1.0)
 BuildRequires:  pkgconfig(libsoup-2.4)
-BuildRequires:  pkgconfig(pygobject-3.0) = 2.90.2
+BuildRequires:  pkgconfig(pygobject-3.0) = 3.0.0
 Requires:   python-gobject
 Recommends: %{name}-lang
 Recommends: iso-codes

++ gedit-3.2.0.tar.bz2 - gedit-3.2.1.tar.bz2 ++
 9415 lines of diff (skipped)

continue with 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 gedit-plugins for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package gedit-plugins for openSUSE:Factory
checked in at Tue Oct 18 14:03:28 CEST 2011.




--- openSUSE:Factory/gedit-plugins/gedit-plugins.changes2011-10-02 
10:02:44.0 +0200
+++ /mounts/work_src_done/STABLE/gedit-plugins/gedit-plugins.changes
2011-10-17 08:02:17.0 +0200
@@ -1,0 +2,9 @@
+Mon Oct 17 06:00:28 UTC 2011 - vu...@opensuse.org
+
+- Update to version 3.2.1:
+  + i18n fixes
+  + Fix doc module in commander plugin
+  + Misc bugfixes
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  gedit-plugins-3.2.0.tar.bz2

New:

  gedit-plugins-3.2.1.tar.bz2



Other differences:
--
++ gedit-plugins.spec ++
--- /var/tmp/diff_new_pack.F7qHwF/_old  2011-10-18 14:03:10.0 +0200
+++ /var/tmp/diff_new_pack.F7qHwF/_new  2011-10-18 14:03:10.0 +0200
@@ -20,7 +20,7 @@
 
 Name:   gedit-plugins
 Summary:A collection of plugins for gedit
-Version:3.2.0
+Version:3.2.1
 Release:1
 Source: 
http://download.gnome.org/sources/gedit-plugins/3.2/%{name}-%{version}.tar.bz2
 License:GPLv2+
@@ -32,7 +32,7 @@
 BuildRequires:  pkg-config
 BuildRequires:  translation-update-upstream
 BuildRequires:  pkgconfig(dbus-python)
-BuildRequires:  pkgconfig(gedit)
+BuildRequires:  pkgconfig(gedit) = 3.2.1
 BuildRequires:  pkgconfig(gtk+-3.0)
 BuildRequires:  pkgconfig(gtksourceview-3.0)
 BuildRequires:  pkgconfig(libpeas-gtk-1.0)

++ gedit-plugins-3.2.0.tar.bz2 - gedit-plugins-3.2.1.tar.bz2 ++
 20240 lines of diff (skipped)

continue with 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 gimp-save-for-web for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package gimp-save-for-web for 
openSUSE:Factory
checked in at Tue Oct 18 14:03:40 CEST 2011.




--- openSUSE:Factory/gimp-save-for-web/gimp-save-for-web.changes
2011-10-02 10:03:38.0 +0200
+++ /mounts/work_src_done/STABLE/gimp-save-for-web/gimp-save-for-web.changes
2011-10-17 21:04:21.0 +0200
@@ -1,0 +2,9 @@
+Mon Oct 17 20:48:02 CEST 2011 - dims...@opensuse.org
+
+- Update to version 0.29.3:
+  + Fix build with GIMP 2.7+
+  + Fix build errors
+  + Updated translations.
+- Drop gsfw-libm.patch: fixed upstream.
+
+---

calling whatdependson for head-i586


Old:

  gimp-save-for-web-0.29.0.tar.bz2
  gsfw-libm.patch

New:

  gimp-save-for-web-0.29.3.tar.bz2



Other differences:
--
++ gimp-save-for-web.spec ++
--- /var/tmp/diff_new_pack.dtMP2H/_old  2011-10-18 14:03:33.0 +0200
+++ /var/tmp/diff_new_pack.dtMP2H/_new  2011-10-18 14:03:33.0 +0200
@@ -18,15 +18,13 @@
 
 
 Name:   gimp-save-for-web
-Version:0.29.0
-Release:6
+Version:0.29.3
+Release:1
 License:GPLv2+ ; MIT License (or similar)
 Summary:Save for Web plug-in for The Gimp
 Url:http://registry.gimp.org/node/33
 Group:  Productivity/Graphics/Bitmap Editors
-Source: %{name}-%{version}.tar.bz2
-# PATCH-FIX-UPSTREAM gsfw-libm.patch vu...@opensuse.org -- Link to libm, sent 
upstream by mail on 2011-09-28
-Patch0: gsfw-libm.patch
+Source: http://registry.gimp.org/files/%{name}-%{version}.tar.bz2
 BuildRequires:  gimp-devel
 BuildRequires:  intltool
 %if %{?gimp_api_version:1}0
@@ -48,7 +46,6 @@
 %lang_package
 %prep
 %setup -q
-%patch0
 
 %build
 autoreconf -fiv

++ gimp-save-for-web-0.29.0.tar.bz2 - gimp-save-for-web-0.29.3.tar.bz2 
++
 13604 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/gimp-save-for-web-0.29.0/ChangeLog new/gimp-save-for-web-0.29.3/ChangeLog
--- old/gimp-save-for-web-0.29.0/ChangeLog  2010-02-01 19:59:18.0 
+0100
+++ new/gimp-save-for-web-0.29.3/ChangeLog  2011-10-14 15:08:55.0 
+0200
@@ -1,5 +1,45 @@
 # Generated by Makefile. Do not edit.
 
+commit 1832bfdd97184e4c60031e554bec013fb7865709
+Author: Aurimas Juška aurimas.ju...@gmail.com
+Date:   Fri Oct 14 16:00:34 2011 +0300
+
+Fix build with GIMP 2.7+.
+
+ configure.in  |4 ++--
+ src/webx_dialog.h |2 +-
+ 2 files changed, 3 insertions(+), 3 deletions(-)
+
+commit 866817e1adf3ac40cc4c82d64f9ebe92da566402
+Author: Aurimas Juška aurimas.ju...@gmail.com
+Date:   Wed Sep 28 12:33:21 2011 +0300
+
+Apply build fix provided by Vincent Untz.
+
+ configure.in|2 ++
+ src/Makefile.am |3 ++-
+ 2 files changed, 4 insertions(+), 1 deletions(-)
+
+commit 21fc38e1681bd415bba1fabcc288330ba99b7919
+Author: Aurimas Juška aurimas.ju...@gmail.com
+Date:   Thu Oct 14 10:05:54 2010 +0300
+
+Add Portuguese (Brazil) translation by Thiago Lima de Sousa.
+
+ configure.in |6 +-
+ po/pt_BR.po  |  184 ++
+ 2 files changed, 187 insertions(+), 3 deletions(-)
+
+commit cfa1bd90183368ffcfebc288409466d95e653a9d
+Author: Aurimas Juška aurimas.ju...@gmail.com
+Date:   Fri Apr 2 21:10:52 2010 +0300
+
+Add Japanese translation by Yoshinori Yamakawa
+
+ configure.in |6 +-
+ po/ja.po |  202 ++
+ 2 files changed, 205 insertions(+), 3 deletions(-)
+
 commit 3a911d5fde70d565f752f99e44d871870e325cfc
 Author: Aurimas Juška aurimas.ju...@gmail.com
 Date:   Sun Nov 22 14:31:09 2009 +0200
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/gimp-save-for-web-0.29.0/config.h.in 
new/gimp-save-for-web-0.29.3/config.h.in
--- old/gimp-save-for-web-0.29.0/config.h.in2010-02-01 19:58:58.0 
+0100
+++ new/gimp-save-for-web-0.29.3/config.h.in2011-10-14 15:08:54.0 
+0200
@@ -90,7 +90,7 @@
 /* Save for Web */
 #undef PLUGIN_NAME
 
-/* 0.29.0 */
+/* 0.29.3 */
 #undef PLUGIN_VERSION
 
 /* Define to 1 if you have the ANSI C header files. */
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess 

commit git for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package git for openSUSE:Factory
checked in at Tue Oct 18 14:04:04 CEST 2011.




--- openSUSE:Factory/git/git.changes2011-10-06 17:21:29.0 +0200
+++ /mounts/work_src_done/STABLE/git/git.changes2011-10-17 
13:44:31.0 +0200
@@ -1,0 +2,16 @@
+Mon Oct 17 11:44:29 UTC 2011 - cfarr...@suse.com
+
+- license update: GPL-2.0
+  SPDX format (See http://www.spdx.org/licenses)
+
+---
+Mon Oct 17 11:47:26 CEST 2011 - ti...@suse.de
+
+- correct license tag to GPL v2 only (bnc#724499)
+
+---
+Fri Oct 14 10:16:24 CEST 2011 - ti...@suse.de
+
+- split cgit builds to an individual repo
+
+---

calling whatdependson for head-i586


Old:

  cgit-0.9.tar.bz2
  cgit-CVE-2011-2711-fix.diff
  cgit-git-1.7.5.x-build-fix.diff
  cgit-optflags.diff
  cgit.changes
  cgit.spec
  cgitrc



Other differences:
--
++ git.spec ++
--- /var/tmp/diff_new_pack.5TwTxq/_old  2011-10-18 14:03:56.0 +0200
+++ /var/tmp/diff_new_pack.5TwTxq/_new  2011-10-18 14:03:56.0 +0200
@@ -42,7 +42,7 @@
 Version:1.7.7
 Release:1
 Summary:Fast, scalable, distributed revision control system
-License:GPLv2+
+License:GPL-2.0
 Group:  Development/Tools/Version Control
 Url:http://git-scm.com
 # Source0:
http://kernel.org/pub/software/scm/git/%name-%{version}.tar.bz2
@@ -81,7 +81,7 @@
 Linus Torvalds torva...@osdl.org
 
 %package core
-License:GPLv2+
+License:GPL-2.0
 Summary:Core git tools
 Group:  Development/Tools/Version Control
 Requires:   rsync, less, openssh, perl-Error
@@ -102,7 +102,7 @@
 Junio C Hamano jun...@cox.net
 
 %package svn
-License:GPLv2+
+License:GPL-2.Ã0
 Summary:Git tools for importing Subversion repositories
 Group:  Development/Tools/Version Control
 Requires:   git-core = %{version}, subversion
@@ -120,7 +120,7 @@
 Junio C Hamano jun...@cox.net
 
 %package cvs
-License:GPLv2+
+License:GPL-2.Ã0
 Summary:Git tools for importing CVS repositories
 Group:  Development/Tools/Version Control
 Requires:   git-core = %{version}, cvs, cvsps, perl-DBD-SQLite
@@ -136,7 +136,7 @@
 Junio C Hamano jun...@cox.net
 
 %package arch
-License:GPLv2+
+License:GPL-2.0
 Summary:Git tools for importing Arch repositories
 Group:  Development/Tools/Version Control
 Requires:   git-core = %{version}
@@ -154,7 +154,7 @@
 Junio C Hamano jun...@cox.net
 
 %package email
-License:GPLv2+
+License:GPL-2.Ã0
 Summary:Git tools for sending email
 Group:  Development/Tools/Version Control
 Requires:   git-core = %{version}
@@ -172,7 +172,7 @@
 Junio C Hamano jun...@cox.net
 
 %package daemon
-License:GPLv2+
+License:GPL-2.0
 Summary:Simple Server for Git Repositories
 Group:  Development/Tools/Version Control
 Requires:   git-core = %{version}
@@ -190,7 +190,7 @@
 Linus Torvalds torva...@osdl.org
 
 %package -n gitk
-License:GPLv2+
+License:GPL-2.0
 Summary:Git revision tree visualiser
 Group:  Development/Tools/Version Control
 Requires:   git-core = %{version}, tk = 8.4
@@ -212,7 +212,7 @@
 Junio C Hamano jun...@cox.net
 
 %package gui
-License:GPLv2+
+License:GPL-2.0
 Summary:Grapical tool for common git operations
 Group:  Development/Tools/Version Control
 Requires:   git-core = %{version}, tk = 8.4
@@ -235,7 +235,7 @@
 Linus Torvalds torva...@osdl.org
 
 %package web
-License:GPLv2+
+License:GPL-2.0
 Summary:Git Web Interface
 Group:  Development/Tools/Version Control
 Requires:   git-core = %{version}
@@ -254,7 +254,7 @@
 Linus Torvalds torva...@osdl.org
 
 %package remote-helpers
-License:GPLv2+
+License:GPL-2.0
 Summary:Python package for remote helper scripts
 Group:  Development/Tools/Version Control
 Requires:   git-core = %{version}, python

continue with 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 glibc for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package glibc for openSUSE:Factory
checked in at Tue Oct 18 14:04:27 CEST 2011.




--- openSUSE:Factory/glibc/glibc.changes2011-10-11 16:53:52.0 
+0200
+++ /mounts/work_src_done/STABLE/glibc/glibc.changes2011-10-17 
10:24:19.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct 17 07:47:54 UTC 2011 - a...@suse.de
+
+- Remove fma, fmaf from libm-x86-64.diff.bz2, they are not accurate
+  (bso#13304).
+
+---

calling whatdependson for head-i586




Other differences:
--

++ libm-x86-64.diff.bz2 ++
--- /var/tmp/diff_new_pack.Euwxvi/_old  2011-10-18 14:04:22.0 +0200
+++ /var/tmp/diff_new_pack.Euwxvi/_new  2011-10-18 14:04:22.0 +0200
@@ -193,8 +193,8 @@
 +extern double chgsign(double x);
 +extern float chgsignf(float x);
 +
-+extern double fma(double x, double y, double z);
-+extern float fmaf(float x, float y, float z);
++
++
 +
 +extern void __remainder_piby2(double x, double *r, double *rr, int *region);
 +extern void __remainder_piby2f(float x, double *r, int *region);
@@ -4617,249 +4617,6 @@
 +}
 +
 +weak_alias (__floorf, floorf)
-Index: sysdeps/x86_64/fpu/s_fma.c
-===
 /dev/null
-+++ sysdeps/x86_64/fpu/s_fma.c
-@@ -0,0 +1,117 @@
-+/*
-+(C) 2002 Advanced Micro Devices, Inc. 
-+** YOUR USE OF THIS LIBRARY IS SUBJECT TO THE TERMS 
-+AND CONDITIONS OF THE GNU LESSER GENERAL PUBLIC 
-+LICENSE FOUND IN THE README FILE THAT IS INCLUDED WITH 
-+THIS LIBRARY**
-+*/
-+
-+#include libm_amd.h
-+#include libm_util_amd.h
-+
-+#define USE_SCALEDOUBLE_1
-+#define USE_SCALEDOUBLE_2
-+#include libm_inlines_amd.h
-+#undef USE_SCALEDOUBLE_1
-+#undef USE_SCALEDOUBLE_2
-+
-+double __fma(double a, double b, double sum)
-+{
-+  /* Returns a * b + sum with no intermediate loss of precision */
-+
-+  double ha, ta, hb, tb, z, zz, r, s, az, asum;
-+  int ua, ub, usum;
-+  int scaled, expover, expunder, scaleexp;
-+  unsigned long u;
-+
-+  GET_BITS_DP64(a, u);
-+  ua = (int)((u  EXPBITS_DP64)  EXPSHIFTBITS_DP64) - EXPBIAS_DP64;
-+  GET_BITS_DP64(b, u);
-+  ub = (int)((u  EXPBITS_DP64)  EXPSHIFTBITS_DP64) - EXPBIAS_DP64;
-+  GET_BITS_DP64(sum, u);
-+  usum = (int)((u  EXPBITS_DP64)  EXPSHIFTBITS_DP64) - EXPBIAS_DP64;
-+
-+  if (ua == EMAX_DP64 + 1 || ub == EMAX_DP64 + 1 || usum == EMAX_DP64 + 1)
-+{
-+  /* One or more of the arguments is NaN or infinity. The
-+ result will also be NaN or infinity. */
-+  return a * b + sum;
-+}
-+  else if (ua + ub  usum + 2 * MANTLENGTH_DP64)
-+{
-+  /* sum is negligible compared with the extra-length product a*b */
-+  return a*b;
-+}
-+  else if (usum  ua + ub + MANTLENGTH_DP64)
-+{
-+  /* The product a*b is negligible compared with sum */
-+  return sum;
-+}
-+
-+  expover = EMAX_DP64 - 2;
-+  expunder = EMIN_DP64 + MANTLENGTH_DP64;
-+  scaleexp = 0;
-+
-+
-+  if (ua + ub  expover || usum  expover)
-+{
-+  /* The result is likely to overflow. Scale down in an attempt
-+ to avoid unnecessary overflow. The true result may still overflow. */
-+  scaled = 1;
-+  scaleexp = expover / 2;
-+  a = scaleDouble_1(a, -scaleexp);
-+  b = scaleDouble_1(b, -scaleexp);
-+  sum = scaleDouble_2(sum, -2*scaleexp);
-+}
-+  else if (ua + ub  expunder)
-+{
-+  /* The product a*b is near underflow; scale up */
-+  scaled = 1;
-+  scaleexp = expunder / 2;
-+  a = scaleDouble_1(a, -scaleexp);
-+  b = scaleDouble_1(b, -scaleexp);
-+  sum = scaleDouble_2(sum, -2*scaleexp);
-+}
-+  else
-+scaled = 0;
-+
-+  /* Split a into ha (head) and ta (tail). Do the same for b. */
-+  ha = a;
-+  GET_BITS_DP64(ha, u);
-+  u = 0xf800;
-+  PUT_BITS_DP64(u, ha);
-+  ta = a - ha;
-+  hb = b;
-+  GET_BITS_DP64(hb, u);
-+  u = 0xf800;
-+  PUT_BITS_DP64(u, hb);
-+  tb = b - hb;
-+
-+  /* Carefully multiply the parts together. z is the most significant
-+ part of the result, and zz the least significant part */
-+  z = a * b;
-+  zz = (((ha * hb - z) + ha * tb) + ta * hb) + ta * tb;
-+
-+  /* Set az = abs(z), asum = abs(sum) */
-+  GET_BITS_DP64(z, u);
-+  u = ~SIGNBIT_DP64;
-+  PUT_BITS_DP64(u, az);
-+  GET_BITS_DP64(sum, u);
-+  u = ~SIGNBIT_DP64;
-+  PUT_BITS_DP64(u, asum);
-+
-+  /* Carefully add (z,zz) to sum */
-+  r = z + sum;
-+
-+  if (az  asum)
-+s = ((z - r) + sum) + zz;
-+  else
-+s = ((sum - r) + z) + zz;
-+
-+  if (scaled)
-+return scaleDouble_1(r + s, 2*scaleexp);
-+  else
-+return r + s;
-+}
-+
-+weak_alias (__fma, fma)
-Index: sysdeps/x86_64/fpu/s_fmaf.c
-===
 /dev/null
-+++ sysdeps/x86_64/fpu/s_fmaf.c
-@@ -0,0 +1,116 @@
-+/*
-+(C) 2002 Advanced Micro Devices, Inc. 

commit global for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package global for openSUSE:Factory
checked in at Tue Oct 18 14:04:45 CEST 2011.




--- openSUSE:Factory/global/global.changes  2011-10-16 12:49:27.0 
+0200
+++ /mounts/work_src_done/STABLE/global/global.changes  2011-10-15 
06:51:39.0 +0200
@@ -1,0 +2,5 @@
+Sat Oct 15 04:47:08 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to make the spec file more reliable
+
+---

calling whatdependson for head-i586




Other differences:
--
++ global.spec ++
--- /var/tmp/diff_new_pack.uvs0FJ/_old  2011-10-18 14:04:33.0 +0200
+++ /var/tmp/diff_new_pack.uvs0FJ/_new  2011-10-18 14:04:33.0 +0200
@@ -29,6 +29,7 @@
 Patch1: global-5.7-gcc.diff
 Patch3: global-5.9.5-fix-gcc-warnings.patch
 BuildRequires:  ncurses-devel
+BuildRequires:  libtool
 PreReq: %install_info_prereq
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

continue with 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 gnash for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package gnash for openSUSE:Factory
checked in at Tue Oct 18 14:04:59 CEST 2011.




--- openSUSE:Factory/gnash/gnash.changes2011-09-23 02:00:17.0 
+0200
+++ /mounts/work_src_done/STABLE/gnash/gnash.changes2011-10-15 
06:52:15.0 +0200
@@ -1,0 +2,5 @@
+Sat Oct 15 04:47:12 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to make the spec file more reliable
+
+---

calling whatdependson for head-i586




Other differences:
--
++ gnash.spec ++
--- /var/tmp/diff_new_pack.KcZXca/_old  2011-10-18 14:04:49.0 +0200
+++ /var/tmp/diff_new_pack.KcZXca/_new  2011-10-18 14:04:49.0 +0200
@@ -32,6 +32,7 @@
 BuildRequires:  gtk2-devel
 BuildRequires:  libjpeg-devel
 BuildRequires:  libstdc++-devel
+BuildRequires:  libtool
 BuildRequires:  speex-devel
 %if !%{with distributable}
 BuildRequires:  ffmpeg-devel

continue with 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 gnome-bluetooth for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package gnome-bluetooth for openSUSE:Factory
checked in at Tue Oct 18 14:05:37 CEST 2011.




--- openSUSE:Factory/gnome-bluetooth/gnome-bluetooth.changes2011-10-13 
12:29:22.0 +0200
+++ /mounts/work_src_done/STABLE/gnome-bluetooth/gnome-bluetooth.changes
2011-10-17 18:11:25.0 +0200
@@ -1,0 +2,8 @@
+Mon Oct 17 17:49:47 CEST 2011 - dims...@opensuse.org
+
+- Update to version 3.2.1:
+  + Fix warnings about BluetoothStatusClass
+  + Fix small memory leaks
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  gnome-bluetooth-3.2.0.tar.bz2

New:

  gnome-bluetooth-3.2.1.tar.bz2



Other differences:
--
++ gnome-bluetooth.spec ++
--- /var/tmp/diff_new_pack.e3krHN/_old  2011-10-18 14:05:29.0 +0200
+++ /var/tmp/diff_new_pack.e3krHN/_new  2011-10-18 14:05:29.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   gnome-bluetooth
-Version:3.2.0
+Version:3.2.1
 Release:1
 License:GPLv2+
 Summary:GNOME Bluetooth graphical utilities

++ gnome-bluetooth-3.2.0.tar.bz2 - gnome-bluetooth-3.2.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-bluetooth-3.2.0/ChangeLog 
new/gnome-bluetooth-3.2.1/ChangeLog
--- old/gnome-bluetooth-3.2.0/ChangeLog 2011-09-26 11:43:00.0 +0200
+++ new/gnome-bluetooth-3.2.1/ChangeLog 2011-10-17 13:36:17.0 +0200
@@ -1,3 +1,49 @@
+commit c9b5b969f0095880344708502dc550b210705610
+Author: Bastien Nocera had...@hadess.net
+Date:   Mon Oct 17 12:29:20 2011 +0100
+
+3.2.1
+
+ NEWS |5 +
+ configure.ac |2 +-
+ 2 files changed, 6 insertions(+), 1 deletions(-)
+
+commit ec5145896222c8bdf5f9f7284b501999fd549994
+Author: Bastien Nocera had...@hadess.net
+Date:   Thu Oct 13 17:37:29 2011 +0100
+
+lib: Fix warnings about BluetoothStatusClass
+
+ lib/gnome-bluetooth.symbols |1 +
+ 1 files changed, 1 insertions(+), 0 deletions(-)
+
+commit 81b3d74aac0ceafe2ec5c5da92d759c612e97ea0
+Author: Fran Dieguez f...@openhost.es
+Date:   Fri Oct 7 01:44:04 2011 +0200
+
+Updated Galician translations
+
+ po/gl.po |   79 +
+ 1 files changed, 38 insertions(+), 41 deletions(-)
+
+commit 8912c715325c5c49828f1284396f798d603c31ff
+Author: Bastien Nocera had...@hadess.net
+Date:   Thu Oct 6 14:49:26 2011 +0100
+
+lib: Fix some tree path leaks
+
+ lib/bluetooth-client.c |4 +++-
+ 1 files changed, 3 insertions(+), 1 deletions(-)
+
+commit 3707da68d5c467e9366a491becd584be6d494c94
+Author: Carles Ferrando carles.ferra...@gmail.com
+Date:   Mon Sep 26 14:35:51 2011 +0200
+
+[l10n]Updated Catalan (Valencian) translation
+
+ po/c...@valencia.po |  314 
+++--
+ 1 files changed, 161 insertions(+), 153 deletions(-)
+
 commit a709fec350713aefae7d97bd7b93e5acf506c556
 Author: Bastien Nocera had...@hadess.net
 Date:   Mon Sep 26 10:42:42 2011 +0100
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-bluetooth-3.2.0/NEWS 
new/gnome-bluetooth-3.2.1/NEWS
--- old/gnome-bluetooth-3.2.0/NEWS  2011-09-26 11:42:40.0 +0200
+++ new/gnome-bluetooth-3.2.1/NEWS  2011-10-17 13:29:16.0 +0200
@@ -1,3 +1,8 @@
+ver 3.2.1:
+Fix warnings about BluetoothStatusClass
+Fix small memory leaks
+Translations
+
 ver 3.2.0:
 Loads of translations
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-bluetooth-3.2.0/configure 
new/gnome-bluetooth-3.2.1/configure
--- old/gnome-bluetooth-3.2.0/configure 2011-09-26 11:42:52.0 +0200
+++ new/gnome-bluetooth-3.2.1/configure 2011-10-17 13:29:35.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for gnome-bluetooth 3.2.0.
+# Generated by GNU Autoconf 2.68 for gnome-bluetooth 3.2.1.
 #
 # Report bugs to 
http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-bluetooth.
 #
@@ -571,8 +571,8 @@
 # Identity of this package.
 PACKAGE_NAME='gnome-bluetooth'
 PACKAGE_TARNAME='gnome-bluetooth'
-PACKAGE_VERSION='3.2.0'
-PACKAGE_STRING='gnome-bluetooth 3.2.0'
+PACKAGE_VERSION='3.2.1'
+PACKAGE_STRING='gnome-bluetooth 3.2.1'
 
PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-bluetooth'
 PACKAGE_URL=''
 
@@ -1473,7 +1473,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 gnome-bluetooth 3.2.0 to adapt to many kinds of 
systems.
+\`configure' configures gnome-bluetooth 3.2.1 to adapt to many kinds of 
systems.

commit gnome-online-accounts for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package gnome-online-accounts for 
openSUSE:Factory
checked in at Tue Oct 18 14:06:30 CEST 2011.




--- openSUSE:Factory/gnome-online-accounts/gnome-online-accounts.changes
2011-10-02 10:06:21.0 +0200
+++ 
/mounts/work_src_done/STABLE/gnome-online-accounts/gnome-online-accounts.changes
2011-10-17 21:36:33.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct 17 19:33:49 UTC 2011 - dims...@opensuse.org
+
+- Update to version 3.2.1:
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  gnome-online-accounts-3.2.0.1.tar.bz2

New:

  gnome-online-accounts-3.2.1.tar.bz2



Other differences:
--
++ gnome-online-accounts.spec ++
--- /var/tmp/diff_new_pack.sGGmLe/_old  2011-10-18 14:06:27.0 +0200
+++ /var/tmp/diff_new_pack.sGGmLe/_new  2011-10-18 14:06:27.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   gnome-online-accounts
-Version:3.2.0.1
+Version:3.2.1
 Release:1
 License:LGPLv2+
 Summary:GNOME service to access online accounts

++ gnome-online-accounts-3.2.0.1.tar.bz2 - 
gnome-online-accounts-3.2.1.tar.bz2 ++
 8813 lines of diff (skipped)

continue with 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 gnome-packagekit for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package gnome-packagekit for openSUSE:Factory
checked in at Tue Oct 18 14:06:40 CEST 2011.




--- openSUSE:Factory/gnome-packagekit/gnome-packagekit.changes  2011-10-02 
10:06:31.0 +0200
+++ /mounts/work_src_done/STABLE/gnome-packagekit/gnome-packagekit.changes  
2011-10-17 19:44:42.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct 17 18:21:15 CEST 2011 - dims...@opensuse.org
+
+- Update to version 3.2.1:
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  gnome-packagekit-3.2.0.tar.bz2

New:

  gnome-packagekit-3.2.1.tar.bz2



Other differences:
--
++ gnome-packagekit.spec ++
--- /var/tmp/diff_new_pack.48xQSh/_old  2011-10-18 14:06:36.0 +0200
+++ /var/tmp/diff_new_pack.48xQSh/_new  2011-10-18 14:06:36.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   gnome-packagekit
-Version:3.2.0
+Version:3.2.1
 Release:1
 License:GPLv2+
 Summary:Applications for the PackageKit API

++ gnome-packagekit-3.2.0.tar.bz2 - gnome-packagekit-3.2.1.tar.bz2 ++
 27218 lines of diff (skipped)

continue with 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 gnome-panel for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package gnome-panel for openSUSE:Factory
checked in at Tue Oct 18 14:06:52 CEST 2011.




--- openSUSE:Factory/gnome-panel/gnome-panel.changes2011-10-13 
12:29:34.0 +0200
+++ /mounts/work_src_done/STABLE/gnome-panel/gnome-panel.changes
2011-10-17 13:49:31.0 +0200
@@ -1,0 +2,18 @@
+Mon Oct 17 11:47:13 UTC 2011 - vu...@opensuse.org
+
+- Add gnome-panel-allow-smaller-panels.patch: change the default
+  size of the user menu icon to 16, and allow making the panels
+  smaller thanks to this. Taken from git.
+
+---
+Sun Oct 16 17:16:00 UTC 2011 - vu...@opensuse.org
+
+- Update to version 3.2.1:
+  + Panel
+- Do not assert on error when using default layout
+- Fix loading launchers defined with relative paths
+  + Updated translations.
+- Rebase gnome-panel-improved-default-layout-handling.patch: remove
+  part of patch integrated in the stable branch upstream.
+
+---

calling whatdependson for head-i586


Old:

  gnome-panel-3.2.0.tar.bz2

New:

  gnome-panel-3.2.1.tar.bz2
  gnome-panel-allow-smaller-panels.patch



Other differences:
--
++ gnome-panel.spec ++
--- /var/tmp/diff_new_pack.q5u6Mg/_old  2011-10-18 14:06:47.0 +0200
+++ /var/tmp/diff_new_pack.q5u6Mg/_new  2011-10-18 14:06:47.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   gnome-panel
-Version:3.2.0
+Version:3.2.1
 Release:1
 # FIXME: gnome-main-menu not ported to new panel API, for this reason we do 
not Recommend gnome-main-menu.
 License:GPLv2+
@@ -29,6 +29,8 @@
 Source99:   baselibs.conf
 # PATCH-FEATURE-UPSTREAM gnome-panel-improved-default-layout-handling.patch 
vu...@opensuse.org -- Improve default layout handling, so that we can load it 
from the user dir
 Patch0: gnome-panel-improved-default-layout-handling.patch
+# PATCH-FEATURE-UPSTREAM gnome-panel-allow-smaller-panels.patch 
vu...@opensuse.org -- Some changes related to how we set the size of the icons 
in the user menu applet, so we don't create an artificial limit on the size of 
panels. Taken from git.
+Patch1: gnome-panel-allow-smaller-panels.patch
 # PATCH-FIX-UPSTREAM gnome-panel-recent-check-exists.patch -- Show an error 
when clicking on a recent item that doesn't exist anymore
 Patch25:gnome-panel-recent-check-exists.patch
 # PATCH-FIX-UPSTREAM gnome-panel-beagle-search.patch bgo336726 -- Use nautilus 
search instead of gnome-search-tool
@@ -196,6 +198,7 @@
 translation-update-upstream
 gnome-patch-translation-prepare
 %patch0 -p1
+%patch1 -p1
 %patch25 -p0
 %patch34
 %patch40

++ gnome-panel-3.2.0.tar.bz2 - gnome-panel-3.2.1.tar.bz2 ++
 7488 lines of diff (skipped)

++ gnome-panel-allow-smaller-panels.patch ++
From cff8f9f22a031ca1ccab06a1460f8984d97f871f Mon Sep 17 00:00:00 2001
From: Vincent Untz vu...@gnome.org
Date: Mon, 17 Oct 2011 13:07:15 +0200
Subject: [PATCH 1/4] panel: Fix panels forced to be big because of user menu

The user menu item was created with some functions that change the way
the size of the menu item is negotiated, and we don't want this when
this user menu item is in the user menu applet (we want this when it's
in the main menu, though).

Helps with https://bugzilla.gnome.org/show_bug.cgi?id=661790
---
 gnome-panel/menu.c |2 +-
 gnome-panel/panel-menu-items.c |   48 ++-
 gnome-panel/panel-menu-items.h |1 +
 gnome-panel/panel-user-menu.c  |2 +-
 4 files changed, 35 insertions(+), 18 deletions(-)

diff --git a/gnome-panel/menu.c b/gnome-panel/menu.c
index 4077940..497b7fd 100644
--- a/gnome-panel/menu.c
+++ b/gnome-panel/menu.c
@@ -1388,7 +1388,7 @@ main_menu_append (GtkWidget *main_menu,
gtk_menu_shell_append (GTK_MENU_SHELL (main_menu), item);
gtk_widget_show (item);
 
-   item = panel_desktop_menu_item_new (TRUE, FALSE);
+   item = panel_desktop_menu_item_new (TRUE, FALSE, FALSE);
panel_desktop_menu_item_set_panel (item, panel);
gtk_menu_shell_append (GTK_MENU_SHELL (main_menu), item);
gtk_widget_show (item);
diff --git a/gnome-panel/panel-menu-items.c b/gnome-panel/panel-menu-items.c
index 0e48181..a58801d 100644
--- a/gnome-panel/panel-menu-items.c
+++ b/gnome-panel/panel-menu-items.c
@@ -48,6 +48,7 @@
 #include libpanel-util/panel-glib.h
 #include libpanel-util/panel-keyfile.h
 #include libpanel-util/panel-launch.h
+#include libpanel-util/panel-menu-item.h
 #include libpanel-util/panel-session-manager.h
 #include libpanel-util/panel-show.h
 
@@ -1693,10 +1694,12 @@ panel_desktop_menu_item_on_presence_changed 
(PanelSessionManager *ma
 
 GtkWidget *
 panel_desktop_menu_item_new (gboolean use_image,
+

commit gnome-phone-manager for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package gnome-phone-manager for 
openSUSE:Factory
checked in at Tue Oct 18 14:07:01 CEST 2011.




--- openSUSE:Factory/gnome-phone-manager/gnome-phone-manager.changes
2011-09-23 02:00:59.0 +0200
+++ 
/mounts/work_src_done/STABLE/gnome-phone-manager/gnome-phone-manager.changes
2011-10-17 08:10:07.0 +0200
@@ -1,0 +2,10 @@
+Mon Oct 17 06:03:05 UTC 2011 - vu...@opensuse.org
+
+- Update to version 0.68:
+  + Builds with strict linkers
+  + Updated translations.
+- Drop gnome-phone-manager-ld_fix.patch: fixed upstream.
+- Remove gnome-common BuildRequires and call to gnome-autogen.sh:
+  those were only needed for the patch above.
+
+---

calling whatdependson for head-i586


Old:

  gnome-phone-manager-0.67.tar.bz2
  gnome-phone-manager-ld_fix.patch

New:

  gnome-phone-manager-0.68.tar.bz2



Other differences:
--
++ gnome-phone-manager.spec ++
--- /var/tmp/diff_new_pack.BAvB1j/_old  2011-10-18 14:06:58.0 +0200
+++ /var/tmp/diff_new_pack.BAvB1j/_new  2011-10-18 14:06:58.0 +0200
@@ -18,20 +18,16 @@
 
 
 Name:   gnome-phone-manager
-Version:0.67
+Version:0.68
 Release:1
 License:GPLv2+
 Summary:Phone Manager for GNOME
 Url:http://usefulinc.com/software/phonemgr
 Group:  Hardware/Mobile
-Source: 
http://download.gnome.org/sources/gnome-phone-manager/0.67/%{name}-%{version}.tar.bz2
+Source: 
http://download.gnome.org/sources/gnome-phone-manager/0.68/%{name}-%{version}.tar.bz2
 # PATCH-FIX-OPENSUSE gnome-phone-manager-desktop-icon-check.patch bnc337219
 Patch0: gnome-phone-manager-desktop-icon-check.patch
-# PATCH-FIX-UPSTREAM gnome-phone-manager-ld_fix.patch bgo#659449 
suse-...@gmx.de -- Fix build with new ld
-Patch1: gnome-phone-manager-ld_fix.patch
 BuildRequires:  fdupes
-# needed for patch1
-BuildRequires:  gnome-common
 BuildRequires:  intltool
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(bluez)
@@ -83,11 +79,8 @@
 %prep
 %setup -q
 %patch0
-%patch1
 
 %build
-# needed for patch1
-NOCONFIGURE=1 gnome-autogen.sh
 %configure \
 --disable-static \
--disable-schemas-install

++ gnome-phone-manager-0.67.tar.bz2 - gnome-phone-manager-0.68.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-phone-manager-0.67/ChangeLog 
new/gnome-phone-manager-0.68/ChangeLog
--- old/gnome-phone-manager-0.67/ChangeLog  2011-07-05 00:00:57.0 
+0200
+++ new/gnome-phone-manager-0.68/ChangeLog  2011-10-16 22:40:32.0 
+0200
@@ -1,4 +1,57 @@
-commit 1c4be0d4da01f89136faa76661399402e50ca0e3
+commit ba8acb37e3e7fbd5ab4f98fd20275cc6689141d8
+Author: Daniele Forsi dfo...@src.gnome.org
+Date:   Sun Oct 16 19:36:47 2011 +0200
+
+upd 0.68
+
+ * NEWS: upd
+ * configure.in: 0.68
+
+ NEWS |8 
+ configure.in |2 +-
+ 2 files changed, 9 insertions(+), 1 deletions(-)
+
+commit 8fcd7a3e69f5e228402f3c999f43b45138cc97a9
+Author: Daniele Forsi dani...@forsi.it
+Date:   Sun Oct 16 19:30:21 2011 +0200
+
+Bump automake version and create tarballs compressed with xz
+
+ configure.in |2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+commit ced60371c0e5f1dbbce2c9948db01ab5a511f8b8
+Author: Daniele Forsi dani...@forsi.it
+Date:   Sun Oct 16 19:18:10 2011 +0200
+
+Remove unused variable
+
+ src/ui.c |1 -
+ 1 files changed, 0 insertions(+), 1 deletions(-)
+
+commit e42651b5cf634c38876391e9a10451e9710d13b1
+Author: Marcus Hüwe suse-...@gmx.de
+Date:   Sun Oct 16 19:16:16 2011 +0200
+
+Fix build with strict linker
+
+Closes #659449
+
+ configure.in|2 +-
+ src/Makefile.am |5 +++--
+ 2 files changed, 4 insertions(+), 3 deletions(-)
+
+commit d973a9f841ccd368d8fc966893f6320636612220
+Author: Yuri Myasoedov omert...@yandex.ru
+Date:   Sat Jul 30 01:31:46 2011 +0400
+
+Added Russian translation
+
+ po/LINGUAS |1 +
+ po/ru.po   |  424 
+ 2 files changed, 425 insertions(+), 0 deletions(-)
+
+commit 3be5c82d234f826415a2c427ba0fe46c7d8f3f06
 Author: Daniele Forsi dfo...@src.gnome.org
 Date:   Mon Jul 4 23:58:17 2011 +0200
 
@@ -12,11 +65,14 @@
  configure.in |2 +-
  3 files changed, 17 insertions(+), 2 deletions(-)
 
-commit d2238de36c9d66d12e53b723bfe2d1f06e0c3c58
+commit 0a10cc3d1489d3d42b3500fd0e37cd0048d8c15b
 Author: Jan de Groot j...@jgc.homeip.net
 Date:   Thu Jun 30 19:54:21 2011 +0200
 
-Port to gtk3. This raises the required version for gnome-bluetooth to 3.0, 
as this is the first released version that uses gtk3.
+Port to gtk3.
+
+This raises the required version for gnome-bluetooth to 3.0,
+

commit gnome-settings-daemon for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package gnome-settings-daemon for 
openSUSE:Factory
checked in at Tue Oct 18 14:07:44 CEST 2011.




--- openSUSE:Factory/gnome-settings-daemon/gnome-settings-daemon.changes
2011-10-16 12:49:41.0 +0200
+++ 
/mounts/work_src_done/STABLE/gnome-settings-daemon/gnome-settings-daemon.changes
2011-10-17 23:50:28.0 +0200
@@ -1,0 +2,60 @@
+Mon Oct 17 21:37:35 UTC 2011 - malcolmle...@opensuse.org
+
+- Add gnome-settings-daemon-fix-missing-wexitstatus.patch: add
+  missing include that can cause issues at runtime, especially
+  on 11.4 (bgo#662020).
+
+---
+Mon Oct 17 18:21:59 CEST 2011 - dims...@opensuse.org
+
+- Update to version 3.2.1:
+  + Common:
+- Remove left-over debug (bgo#660073)
+  + Color:
+- Fix a crash if ~/.local is deleted at runtime (bgo#660664)
+- Do not load all the color devices twice at startup
+- Don't assign the same device more than once at startup
+- Fix critical warning if the user disables the internal LCD
+  screen
+- Reset the gamma tables when the screen configuration changes
+  (bgo#660164)
+- Fix 'make check' by including -lm for powf()
+  + Media keys:
+- Use a GCancellable for g_bus_get calls so that they can be
+  cancelled
+- Don't assert if the user sets the 'button-power' action to
+  'shutdown' or 'nothing'
+- Fix OSD touchpad icon names (bgo#661179)
+- Fix suspend button not locking the screen (bgo#660267)
+  + Power:
+- Don't restore the brightness if it's never been set
+- Fix two small reference leaks when using the D-Bus interface
+- Use a GCancellable for g_bus_get calls so that they can be
+  cancelled
+- Do not sleep-on-idle by default (bgo#660395)
+- Do not revert to the pre-idle brightness if idle dimming is
+  disabled (bgo#660434)
+- Ensure the DPMS state is 'on' at startup (bgo#660482)
+- Close low-battery notification when plugged in (bgo#660942)
+- Don't crash when setting the dim timeout when using NX
+  (bgo#661000)
+- Call XSyncInitialize() in case GTK+ wasn't compiled with
+  XSync support
+- Emit 'Changed' signal to all listeners (bgo#659908)
+  + Printers:
+- Fix build on systems without LC_PAPER (bog#660626)
+- Call setlocale() (bgo#660632)
+- Exit gsd-printer when session ends (bgo#660158)
+- Correct signature when calling PrinterAddOptionDefault
+- Don't show Not connected? when not needed
+- Unown name on the system bus when session goes idle
+  + Wacom:
+- Fix possible crasher (bgo#661170)
+  + Xrandr:
+- Use a GCancellable for g_bus_get calls so that they can be
+  cancelled
+  + Updated translations.
+- Drop gnome-settings-daemon-emit-power-signal-to-listeners.patch:
+  fixed upstream.
+
+---

calling whatdependson for head-i586


Old:

  gnome-settings-daemon-3.2.0.tar.bz2
  gnome-settings-daemon-emit-power-signal-to-listeners.patch

New:

  gnome-settings-daemon-3.2.1.tar.bz2
  gnome-settings-daemon-fix-missing-wexitstatus.patch



Other differences:
--
++ gnome-settings-daemon.spec ++
--- /var/tmp/diff_new_pack.wsQ85D/_old  2011-10-18 14:07:40.0 +0200
+++ /var/tmp/diff_new_pack.wsQ85D/_new  2011-10-18 14:07:40.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   gnome-settings-daemon
-Version:3.2.0
+Version:3.2.1
 Release:1
 License:GPLv2+
 Summary:Settings daemon for the GNOME desktop
@@ -35,14 +35,14 @@
 Patch11:gnome-settings-daemon-bnc461755-randr-rotate-wacom.diff
 # PATCH-NEEDS-REBASE PATCH-FIX-UPSTREAM 
gnome-settings-daemon-add-layout-switcher.patch bgo603806 vu...@opensuse.org -- 
Add a layout switching combo if needed; the real fix implies some API change in 
libgnomekbd (see upstream bug)
 Patch13:gnome-settings-daemon-add-layout-switcher.patch
-# PATCH-NEEDSREBASE PATCH-FEATURE-OPENSUSE gnome-packagekit-fate302445.patch 
fate 302445
+# PATCH-NEEDS-REBASE PATCH-FEATURE-OPENSUSE gnome-packagekit-fate302445.patch 
fate 302445
 Patch14:gnome-packagekit-fate302445.patch
 # PATCH-NEEDSREBASE PATCH-MISSING-TAG -- See 
http://en.opensuse.org/Packaging/Patches
 Patch15:gnome-packagekit-BNC383261.patch
 # PATCH-FIX-OPENSUSE gnome-settings-daemon-stop-reload-proxy-settings.patch 
bnc689592#c1, bnc#538353 g...@suse.com -- Stop g-s-d poping up the 
authentication dialog for reloading the proxy settings
 Patch17:gnome-settings-daemon-stop-reload-proxy-settings.patch
-# PATCH-FIX-UPSTREAM 
gnome-settings-daemon-emit-power-signal-to-listeners.patch bnc#717814, 
bgo#659908 g...@suse.com -- Emit 'Changed' signal to all power plugin listeners
-Patch18:

commit gnome-terminal for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package gnome-terminal for openSUSE:Factory
checked in at Tue Oct 18 14:07:56 CEST 2011.




--- openSUSE:Factory/gnome-terminal/gnome-terminal.changes  2011-10-02 
10:07:57.0 +0200
+++ /mounts/work_src_done/STABLE/gnome-terminal/gnome-terminal.changes  
2011-10-17 17:33:27.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct 17 17:18:08 CEST 2011 - dims...@opensuse.org
+
+- Update to version 3.2.1:
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  gnome-terminal-3.2.0.tar.bz2

New:

  gnome-terminal-3.2.1.tar.bz2



Other differences:
--
++ gnome-terminal.spec ++
--- /var/tmp/diff_new_pack.y1FXdv/_old  2011-10-18 14:07:51.0 +0200
+++ /var/tmp/diff_new_pack.y1FXdv/_new  2011-10-18 14:07:51.0 +0200
@@ -21,7 +21,7 @@
 Name:   gnome-terminal
 License:GPLv3+ ; LGPLv2.1+
 Group:  System/X11/Terminals
-Version:3.2.0
+Version:3.2.1
 Release:1
 Summary:GNOME Terminal
 Url:http://www.gnome.org

++ gnome-terminal-3.2.0.tar.bz2 - gnome-terminal-3.2.1.tar.bz2 ++
 11642 lines of diff (skipped)

continue with 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 gnome-user-docs for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package gnome-user-docs for openSUSE:Factory
checked in at Tue Oct 18 14:08:11 CEST 2011.




--- openSUSE:Factory/gnome-user-docs/gnome-user-docs.changes2011-10-02 
10:08:24.0 +0200
+++ /mounts/work_src_done/STABLE/gnome-user-docs/gnome-user-docs.changes
2011-10-17 20:11:30.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct 17 20:07:31 CEST 2011 - dims...@opensuse.org
+
+- Update to version 3.2.1:
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  gnome-user-docs-3.2.0.1.tar.bz2

New:

  gnome-user-docs-3.2.1.tar.bz2



Other differences:
--
++ gnome-user-docs.spec ++
--- /var/tmp/diff_new_pack.ymLeJB/_old  2011-10-18 14:08:03.0 +0200
+++ /var/tmp/diff_new_pack.ymLeJB/_new  2011-10-18 14:08:03.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   gnome-user-docs
-Version:3.2.0.1
+Version:3.2.1
 Release:1
 # FIXME: parallel build is disabled because it's actually much slower (see 
bgo#659421); should be safe to reenable in 3.3.x
 # FIXME: the %%{_datadir}/help/$locale/ files should be found by %%find_lang

++ gnome-user-docs-3.2.0.1.tar.bz2 - gnome-user-docs-3.2.1.tar.bz2 ++
 92420 lines of diff (skipped)

continue with 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 gnome-user-share for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package gnome-user-share for openSUSE:Factory
checked in at Tue Oct 18 14:08:27 CEST 2011.




--- openSUSE:Factory/gnome-user-share/gnome-user-share.changes  2011-09-23 
02:01:06.0 +0200
+++ /mounts/work_src_done/STABLE/gnome-user-share/gnome-user-share.changes  
2011-10-17 20:40:12.0 +0200
@@ -1,0 +2,8 @@
+Mon Oct 17 20:38:56 CEST 2011 - dims...@opensuse.org
+
+- Update to version 3.0.1:
+  + Work-around Linux 3.0 regression that caused the file sharing
+not to work.
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  gnome-user-share-3.0.0.tar.bz2

New:

  gnome-user-share-3.0.1.tar.bz2



Other differences:
--
++ gnome-user-share.spec ++
--- /var/tmp/diff_new_pack.CfaFrr/_old  2011-10-18 14:08:22.0 +0200
+++ /var/tmp/diff_new_pack.CfaFrr/_new  2011-10-18 14:08:22.0 +0200
@@ -19,11 +19,11 @@
 
 Name:   gnome-user-share
 Summary:GNOME user file sharing
-Version:3.0.0
+Version:3.0.1
 Release:1
 License:GPLv2+
 Group:  Productivity/Networking/File-Sharing
-Source: %{name}-%{version}.tar.bz2
+Source: 
http://download.gnome.org/sources/gnome-user-share/3.0/%{name}-%{version}.tar.bz2
 # PATCH-FIX-OPENSUSE gnome-user-share-soft-dep-apache.patch vu...@novell.com 
-- Hide apache option in the UI if it's not available
 Patch3: gnome-user-share-soft-dep-apache.patch
 Url:http://www.gnome.org/

++ gnome-user-share-3.0.0.tar.bz2 - gnome-user-share-3.0.1.tar.bz2 ++
 3761 lines of diff (skipped)

continue with 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 gnome-utils for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package gnome-utils for openSUSE:Factory
checked in at Tue Oct 18 14:08:42 CEST 2011.




--- openSUSE:Factory/gnome-utils/gnome-utils.changes2011-10-07 
10:30:18.0 +0200
+++ /mounts/work_src_done/STABLE/gnome-utils/gnome-utils.changes
2011-10-17 19:43:10.0 +0200
@@ -1,0 +2,7 @@
+Mon Oct 17 18:22:25 CEST 2011 - dims...@opensuse.org
+
+- Update to version 3.2.1:
+  + screenshot: use the correct uri for Help
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  gnome-utils-3.2.0.tar.bz2

New:

  gnome-utils-3.2.1.tar.bz2



Other differences:
--
++ gnome-utils.spec ++
--- /var/tmp/diff_new_pack.U7oy2u/_old  2011-10-18 14:08:39.0 +0200
+++ /var/tmp/diff_new_pack.U7oy2u/_new  2011-10-18 14:08:39.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   gnome-utils
-Version:3.2.0
+Version:3.2.1
 Release:1
 License:GPLv2+
 Summary:Utilities for GNOME

++ gnome-utils-3.2.0.tar.bz2 - gnome-utils-3.2.1.tar.bz2 ++
openSUSE:Factory/gnome-utils/gnome-utils-3.2.0.tar.bz2 
/mounts/work_src_done/STABLE/gnome-utils/gnome-utils-3.2.1.tar.bz2 differ: char 
11, line 1

continue with 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 gnutls for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package gnutls for openSUSE:Factory
checked in at Tue Oct 18 14:09:02 CEST 2011.




--- openSUSE:Factory/gnutls/gnutls.changes  2011-10-11 17:16:19.0 
+0200
+++ /mounts/work_src_done/STABLE/gnutls/gnutls.changes  2011-10-17 
16:19:39.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct 17 13:21:57 UTC 2011 - vu...@opensuse.org
+
+- Add gnutls-fix-crash-on-strcat.patch: make sure a string is
+  nul-terminated before using strcat on it. Fix bnc#724421.
+
+---

calling whatdependson for head-i586


New:

  gnutls-fix-crash-on-strcat.patch



Other differences:
--
++ gnutls.spec ++
--- /var/tmp/diff_new_pack.G9g5Us/_old  2011-10-18 14:08:54.0 +0200
+++ /var/tmp/diff_new_pack.G9g5Us/_new  2011-10-18 14:08:54.0 +0200
@@ -32,6 +32,8 @@
 Source1:baselibs.conf
 # PATCH-FIX-UPSTREAM gnutls-fix-compression.patch vu...@opensuse.org -- Taken 
from git, fix decompression/compression
 Patch0: gnutls-fix-compression.patch
+# PATCH-FIX-UPSTREAM gnutls-fix-crash-on-strcat.patch bnc#724421 
vu...@opensuse.org -- Fix a crash because of badly used strcat, sent upstream 
by mail on 2011-10-17
+Patch1: gnutls-fix-crash-on-strcat.patch
 BuildRequires:  gcc-c++
 BuildRequires:  libnettle-devel = 2.2
 BuildRequires:  p11-kit-devel
@@ -156,6 +158,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 
 %build
 %configure \


++ gnutls-fix-crash-on-strcat.patch ++
From 7043a8e9e314b0c2eb7ac5c2278a0b103f6a758a Mon Sep 17 00:00:00 2001
From: Vincent Untz vu...@gnome.org
Date: Mon, 17 Oct 2011 15:15:46 +0200
Subject: [PATCH] Correctly terminate a string with \0 before concatenating to
 it

Fix a potential crash:
https://bugzilla.novell.com/show_bug.cgi?id=724421
---
 lib/x509/common.c |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/lib/x509/common.c b/lib/x509/common.c
index 6bb4746..0651d2e 100644
--- a/lib/x509/common.c
+++ b/lib/x509/common.c
@@ -390,6 +390,7 @@ _gnutls_x509_data2hex (const opaque * data, size_t 
data_size,
   if (out)
 {
   out[0] = '#';
+  out[1] = '\0';
   _gnutls_str_cat (out, *sizeof_out, res);
 }
 
-- 
1.7.7

continue with 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 gtkhtml for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package gtkhtml for openSUSE:Factory
checked in at Tue Oct 18 14:09:19 CEST 2011.




--- openSUSE:Factory/gtkhtml/gtkhtml.changes2011-10-07 10:30:31.0 
+0200
+++ /mounts/work_src_done/STABLE/gtkhtml/gtkhtml.changes2011-10-16 
19:43:56.0 +0200
@@ -1,0 +2,9 @@
+Sun Oct 16 17:41:50 UTC 2011 - vu...@opensuse.org
+
+- Update to version 4.2.1:
+  + bgo#660983: Distribute gtkhtml-editor.xml in tarballs
+  + Updated translations.
+- Drop our copy of gtkhtml-editor.xml as source now that it's in
+  the tarball.
+
+---

calling whatdependson for head-i586


Old:

  gtkhtml-4.2.0.tar.bz2
  gtkhtml-editor.xml

New:

  gtkhtml-4.2.1.tar.bz2



Other differences:
--
++ gtkhtml.spec ++
--- /var/tmp/diff_new_pack.gY3QsX/_old  2011-10-18 14:09:15.0 +0200
+++ /var/tmp/diff_new_pack.gY3QsX/_new  2011-10-18 14:09:15.0 +0200
@@ -24,15 +24,13 @@
 %define _gtkhtml_editor_major 0
 
 Name:   gtkhtml
-Version:4.2.0
+Version:4.2.1
 Release:1
 License:GPLv2+ ; LGPLv2.1+
 Summary:Lightweight HTML rendering/printing/editing engine
 Url:http://www.gnome.org
 Group:  System/Libraries
 Source: 
http://download.gnome.org/sources/gtkhtml/4.2/%{name}-%{version}.tar.bz2
-# File is missing from tarballs, see bgo#660983
-Source1:gtkhtml-editor.xml
 BuildRequires:  enchant-devel
 BuildRequires:  fdupes
 BuildRequires:  glib2-devel
@@ -117,9 +115,6 @@
 %prep
 %setup -q
 translation-update-upstream
-# File is missing from tarballs, see bgo#660983
-test ! -f components/editor/gtkhtml-editor.xml
-cp %{SOURCE1} components/editor/gtkhtml-editor.xml
 
 %build
 %{configure} \

++ gtkhtml-4.2.0.tar.bz2 - gtkhtml-4.2.1.tar.bz2 ++
 6516 lines of diff (skipped)

continue with 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 gtksourceview for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package gtksourceview for openSUSE:Factory
checked in at Tue Oct 18 14:09:29 CEST 2011.




--- openSUSE:Factory/gtksourceview/gtksourceview.changes2011-10-10 
14:10:40.0 +0200
+++ /mounts/work_src_done/STABLE/gtksourceview/gtksourceview.changes
2011-10-16 15:30:08.0 +0200
@@ -1,0 +2,6 @@
+Sun Oct 16 13:29:22 UTC 2011 - vu...@opensuse.org
+
+- Update to version 3.2.2:
+  + Misc bugfixes.
+
+---

calling whatdependson for head-i586


Old:

  gtksourceview-3.2.1.tar.bz2

New:

  gtksourceview-3.2.2.tar.bz2



Other differences:
--
++ gtksourceview.spec ++
--- /var/tmp/diff_new_pack.MNUpLn/_old  2011-10-18 14:09:24.0 +0200
+++ /var/tmp/diff_new_pack.MNUpLn/_new  2011-10-18 14:09:24.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   gtksourceview
-Version:3.2.1
+Version:3.2.2
 Release:1
 License:GPLv2+
 Summary:GTK+ Source Editing Widget

++ gtksourceview-3.2.1.tar.bz2 - gtksourceview-3.2.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gtksourceview-3.2.1/ChangeLog 
new/gtksourceview-3.2.2/ChangeLog
--- old/gtksourceview-3.2.1/ChangeLog   2011-10-09 16:49:13.0 +0200
+++ new/gtksourceview-3.2.2/ChangeLog   2011-10-16 13:31:42.0 +0200
@@ -1,6 +1,42 @@
+commit 34c625e339f5b9945c7e0ae274e92a6531e2a804
+Author: Ignacio Casal Quinteiro i...@gnome.org
+Date:   2011-10-10
+
+completionprovider: the iter is an out parameter.
+
+M  gtksourceview/gtksourcecompletionprovider.c
+
+commit 1f4c003d3fcccb533a6fb823c44041e56e733bc4
+Author: Ignacio Casal Quinteiro i...@gnome.org
+Date:  2011-10-10
+
+completioninfo: add better docs.
+
+M  gtksourceview/gtksourcecompletioninfo.c
+
+commit 9ae8cb7a1ee3361506c3a62de400665a6d10d075
+Author: Ignacio Casal Quinteiro i...@gnome.org
+Date:  2011-10-10
+
+completion: ref the default info widget.
+
+We need to ref the widget if we are going to reuse it later.
+
+M  gtksourceview/gtksourcecompletion.c
+
+commit 7e1752aeb31ba4d1633afcd1b4e20c0fc3bb73ab
+Author: Ignacio Casal Quinteiro i...@gnome.org
+Date:  2011-10-09
+
+Release 3.2.1
+
+M  NEWS
+M  README
+M  configure.ac
+
 commit dd8663dd0caaae5b511d6702520a836be6319161
 Author: ad...@logicplace.com ad...@logicplace.com
-Date:   2011-10-09
+Date:  2011-10-09
 
 New JavaScript Object Notation lang
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gtksourceview-3.2.1/NEWS new/gtksourceview-3.2.2/NEWS
--- old/gtksourceview-3.2.1/NEWS2011-10-09 16:46:51.0 +0200
+++ new/gtksourceview-3.2.2/NEWS2011-10-16 13:28:27.0 +0200
@@ -1,3 +1,7 @@
+News in 3.2.2
+-
+* Misc bugfixes
+
 News in 3.2.1
 -
 * New JavaScript Object Notation lang file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gtksourceview-3.2.1/README 
new/gtksourceview-3.2.2/README
--- old/gtksourceview-3.2.1/README  2011-10-09 16:45:45.0 +0200
+++ new/gtksourceview-3.2.2/README  2011-10-16 13:27:00.0 +0200
@@ -1,7 +1,7 @@
 General Information
 ===
 
-This is version 3.2.1 of GtkSourceView.
+This is version 3.2.2 of GtkSourceView.
 
 GtkSourceView is a text widget that extends the standard gtk+ 3.x
 text widget GtkTextView.
@@ -32,8 +32,8 @@
 
 Simple install procedure:
 
-  % tar Jxf gtksourceview-3.2.1.tar.xz# unpack the sources
-  % cd gtksourceview-3.2.1# change to the toplevel directory
+  % tar Jxf gtksourceview-3.2.2.tar.xz# unpack the sources
+  % cd gtksourceview-3.2.2# change to the toplevel directory
   % ./configure   # run the `configure' script
   % make  # build gtksourceview
   [ Become root if necessary ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gtksourceview-3.2.1/configure 
new/gtksourceview-3.2.2/configure
--- old/gtksourceview-3.2.1/configure   2011-10-09 16:47:14.0 +0200
+++ new/gtksourceview-3.2.2/configure   2011-10-16 13:30:07.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for gtksourceview 3.2.1.
+# Generated by GNU Autoconf 2.68 for gtksourceview 3.2.2.
 #
 # Report bugs to 
http://bugzilla.gnome.org/enter_bug.cgi?product=gtksourceview.
 #
@@ -571,8 +571,8 @@
 # Identity of this package.
 PACKAGE_NAME='gtksourceview'
 PACKAGE_TARNAME='gtksourceview'
-PACKAGE_VERSION='3.2.1'
-PACKAGE_STRING='gtksourceview 3.2.1'
+PACKAGE_VERSION='3.2.2'
+PACKAGE_STRING='gtksourceview 3.2.2'
 

commit gucharmap for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package gucharmap for openSUSE:Factory
checked in at Tue Oct 18 14:09:42 CEST 2011.




--- openSUSE:Factory/gucharmap/gucharmap.changes2011-10-02 
10:12:23.0 +0200
+++ /mounts/work_src_done/STABLE/gucharmap/gucharmap.changes2011-10-17 
19:53:01.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct 17 18:22:57 CEST 2011 - dims...@opensuse.org
+
+- Update to version 3.2.1:
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  gucharmap-3.2.0.tar.bz2

New:

  gucharmap-3.2.1.tar.bz2



Other differences:
--
++ gucharmap.spec ++
--- /var/tmp/diff_new_pack.XfET7G/_old  2011-10-18 14:09:38.0 +0200
+++ /var/tmp/diff_new_pack.XfET7G/_new  2011-10-18 14:09:38.0 +0200
@@ -35,7 +35,7 @@
 BuildRequires:  update-desktop-files
 License:GPLv3+ ; LGPLv2.1+
 Group:  System/GUI/GNOME
-Version:3.2.0
+Version:3.2.1
 Release:1
 Summary:A Featureful Unicode Character Map
 Source: 
http://download.gnome.org/sources/gucharmap/3.2/%{name}-%{version}.tar.bz2

++ gucharmap-3.2.0.tar.bz2 - gucharmap-3.2.1.tar.bz2 ++
 1851 lines of diff (skipped)

continue with 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 gvfs for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package gvfs for openSUSE:Factory
checked in at Tue Oct 18 14:09:59 CEST 2011.




--- openSUSE:Factory/gvfs/gvfs.changes  2011-10-16 12:50:19.0 +0200
+++ /mounts/work_src_done/STABLE/gvfs/gvfs.changes  2011-10-17 
20:26:54.0 +0200
@@ -1,0 +2,7 @@
+Mon Oct 17 20:25:38 CEST 2011 - dims...@opensuse.org
+
+- Update to version 1.10.1:
+  + daemon: Fix a crash on unmount, unref'ing a job source
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  gvfs-1.10.0.tar.bz2

New:

  gvfs-1.10.1.tar.bz2



Other differences:
--
++ gvfs.spec ++
--- /var/tmp/diff_new_pack.vPbDbV/_old  2011-10-18 14:09:51.0 +0200
+++ /var/tmp/diff_new_pack.vPbDbV/_new  2011-10-18 14:09:51.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   gvfs
-Version:1.10.0
+Version:1.10.1
 Release:1
 # FIXME: add libbluray BuildRequires once available (fate#312440)
 License:LGPLv2.0+

++ gvfs-1.10.0.tar.bz2 - gvfs-1.10.1.tar.bz2 ++
 4828 lines of diff (skipped)

continue with 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 hydrogen for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package hydrogen for openSUSE:Factory
checked in at Tue Oct 18 14:10:18 CEST 2011.




--- openSUSE:Factory/hydrogen/hydrogen.changes  2011-09-23 02:03:03.0 
+0200
+++ /mounts/work_src_done/STABLE/hydrogen/hydrogen.changes  2011-10-05 
17:56:40.0 +0200
@@ -1,0 +2,15 @@
+Wed Oct  5 15:36:50 UTC 2011 - davejpla...@gmail.com
+
+- Update to version 0.9.6, all patches obsolete, remade
+  hydrogen-no-current-time.patch  hydrogen-0.9.6-desktopfile.patch
+- Build system now uses cmake, rewrote the Build section and added
+  man page for h2cli. Created devel and libhydrogen-core-0_9_6-0
+  sub packages.
+- Upstream changes :
+  *Release 0.9.6
+  *new build system (cmake)
+  *add undo for song/pattern editor
+  *jack-session support
+  *some bug fixes
+
+---

calling whatdependson for head-i586


Old:

  hydrogen-0.9.5-desktopfile.patch
  hydrogen-0.9.5.tar.bz2
  hydrogen-linux3.patch
  hydrogen-no-return-in-nonvoid-function.patch
  portaudio.patch

New:

  COPYING
  h2cli.1
  hydrogen-0.9.6-desktop.patch
  hydrogen-0.9.6-lib64.patch
  hydrogen-0.9.6.tar.bz2



Other differences:
--
++ hydrogen.spec ++
--- /var/tmp/diff_new_pack.5q7Xf1/_old  2011-10-18 14:10:06.0 +0200
+++ /var/tmp/diff_new_pack.5q7Xf1/_new  2011-10-18 14:10:06.0 +0200
@@ -15,27 +15,44 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
+%define soversion 0
+%define soage 0
+%define sorevision 0
+# WARNING: ATM librubberband2 support is experimental currently it is 
recommended that you disable
+# this config option to ensure backwards compatibility with songs created 
under 0.9.5 which use
+# rubberband. Use the rubberband -cli package instead.
+%define librubberband 0
 
 Name:   hydrogen
-BuildRequires:  alsa-devel flac-devel libjack-devel liblrdf-devel libqt4-devel 
libsndfile-devel
-BuildRequires:  ladspa-devel lash-devel libarchive-devel libraptor-devel 
portaudio-devel zlib-devel
-BuildRequires:  fdupes gcc-c++ help2man hicolor-icon-theme rsync scons 
subversion update-desktop-files
+BuildRequires:  alsa-devel doxygen flac-devel libjack-devel liblrdf-devel 
libqt4-devel libsndfile-devel
+BuildRequires:  ladspa ladspa-devel lash-devel libarchive-devel 
libraptor-devel portaudio-devel zlib-devel
+BuildRequires:  cmake fdupes gcc-c++ help2man hicolor-icon-theme pkg-config 
rsync subversion update-desktop-files
+#pkgconfig(ladspa-1.13)
+%if 0%{?librubberband} == 1
+BuildRequires:  librubberband-devel
+%else
+Requires:   rubberband-cli
+BuildRequires:  rubberband-cli
+%endif
 Summary:A Real-Time Drum Machine and Sequencer
-Version:0.9.5
-Release:3
-License:GPLv2+
+# NOTE: Don't forget to update the libsuffix macro.
+Version:0.9.6
+Release:0
+License:GPL-2.0+
 Group:  Productivity/Multimedia/Sound/Midi
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://www.hydrogen-music.org/
 Source0:%{name}-%{version}.tar.bz2
 Source1:hydrogen.1
-Patch1: portaudio.patch
-Patch2: hydrogen-no-return-in-nonvoid-function.patch
-Patch3: hydrogen-no-current-time.patch
-Patch4: hydrogen-0.9.5-desktopfile.patch
-Patch5: hydrogen-linux3.patch
+Source2:h2cli.1
+Source3:COPYING
+# Fixup the desktop file.
+Patch0: hydrogen-0.9.6-desktop.patch
+# Remove current date and time from sources.
+Patch1: hydrogen-no-current-time.patch
+# libhydrogencore has no soname and installs in _libexecdir
+Patch2: hydrogen-0.9.6-lib64.patch
 
 %description
 Hydrogen is an advanced drum machine for GNU/Linux.
@@ -61,61 +78,96 @@
 Export song to wav file.
 Export song to midi file.
 
-Authors

- Alessandro Cominu (aka Comix)
- co...@users.sourceforge.net
+%package -n libhydrogen-core%{soversion}
+Group:  System/Libraries
+Summary:Library essential for hydrogen
+
+%description -n libhydrogen-core%{soversion}
+This is the core of hydrogen's operation.
+
+%package -n libhydrogen-core-devel
+Group:  Development/Libraries/C and C++
+Summary:Development files and headers for libhydrogen-core
+Requires:   libhydrogen-core%{soversion} = %{version}-%{release}
+
+%description -n libhydrogen-core-devel
+These are the headers needed to develop apps that
+link with libhydrogen-core.
 
 %prep
 %setup -q
+%patch0
 %patch1
 %patch2
-%patch3
-%patch4
-%patch5
+# copy licence with correct fsf address
+install -m 0644 %{S:3} ./
 
 %build
 
-build() {
-#%%{?jobs:--jobs=%%jobs}
-scons %{?jobs:--jobs=%jobs} \
-   libarchive=1 \
-   prefix=%{_prefix} \
-   optflags=%{optflags} -fPIC -ggdb \
-   portaudio=1 \
-   lash=1 \
-   $*
-
-if test $? != 0; then

commit icecast for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package icecast for openSUSE:Factory
checked in at Tue Oct 18 14:10:26 CEST 2011.




--- openSUSE:Factory/icecast/icecast.changes2011-09-23 02:03:12.0 
+0200
+++ /mounts/work_src_done/STABLE/icecast/icecast.changes2011-10-15 
06:51:58.0 +0200
@@ -1,0 +2,5 @@
+Sat Oct 15 04:47:10 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to make the spec file more reliable
+
+---

calling whatdependson for head-i586




Other differences:
--
++ icecast.spec ++
--- /var/tmp/diff_new_pack.a118e6/_old  2011-10-18 14:10:22.0 +0200
+++ /var/tmp/diff_new_pack.a118e6/_new  2011-10-18 14:10:22.0 +0200
@@ -34,6 +34,7 @@
 BuildRequires:  libtheora-devel
 BuildRequires:  libvorbis-devel
 BuildRequires:  libxslt-devel
+BuildRequires:  libtool
 BuildRequires:  speex-devel
 BuildRequires:  openssl-devel
 PreReq: %fillup_prereq

continue with 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 ices for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package ices for openSUSE:Factory
checked in at Tue Oct 18 14:10:33 CEST 2011.




--- openSUSE:Factory/ices/ices.changes  2011-09-23 02:03:13.0 +0200
+++ /mounts/work_src_done/STABLE/ices/ices.changes  2011-10-15 
06:51:31.0 +0200
@@ -1,0 +2,5 @@
+Sat Oct 15 04:47:07 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to make the spec file more reliable
+
+---

calling whatdependson for head-i586




Other differences:
--
++ ices.spec ++
--- /var/tmp/diff_new_pack.0sSQh3/_old  2011-10-18 14:10:30.0 +0200
+++ /var/tmp/diff_new_pack.0sSQh3/_new  2011-10-18 14:10:30.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package ices (Version 2.0.1)
+# spec file for package ices
 #
-# 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
@@ -19,7 +19,8 @@
 
 
 Name:   ices
-BuildRequires:  alsa-devel libshout-devel libtheora-devel libvorbis-devel 
libxml2-devel pkgconfig
+BuildRequires:  alsa-devel libshout-devel libtheora-devel libvorbis-devel 
libxml2-devel pkgconfig speex-devel
+BuildRequires:  libtool
 Summary:Source Client for icecast Streaming Server
 Version:2.0.1
 Release:239

continue with 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 idep for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package idep for openSUSE:Factory
checked in at Tue Oct 18 14:10:41 CEST 2011.




--- openSUSE:Factory/idep/idep.changes  2011-09-23 02:03:22.0 +0200
+++ /mounts/work_src_done/STABLE/idep/idep.changes  2011-10-15 
06:52:21.0 +0200
@@ -1,0 +2,5 @@
+Sat Oct 15 04:47:13 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to make the spec file more reliable
+
+---

calling whatdependson for head-i586




Other differences:
--
++ idep.spec ++
--- /var/tmp/diff_new_pack.VS1Bfq/_old  2011-10-18 14:10:37.0 +0200
+++ /var/tmp/diff_new_pack.VS1Bfq/_new  2011-10-18 14:10:37.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package idep (Version 0.5)
+# spec file for package idep
 #
-# 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
@@ -20,6 +20,7 @@
 
 Name:   idep
 BuildRequires:  gcc-c++
+BuildRequires:  libtool
 Summary:Track the Dependencies in your C or C++ Code
 Version:0.5
 Release:140

continue with 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 ifolder3 for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package ifolder3 for openSUSE:Factory
checked in at Tue Oct 18 14:10:56 CEST 2011.




--- openSUSE:Factory/ifolder3/ifolder3.changes  2011-09-23 02:03:22.0 
+0200
+++ /mounts/work_src_done/STABLE/ifolder3/ifolder3.changes  2011-10-15 
06:50:37.0 +0200
@@ -1,0 +2,5 @@
+Sat Oct 15 04:47:02 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to make the spec file more reliable
+
+---

calling whatdependson for head-i586




Other differences:
--
++ ifolder3.spec ++
--- /var/tmp/diff_new_pack.vLOrmY/_old  2011-10-18 14:10:50.0 +0200
+++ /var/tmp/diff_new_pack.vLOrmY/_new  2011-10-18 14:10:50.0 +0200
@@ -21,6 +21,7 @@
 Name:   ifolder3
 
 BuildRequires:  aspell-en bison cairo cairo-devel fdupes flex gcc-c++ 
gconf-sharp2 gnome-sharp2 gnutls-devel gtk-sharp2 gtk-sharp2-complete gtk2 
gtk2-devel libglade2-devel libgnomeprintui-devel libgnomeui-devel libpng-devel 
libwnck-devel log4net mDNSResponder mono-core mono-data mono-devel mono-web 
pango pango-devel simias xsp
+BuildRequires:  libtool
 %if 0%{suse_version}  1120
 BuildRequires:  simias-devel
 %endif

continue with 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 jamin for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package jamin for openSUSE:Factory
checked in at Tue Oct 18 14:11:09 CEST 2011.




--- openSUSE:Factory/jamin/jamin.changes2011-09-23 02:04:00.0 
+0200
+++ /mounts/work_src_done/STABLE/jamin/jamin.changes2011-10-15 
06:50:34.0 +0200
@@ -1,0 +2,5 @@
+Sat Oct 15 04:47:01 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to make the spec file more reliable
+
+---

calling whatdependson for head-i586




Other differences:
--
++ jamin.spec ++
--- /var/tmp/diff_new_pack.aCIcNz/_old  2011-10-18 14:10:59.0 +0200
+++ /var/tmp/diff_new_pack.aCIcNz/_new  2011-10-18 14:10:59.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package jamin (Version 0.95.0)
+# spec file for package jamin
 #
-# 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
@@ -19,7 +19,9 @@
 
 
 Name:   jamin
-BuildRequires:  alsa-devel fftw3-devel gtk2-devel intltool jack-devel 
ladspa-devel liblo-devel libxml2-devel perl-XML-Parser shared-mime-info 
update-desktop-files
+BuildRequires:  alsa-devel fftw3-devel gtk2-devel intltool jack-devel 
ladspa-devel liblo-devel
+BuildRequires:  libxml2-devel perl-XML-Parser shared-mime-info 
update-desktop-files
+BuildRequires:  libtool
 Summary:JACK Audio Mastering Interface
 Version:0.95.0
 Release:235

continue with 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 kde4-filesystem for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package kde4-filesystem for openSUSE:Factory
checked in at Tue Oct 18 14:16:55 CEST 2011.




--- openSUSE:Factory/kde4-filesystem/kde4-filesystem.changes2011-10-06 
16:15:27.0 +0200
+++ /mounts/work_src_done/STABLE/kde4-filesystem/kde4-filesystem.changes
2011-10-07 10:30:22.0 +0200
@@ -1,0 +2,32 @@
+Fri Oct  7 10:10:34 UTC 2011 - toddrme2...@gmail.com
+
+- Cleaned up obsoletes:
+  * Added provides for obsoletes (fix for RPMLINT warning)
+  * Bumped obsolete versions to next stable KDE release 
+(so i.e. 4.0.83 becomes 4.1)
+  * Sorted by version number then name
+  * Cleaned up indenting so it is easier to see which packages
+were removed at the same time
+  * Removed some redundant obsoletes (fix for RPMLINT warning)
+- Added obsoletes/provides for packages removed or renamed for 4.7.1:
+  * kbattleship
+  * kdeartwork4
+  * kdegames4
+  * kdemultimedia4
+  * kdenetwork4
+  * kdesdk4
+  * kdetoys4
+  * kdeutils4
+  * klines
+  * ktron
+  * ktuberling
+- Made macros that were duplicates of standard macros use the
+  standard macro directly.  This is particularly important for the
+  %_kde_mandir macro, since it means all files in this directory
+  automatically get the %doc tag without needing to explicitly set
+  it.  IMPORTANT: none of these changes actually change the contents
+  of the macros or where the files are stored
+- Cleaned up spec file formatting
+- Cleaned up macros file formatting
+
+---

calling whatdependson for head-i586




Other differences:
--
++ kde4-filesystem.spec ++
--- /var/tmp/diff_new_pack.SipyDl/_old  2011-10-18 14:16:52.0 +0200
+++ /var/tmp/diff_new_pack.SipyDl/_new  2011-10-18 14:16:52.0 +0200
@@ -15,9 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   kde4-filesystem
 Url:http://www.kde.org
 Version:4.7.2
@@ -28,54 +25,96 @@
 Summary:KDE4 Directory Layout
 Source0:macros.kde4
 Source1:COPYING
-Provides:   kde4-fsview  = 3.93.0.svn712059
-Obsoletes:  kde4-fsview = 3.93.0.svn712059
-Provides:   kdeaddons4  = 3.93.0.svn712059
-Obsoletes:  kdeaddons4 = 3.93.0.svn712059
-Provides:   kdeaddons4-kicker  = 3.93.0
-Obsoletes:  kdeaddons4-kicker = 3.93.0
-Provides:   kdeaddons4-knewsticker  = 3.93.0.svn712059
-Obsoletes:  kdeaddons4-knewsticker = 3.93.0.svn712059
-Provides:   kdeaddons4-konqueror  = 3.93.0.svn712059
-Obsoletes:  kdeaddons4-konqueror = 3.93.0.svn712059
-Provides:   kdeaddons4-renamedlgplugins  = 3.93.0.svn712059
-Obsoletes:  kdeaddons4-renamedlgplugins = 3.93.0.svn712059
-Provides:   kde4-kbackgammon  = 3.95.1
-Obsoletes:  kde4-kbackgammon = 3.95.1
-Provides:   kde4-kghostview  = 3.95.1
-Obsoletes:  kde4-kghostview = 3.95.1
-Provides:   kde4-noatun  = 3.93.0.svn712059
-Obsoletes:  kde4-noatun = 3.93.0.svn712059
-Provides:   kdeaccessibility4-kicker  = 3.97.1
-Obsoletes:  kdeaccessibility4-kicker = 3.97.1
-Provides:   kdetoys4-kicker  = 3.97.1
-Obsoletes:  kdetoys4-kicker = 3.97.1
-Provides:   kde4-khexeditor  = 3.97.1
-Obsoletes:  kde4-khexeditor = 3.97.1
-Provides:   kde4-kregexpeditor  = 3.97.1
-Obsoletes:  kde4-kregexpeditor = 3.97.1
-Obsoletes:  extragear-libs = 4.0.80
-Obsoletes:  kde4-kmilo = 4.0.72
-Obsoletes:  kde4-kmobiletools = 4.0.80
-Obsoletes:  kde4-knewsticker  4.1.70
-Obsoletes:  kde4-korn = 4.1.0
-Obsoletes:  kde4-kpercentage = 4.0.73
-Obsoletes:  kde4-kpilot = 4.0.80
-Obsoletes:  kde4-kworldclock = 4.0.74
-Obsoletes:  kde4-kxsldbg = 4.0
-Obsoletes:  kde4-quanta = 4.0
-Obsoletes:  kde4-secpolicy = 4.0.80
-Obsoletes:  kde4-kpercentage = 4.1.87
-Obsoletes:  kde4-ktnef = 4.1.87
-Obsoletes:  kde4-style-phase = 4.1.87
-Obsoletes:  kdeartwork4-kwin = 4.1.87
-Obsoletes:  kdeartwork4-kworldclock = 4.1.87
-Obsoletes:  libkscan4 = 4.0.73
-Obsoletes:  kpilot = 4.3.80
-Obsoletes:  kdeedu4 = 4.6.80
-Obsoletes:  kdeedu4-noarch = 4.6.80
-Obsoletes:  kmtrace-devel = 4.6.80
-Obsoletes:  kdeadmin4 = 4.7.1
+Provides:   kdeaddons4-kicker   = 4.0
+Obsoletes:  kdeaddons4-kicker4.0
+Provides:   kde4-fsview = 4.0
+Obsoletes:  kde4-fsview  4.0
+Provides:   kde4-kbackgammon= 4.0
+Obsoletes:  kde4-kbackgammon 4.0
+Provides:   kde4-kghostview = 4.0
+Obsoletes:  kde4-kghostview  4.0
+Provides:   kde4-khexeditor = 4.0
+Obsoletes:  kde4-khexeditor  4.0
+Provides:   kde4-kregexpeditor  = 4.0
+Obsoletes:  kde4-kregexpeditor   4.0

commit kdebase4-runtime for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package kdebase4-runtime for openSUSE:Factory
checked in at Tue Oct 18 14:17:05 CEST 2011.




--- openSUSE:Factory/kdebase4-runtime/kdebase4-runtime.changes  2011-10-06 
16:17:58.0 +0200
+++ /mounts/work_src_done/STABLE/kdebase4-runtime/kdebase4-runtime.changes  
2011-10-17 12:18:16.0 +0200
@@ -1,0 +2,11 @@
+Mon Oct 17 10:16:53 UTC 2011 - wstephen...@suse.com
+
+- Revert PulseAudio 1.0 change; this was fixed already in kdelibs4
+
+---
+Fri Oct 14 10:15:40 UTC 2011 - toddrme2...@gmail.com
+
+- Properly find PulseAudio 1.0
+- Cleaned up spec file formatting
+
+---

calling whatdependson for head-i586




Other differences:
--
++ kdebase4-runtime.spec ++
--- /var/tmp/diff_new_pack.F95yCW/_old  2011-10-18 14:17:01.0 +0200
+++ /var/tmp/diff_new_pack.F95yCW/_new  2011-10-18 14:17:01.0 +0200
@@ -172,20 +172,20 @@
 %install
   cd build
   %make_install
-  rm -rf %{buildroot}%{_datadir}/icons/hicolor/index.theme
-  rm -rf %{buildroot}%{_datadir}/icons/oxygen
-  rm -rf %{buildroot}%{_datadir}/wallpapers
+  rm -rf %{buildroot}%{_kde4_datadir}/wallpapers
+  rm -rf %{buildroot}%{_kde4_iconsdir}/hicolor/index.theme
+  rm -rf %{buildroot}%{_kde4_iconsdir}/oxygen
   mkdir -p %{buildroot}%{_kde4_sysconfdir}/xdg/menus
   mv %{buildroot}%{_kde4_sysconfdir}/xdg/menus/kde-information.menu 
%{buildroot}%{_kde4_sysconfdir}/xdg/menus/kde4-information.menu
   mkdir -p %{buildroot}%{_kde4_sysconfdir}/xdg/menus/applications-merged
   install -m 644 %{SOURCE1} 
%{buildroot}%{_kde4_sysconfdir}/xdg/menus/applications-merged/kde4-essential.menu
   install -m 644 %{SOURCE2} 
%{buildroot}%{_kde4_sysconfdir}/xdg/menus/kde4-settings.menu
-  install -m 644 %{SOURCE3} %{buildroot}%{_datadir}/desktop-directories/
+  install -m 644 %{SOURCE3} %{buildroot}%{_kde4_datadir}/desktop-directories/
   mkdir -p %{buildroot}%{_kde4_prefix}/bin
   ln -s %{_kde4_libexecdir}/kdesu %{buildroot}%{_kde4_bindir}/kdesu
   rm -rf %{buildroot}%{_includedir}/KDE
-  mkdir -p %{buildroot}%{_datadir}/pixmaps
-  install $RPM_SOURCE_DIR/nepomuk.png %{buildroot}%{_datadir}/pixmaps/
+  mkdir -p %{buildroot}%{_kde4_datadir}/pixmaps
+  install $RPM_SOURCE_DIR/nepomuk.png %{buildroot}%{_kde4_datadir}/pixmaps/
   %suse_update_desktop_file -r knetattachSystem Network
   %suse_update_desktop_fileHelp  Documentation Viewer
   %fdupes -s %{buildroot}
@@ -193,14 +193,14 @@
 
 %post
 /sbin/ldconfig
-%{_kde4_bindir}/update-mime-database %{_datadir}/mime  /dev/null || :
+%{_kde4_bindir}/update-mime-database %{_kde4_datadir}/mime  /dev/null || :
 %if 0%{?suse_version}  1130
 %set_permissions %{_kde4_libexecdir}/kdesud
 %endif
 
 %postun
 /sbin/ldconfig
-%{_kde4_bindir}/update-mime-database %{_datadir}/mime  /dev/null || :
+%{_kde4_bindir}/update-mime-database %{_kde4_datadir}/mime  /dev/null || :
 
 %verifyscript
 %verify_permissions -e %{_kde4_bindir}/kcheckpass
@@ -242,8 +242,7 @@
 %config %{_kde_config_dir}/khotnewstuff_upload.knsrc
 
 # --- menus ---
-%config %dir %{_kde4_sysconfdir}/xdg/menus/applications-merged
-%config %{_kde4_sysconfdir}/xdg/menus/applications-merged/kde4-essential.menu
+%config %{_kde4_sysconfdir}/xdg/menus/applications-merged
 %config %{_kde4_sysconfdir}/xdg/menus/kde4-information.menu
 %config %{_kde4_sysconfdir}/xdg/menus/kde4-settings.menu
 
@@ -375,27 +374,29 @@
 %{_kde4_libdir}/libnepomuksync.so
 
 # --- plasma ---
+%{_kde4_modulesdir}/plasma_appletscript_declarative.so
 %{_kde4_modulesdir}/plasma_appletscript_simple_javascript.so
-%{_kde4_modulesdir}/plasma_runnerscript_javascript.so
 %{_kde4_modulesdir}/plasma_containment_newspaper.so
-%{_kde4_modulesdir}/plasma_packagestructure_javascriptaddon.so
 %{_kde4_modulesdir}/plasma_dataenginescript_javascript.so
 %{_kde4_modulesdir}/plasma-kpart.so
-%{_kde4_modulesdir}/plasma_appletscript_declarative.so
+%{_kde4_modulesdir}/plasma_packagestructure_javascriptaddon.so
+%{_kde4_modulesdir}/plasma_runnerscript_javascript.so
 
 # --- other ---
 %{_kde4_libdir}/attica_kde.so
 %{_kde4_libdir}/libknotifyplugin.so
 %{_kde4_libdir}/libkwalletbackend.so
 %{_kde4_libdir}/libmolletnetwork.so
-%{_kde4_modulesdir}/plugins/phonon_platform
 %{_kde4_modulesdir}/imports/
+%{_kde4_modulesdir}/plugins/phonon_platform
 
 # --- libexec ---
 %verify(not mode) %attr(2755,root,nogroup) %{_kde4_libexecdir}/kdesud
 %{_kde4_libexecdir}/drkonqi
+%{_kde4_libexecdir}/kcmremotewidgetshelper
 %{_kde4_libexecdir}/kdeeject
 %{_kde4_libexecdir}/kdesu
+%{_kde4_libexecdir}/kdontchangethehostname
 %{_kde4_libexecdir}/khc_docbookdig.pl
 %{_kde4_libexecdir}/khc_htdig.pl
 %{_kde4_libexecdir}/khc_htsearch.pl
@@ -403,15 +404,13 @@
 %{_kde4_libexecdir}/khc_mansearch.pl
 %{_kde4_libexecdir}/kioexec
 

commit kdelibs4 for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory
checked in at Tue Oct 18 14:17:23 CEST 2011.




--- openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes  2011-10-13 
16:26:32.0 +0200
+++ /mounts/work_src_done/STABLE/kdelibs4/kdelibs4-apidocs.changes  
2011-10-17 13:23:19.0 +0200
@@ -1,0 +2,11 @@
+Mon Oct 17 11:20:33 UTC 2011 - co...@suse.com
+
+- make branding requires for old distros backwards - will hopefully
+  fade out as time goes by
+
+---
+Sun Oct 16 20:09:02 UTC 2011 - wstephen...@suse.com
+
+- Patch PulseAudio cmake module with same fix as phonon
+
+---
kdelibs4.changes: same change

calling whatdependson for head-i586


New:

  kdelibs-pulseaudio-1.0.patch



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.0ELtu4/_old  2011-10-18 14:17:18.0 +0200
+++ /var/tmp/diff_new_pack.0ELtu4/_new  2011-10-18 14:17:18.0 +0200
@@ -65,7 +65,15 @@
 BuildRequires:  xz-devel
 Version:4.7.2
 Release:1
+%if %suse_version  1140
 %define brandingversion 4.7
+%endif
+%if %suse_version == 1130
+%define brandingversion 11.3
+%endif
+%if %suse_version == 1140
+%define brandingversion 11.4
+%endif
 License:LGPLv2.1+
 Summary:KDE Base Libraries
 Url:http://www.kde.org
@@ -90,6 +98,7 @@
 Patch20:ignore-inline-menu.diff
 Patch24:ksuseinstall.diff
 Patch25:82c463cf8e66850417ea4f8b7ff801cff860871e.diff
+Patch26:kdelibs-pulseaudio-1.0.patch
 PreReq: permissions
 Requires:   soprano = %( echo `rpm -q --queryformat '%{VERSION}' 
libsoprano-devel`)
 Recommends: strigi = %( echo `rpm -q --queryformat '%{VERSION}' 
strigi-devel`)
@@ -150,6 +159,10 @@
 %patch20
 %patch24
 %patch25 -p1
+%if 0%{?suse_version} == 1210
+%patch26 -p1
+%endif
+
 #
 # define KDE version exactly
 #

++ kdelibs-pulseaudio-1.0.patch ++
Index: kdelibs-4.7.2/cmake/modules/FindPulseAudio.cmake
===
--- kdelibs-4.7.2.orig/cmake/modules/FindPulseAudio.cmake
+++ kdelibs-4.7.2/cmake/modules/FindPulseAudio.cmake
@@ -57,7 +57,7 @@ if (PULSEAUDIO_INCLUDE_DIR  AND NOT  PUL
file(STRINGS ${PULSEAUDIO_INCLUDE_DIR}/pulse/version.h pulse_version_h
 REGEX .*pa_get_headers_version\\(\\).*
 )
-   string(REGEX REPLACE .*pa_get_headers_version\\(\\)\ 
\\(\([0-9]+\\.[0-9]+\\.[0-9]+)[^\]*\\\).* \\1
+   string(REGEX REPLACE .*pa_get_headers_version\\(\\)\ 
\\(\([0-9]+\\.[0-9]+)[^\]*\\\).* \\1
  _PULSEAUDIO_VERSION ${pulse_version_h})
 
set(PULSEAUDIO_VERSION ${_PULSEAUDIO_VERSION} CACHE STRING Version 
number of PulseAudio FORCE)

continue with 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 kdepim4 for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package kdepim4 for openSUSE:Factory
checked in at Tue Oct 18 14:17:50 CEST 2011.




--- openSUSE:Factory/kdepim4/kdepim4.changes2011-10-06 16:40:21.0 
+0200
+++ /mounts/work_src_done/STABLE/kdepim4/kdepim4.changes2011-10-15 
15:08:13.0 +0200
@@ -1,0 +2,6 @@
+Sat Oct 15 13:03:47 UTC 2011 - ctri...@opensuse.org
+
+- restrict fdupes call to prevent unwanted pacakge dependencies
+  (bnc#724044)
+
+---

calling whatdependson for head-i586




Other differences:
--
++ kdepim4.spec ++
--- /var/tmp/diff_new_pack.Fehd0U/_old  2011-10-18 14:17:45.0 +0200
+++ /var/tmp/diff_new_pack.Fehd0U/_new  2011-10-18 14:17:45.0 +0200
@@ -160,7 +160,12 @@
   %suse_update_desktop_file ktimetrackerUtility  TimeUtility
 
   %kde_post_install
-  %fdupes -s %{buildroot}
+  #Restrict fdupes call to not cause unwanted dependencies between packages
+  %fdupes -s %{buildroot}%{_kde4_htmldir}
+  %fdupes -s %{buildroot}%{_kde4_appsdir}/libkleopatra/
+  %fdupes -s %{buildroot}%{_kde4_appsdir}/knode/
+  %fdupes -s %{buildroot}%{_kde4_appsdir}/kmail2/
+  %fdupes -s %{buildroot}%{_kde4_iconsdir}
   %kde_post_install
 
   rm %{buildroot}%{_kde4_libdir}/*.so

continue with 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 kdesdk4 for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package kdesdk4 for openSUSE:Factory
checked in at Tue Oct 18 14:18:11 CEST 2011.




--- openSUSE:Factory/kdesdk4/kdesdk4.changes2011-10-06 16:35:43.0 
+0200
+++ /mounts/work_src_done/STABLE/kdesdk4/kdesdk4.changes2011-10-07 
06:44:03.0 +0200
@@ -1,0 +2,5 @@
+Fri Oct  7 04:43:48 UTC 2011 - co...@suse.com
+
+- buildrequire specific kdelibs4
+
+---

calling whatdependson for head-i586




Other differences:
--
++ kdesdk4.spec ++
--- /var/tmp/diff_new_pack.qjD2Rc/_old  2011-10-18 14:18:05.0 +0200
+++ /var/tmp/diff_new_pack.qjD2Rc/_new  2011-10-18 14:18:05.0 +0200
@@ -42,6 +42,7 @@
 BuildRequires:  oxygen-icon-theme
 BuildRequires:  strigi
 BuildRequires:  subversion-devel
+BuildRequires:  libkde4-devel = %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %kde4_runtime_requires
 Requires(post): shared-mime-info

continue with 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 kiwi for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package kiwi for openSUSE:Factory
checked in at Tue Oct 18 14:18:35 CEST 2011.




--- openSUSE:Factory/kiwi/kiwi.changes  2011-10-16 12:55:51.0 +0200
+++ /mounts/work_src_done/STABLE/kiwi/kiwi.changes  2011-10-18 
12:52:27.0 +0200
@@ -1,0 +2,145 @@
+Tue Oct 18 12:36:13 CEST 2011 - m...@suse.de
+  
+- v4.98.4 released
+  
+---
+Tue Oct 18 12:28:27 CEST 2011 - m...@suse.de
+  
+- fixed disk device setup in USB stick install mode
+  
+---
+Tue Oct 18 11:57:56 CEST 2011 - m...@suse.de
+  
+- added init=... bootloader setup if systemd is used
+  
+---
+Tue Oct 18 11:13:37 CEST 2011 - m...@suse.de
+  
+- v4.98.3 released
+  
+---
+Tue Oct 18 11:02:53 CEST 2011 - m...@suse.de
+  
+- update German translation .po file
+  
+---
+Tue Oct 18 10:39:12 CEST 2011 - m...@suse.de
+  
+- make sure locale .mo files are created
+  
+---
+Tue Oct 18 10:37:51 CEST 2011 - m...@suse.de
+  
+- update locale headers
+  
+---
+Tue Oct 18 09:53:28 CEST 2011 - m...@suse.de
+  
+- added support for setting up which volume should get the
+  rest free space assigned in a LVM setup. Example:
+  
+  systemdisk
+  volume name=/var freespace=all/
+  /systemdisk
+  
+  This will assign the rest space available in the volume
+  group to the LVvar logical volume. rest space means either
+  the size of the 'oem-systemsize' element or if not set
+  the entire rest space of the disk. If no 'all' freespace
+  attribute is set in the volume setup, the default volume
+  LVRoot is used as before (bnc #724489)
+  
+---
+Mon Oct 17 16:59:44 CEST 2011 - m...@suse.de
+  
+- added clicfs COW file check prior to mounting it via clicfs_fsck
+  if the check fails we disable persistent writing
+  
+---
+Mon Oct 17 16:23:17 CEST 2011 - m...@suse.de
+  
+- v4.98.2 released
+  
+---
+Mon Oct 17 16:21:06 CEST 2011 - m...@suse.de
+  
+- renamed suse-live-stick to suse-live-usbstick to allow package
+  upgrade again. Details in (bnc #722452)
+  
+---
+Mon Oct 17 16:15:36 CEST 2011 - m...@suse.de
+  
+- prefer systemd over sysvinit if installed
+  
+---
+Mon Oct 17 16:05:15 CEST 2011 - m...@suse.de
+  
+- don't use --ignore-cow-errors when using a cow _file_
+  
+---
+Mon Oct 17 15:43:37 CEST 2011 - m...@suse.de
+  
+- make sure setupHybridPersistent() is called before the
+  boot device is busy
+  
+---
+Mon Oct 17 15:41:08 CEST 2011 - m...@suse.de
+  
+- added missing __checkImageIntegrity() calls
+  
+---
+Mon Oct 17 10:25:40 CEST 2011 - m...@suse.de
+  
+- v4.98.1 released
+  
+---
+Mon Oct 17 10:21:32 CEST 2011 - m...@suse.de
+  
+- update XML data to new schema version 5.3
+  
+---
+Mon Oct 17 10:17:27 CEST 2011 - m...@suse.de
+  
+- fixed kiwiRuntimeChecker unit tests
+  
+---
+Mon Oct 17 09:50:46 CEST 2011 - m...@suse.de
+  
+- added a 30 sec timeout to searchBIOSBootDevice
+  
+---
+Sat Oct 15 22:29:37 CEST 2011 - m...@suse.de
+  
+- make searchBiosBootDevice more robust. The function probes
+  for the boot device until found and does not expect all
+  storage devices to be present at call time. There is still
+  a problem in install mode where we need a list of all
+  potential installation devices to be present at a certain
+  point in time. The function waitForIdleEventQueue tries
+  to address this but it's not race free
+  
+  Date:   Sat Oct 15 11:37:40 2011 -0400
+  
+  revamp the EC2 chapter, include instructions for using EBS, restructure 
organization
+  
+  Date:   Sat Oct 15 08:46:37 2011 -0400
+  
+  change ec2region values to match reported regions from ec2-describe-regions 
comand, AP-Japan - AP-Northeast, AP-Singapore - AP-Southeast, change schema 
version to 5.3 to reflect the value change, implement xml convert from 5.2 to 
5.3, update the tests and validation
+  

commit kmymoney for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package kmymoney for openSUSE:Factory
checked in at Tue Oct 18 14:18:56 CEST 2011.




--- openSUSE:Factory/kmymoney/kmymoney.changes  2011-09-23 02:06:55.0 
+0200
+++ /mounts/work_src_done/STABLE/kmymoney/kmymoney.changes  2011-10-18 
09:47:28.0 +0200
@@ -1,0 +2,20 @@
+Tue Oct 18 07:47:06 UTC 2011 - co...@suse.com
+
+- change lang and doc subpackages to recommends
+
+---
+Thu Oct 13 18:16:50 UTC 2011 - ctri...@opensuse.org
+
+- Allow import of gnucash files (bnc#723728)
+
+---
+Fri Sep 16 13:00:21 UTC 2011 - toddrme2...@gmail.com
+
+- Split translation package (fix for RPMLINT warning)
+- Split documentation package (fix for RPMLINT warning)
+- Changed descriptions
+- Added pth gpgme backend support
+- Enabled building of HTML handbook
+- Cleaned up spec file formatting
+
+---

calling whatdependson for head-i586


Old:

  minmem

New:

  bnc723728_fix_gnucash_import.diff



Other differences:
--
++ kmymoney.spec ++
--- /var/tmp/diff_new_pack.0ex7qX/_old  2011-10-18 14:18:49.0 +0200
+++ /var/tmp/diff_new_pack.0ex7qX/_new  2011-10-18 14:18:49.0 +0200
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   kmymoney
@@ -25,37 +24,34 @@
 Summary:A Personal Finance Manager for KDE 4
 Url:http://kmymoney2.sourceforge.net/
 Group:  Productivity/Office/Finance
-Source0:
http://prdownloads.sourceforge.net/kmymoney2/%{name}-%{version}.tar.bz2
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+# Source0:  
http://prdownloads.sourceforge.net/kmymoney2/%{name}-%{version}.tar.bz2
+Source0:%{name}-%{version}.tar.bz2
+# PATCH-FIX-UPSTREAM bnc723728_fix_gnucash_import.diff [bnc#723728]
+Patch0: bnc723728_fix_gnucash_import.diff
 BuildRequires:  aqbanking-devel
 BuildRequires:  boost-devel
-BuildRequires:  cmake
 BuildRequires:  fdupes
 BuildRequires:  glib2-devel
 BuildRequires:  glibmm2-devel
 BuildRequires:  gmp-devel
-BuildRequires:  gwenhywfar-devel
 BuildRequires:  libalkimia-devel
 BuildRequires:  libgpgme-devel
 BuildRequires:  libical-devel
-BuildRequires:  libkde4-devel
 BuildRequires:  libkdepimlibs4-devel
 BuildRequires:  libofx-devel
 BuildRequires:  libxml2-devel
+BuildRequires:  libpth-devel
 BuildRequires:  libxml++-devel
-BuildRequires:  shared-mime-info
-%if 0%{?suse_version}
-BuildRequires:  update-desktop-files
-%endif
+Recommends: %{name}-lang = %{version}
+Recommends: %{name}-doc = %{version}
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %kde4_pimlibs_requires
 %kde4_runtime_requires
 Requires(post): shared-mime-info
 Requires(postun): shared-mime-info
 
 %description
-KMyMoney is a personal finance manager.
-
-KMyMoney is the Personal Finance Manager for KDE4. It operates
+KMyMoney is a Personal Finance Manager for KDE4. It operates
 similar to Quicken, supports various account types, categorization
 of expenses, multiple currencies, online banking support via QIF,
 OFX and HBCI, budgeting and a rich set of reports.
@@ -67,13 +63,24 @@
 Requires:   %{name} = %{version}
 
 %description devel
-The development files for KMyMoney.
+Development files and headers need to build software using KMyMoney.
 
+%package doc
+License:GPLv2 or GPLv3
+Summary:Documentation for KMyMoney
+Group:  Productivity/Office/Finance
+Requires:   %{name} = %{version}
+
+%description doc
+Documentation and help files for KMyMoney.
+
+%lang_package
 %prep
 %setup -q
+%patch0
 
 %build
-%cmake_kde4 -d build
+%cmake_kde4 -d build -- -DUSE_HTML_HANDBOOK=YES
 %make_jobs
 
 %install
@@ -87,53 +94,34 @@
 
 %post
 /sbin/ldconfig
-/usr/bin/update-mime-database %{_datadir}/mime  /dev/null || :
+%{_kde4_bindir}/update-mime-database %{_datadir}/mime  /dev/null || :
 
 %postun
 /sbin/ldconfig
-/usr/bin/update-mime-database %{_datadir}/mime  /dev/null || :
+%{_kde4_bindir}/update-mime-database %{_datadir}/mime  /dev/null || :
 
 %clean
 rm -rf %{buildroot}
 
-%files -f %{name}.lang
+%files
 %defattr(-,root,root,-)
 %doc AUTHORS COPYING ChangeLog ChangeLog.original README.Fileformats
-%{_kde4_bindir}/kmymoney
-%{_kde4_modulesdir}/kcm_kmm_icalendarexport.so
-%{_kde4_modulesdir}/kcm_kmm_printcheck.so
-%{_kde4_modulesdir}/kmm_csvimport.so
-%{_kde4_modulesdir}/kmm_icalendarexport.so
-%{_kde4_modulesdir}/kmm_kbanking.so
-%{_kde4_modulesdir}/kmm_ofximport.so
-%{_kde4_modulesdir}/kmm_printcheck.so
-%{_kde4_modulesdir}/kmm_reconciliationreport.so
-%{_kde4_libdir}/libkmm_kdchart.so.*
-%{_kde4_libdir}/libkmm_mymoney.so.*
-%{_kde4_libdir}/libkmm_plugin.so.*

commit kradio for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package kradio for openSUSE:Factory
checked in at Tue Oct 18 14:19:09 CEST 2011.




--- openSUSE:Factory/kradio/kradio.changes  2011-09-23 02:07:14.0 
+0200
+++ /mounts/work_src_done/STABLE/kradio/kradio.changes  2011-09-17 
12:00:16.0 +0200
@@ -1,0 +2,7 @@
+Fri Sep 16 13:00:21 UTC 2011 - toddrme2...@gmail.com
+
+- Fixed self-obsoletes (fix for RPMLINT warning)
+- Added ffmpeg optional buildrequires (needed for streaming support)
+- Cleaned up spec file formatting
+
+---

calling whatdependson for head-i586




Other differences:
--
++ kradio.spec ++
--- /var/tmp/diff_new_pack.n5pziV/_old  2011-10-18 14:19:00.0 +0200
+++ /var/tmp/diff_new_pack.n5pziV/_new  2011-10-18 14:19:00.0 +0200
@@ -15,23 +15,30 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
+%bcond_with ffmpeg
 
 Name:   kradio
 Version:4.0.2
 Release:6
 License:GPLv2+
+Summary:A comfortable KDE4 AM/FM radio application
+Url:http://kradio.sourceforge.net
 Group:  Hardware/Radio
 Source: 
http://sourceforge.net/projects/kradio/files/kradio/%{version}/kradio4-%{version}.tar.bz2
 Patch0: suse_docdir.patch
 Patch1: kradio-desktop-file.diff
-Url:http://kradio.sourceforge.net
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  fdupes libkde4-devel = 4.2.0 libogg-devel libsndfile-devel 
libvorbis-devel lirc-devel
-Summary:A comfortable KDE4 AM/FM radio application
+BuildRequires:  fdupes
+BuildRequires:  libkde4-devel = 4.2.0
+BuildRequires:  libsndfile-devel
+BuildRequires:  libvorbis-devel
+BuildRequires:  lirc-devel
+%if %{with ffmpeg}
+BuildRequires:  libffmpeg-devel
+BuildRequires:  libmms-devel
+%endif
 Provides:   kde4-kradio = 4.0.1  
-Obsoletes:  kde4-kradio = 4.0.1  
+Obsoletes:  kde4-kradio  4.0.1
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %kde4_runtime_requires
 
 %description
@@ -57,14 +64,6 @@
 As KRadio is based on an extendable plugin architecture, contributions
 of new plugins (e.g. Internet Radio Streams, new cool GUIs) are welcome.
 
-
-Authors:
-
-Martin Witte e...@nocabal.de
-Marcus Camen mca...@mcamen.de
-Klas Kalass klas.kal...@gmx.de
-Frank Schwanz schw...@fh-brandenburg.de
-
 %prep
 %setup -q -n kradio4-%{version}
 %patch0 -p1
@@ -75,31 +74,27 @@
 %make_jobs  
 
 %install
-%makeinstall  
+%make_install
 %suse_update_desktop_file -G KDE Radio Tuner kradio4 AudioVideo Tuner  
 %kde_post_install
 %fdupes %{buildroot}
 %find_lang kradio4 --all-name
 
 %post -p /sbin/ldconfig  
-
 %postun -p /sbin/ldconfig  
 
-%clean
-test %{buildroot} != /  %__rm -rf %{buildroot}
-
 %files -f kradio4.lang
 %defattr(-,root,root)
-%{_docdir}/%{name}
-%{_docdir}/%{name}/*
-%{_bindir}/kradio4
-%{_bindir}/kradio4-convert-presets
-%{_libdir}/kradio4
-%{_datadir}/applications/kde4/kradio4.desktop
 %{_datadir}/pixmaps/kradio4.png
-%dir %{_datadir}/icons/??color/*
-%dir %{_datadir}/icons/??color/*/*
-%{_datadir}/icons/??color/*/*/kradio*
-%{_kde_share_dir}/apps/kradio4
+%{_docdir}/%{name}
+%exclude %{_docdir}/%{name}/INSTALL
+%{_kde4_applicationsdir}/kradio4.desktop
+%{_kde4_appsdir}/kradio4
+%{_kde4_bindir}/kradio4
+%{_kde4_bindir}/kradio4-convert-presets
+%{_kde4_iconsdir}/hicolor/330x330
+%{_kde4_iconsdir}/locolor/24x24
+%{_kde4_iconsdir}/??color/*/*/*.png
+%{_kde4_libdir}/kradio4
 
 %changelog

continue with 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 krb5-auth-dialog for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package krb5-auth-dialog for openSUSE:Factory
checked in at Tue Oct 18 14:19:23 CEST 2011.




--- openSUSE:Factory/krb5-auth-dialog/krb5-auth-dialog.changes  2011-10-02 
10:13:48.0 +0200
+++ /mounts/work_src_done/STABLE/krb5-auth-dialog/krb5-auth-dialog.changes  
2011-10-17 09:28:30.0 +0200
@@ -1,0 +2,10 @@
+Mon Oct 17 09:21:06 CEST 2011 - dims...@opensuse.org
+
+- Update to version 3.2.1:
+  + Fix DBus activation
+  + Add missing categories to the desktop file
+  + Fix options in documentation
+  + Updated translations.
+- Drop krb5-auth-dialog-fix-desktop.patch: fixed upstream.
+
+---

calling whatdependson for head-i586


Old:

  krb5-auth-dialog-3.2.0.tar.bz2
  krb5-auth-dialog-fix-desktop.patch

New:

  krb5-auth-dialog-3.2.1.tar.bz2



Other differences:
--
++ krb5-auth-dialog.spec ++
--- /var/tmp/diff_new_pack.5yT9qD/_old  2011-10-18 14:19:14.0 +0200
+++ /var/tmp/diff_new_pack.5yT9qD/_new  2011-10-18 14:19:14.0 +0200
@@ -20,14 +20,12 @@
 
 Name:   krb5-auth-dialog
 Summary:Kerberos 5 ticket monitoring tray applet
-Version:3.2.0
+Version:3.2.1
 Release:1
 License:GPLv2+
 Group:  Productivity/Security
 Url:http://download.gnome.org/sources/krb5-auth-dialog/
 Source: 
http://download.gnome.org/sources/krb5-auth-dialog/3.2/%{name}-%{version}.tar.bz2
-# PATCH-FIX-UPSTREAM krb5-auth-dialog-fix-desktop.patch vu...@opensuse.org -- 
Add categories to .desktop file, taken from git
-Patch0: krb5-auth-dialog-fix-desktop.patch
 BuildRequires:  bison
 BuildRequires:  flex
 BuildRequires:  gnome-doc-utils-devel
@@ -56,7 +54,6 @@
 %prep
 %setup -q
 translation-update-upstream
-%patch0 -p1
 
 %build
 %configure \

++ krb5-auth-dialog-3.2.0.tar.bz2 - krb5-auth-dialog-3.2.1.tar.bz2 ++
 1984 lines of diff (skipped)

continue with 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 ksshaskpass for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package ksshaskpass for openSUSE:Factory
checked in at Tue Oct 18 14:19:30 CEST 2011.




--- openSUSE:Factory/ksshaskpass/ksshaskpass.changes2011-09-23 
02:07:21.0 +0200
+++ /mounts/work_src_done/STABLE/ksshaskpass/ksshaskpass.changes
2011-10-11 09:31:50.0 +0200
@@ -1,0 +2,5 @@
+Tue Oct 11 07:31:15 UTC 2011 - idon...@suse.com
+
+- Fix directory ownership
+
+---

calling whatdependson for head-i586




Other differences:
--
++ ksshaskpass.spec ++
--- /var/tmp/diff_new_pack.GR15PC/_old  2011-10-18 14:19:27.0 +0200
+++ /var/tmp/diff_new_pack.GR15PC/_new  2011-10-18 14:19:27.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package ksshaskpass (Version 0.5.3)
+# spec file for package ksshaskpass
 #
-# 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
@@ -52,13 +52,10 @@
   %kde4_makeinstall
   %kde_post_install
 
-%clean
-rm -rf %{buildroot}
-
 %files
 %defattr(-,root,root)
 %if 0%{?suse_version}
-%{_libdir}/ssh/ksshaskpass
+%{_libdir}/ssh/
 %else
 %{_kde4_bindir}/ksshaskpass
 %{_kde4_applicationsdir}/ksshaskpass.desktop

continue with 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 libcares2 for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package libcares2 for openSUSE:Factory
checked in at Tue Oct 18 14:19:38 CEST 2011.




--- openSUSE:Factory/libcares2/libcares2.changes2011-09-23 
02:07:54.0 +0200
+++ /mounts/work_src_done/STABLE/libcares2/libcares2.changes2011-10-17 
05:32:47.0 +0200
@@ -1,0 +2,9 @@
+Mon Oct 17 03:29:31 UTC 2011 - crrodrig...@opensuse.org
+
+- Cherry-pick 3 patches from HEAD
+  * ares_destroy.c: fix segfault in ares_destroy_options() 
+  * ares_getnameinfo: fix random results, memory corruption
+  * ares_init.c: fix segfault triggered in ares_init_options() 
+upon previous failure of init_by_defaults()
+
+---

calling whatdependson for head-i586


New:

  0001-ares_destroy.c-fix-segfault-in-ares_destroy_options.patch
  0002-ares_getnameinfo-fix-random-results-with-c-ares-1.7..patch
  0003-ares_init.c-fix-segfault-triggered-in-ares_init_opti.patch



Other differences:
--
++ libcares2.spec ++
--- /var/tmp/diff_new_pack.z9v89M/_old  2011-10-18 14:19:35.0 +0200
+++ /var/tmp/diff_new_pack.z9v89M/_new  2011-10-18 14:19:35.0 +0200
@@ -29,6 +29,9 @@
 Source2:baselibs.conf
 BuildRequires:  pkg-config
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Patch1: 0001-ares_destroy.c-fix-segfault-in-ares_destroy_options.patch
+Patch2: 0002-ares_getnameinfo-fix-random-results-with-c-ares-1.7..patch
+Patch3: 0003-ares_init.c-fix-segfault-triggered-in-ares_init_opti.patch
 
 %description
 c-ares is a C library that performs DNS requests and name resolves
@@ -49,6 +52,9 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
+%patch1 -p1
+%patch2 -p1
+%patch3 -p1
 
 %build
 %configure --enable-symbol-hiding --enable-nonblocking --enable-shared 
--disable-static --with-pic

++ 0001-ares_destroy.c-fix-segfault-in-ares_destroy_options.patch ++
From 5662ee94d2c55b0438679939c294870ec965cfda Mon Sep 17 00:00:00 2001
From: Yang Tse yangs...@gmail.com
Date: Sun, 21 Aug 2011 16:41:43 +0200
Subject: [PATCH 1/3] ares_destroy.c: fix segfault in ares_destroy_options()
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit


Signed-off-by: Cristian Rodríguez crrodrig...@opensuse.org
---
 ares_destroy.c |8 +---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/ares_destroy.c b/ares_destroy.c
index 5e274da..a3f6ea2 100644
--- a/ares_destroy.c
+++ b/ares_destroy.c
@@ -1,6 +1,6 @@
 
 /* Copyright 1998 by the Massachusetts Institute of Technology.
- * Copyright (C) 2004-2010 by Daniel Stenberg
+ * Copyright (C) 2004-2011 by Daniel Stenberg
  *
  * Permission to use, copy, modify, and distribute this
  * software and its documentation for any purpose and without
@@ -29,10 +29,12 @@ void ares_destroy_options(struct ares_options *options)
 free(options-servers);
   for (i = 0; i  options-ndomains; i++)
 free(options-domains[i]);
-  free(options-domains);
+  if(options-domains)
+free(options-domains);
   if(options-sortlist)
 free(options-sortlist);
-  free(options-lookups);
+  if(options-lookups)
+free(options-lookups);
 }
 
 void ares_destroy(ares_channel channel)
-- 
1.7.4.1

++ 0002-ares_getnameinfo-fix-random-results-with-c-ares-1.7..patch ++
From a529199abfceae2f6a813616ced29b23d911d91e Mon Sep 17 00:00:00 2001
From: Denis Bilenko denis.bile...@gmail.com
Date: Wed, 24 Aug 2011 18:37:11 +0200
Subject: [PATCH 2/3] ares_getnameinfo: fix random results with c-ares 1.7.5
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

In ares_getnameinfo memcpy did not copy enough bytes, causing
it to return arbitrary memory contents as a result.

Signed-off-by: Cristian Rodríguez crrodrig...@opensuse.org
---
 ares_getnameinfo.c |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ares_getnameinfo.c b/ares_getnameinfo.c
index 82e261d..cdcd516 100644
--- a/ares_getnameinfo.c
+++ b/ares_getnameinfo.c
@@ -188,7 +188,7 @@ void ares_getnameinfo(ares_channel channel, const struct 
sockaddr *sa,
 if (sa-sa_family == AF_INET)
   {
 niquery-family = AF_INET;
-memcpy(niquery-addr.addr4, addr, sizeof(struct in_addr));
+memcpy(niquery-addr.addr4, addr, sizeof(niquery-addr.addr4));
 ares_gethostbyaddr(channel, addr-sin_addr,
sizeof(struct in_addr), AF_INET,
nameinfo_callback, niquery);
@@ -196,7 +196,7 @@ void ares_getnameinfo(ares_channel channel, const struct 
sockaddr *sa,
 else
   {
 niquery-family = AF_INET6;
-memcpy(niquery-addr.addr6, addr6, sizeof(struct ares_in6_addr));
+memcpy(niquery-addr.addr6, addr6, sizeof(niquery-addr.addr6));
 

commit libcryptopp for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package libcryptopp for openSUSE:Factory
checked in at Tue Oct 18 14:19:47 CEST 2011.




--- openSUSE:Factory/libcryptopp/libcryptopp.changes2011-10-16 
12:56:04.0 +0200
+++ /mounts/work_src_done/STABLE/libcryptopp/libcryptopp.changes
2011-10-17 16:33:48.0 +0200
@@ -1,0 +2,5 @@
+Mon Oct 17 14:33:16 UTC 2011 - jeng...@medozas.de
+
+- Remove bogus Conflict against libcrypto++0 (cf. shlib guidelines)
+
+---

calling whatdependson for head-i586




Other differences:
--
++ libcryptopp.spec ++
--- /var/tmp/diff_new_pack.TdXKkp/_old  2011-10-18 14:19:44.0 +0200
+++ /var/tmp/diff_new_pack.TdXKkp/_new  2011-10-18 14:19:44.0 +0200
@@ -25,7 +25,7 @@
 # Debian: http://packages.debian.org/en/source/experimental/libcrypto++
 %define soname  9
 Summary:Crypto++ Library
-Url:http://www.cryptopp.com
+URL:http://www.cryptopp.com
 Group:  Development/Libraries/C and C++
 # http://www.cryptopp.com/cryptopp%%{pkg_version}.zip
 Source: cryptopp%{pkg_version}.tar.bz2
@@ -50,8 +50,6 @@
 Summary:Cryptographic Library for C++
 Group:  Development/Libraries/C and C++
 Requires:   %{name}%{soname} = %{version}
-Conflicts:  libcrypto++0
-# http://packman.links2linux.de/package/libcrypto++0
 
 %description -n %{name}-devel
 Crypto++ Library is a free C++ class library of cryptographic schemes.
@@ -89,6 +87,7 @@
 make test
 
 %post   -n %{name}%{soname} -p /sbin/ldconfig
+
 %postun -n %{name}%{soname} -p /sbin/ldconfig
 
 %files -n %{name}%{soname}

continue with 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 libmemcached for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package libmemcached for openSUSE:Factory
checked in at Tue Oct 18 14:20:02 CEST 2011.




--- openSUSE:Factory/libmemcached/libmemcached.changes  2011-09-23 
02:08:57.0 +0200
+++ /mounts/work_src_done/STABLE/libmemcached/libmemcached.changes  
2011-10-12 21:42:51.0 +0200
@@ -1,0 +2,7 @@
+Wed Oct 12 19:38:05 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant/unwanted tags/sections (cf. specfile guidelines)
+- Add missing Requires:libmemcachedutil0 to -devel subpackage
+- Do parallel build with %_smp_mflags
+
+---

calling whatdependson for head-i586




Other differences:
--
++ libmemcached.spec ++
--- /var/tmp/diff_new_pack.Awh8ek/_old  2011-10-18 14:19:54.0 +0200
+++ /var/tmp/diff_new_pack.Awh8ek/_new  2011-10-18 14:19:54.0 +0200
@@ -40,7 +40,6 @@
 methods.
 
 %package -n libmemcached2
-License:BSD
 Group:  Development/Libraries/C and C++
 Summary:Libmemcached is a C and C++ client library to the memcached 
server
 
@@ -51,7 +50,6 @@
 methods.
 
 %package -n libmemcachedutil0
-License:BSD
 Group:  Development/Libraries/C and C++
 Summary:Libmemcached is a C and C++ client library to the memcached 
server
 
@@ -65,9 +63,9 @@
 libmemcached.
 
 %package devel
-License:BSD
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version} libmemcached2 = %{version} glibc-devel
+Requires:   libmemcachedutil0 = %version
 Summary:Libmemcached is a C and C++ client library to the memcached 
server
 
 %description devel
@@ -81,7 +79,7 @@
 
 %build
 %configure --with-memcached=%{_sbindir}/memcached --disable-static --with-pic
-%__make %{?jobs:-j%jobs}
+make %{?_smp_mflags}
 
 %install
 %makeinstall
@@ -94,9 +92,6 @@
 #%check
 #%__make check
 
-%clean
-%__rm -rf %{buildroot}
-
 %post -n libmemcached2 -p /sbin/ldconfig
 
 %postun -n libmemcached2 -p /sbin/ldconfig

continue with 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 libopenvas for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package libopenvas for openSUSE:Factory
checked in at Tue Oct 18 14:20:34 CEST 2011.




--- openSUSE:Factory/libopenvas/libopenvas.changes  2011-09-23 
02:09:11.0 +0200
+++ /mounts/work_src_done/STABLE/libopenvas/libopenvas.changes  2011-10-15 
10:40:15.0 +0200
@@ -1,0 +2,5 @@
+Sat Oct 15 08:40:01 UTC 2011 - co...@suse.com
+
+- Fix build in factory again
+
+---

calling whatdependson for head-i586


New:

  openvas-libraries-4.0.5-removelowat.patch



Other differences:
--
++ libopenvas.spec ++
--- /var/tmp/diff_new_pack.67B9AY/_old  2011-10-18 14:20:27.0 +0200
+++ /var/tmp/diff_new_pack.67B9AY/_new  2011-10-18 14:20:27.0 +0200
@@ -27,6 +27,7 @@
 Url:http://www.openvas.org
 Source: openvas-libraries-%{version}.tar.gz
 Patch0: openvas-libraries-4.0-rc4-no_Werror.patch
+Patch1: openvas-libraries-4.0.5-removelowat.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %if 0%{?fedora_version} || 0%{?scientificlinux_version} || 0%{?centos_version}
@@ -72,7 +73,6 @@
 
 %package -n libopenvas_base%{soname}
 
-
 Group:  System/Libraries
 Summary:Support libraries for OpenVAS
 
@@ -81,7 +81,6 @@
 
 %package -n libopenvas_hg%{soname}
 
-
 Group:  System/Libraries
 Summary:Support libraries for OpenVAS
 
@@ -90,7 +89,6 @@
 
 %package -n libopenvas_misc%{soname}
 
-
 Group:  System/Libraries
 Summary:Support libraries for OpenVAS
 
@@ -99,7 +97,6 @@
 
 %package -n libopenvas_nasl%{soname}
 
-
 Group:  System/Libraries
 Summary:Support libraries for OpenVAS
 
@@ -108,7 +105,6 @@
 
 %package -n libopenvas_omp%{soname}
 
-
 Group:  System/Libraries
 Summary:Support libraries for OpenVAS
 
@@ -154,6 +150,9 @@
 %prep
 %setup -qn openvas-libraries-%{version}
 %patch0
+%if 0%{?suse_version}  1200
+%patch1
+%endif
 
 %build
 export CFLAGS=%optflags

++ openvas-libraries-4.0.5-removelowat.patch ++
--- misc/network.c.orig 2011-10-15 08:25:53.0 +
+++ misc/network.c  2011-10-15 08:26:29.0 +
@@ -824,8 +824,9 @@
 }
 
   unblock_socket (fp-fd);
-  /* for non-blocking sockets, gnutls requires a 0 lowat value */
-  gnutls_transport_set_lowat (fp-tls_session, 0);
+  /* for non-blocking sockets, gnutls requires a 0 lowat value 
+   
http://old.nabble.com/Re%3A-deprecating-gnutls_transport_set_lowat%28%29-p31900808.html
+  gnutls_transport_set_lowat (fp-tls_session, 0); */
 
   gnutls_transport_set_ptr (fp-tls_session,
 (gnutls_transport_ptr_t) GSIZE_TO_POINTER 
(fp-fd));
continue with 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 libstatgrab for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package libstatgrab for openSUSE:Factory
checked in at Tue Oct 18 14:21:04 CEST 2011.




--- openSUSE:Factory/libstatgrab/libstatgrab.changes2011-09-23 
02:10:54.0 +0200
+++ /mounts/work_src_done/STABLE/libstatgrab/libstatgrab.changes
2011-09-17 00:24:53.0 +0200
@@ -1,0 +2,6 @@
+Fri Sep 16 17:08:10 UTC 2011 - jeng...@medozas.de
+
+- Implement baselibs for package
+- Remove redundant tags/sections; use %_smp_mflags
+
+---

calling whatdependson for head-i586


New:

  baselibs.conf



Other differences:
--
++ libstatgrab.spec ++
--- /var/tmp/diff_new_pack.9pecMd/_old  2011-10-18 14:20:55.0 +0200
+++ /var/tmp/diff_new_pack.9pecMd/_new  2011-10-18 14:20:55.0 +0200
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 %define soname 6
 
@@ -27,6 +26,7 @@
 Source: 
ftp://ftp.i-scream.org/pub/i-scream/libstatgrab/libstatgrab-%{version}.tar.gz
 Source1:statgrab.desktop
 Source2:saidar.desktop
+Source3:baselibs.conf
 Patch1: libstatgrab-os-linux.diff
 Patch2: libstatgrab-link-ncurses.diff
 Patch3: libstatgrab-fix-include-ncurses.patch
@@ -107,8 +107,7 @@
--enable-statgrab \
--enable-saidar \
--enable-manpages
-
-%__make %{?jobs:-j%{jobs}}
+make %{?_smp_mflags}
 
 %install
 %makeinstall
@@ -129,9 +128,6 @@
 %__rm -rf examples/Makefile* examples/.deps
 %__mv examples %{buildroot}%{_docdir}/%{name}/
 
-%clean
-%__rm -rf %{buildroot}
-
 %post -n %{name}%{soname} -p /sbin/ldconfig
 
 %postun -n %{name}%{soname} -p /sbin/ldconfig

++ baselibs.conf ++
libstatgrab6
libstatgrab-devel
requires -libstatgrab-targettype
requires libstatgrab6-targettype = version
continue with 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 libunicap for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package libunicap for openSUSE:Factory
checked in at Tue Oct 18 14:21:16 CEST 2011.




--- openSUSE:Factory/libunicap/libunicap.changes2011-10-11 
18:21:11.0 +0200
+++ /mounts/work_src_done/STABLE/libunicap/libunicap.changes2011-10-14 
23:18:22.0 +0200
@@ -1,0 +2,5 @@
+Fri Oct 14 21:21:43 UTC 2011 - andrea.turr...@gmail.com
+
+- Fixed typos in libunicap.spec
+
+---

calling whatdependson for head-i586




Other differences:
--
++ libunicap.spec ++
--- /var/tmp/diff_new_pack.ycm0Yi/_old  2011-10-18 14:21:11.0 +0200
+++ /var/tmp/diff_new_pack.ycm0Yi/_new  2011-10-18 14:21:11.0 +0200
@@ -87,7 +87,7 @@
 
 %description devel
 This package includes header files and libraries necessary for
-for developing programs which use the unicap, unicapgtk and ucil library. It
+developing programs which use the unicap, unicapgtk, and ucil libraries. It
 contains the API documentation of the library, too.
 
 %prep

continue with 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 libustr for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package libustr for openSUSE:Factory
checked in at Tue Oct 18 14:21:36 CEST 2011.




--- openSUSE:Factory/libustr/libustr.changes2011-10-07 00:51:19.0 
+0200
+++ /mounts/work_src_done/STABLE/libustr/libustr.changes2011-10-12 
15:50:36.0 +0200
@@ -1,0 +2,5 @@
+Wed Oct 12 15:50:17 CEST 2011 - dmuel...@suse.de
+
+- avoid check failure on qemu userspace build
+
+---

calling whatdependson for head-i586




Other differences:
--
++ libustr.spec ++
--- /var/tmp/diff_new_pack.6RuJcS/_old  2011-10-18 14:21:30.0 +0200
+++ /var/tmp/diff_new_pack.6RuJcS/_new  2011-10-18 14:21:30.0 +0200
@@ -83,7 +83,10 @@
 make all-shared %{?jobs:-j%jobs} HIDE= CFLAGS=$RPM_OPT_FLAGS -fPIC 
CC=%{__cc}
 
 %check
+%if !0%{?qemu_user_space_build:1}
+# bad interaction with qemu (2011-10-02)
 make check %{?jobs:-j%jobs} HIDE= CFLAGS=$RPM_OPT_FLAGS -fPIC
+%endif
 
 %install
 make install-multilib-linux \

continue with 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 libwnck for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package libwnck for openSUSE:Factory
checked in at Tue Oct 18 14:21:51 CEST 2011.




--- openSUSE:Factory/libwnck/libwnck.changes2011-10-02 10:17:21.0 
+0200
+++ /mounts/work_src_done/STABLE/libwnck/libwnck.changes2011-10-16 
19:16:14.0 +0200
@@ -1,0 +2,6 @@
+Sun Oct 16 17:15:46 UTC 2011 - vu...@opensuse.org
+
+- Update to version 3.2.1:
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  libwnck-3.2.0.tar.bz2

New:

  libwnck-3.2.1.tar.bz2



Other differences:
--
++ libwnck.spec ++
--- /var/tmp/diff_new_pack.Hea2Zu/_old  2011-10-18 14:21:46.0 +0200
+++ /var/tmp/diff_new_pack.Hea2Zu/_new  2011-10-18 14:21:46.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   libwnck
-Version:3.2.0
+Version:3.2.1
 Release:1
 License:LGPLv2.1+
 # WARNING: After changing versions please call Re or rpmbuild to auto-update 
spec file:

++ libwnck-3.2.0.tar.bz2 - libwnck-3.2.1.tar.bz2 ++
 11417 lines of diff (skipped)

continue with 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 libwnck2 for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package libwnck2 for openSUSE:Factory
checked in at Tue Oct 18 14:22:04 CEST 2011.




--- openSUSE:Factory/libwnck2/libwnck2.changes  2011-09-23 02:11:12.0 
+0200
+++ /mounts/work_src_done/STABLE/libwnck2/libwnck2.changes  2011-10-17 
16:08:10.0 +0200
@@ -1,0 +2,7 @@
+Mon Oct 17 14:07:47 UTC 2011 - vu...@opensuse.org
+
+- Add libwnck2 Obsoletes to libwnck-1-22, since we dropped the
+  libwnck2 subpackage back in April, but forgot the Obsoletes (the
+  Provides is there already).
+
+---

calling whatdependson for head-i586




Other differences:
--
++ libwnck2.spec ++
--- /var/tmp/diff_new_pack.K73JeJ/_old  2011-10-18 14:22:00.0 +0200
+++ /var/tmp/diff_new_pack.K73JeJ/_new  2011-10-18 14:22:00.0 +0200
@@ -48,6 +48,7 @@
 Group:  Development/Libraries/GNOME
 # To make lang package installable
 Provides:   %{name} = %{version}
+Obsoletes:  %{name}  %{version}
 Recommends: %{name}-lang
 
 %description -n libwnck-1-22

continue with 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 lyx for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package lyx for openSUSE:Factory
checked in at Tue Oct 18 14:23:03 CEST 2011.




--- openSUSE:Factory/lyx/lyx.changes2011-10-06 17:23:31.0 +0200
+++ /mounts/work_src_done/STABLE/lyx/lyx.changes2011-10-17 
12:35:59.0 +0200
@@ -1,0 +2,5 @@
+Mon Oct 17 10:33:29 UTC 2011 - corne...@solcon.nl
+
+- Changed summary and description to make them more accurate and up-to-date 
(bnc#721665)
+
+---

calling whatdependson for head-i586




Other differences:
--
++ lyx.spec ++
--- /var/tmp/diff_new_pack.bVYd46/_old  2011-10-18 14:22:53.0 +0200
+++ /var/tmp/diff_new_pack.bVYd46/_new  2011-10-18 14:22:53.0 +0200
@@ -24,7 +24,7 @@
 Group:  Productivity/Publishing/TeX/Frontends
 Version:2.0.1
 Release:4
-Summary:LaTeX-Based WYSIWYG Editor
+Summary:WYSIWYM (What You See Is What You Mean) document processor
 Url:http://www.lyx.org/
 Source: ftp://ftp.lyx.org/pub/lyx/stable/2.0.x/lyx-2.0.1.tar.gz
 Source1:lyx.desktop
@@ -39,11 +39,12 @@
 Recommends: texlive-xetex xindy
 
 %description
-LyX is a front-end for LaTeX under X11. It combines the comfortable use
-of a word processor with the high quality of LaTeX typesetting.
-Documents are displayed in a WYSIWYG-like way. User does not choose low
-level attributes (large italic) but high level layouts (styles) for
-each paragraph. Of course, low level formatting is still possible.
+LyX is a document processor that encourages an approach to writing
+based on the structure of your documents, not their appearance. The
+author can concentrate on the content (What You See Is What You Mean).
+The formatting is done by the backends (like LaTeX) and the output can
+have different formats, such as DVI, postscript, PDF, html.
+
 
 %prep
 %setup -q


continue with 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 mousetweaks for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package mousetweaks for openSUSE:Factory
checked in at Tue Oct 18 14:23:14 CEST 2011.




--- openSUSE:Factory/mousetweaks/mousetweaks.changes2011-10-02 
10:18:49.0 +0200
+++ /mounts/work_src_done/STABLE/mousetweaks/mousetweaks.changes
2011-10-17 19:43:54.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct 17 18:23:15 CEST 2011 - dims...@opensuse.org
+
+- Update to version 3.2.1:
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  mousetweaks-3.2.0.tar.bz2

New:

  mousetweaks-3.2.1.tar.bz2



Other differences:
--
++ mousetweaks.spec ++
--- /var/tmp/diff_new_pack.uL8zQQ/_old  2011-10-18 14:23:07.0 +0200
+++ /var/tmp/diff_new_pack.uL8zQQ/_new  2011-10-18 14:23:07.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   mousetweaks
-Version:3.2.0
+Version:3.2.1
 Release:1
 License:GPLv3
 Summary:Tweak mouse settings in GNOME

++ mousetweaks-3.2.0.tar.bz2 - mousetweaks-3.2.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mousetweaks-3.2.0/ChangeLog 
new/mousetweaks-3.2.1/ChangeLog
--- old/mousetweaks-3.2.0/ChangeLog 2011-09-26 16:53:22.0 +0200
+++ new/mousetweaks-3.2.1/ChangeLog 2011-10-17 15:54:29.0 +0200
@@ -1,5 +1,35 @@
 # Generated by Makefile. Do not edit.
 
+commit d5dfcf9a9cb870a95c82b9a568f5df0a6277278c
+Author: krishnababu k kkrot...@redhat.ocm
+Date:   Fri Oct 14 14:23:36 2011 +0530
+
+Updated Telugu Translations
+
+ po/te.po |  731 +-
+ 1 files changed, 390 insertions(+), 341 deletions(-)
+
+commit 27a35580ff86bf3d576b039d2067826e149ae9f4
+Author: Francesco Fumanti francesco.fuma...@gmx.net
+Date:   Mon Sep 26 17:06:53 2011 +0200
+
+Post release version increment to 3.2.1
+
+ README   |2 +-
+ configure.ac |2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+commit a60a7800d3926880f966f0cc2a1c44ab6cca9803
+Author: Francesco Fumanti francesco.fuma...@gmx.net
+Date:   Mon Sep 26 16:56:53 2011 +0200
+
+Prepare the 3.2.0 release
+
+ NEWS |   14 ++
+ README   |4 ++--
+ configure.ac |2 +-
+ 3 files changed, 17 insertions(+), 3 deletions(-)
+
 commit 3119527b51fe43edd0931b7247e7aaa154de2c59
 Author: Nilamdyuti Goswami ngosw...@redhat.com
 Date:   Thu Sep 22 16:08:35 2011 +0530
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mousetweaks-3.2.0/NEWS new/mousetweaks-3.2.1/NEWS
--- old/mousetweaks-3.2.0/NEWS  2011-09-26 16:48:49.0 +0200
+++ new/mousetweaks-3.2.1/NEWS  2011-10-17 15:50:17.0 +0200
@@ -1,3 +1,10 @@
+Version 3.2.1
+-
+
+New and updated translations:
+
+[te] Hari Krishna
+
 Version 3.2.0
 -
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mousetweaks-3.2.0/README new/mousetweaks-3.2.1/README
--- old/mousetweaks-3.2.0/README2011-09-26 16:17:27.0 +0200
+++ new/mousetweaks-3.2.1/README2011-10-17 15:47:48.0 +0200
@@ -1,4 +1,4 @@
-Mousetweaks 3.2.0
+Mousetweaks 3.2.1
 -
 
 Description:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mousetweaks-3.2.0/configure 
new/mousetweaks-3.2.1/configure
--- old/mousetweaks-3.2.0/configure 2011-09-26 16:51:21.0 +0200
+++ new/mousetweaks-3.2.1/configure 2011-10-17 15:52:29.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.67 for mousetweaks 3.2.0.
+# Generated by GNU Autoconf 2.67 for mousetweaks 3.2.1.
 #
 # Report bugs to http://bugzilla.gnome.org/enter_bug.cgi?product=mousetweaks.
 #
@@ -553,8 +553,8 @@
 # Identity of this package.
 PACKAGE_NAME='mousetweaks'
 PACKAGE_TARNAME='mousetweaks'
-PACKAGE_VERSION='3.2.0'
-PACKAGE_STRING='mousetweaks 3.2.0'
+PACKAGE_VERSION='3.2.1'
+PACKAGE_STRING='mousetweaks 3.2.1'
 PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=mousetweaks'
 PACKAGE_URL=''
 
@@ -1330,7 +1330,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 mousetweaks 3.2.0 to adapt to many kinds of systems.
+\`configure' configures mousetweaks 3.2.1 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1396,7 +1396,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of mousetweaks 3.2.0:;;
+ short | recursive ) echo Configuration of mousetweaks 3.2.1:;;
esac
   cat 

commit nmap for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package nmap for openSUSE:Factory
checked in at Tue Oct 18 14:23:30 CEST 2011.




--- openSUSE:Factory/nmap/nmap.changes  2011-09-23 02:14:44.0 +0200
+++ /mounts/work_src_done/STABLE/nmap/nmap.changes  2011-10-17 
04:43:26.0 +0200
@@ -1,0 +2,8 @@
+Mon Oct 17 02:38:28 UTC 2011 - crrodrig...@opensuse.org
+
+- Update to nmap 5.61-xxx branch, changelog too long, see NEWS
+  for details.
+- Add a new subpackage nping
+- drop no-md2.patch already in upstream.
+
+---

calling whatdependson for head-i586


Old:

  nmap-5.21.tar.bz2
  no-md2.patch

New:

  nmap-5.61TEST2.tar.bz2



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.u6btVT/_old  2011-10-18 14:23:24.0 +0200
+++ /var/tmp/diff_new_pack.u6btVT/_new  2011-10-18 14:23:24.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package nmap (Version 5.21)
+# spec file for package nmap
 #
-# 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,6 +19,7 @@
 
 %{!?python_sitelib: %global python_sitelib %(%{__python} -c from 
distutils.sysconfig import get_python_lib; print(get_python_lib()))}
 %{!?python_sitearch: %global python_sitearch %(%{__python} -c from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1)))}
+%define nmap_extra_ver TEST2
 
 Name:   nmap
 BuildRequires:  gcc-c++
@@ -36,16 +37,15 @@
 License:GPLv2+
 Group:  Productivity/Networking/Diagnostic
 AutoReqProv:on
-Version:5.21
+Version:5.61
 Release:3
 Summary:Portscanner
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source: http://nmap.org/dist/nmap-%{version}.tar.bz2
+Source: http://nmap.org/dist/nmap-%{version}%{nmap_extra_ver}.tar.bz2
 Patch:  nmap-4.00-libpcap-filter.diff
 Patch1: nmap-4.00-noreturn.diff
 Patch2: nmap-5.00-desktop_files.patch
 Patch3: nmap-4.75-nostrip.patch
-Patch4: no-md2.patch
 Patch5: nmap-5.21-gnomesu.patch
 
 %description
@@ -128,13 +128,25 @@
 
 Fyodor fyo...@dhp.com
 
+%package -n nping
+License:GPLv2+
+Summary:Compare Results of Nmap Scans
+Group:  Productivity/Networking/Diagnostic
+
+%description -n nping
+Network packet generation tool / ping utility
+
+
+
+Authors:
+
+Fyodor fyo...@dhp.com
 %prep
-%setup -q
+%setup -q -n %{name}-%{version}%{nmap_extra_ver}
 %patch
 %patch1 -p1
 %patch2 -p0
 %patch3 -p0
-%patch4 -p1
 %patch5 -p0
 
 #fix locale dir
@@ -152,9 +164,11 @@
 mv docs/man-xlate/nmap-zh.1 docs/man-xlate/nmap-zh_CN.1
 
 %build
-%configure --with-libpcap=%{_usr} \
+export CFLAGS=%optflags -DOPENSSL_LOAD_CONF
+export CXXFLAGS=%optflags -DOPENSSL_LOAD_CONF
+%configure --with-libpcap=%{_usr} \
--with-libdnet=included \
-  --with-libpcre=%{_usr}
+   --with-libpcre=%{_usr}
 
 %__make %{?jobs:-j%jobs}
 
@@ -205,7 +219,7 @@
 %{_bindir}/xnmap
 %{_bindir}/zenmap
 %{_bindir}/nmapfe
-%{python_sitelib}/zenmap-%{version}-py%{py_ver}.egg-info
+%{python_sitelib}/zenmap-%{version}%{nmap_extra_ver}-py%{py_ver}.egg-info
 %{python_sitelib}/zenmapCore
 %{python_sitelib}/zenmapGUI
 %{python_sitelib}/radialnet
@@ -227,4 +241,9 @@
 %{_bindir}/ndiff
 %{_mandir}/man1/ndiff.1.gz
 
+%files -n nping
+%defattr(-,root,root)
+%{_bindir}/nping
+%{_mandir}/man1/nping.1.gz
+
 %changelog

continue with 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 notification-daemon for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package notification-daemon for 
openSUSE:Factory
checked in at Tue Oct 18 14:23:41 CEST 2011.




--- openSUSE:Factory/notification-daemon/notification-daemon.changes
2011-09-23 02:14:44.0 +0200
+++ 
/mounts/work_src_done/STABLE/notification-daemon/notification-daemon.changes
2011-10-17 20:40:44.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct 17 20:39:03 CEST 2011 - dims...@opensuse.org
+
+- Update to version 0.7.3:
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  notification-daemon-0.7.2.tar.bz2

New:

  notification-daemon-0.7.3.tar.bz2



Other differences:
--
++ notification-daemon.spec ++
--- /var/tmp/diff_new_pack.5XMyic/_old  2011-10-18 14:23:36.0 +0200
+++ /var/tmp/diff_new_pack.5XMyic/_new  2011-10-18 14:23:36.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   notification-daemon
-Version:0.7.2
+Version:0.7.3
 Release:1
 License:GPLv2+
 Summary:Notification Daemon

++ notification-daemon-0.7.2.tar.bz2 - notification-daemon-0.7.3.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/notification-daemon-0.7.2/NEWS 
new/notification-daemon-0.7.3/NEWS
--- old/notification-daemon-0.7.2/NEWS  2011-09-05 14:06:54.0 +0200
+++ new/notification-daemon-0.7.3/NEWS  2011-10-17 19:09:40.0 +0200
@@ -1,3 +1,7 @@
+NEW in 0.7.3:
+==
+- Translation updates (Asturian, Assamese, Thai, Telugu)
+
 NEW in 0.7.2:
 ==
 - Remove vestigial dbus-glib requirement
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/notification-daemon-0.7.2/aclocal.m4 
new/notification-daemon-0.7.3/aclocal.m4
--- old/notification-daemon-0.7.2/aclocal.m42011-09-05 14:06:58.0 
+0200
+++ new/notification-daemon-0.7.3/aclocal.m42011-10-17 19:12:21.0 
+0200
@@ -1832,6 +1832,10 @@
  [CATOBJEXT=.mo
DATADIRNAME=lib])
;;
+   *-*-openbsd*)
+   CATOBJEXT=.mo
+DATADIRNAME=share
+   ;;
*)
CATOBJEXT=.mo
 DATADIRNAME=lib
@@ -2071,7 +2075,7 @@
 
DISABLE_DEPRECATED=
if test $USE_MAINTAINER_MODE = yes; then
-   DOMAINS=G ATK PANGO GDK GDK_PIXBUF GTK GCONF BONOBO BONOBO_UI 
GNOME LIBGLADE VTE GNOME_VFS WNCK LIBSOUP
+   DOMAINS=ATK GCONF BONOBO BONOBO_UI GNOME LIBGLADE VTE 
GNOME_VFS WNCK LIBSOUP
for DOMAIN in $DOMAINS; do
   DISABLE_DEPRECATED=$DISABLE_DEPRECATED 
-D${DOMAIN}_DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_SINGLE_INCLUDES
done
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/notification-daemon-0.7.2/configure 
new/notification-daemon-0.7.3/configure
--- old/notification-daemon-0.7.2/configure 2011-09-05 14:06:58.0 
+0200
+++ new/notification-daemon-0.7.3/configure 2011-10-17 19:12:22.0 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for notification-daemon 0.7.2.
+# Generated by GNU Autoconf 2.68 for notification-daemon 0.7.3.
 #
 # Report bugs to 
https://bugzilla.gnome.org/enter_bug.cgi?product=notification-daemon.
 #
@@ -571,8 +571,8 @@
 # Identity of this package.
 PACKAGE_NAME='notification-daemon'
 PACKAGE_TARNAME='notification-daemon'
-PACKAGE_VERSION='0.7.2'
-PACKAGE_STRING='notification-daemon 0.7.2'
+PACKAGE_VERSION='0.7.3'
+PACKAGE_STRING='notification-daemon 0.7.3'
 
PACKAGE_BUGREPORT='https://bugzilla.gnome.org/enter_bug.cgi?product=notification-daemon'
 PACKAGE_URL=''
 
@@ -1365,7 +1365,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 notification-daemon 0.7.2 to adapt to many kinds of 
systems.
+\`configure' configures notification-daemon 0.7.3 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1436,7 +1436,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of notification-daemon 0.7.2:;;
+ short | recursive ) echo Configuration of notification-daemon 0.7.3:;;
esac
   cat \_ACEOF
 
@@ -1561,7 +1561,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-notification-daemon configure 0.7.2
+notification-daemon configure 0.7.3
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -1984,7 +1984,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if 

commit novell-ifolder-client-plugins for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package novell-ifolder-client-plugins for 
openSUSE:Factory
checked in at Tue Oct 18 14:23:49 CEST 2011.




--- 
openSUSE:Factory/novell-ifolder-client-plugins/novell-ifolder-client-plugins.changes
2011-09-23 02:14:45.0 +0200
+++ 
/mounts/work_src_done/STABLE/novell-ifolder-client-plugins/novell-ifolder-client-plugins.changes
2011-10-17 14:41:53.0 +0200
@@ -1,0 +2,5 @@
+Mon Oct 17 14:41:39 CEST 2011 - dmuel...@suse.de
+
+- only builds where ifolder3 is available
+
+---

calling whatdependson for head-i586




Other differences:
--
++ novell-ifolder-client-plugins.spec ++
--- /var/tmp/diff_new_pack.XC6vxO/_old  2011-10-18 14:23:45.0 +0200
+++ /var/tmp/diff_new_pack.XC6vxO/_new  2011-10-18 14:23:45.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package novell-ifolder-client-plugins (Version 3.8.0.10264.3)
+# spec file for package novell-ifolder-client-plugins
 #
-# 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
@@ -46,6 +46,7 @@
 Source: %{name}.tar.gz
 Patch:  novell-ifolder-client-plugins-lib64.patch
 Patch1: novell-ifolder-client-plugins-buildfix.patch
+ExclusiveArch:  %ix86 x86_64
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 #=
 

continue with 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 openbabel for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package openbabel for openSUSE:Factory
checked in at Tue Oct 18 14:24:05 CEST 2011.




--- openSUSE:Factory/openbabel/openbabel.changes2011-09-23 
02:15:11.0 +0200
+++ /mounts/work_src_done/STABLE/openbabel/openbabel.changes2011-10-18 
02:20:36.0 +0200
@@ -1,0 +2,38 @@
+Tue Oct 18 00:17:21 UTC 2011 - dh...@wustl.edu
+
+- updated to OpenBabel 2.3.1
+  * Better support for unknown stereochemistry, including a wobbly bond in 
2D depiction.
+  * Many fixes for rare bugs with stereochemical conversions, including 
unusual valences.
+  * Significantly improved 2D depiction code, improving performance and 
cis/trans stereochemical accuracy
+  * Added support for direct 2D depiction to PNG files using the Cairo 
library, if available.
+  * PNG files from Open Babel contain molecular information and can be read to 
give the MDL Molfile.
+  * SVG files with 2D depiction can now include a grid of molecules with 
embedded JavaScript to zoom and scroll.
+  * Molecular formulas now include the total charge (e.g., HCO2-)
+  * Added the EEM partial charge model from Bultinck, et. al.
+  * Fixed problems with FastSearch databases larger than 4GB, now checking for 
large files.
+  * Improved performance with force field minimization, particularly the UFF 
and GAFF methods.
+  * Several MMFF94 atom typing bugs fixed.
+  * Updated GAFF parameters from the AmberTools distribution.
+  * Improvements in 3D coordinate generation, particularly more accurate sp3 
bond angles
+  * Fixed tests for auto-typing molecules with force fields when running 
through different isomers.
+  * Improvements in scripting bindings, particularly Python, Ruby, and Java
+  * Pybel now uses the built-in 2D depiction, and no longer needs OASA.
+  * Added initial support for MM3 atom typing with the Tinker package
+  * Significant bug fixes for the PDBQT format.
+  * Reading FASTA files can now generate 3D coordinates for single-stranded 
DNA in addition to the default double-strand.
+  * Support for reading/writing unit cell information from MOPAC files.
+  * Support for re-numbering SMILES by specifying the first and last atoms 
with -xf and -xl flags.
+  * Better support for InChI - InChI key generation by direct conversion, 
rather than re-perception of the InChI.
+  * Fix for rare stack overflow crash in SMARTS perception.
+  * Improved UNIX man pages.
+  * Many bug fixes and small enhancements
+  * New File Formats
+* Import and Export:
+  * Gromacs GRO
+* Import:
+  * ABINIT
+  * XCrySDen XSF
+* Export:
+  * InChI Key
+
+---

calling whatdependson for head-i586


Old:

  openbabel-2.3.0-crippled.tar.bz2
  openbabel-2.3.0-no-build-date.patch

New:

  openbabel-2.3.1-crippled.tar.bz2
  openbabel-2.3.1-no-build-date.patch



Other differences:
--
++ openbabel.spec ++
--- /var/tmp/diff_new_pack.QSV5u6/_old  2011-10-18 14:24:01.0 +0200
+++ /var/tmp/diff_new_pack.QSV5u6/_new  2011-10-18 14:24:01.0 +0200
@@ -18,17 +18,25 @@
 
 
 Name:   openbabel
-Version:2.3.0
+Version:2.3.1
 Release:1
 License:GPLv2
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  cmake gcc-c++ libxml2-devel pkg-config swig zlib-devel
-Group:  Development/Libraries/C and C++
 Summary:Open Babel - The Open Source Chemistry Toolbox
 Url:http://openbabel.sourceforge.net/
-Source: %name-%version-crippled.tar.bz2
+Group:  Development/Libraries/C and C++
+Source: %{name}-%{version}-crippled.tar.bz2
 Source99:   cripple_source.sh
-Patch0: openbabel-2.3.0-no-build-date.patch
+# PATCH-FIX-OPENSUSE -- No build date
+Patch0: openbabel-2.3.1-no-build-date.patch
+BuildRequires:  cmake
+BuildRequires:  gcc-c++
+BuildRequires:  libeigen2-devel
+BuildRequires:  pkg-config
+BuildRequires:  swig
+BuildRequires:  zlib-devel
+BuildRequires:  pkgconfig(cairo)
+BuildRequires:  pkgconfig(libxml-2.0)
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Open Babel is a chemical toolbox designed to speak the many languages
@@ -36,14 +44,6 @@
 to search, convert, analyze, or store data from molecular modeling,
 chemistry, solid-state materials, biochemistry, or related areas.
 
-
-
-Authors:
-
-Michael Banck
-Geoff Hutchison
-Chris Morley
-
 %package -n libopenbabel4
 License:GPLv2
 Summary:Open Babel - The Open Source Chemistry Toolbox
@@ -55,19 +55,11 @@
 to search, convert, analyze, or store data from molecular modeling,
 chemistry, solid-state materials, biochemistry, or related areas.
 
-
-
-Authors:
-
-Michael Banck
-Geoff Hutchison
-Chris Morley
-
 %package -n libopenbabel-devel
 License:GPLv2
 

commit openhpi for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package openhpi for openSUSE:Factory
checked in at Tue Oct 18 14:24:34 CEST 2011.




--- openSUSE:Factory/openhpi/openhpi.changes2011-09-23 02:15:26.0 
+0200
+++ /mounts/work_src_done/STABLE/openhpi/openhpi.changes2011-10-18 
10:46:27.0 +0200
@@ -1,0 +2,41 @@
+Tue Oct 18 07:42:41 UTC 2011 - kkae...@suse.com
+
+- update to 3.0.0
+  New Features
+  * Documentation
+  * 3411347 - Remove outdated docs/hld subdirectory
+HP c-Class Plugin
+  * 3196244 - Have a field to display aggregate status of the enclosure
+OpenHPI Daemon
+  * 3406760 - openhpid: report client connection address in log
+  Bugfixes
+  * many, see http://www.openhpi.org/Changelogs/3.0.0
+
+- update to 2.17.0
+ * Refactoring
+ * Windows support
+ * FreeBSD support
+ * IPv6 support
+ * New Test Agent plug-in
+ * New hpixml client
+ * More bugfixes and features
+
+- update to 2.16.0
+  * Documentation updates
+  * Re-issuing HPI call in case of broken connection (can happen for
+configuration with redundant OpenHPI daemons)
+
+- update to 2.15.1
+  * Revisited OpenHPI API (oHpiXXX functions)
+  * Refactoring in marshal, utils and baselib
+  * Slave - new plug-in for representing resources and instruments
+from subsidiary OpenHPI daemon
+  * Bugfixes
+
+- update to 2.15.0
+  * New power management controls for HP c-Class enclosures
+  * New dynamic simulator plugin
+  * Many enhancements to the OpenHPI clients
+  * Bugfixes
+
+---

calling whatdependson for head-i586


Old:

  openhpi-2.14.1.tar.bz2
  openhpi-ipmi_mc_vendor_cpp.patch

New:

  openhpi-3.0.0.tar.bz2



Other differences:
--
++ openhpi.spec ++
--- /var/tmp/diff_new_pack.NGZysT/_old  2011-10-18 14:24:30.0 +0200
+++ /var/tmp/diff_new_pack.NGZysT/_new  2011-10-18 14:24:30.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package openhpi (Version 2.14.1)
+# spec file for package openhpi
 #
-# 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
@@ -18,7 +18,7 @@
 
 
 Name:   openhpi
-Version:2.14.1
+Version:3.0.0
 Release:4
 #
 Group:  System/Monitoring
@@ -31,7 +31,6 @@
 # http://downloads.sourceforge.net/openhpi/openhpi-2.10.1.tar.gz
 Source: openhpi-%{version}.tar.bz2
 Source1:openhpi-rpmlintrc
-Patch0: openhpi-ipmi_mc_vendor_cpp.patch
 #
 Summary:Implementation of SA Forum's Hardware Platform Interface (HPI)
 
@@ -174,7 +173,6 @@
 
 %prep
 %setup -q
-%patch0
 
 %build
 #autoreconf --install --force
@@ -186,7 +184,7 @@
 --enable-snmp_client --enable-simulator --enable-clients \
 --with-varpath=/var/lib/%{name}
 %{__make}
-%{__make} -C docs/hld openhpi-manual/book1.html
+%{__make} documentation
 ###
 
 %install
@@ -228,7 +226,6 @@
 %dir %{_libdir}/openhpi
 %{_libdir}/libopen*.so.*
 %{_libdir}/openhpi/lib*.so*
-%{_mandir}/man1/hpi*.1*
 %{_mandir}/man7/openhpi.7*
 
 %files devel
@@ -237,17 +234,18 @@
 %{_libdir}/pkgconfig/openhpi.pc
 %{_libdir}/pkgconfig/openhpiutils.pc
 %{_libdir}/libopen*.so
-%{_libdir}/liboh*.so
 
 %files clients
 %defattr(-,root,root)
 %{_bindir}/hpi*
+%{_mandir}/man1/hpi*.1*
+%{_bindir}/oh*
+%{_mandir}/man1/oh*.1*
 
 %files daemon
 %defattr(-,root,root)
 /etc/init.d/openhpid
 %{_sbindir}/openhpid
-%{_libdir}/liboh*.so.*
 %{_mandir}/man8/openhpid.8*
 
 %changelog

++ openhpi-2.14.1.tar.bz2 - openhpi-3.0.0.tar.bz2 ++
openSUSE:Factory/openhpi/openhpi-2.14.1.tar.bz2 
/mounts/work_src_done/STABLE/openhpi/openhpi-3.0.0.tar.bz2 differ: char 11, 
line 1

continue with 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 openvas-cli for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package openvas-cli for openSUSE:Factory
checked in at Tue Oct 18 14:24:43 CEST 2011.




--- openSUSE:Factory/openvas-cli/openvas-cli.changes2011-09-23 
12:21:00.0 +0200
+++ /mounts/work_src_done/STABLE/openvas-cli/openvas-cli.changes
2011-10-16 14:31:34.0 +0200
@@ -1,0 +2,7 @@
+Sun Oct 16 12:08:24 UTC 2011 - bitshuff...@opensuse.org
+
+- Updated to 1.1.3
+  * The omp command now accepts XML input from stdin when using the -X
+parameter.
+
+---

calling whatdependson for head-i586


Old:

  openvas-cli-1.1.2.tar.gz
  ovas-cli-add-needed.patch

New:

  debian.series
  openvas-cli-1.1.3-linking.patch
  openvas-cli-1.1.3.tar.gz



Other differences:
--
++ openvas-cli.spec ++
--- /var/tmp/diff_new_pack.uubZh8/_old  2011-10-18 14:24:38.0 +0200
+++ /var/tmp/diff_new_pack.uubZh8/_new  2011-10-18 14:24:38.0 +0200
@@ -15,16 +15,16 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   openvas-cli
-Version:1.1.2
-Release:2
+Version:1.1.3
+Release:1.0
 License:GPLv2+
 Group:  Productivity/Networking/Security
 Url:http://www.openvas.org
 Source: %{name}-%{version}.tar.gz
+Patch0: openvas-cli-1.1.3-linking.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %if 0%{?mandriva_version}
@@ -36,7 +36,6 @@
 BuildRequires:  libopenvas-devel
 BuildRequires:  pkgconfig
 Summary:Command Line Tools for OpenVAS
-Patch:  ovas-cli-add-needed.patch
 
 %description
 OpenVAS-CLI collects command line tools
@@ -46,7 +45,7 @@
 
 %prep
 %setup -q
-%patch
+%patch0
 
 %build
 export CFLAGS=$RPM_OPT_FLAGS
@@ -71,4 +70,5 @@
 %doc CHANGES COPYING README
 %{_bindir}/omp
 %{_mandir}/man8/omp.8*
+
 %changelog

++ debian.changelog ++
--- /var/tmp/diff_new_pack.uubZh8/_old  2011-10-18 14:24:38.0 +0200
+++ /var/tmp/diff_new_pack.uubZh8/_new  2011-10-18 14:24:38.0 +0200
@@ -1,3 +1,11 @@
+openvas-cli (1.1.3-1) unstable; urgency=low
+
+  * New upstream release.
+- The omp command now accepts XML input from stdin when using the -X
+  parameter.
+
+ -- Stephan Kleine bitshuff...@opensuse.org  Sun, 16 Oct 2011 14:09:19 +0200
+
 openvas-cli (1.1.2-1) unstable; urgency=low
 
   * New upstream release.

++ debian.series ++
openvas-cli-1.1.3-linking.patch -p0
++ openvas-cli-1.1.3-linking.patch ++
Index: omp/CMakeLists.txt
===
--- omp/CMakeLists.txt.orig 2011-10-12 14:43:29.0 +0200
+++ omp/CMakeLists.txt  2011-10-16 16:50:29.919941843 +0200
@@ -75,7 +75,7 @@ else (MINGW)
   set_target_properties (omp PROPERTIES COMPILE_FLAGS
  ${HEADER_TEMP} ${GNUTLS_CFLAGS} ${OPENVAS_CFLAGS} 
${GLIB_CFLAGS})
 
-  target_link_libraries (omp openvas_omp)
+  target_link_libraries (omp openvas_misc openvas_omp glib-2.0)
 endif (MINGW)
 
 mark_as_advanced (LIB_TEMP)
++ openvas-cli-1.1.2.tar.gz - openvas-cli-1.1.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openvas-cli-1.1.2/CHANGES 
new/openvas-cli-1.1.3/CHANGES
--- old/openvas-cli-1.1.2/CHANGES   2011-02-21 09:58:11.0 +0100
+++ new/openvas-cli-1.1.3/CHANGES   2011-10-12 14:43:29.0 +0200
@@ -1,3 +1,20 @@
+openvas-cli 1.1.3 (2011-10-12)
+
+This is the 1.1.3 release of the OpenVAS Command Line Interface (CLI) for the
+Open Vulnerability Assessment System (OpenVAS).
+
+OpenVAS CLI 1.1 is part of OpenVAS 4 and supports the protocol OMP 2.0 
protocol.
+
+This release adds support for reading XML input from stdin.
+
+Many thanks to everyone who has contributed to this release:
+Matthew Mundell and Michael Wiegand.
+
+Main changes compared to 1.1.2:
+* The omp command now accepts XML input from stdin when using the -X
+  parameter.
+
+
 openvas-cli 1.1.2 (2011-02-21)
 
 This is the 1.1.2 release of the OpenVAS Command Line Interface (CLI) for the
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openvas-cli-1.1.2/CMakeLists.txt 
new/openvas-cli-1.1.3/CMakeLists.txt
--- old/openvas-cli-1.1.2/CMakeLists.txt2011-02-21 09:58:11.0 
+0100
+++ new/openvas-cli-1.1.3/CMakeLists.txt2011-10-12 14:43:29.0 
+0200
@@ -74,7 +74,7 @@
 set (CPACK_TOPLEVEL_TAG )
 set (CPACK_PACKAGE_VERSION_MAJOR 1)
 set (CPACK_PACKAGE_VERSION_MINOR 1)
-set (CPACK_PACKAGE_VERSION_PATCH 2${SVN_REVISION})
+set (CPACK_PACKAGE_VERSION_PATCH 3${SVN_REVISION})
 set (CPACK_PACKAGE_VERSION 
${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH})
 set (CPACK_PACKAGE_FILE_NAME 

commit package-translations for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package package-translations for 
openSUSE:Factory
checked in at Tue Oct 18 14:24:53 CEST 2011.




--- openSUSE:Factory/package-translations/package-translations.changes  
2011-10-16 22:11:56.0 +0200
+++ 
/mounts/work_src_done/STABLE/package-translations/package-translations.changes  
2011-10-18 13:46:33.0 +0200
@@ -2 +2 @@
-Sun Oct 16 13:46:32 CEST 2011 - co...@suse.com
+Tue Oct 18 13:46:30 CEST 2011 - co...@suse.com
@@ -4 +4 @@
-- automated update on 2011-10-16
+- automated update on 2011-10-18

calling whatdependson for head-i586




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

continue with 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 patterns-openSUSE for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package patterns-openSUSE for 
openSUSE:Factory
checked in at Tue Oct 18 14:26:04 CEST 2011.




--- openSUSE:Factory/patterns-openSUSE/patterns-openSUSE.changes
2011-10-16 12:57:24.0 +0200
+++ /mounts/work_src_done/STABLE/patterns-openSUSE/patterns-openSUSE.changes
2011-10-18 11:53:17.0 +0200
@@ -1,0 +2,9 @@
+Tue Oct 18 09:53:05 UTC 2011 - co...@suse.com
+
+- Stephan Kulow (2):
+  more renames
+  readd ppds (bnc#652292)
+
+Commit: f6d66dda
+
+---

calling whatdependson for head-i586




Other differences:
--
++ patterns-openSUSE.spec ++
--- /var/tmp/diff_new_pack.7dbXHq/_old  2011-10-18 14:26:00.0 +0200
+++ /var/tmp/diff_new_pack.7dbXHq/_new  2011-10-18 14:26:00.0 +0200
@@ -756,6 +756,7 @@
 %package enhanced_base_opt
 Group:  Metapackages
 Summary:Meta package for pattern enhanced_base_opt
+Recommends: OpenPrintingPPDs
 Recommends: at
 Recommends: bc
 Recommends: bootcycle
@@ -1444,6 +1445,7 @@
 %package kde4_multimedia
 Group:  Metapackages
 Summary:Meta package for pattern kde4_multimedia
+Recommends: PackageKit-gstreamer-plugin
 Recommends: amarok
 Recommends: gstreamer-0_10-plugins-good
 Recommends: k3b
@@ -1451,7 +1453,6 @@
 Recommends: kio_audiocd
 Recommends: kmix
 Recommends: kscd
-Recommends: opensuse-codecs-installer
 Recommends: phonon-backend-gstreamer-0_10
 Requires:   patterns-openSUSE-kde4_multimedia
 Supplements:packageand(patterns-openSUSE-kde4:patterns-openSUSE-multimedia)
@@ -1879,6 +1880,7 @@
 %package print_server
 Group:  Metapackages
 Summary:Meta package for pattern print_server
+Recommends: OpenPrintingPPDs
 Recommends: cups
 Recommends: cups-backends
 Recommends: foomatic-filters

++ patterns-openSUSE-data.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patterns-openSUSE-data/data/ENHANCED-BASIS-OPT 
new/patterns-openSUSE-data/data/ENHANCED-BASIS-OPT
--- old/patterns-openSUSE-data/data/ENHANCED-BASIS-OPT  2011-10-14 
12:49:01.0 +0200
+++ new/patterns-openSUSE-data/data/ENHANCED-BASIS-OPT  2011-10-18 
11:52:38.0 +0200
@@ -5,6 +5,7 @@
 cracklib-dict-full
 // autoconfig new printers
 udev-configure-printer
+OpenPrintingPPDs
 dos2unix
 ed
 finger
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patterns-openSUSE-data/data/KDE4-Multimedia 
new/patterns-openSUSE-data/data/KDE4-Multimedia
--- old/patterns-openSUSE-data/data/KDE4-Multimedia 2011-10-14 
12:49:01.0 +0200
+++ new/patterns-openSUSE-data/data/KDE4-Multimedia 2011-10-18 
11:52:38.0 +0200
@@ -8,8 +8,7 @@
 kmix
 kscd
 kio_audiocd
-// software.openSUSE.org/codecs  
-opensuse-codecs-installer 
+PackageKit-gstreamer-plugin
 kaffeine
 phonon-backend-gstreamer-0_10
 gstreamer-0_10-plugins-good
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patterns-openSUSE-data/data/PRINT_SERVER 
new/patterns-openSUSE-data/data/PRINT_SERVER
--- old/patterns-openSUSE-data/data/PRINT_SERVER2011-10-14 
12:49:01.0 +0200
+++ new/patterns-openSUSE-data/data/PRINT_SERVER2011-10-18 
11:52:38.0 +0200
@@ -5,6 +5,7 @@
 +Prc:
 cups
 cups-backends
+OpenPrintingPPDs
 m2300w
 splix
 foomatic-filters
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patterns-openSUSE-data/data/REST-CD 
new/patterns-openSUSE-data/data/REST-CD
--- old/patterns-openSUSE-data/data/REST-CD 2011-10-14 12:49:01.0 
+0200
+++ new/patterns-openSUSE-data/data/REST-CD 2011-10-18 11:52:38.0 
+0200
@@ -149,7 +149,7 @@
 iw
 
 // bug#589416
-virtualbox-ose-guest-tools 
+virtualbox-guest-tools 
 
 // bug#591085
 open-vm-tools

continue with 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 pcsc-ccid for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package pcsc-ccid for openSUSE:Factory
checked in at Tue Oct 18 14:26:14 CEST 2011.




--- openSUSE:Factory/pcsc-ccid/pcsc-ccid.changes2011-09-23 
12:21:51.0 +0200
+++ /mounts/work_src_done/STABLE/pcsc-ccid/pcsc-ccid.changes2011-10-17 
12:17:06.0 +0200
@@ -1,0 +2,17 @@
+Mon Oct 17 10:08:36 UTC 2011 - w...@rosenauer.org
+
+- Updated to version 1.4.5:
+  * Add support of Alcor Micro AU9540, Ubisys 13.56MHz RFID (CCID),
+BIFIT USB-Token iBank2key, BIFIT iBank2Key, Gemalto Ezio Shield
+PinPad reader, Gemalto SA .NET Dual, Precise Sense MC reader
+(with fingerprint), SDS DOMINO-Key TWIN Pro
+  * Add support of bPPDUSupport and FEATURE_CCID_ESC_COMMAND
+  * SCARD_ATTR_VENDOR_NAME and SCARD_ATTR_VENDOR_IFD_VERSION are
+not the vendor name and version of the driver but of the IFD:
+InterFace Device i.e. the smart card reader.  We then return the
+USB iManufacturer string as SCARD_ATTR_VENDOR_NAME and USB
+bcdDevice as SCARD_ATTR_VENDOR_IFD_VERSION
+  * reduce binary size by removing unused features from simclist
+  * Fix some warnings reported by Coverity
+
+---

calling whatdependson for head-i586


Old:

  SCsupported_HP_internal.diff
  ccid-1.4.4.tar.bz2

New:

  ccid-1.4.5.tar.bz2



Other differences:
--
++ pcsc-ccid.spec ++
--- /var/tmp/diff_new_pack.SDIOZK/_old  2011-10-18 14:26:09.0 +0200
+++ /var/tmp/diff_new_pack.SDIOZK/_new  2011-10-18 14:26:09.0 +0200
@@ -21,7 +21,7 @@
 Name:   pcsc-ccid
 %define _name ccid
 BuildRequires:  libusb-1_0-devel pcsc-lite-devel pkg-config udev
-Version:1.4.4
+Version:1.4.5
 Release:1
 Group:  Productivity/Security
 License:LGPLv2.1+
@@ -29,7 +29,6 @@
 Summary:PCSC Driver for CCID Based Smart Card Readers and GemPC Twin 
Serial Reader
 Source: %{_name}-%{version}.tar.bz2
 Source1:%{name}-rpmlintrc
-Patch:  SCsupported_HP_internal.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 # openSUSE package pcsc-lite 1.6.6 is the first one which creates the scard 
UID and GID:
 Requires:   pcsc-lite = 1.6.6
@@ -57,7 +56,6 @@
 
 %prep
 %setup -q -n %{_name}-%{version}
-%patch -p2
 cp -a src/openct/LICENSE LICENSE.openct
 cp -a src/towitoko/README README.towitoko
 

++ ccid-1.4.4.tar.bz2 - ccid-1.4.5.tar.bz2 ++
 3882 lines of diff (skipped)

continue with 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 perl-Cairo for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package perl-Cairo for openSUSE:Factory
checked in at Tue Oct 18 14:26:26 CEST 2011.




--- openSUSE:Factory/perl-Cairo/perl-Cairo.changes  2011-09-23 
12:36:10.0 +0200
+++ /mounts/work_src_done/STABLE/perl-Cairo/perl-Cairo.changes  2011-10-17 
16:38:35.0 +0200
@@ -1,0 +2,9 @@
+Mon Oct 17 01:37:41 UTC 2011 - vci...@suse.com
+
+- update to 1.081
+  * Wrap new 1.8 and 1.10 API.
+  * Make Cairo::Pattern-set_extend, get_extend, set_filter and get_filter
+available to all pattern types, not just surface patterns.
+  * Make it possible to modify and create paths.
+
+---

calling whatdependson for head-i586


Old:

  Cairo-1.062.tar.bz2

New:

  Cairo-1.081.tar.gz



Other differences:
--
++ perl-Cairo.spec ++
--- /var/tmp/diff_new_pack.HOV5ga/_old  2011-10-18 14:26:20.0 +0200
+++ /var/tmp/diff_new_pack.HOV5ga/_new  2011-10-18 14:26:20.0 +0200
@@ -15,53 +15,48 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   perl-Cairo
-%define cpan_name Cairo
-Summary:Perl interface to the cairo library
-Version:1.062
+Version:1.081
 Release:1
 License:LGPLv2.1+
-Group:  Development/Libraries/Perl
+%define cpan_name Cairo
+Summary:Perl interface to the cairo library
 Url:http://search.cpan.org/dist/Cairo/
+Group:  Development/Libraries/Perl
 #Source: http://www.cpan.org/authors/id/T/TS/TSCH/Cairo-1.061.tar.gz
-Source: %{cpan_name}-%{version}.tar.bz2
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
-BuildRequires:  cairo-devel pkgconfig
+Source: %{cpan_name}-%{version}.tar.gz
 BuildRequires:  perl
-BuildRequires:  perl-macros
 BuildRequires:  perl(ExtUtils::Depends) = 0.2
 BuildRequires:  perl(ExtUtils::PkgConfig) = 1
 BuildRequires:  perl(Test::Number::Delta) = 1
+BuildRequires:  perl-macros
+BuildRequires:  pkgconfig
+BuildRequires:  pkgconfig(cairo)
 #
 Requires:   perl(ExtUtils::Depends) = 0.2
 Requires:   perl(ExtUtils::PkgConfig) = 1
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%{perl_requires}
 
 %description
 Cairo provides Perl bindings for the vector graphics library cairo.
 It supports multiple output targets, including PNG, PDF and SVG.
 Cairo produces identical output on all those targets.
 
-Authors:
-
-Ross McFarland rwmcfa1 at neces dot com
-Torsten Schoenfeld kaffeetisch at gmx dot de
-
 %prep
 %setup -q -n %{cpan_name}-%{version}
 
 %build
 #disable some randomly failing tests
-%{__mv} t/Cairo.t t/Cairo.tt
-%{__mv} t/CairoFont.t t/CairoFont.tt
-%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE=$RPM_OPT_FLAGS
-%{__make} %{?_smp_mflags}
+mv t/Cairo.t t/Cairo.tt
+mv t/CairoFont.t t/CairoFont.tt
+perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE=%{optflags}
+make %{?_smp_mflags}
 
 %check
-%{__make} test
+make test
 
 %install
 %perl_make_install
@@ -72,14 +67,14 @@
 %else
 # do not perl_process_packlist
 # remove .packlist file
-%{__rm} -f $RPM_BUILD_ROOT%perl_vendorarch/auto/Cairo/.packlist
+rm -f %{buildroot}%perl_vendorarch/auto/Cairo/.packlist
 # remove perllocal.pod file
-%{__rm} -f $RPM_BUILD_ROOT%perl_archlib/perllocal.pod
+rm -f %{buildroot}%perl_archlib/perllocal.pod
 %endif
 %perl_gen_filelist
 
 %clean
-%{__rm} -rf $RPM_BUILD_ROOT
+rm -rf %{buildroot}
 
 %files -f %{name}.files
 %defattr(-,root,root,-)

continue with 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 perl-IO-Socket-SSL for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package perl-IO-Socket-SSL for 
openSUSE:Factory
checked in at Tue Oct 18 14:27:00 CEST 2011.




--- openSUSE:Factory/perl-IO-Socket-SSL/perl-IO-Socket-SSL.changes  
2011-09-23 12:37:30.0 +0200
+++ /mounts/work_src_done/STABLE/perl-IO-Socket-SSL/perl-IO-Socket-SSL.changes  
2011-10-17 16:44:21.0 +0200
@@ -1,0 +2,7 @@
+Mon Oct 17 01:35:42 UTC 2011 - vci...@suse.com
+
+- update to 1.45
+- fix readline to continue when getting interrupt waiting for more
+  data. Thanks to kgc[AT]corp[DOT]sonic[DOT]net for reporting problem
+
+---

calling whatdependson for head-i586


Old:

  IO-Socket-SSL-1.44.tar.gz

New:

  IO-Socket-SSL-1.45.tar.gz



Other differences:
--
++ perl-IO-Socket-SSL.spec ++
--- /var/tmp/diff_new_pack.EJxhiK/_old  2011-10-18 14:26:56.0 +0200
+++ /var/tmp/diff_new_pack.EJxhiK/_new  2011-10-18 14:26:56.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   perl-IO-Socket-SSL
-Version:1.44
+Version:1.45
 Release:1
 License:GPL+ or Artistic
 %define cpan_name IO-Socket-SSL
@@ -26,17 +26,17 @@
 Url:http://search.cpan.org/dist/IO-Socket-SSL/
 Group:  Development/Libraries/Perl
 Source: 
http://www.cpan.org/authors/id/S/SU/SULLR/%{cpan_name}-%{version}.tar.gz
-BuildArch:  noarch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
-BuildRequires:  perl-macros
-BuildRequires:  perl(Net::SSLeay) = 1.21
-Requires:   perl(Net::SSLeay) = 1.21
 # MANUAL BEGIN
 BuildRequires:  perl(IO::Socket::INET6)
 BuildRequires:  perl(Net::LibIDN)
+BuildRequires:  perl(Net::SSLeay) = 1.21
+BuildRequires:  perl-macros
+Requires:   perl(Net::SSLeay) = 1.21
 Recommends: perl(IO::Socket::INET6)
 Recommends: perl(Net::LibIDN)
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildArch:  noarch
 # MANUAL END
 %{perl_requires}
 
@@ -64,8 +64,8 @@
 %setup -q -n %{cpan_name}-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
-%{__make} %{?_smp_mflags}
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
 
 %install
 %perl_make_install
@@ -73,7 +73,7 @@
 %perl_gen_filelist
 
 %clean
-%{__rm} -rf %{buildroot}
+rm -rf %{buildroot}
 
 %files -f %{name}.files
 %defattr(-,root,root,755)

++ IO-Socket-SSL-1.44.tar.gz - IO-Socket-SSL-1.45.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/IO-Socket-SSL-1.44/Changes 
new/IO-Socket-SSL-1.45/Changes
--- old/IO-Socket-SSL-1.44/Changes  2011-05-27 13:37:39.0 +0200
+++ new/IO-Socket-SSL-1.45/Changes  2011-10-12 11:03:23.0 +0200
@@ -1,4 +1,7 @@
 
+v1.45 2011.10.12
+- fix readline to continue when getting interrupt waiting for more
+  data. Thanks to kgc[AT]corp[DOT]sonic[DOT]net for reporting problem
 v1.44 2011.05.27
 - fix invalid call to inet_pton in verify_hostname_of_cert when 
   identity should be verified as ipv6 address, because it contains
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/IO-Socket-SSL-1.44/MANIFEST 
new/IO-Socket-SSL-1.45/MANIFEST
--- old/IO-Socket-SSL-1.44/MANIFEST 2011-05-27 13:38:31.0 +0200
+++ new/IO-Socket-SSL-1.45/MANIFEST 2011-10-13 06:31:29.0 +0200
@@ -42,5 +42,6 @@
 t/inet6.t
 t/testlib.pl
 t/memleak_bad_handshake.t
+t/signal-readline.t
 util/export_certs.pl
 META.yml Module meta-data (added by MakeMaker)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/IO-Socket-SSL-1.44/META.yml 
new/IO-Socket-SSL-1.45/META.yml
--- old/IO-Socket-SSL-1.44/META.yml 2011-05-27 13:38:31.0 +0200
+++ new/IO-Socket-SSL-1.45/META.yml 2011-10-13 06:31:29.0 +0200
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:   IO-Socket-SSL
-version:1.44
+version:1.45
 abstract:   Nearly transparent SSL encapsulation for IO::Socket::INET.
 author:
 - Steffen Ullrich  Peter Behroozi  Marko Asplund
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/IO-Socket-SSL-1.44/SSL.pm 
new/IO-Socket-SSL-1.45/SSL.pm
--- old/IO-Socket-SSL-1.44/SSL.pm   2011-05-27 13:37:46.0 +0200
+++ new/IO-Socket-SSL-1.45/SSL.pm   2011-10-13 06:29:31.0 +0200
@@ -78,7 +78,7 @@
}) {
@ISA = qw(IO::Socket::INET);
}
-   $VERSION = '1.44';
+   $VERSION = '1.45';
$GLOBAL_CONTEXT_ARGS = {};
 
#Make $DEBUG another name for $Net::SSLeay::trace
@@ -718,14 +718,27 @@
 
 sub readline {
my $self = shift;
-   my $ssl = $self-_get_ssl_object || return;
 
-   if (wantarray) {
-   my ($buf,$err) = 

commit perl-libwww-perl for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package perl-libwww-perl for openSUSE:Factory
checked in at Tue Oct 18 14:27:10 CEST 2011.




--- openSUSE:Factory/perl-libwww-perl/perl-libwww-perl.changes  2011-09-23 
12:39:36.0 +0200
+++ /mounts/work_src_done/STABLE/perl-libwww-perl/perl-libwww-perl.changes  
2011-10-17 16:51:39.0 +0200
@@ -1,0 +2,28 @@
+Mon Oct 17 01:37:09 UTC 2011 - vci...@suse.com
+
+- update to 6.03
+Ville Skyttä (7):
+  Link updates.
+  Attribute documentation wording improvements.
+  Don't parse robots.txt response content unless it's textual.
+  Decode robots.txt response content before attempting to parse it.
+  RobotUA robots.txt response parsing cleanups.
+  Don't parse HEAD of robots.txt responses.
+  Request handler doc grammar fixes.
+Gisle Aas (6):
+  Pass on HTTP/1.0 if set as request protocol
+  Remove outdated docs (not touched since 1996 :-)
+  Merge pull request #22 from madsen/RT67947-verify_hostname
+  PERL_LWP_ENV_PROXY tweaks
+  lwp-request didn't respect -H Content-type [RT#70488]
+  lwp-request -H didn't allow repeated headers
+Christopher J. Madsen (2):
+  verify_hostname defaults to 0 if ssl_opts provided [RT#67947]
+  Test verify_hostname setting
+Bryan Cardillo (1):
+  Fix expect header support to work with content refs.
+Moritz Onken (1):
+  add PERL_LWP_ENV_PROXY env variable to enable env_proxy globally
+___
+
+---

calling whatdependson for head-i586


Old:

  libwww-perl-6.02.tar.bz2

New:

  libwww-perl-6.03.tar.gz



Other differences:
--
++ perl-libwww-perl.spec ++
--- /var/tmp/diff_new_pack.ydmPnW/_old  2011-10-18 14:27:06.0 +0200
+++ /var/tmp/diff_new_pack.ydmPnW/_new  2011-10-18 14:27:06.0 +0200
@@ -18,21 +18,18 @@
 
 
 Name:   perl-libwww-perl
-%define cpan_name libwww-perl
-Summary:The World-Wide-Web library for Perl
-Version:6.02
+Version:6.03
 Release:1
 License:GPL+ or Artistic
-Group:  Development/Libraries/Perl
+%define cpan_name libwww-perl
+Summary:The World-Wide-Web library for Perl
 Url:http://search.cpan.org/dist/libwww-perl/
+Group:  Development/Libraries/Perl
 #Source: 
http://www.cpan.org/authors/id/G/GA/GAAS/libwww-perl-%{version}.tar.gz
-Source: %{cpan_name}-%{version}.tar.bz2
+Source: %{cpan_name}-%{version}.tar.gz
 # PATCH-FIX-OPENSUSE -- disable one perl requires that would be created 
automatically and we're unable to provide
 Patch0: disable-ghttp.diff
-BuildArch:  noarch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
-BuildRequires:  perl-macros
 BuildRequires:  perl(Digest::MD5)
 BuildRequires:  perl(Encode) = 2.12
 BuildRequires:  perl(Encode::Locale)
@@ -56,6 +53,7 @@
 BuildRequires:  perl(URI) = 1.10
 BuildRequires:  perl(URI::Escape)
 BuildRequires:  perl(WWW::RobotRules) = 6
+BuildRequires:  perl-macros
 #
 Requires:   perl(Digest::MD5)
 Requires:   perl(Encode) = 2.12
@@ -80,13 +78,15 @@
 Requires:   perl(URI) = 1.10
 Requires:   perl(URI::Escape)
 Requires:   perl(WWW::RobotRules) = 6
-%{perl_requires}
 #
 Recommends: perl(Authen::NTML) = 2.12
 Recommends: perl(Data::Dump)
 Recommends: perl(IO::Socket::SSL) = 1.38
 Recommends: perl(Mozilla::CA) = 20110101
 Recommends: perl(Net::HTTPS) = 6
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildArch:  noarch
+%{perl_requires}
 
 %description
 The libwww-perl collection is a set of Perl modules which provides a
@@ -101,14 +101,14 @@
 %patch0 -p1
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
-%{__make} %{?_smp_mflags}
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
 
 %check
-%{__mv} t/live/jigsaw-chunk.t t/live/jigsaw-chunk.tt
-%{__mv} t/live/jigsaw-md5.t t/live/jigsaw-md5.tt
-%{__mv} t/live/jigsaw-md5-get.t t/live/jigsaw-md5-get.tt
-%{__make} test
+mv t/live/jigsaw-chunk.t t/live/jigsaw-chunk.tt
+mv t/live/jigsaw-md5.t t/live/jigsaw-md5.tt
+mv t/live/jigsaw-md5-get.t t/live/jigsaw-md5-get.tt
+make test
 
 %install
 %perl_make_install
@@ -116,7 +116,7 @@
 %perl_gen_filelist
 
 %clean
-%{__rm} -rf %{buildroot}
+rm -rf %{buildroot}
 
 %files -f %{name}.files
 %defattr(644,root,root,755)

continue with 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 phonon for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package phonon for openSUSE:Factory
checked in at Tue Oct 18 14:27:22 CEST 2011.




--- openSUSE:Factory/phonon/phonon.changes  2011-09-29 12:53:11.0 
+0200
+++ /mounts/work_src_done/STABLE/phonon/phonon.changes  2011-10-12 
11:21:03.0 +0200
@@ -1,0 +2,5 @@
+Fri Oct  7 15:37:05 UTC 2011 - toddrme2...@gmail.com
+
+- Cleaned up spec file formatting
+
+---

calling whatdependson for head-i586




Other differences:
--
++ phonon.spec ++
--- /var/tmp/diff_new_pack.uzjfVg/_old  2011-10-18 14:27:19.0 +0200
+++ /var/tmp/diff_new_pack.uzjfVg/_new  2011-10-18 14:27:19.0 +0200
@@ -15,8 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   phonon
 Version:4.5.0
 Release:4
@@ -86,36 +84,33 @@
 %install
   cd build
 %make_install
-  install -d -m 0755 %{buildroot}/%{_libdir}/kde4/plugins
-  install -d -m 0755 %{buildroot}/%{_libdir}/kde4/plugins/phonon_backend
-  %fdupes %{buildroot}%{_includedir}
+  install -d -m 0755 %{buildroot}%{_kde4_modulesdir}/plugins
+  install -d -m 0755 %{buildroot}%{_kde4_modulesdir}/plugins/phonon_backend
+  %fdupes %{buildroot}%{_kde4_includedir}
 
 %clean
 rm -rf %{buildroot}
 
 %post -n libphonon4 -p /sbin/ldconfig
-
 %postun -n libphonon4 -p /sbin/ldconfig
 
 %files -n libphonon4
 %defattr(-,root,root)
-%{_libdir}/libphonon.so.*
-%{_libdir}/libphononexperimental.so.*
-%dir %_kde4_modules/plugins
-%dir %_kde4_modules/plugins/phonon_backend
+%{_kde4_libdir}/libphonon.so.*
+%{_kde4_libdir}/libphononexperimental.so.*
+%dir %{_kde4_modulesdir}/plugins
+%dir %{_kde4_modulesdir}/plugins/phonon_backend
 %{_datadir}/dbus-1/interfaces/org.kde.Phonon.AudioOutput.xml
 
 %files devel
 %defattr(-,root,root)
-%{_includedir}/phonon
-%dir %{_includedir}/KDE
-%dir %{_datadir}/qt4/mkspecs/modules/
-%{_includedir}/KDE/Phonon
-%{_libdir}/libphonon.so
-%{_libdir}/libphononexperimental.so
-%{_libdir}/pkgconfig/phonon.pc
 %{_datadir}/phonon-buildsystem/
-%{_datadir}/qt4/mkspecs/modules/qt_phonon.pri
-%{_libdir}/qt4/plugins/designer/libphononwidgets.so
+%{_datadir}/qt4/mkspecs/modules/
+%{_kde4_includedir}/phonon
+%{_kde4_includedir}/KDE
+%{_kde4_libdir}/libphonon.so
+%{_kde4_libdir}/libphononexperimental.so
+%{_kde4_libdir}/pkgconfig/phonon.pc
+%{_kde4_libdir}/qt4/plugins/designer/libphononwidgets.so
 
 %changelog

continue with 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 polkit-gnome for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package polkit-gnome for openSUSE:Factory
checked in at Tue Oct 18 14:27:33 CEST 2011.




--- openSUSE:Factory/polkit-gnome/polkit-gnome.changes  2011-10-02 
10:25:08.0 +0200
+++ /mounts/work_src_done/STABLE/polkit-gnome/polkit-gnome.changes  
2011-10-17 21:35:58.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct 17 19:33:35 UTC 2011 - dims...@opensuse.org
+
+- Update to version 0.104:
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  polkit-gnome-0.103.tar.bz2

New:

  polkit-gnome-0.104.tar.bz2



Other differences:
--
++ polkit-gnome.spec ++
--- /var/tmp/diff_new_pack.J7QNE0/_old  2011-10-18 14:27:26.0 +0200
+++ /var/tmp/diff_new_pack.J7QNE0/_new  2011-10-18 14:27:26.0 +0200
@@ -18,13 +18,13 @@
 
 
 Name:   polkit-gnome
-Version:0.103
+Version:0.104
 Release:1
 License:LGPLv2.1+
 Summary:PolicyKit integration for the GNOME desktop
 Url:http://www.freedesktop.org/wiki/Software/PolicyKit
 Group:  System/GUI/GNOME
-Source0:
http://download.gnome.org/sources/polkit-gnome/0.103/%{name}-%{version}.tar.bz2
+Source0:
http://download.gnome.org/sources/polkit-gnome/0.104/%{name}-%{version}.tar.bz2
 Source1:polkit-gnome-authentication-agent-1.desktop.in
 # PATCH-FIX-UPSTREAM polkit-gnome-alternative-button-order-kde.patch 
bnc#538897 l.lu...@suse.cz
 Patch3: polkit-gnome-alternative-button-order-kde.patch

++ polkit-gnome-0.103.tar.bz2 - polkit-gnome-0.104.tar.bz2 ++
 5445 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/polkit-gnome-0.103/NEWS new/polkit-gnome-0.104/NEWS
--- old/polkit-gnome-0.103/NEWS 2011-09-19 16:29:08.0 +0200
+++ new/polkit-gnome-0.104/NEWS 2011-10-17 20:19:48.0 +0200
@@ -1,4 +1,40 @@
 ==
+polkit-gnome 0.104
+==
+
+This is polkit-gnome version 0.104.
+
+Build requirements
+
+ polkit= 0.96
+ gtk+-3.0  = 3.0
+
+Changes since 0.103:
+
+Carles Ferrando (1):
+  [l10n]Updated Catalan (Valencian) translation
+
+David Zeuthen (1):
+  Post-release version bump to 0.104
+
+Gianvito Cavasoli (1):
+  l10n: Updated Italian translation
+
+Gil Forcada (1):
+  [l10n]Updated Catalan translation
+
+Inaki Larranaga Murgoitio (1):
+  Updated Basque language
+
+Olav Vitters (1):
+  add download link to doap file
+
+Thanks to our contributors.
+
+Matthias Clasen,
+October 17, 2011
+
+==
 polkit-gnome 0.103
 ==
 
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/polkit-gnome-0.103/configure.ac new/polkit-gnome-0.104/configure.ac
--- old/polkit-gnome-0.103/configure.ac 2011-09-19 16:24:04.0 +0200
+++ new/polkit-gnome-0.104/configure.ac 2011-10-01 23:09:03.0 +0200
@@ -1,4 +1,4 @@
-AC_INIT([polkit-gnome],[0.103],[http://lists.freedesktop.org/mailman/listinfo/polkit-devel],[polkit-gnome])
+AC_INIT([polkit-gnome],[0.104],[http://lists.freedesktop.org/mailman/listinfo/polkit-devel],[polkit-gnome])
 
 AM_INIT_AUTOMAKE([1.9 foreign dist-bzip2 no-dist-gzip])
 
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/polkit-gnome-0.103/po/ca.po new/polkit-gnome-0.104/po/ca.po
--- old/polkit-gnome-0.103/po/ca.po 2011-09-19 16:24:04.0 +0200
+++ new/polkit-gnome-0.104/po/ca.po 2011-10-01 23:09:03.0 +0200
@@ -2,161 +2,21 @@
 # Copyright (C) 2007 David Zeuthen
 # This file is distributed under the same license as the PolicyKit-gnome 
package.
 # David Planella Molas david.plane...@gmail.com, 2008, 2009.
+# Gil Forcada gilforc...@guifi.net, 2011.
 #
 msgid 
 msgstr 
 Project-Id-Version: PolicyKit-gnome\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-04-02 13:19+0200\n
-PO-Revision-Date: 2011-04-02 13:20+0200\n
-Last-Translator: David Planella david.plane...@gmail.com\n
-Language-Team: Catalan tradgn...@softcatala.net\n
+POT-Creation-Date: 2011-10-01 16:06+0200\n
+PO-Revision-Date: 2011-10-01 16:07+0200\n

commit postfix for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package postfix for openSUSE:Factory
checked in at Tue Oct 18 14:27:46 CEST 2011.




--- openSUSE:Factory/postfix/postfix.changes2011-10-11 17:16:37.0 
+0200
+++ /mounts/work_src_done/STABLE/postfix/postfix.changes2011-10-14 
16:46:08.0 +0200
@@ -1,0 +2,5 @@
+Fri Oct 14 16:43:02 CEST 2011 - mhruse...@suse.cz
+
+- only fix files that exists in %post
+
+---

calling whatdependson for head-i586




Other differences:
--
++ postfix.spec ++
--- /var/tmp/diff_new_pack.ZJgxz5/_old  2011-10-18 14:27:42.0 +0200
+++ /var/tmp/diff_new_pack.ZJgxz5/_new  2011-10-18 14:27:42.0 +0200
@@ -391,7 +391,7 @@
 fi
 fi
 # before fillup we need to fix something
-%{__sed} -i \
+[ \! -f %{_sysconfdir}/sysconfig/%{name} ] || %{__sed} -i \
  -e s/POSTFIX_SMTPD_SENDERNT_RESTRICTIONS/POSTFIX_SMTPD_SENDER_RESTRICTIONS/ 
\
  %{_sysconfdir}/sysconfig/%{name}
 %{fillup_and_insserv -y postfix}

continue with 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 qtcurve-gtk2 for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package qtcurve-gtk2 for openSUSE:Factory
checked in at Tue Oct 18 14:27:59 CEST 2011.




--- openSUSE:Factory/qtcurve-gtk2/qtcurve-gtk2.changes  2011-09-23 
12:43:59.0 +0200
+++ /mounts/work_src_done/STABLE/qtcurve-gtk2/qtcurve-gtk2.changes  
2011-10-17 11:16:02.0 +0200
@@ -1,0 +2,13 @@
+Mon Oct 17 09:15:46 UTC 2011 - vu...@opensuse.org
+
+- Update to version 1.8.11:
+  + Fix broken titlebars in GIMP, etc.
+
+---
+Sun Oct 16 17:22:01 UTC 2011 - vu...@opensuse.org
+
+- Update to version 1.8.10:
+  + Fix compilation against Gtk 2.11
+  + Implement shadows for KDE SC4.7
+
+---

calling whatdependson for head-i586


Old:

  QtCurve-Gtk2-1.8.9.tar.bz2

New:

  QtCurve-Gtk2-1.8.11.tar.bz2



Other differences:
--
++ qtcurve-gtk2.spec ++
--- /var/tmp/diff_new_pack.ae2KsC/_old  2011-10-18 14:27:53.0 +0200
+++ /var/tmp/diff_new_pack.ae2KsC/_new  2011-10-18 14:27:53.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   qtcurve-gtk2
-Version:1.8.9
+Version:1.8.11
 Release:1
 License:GPLv2+
 Summary:QtCurve style for GTK+ 2

++ QtCurve-Gtk2-1.8.9.tar.bz2 - QtCurve-Gtk2-1.8.11.tar.bz2 ++
 3463 lines of diff (skipped)

continue with 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 rcs for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package rcs for openSUSE:Factory
checked in at Tue Oct 18 14:28:20 CEST 2011.




--- openSUSE:Factory/rcs/rcs.changes2011-09-23 12:44:06.0 +0200
+++ /mounts/work_src_done/STABLE/rcs/rcs.changes2011-10-17 
21:54:42.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct 17 19:38:07 UTC 2011 - giecr...@stegny.2a.pl
+
+- bump version to 5.8
+- add documentation
+
+---

calling whatdependson for head-i586


New:

  rcs-5.7-man.patch
  rcs-5.8.tar.gz



Other differences:
--
++ rcs.spec ++
--- /var/tmp/diff_new_pack.IrXsfH/_old  2011-10-18 14:28:14.0 +0200
+++ /var/tmp/diff_new_pack.IrXsfH/_new  2011-10-18 14:28:14.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package rcs (Version 5.7)
+# spec file for package rcs
 #
-# Copyright (c) 2008 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
@@ -22,13 +22,16 @@
 License:GPL v2 or later
 Group:  Development/Tools/Version Control
 AutoReqProv:on
-Version:5.7
+PreReq: %install_info_prereq
+Version:5.8
 Release:1005
+Url:ftp://ftp.cs.purdue.edu/pub/RCS/
 Summary:Revision Control System
-Source: rcs-5.7.tar.gz
-Source1:rcs.html
+Source: ftp://ftp.cs.purdue.edu/pub/RCS/rcs-%version.tar.gz
+#Source1:rcs.html
 #Patch:rcs-5.7.dif
-Patch1: rcs-5.7-security.patch
+#Patch1: rcs-5.7-security.patch
+#Patch2: rcs-5.7-man.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -49,8 +52,8 @@
 
 %prep
 %setup
-#%patch
-%patch -P 1 -p 0 -b .tmpfile
+#patch -P 1 -p 0 -b .tmpfile
+#patch2 -p1
 
 %build
 ac_cv_path_SENDMAIL=/usr/sbin/sendmail \
@@ -60,15 +63,22 @@
 %install
 make prefix=$RPM_BUILD_ROOT/usr install man1dir=$RPM_BUILD_ROOT%{_mandir}/man1 
man5dir=$RPM_BUILD_ROOT%{_mandir}/man5
 mkdir -p $RPM_BUILD_ROOT%{_defaultdocdir}/rcs
-cp -av $RPM_SOURCE_DIR/*.html $RPM_BUILD_ROOT%{_defaultdocdir}/rcs
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%post
+%install_info --info-dir=%_infodir %_infodir/%name.info.gz
+
+%postun
+%install_info_delete --info-dir=%_infodir %_infodir/%name.info.gz
+
 %files
 %defattr(-, root, root)
 %{_defaultdocdir}/rcs
 /usr/bin/*
-%{_mandir}/man?/*.gz
+%doc AUTHORS README NEWS THANKS ChangeLog COPYING 
+%doc %{_mandir}/man?/*.gz 
+%doc %{_infodir}/*.*
 
 %changelog

++ rcs-5.7-man.patch ++
diff -aur o/man/merge.1 n/man/merge.1
--- o/man/merge.1   1995-06-01 18:23:43.0 +0200
+++ n/man/merge.1   2011-10-16 23:50:19.01004 +0200
@@ -114,8 +114,9 @@
 .TP
 .BI \-q
 Quiet; do not warn about conflicts.
+.TP
 .BI \-V
-Print \*r's version number.
+Print RCS version number.
 .SH DIAGNOSTICS
 Exit status is 0 for no conflicts, 1 for some conflicts, 2 for trouble.
 .SH IDENTIFICATION
continue with 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 ristretto for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package ristretto for openSUSE:Factory
checked in at Tue Oct 18 14:28:44 CEST 2011.




--- openSUSE:Factory/ristretto/ristretto.changes2011-10-08 
11:44:36.0 +0200
+++ /mounts/work_src_done/STABLE/ristretto/ristretto.changes2011-10-17 
21:51:12.0 +0200
@@ -1,0 +2,14 @@
+Mon Oct 17 16:50:05 UTC 2011 - g...@opensuse.org
+
+- update to version 0.2.0
+  - improve open-file and close-file behaviour
+  - hide thumbnailbar when no images are opened
+  - add option to merge the 2 toolbars into one
+  - make open-entire-folder the default and remove the option from
+the preferences dialog
+  - show the toolbar when going to fullscreen-mode without any
+open images
+  - reduce timeout before toolbar is hidden from 3000 to 500ms
+  - bugfixes
+
+---

calling whatdependson for head-i586


Old:

  ristretto-0.1.1.tar.bz2

New:

  ristretto-0.2.0.tar.bz2



Other differences:
--
++ ristretto.spec ++
--- /var/tmp/diff_new_pack.BDPNlU/_old  2011-10-18 14:28:27.0 +0200
+++ /var/tmp/diff_new_pack.BDPNlU/_new  2011-10-18 14:28:27.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   ristretto
-Version:0.1.1
+Version:0.2.0
 Release:1
 License:GPLv2+
 Summary:Fast and Lightweight Image-viewer for the Xfce desktop 
environment

++ ristretto-0.1.1.tar.bz2 - ristretto-0.2.0.tar.bz2 ++
 29550 lines of diff (skipped)

continue with 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 rubygem-passenger for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package rubygem-passenger for 
openSUSE:Factory
checked in at Tue Oct 18 14:28:58 CEST 2011.




--- openSUSE:Factory/rubygem-passenger/rubygem-passenger.changes
2011-10-05 11:10:20.0 +0200
+++ /mounts/work_src_done/STABLE/rubygem-passenger/rubygem-passenger.changes
2011-10-12 22:19:23.0 +0200
@@ -1,0 +2,5 @@
+Wed Oct 12 20:17:03 UTC 2011 - ro...@priesol.net
+
+- [Nginx] Fixed line without semicolon 
+
+---

calling whatdependson for head-i586




Other differences:
--
++ nginx_passenger.conf ++
--- /var/tmp/diff_new_pack.9f0F2h/_old  2011-10-18 14:28:55.0 +0200
+++ /var/tmp/diff_new_pack.9f0F2h/_new  2011-10-18 14:28:55.0 +0200
@@ -12,7 +12,7 @@
 # The config variable got moved to its own file that will get updated by
 # the package.
 # 
-include conf.d/passenger_root.include
+include conf.d/passenger_root.include;
 
 # passenger_ruby filename
 #


continue with 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 rubygem-webyast-rake-tasks for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package rubygem-webyast-rake-tasks for 
openSUSE:Factory
checked in at Tue Oct 18 14:29:28 CEST 2011.




--- 
openSUSE:Factory/rubygem-webyast-rake-tasks/rubygem-webyast-rake-tasks.changes  
2011-09-23 12:45:06.0 +0200
+++ 
/mounts/work_src_done/STABLE/rubygem-webyast-rake-tasks/rubygem-webyast-rake-tasks.changes
  2011-04-12 09:13:51.0 +0200
@@ -1,0 +2,5 @@
+Tue Apr 12 07:10:21 UTC 2011 - sch...@novell.com
+
+- 0.1.11 
+
+---

calling whatdependson for head-i586


Old:

  webyast-rake-tasks-0.1.10.gem

New:

  webyast-rake-tasks-0.1.11.gem



Other differences:
--
++ rubygem-webyast-rake-tasks.spec ++
--- /var/tmp/diff_new_pack.1ZxtKU/_old  2011-10-18 14:29:22.0 +0200
+++ /var/tmp/diff_new_pack.1ZxtKU/_new  2011-10-18 14:29:22.0 +0200
@@ -19,10 +19,10 @@
 
 
 Name:   rubygem-webyast-rake-tasks
-Provides:   rubygem-yast2-webservice-tasks = 0.1.10
-Obsoletes:  rubygem-yast2-webservice-tasks  0.1.10
-Version:0.1.10
-Release:1
+Provides:   rubygem-yast2-webservice-tasks = 0.1.11
+Obsoletes:  rubygem-yast2-webservice-tasks  0.1.11
+Version:0.1.11
+Release:0
 
 # Nope, doesn't work. Gems are installed below /usr/lib{64}
 # BuildArch:  noarch

continue with 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 seahorse for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package seahorse for openSUSE:Factory
checked in at Tue Oct 18 14:29:38 CEST 2011.




--- openSUSE:Factory/seahorse/seahorse.changes  2011-10-13 20:01:55.0 
+0200
+++ /mounts/work_src_done/STABLE/seahorse/seahorse.changes  2011-10-17 
16:13:54.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct 17 14:13:54 UTC 2011 - vu...@opensuse.org
+
+- Add seahorse-plugins Obsoletes to help smooth upgrades, since we
+  dropped the package.
+
+---

calling whatdependson for head-i586




Other differences:
--
++ seahorse.spec ++
--- /var/tmp/diff_new_pack.VR7eC2/_old  2011-10-18 14:29:33.0 +0200
+++ /var/tmp/diff_new_pack.VR7eC2/_new  2011-10-18 14:29:33.0 +0200
@@ -47,6 +47,8 @@
 BuildRequires:  pkgconfig(libsoup-2.4)
 Recommends: %{name}-lang
 Obsoletes:  %{name}-devel  %{version}
+# We dropped seahorse-plugins in 12.1
+Obsoletes:  seahorse-plugins = 2.30.1.git.20110502
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %glib2_gsettings_schema_requires
 

continue with 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 sushi for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package sushi for openSUSE:Factory
checked in at Tue Oct 18 14:30:00 CEST 2011.




--- openSUSE:Factory/sushi/sushi.changes2011-10-04 17:02:09.0 
+0200
+++ /mounts/work_src_done/STABLE/sushi/sushi.changes2011-10-17 
23:19:48.0 +0200
@@ -1,0 +2,9 @@
+Mon Oct 17 20:15:29 CEST 2011 - dims...@opensuse.org
+
+- Update to version 0.2.1:
+  + Fix OSD toolbar not appearing for text files previews.
+  + Make sure the decoration title is centered with the close
+button.
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  sushi-0.2.0.tar.bz2

New:

  sushi-0.2.1.tar.bz2



Other differences:
--
++ sushi.spec ++
--- /var/tmp/diff_new_pack.6rB47I/_old  2011-10-18 14:29:56.0 +0200
+++ /var/tmp/diff_new_pack.6rB47I/_new  2011-10-18 14:29:56.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   sushi
-Version:0.2.0
+Version:0.2.1
 Release:1
 License:GPLv2+
 Summary:Quick Previewer for Nautilus

++ sushi-0.2.0.tar.bz2 - sushi-0.2.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sushi-0.2.0/NEWS new/sushi-0.2.1/NEWS
--- old/sushi-0.2.0/NEWS2011-09-26 16:32:27.0 +0200
+++ new/sushi-0.2.1/NEWS2011-10-17 16:31:40.0 +0200
@@ -1,3 +1,10 @@
+0.2.1 - Here and now
+==
+
+- Fix OSD toolbar not appearing for text files previews
+- Make sure the decoration title is centered with the close button
+- Translation updates
+
 0.2.0 - F
 ===
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sushi-0.2.0/configure new/sushi-0.2.1/configure
--- old/sushi-0.2.0/configure   2011-09-26 16:32:50.0 +0200
+++ new/sushi-0.2.1/configure   2011-10-17 16:33:00.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for sushi 0.2.0.
+# Generated by GNU Autoconf 2.68 for sushi 0.2.1.
 #
 #
 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -567,8 +567,8 @@
 # Identity of this package.
 PACKAGE_NAME='sushi'
 PACKAGE_TARNAME='sushi'
-PACKAGE_VERSION='0.2.0'
-PACKAGE_STRING='sushi 0.2.0'
+PACKAGE_VERSION='0.2.1'
+PACKAGE_STRING='sushi 0.2.1'
 PACKAGE_BUGREPORT=''
 PACKAGE_URL=''
 
@@ -1377,7 +1377,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 sushi 0.2.0 to adapt to many kinds of systems.
+\`configure' configures sushi 0.2.1 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1448,7 +1448,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of sushi 0.2.0:;;
+ short | recursive ) echo Configuration of sushi 0.2.1:;;
esac
   cat \_ACEOF
 
@@ -1571,7 +1571,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-sushi configure 0.2.0
+sushi configure 0.2.1
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -1970,7 +1970,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by sushi $as_me 0.2.0, which was
+It was created by sushi $as_me 0.2.1, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -2917,7 +2917,7 @@
 
 # Define the identity of the package.
  PACKAGE='sushi'
- VERSION='0.2.0'
+ VERSION='0.2.1'
 
 
 cat confdefs.h _ACEOF
@@ -19640,7 +19640,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log=
-This file was extended by sushi $as_me 0.2.0, which was
+This file was extended by sushi $as_me 0.2.1, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -19706,7 +19706,7 @@
 cat $CONFIG_STATUS _ACEOF || ac_write_fail=1
 ac_cs_config=`$as_echo $ac_configure_args | sed 's/^ //; 
s/[\\\`\$]//g'`
 ac_cs_version=\\
-sushi config.status 0.2.0
+sushi config.status 0.2.1
 configured by $0, generated by GNU Autoconf 2.68,
   with options \\\$ac_cs_config\\
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sushi-0.2.0/configure.ac new/sushi-0.2.1/configure.ac
--- old/sushi-0.2.0/configure.ac2011-09-26 16:32:46.0 +0200
+++ new/sushi-0.2.1/configure.ac2011-10-17 16:31:48.0 +0200
@@ -1,6 +1,6 @@
 dnl -*- mode: m4 -*-
 AC_PREREQ(2.63)
-AC_INIT([sushi],[0.2.0],[],[sushi])

commit sysstat for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package sysstat for openSUSE:Factory
checked in at Tue Oct 18 14:30:18 CEST 2011.




--- openSUSE:Factory/sysstat/sysstat.changes2011-09-23 12:47:17.0 
+0200
+++ /mounts/work_src_done/STABLE/sysstat/sysstat.changes2011-10-17 
17:23:55.0 +0200
@@ -1,0 +2,5 @@
+Mon Oct 17 15:16:34 UTC 2011 - fcro...@suse.com
+
+- Add systemd service for sysstat (bnc#723858).
+
+---

calling whatdependson for head-i586


New:

  sysstat.service



Other differences:
--
++ sysstat.spec ++
--- /var/tmp/diff_new_pack.5DvHMn/_old  2011-10-18 14:30:11.0 +0200
+++ /var/tmp/diff_new_pack.5DvHMn/_new  2011-10-18 14:30:11.0 +0200
@@ -28,6 +28,7 @@
 Source1:isag.desktop
 Source2:sysstat.cron.suse
 Source3:sysstat.init.suse
+Source4:sysstat.service
 # PATCH-FIX-OPENSUSE should be upstreamed
 # add locking to scripts sa1 and sa2 (bnc#7861)
 Patch0: sysstat-8.1.6-sa1sa2lock.diff
@@ -47,11 +48,13 @@
 PreReq: %insserv_prereq
 Requires:   gettext
 Requires:   procmail
+%{?systemd_requires}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 BuildRequires:  findutils
 BuildRequires:  sed
 BuildRequires:  update-desktop-files
+BuildRequires:  systemd
 
 %description
 Sar and Iostat commands for Linux. The sar command collects and reports
@@ -81,7 +84,7 @@
 %patch3
 %patch4 -p1
 %patch5
-cp %{SOURCE1} %{SOURCE2} %{SOURCE3} .
+cp %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} .
 
 %build
 export conf_dir=%{_sysconfdir}/sysstat
@@ -110,17 +113,24 @@
 fi
 ln -s %{_sysconfdir}/init.d/boot.sysstat %{buildroot}%{_sbindir}/rcsysstat
 %find_lang %{name}
-install -d %{buildroot}%{_localstatedir}/lock/sa
+install -d %{buildroot}%{_localstatedir}/lock/sa %{buildroot}%{_unitdir}
+install -D -m 0644 sysstat.service %{buildrppt}%{_unitdir}/sysstat.service
+
+%pre
+%service_add_pre sysstat.service
 
 %preun
 %{stop_on_removal boot.sysstat}
+%service_del_preun sysstat.service
 [ $1 -gt 0 ] || rm -f %{_localstatedir}/log/sa/*
 
 %post
 %{fillup_and_insserv -y boot.sysstat}
+%service_add_post syststat.service
 
 %postun
 %{insserv_cleanup}
+%service_del_postun sysstat.service
 
 %clean
 rm -rf %{buildroot}

++ sysstat.service ++
[Unit]
Description=Write information about system start to sysstat log
After=remote-fs.target local-fs.target
Before=cron.service

[Service]
Type=oneshot
ExecStart=/usr/lib/sa/sa1  --boot
ExecStart=/bin/ln -fs /etc/sysstat/sysstat.cron /etc/cron.d/sysstat
ExecStop=/bin/rm -f /etc/cron.d/sysstat
StandardOutput=null
RemainAfterExit=true

[Install]
WantedBy=default.target
continue with 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 systemd-presets-branding-openSUSE for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package systemd-presets-branding-openSUSE 
for openSUSE:Factory
checked in at Tue Oct 18 14:30:46 CEST 2011.




--- 
openSUSE:Factory/systemd-presets-branding-openSUSE/systemd-presets-branding-openSUSE.changes
2011-10-16 12:59:30.0 +0200
+++ 
/mounts/work_src_done/STABLE/systemd-presets-branding-openSUSE/systemd-presets-branding-openSUSE.changes
2011-10-17 18:02:43.0 +0200
@@ -1,0 +2,5 @@
+Mon Oct 17 15:59:43 UTC 2011 - fcro...@suse.com
+
+- Add sysstat.service (bnc#723858).
+
+---

calling whatdependson for head-i586




Other differences:
--
++ default-openSUSE.preset ++
--- /var/tmp/diff_new_pack.8uiZYw/_old  2011-10-18 14:30:22.0 +0200
+++ /var/tmp/diff_new_pack.8uiZYw/_new  2011-10-18 14:30:22.0 +0200
@@ -4,4 +4,5 @@
 enable avahi-daemon.service
 enable YaST2-Second-Stage.service
 enable YaST2-Firstboot.service
+enable sysstat.service
 disable *

continue with 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 sysvinit for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package sysvinit for openSUSE:Factory
checked in at Tue Oct 18 14:31:03 CEST 2011.




--- openSUSE:Factory/sysvinit/sysvinit.changes  2011-10-11 18:00:01.0 
+0200
+++ /mounts/work_src_done/STABLE/sysvinit/sysvinit.changes  2011-10-18 
11:33:06.0 +0200
@@ -1,0 +2,13 @@
+Tue Oct 18 09:30:36 UTC 2011 - wer...@suse.de
+
+- Add option -x to be able to identify scripts overwriting their
+  command line (bnc#723708) 
+
+---
+Mon Oct 17 09:08:36 UTC 2011 - wer...@suse.de
+
+- There was never a version 1.16 for showconsole 
+- Add some code to be able to detect programs even as user with
+  kernel 3.0 and above (bnc#723072)
+
+---

calling whatdependson for head-i586


Old:

  showconsole-1.16.dif
  showconsole-1.16.tar.gz

New:

  showconsole-1.15.dif
  showconsole-1.15.tar.bz2
  sysvinit-2.88dsf-scripts2.patch



Other differences:
--
++ sysvinit.spec ++
--- /var/tmp/diff_new_pack.sMUCf4/_old  2011-10-18 14:30:59.0 +0200
+++ /var/tmp/diff_new_pack.sMUCf4/_new  2011-10-18 14:30:59.0 +0200
@@ -22,7 +22,7 @@
 %define MGVER  0.9.6s
 %define PDVER  2.0.2
 %define KPVER  2.20
-%define SCVER  1.16
+%define SCVER  1.15
 %define SIVER  2.88+
 %define START  0.57
 License:GPLv2+
@@ -36,7 +36,7 @@
 Source: 
http://download.savannah.gnu.org/releases/sysvinit/sysvinit-%{SIVER}dsf.tar.bz2
 Source2:killproc-%{KPVER}.tar.bz2
 Source3:powerd-%{PDVER}.tar.bz2
-Source4:showconsole-%{SCVER}.tar.gz
+Source4:showconsole-%{SCVER}.tar.bz2
 Source5:startpar-%{START}.tar.bz2
 Source6:rc.powerd
 Source7:%{name}-rpmlintrc
@@ -46,12 +46,13 @@
 Patch:  %{name}-%{version}dsf.dif
 Patch1: %{name}-2.82-startstop.patch
 Patch2: %{name}-2.88dsf-suse.patch
-Patch3: %{name}-2.88dsf-no-kill.patch
+Patch3: %{name}-2.88dsf-scripts2.patch
 Patch4: notify-pam-dead.patch
 Patch5: %{name}-2.88dsf-multiple-sulogin.patch
 Patch6: %{name}-%{version}dsf-run.diff
 Patch7: %{name}-%{version}dsf-crypt.patch
 Patch8: %{name}-%{version}dsf-blowfish.dif
+Patch9: %{name}-2.88dsf-no-kill.patch
 Patch20:powerd-%{PDVER}.dif
 Patch21:powerd-%{PDVER}-getaddrinfo.patch
 Patch30:killproc-%{KPVER}.dif
@@ -96,12 +97,13 @@
 %setup -n %{name}-%{SIVER}dsf -q -b 2 -b 3 -b 4 -b 5
 %patch1  -p0 -b .startstop
 %patch2  -p0 -b .suse
-%patch3  -p0 -b .no-kill
+%patch3  -p0 -b .scripts2
 %patch4  -p0 -b .pam
 %patch5  -p0 -b .sulogin
 %patch6  -p0 -b .run
 %patch7  -p0 -b .crypt
 %patch8  -p0 -b .blowfish
+%patch9  -p0 -b .no-kill
 %patch
 pushd doc
   mkdir killproc powerd showconsole

++ killproc-2.20.dif ++
--- /var/tmp/diff_new_pack.sMUCf4/_old  2011-10-18 14:30:59.0 +0200
+++ /var/tmp/diff_new_pack.sMUCf4/_new  2011-10-18 14:30:59.0 +0200
@@ -1,4 +1,282 @@
 .#nothing
-+++ .#nothing  2011-09-01 11:59:52.0 +
-@@ -0,0 +1 @@
-+Please remove if patched
+--- checkproc.8
 checkproc.82011-10-18 09:29:16.195166916 +
+@@ -17,6 +17,7 @@ Pidofproc \- Checks for a process by exe
+ .HP
+ .B checkproc
+ .RB [ \-vLkNz ]
++.RB [ \-x ]
+ .RB [ \-p\ \fIpid_file\fP ]
+ .RB [ \-i\ \fIingnore_file\fP ]
+ .RB [ \-c\ \fIroot\fP ]
+@@ -30,10 +31,12 @@ Pidofproc \- Checks for a process by exe
+ .B checkproc
+ .B \ \ 
+ .RB [ \-vk ]
++.RB [ \-x ]
+ .I basename_of_executable
+ .HP
+ .B pidofproc
+ .RB [ \-LkNz ]
++.RB [ \-x ]
+ .RB [ \-p\ \fIpid_file\fP ]
+ .RB [ \-i\ \fIingnore_file\fP ]
+ .RB [ \-c\ \fIroot\fP ]
+@@ -47,6 +50,7 @@ Pidofproc \- Checks for a process by exe
+ .B pidofproc
+ .B \ \ 
+ .RB [ \-k ]
++.RB [ \-x ]
+ .I basename_of_executable
+ .SH SYNOPSIS LSB 3.1
+ .HP
+@@ -250,6 +254,15 @@ are in the zombie state.  Without this o
+ handled as not existent because such a process isn't
+ alive but listed in the process table and waits on its
+ parent process.
++.TP
++.B \-x
++Tells
++.B checkproc
++as well as
++.B pidofproc
++to use the upto 15 byte long filename name found in
++.I /proc/pid/stat
++to be able to identify scripts overwriting their command line.
+ .PP
+ .\
+ .SH EXAMPLE
+--- checkproc.c
 checkproc.c2011-10-17 15:41:46.671646382 +
+@@ -60,7 +60,7 @@ int main(int argc, char **argv)
+ posixa = getenv(_POSIX_OPTION_ORDER); unsetenv(_POSIX_OPTION_ORDER);
+ posixb = getenv(POSIXLY_CORRECT); unsetenv(POSIXLY_CORRECT);
+ opterr = 0;
+-while ((c = getopt(argc, argv, c:kp:nNhqvzLi:)) != -1) {
++while ((c = getopt(argc, argv, c:kp:nNhqvzLi:x)) != -1) {
+   switch (c) {
+   case 'c':
+   if (optarg  optarg[0] != '-'  !root) {
+@@ -86,6 +86,9 @@ int main(int argc, char 

commit telepathy-gabble for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package telepathy-gabble for openSUSE:Factory
checked in at Tue Oct 18 14:31:13 CEST 2011.




--- openSUSE:Factory/telepathy-gabble/telepathy-gabble.changes  2011-10-02 
11:16:29.0 +0200
+++ /mounts/work_src_done/STABLE/telepathy-gabble/telepathy-gabble.changes  
2011-10-17 19:56:49.0 +0200
@@ -1,0 +2,24 @@
+Fri Oct 14 15:45:30 CEST 2011 - dims...@opensuse.org
+
+- Update to version 0.13.7:
+  + Enhancements:
+- fdo#32611: Gabble now implements the Room, Subject and
+  RoomConfig interfaces. It no longer implements old-style
+  Telepathy.Properties on text channels.
+- Plugins which implement channel managers may now expose
+  capabilities from them, using the GabbleCapsChannelManager
+  interface; other, less dramatic pieces of API for plugins
+  have also been added.
+  + Fixes:
+- fdo#41388: SASL authentication channels no longer claim that
+  X-TELEPATHY-PASSWORD authentication is supported on servers
+  that don't actually support authenticating with a password
+  (such as the WLM server).
+- Wocky no longer confuses the realm and the server (which are
+  usually, but not always, the same) when performing DIGEST-MD5
+  authentication.
+- We now correctly submit the default configuration form to the
+  MUC we have just created, rather than to the user's own
+  server.
+
+---

calling whatdependson for head-i586


Old:

  telepathy-gabble-0.13.6.tar.gz

New:

  telepathy-gabble-0.13.7.tar.gz



Other differences:
--
++ telepathy-gabble.spec ++
--- /var/tmp/diff_new_pack.JawnuA/_old  2011-10-18 14:31:08.0 +0200
+++ /var/tmp/diff_new_pack.JawnuA/_new  2011-10-18 14:31:08.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   telepathy-gabble
-Version:0.13.6
+Version:0.13.7
 Release:1
 License:LGPLv2.1+
 Summary:XMPP connection manager for Telepathy
@@ -32,7 +32,7 @@
 BuildRequires:  libxslt-devel
 BuildRequires:  python-xml
 BuildRequires:  sqlite3-devel
-BuildRequires:  telepathy-glib-devel
+BuildRequires:  telepathy-glib-devel = 0.15.9
 Recommends: ca-certificates
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ telepathy-gabble-0.13.6.tar.gz - telepathy-gabble-0.13.7.tar.gz ++
 82899 lines of diff (skipped)

continue with 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 tellico for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package tellico for openSUSE:Factory
checked in at Tue Oct 18 14:31:27 CEST 2011.




--- openSUSE:Factory/tellico/tellico.changes2011-10-06 16:46:19.0 
+0200
+++ /mounts/work_src_done/STABLE/tellico/tellico.changes2011-10-16 
13:08:50.0 +0200
@@ -1,0 +2,7 @@
+Sun Oct 16 11:06:34 UTC 2011 - asterios.dra...@gmail.com
+
+- Added a patch boolean_fields_fix.patch (taken from upstream) to fix
+  Boolean fields are always shown with checkmark in list view, no matter the
+  value (bko#283444).
+
+---

calling whatdependson for head-i586


New:

  boolean_fields_fix.patch



Other differences:
--
++ tellico.spec ++
--- /var/tmp/diff_new_pack.OFL7YL/_old  2011-10-18 14:31:17.0 +0200
+++ /var/tmp/diff_new_pack.OFL7YL/_new  2011-10-18 14:31:17.0 +0200
@@ -26,6 +26,8 @@
 Url:http://tellico-project.org/
 Group:  Productivity/Office/Other
 Source0:http://tellico-project.org/files/%{name}-%{version}.tar.bz2
+# PATCH-FIX-UPSTREAM boolean_fields_fix.patch bko#283444 
asterios.dra...@gmail.com -- Fix for Boolean fields are always shown with 
checkmark in list view, no matter the value (taken from upstream)
+Patch0: boolean_fields_fix.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 BuildRequires:  fdupes
@@ -61,6 +63,7 @@
 %lang_package
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %cmake_kde4 -DENABLE_WEBCAM=true -d build

++ boolean_fields_fix.patch ++
--- a/src/models/entrymodel.cpp
+++ b/src/models/entrymodel.cpp
@@ -104,22 +104,23 @@ QVariant EntryModel::data(const QModelIn
   if(!field) {
 return QVariant();
   }
-  if(field-type() == Data::Field::Bool) {
-return m_checkPix;
-  } else if(field-type() == Data::Field::Rating) {
-return GUI::RatingWidget::pixmap(value);
-  }
-
   entry = this-entry(index_);
   if(!entry) {
 return QVariant();
   }
-
-  // we don't need a formatted value for image id
+  // we don't need a formatted value for any pixmaps
   value = entry-field(field);
   if(value.isEmpty()) {
 return QVariant();
   }
+
+  if(field-type() == Data::Field::Bool) {
+// assume any non-empty value equals true
+return m_checkPix;
+  } else if(field-type() == Data::Field::Rating) {
+return GUI::RatingWidget::pixmap(value);
+  }
+
   if(m_imagesAreAvailable  field-type() == Data::Field::Image) {
 const Data::Image img = ImageFactory::imageById(value);
 if(!img.isNull()) {
continue with q...



Remember to have fun...

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



  1   2   >