commit openssl for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package openssl for openSUSE:Factory checked 
in at 2014-04-18 11:07:25

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


Package is openssl

Changes:

--- /work/SRC/openSUSE:Factory/openssl/openssl.changes  2014-04-17 
14:35:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.openssl.new/openssl.changes 2014-04-18 
11:07:27.0 +0200
@@ -1,0 +2,14 @@
+Fri Apr 11 02:40:34 UTC 2014 - crrodrig...@opensuse.org
+
+- openssl-gcc-attributes.patch 
+  * annotate memory allocation wrappers with attribute(alloc_size)
+so the compiler can tell us if it knows they are being misused
+  * OPENSSL_showfatal is annotated with attribute printf to detect
+format string problems.
+
+- It is time to try to disable SSLv2 again, it was tried a while
+  ago but broke too many things, nowadays Debian, Ubuntu, the BSDs
+  all have disabled it, most components are already fixed.
+  I will fix the remaining fallout if any. (email me)
+
+---

New:

  openssl-gcc-attributes.patch



Other differences:
--
++ openssl.spec ++
--- /var/tmp/diff_new_pack.RuN2pa/_old  2014-04-18 11:25:05.0 +0200
+++ /var/tmp/diff_new_pack.RuN2pa/_new  2014-04-18 11:25:05.0 +0200
@@ -64,6 +64,7 @@
 Patch16:openssl-1.0.1e-fips-ec.patch
 Patch17:openssl-1.0.1e-fips-ctor.patch
 Patch18:openssl-1.0.1e-new-fips-reqs.patch
+Patch19:openssl-gcc-attributes.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -169,7 +170,7 @@
 %patch16 -p1
 %patch17 -p1
 %patch18 -p1
-
+%patch19 -p1
 cp -p %{S:10} .
 cp -p %{S:11} .
 echo adding/overwriting some entries in the 'table' hash in Configure
@@ -217,6 +218,9 @@
 #
 config_flags=threads shared no-rc5 no-idea \
 fips \
+%if 0%{suse_version}  1310
+no-ssl2 \
+%endif
 %ifarch x86_64 
 enable-ec_nistp_64_gcc_128 \
 %endif


++ openssl-gcc-attributes.patch ++
--- openssl-1.0.1g.orig/crypto/cryptlib.h
+++ openssl-1.0.1g/crypto/cryptlib.h
@@ -100,7 +100,7 @@ extern C {
 
 void OPENSSL_cpuid_setup(void);
 extern unsigned int OPENSSL_ia32cap_P[];
-void OPENSSL_showfatal(const char *fmta,...);
+void OPENSSL_showfatal(const char *fmta,...) __attribute__ ((format (printf, 
1, 2)));
 void *OPENSSL_stderr(void);
 extern int OPENSSL_NONPIC_relocated;
 
--- openssl-1.0.1g.orig/crypto/crypto.h
+++ openssl-1.0.1g/crypto/crypto.h
@@ -487,15 +487,15 @@ void CRYPTO_get_mem_debug_functions(void
void (**so)(long),
long (**go)(void));
 
-void *CRYPTO_malloc_locked(int num, const char *file, int line);
+void *CRYPTO_malloc_locked(int num, const char *file, int line) 
__attribute__((alloc_size(1)));
 void CRYPTO_free_locked(void *ptr);
-void *CRYPTO_malloc(int num, const char *file, int line);
+void *CRYPTO_malloc(int num, const char *file, int line) 
__attribute__((alloc_size(1)));
 char *CRYPTO_strdup(const char *str, const char *file, int line);
 void CRYPTO_free(void *ptr);
-void *CRYPTO_realloc(void *addr,int num, const char *file, int line);
+void *CRYPTO_realloc(void *addr,int num, const char *file, int line) 
__attribute__((alloc_size(2)));
 void *CRYPTO_realloc_clean(void *addr,int old_num,int num,const char *file,
-  int line);
-void *CRYPTO_remalloc(void *addr,int num, const char *file, int line);
+  int line) __attribute__((alloc_size(2, 3)));
+void *CRYPTO_remalloc(void *addr,int num, const char *file, int line) 
__attribute__((alloc_size(2)));
 
 void OPENSSL_cleanse(void *ptr, size_t len);
 

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



commit kdebase4-openSUSE for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kdebase4-openSUSE for 
openSUSE:Factory checked in at 2014-04-18 11:08:26

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


Package is kdebase4-openSUSE

Changes:

--- /work/SRC/openSUSE:Factory/kdebase4-openSUSE/kdebase4-openSUSE.changes  
2014-03-04 13:27:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdebase4-openSUSE.new/kdebase4-openSUSE.changes 
2014-04-18 11:26:04.0 +0200
@@ -1,0 +2,12 @@
+Thu Apr 17 20:52:57 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Try to apply plasma-change-defaults.diff without offset
+- Bump kdebase4-workspace BuildRequires to 4.11.8, as the above
+  patch would fail with earlier versions
+
+---
+Mon Mar 30 14:18:21 UTC 2014 - tittiatc...@gmail.com
+
+- Remove an unwanted remainder of one of the patch commands
+
+---



Other differences:
--
++ kdebase4-openSUSE.spec ++
--- /var/tmp/diff_new_pack.gVmwdj/_old  2014-04-18 11:31:35.0 +0200
+++ /var/tmp/diff_new_pack.gVmwdj/_new  2014-04-18 11:31:35.0 +0200
@@ -30,7 +30,7 @@
 BuildRequires:  hwinfo-devel
 BuildRequires:  kdebase4-runtime-branding-upstream
 BuildRequires:  kdebase4-workspace-branding-upstream
-BuildRequires:  kdebase4-workspace-devel
+BuildRequires:  kdebase4-workspace-devel = 4.11.8
 BuildRequires:  libkde4-devel
 BuildRequires:  oxygen-icon-theme
 BuildRequires:  rpm-devel

++ plasma-change-defaults.diff ++
--- /var/tmp/diff_new_pack.gVmwdj/_old  2014-04-18 11:31:35.0 +0200
+++ /var/tmp/diff_new_pack.gVmwdj/_new  2014-04-18 11:31:35.0 +0200
@@ -1,9 +1,9 @@
 --- 
./plasma/layout-templates/org.kde.plasma-desktop.defaultPanel/contents/layout.js
   2011-05-20 22:32:08.0 +0200
 +++ 
./plasma/layout-templates/org.kde.plasma-desktop.defaultPanel/contents/layout.js
   2011-10-13 13:12:19.877173319 +0200
-@@ -4,14 +4,17 @@ if (panelIds.length == 1) {
- panel.location = 'bottom'
+@@ -25,14 +25,17 @@ if (freeEdges[bottom] == true) {
+ panel.location = top;
  }
-
+ 
 -panel.height = screenGeometry(panel.screen).height  1024 ? 35 : 27
 -panel.addWidget(launcher)
 +panel.height = screenGeometry(panel.screen).height  899 ? 35 : 27
@@ -18,7 +18,7 @@
 +var clock = panel.addWidget(digital-clock)
 +// avoid akonadi unless akonadi is started
 +clock.writeConfig(displayEvents, false)
-
+ 
  tasks.currentConfigGroup = new Array(Launchers)
  tasks.writeConfig(browser, preferred://browser, , , )
 --- ./plasma-desktop/init/00-defaultLayout.js  2011-05-20 22:32:08.0 
+0200

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



commit scribus for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package scribus for openSUSE:Factory checked 
in at 2014-04-18 11:08:31

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


Package is scribus

Changes:

--- /work/SRC/openSUSE:Factory/scribus/scribus.changes  2013-08-23 
12:01:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.scribus.new/scribus.changes 2014-04-18 
11:31:35.0 +0200
@@ -1,0 +2,5 @@
+Thu Apr 17 19:17:27 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Added python_version.diff: fixes build with cmake 3.0
+
+---

New:

  python_version.diff



Other differences:
--
++ scribus.spec ++
--- /var/tmp/diff_new_pack.Ytn267/_old  2014-04-18 12:15:45.0 +0200
+++ /var/tmp/diff_new_pack.Ytn267/_new  2014-04-18 12:15:45.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package scribus
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) Peter Linnell and 2010 SUSE LINUX Products GmbH, Nuernberg, 
Germany.
 #
 # All modifications and additions to the file contributed by third parties
@@ -30,6 +30,8 @@
 Source3:%{name}-icon64.png
 Source4:%{name}-icon128.png
 Source5:%{name}-icon256.png
+# PATCH-FIX-UPSTREAM python_version.diff -- fix build with cmake 3.0
+Patch0: python_version.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  aspell
 BuildRequires:  aspell-devel
@@ -40,6 +42,7 @@
 BuildRequires:  fdupes
 BuildRequires:  fontconfig-devel
 BuildRequires:  hicolor-icon-theme
+BuildRequires:  hunspell-devel
 BuildRequires:  libQtWebKit-devel
 BuildRequires:  liblcms2-devel
 BuildRequires:  libpodofo-devel
@@ -51,7 +54,6 @@
 BuildRequires:  python-devel
 BuildRequires:  shared-mime-info
 BuildRequires:  update-desktop-files
-BuildRequires:  hunspell-devel
 ##BuildRequires:  libMagick++-devel
 
 %if 0%{?suse_version} 
@@ -94,6 +96,7 @@
 %prep
 
 %setup -q 
+%patch0 -p1
 
 %build
 # Delete non-free colour swatches (bnc#763586)

++ python_version.diff ++
--- scribus-1.4.3.orig/CMakeLists.txt   2013-07-19 00:00:28.0 +0200
+++ scribus-1.4.3/CMakeLists.txt2014-04-17 21:15:40.324549693 +0200
@@ -534,8 +534,7 @@ ENDIF(TIFF_FOUND)
 # JPEG, TIFF
 
 # PYTHON
-SET(PythonLibs_FIND_VERSION 2)
-FIND_PACKAGE(PythonLibs REQUIRED)
+FIND_PACKAGE(PythonLibs 2 REQUIRED)
 IF (PYTHON_LIBRARY)
   MESSAGE(Python Library Found OK)
   SET(HAVE_PYTHON 1)





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



commit kqtquickcharts for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kqtquickcharts for openSUSE:Factory 
checked in at 2014-04-18 11:30:08

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


Package is kqtquickcharts

Changes:

--- /work/SRC/openSUSE:Factory/kqtquickcharts/kqtquickcharts.changes
2014-03-30 12:15:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.kqtquickcharts.new/kqtquickcharts.changes   
2014-04-18 12:25:44.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:22:03 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kqtquickcharts-4.12.97.tar.xz

New:

  kqtquickcharts-4.13.0.tar.xz



Other differences:
--
++ kqtquickcharts.spec ++
--- /var/tmp/diff_new_pack.iAfxvo/_old  2014-04-18 12:25:47.0 +0200
+++ /var/tmp/diff_new_pack.iAfxvo/_new  2014-04-18 12:25:47.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kqtquickcharts
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Plugin to render beautiful and interactive graphs
 License:LGPL-2.1+

++ kqtquickcharts-4.12.97.tar.xz - kqtquickcharts-4.13.0.tar.xz ++

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



commit artikulate for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package artikulate for openSUSE:Factory 
checked in at 2014-04-18 11:30:10

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


Package is artikulate

Changes:

--- /work/SRC/openSUSE:Factory/artikulate/artikulate.changes2014-03-30 
12:09:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.artikulate.new/artikulate.changes   
2014-04-18 12:25:47.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:21:54 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  artikulate-4.12.97.tar.xz

New:

  artikulate-4.13.0.tar.xz



Other differences:
--
++ artikulate.spec ++
--- /var/tmp/diff_new_pack.fqltKC/_old  2014-04-18 12:25:50.0 +0200
+++ /var/tmp/diff_new_pack.fqltKC/_new  2014-04-18 12:25:50.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   artikulate
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Pronunciation Self-Teaching
 License:LGPL-3.0+ and GPL-2.0 and BSD-3-Clause

++ artikulate-4.12.97.tar.xz - artikulate-4.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/artikulate-4.12.97/artikulate.desktop 
new/artikulate-4.13.0/artikulate.desktop
--- old/artikulate-4.12.97/artikulate.desktop   2014-03-24 09:57:50.0 
+0100
+++ new/artikulate-4.13.0/artikulate.desktop2014-04-07 09:51:31.0 
+0200
@@ -17,6 +17,7 @@
 GenericName[fr]=Programme Artikulate d'entraînement à la prononciation 
 GenericName[gl]=Entrenador de pronuncia Artikulate
 GenericName[hu]=Artikulate kiejtés oktató
+GenericName[it]=Allenatore di pronuncia Artikulate
 GenericName[ko]=Artikulate 발음 타이머
 GenericName[mr]=आर्टिक्युलेट उच्चारण प्रशिक्षक
 GenericName[nds]=Artikulate - Utspraak öven
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/artikulate-4.12.97/doc/screen-training-icon-unit.png 
new/artikulate-4.13.0/doc/screen-training-icon-unit.png
--- old/artikulate-4.12.97/doc/screen-training-icon-unit.png2014-03-24 
09:57:50.0 +0100
+++ new/artikulate-4.13.0/doc/screen-training-icon-unit.png 1970-01-01 
01:00:00.0 +0100
@@ -1,347 +0,0 @@
-!DOCTYPE html
-html lang=en dir=ltr class=client-nojs
-head
-titleFile:Currentunit.png - KDE UserBase Wiki/title
-meta charset=UTF-8 /
-meta name=generator content=MediaWiki 1.20.2 /
-link rel=shortcut icon href=/favicon.png /
-link rel=search type=application/opensearchdescription+xml 
href=/opensearch_desc.php title=KDE UserBase Wiki (en) /
-link rel=EditURI type=application/rsd+xml 
href=http://userbase.kde.org/api.php?action=rsd; /
-link rel=copyright href=/KDE_UserBase_Wiki:Copyrights /
-link rel=alternate type=application/atom+xml title=KDE UserBase Wiki 
Atom feed href=/index.php?title=Special:RecentChangesamp;feed=atom /
-link rel=stylesheet 
href=http://userbase.kde.org/load.php?debug=falseamp;lang=enamp;modules=mediawiki.legacy.commonPrint%2Csharedamp;only=stylesamp;skin=neverlandamp;*;
 /
-link rel=stylesheet href=//cdn.kde.org/css/bootstrap.css media=screen /
-link rel=stylesheet href=//cdn.kde.org/css/bootstrap-responsive.css 
media=screen /
-link rel=stylesheet href=//cdn.kde.org/css/bootstrap-mediawiki.css 
media=screen /meta name=ResourceLoaderDynamicStyles content= /
-link rel=stylesheet 
href=http://userbase.kde.org/load.php?debug=falseamp;lang=enamp;modules=siteamp;only=stylesamp;skin=neverlandamp;*;
 /
-stylea:lang(ar),a:lang(ckb),a:lang(fa),a:lang(kk-arab),a:lang(mzn),a:lang(ps),a:lang(ur){text-decoration:none}
-/* cache key: 
iki:resourceloader:filter:minify-css:7:cbe8ed2ddafbc837b4ed7d7cabd7ac39 
*//style
-
-script 
src=http://userbase.kde.org/load.php?debug=falseamp;lang=enamp;modules=startupamp;only=scriptsamp;skin=neverlandamp;*;/script
-scriptif(window.mw){

commit dolphin-plugins for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package dolphin-plugins for openSUSE:Factory 
checked in at 2014-04-18 11:30:12

Comparing /work/SRC/openSUSE:Factory/dolphin-plugins (Old)
 and  /work/SRC/openSUSE:Factory/.dolphin-plugins.new (New)


Package is dolphin-plugins

Changes:

--- /work/SRC/openSUSE:Factory/dolphin-plugins/dolphin-plugins.changes  
2014-03-30 12:11:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.dolphin-plugins.new/dolphin-plugins.changes 
2014-04-18 12:25:51.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:21:45 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  dolphin-plugins-4.12.97.tar.xz

New:

  dolphin-plugins-4.13.0.tar.xz



Other differences:
--
++ dolphin-plugins.spec ++
--- /var/tmp/diff_new_pack.6oXVAO/_old  2014-04-18 12:25:53.0 +0200
+++ /var/tmp/diff_new_pack.6oXVAO/_new  2014-04-18 12:25:53.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   dolphin-plugins
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Version control plugins for Dolphin
 License:GPL-2.0+

++ dolphin-plugins-4.12.97.tar.xz - dolphin-plugins-4.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dolphin-plugins-4.12.97/dropbox/fileviewdropboxplugin.cpp 
new/dolphin-plugins-4.13.0/dropbox/fileviewdropboxplugin.cpp
--- old/dolphin-plugins-4.12.97/dropbox/fileviewdropboxplugin.cpp   
2014-03-24 05:35:07.0 +0100
+++ new/dolphin-plugins-4.13.0/dropbox/fileviewdropboxplugin.cpp
2014-04-03 13:18:18.0 +0200
@@ -44,17 +44,11 @@
 contextFilePaths(),
 controlSocketPath(),
 controlSocket(new QLocalSocket(parent)),
-itemStateSocket(new QLocalSocket),
 databaseFileWatcher(new QFileSystemWatcher(parent)),
 contextActions(new KActionCollection(parent))
 {
 }
 
-~Private()
-{
-delete itemStateSocket;
-}
-
 QStringList contextFilePaths;
 QString controlSocketPath;
 QPointerQLocalSocket controlSocket;
@@ -106,6 +100,8 @@
 
qRegisterMetaTypeQAbstractSocket::SocketError(QAbstractSocket::SocketError);
 
qRegisterMetaTypeQAbstractSocket::SocketState(QAbstractSocket::SocketState);
 
+d-itemStateSocket = new QLocalSocket;
+
 return connectWithDropbox(d-itemStateSocket, LongTimeout);
 }
 
@@ -123,6 +119,7 @@
 
 void FileViewDropboxPlugin::endRetrieval()
 {
+delete d-itemStateSocket;
 }
 
 QListQAction* FileViewDropboxPlugin::actions(const KFileItemList items) 
const
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dolphin-plugins-4.12.97/dropbox/fileviewdropboxplugin.desktop 
new/dolphin-plugins-4.13.0/dropbox/fileviewdropboxplugin.desktop
--- old/dolphin-plugins-4.12.97/dropbox/fileviewdropboxplugin.desktop   
2014-03-24 05:35:07.0 +0100
+++ new/dolphin-plugins-4.13.0/dropbox/fileviewdropboxplugin.desktop
2014-04-03 13:18:18.0 +0200
@@ -18,6 +18,7 @@
 Name[pl]=Dropbox
 Name[pt]=Dropbox
 Name[pt_BR]=Dropbox
+Name[ro]=Dropbox
 Name[ru]=Dropbox
 Name[sk]=Dropbox
 Name[sl]=Dropbox

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



commit python3-pytest for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package python3-pytest for openSUSE:Factory 
checked in at 2014-04-18 11:09:12

Comparing /work/SRC/openSUSE:Factory/python3-pytest (Old)
 and  /work/SRC/openSUSE:Factory/.python3-pytest.new (New)


Package is python3-pytest

Changes:

--- /work/SRC/openSUSE:Factory/python3-pytest/python3-pytest.changes
2014-01-07 16:47:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-pytest.new/python3-pytest.changes   
2014-04-18 12:25:35.0 +0200
@@ -1,0 +2,21 @@
+Thu Apr 17 12:11:48 UTC 2014 - toddrme2...@gmail.com
+
+- Update to 2.5.2: 
+  - fix issue409 -- better interoperate with cx_freeze by not
+trying to import from collections.abc which causes problems 
+for py27/cx_freeze.  Thanks Wolfgang L. for reporting and tracking it down.
+  - fixed docs and code to use pytest instead of py.test almost everywhere.
+Thanks Jurko Gospodnetic for the complete PR.  
+  - fix issue425: mention at end of py.test -h that --markers
+and --fixtures work according to specified test path (or current dir)
+  - fix issue413: exceptions with unicode attributes are now printed
+correctly also on python2 and with pytest-xdist runs. (the fix
+requires py-1.4.20)
+  - copy, cleanup and integrate py.io capture
+from pylib 1.4.20.dev2 (rev 13d9af95547e)
+  - address issue416: clarify docs as to conftest.py loading semantics
+  - fix issue429: comparing byte strings with non-ascii chars in assert
+expressions now work better.  Thanks Floris Bruynooghe.
+  - make capfd/capsys.capture private, its unused and shouldnt be exposed
+
+---

Old:

  pytest-2.5.1.tar.gz

New:

  pytest-2.5.2.tar.gz



Other differences:
--
++ python3-pytest.spec ++
--- /var/tmp/diff_new_pack.ph9H63/_old  2014-04-18 12:25:37.0 +0200
+++ /var/tmp/diff_new_pack.ph9H63/_new  2014-04-18 12:25:37.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-pytest
-Version:2.5.1
+Version:2.5.2
 Release:0
 Summary:Simple powerful testing with Python
 License:MIT

++ pytest-2.5.1.tar.gz - pytest-2.5.2.tar.gz ++
 6854 lines of diff (skipped)

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



commit openstack-quickstart for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package openstack-quickstart for 
openSUSE:Factory checked in at 2014-04-18 11:08:46

Comparing /work/SRC/openSUSE:Factory/openstack-quickstart (Old)
 and  /work/SRC/openSUSE:Factory/.openstack-quickstart.new (New)


Package is openstack-quickstart

Changes:

--- 
/work/SRC/openSUSE:Factory/openstack-quickstart/openstack-quickstart.changes
2014-04-14 20:38:17.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.openstack-quickstart.new/openstack-quickstart.changes
   2014-04-18 12:25:25.0 +0200
@@ -1,0 +2,20 @@
+Wed Apr 16 23:50:55 UTC 2014 -  cloud-de...@suse.de
+
+- Update to version 2013.2+git.1397635681.d4c5efd:
+  + Fix defaults to match upstream more closely
+  + Reduce memory pressure a bit
+
+---
+Mon Apr 14 09:20:25 UTC 2014 - dmuel...@suse.com
+
+- Update to version 2013.2+git.1397467158.cff5036:
+  + Fix FwaaS instantiation
+
+---
+Tue Apr  8 00:08:09 UTC 2014 -  cloud-de...@suse.de
+
+- Update to version 2013.2+git.1396864561.397b081:
+  + Configure FWaaS plugin
+  + Set up communication with Nova
+
+---

Old:

  openstack-quickstart-2013.2+git.1395248710.2704f7d.tar.gz

New:

  openstack-quickstart-2013.2+git.1397635681.d4c5efd.tar.gz



Other differences:
--
++ openstack-quickstart.spec ++
--- /var/tmp/diff_new_pack.awbRGX/_old  2014-04-18 12:25:31.0 +0200
+++ /var/tmp/diff_new_pack.awbRGX/_new  2014-04-18 12:25:31.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   openstack-quickstart
-Version:2013.2+git.1395248710.2704f7d
+Version:2013.2+git.1397635681.d4c5efd
 Release:0
 Summary:OpenStack Quickstart
 License:MIT

++ _service ++
--- /var/tmp/diff_new_pack.awbRGX/_old  2014-04-18 12:25:31.0 +0200
+++ /var/tmp/diff_new_pack.awbRGX/_new  2014-04-18 12:25:31.0 +0200
@@ -4,7 +4,7 @@
 param name=scmgit/param
 param name=exclude.git/param
 param name=versionformat@PARENT_TAG@+git.%ct.%h/param
-param name=revisionmaster/param
+param name=revisionstable/icehouse/param
 param name=changesgenerateenable/param
   /service
   service mode=disabled name=recompress

++ _servicedata ++
--- /var/tmp/diff_new_pack.awbRGX/_old  2014-04-18 12:25:31.0 +0200
+++ /var/tmp/diff_new_pack.awbRGX/_new  2014-04-18 12:25:31.0 +0200
@@ -1,7 +1,7 @@
 servicedata
   service name=tar_scm
 param 
name=urlgit://github.com/SUSE-Cloud/openstack-quickstart.git/param
-param name=changesrevision2704f7d139/param
+param name=changesrevisiond4c5efddf8/param
   /service
   service name=tar_scm
 param name=urlgit://github.com/openstack-dev/devstack.git/param

++ openstack-quickstart-2013.2+git.1395248710.2704f7d.tar.gz - 
openstack-quickstart-2013.2+git.1397635681.d4c5efd.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openstack-quickstart-2013.2+git.1395248710.2704f7d/scripts/openstack-quickstart-demosetup
 
new/openstack-quickstart-2013.2+git.1397635681.d4c5efd/scripts/openstack-quickstart-demosetup
--- 
old/openstack-quickstart-2013.2+git.1395248710.2704f7d/scripts/openstack-quickstart-demosetup
   2014-03-20 02:42:40.0 +0100
+++ 
new/openstack-quickstart-2013.2+git.1397635681.d4c5efd/scripts/openstack-quickstart-demosetup
   2014-04-17 01:50:54.0 +0200
@@ -357,6 +357,11 @@
 crudini --set /etc/nova/nova.conf DEFAULT allow_resize_to_same_host True
 crudini --set /etc/nova/nova.conf DEFAULT default_floating_pool ext
 crudini --set /etc/nova/nova.conf DEFAULT my_ip $IP
+crudini --set /etc/nova/nova.conf DEFAULT osapi_compute_workers 1
+crudini --set /etc/nova/nova.conf DEFAULT ec2_workers 1
+crudini --set /etc/nova/nova.conf DEFAULT metadata_workers 1
+crudini --set /etc/nova/nova.conf conductor workers 1
+
 metadata_secret=$(uuidgen)
 crudini --set /etc/nova/nova.conf DEFAULT neutron_metadata_proxy_shared_secret 
$metadata_secret
 
@@ -415,7 +420,17 @@
 ## setup neutron configuration
 #-
 
-crudini --set /etc/neutron/neutron.conf database connection 
$DB://neutron:$mpw@$IP/neutron
+SERVICE_TENANT_ID=`get_service_tenant_id`
+c=/etc/neutron/neutron.conf
+crudini --set $c database connection $DB://neutron:$mpw@$IP/neutron
+crudini --set $c DEFAULT allow_overlapping_ips true
+crudini --set $c DEFAULT notify_nova_on_port_status_change true
+crudini --set $c DEFAULT notify_nova_on_port_data_changes true
+crudini --set $c DEFAULT nova_url http://$SERVICE_HOST:8774/v2;

commit ktux for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package ktux for openSUSE:Factory checked in 
at 2014-04-18 11:30:13

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


Package is ktux

Changes:

--- /work/SRC/openSUSE:Factory/ktux/ktux.changes2014-03-30 
12:15:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktux.new/ktux.changes   2014-04-18 
12:25:53.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:21:40 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  ktux-4.12.97.tar.xz

New:

  ktux-4.13.0.tar.xz



Other differences:
--
++ ktux.spec ++
--- /var/tmp/diff_new_pack.eFo25d/_old  2014-04-18 12:25:57.0 +0200
+++ /var/tmp/diff_new_pack.eFo25d/_new  2014-04-18 12:25:57.0 +0200
@@ -22,7 +22,7 @@
 License:GPL-2.0+
 Group:  Amusements/Toys/Screensavers
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ ktux-4.12.97.tar.xz - ktux-4.13.0.tar.xz ++

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



commit luajit for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package luajit for openSUSE:Factory checked 
in at 2014-04-18 11:08:38

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


Package is luajit

Changes:

--- /work/SRC/openSUSE:Factory/luajit/luajit.changes2013-11-19 
16:28:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.luajit.new/luajit.changes   2014-04-18 
12:15:45.0 +0200
@@ -1,0 +2,6 @@
+Thu Apr 17 12:57:05 UTC 2014 - si...@simotek.net
+
+- %make_install replaced with make DESTDIR=%{buildroot} install
+  to fix fedora builds
+
+---



Other differences:
--
++ luajit.spec ++
--- /var/tmp/diff_new_pack.Ygcq9b/_old  2014-04-18 12:25:25.0 +0200
+++ /var/tmp/diff_new_pack.Ygcq9b/_new  2014-04-18 12:25:25.0 +0200
@@ -64,7 +64,7 @@
TARGET_AR=ar rcus
 
 %install
-%makeinstall \
+make DESTDIR=%{buildroot} install \
INSTALL_LIB=%{buildroot}/%{_libdir} \
DYNAMIC_CC=cc -fPIC \
LDCONFIG=true \

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



commit amor for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package amor for openSUSE:Factory checked in 
at 2014-04-18 11:30:18

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


Package is amor

Changes:

--- /work/SRC/openSUSE:Factory/amor/amor.changes2014-03-30 
12:08:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.amor.new/amor.changes   2014-04-18 
12:26:00.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:21:28 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  amor-4.12.97.tar.xz

New:

  amor-4.13.0.tar.xz



Other differences:
--
++ amor.spec ++
--- /var/tmp/diff_new_pack.dsW1h7/_old  2014-04-18 12:26:03.0 +0200
+++ /var/tmp/diff_new_pack.dsW1h7/_new  2014-04-18 12:26:03.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   amor
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:On-Screen Creature
 License:GPL-2.0+

++ amor-4.12.97.tar.xz - amor-4.13.0.tar.xz ++

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



commit openstack-nova for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package openstack-nova for openSUSE:Factory 
checked in at 2014-04-18 11:09:01

Comparing /work/SRC/openSUSE:Factory/openstack-nova (Old)
 and  /work/SRC/openSUSE:Factory/.openstack-nova.new (New)


Package is openstack-nova

Changes:

--- /work/SRC/openSUSE:Factory/openstack-nova/openstack-nova.changes
2014-04-14 10:56:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.openstack-nova.new/openstack-nova.changes   
2014-04-18 12:25:32.0 +0200
@@ -1,0 +2,40 @@
+Thu Apr 17 12:54:30 UTC 2014 - dmuel...@suse.com
+
+- update to 2014.1:
+  * no change
+
+---
+Wed Apr 16 09:39:10 UTC 2014 - dmuel...@suse.com
+
+- add debug-iscsi-attach-failure.diff 
+
+---
+Tue Apr 15 13:53:30 UTC 2014 - dmuel...@suse.com
+
+- add 0001-Robust-detection-for-postgresql-connection-errors.patch (bnc#872361)
+
+---
+Mon Apr 14 08:59:52 UTC 2014 - dmuel...@suse.com
+
+- update to 2014.1.rc2:
+  * Add RBAC policy for ec2 API security groups calls
+  * Fix straggling uses of direct-to-database queries in nova-network
+  * Update docs to reflect new default filters
+  * Fix anti-affinity server-group boot failure
+  * Enable ServerGroup scheduler filters by default
+  * Fix Jenkins translation jobs
+  * Require admin context for interfaces on ext network
+  * VMware: Fixes the instance resize problem
+  * mark vif_driver as deprecated and log warning
+  * Ensure network interfaces are in requested order
+  * Note that XML support *may* be removed
+  * libvirt: pause mode is not supported by all drivers
+  * Revert object-assuming changes to _post_live_migration()
+
+---
+Thu Apr 10 08:43:15 UTC 2014 - dmuel...@suse.com
+
+- add init scripts for nova-api-metadata, nova-api-ec2,
+  nova-api-os-compute
+
+---

Old:

  nova-2014.1.rc1.tar.gz

New:

  0001-Robust-detection-for-postgresql-connection-errors.patch
  debug-iscsi-attach-failure.diff
  nova-2014.1.tar.gz



Other differences:
--
++ openstack-nova-doc.spec ++
--- /var/tmp/diff_new_pack.QQDBun/_old  2014-04-18 12:25:35.0 +0200
+++ /var/tmp/diff_new_pack.QQDBun/_new  2014-04-18 12:25:35.0 +0200
@@ -19,7 +19,7 @@
 %define component nova
 
 Name:   openstack-%{component}-doc
-Version:2014.1.rc1
+Version:2014.1
 Release:0
 Summary:OpenStack Compute (Nova) - Documentation
 License:Apache-2.0

++ openstack-nova.spec ++
--- /var/tmp/diff_new_pack.QQDBun/_old  2014-04-18 12:25:35.0 +0200
+++ /var/tmp/diff_new_pack.QQDBun/_new  2014-04-18 12:25:35.0 +0200
@@ -22,7 +22,7 @@
 %define username %{component}
 
 Name:   openstack-%{component}
-Version:2014.1.rc1
+Version:2014.1
 Release:0
 Summary:OpenStack Compute (Nova)
 License:Apache-2.0
@@ -57,6 +57,8 @@
 Patch10:0001-Drop-nova-rpc-zmq-receiver-man-page.patch
 Patch11:0001-libvirt-Make-nwfilter-driver-use-right-filterref.patch
 Patch12:0001-Start-ping-listener-also-for-postgresql.patch
+Patch13:0001-Robust-detection-for-postgresql-connection-errors.patch
+Patch14:debug-iscsi-attach-failure.diff
 BuildRequires:  crudini
 BuildRequires:  fdupes
 BuildRequires:  openstack-suse-macros
@@ -79,7 +81,7 @@
 Requires:   openstack-suse-sudo
 Requires:   python = 2.6.8
 Requires:   python-nova = %{version}
-Requires:   python-oslo.config = 1.2.0
+Requires:   python-oslo.config = 1.2
 #Requires:  vblade-persist
 Requires(post): sysconfig
 %if 0%{?suse_version}  1110
@@ -109,7 +111,7 @@
 Requires:   python-Babel = 1.3
 Requires:   python-Jinja2
 Requires:   python-Paste
-Requires:   python-PasteDeploy = 1.5.0
+Requires:   python-PasteDeploy = 1.5
 Requires:   python-Routes = 1.12.3
 Requires:   python-SQLAlchemy = 0.7.8
 Requires:   python-SQLAlchemy = 0.7.8
@@ -117,21 +119,21 @@
 Requires:   python-amqplib = 0.6.1
 Requires:   python-anyjson = 0.3.3
 Requires:   python-argparse
-Requires:   python-boto = 2.12.0
+Requires:   python-boto = 2.12
 Requires:   python-cinderclient = 1.0.6
-Requires:   python-eventlet = 0.13.0
-Requires:   python-glanceclient = 0.9.0
+Requires:   python-eventlet = 0.13
+Requires:   python-glanceclient = 0.9
 Requires:   python-greenlet = 0.3.2
 Requires:   python-iso8601 = 0.1.9
-Requires:   python-jsonschema = 

commit kteatime for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kteatime for openSUSE:Factory 
checked in at 2014-04-18 11:30:16

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


Package is kteatime

Changes:

--- /work/SRC/openSUSE:Factory/kteatime/kteatime.changes2014-03-30 
12:15:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.kteatime.new/kteatime.changes   2014-04-18 
12:25:57.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:21:34 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kteatime-4.12.97.tar.xz

New:

  kteatime-4.13.0.tar.xz



Other differences:
--
++ kteatime.spec ++
--- /var/tmp/diff_new_pack.CEU16U/_old  2014-04-18 12:26:00.0 +0200
+++ /var/tmp/diff_new_pack.CEU16U/_new  2014-04-18 12:26:00.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Toys/Other
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kteatime-4.12.97.tar.xz - kteatime-4.13.0.tar.xz ++

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



commit kde-dev-utils for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kde-dev-utils for openSUSE:Factory 
checked in at 2014-04-18 11:30:19

Comparing /work/SRC/openSUSE:Factory/kde-dev-utils (Old)
 and  /work/SRC/openSUSE:Factory/.kde-dev-utils.new (New)


Package is kde-dev-utils

Changes:

--- /work/SRC/openSUSE:Factory/kde-dev-utils/kde-dev-utils.changes  
2014-03-30 12:14:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.kde-dev-utils.new/kde-dev-utils.changes 
2014-04-18 12:26:03.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:21:22 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kde-dev-utils-4.12.97.tar.xz

New:

  kde-dev-utils-4.13.0.tar.xz



Other differences:
--
++ kde-dev-utils.spec ++
--- /var/tmp/diff_new_pack.2qaeUk/_old  2014-04-18 12:26:06.0 +0200
+++ /var/tmp/diff_new_pack.2qaeUk/_new  2014-04-18 12:26:06.0 +0200
@@ -22,7 +22,7 @@
 License:GPL-2.0 and GFDL-1.2 and LGPL-2.0
 Group:  System/GUI/KDE
 Url:http://www.kde.org/
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kde-dev-utils-4.12.97.tar.xz - kde-dev-utils-4.13.0.tar.xz ++

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



commit kapptemplate for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kapptemplate for openSUSE:Factory 
checked in at 2014-04-18 11:30:23

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


Package is kapptemplate

Changes:

--- /work/SRC/openSUSE:Factory/kapptemplate/kapptemplate.changes
2014-03-30 12:14:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.kapptemplate.new/kapptemplate.changes   
2014-04-18 12:26:09.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:21:09 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kapptemplate-4.12.97.tar.xz

New:

  kapptemplate-4.13.0.tar.xz



Other differences:
--
++ kapptemplate.spec ++
--- /var/tmp/diff_new_pack.4TlmRV/_old  2014-04-18 12:26:12.0 +0200
+++ /var/tmp/diff_new_pack.4TlmRV/_new  2014-04-18 12:26:12.0 +0200
@@ -22,7 +22,7 @@
 License:GPL-2.0 and GFDL-1.2
 Group:  Development/Tools/IDE
 Url:http://www.kde.org/
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{name}-%{version}.tar.xz
 Patch1: desktop-files.diff

++ kapptemplate-4.12.97.tar.xz - kapptemplate-4.13.0.tar.xz ++

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



commit cervisia for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package cervisia for openSUSE:Factory 
checked in at 2014-04-18 11:30:21

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


Package is cervisia

Changes:

--- /work/SRC/openSUSE:Factory/cervisia/cervisia.changes2014-03-30 
12:09:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.cervisia.new/cervisia.changes   2014-04-18 
12:26:06.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:21:15 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  cervisia-4.12.97.tar.xz

New:

  cervisia-4.13.0.tar.xz



Other differences:
--
++ cervisia.spec ++
--- /var/tmp/diff_new_pack.mA95hg/_old  2014-04-18 12:26:09.0 +0200
+++ /var/tmp/diff_new_pack.mA95hg/_new  2014-04-18 12:26:09.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0 and GFDL-1.2 and LGPL-2.0
 Group:  Development/Tools/Version Control
 Url:http://www.kde.org/
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ cervisia-4.12.97.tar.xz - cervisia-4.13.0.tar.xz ++

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



commit kcachegrind for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kcachegrind for openSUSE:Factory 
checked in at 2014-04-18 11:30:24

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


Package is kcachegrind

Changes:

--- /work/SRC/openSUSE:Factory/kcachegrind/kcachegrind.changes  2014-03-30 
12:14:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.kcachegrind.new/kcachegrind.changes 
2014-04-18 12:26:13.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:21:02 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kcachegrind-4.12.97.tar.xz

New:

  kcachegrind-4.13.0.tar.xz



Other differences:
--
++ kcachegrind.spec ++
--- /var/tmp/diff_new_pack.W0SF7P/_old  2014-04-18 12:26:15.0 +0200
+++ /var/tmp/diff_new_pack.W0SF7P/_new  2014-04-18 12:26:15.0 +0200
@@ -22,7 +22,7 @@
 License:GPL-2.0 and BSD-4-Clause and GFDL-1.2
 Group:  Development/Tools/Other
 Url:http://www.kde.org/
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kcachegrind-4.12.97.tar.xz - kcachegrind-4.13.0.tar.xz ++

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



commit ksystemlog for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package ksystemlog for openSUSE:Factory 
checked in at 2014-04-18 11:30:50

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


Package is ksystemlog

Changes:

--- /work/SRC/openSUSE:Factory/ksystemlog/ksystemlog.changes2014-03-30 
12:06:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.ksystemlog.new/ksystemlog.changes   
2014-04-18 12:26:46.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:19:07 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  ksystemlog-4.12.97.tar.xz

New:

  ksystemlog-4.13.0.tar.xz



Other differences:
--
++ ksystemlog.spec ++
--- /var/tmp/diff_new_pack.ar6lhJ/_old  2014-04-18 12:26:47.0 +0200
+++ /var/tmp/diff_new_pack.ar6lhJ/_new  2014-04-18 12:26:47.0 +0200
@@ -20,7 +20,7 @@
 BuildRequires:  libkde4-devel
 BuildRequires:  oxygen-icon-theme-large
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:System Log Viewer Tool
 License:GPL-2.0

++ ksystemlog-4.12.97.tar.xz - ksystemlog-4.13.0.tar.xz ++

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



commit kdnssd for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kdnssd for openSUSE:Factory checked 
in at 2014-04-18 11:30:47

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


Package is kdnssd

Changes:

--- /work/SRC/openSUSE:Factory/kdnssd/kdnssd.changes2014-03-30 
12:06:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdnssd.new/kdnssd.changes   2014-04-18 
12:26:44.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:19:19 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  zeroconf-ioslave-4.12.97.tar.xz

New:

  zeroconf-ioslave-4.13.0.tar.xz



Other differences:
--
++ kdnssd.spec ++
--- /var/tmp/diff_new_pack.ebBW5D/_old  2014-04-18 12:26:45.0 +0200
+++ /var/tmp/diff_new_pack.ebBW5D/_new  2014-04-18 12:26:45.0 +0200
@@ -20,7 +20,7 @@
 
 Name:   kdnssd
 BuildRequires:  libkde4-devel
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Zeroconf Support for KDE
 License:GPL-2.0+

++ zeroconf-ioslave-4.12.97.tar.xz - zeroconf-ioslave-4.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/zeroconf-ioslave-4.12.97/kdedmodule/dnssdwatcher.desktop 
new/zeroconf-ioslave-4.13.0/kdedmodule/dnssdwatcher.desktop
--- old/zeroconf-ioslave-4.12.97/kdedmodule/dnssdwatcher.desktop
2013-08-16 06:08:11.0 +0200
+++ new/zeroconf-ioslave-4.13.0/kdedmodule/dnssdwatcher.desktop 2014-03-29 
05:56:05.0 +0100
@@ -24,7 +24,7 @@
 Name[km]=ត្រួតពិនិត្យ​មើល​ការ​រកឃើញ​សេវា DNS-SD
 Name[ko]=DNS-SD 서비스 발견 모니터
 Name[lt]=DNS-SD tarnybų aptikimo stebėjimas
-Name[nb]=Overvåker oppdaging av DNS-SD-tjenester
+Name[nb]=DNS-SD tjenesteoppdager
 Name[nds]=DNS-SD-Kieker
 Name[nl]=DNS-SD-diensten zoekbewaking
 Name[pa]=DNS-SD ਸਰਵਿਸ ਡਿਸਕਵਰੀ ਮਾਨੀਟਰ
@@ -71,7 +71,7 @@
 Comment[km]=ត្រួតពិនិត្យ​បណ្ដាញ​សម្រាប់​សេវា DNS-SD
 Comment[ko]=네트워크의 DNS-SD 서비스를 찾습니다
 Comment[lt]=Stebi tinklo DNS-SD tarnybas
-Comment[nb]=Overvåker nettverket etter DNS-SD-tjenester
+Comment[nb]=Overvåler nettverket etter DNS SD-tjenester
 Comment[nds]=Kiekt dat Nettwark na DNS-SD-Deensten dör
 Comment[nl]=Bewaakt het netwerk op DNS-SD-diensten
 Comment[pl]=Monitoruje sieć pod kątem usług DNS-SD

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



commit kompare for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kompare for openSUSE:Factory checked 
in at 2014-04-18 11:30:26

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


Package is kompare

Changes:

--- /work/SRC/openSUSE:Factory/kompare/kompare.changes  2014-03-30 
12:15:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.kompare.new/kompare.changes 2014-04-18 
12:26:16.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:20:56 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kompare-4.12.97.tar.xz

New:

  kompare-4.13.0.tar.xz



Other differences:
--
++ kompare.spec ++
--- /var/tmp/diff_new_pack.gqOxDx/_old  2014-04-18 12:26:19.0 +0200
+++ /var/tmp/diff_new_pack.gqOxDx/_new  2014-04-18 12:26:19.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0 and GFDL-1.2
 Group:  Development/Tools/Other
 Url:http://www.kde.org/
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kompare-4.12.97.tar.xz - kompare-4.13.0.tar.xz ++

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



commit krdc for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package krdc for openSUSE:Factory checked in 
at 2014-04-18 11:30:42

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


Package is krdc

Changes:

--- /work/SRC/openSUSE:Factory/krdc/krdc.changes2014-03-30 
12:06:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.krdc.new/krdc.changes   2014-04-18 
12:26:41.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:19:40 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  krdc-4.12.97.tar.xz

New:

  krdc-4.13.0.tar.xz



Other differences:
--
++ krdc.spec ++
--- /var/tmp/diff_new_pack.dkeEqs/_old  2014-04-18 12:26:42.0 +0200
+++ /var/tmp/diff_new_pack.dkeEqs/_new  2014-04-18 12:26:42.0 +0200
@@ -25,7 +25,7 @@
 BuildRequires:  pkgconfig(TelepathyQt4)
 %endif
 BuildRequires:  oxygen-icon-theme-large
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Remote Desktop Connection
 License:GPL-2.0+

++ krdc-4.12.97.tar.xz - krdc-4.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krdc-4.12.97/core/krdc_plugin.desktop 
new/krdc-4.13.0/core/krdc_plugin.desktop
--- old/krdc-4.12.97/core/krdc_plugin.desktop   2014-02-22 12:31:28.0 
+0100
+++ new/krdc-4.13.0/core/krdc_plugin.desktop2014-03-30 13:03:08.0 
+0200
@@ -38,7 +38,7 @@
 Name[pl]=Wtyczka KRDC
 Name[pt]='Plugin' do KRDC 
 Name[pt_BR]=Plugin KRDC
-Name[ro]=Modul KRDC
+Name[ro]=Extensie KRDC
 Name[ru]=Модуль KRDC
 Name[si]=KRDC ප්ලගිනය
 Name[sk]=Modul KRDC
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/krdc-4.12.97/krdc_approver/krdc_rfb_approver.notifyrc 
new/krdc-4.13.0/krdc_approver/krdc_rfb_approver.notifyrc
--- old/krdc-4.12.97/krdc_approver/krdc_rfb_approver.notifyrc   2014-02-22 
12:31:28.0 +0100
+++ new/krdc-4.13.0/krdc_approver/krdc_rfb_approver.notifyrc2014-03-30 
13:03:08.0 +0200
@@ -151,6 +151,7 @@
 Name[pl]=Przychodząca RFB Tube
 Name[pt]=Ligação de RFB Recebida
 Name[pt_BR]=Ligação de RFB recebida
+Name[ro]=Tub RFB de intrare
 Name[ru]=Входящее подключение RFB
 Name[si]=පැමිණෙන RFB නලය
 Name[sk]=Prichádzajúci RFB kanál
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krdc-4.12.97/mainwindow.cpp 
new/krdc-4.13.0/mainwindow.cpp
--- old/krdc-4.12.97/mainwindow.cpp 2014-02-22 12:31:28.0 +0100
+++ new/krdc-4.13.0/mainwindow.cpp  2014-03-30 13:03:08.0 +0200
@@ -699,7 +699,7 @@
 } else if (selectedAction == renameAction) {
 //TODO: use inline editor if possible
 bool ok = false;
-const QString newTitle = KInputDialog::getText(i18n(Rename %1, 
title), i18n(Rename %1 to, title), , ok, this);
+const QString newTitle = KInputDialog::getText(i18n(Rename %1, 
title), i18n(Rename %1 to, title), title, ok, this);
 if (ok  !newTitle.isEmpty()) {
 BookmarkManager::updateTitle(m_bookmarkManager-getManager(), url, 
newTitle);
 }

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



commit okteta for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package okteta for openSUSE:Factory checked 
in at 2014-04-18 11:30:29

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


Package is okteta

Changes:

--- /work/SRC/openSUSE:Factory/okteta/okteta.changes2014-03-30 
12:07:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.okteta.new/okteta.changes   2014-04-18 
12:26:22.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:20:43 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  okteta-4.12.97.tar.xz

New:

  okteta-4.13.0.tar.xz



Other differences:
--
++ okteta.spec ++
--- /var/tmp/diff_new_pack.A7QHPi/_old  2014-04-18 12:26:25.0 +0200
+++ /var/tmp/diff_new_pack.A7QHPi/_new  2014-04-18 12:26:25.0 +0200
@@ -22,7 +22,7 @@
 License:GPL-2.0 and GFDL-1.2
 Group:  Development/Tools/Other
 Url:http://www.kde.org/
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ okteta-4.12.97.tar.xz - okteta-4.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/okteta-4.12.97/kasten/controllers/view/structures/examples/okteta/structures/test/metadata.desktop
 
new/okteta-4.13.0/kasten/controllers/view/structures/examples/okteta/structures/test/metadata.desktop
--- 
old/okteta-4.12.97/kasten/controllers/view/structures/examples/okteta/structures/test/metadata.desktop
  2014-03-24 20:56:54.0 +0100
+++ 
new/okteta-4.13.0/kasten/controllers/view/structures/examples/okteta/structures/test/metadata.desktop
   2014-04-08 13:35:47.0 +0200
@@ -34,6 +34,7 @@
 Name[pl]=Prosty test
 Name[pt]=Teste simples
 Name[pt_BR]=Teste simples
+Name[ro]=Test simplu
 Name[ru]=Примеры структур данных
 Name[sk]=Jednoduchý test
 Name[sr]=Једноставна проба
@@ -72,6 +73,7 @@
 Comment[pl]=Kilka struktur testowych
 Comment[pt]=Algumas estruturas de teste
 Comment[pt_BR]=Algumas estruturas de testes
+Comment[ro]=Cîteva structuri de test
 Comment[ru]=Несколько примеров структур данных
 Comment[sk]=Niekoľko testovacích štruktúr
 Comment[sr]=Неколико пробних структура
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-4.12.97/mobile/program/okteta-mobile.desktop 
new/okteta-4.13.0/mobile/program/okteta-mobile.desktop
--- old/okteta-4.12.97/mobile/program/okteta-mobile.desktop 2014-03-24 
20:56:54.0 +0100
+++ new/okteta-4.13.0/mobile/program/okteta-mobile.desktop  2014-04-08 
13:35:47.0 +0200
@@ -28,6 +28,7 @@
 Name[pl]=Okteta Mobile
 Name[pt]=Okteta Móvel
 Name[pt_BR]=Okteta Móvel
+Name[ro]=Okteta Mobile
 Name[ru]=Okteta для мобильных устройств
 Name[sk]=Okteta Mobile
 Name[sr]=Октета мобилна
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-4.12.97/program/about.cpp 
new/okteta-4.13.0/program/about.cpp
--- old/okteta-4.12.97/program/about.cpp2014-03-24 20:56:54.0 
+0100
+++ new/okteta-4.13.0/program/about.cpp 2014-04-08 13:35:47.0 +0200
@@ -28,7 +28,7 @@
 
 // Program
 static const char ProgramId[] =  okteta;
-static const char ProgramVersion[] = 0.12.95;
+static const char ProgramVersion[] = 0.13.0;
 static const char ProgramHomepage[] =http://userbase.kde.org/Okteta;;
 // Author
 static const char FWHKEmailAddress[] =   kosse...@kde.org;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-4.12.97/program/okteta.desktop 
new/okteta-4.13.0/program/okteta.desktop
--- old/okteta-4.12.97/program/okteta.desktop   2014-03-24 20:56:54.0 
+0100
+++ new/okteta-4.13.0/program/okteta.desktop2014-04-08 13:35:47.0 
+0200
@@ -29,6 +29,7 @@
 Name[pl]=Okteta
 Name[pt]=Okteta
 Name[pt_BR]=Okteta
+Name[ro]=Okteta
 Name[ru]=Okteta
 Name[sk]=Okteta
 Name[sr]=Октета
@@ -74,6 +75,7 @@
 GenericName[pl]=Edytor szesnastkowy
 GenericName[pt]=Editor Hexadecimal
 GenericName[pt_BR]=Editor hexadecimal
+GenericName[ro]=Redactor hexazecimal
 GenericName[ru]=Шестнадцатеричный редактор
 GenericName[sk]=Hex editor
 GenericName[sr]=Хексадекадни уређивач

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



commit lokalize for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package lokalize for openSUSE:Factory 
checked in at 2014-04-18 11:30:28

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


Package is lokalize

Changes:

--- /work/SRC/openSUSE:Factory/lokalize/lokalize.changes2014-03-30 
12:07:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.lokalize.new/lokalize.changes   2014-04-18 
12:26:19.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:20:49 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  lokalize-4.12.97.tar.xz

New:

  lokalize-4.13.0.tar.xz



Other differences:
--
++ lokalize.spec ++
--- /var/tmp/diff_new_pack.bMbpRe/_old  2014-04-18 12:26:22.0 +0200
+++ /var/tmp/diff_new_pack.bMbpRe/_new  2014-04-18 12:26:22.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Url:http://www.kde.org/
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ lokalize-4.12.97.tar.xz - lokalize-4.13.0.tar.xz ++

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



commit umbrello for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package umbrello for openSUSE:Factory 
checked in at 2014-04-18 11:30:32

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


Package is umbrello

Changes:

--- /work/SRC/openSUSE:Factory/umbrello/umbrello.changes2014-03-30 
12:07:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.umbrello.new/umbrello.changes   2014-04-18 
12:26:28.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:20:29 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  umbrello-4.12.97.tar.xz

New:

  umbrello-4.13.0.tar.xz



Other differences:
--
++ umbrello.spec ++
--- /var/tmp/diff_new_pack.nUGcrg/_old  2014-04-18 12:26:32.0 +0200
+++ /var/tmp/diff_new_pack.nUGcrg/_new  2014-04-18 12:26:32.0 +0200
@@ -24,7 +24,7 @@
 License:GPL-2.0 and GFDL-1.2
 Group:  Development/Tools/Other
 Url:http://www.kde.org/
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ umbrello-4.12.97.tar.xz - umbrello-4.13.0.tar.xz ++
 1855 lines of diff (skipped)

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



commit kdesdk-thumbnailers for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kdesdk-thumbnailers for 
openSUSE:Factory checked in at 2014-04-18 11:30:53

Comparing /work/SRC/openSUSE:Factory/kdesdk-thumbnailers (Old)
 and  /work/SRC/openSUSE:Factory/.kdesdk-thumbnailers.new (New)


Package is kdesdk-thumbnailers

Changes:

--- /work/SRC/openSUSE:Factory/kdesdk-thumbnailers/kdesdk-thumbnailers.changes  
2014-03-30 12:06:29.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdesdk-thumbnailers.new/kdesdk-thumbnailers.changes 
2014-04-18 12:26:48.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:18:55 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kdesdk-thumbnailers-4.12.97.tar.xz

New:

  kdesdk-thumbnailers-4.13.0.tar.xz



Other differences:
--
++ kdesdk-thumbnailers.spec ++
--- /var/tmp/diff_new_pack.WtDF09/_old  2014-04-18 12:26:48.0 +0200
+++ /var/tmp/diff_new_pack.WtDF09/_new  2014-04-18 12:26:48.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdesdk-thumbnailers
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Translation file thumbnail generators
 License:GPL-2.0+

++ kdesdk-thumbnailers-4.12.97.tar.xz - kdesdk-thumbnailers-4.13.0.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdesdk-thumbnailers-4.12.97/po_thumbnailer/pothumbnail.desktop 
new/kdesdk-thumbnailers-4.13.0/po_thumbnailer/pothumbnail.desktop
--- old/kdesdk-thumbnailers-4.12.97/po_thumbnailer/pothumbnail.desktop  
2014-03-17 05:41:17.0 +0100
+++ new/kdesdk-thumbnailers-4.13.0/po_thumbnailer/pothumbnail.desktop   
2014-03-27 05:51:16.0 +0100
@@ -27,6 +27,7 @@
 Name[pl]=Tłumaczenie Gettext
 Name[pt]=Tradução do Gettext
 Name[pt_BR]=Tradução gettext
+Name[ro]=Traducere Gettext
 Name[ru]=Переводы Gettext
 Name[sk]=Preklad Gettext
 Name[sl]=Prevod Gettext

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



commit kdenetwork4-filesharing for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kdenetwork4-filesharing for 
openSUSE:Factory checked in at 2014-04-18 11:30:39

Comparing /work/SRC/openSUSE:Factory/kdenetwork4-filesharing (Old)
 and  /work/SRC/openSUSE:Factory/.kdenetwork4-filesharing.new (New)


Package is kdenetwork4-filesharing

Changes:

--- 
/work/SRC/openSUSE:Factory/kdenetwork4-filesharing/kdenetwork4-filesharing.changes
  2014-03-30 12:06:59.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdenetwork4-filesharing.new/kdenetwork4-filesharing.changes
 2014-04-18 12:26:40.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:19:52 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kdenetwork-filesharing-4.12.97.tar.xz

New:

  kdenetwork-filesharing-4.13.0.tar.xz



Other differences:
--
++ kdenetwork4-filesharing.spec ++
--- /var/tmp/diff_new_pack.z4aoXG/_old  2014-04-18 12:26:40.0 +0200
+++ /var/tmp/diff_new_pack.z4aoXG/_new  2014-04-18 12:26:40.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   kdenetwork4-filesharing
 BuildRequires:  libkde4-devel
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:KDE Network Libraries
 License:GPL-2.0+

++ kdenetwork-filesharing-4.12.97.tar.xz - 
kdenetwork-filesharing-4.13.0.tar.xz ++

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



commit kget for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kget for openSUSE:Factory checked in 
at 2014-04-18 11:30:45

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


Package is kget

Changes:

--- /work/SRC/openSUSE:Factory/kget/kget.changes2014-03-30 
12:06:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.kget.new/kget.changes   2014-04-18 
12:26:43.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:19:25 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kget-4.12.97.tar.xz

New:

  kget-4.13.0.tar.xz



Other differences:
--
++ kget.spec ++
--- /var/tmp/diff_new_pack.YhRfBA/_old  2014-04-18 12:26:44.0 +0200
+++ /var/tmp/diff_new_pack.YhRfBA/_new  2014-04-18 12:26:44.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kget
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Download Manager
 License:GPL-2.0+

++ kget-4.12.97.tar.xz - kget-4.13.0.tar.xz ++

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



commit krfb for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package krfb for openSUSE:Factory checked in 
at 2014-04-18 11:30:41

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


Package is krfb

Changes:

--- /work/SRC/openSUSE:Factory/krfb/krfb.changes2014-03-30 
12:06:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.krfb.new/krfb.changes   2014-04-18 
12:26:40.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:19:46 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  krfb-4.12.97.tar.xz

New:

  krfb-4.13.0.tar.xz



Other differences:
--
++ krfb.spec ++
--- /var/tmp/diff_new_pack.zpsKul/_old  2014-04-18 12:26:41.0 +0200
+++ /var/tmp/diff_new_pack.zpsKul/_new  2014-04-18 12:26:41.0 +0200
@@ -25,7 +25,7 @@
 BuildRequires:  pkgconfig(xdamage)
 BuildRequires:  pkgconfig(xt)
 BuildRequires:  pkgconfig(xtst)
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Desktop Sharing
 License:GPL-2.0+

++ krfb-4.12.97.tar.xz - krfb-4.13.0.tar.xz ++

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



commit kppp for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kppp for openSUSE:Factory checked in 
at 2014-04-18 11:30:43

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


Package is kppp

Changes:

--- /work/SRC/openSUSE:Factory/kppp/kppp.changes2014-03-30 
12:06:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.kppp.new/kppp.changes   2014-04-18 
12:26:42.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:19:33 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kppp-4.12.97.tar.xz

New:

  kppp-4.13.0.tar.xz



Other differences:
--
++ kppp.spec ++
--- /var/tmp/diff_new_pack.fVda8O/_old  2014-04-18 12:26:43.0 +0200
+++ /var/tmp/diff_new_pack.fVda8O/_new  2014-04-18 12:26:43.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   kppp
 BuildRequires:  libkde4-devel
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Internet Dial-Up Tool
 License:GPL-2.0+

++ kppp-4.12.97.tar.xz - kppp-4.13.0.tar.xz ++

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



commit kopete for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kopete for openSUSE:Factory checked 
in at 2014-04-18 11:30:36

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


Package is kopete

Changes:

--- /work/SRC/openSUSE:Factory/kopete/kopete.changes2014-03-30 
12:07:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.kopete.new/kopete.changes   2014-04-18 
12:26:39.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:20:01 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kopete-4.12.97.tar.xz

New:

  kopete-4.13.0.tar.xz



Other differences:
--
++ kopete.spec ++
--- /var/tmp/diff_new_pack.dG0a98/_old  2014-04-18 12:26:40.0 +0200
+++ /var/tmp/diff_new_pack.dG0a98/_new  2014-04-18 12:26:40.0 +0200
@@ -34,7 +34,7 @@
 BuildRequires:  pkgconfig(libotr) = 4.0.0
 BuildRequires:  pkgconfig(libsrtp)
 BuildRequires:  pkgconfig(ortp) = 0.22
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Instant Messenger
 License:GPL-2.0+

++ kopete-4.12.97.tar.xz - kopete-4.13.0.tar.xz ++
/work/SRC/openSUSE:Factory/kopete/kopete-4.12.97.tar.xz 
/work/SRC/openSUSE:Factory/.kopete.new/kopete-4.13.0.tar.xz differ: char 27, 
line 1

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



commit kcron for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kcron for openSUSE:Factory checked 
in at 2014-04-18 11:30:52

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


Package is kcron

Changes:

--- /work/SRC/openSUSE:Factory/kcron/kcron.changes  2014-03-30 
12:06:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.kcron.new/kcron.changes 2014-04-18 
12:26:47.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:19:01 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kcron-4.12.97.tar.xz

New:

  kcron-4.13.0.tar.xz



Other differences:
--
++ kcron.spec ++
--- /var/tmp/diff_new_pack.THW8Q4/_old  2014-04-18 12:26:48.0 +0200
+++ /var/tmp/diff_new_pack.THW8Q4/_new  2014-04-18 12:26:48.0 +0200
@@ -19,7 +19,7 @@
 Name:   kcron
 BuildRequires:  libkde4-devel
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Cron job configuration tool
 License:GPL-2.0+

++ kcron-4.12.97.tar.xz - kcron-4.13.0.tar.xz ++

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



commit kdesdk4-scripts for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kdesdk4-scripts for openSUSE:Factory 
checked in at 2014-04-18 11:30:35

Comparing /work/SRC/openSUSE:Factory/kdesdk4-scripts (Old)
 and  /work/SRC/openSUSE:Factory/.kdesdk4-scripts.new (New)


Package is kdesdk4-scripts

Changes:

--- /work/SRC/openSUSE:Factory/kdesdk4-scripts/kdesdk4-scripts.changes  
2014-03-30 12:07:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdesdk4-scripts.new/kdesdk4-scripts.changes 
2014-04-18 12:26:35.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:20:17 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kde-dev-scripts-4.12.97.tar.xz

New:

  kde-dev-scripts-4.13.0.tar.xz



Other differences:
--
++ kdesdk4-scripts.spec ++
--- /var/tmp/diff_new_pack.uMkSPT/_old  2014-04-18 12:26:38.0 +0200
+++ /var/tmp/diff_new_pack.uMkSPT/_new  2014-04-18 12:26:38.0 +0200
@@ -24,7 +24,7 @@
 License:GPL-2.0 and GFDL-1.2
 Group:  System/GUI/KDE
 Url:http://www.kde.org/
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{rname}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kde-dev-scripts-4.12.97.tar.xz - kde-dev-scripts-4.13.0.tar.xz ++

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



commit kdesdk-strigi-analyzers for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kdesdk-strigi-analyzers for 
openSUSE:Factory checked in at 2014-04-18 11:30:55

Comparing /work/SRC/openSUSE:Factory/kdesdk-strigi-analyzers (Old)
 and  /work/SRC/openSUSE:Factory/.kdesdk-strigi-analyzers.new (New)


Package is kdesdk-strigi-analyzers

Changes:

--- 
/work/SRC/openSUSE:Factory/kdesdk-strigi-analyzers/kdesdk-strigi-analyzers.changes
  2014-03-30 12:06:26.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdesdk-strigi-analyzers.new/kdesdk-strigi-analyzers.changes
 2014-04-18 12:26:49.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:18:50 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kdesdk-strigi-analyzers-4.12.97.tar.xz

New:

  kdesdk-strigi-analyzers-4.13.0.tar.xz



Other differences:
--
++ kdesdk-strigi-analyzers.spec ++
--- /var/tmp/diff_new_pack.OI81zq/_old  2014-04-18 12:26:49.0 +0200
+++ /var/tmp/diff_new_pack.OI81zq/_new  2014-04-18 12:26:49.0 +0200
@@ -23,7 +23,7 @@
 License:LGPL-2.0+ and GPL-2.0
 Group:  Productivity/Other
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kdesdk-strigi-analyzers-4.12.97.tar.xz - 
kdesdk-strigi-analyzers-4.13.0.tar.xz ++

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



commit poxml for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package poxml for openSUSE:Factory checked 
in at 2014-04-18 11:30:31

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


Package is poxml

Changes:

--- /work/SRC/openSUSE:Factory/poxml/poxml.changes  2014-03-30 
12:07:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.poxml.new/poxml.changes 2014-04-18 
12:26:26.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:20:37 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  poxml-4.12.97.tar.xz

New:

  poxml-4.13.0.tar.xz



Other differences:
--
++ poxml.spec ++
--- /var/tmp/diff_new_pack.yez4jR/_old  2014-04-18 12:26:28.0 +0200
+++ /var/tmp/diff_new_pack.yez4jR/_new  2014-04-18 12:26:28.0 +0200
@@ -24,7 +24,7 @@
 License:GPL-2.0 and GFDL-1.2
 Group:  System/GUI/KDE
 Url:http://www.kde.org/
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ poxml-4.12.97.tar.xz - poxml-4.13.0.tar.xz ++

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



commit kdenetwork-strigi-analyzers for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kdenetwork-strigi-analyzers for 
openSUSE:Factory checked in at 2014-04-18 11:30:56

Comparing /work/SRC/openSUSE:Factory/kdenetwork-strigi-analyzers (Old)
 and  /work/SRC/openSUSE:Factory/.kdenetwork-strigi-analyzers.new (New)


Package is kdenetwork-strigi-analyzers

Changes:

--- 
/work/SRC/openSUSE:Factory/kdenetwork-strigi-analyzers/kdenetwork-strigi-analyzers.changes
  2014-03-30 12:06:24.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdenetwork-strigi-analyzers.new/kdenetwork-strigi-analyzers.changes
 2014-04-18 12:26:49.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:18:44 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kdenetwork-strigi-analyzers-4.12.97.tar.xz

New:

  kdenetwork-strigi-analyzers-4.13.0.tar.xz



Other differences:
--
++ kdenetwork-strigi-analyzers.spec ++
--- /var/tmp/diff_new_pack.q9PNlu/_old  2014-04-18 12:26:51.0 +0200
+++ /var/tmp/diff_new_pack.q9PNlu/_new  2014-04-18 12:26:51.0 +0200
@@ -24,7 +24,7 @@
 License:GPL-2.0+
 Group:  Productivity/Networking/Other
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kdenetwork-strigi-analyzers-4.12.97.tar.xz - 
kdenetwork-strigi-analyzers-4.13.0.tar.xz ++

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



commit kdesdk-kioslaves for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kdesdk-kioslaves for 
openSUSE:Factory checked in at 2014-04-18 11:30:34

Comparing /work/SRC/openSUSE:Factory/kdesdk-kioslaves (Old)
 and  /work/SRC/openSUSE:Factory/.kdesdk-kioslaves.new (New)


Package is kdesdk-kioslaves

Changes:

--- /work/SRC/openSUSE:Factory/kdesdk-kioslaves/kdesdk-kioslaves.changes
2014-03-30 12:07:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdesdk-kioslaves.new/kdesdk-kioslaves.changes   
2014-04-18 12:26:33.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:20:23 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kdesdk-kioslaves-4.12.97.tar.xz

New:

  kdesdk-kioslaves-4.13.0.tar.xz



Other differences:
--
++ kdesdk-kioslaves.spec ++
--- /var/tmp/diff_new_pack.eOCYMf/_old  2014-04-18 12:26:35.0 +0200
+++ /var/tmp/diff_new_pack.eOCYMf/_new  2014-04-18 12:26:35.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0 and LGPL-2.0
 Group:  System/GUI/KDE
 Url:http://www.kde.org/
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kdesdk-kioslaves-4.12.97.tar.xz - kdesdk-kioslaves-4.13.0.tar.xz ++

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



commit kde4-print-manager for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kde4-print-manager for 
openSUSE:Factory checked in at 2014-04-18 11:30:58

Comparing /work/SRC/openSUSE:Factory/kde4-print-manager (Old)
 and  /work/SRC/openSUSE:Factory/.kde4-print-manager.new (New)


Package is kde4-print-manager

Changes:

--- /work/SRC/openSUSE:Factory/kde4-print-manager/kde4-print-manager.changes
2014-03-30 12:06:21.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kde4-print-manager.new/kde4-print-manager.changes   
2014-04-18 12:26:51.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:18:38 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  print-manager-4.12.97.tar.xz

New:

  print-manager-4.13.0.tar.xz



Other differences:
--
++ kde4-print-manager.spec ++
--- /var/tmp/diff_new_pack.FWHmAV/_old  2014-04-18 12:28:32.0 +0200
+++ /var/tmp/diff_new_pack.FWHmAV/_new  2014-04-18 12:28:32.0 +0200
@@ -30,7 +30,7 @@
 Summary:A new print manager for KDE 4
 License:GPL-2.0+
 Group:  System/GUI/KDE
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source: print-manager-%{version}.tar.xz
 Obsoletes:  kde4-printer-applet  4.9.80

++ print-manager-4.12.97.tar.xz - print-manager-4.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/print-manager-4.12.97/print-manager-kded/printmanager.notifyrc 
new/print-manager-4.13.0/print-manager-kded/printmanager.notifyrc
--- old/print-manager-4.12.97/print-manager-kded/printmanager.notifyrc  
2014-02-21 05:56:16.0 +0100
+++ new/print-manager-4.13.0/print-manager-kded/printmanager.notifyrc   
2014-04-08 12:37:22.0 +0200
@@ -31,7 +31,7 @@
 Name[pt]=printmanager
 Name[pt_BR]=printmanager
 Name[ro]=printmanager
-Name[ru]=управление печатью
+Name[ru]=Диспетчер печати
 Name[sk]=printmanager
 Name[sl]=printmanager
 Name[sr]=Менаџер штампања
@@ -73,7 +73,7 @@
 Comment[pt]=Notifica quando é detectada uma nova impressora
 Comment[pt_BR]=Avisa quando uma nova impressora for detectada
 Comment[ro]=Notifică la descoperirea unei noi imprimante
-Comment[ru]=Уведомление при обнаружение нового принтера
+Comment[ru]=Уведомления при обнаружении нового принтера
 Comment[sk]=Upozorní, keď sa nájde nová tlačiareň
 Comment[sl]=Obvešča o zaznavi novega tiskalnika
 Comment[sr]=Обавештава када се дода нови штампач
@@ -165,7 +165,7 @@
 Name[pt]=Foi adicionada a impressora nova
 Name[pt_BR]=A nova impressora foi adicionada
 Name[ro]=Noua imprimantă a fost adăugată
-Name[ru]=Новый принтер добавлен
+Name[ru]=Добавлен новый принтер
 Name[sk]=Nová tlačiareň bola pridaná
 Name[sl]=Novi tiskalnik je bil dodan
 Name[sr]=Додат је нови штампач

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



commit palapeli for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package palapeli for openSUSE:Factory 
checked in at 2014-04-18 11:31:03

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


Package is palapeli

Changes:

--- /work/SRC/openSUSE:Factory/palapeli/palapeli.changes2014-03-30 
12:06:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.palapeli.new/palapeli.changes   2014-04-18 
12:28:50.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:18:23 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  palapeli-4.12.97.tar.xz

New:

  palapeli-4.13.0.tar.xz



Other differences:
--
++ palapeli.spec ++
--- /var/tmp/diff_new_pack.LyG49C/_old  2014-04-18 12:29:05.0 +0200
+++ /var/tmp/diff_new_pack.LyG49C/_new  2014-04-18 12:29:05.0 +0200
@@ -21,7 +21,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:palapeli-%{version}.tar.xz
 BuildRequires:  libkdegames-devel

++ palapeli-4.12.97.tar.xz - palapeli-4.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/palapeli-4.12.97/src/engine/constraintinteractor.cpp 
new/palapeli-4.13.0/src/engine/constraintinteractor.cpp
--- old/palapeli-4.12.97/src/engine/constraintinteractor.cpp2014-03-25 
19:50:02.0 +0100
+++ new/palapeli-4.13.0/src/engine/constraintinteractor.cpp 2014-04-06 
09:15:53.0 +0200
@@ -72,7 +72,7 @@
 
 void Palapeli::ConstraintInteractor::continueInteraction(const 
Palapeli::MouseEvent event)
 {
-   //in this method, we need the scene() as Palapeli::Scene for the 
piecesBoundingRect
+   // In this method, we need the scene() to be Palapeli::Scene type.
Palapeli::Scene* scene = qobject_castPalapeli::Scene*(this-scene());
if (!scene)
return;
@@ -87,7 +87,7 @@
sceneRect.setTop(newBounds.y());
else if (m_draggingSides.contains(BottomSide))
sceneRect.setBottom(newBounds.y());
-   scene-setSceneRect(sceneRect | scene-piecesBoundingRect());
+   scene-setSceneRect(sceneRect | scene-extPiecesBoundingRect());
 }
 
 void Palapeli::ConstraintInteractor::stopInteraction(const 
Palapeli::MouseEvent event)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/palapeli-4.12.97/src/engine/constraintvisualizer.cpp 
new/palapeli-4.13.0/src/engine/constraintvisualizer.cpp
--- old/palapeli-4.12.97/src/engine/constraintvisualizer.cpp2014-03-25 
19:50:02.0 +0100
+++ new/palapeli-4.13.0/src/engine/constraintvisualizer.cpp 2014-04-06 
09:15:53.0 +0200
@@ -117,9 +117,7 @@
if (m_sceneRect == sceneRect)
return;
// Make sure the ConstraintVisualizer stays outside the pieces' area.
-   QRectF minimumRect = m_scene-piecesBoundingRect();
-   qreal m = m_scene-margin();
-   minimumRect.adjust(-m, -m, m, m);
+   QRectF minimumRect = m_scene-extPiecesBoundingRect();
m_sceneRect = sceneRect;
if(!sceneRect.contains(minimumRect)) {
// IDW TODO - Works and seems safe,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/palapeli-4.12.97/src/engine/gameplay.cpp 
new/palapeli-4.13.0/src/engine/gameplay.cpp
--- old/palapeli-4.12.97/src/engine/gameplay.cpp2014-03-25 
19:50:02.0 +0100
+++ new/palapeli-4.13.0/src/engine/gameplay.cpp 2014-04-06 09:15:53.0 
+0200
@@ -351,8 +351,7 @@
createHolder(name);
// Merges/moves in new holders add to the progress bar and are saved.
Palapeli::View* view = m_viewList.last();
-   Palapeli::PieceHolder* h = qobject_castPalapeli::PieceHolder*(view);
-   h-initializeZooming();
+   view-setCloseUp(true); // New holders start in close-up scale.
connect(view-scene(), SIGNAL(saveMove(int)),
this, SLOT(positionChanged(int)));
connect(view,
@@ -368,6 +367,7 @@
Palapeli::PieceHolder* h =
new Palapeli::PieceHolder(m_mainWindow, m_pieceAreaSize, name);
m_viewList  h;
+   h-initializeZooming(); // Min. view 2x2 to 6x6 pieces.
connect(h, SIGNAL(selected(PieceHolder*)),
this, SLOT(changeSelectedHolder(PieceHolder*)));
connect (h, SIGNAL(closing(PieceHolder*)),
@@ -466,10 +466,17 @@
bRect |= piece-sceneBareBoundingRect();

commit picmi for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package picmi for openSUSE:Factory checked 
in at 2014-04-18 11:31:01

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


Package is picmi

Changes:

--- /work/SRC/openSUSE:Factory/picmi/picmi.changes  2014-03-30 
12:06:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.picmi.new/picmi.changes 2014-04-18 
12:28:32.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:18:31 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  picmi-4.12.97.tar.xz

New:

  picmi-4.13.0.tar.xz



Other differences:
--
++ picmi.spec ++
--- /var/tmp/diff_new_pack.gy5hEF/_old  2014-04-18 12:28:50.0 +0200
+++ /var/tmp/diff_new_pack.gy5hEF/_new  2014-04-18 12:28:50.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Logic
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:picmi-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ picmi-4.12.97.tar.xz - picmi-4.13.0.tar.xz ++

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



commit lskat for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package lskat for openSUSE:Factory checked 
in at 2014-04-18 11:31:04

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


Package is lskat

Changes:

--- /work/SRC/openSUSE:Factory/lskat/lskat.changes  2014-03-30 
12:06:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.lskat.new/lskat.changes 2014-04-18 
12:29:06.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:18:16 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  lskat-4.12.97.tar.xz

New:

  lskat-4.13.0.tar.xz



Other differences:
--
++ lskat.spec ++
--- /var/tmp/diff_new_pack.FFlAi5/_old  2014-04-18 12:29:17.0 +0200
+++ /var/tmp/diff_new_pack.FFlAi5/_new  2014-04-18 12:29:17.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Card
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:lskat-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ lskat-4.12.97.tar.xz - lskat-4.13.0.tar.xz ++

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



commit libkmahjongg for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package libkmahjongg for openSUSE:Factory 
checked in at 2014-04-18 11:31:06

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


Package is libkmahjongg

Changes:

--- /work/SRC/openSUSE:Factory/libkmahjongg/libkmahjongg.changes
2014-03-30 12:06:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.libkmahjongg.new/libkmahjongg.changes   
2014-04-18 12:29:18.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:18:08 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  libkmahjongg-4.12.97.tar.xz

New:

  libkmahjongg-4.13.0.tar.xz



Other differences:
--
++ libkmahjongg.spec ++
--- /var/tmp/diff_new_pack.2BJWv7/_old  2014-04-18 12:29:29.0 +0200
+++ /var/tmp/diff_new_pack.2BJWv7/_new  2014-04-18 12:29:29.0 +0200
@@ -21,7 +21,7 @@
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:libkmahjongg-%{version}.tar.xz
 BuildRequires:  fdupes

++ libkmahjongg-4.12.97.tar.xz - libkmahjongg-4.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkmahjongg-4.12.97/backgrounds/color_plain.desktop 
new/libkmahjongg-4.13.0/backgrounds/color_plain.desktop
--- old/libkmahjongg-4.12.97/backgrounds/color_plain.desktop2014-03-04 
06:56:52.0 +0100
+++ new/libkmahjongg-4.13.0/backgrounds/color_plain.desktop 2014-04-06 
10:11:35.0 +0200
@@ -35,9 +35,10 @@
 Name[ne]=सादा रङ
 Name[nl]=Vlakke kleur
 Name[nn]=Rein farge
-Name[pl]=Czysty kolor
+Name[pl]=Zwykły kolor
 Name[pt]=Cor Simples
 Name[pt_BR]=Cor simples
+Name[ro]=Culoare simplă
 Name[ru]=Простой
 Name[sk]=Obyčajná farba
 Name[sl]=Preprosta barva
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkmahjongg-4.12.97/backgrounds/default.desktop 
new/libkmahjongg-4.13.0/backgrounds/default.desktop
--- old/libkmahjongg-4.12.97/backgrounds/default.desktop2014-03-04 
06:56:52.0 +0100
+++ new/libkmahjongg-4.13.0/backgrounds/default.desktop 2014-04-06 
10:11:35.0 +0200
@@ -27,7 +27,7 @@
 Name[nds]=Ägyptsch
 Name[nl]=Egyptenaar
 Name[nn]=Egyptisk
-Name[pl]=Egipski
+Name[pl]=Egipskie
 Name[pt]=Egípcio
 Name[pt_BR]=Egípcio
 Name[ro]=Egiptean
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkmahjongg-4.12.97/backgrounds/wood_light.desktop 
new/libkmahjongg-4.13.0/backgrounds/wood_light.desktop
--- old/libkmahjongg-4.12.97/backgrounds/wood_light.desktop 2014-03-04 
06:56:52.0 +0100
+++ new/libkmahjongg-4.13.0/backgrounds/wood_light.desktop  2014-04-06 
10:11:35.0 +0200
@@ -84,6 +84,7 @@
 Description[pl]=Przypomina powierzchnię drewnianego stołu
 Description[pt]=Dá uma aparência de mesa de madeira
 Description[pt_BR]=Lembra a superfície de uma mesa de madeira
+Description[ro]=Amintește de suprafața unei mese de lemn
 Description[ru]=Поверхность деревянного стола
 Description[sk]=Pripomína povrch dreveného stola
 Description[sl]=Spominja na površino lesene mize
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkmahjongg-4.12.97/tilesets/alphabet.desktop 
new/libkmahjongg-4.13.0/tilesets/alphabet.desktop
--- old/libkmahjongg-4.12.97/tilesets/alphabet.desktop  2014-03-04 
06:56:52.0 +0100
+++ new/libkmahjongg-4.13.0/tilesets/alphabet.desktop   2014-04-06 
10:11:35.0 +0200
@@ -83,7 +83,7 @@
 Description[nds]=En Steensett för Kinners vun elk Öller mit vele Klören
 Description[nl]=Een kleurrijke stenenset ontworpen voor kinderen van alle 
leeftijden.
 Description[nn]=Fargerikt brikkesett for barn i alle aldrar.
-Description[pl]=Kolorowy zestaw kafli dla dzieci w każdym wieku.
+Description[pl]=Kolorowy zestaw kamieni dla dzieci w każdym wieku.
 Description[pt]=Um conjunto de peças colorido desenhado para crianças de todas 
as idades.
 Description[pt_BR]=Um conjunto de peças colorido criado para crianças de todas 
as idades.
 Description[ru]=Цветной набор плиток для детей всех возрастов
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkmahjongg-4.12.97/tilesets/classic.desktop 
new/libkmahjongg-4.13.0/tilesets/classic.desktop
--- old/libkmahjongg-4.12.97/tilesets/classic.desktop   2014-03-04 
06:56:52.0 +0100
+++ new/libkmahjongg-4.13.0/tilesets/classic.desktop2014-04-06 

commit kubrick for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kubrick for openSUSE:Factory checked 
in at 2014-04-18 11:31:09

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


Package is kubrick

Changes:

--- /work/SRC/openSUSE:Factory/kubrick/kubrick.changes  2014-03-30 
12:05:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.kubrick.new/kubrick.changes 2014-04-18 
12:29:45.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:17:45 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kubrick-4.12.97.tar.xz

New:

  kubrick-4.13.0.tar.xz



Other differences:
--
++ kubrick.spec ++
--- /var/tmp/diff_new_pack.hefDCc/_old  2014-04-18 12:29:57.0 +0200
+++ /var/tmp/diff_new_pack.hefDCc/_new  2014-04-18 12:29:57.0 +0200
@@ -24,7 +24,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Logic
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kubrick-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kubrick-4.12.97.tar.xz - kubrick-4.13.0.tar.xz ++

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



commit libkdegames for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package libkdegames for openSUSE:Factory 
checked in at 2014-04-18 11:31:07

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


Package is libkdegames

Changes:

--- /work/SRC/openSUSE:Factory/libkdegames/libkdegames.changes  2014-03-30 
12:05:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.libkdegames.new/libkdegames.changes 
2014-04-18 12:29:31.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:17:53 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  libkdegames-4.12.97.tar.xz

New:

  libkdegames-4.13.0.tar.xz



Other differences:
--
++ libkdegames.spec ++
--- /var/tmp/diff_new_pack.JEhwcr/_old  2014-04-18 12:29:43.0 +0200
+++ /var/tmp/diff_new_pack.JEhwcr/_new  2014-04-18 12:29:43.0 +0200
@@ -21,7 +21,7 @@
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:libkdegames-%{version}.tar.xz
 Patch1: libkdegames-bnc793185.patch

++ libkdegames-4.12.97.tar.xz - libkdegames-4.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkdegames-4.12.97/carddecks/svg-ancient-egyptians/index.desktop 
new/libkdegames-4.13.0/carddecks/svg-ancient-egyptians/index.desktop
--- old/libkdegames-4.12.97/carddecks/svg-ancient-egyptians/index.desktop   
2014-03-24 05:32:58.0 +0100
+++ new/libkdegames-4.13.0/carddecks/svg-ancient-egyptians/index.desktop
2014-03-27 05:49:48.0 +0100
@@ -30,6 +30,7 @@
 Name[pl]=Starożytny Egipt
 Name[pt]=Antigo Egipto
 Name[pt_BR]=Antigo Egito
+Name[ro]=Egipteni antici
 Name[ru]=Древние Египтяне
 Name[sk]=Staroveký Egypt
 Name[sl]=Starodavni Egipt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkdegames-4.12.97/carddecks/svg-gm-paris/index.desktop 
new/libkdegames-4.13.0/carddecks/svg-gm-paris/index.desktop
--- old/libkdegames-4.12.97/carddecks/svg-gm-paris/index.desktop
2014-03-24 05:32:58.0 +0100
+++ new/libkdegames-4.13.0/carddecks/svg-gm-paris/index.desktop 2014-03-27 
05:49:48.0 +0100
@@ -31,6 +31,7 @@
 Name[pl]=Paryż
 Name[pt]=Paris
 Name[pt_BR]=Paris
+Name[ro]=Paris
 Name[ru]=Париж
 Name[sk]=Paríž
 Name[sl]=Pariz
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkdegames-4.12.97/carddecks/svg-jolly-royal/index.desktop 
new/libkdegames-4.13.0/carddecks/svg-jolly-royal/index.desktop
--- old/libkdegames-4.12.97/carddecks/svg-jolly-royal/index.desktop 
2014-03-24 05:32:58.0 +0100
+++ new/libkdegames-4.13.0/carddecks/svg-jolly-royal/index.desktop  
2014-03-27 05:49:48.0 +0100
@@ -28,6 +28,7 @@
 Name[pl]=Królewski
 Name[pt]=Real Alegre
 Name[pt_BR]=Real alegre
+Name[ro]=Jolly Royal
 Name[ru]=Королевский солдат
 Name[sk]=Kráľovský
 Name[sl]=Jolly Royal
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkdegames-4.12.97/carddecks/svg-nicu-ornamental/index.desktop 
new/libkdegames-4.13.0/carddecks/svg-nicu-ornamental/index.desktop
--- old/libkdegames-4.12.97/carddecks/svg-nicu-ornamental/index.desktop 
2014-03-24 05:32:58.0 +0100
+++ new/libkdegames-4.13.0/carddecks/svg-nicu-ornamental/index.desktop  
2014-03-27 05:49:48.0 +0100
@@ -28,6 +28,7 @@
 Name[pl]=Nicu z ornamentami
 Name[pt]=Nicu Ornamental
 Name[pt_BR]=Nicu ornamental
+Name[ro]=Nicu ornamental
 Name[ru]=Детский декоративный
 Name[sk]=Nicu s ornamentami
 Name[sl]=Okrasni Nicu
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkdegames-4.12.97/carddecks/svg-nicu-white/index.desktop 
new/libkdegames-4.13.0/carddecks/svg-nicu-white/index.desktop
--- old/libkdegames-4.12.97/carddecks/svg-nicu-white/index.desktop  
2014-03-24 05:32:58.0 +0100
+++ new/libkdegames-4.13.0/carddecks/svg-nicu-white/index.desktop   
2014-03-27 05:49:48.0 +0100
@@ -26,6 +26,7 @@
 Name[pl]=Białe Nicu
 Name[pt]=Nicu Branco
 Name[pt_BR]=Nicu branco
+Name[ro]=Nicu alb
 Name[ru]=Nicu White
 Name[sk]=Nicu biela
 Name[sl]=Nicu bela
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkdegames-4.12.97/carddecks/svg-oxygen-air/index.desktop 
new/libkdegames-4.13.0/carddecks/svg-oxygen-air/index.desktop
--- old/libkdegames-4.12.97/carddecks/svg-oxygen-air/index.desktop  
2014-03-24 

commit ktuberling for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package ktuberling for openSUSE:Factory 
checked in at 2014-04-18 11:31:11

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


Package is ktuberling

Changes:

--- /work/SRC/openSUSE:Factory/ktuberling/ktuberling.changes2014-03-30 
12:05:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktuberling.new/ktuberling.changes   
2014-04-18 12:29:57.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:17:35 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  ktuberling-4.12.97.tar.xz

New:

  ktuberling-4.13.0.tar.xz



Other differences:
--
++ ktuberling.spec ++
--- /var/tmp/diff_new_pack.mp36O0/_old  2014-04-18 12:30:19.0 +0200
+++ /var/tmp/diff_new_pack.mp36O0/_new  2014-04-18 12:30:19.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Toys/Other
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:ktuberling-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ ktuberling-4.12.97.tar.xz - ktuberling-4.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktuberling-4.12.97/pics/butterflies.desktop 
new/ktuberling-4.13.0/pics/butterflies.desktop
--- old/ktuberling-4.12.97/pics/butterflies.desktop 2014-03-04 
06:56:35.0 +0100
+++ new/ktuberling-4.13.0/pics/butterflies.desktop  2014-03-27 
05:49:44.0 +0100
@@ -28,6 +28,7 @@
 Name[pl]=Motyle
 Name[pt]=Borboletas
 Name[pt_BR]=Borboletas
+Name[ro]=Fluturi
 Name[ru]=Бабочки
 Name[sk]=Motýle
 Name[sl]=Metuljčki
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktuberling-4.12.97/pics/robot_workshop.desktop 
new/ktuberling-4.13.0/pics/robot_workshop.desktop
--- old/ktuberling-4.12.97/pics/robot_workshop.desktop  2014-03-04 
06:56:35.0 +0100
+++ new/ktuberling-4.13.0/pics/robot_workshop.desktop   2014-03-27 
05:49:44.0 +0100
@@ -27,6 +27,7 @@
 Name[pl]=Warsztat robota
 Name[pt]=Feira de robots
 Name[pt_BR]=Feira de robôs
+Name[ro]=Atelierul de roboți
 Name[ru]=Цех роботов
 Name[sk]=Fabrika na roboty
 Name[sl]=Robotska delavnica

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



commit kspaceduel for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kspaceduel for openSUSE:Factory 
checked in at 2014-04-18 11:31:17

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


Package is kspaceduel

Changes:

--- /work/SRC/openSUSE:Factory/kspaceduel/kspaceduel.changes2014-03-30 
12:05:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.kspaceduel.new/kspaceduel.changes   
2014-04-18 12:30:46.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:17:13 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kspaceduel-4.12.97.tar.xz

New:

  kspaceduel-4.13.0.tar.xz



Other differences:
--
++ kspaceduel.spec ++
--- /var/tmp/diff_new_pack.0TVugY/_old  2014-04-18 12:30:53.0 +0200
+++ /var/tmp/diff_new_pack.0TVugY/_new  2014-04-18 12:30:53.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Action/Arcade
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kspaceduel-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kspaceduel-4.12.97.tar.xz - kspaceduel-4.13.0.tar.xz ++

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



commit ksudoku for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package ksudoku for openSUSE:Factory checked 
in at 2014-04-18 11:31:14

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


Package is ksudoku

Changes:

--- /work/SRC/openSUSE:Factory/ksudoku/ksudoku.changes  2014-03-30 
12:05:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.ksudoku.new/ksudoku.changes 2014-04-18 
12:30:20.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:17:26 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  ksudoku-4.12.97.tar.xz

New:

  ksudoku-4.13.0.tar.xz



Other differences:
--
++ ksudoku.spec ++
--- /var/tmp/diff_new_pack.Yviitm/_old  2014-04-18 12:30:34.0 +0200
+++ /var/tmp/diff_new_pack.Yviitm/_new  2014-04-18 12:30:34.0 +0200
@@ -24,7 +24,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:ksudoku-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ ksudoku-4.12.97.tar.xz - ksudoku-4.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksudoku-4.12.97/src/shapes/4x4.desktop 
new/ksudoku-4.13.0/src/shapes/4x4.desktop
--- old/ksudoku-4.12.97/src/shapes/4x4.desktop  2014-03-24 05:32:54.0 
+0100
+++ new/ksudoku-4.13.0/src/shapes/4x4.desktop   2014-03-27 05:49:39.0 
+0100
@@ -94,6 +94,7 @@
 Description[pl]=Układanka 4x4
 Description[pt]='Puzzle' no formato 4x4
 Description[pt_BR]=Quebra-cabeça em formato 4x4
+Description[ro]=Puzzle de formă 4x4
 Description[ru]=Головоломка 4x4
 Description[sk]=Puzzle 4x4
 Description[sl]=Uganka velikosti 4x4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksudoku-4.12.97/src/shapes/6x6.desktop 
new/ksudoku-4.13.0/src/shapes/6x6.desktop
--- old/ksudoku-4.12.97/src/shapes/6x6.desktop  2014-03-24 05:32:54.0 
+0100
+++ new/ksudoku-4.13.0/src/shapes/6x6.desktop   2014-03-27 05:49:39.0 
+0100
@@ -24,6 +24,7 @@
 Name[pl]=6x6
 Name[pt]=6x6
 Name[pt_BR]=6x6
+Name[ro]=6x6
 Name[ru]=6x6
 Name[sk]=6x6
 Name[sl]=6x6
@@ -61,6 +62,7 @@
 Description[pl]=Puzzle 6x6 z prostokątnymi blokami
 Description[pt]=Um puzzle 6x6 com blocos rectangulares
 Description[pt_BR]=Um quebra-cabeça 6x6 com blocos retangulares
+Description[ro]=Puzzle de formă 6x6 cu blocuri dreptunghiulare
 Description[ru]=Головоломка 6x6 с прямоугольными блоками
 Description[sk]=Puzzle 6x6 s pravouhlými blokmi
 Description[sl]=Sestavljanka 6x6 s pravokotnimi kosi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksudoku-4.12.97/src/shapes/DoubleRoxdoku.desktop 
new/ksudoku-4.13.0/src/shapes/DoubleRoxdoku.desktop
--- old/ksudoku-4.12.97/src/shapes/DoubleRoxdoku.desktop2014-03-24 
05:32:54.0 +0100
+++ new/ksudoku-4.13.0/src/shapes/DoubleRoxdoku.desktop 2014-03-27 
05:49:39.0 +0100
@@ -22,6 +22,7 @@
 Name[pl]=Podwójne Roxdoku
 Name[pt]=Roxdoku Duplo
 Name[pt_BR]=Roxdoku Duplo
+Name[ro]=Roxdoku dublu
 Name[ru]=Двойное роксдоку
 Name[sk]=Dvojité Roxdoku
 Name[sl]=Dvojni Roxdoku
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksudoku-4.12.97/src/shapes/Nonomino.desktop 
new/ksudoku-4.13.0/src/shapes/Nonomino.desktop
--- old/ksudoku-4.12.97/src/shapes/Nonomino.desktop 2014-03-24 
05:32:54.0 +0100
+++ new/ksudoku-4.13.0/src/shapes/Nonomino.desktop  2014-03-27 
05:49:39.0 +0100
@@ -23,6 +23,7 @@
 Name[pl]=Nonomino 9x9
 Name[pt]=Nonómino 9x9
 Name[pt_BR]=Nonominó 9x9
+Name[ro]=Nonomino 9x9
 Name[ru]=Нономино 9x9
 Name[sk]=Nonomino 9x9
 Name[sl]=Nonomino 9x9
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksudoku-4.12.97/src/shapes/Pentomino.desktop 
new/ksudoku-4.13.0/src/shapes/Pentomino.desktop
--- old/ksudoku-4.12.97/src/shapes/Pentomino.desktop2014-03-24 
05:32:54.0 +0100
+++ new/ksudoku-4.13.0/src/shapes/Pentomino.desktop 2014-03-27 
05:49:39.0 +0100
@@ -23,6 +23,7 @@
 Name[pl]=Pentomino 5x5
 Name[pt]=Pentómino 5z5
 Name[pt_BR]=Pentaminó 5x5
+Name[ro]=Pentomino 5x5
 Name[ru]=Пентомино 5x5
 Name[sk]=Pentomino 5x5
 Name[sl]=Pentomino 5x5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksudoku-4.12.97/src/shapes/Sohei.desktop 
new/ksudoku-4.13.0/src/shapes/Sohei.desktop
--- 

commit ksquares for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package ksquares for openSUSE:Factory 
checked in at 2014-04-18 11:31:15

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


Package is ksquares

Changes:

--- /work/SRC/openSUSE:Factory/ksquares/ksquares.changes2014-03-30 
12:05:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.ksquares.new/ksquares.changes   2014-04-18 
12:30:34.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:17:20 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  ksquares-4.12.97.tar.xz

New:

  ksquares-4.13.0.tar.xz



Other differences:
--
++ ksquares.spec ++
--- /var/tmp/diff_new_pack.5suEcu/_old  2014-04-18 12:30:46.0 +0200
+++ /var/tmp/diff_new_pack.5suEcu/_new  2014-04-18 12:30:46.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Action/Arcade
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:ksquares-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ ksquares-4.12.97.tar.xz - ksquares-4.13.0.tar.xz ++

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



commit ksirk for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package ksirk for openSUSE:Factory checked 
in at 2014-04-18 11:31:20

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


Package is ksirk

Changes:

--- /work/SRC/openSUSE:Factory/ksirk/ksirk.changes  2014-03-30 
12:05:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.ksirk.new/ksirk.changes 2014-04-18 
12:31:03.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:16:55 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  ksirk-4.12.97.tar.xz

New:

  ksirk-4.13.0.tar.xz



Other differences:
--
++ ksirk.spec ++
--- /var/tmp/diff_new_pack.XoGqw9/_old  2014-04-18 12:31:12.0 +0200
+++ /var/tmp/diff_new_pack.XoGqw9/_new  2014-04-18 12:31:12.0 +0200
@@ -21,7 +21,7 @@
 License:GPL-2.0+ and LGPL-2.0+
 Group:  Amusements/Games/Strategy/Turn Based
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:ksirk-%{version}.tar.xz
 BuildRequires:  libkdegames-devel

++ ksirk-4.12.97.tar.xz - ksirk-4.13.0.tar.xz ++

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



commit ksnakeduel for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package ksnakeduel for openSUSE:Factory 
checked in at 2014-04-18 11:31:18

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


Package is ksnakeduel

Changes:

--- /work/SRC/openSUSE:Factory/ksnakeduel/ksnakeduel.changes2014-03-30 
12:05:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.ksnakeduel.new/ksnakeduel.changes   
2014-04-18 12:30:53.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:17:06 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  ksnakeduel-4.12.97.tar.xz

New:

  ksnakeduel-4.13.0.tar.xz



Other differences:
--
++ ksnakeduel.spec ++
--- /var/tmp/diff_new_pack.j6jSQ3/_old  2014-04-18 12:31:02.0 +0200
+++ /var/tmp/diff_new_pack.j6jSQ3/_new  2014-04-18 12:31:02.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:ksnakeduel-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ ksnakeduel-4.12.97.tar.xz - ksnakeduel-4.13.0.tar.xz ++

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



commit kshisen for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kshisen for openSUSE:Factory checked 
in at 2014-04-18 11:31:21

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


Package is kshisen

Changes:

--- /work/SRC/openSUSE:Factory/kshisen/kshisen.changes  2014-03-30 
12:05:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.kshisen.new/kshisen.changes 2014-04-18 
12:31:13.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:16:46 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kshisen-4.12.97.tar.xz

New:

  kshisen-4.13.0.tar.xz



Other differences:
--
++ kshisen.spec ++
--- /var/tmp/diff_new_pack.juCxw3/_old  2014-04-18 12:31:20.0 +0200
+++ /var/tmp/diff_new_pack.juCxw3/_new  2014-04-18 12:31:20.0 +0200
@@ -24,7 +24,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Other
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kshisen-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kshisen-4.12.97.tar.xz - kshisen-4.13.0.tar.xz ++

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



commit konquest for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package konquest for openSUSE:Factory 
checked in at 2014-04-18 11:31:26

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


Package is konquest

Changes:

--- /work/SRC/openSUSE:Factory/konquest/konquest.changes2014-03-30 
12:05:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.konquest.new/konquest.changes   2014-04-18 
12:31:40.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:16:23 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  konquest-4.12.97.tar.xz

New:

  konquest-4.13.0.tar.xz



Other differences:
--
++ konquest.spec ++
--- /var/tmp/diff_new_pack.AWCwdd/_old  2014-04-18 12:31:44.0 +0200
+++ /var/tmp/diff_new_pack.AWCwdd/_new  2014-04-18 12:31:44.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:konquest-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ konquest-4.12.97.tar.xz - konquest-4.13.0.tar.xz ++

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



commit kreversi for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kreversi for openSUSE:Factory 
checked in at 2014-04-18 11:31:23

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


Package is kreversi

Changes:

--- /work/SRC/openSUSE:Factory/kreversi/kreversi.changes2014-03-30 
12:05:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.kreversi.new/kreversi.changes   2014-04-18 
12:31:20.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:16:40 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kreversi-4.12.97.tar.xz

New:

  kreversi-4.13.0.tar.xz



Other differences:
--
++ kreversi.spec ++
--- /var/tmp/diff_new_pack.YUR9FI/_old  2014-04-18 12:31:31.0 +0200
+++ /var/tmp/diff_new_pack.YUR9FI/_new  2014-04-18 12:31:31.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Other
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kreversi-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kreversi-4.12.97.tar.xz - kreversi-4.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kreversi-4.12.97/pics/default_theme.desktop 
new/kreversi-4.13.0/pics/default_theme.desktop
--- old/kreversi-4.12.97/pics/default_theme.desktop 2014-03-04 
06:56:00.0 +0100
+++ new/kreversi-4.13.0/pics/default_theme.desktop  2014-03-27 
05:49:32.0 +0100
@@ -28,6 +28,7 @@
 Name[pl]=Domyślny motyw Reversi
 Name[pt]=Tema Predefinido do KReversi
 Name[pt_BR]=Tema padrão do KReversi
+Name[ro]=Tematică implicită KReversi
 Name[ru]=Оформление по умолчанию для KReversi
 Name[sk]=Štandardná téma KReversi
 Name[sl]=Privzeta tema za KReversi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kreversi-4.12.97/sounds/kreversi.notifyrc 
new/kreversi-4.13.0/sounds/kreversi.notifyrc
--- old/kreversi-4.12.97/sounds/kreversi.notifyrc   2014-03-04 
06:56:00.0 +0100
+++ new/kreversi-4.13.0/sounds/kreversi.notifyrc2014-03-27 
05:49:32.0 +0100
@@ -28,6 +28,7 @@
 Comment[pl]=Gra planszowa Reversi
 Comment[pt]=Jogo KReversi
 Comment[pt_BR]=Jogo KReversi
+Comment[ro]=Joc KReversi
 Comment[ru]=Игра в реверси
 Comment[sk]=Hra Reversi
 Comment[sl]=Igra KReversi

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



commit kollision for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kollision for openSUSE:Factory 
checked in at 2014-04-18 11:31:28

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


Package is kollision

Changes:

--- /work/SRC/openSUSE:Factory/kollision/kollision.changes  2014-03-30 
12:05:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.kollision.new/kollision.changes 2014-04-18 
12:31:44.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:16:17 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kollision-4.12.97.tar.xz

New:

  kollision-4.13.0.tar.xz



Other differences:
--
++ kollision.spec ++
--- /var/tmp/diff_new_pack.yv0Qmv/_old  2014-04-18 12:31:50.0 +0200
+++ /var/tmp/diff_new_pack.yv0Qmv/_new  2014-04-18 12:31:50.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kollision-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kollision-4.12.97.tar.xz - kollision-4.13.0.tar.xz ++

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



commit knavalbattle for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package knavalbattle for openSUSE:Factory 
checked in at 2014-04-18 11:31:33

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


Package is knavalbattle

Changes:

--- /work/SRC/openSUSE:Factory/knavalbattle/knavalbattle.changes
2014-03-30 12:04:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.knavalbattle.new/knavalbattle.changes   
2014-04-18 12:31:59.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:15:55 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  knavalbattle-4.12.97.tar.xz

New:

  knavalbattle-4.13.0.tar.xz



Other differences:
--
++ knavalbattle.spec ++
--- /var/tmp/diff_new_pack.FH1DZz/_old  2014-04-18 12:32:06.0 +0200
+++ /var/tmp/diff_new_pack.FH1DZz/_new  2014-04-18 12:32:06.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Other
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:knavalbattle-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ knavalbattle-4.12.97.tar.xz - knavalbattle-4.13.0.tar.xz ++

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



commit kpat for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kpat for openSUSE:Factory checked in 
at 2014-04-18 11:31:25

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


Package is kpat

Changes:

--- /work/SRC/openSUSE:Factory/kpat/kpat.changes2014-03-30 
12:05:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.kpat.new/kpat.changes   2014-04-18 
12:31:31.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:16:30 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kpat-4.12.97.tar.xz

New:

  kpat-4.13.0.tar.xz



Other differences:
--
++ kpat.spec ++
--- /var/tmp/diff_new_pack.Np4foM/_old  2014-04-18 12:31:39.0 +0200
+++ /var/tmp/diff_new_pack.Np4foM/_new  2014-04-18 12:31:39.0 +0200
@@ -21,7 +21,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Card
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kpat-%{version}.tar.xz
 BuildRequires:  libkdegames-devel

++ kpat-4.12.97.tar.xz - kpat-4.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpat-4.12.97/kpat.desktop 
new/kpat-4.13.0/kpat.desktop
--- old/kpat-4.12.97/kpat.desktop   2014-03-25 06:38:05.0 +0100
+++ new/kpat-4.13.0/kpat.desktop2014-03-30 07:15:59.0 +0200
@@ -34,7 +34,7 @@
 Name[pl]=Pasjans
 Name[pt]=KPatience
 Name[pt_BR]=KPatience
-Name[ro]=Pasențe
+Name[ro]=KPasențe
 Name[ru]=KPatience
 Name[sk]=KPatience
 Name[sl]=KPatience
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpat-4.12.97/themes/oldertheme.desktop 
new/kpat-4.13.0/themes/oldertheme.desktop
--- old/kpat-4.12.97/themes/oldertheme.desktop  2014-03-25 06:38:05.0 
+0100
+++ new/kpat-4.13.0/themes/oldertheme.desktop   2014-03-30 07:15:59.0 
+0200
@@ -25,6 +25,7 @@
 Name[nb]=Eldre tema
 Name[nds]=Öller Muster
 Name[nl]=Ouder thema
+Name[pa]=ਪੁਰਾਣਾ ਥੀਮ
 Name[pl]=Starszy motyw
 Name[pt]=Tema Antigo
 Name[pt_BR]=Tema antigo

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



commit kmines for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kmines for openSUSE:Factory checked 
in at 2014-04-18 11:31:35

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


Package is kmines

Changes:

--- /work/SRC/openSUSE:Factory/kmines/kmines.changes2014-03-30 
12:03:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.kmines.new/kmines.changes   2014-04-18 
12:32:06.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:15:47 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kmines-4.12.97.tar.xz

New:

  kmines-4.13.0.tar.xz



Other differences:
--
++ kmines.spec ++
--- /var/tmp/diff_new_pack.P3Z4n1/_old  2014-04-18 12:32:11.0 +0200
+++ /var/tmp/diff_new_pack.P3Z4n1/_new  2014-04-18 12:32:11.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kmines-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kmines-4.12.97.tar.xz - kmines-4.13.0.tar.xz ++

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



commit kolf for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kolf for openSUSE:Factory checked in 
at 2014-04-18 11:31:30

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


Package is kolf

Changes:

--- /work/SRC/openSUSE:Factory/kolf/kolf.changes2014-03-30 
12:04:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.kolf.new/kolf.changes   2014-04-18 
12:31:50.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:16:10 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kolf-4.12.97.tar.xz

New:

  kolf-4.13.0.tar.xz



Other differences:
--
++ kolf.spec ++
--- /var/tmp/diff_new_pack.EzWqRm/_old  2014-04-18 12:31:54.0 +0200
+++ /var/tmp/diff_new_pack.EzWqRm/_new  2014-04-18 12:31:54.0 +0200
@@ -21,7 +21,7 @@
 License:GPL-2.0+ and LGPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kolf-%{version}.tar.xz
 BuildRequires:  libkdegames-devel

++ kolf-4.12.97.tar.xz - kolf-4.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kolf-4.12.97/tutorial.kolf 
new/kolf-4.13.0/tutorial.kolf
--- old/kolf-4.12.97/tutorial.kolf  2014-03-24 05:32:48.0 +0100
+++ new/kolf-4.13.0/tutorial.kolf   2014-03-31 06:34:57.0 +0200
@@ -424,7 +424,7 @@
 Comment[sr@ijekavianlatin]=h3Sve/h3Evo rupe koja ima sve. Zabavljajte se 
Kolfom!brcenter-- Džejson Kac‑Braun/center
 Comment[sr@latin]=h3Sve/h3Evo rupe koja ima sve. Zabavljajte se 
Kolfom!brcenter-- Džejson Kac‑Braun/center
 Comment[sv]=h3Allting/h3Här är ett hål som har allting. Ha det så roligt 
med Kolf!brcenterJason Katz-Brown/center
-Comment[tr]=h3Herşey/h3Burada tümünü barındıran bir delik var. Kolf ile 
eğlenin!brcenter-- Jason Katz-Brown/center
+Comment[tr]=h3Her şey/h3Burada tümünü barındıran bir delik var. Kolf ile 
eğlenin!brcenter-- Jason Katz-Brown/center
 Comment[uk]=h3Що завгодно/h3Ось дірка, де ховається нірка. Розважайтесь з 
Kolf!brcenter-- Jason Katz-Brown/center
 Comment[x-test]=xxh3Everything/h3Here's a hole that has it all. Have fun 
with Kolf!brcenter-- Jason Katz-Brown/centerxx
 Comment[zh_CN]=h3一切/h3这里有一个球洞,一切尽在其中。祝玩得愉快!brcenter-- Jason 
Katz-Brown/center

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



commit knetwalk for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package knetwalk for openSUSE:Factory 
checked in at 2014-04-18 11:31:32

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


Package is knetwalk

Changes:

--- /work/SRC/openSUSE:Factory/knetwalk/knetwalk.changes2014-03-30 
12:04:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.knetwalk.new/knetwalk.changes   2014-04-18 
12:31:54.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:16:01 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  knetwalk-4.12.97.tar.xz

New:

  knetwalk-4.13.0.tar.xz



Other differences:
--
++ knetwalk.spec ++
--- /var/tmp/diff_new_pack.AScUoq/_old  2014-04-18 12:31:59.0 +0200
+++ /var/tmp/diff_new_pack.AScUoq/_new  2014-04-18 12:31:59.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:knetwalk-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ knetwalk-4.12.97.tar.xz - knetwalk-4.13.0.tar.xz ++

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



commit kiriki for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kiriki for openSUSE:Factory checked 
in at 2014-04-18 11:31:43

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


Package is kiriki

Changes:

--- /work/SRC/openSUSE:Factory/kiriki/kiriki.changes2014-03-30 
12:01:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.kiriki.new/kiriki.changes   2014-04-18 
12:32:44.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:15:14 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kiriki-4.12.97.tar.xz

New:

  kiriki-4.13.0.tar.xz



Other differences:
--
++ kiriki.spec ++
--- /var/tmp/diff_new_pack.J43crO/_old  2014-04-18 12:32:55.0 +0200
+++ /var/tmp/diff_new_pack.J43crO/_new  2014-04-18 12:32:55.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Other
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kiriki-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kiriki-4.12.97.tar.xz - kiriki-4.13.0.tar.xz ++

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



commit klickety for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package klickety for openSUSE:Factory 
checked in at 2014-04-18 11:31:40

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


Package is klickety

Changes:

--- /work/SRC/openSUSE:Factory/klickety/klickety.changes2014-03-30 
12:02:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.klickety.new/klickety.changes   2014-04-18 
12:32:26.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:15:25 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  klickety-4.12.97.tar.xz

New:

  klickety-4.13.0.tar.xz



Other differences:
--
++ klickety.spec ++
--- /var/tmp/diff_new_pack.81vlWO/_old  2014-04-18 12:32:33.0 +0200
+++ /var/tmp/diff_new_pack.81vlWO/_new  2014-04-18 12:32:33.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Other
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:klickety-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ klickety-4.12.97.tar.xz - klickety-4.13.0.tar.xz ++

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



commit kjumpingcube for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kjumpingcube for openSUSE:Factory 
checked in at 2014-04-18 11:31:41

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


Package is kjumpingcube

Changes:

--- /work/SRC/openSUSE:Factory/kjumpingcube/kjumpingcube.changes
2014-03-30 12:01:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.kjumpingcube.new/kjumpingcube.changes   
2014-04-18 12:32:33.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:15:19 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kjumpingcube-4.12.97.tar.xz

New:

  kjumpingcube-4.13.0.tar.xz



Other differences:
--
++ kjumpingcube.spec ++
--- /var/tmp/diff_new_pack.zaIPZW/_old  2014-04-18 12:32:44.0 +0200
+++ /var/tmp/diff_new_pack.zaIPZW/_new  2014-04-18 12:32:44.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kjumpingcube-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kjumpingcube-4.12.97.tar.xz - kjumpingcube-4.13.0.tar.xz ++

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



commit klines for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package klines for openSUSE:Factory checked 
in at 2014-04-18 11:31:38

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


Package is klines

Changes:

--- /work/SRC/openSUSE:Factory/klines/klines.changes2014-03-30 
12:03:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.klines.new/klines.changes   2014-04-18 
12:32:18.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:15:32 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  klines-4.12.97.tar.xz

New:

  klines-4.13.0.tar.xz



Other differences:
--
++ klines.spec ++
--- /var/tmp/diff_new_pack.k2V7W9/_old  2014-04-18 12:32:26.0 +0200
+++ /var/tmp/diff_new_pack.k2V7W9/_new  2014-04-18 12:32:26.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:klines-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ klines-4.12.97.tar.xz - klines-4.13.0.tar.xz ++

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



commit killbots for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package killbots for openSUSE:Factory 
checked in at 2014-04-18 11:31:44

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


Package is killbots

Changes:

--- /work/SRC/openSUSE:Factory/killbots/killbots.changes2014-03-30 
12:01:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.killbots.new/killbots.changes   2014-04-18 
12:32:55.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:15:07 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  killbots-4.12.97.tar.xz

New:

  killbots-4.13.0.tar.xz



Other differences:
--
++ killbots.spec ++
--- /var/tmp/diff_new_pack.QFe2b7/_old  2014-04-18 12:33:06.0 +0200
+++ /var/tmp/diff_new_pack.QFe2b7/_new  2014-04-18 12:33:06.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:killbots-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ killbots-4.12.97.tar.xz - killbots-4.13.0.tar.xz ++

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



commit kigo for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kigo for openSUSE:Factory checked in 
at 2014-04-18 11:31:46

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


Package is kigo

Changes:

--- /work/SRC/openSUSE:Factory/kigo/kigo.changes2014-03-30 
12:01:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.kigo.new/kigo.changes   2014-04-18 
12:33:06.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:15:00 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kigo-4.12.97.tar.xz

New:

  kigo-4.13.0.tar.xz



Other differences:
--
++ kigo.spec ++
--- /var/tmp/diff_new_pack.kEbLyF/_old  2014-04-18 12:33:14.0 +0200
+++ /var/tmp/diff_new_pack.kEbLyF/_new  2014-04-18 12:33:14.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Other
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kigo-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kigo-4.12.97.tar.xz - kigo-4.13.0.tar.xz ++

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



commit katomic for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package katomic for openSUSE:Factory checked 
in at 2014-04-18 11:31:59

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


Package is katomic

Changes:

--- /work/SRC/openSUSE:Factory/katomic/katomic.changes  2014-03-30 
12:00:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.katomic.new/katomic.changes 2014-04-18 
12:33:37.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:13:30 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  katomic-4.12.97.tar.xz

New:

  katomic-4.13.0.tar.xz



Other differences:
--
++ katomic.spec ++
--- /var/tmp/diff_new_pack.4TMAC7/_old  2014-04-18 12:33:39.0 +0200
+++ /var/tmp/diff_new_pack.4TMAC7/_new  2014-04-18 12:33:39.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:katomic-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ katomic-4.12.97.tar.xz - katomic-4.13.0.tar.xz ++

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



commit kblocks for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kblocks for openSUSE:Factory checked 
in at 2014-04-18 11:31:55

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


Package is kblocks

Changes:

--- /work/SRC/openSUSE:Factory/kblocks/kblocks.changes  2014-03-30 
12:00:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.kblocks.new/kblocks.changes 2014-04-18 
12:33:32.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:13:52 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kblocks-4.12.97.tar.xz

New:

  kblocks-4.13.0.tar.xz



Other differences:
--
++ kblocks.spec ++
--- /var/tmp/diff_new_pack.gp2qCS/_old  2014-04-18 12:33:34.0 +0200
+++ /var/tmp/diff_new_pack.gp2qCS/_new  2014-04-18 12:33:34.0 +0200
@@ -23,7 +23,7 @@
 License:LGPL-2.1+
 Group:  Amusements/Games/Strategy/Real Time
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kblocks-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kblocks-4.12.97.tar.xz - kblocks-4.13.0.tar.xz ++

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



commit kbreakout for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kbreakout for openSUSE:Factory 
checked in at 2014-04-18 11:31:52

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


Package is kbreakout

Changes:

--- /work/SRC/openSUSE:Factory/kbreakout/kbreakout.changes  2014-03-30 
12:00:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.kbreakout.new/kbreakout.changes 2014-04-18 
12:33:26.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:14:22 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kbreakout-4.12.97.tar.xz

New:

  kbreakout-4.13.0.tar.xz



Other differences:
--
++ kbreakout.spec ++
--- /var/tmp/diff_new_pack.RxLMdl/_old  2014-04-18 12:33:28.0 +0200
+++ /var/tmp/diff_new_pack.RxLMdl/_new  2014-04-18 12:33:28.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Action/Breakout
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kbreakout-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kbreakout-4.12.97.tar.xz - kbreakout-4.13.0.tar.xz ++

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



commit kgoldrunner for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kgoldrunner for openSUSE:Factory 
checked in at 2014-04-18 11:31:47

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


Package is kgoldrunner

Changes:

--- /work/SRC/openSUSE:Factory/kgoldrunner/kgoldrunner.changes  2014-03-30 
12:01:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.kgoldrunner.new/kgoldrunner.changes 
2014-04-18 12:33:14.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:14:51 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kgoldrunner-4.12.97.tar.xz

New:

  kgoldrunner-4.13.0.tar.xz



Other differences:
--
++ kgoldrunner.spec ++
--- /var/tmp/diff_new_pack.ZaCZc0/_old  2014-04-18 12:33:20.0 +0200
+++ /var/tmp/diff_new_pack.ZaCZc0/_new  2014-04-18 12:33:20.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Action/Arcade
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kgoldrunner-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kgoldrunner-4.12.97.tar.xz - kgoldrunner-4.13.0.tar.xz ++

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



commit kdiamond for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kdiamond for openSUSE:Factory 
checked in at 2014-04-18 11:31:50

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


Package is kdiamond

Changes:

--- /work/SRC/openSUSE:Factory/kdiamond/kdiamond.changes2014-03-30 
12:00:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdiamond.new/kdiamond.changes   2014-04-18 
12:33:24.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:14:33 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kdiamond-4.12.97.tar.xz

New:

  kdiamond-4.13.0.tar.xz



Other differences:
--
++ kdiamond.spec ++
--- /var/tmp/diff_new_pack.U4IOiC/_old  2014-04-18 12:33:26.0 +0200
+++ /var/tmp/diff_new_pack.U4IOiC/_new  2014-04-18 12:33:26.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kdiamond-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kdiamond-4.12.97.tar.xz - kdiamond-4.13.0.tar.xz ++

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



commit kapman for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kapman for openSUSE:Factory checked 
in at 2014-04-18 11:32:01

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


Package is kapman

Changes:

--- /work/SRC/openSUSE:Factory/kapman/kapman.changes2014-03-30 
11:59:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.kapman.new/kapman.changes   2014-04-18 
12:33:40.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:13:16 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kapman-4.12.97.tar.xz

New:

  kapman-4.13.0.tar.xz



Other differences:
--
++ kapman.spec ++
--- /var/tmp/diff_new_pack.rBUpjW/_old  2014-04-18 12:33:42.0 +0200
+++ /var/tmp/diff_new_pack.rBUpjW/_new  2014-04-18 12:33:42.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kapman-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kapman-4.12.97.tar.xz - kapman-4.13.0.tar.xz ++

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



commit kblackbox for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kblackbox for openSUSE:Factory 
checked in at 2014-04-18 11:31:57

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


Package is kblackbox

Changes:

--- /work/SRC/openSUSE:Factory/kblackbox/kblackbox.changes  2014-03-30 
12:00:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.kblackbox.new/kblackbox.changes 2014-04-18 
12:33:34.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:13:42 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kblackbox-4.12.97.tar.xz

New:

  kblackbox-4.13.0.tar.xz



Other differences:
--
++ kblackbox.spec ++
--- /var/tmp/diff_new_pack.11Oucq/_old  2014-04-18 12:33:37.0 +0200
+++ /var/tmp/diff_new_pack.11Oucq/_new  2014-04-18 12:33:37.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kblackbox-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kblackbox-4.12.97.tar.xz - kblackbox-4.13.0.tar.xz ++

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



commit kfourinline for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kfourinline for openSUSE:Factory 
checked in at 2014-04-18 11:31:48

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


Package is kfourinline

Changes:

--- /work/SRC/openSUSE:Factory/kfourinline/kfourinline.changes  2014-03-30 
12:01:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.kfourinline.new/kfourinline.changes 
2014-04-18 12:33:21.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:14:43 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kfourinline-4.12.97.tar.xz

New:

  kfourinline-4.13.0.tar.xz



Other differences:
--
++ kfourinline.spec ++
--- /var/tmp/diff_new_pack.1OujfZ/_old  2014-04-18 12:33:23.0 +0200
+++ /var/tmp/diff_new_pack.1OujfZ/_new  2014-04-18 12:33:23.0 +0200
@@ -23,7 +23,7 @@
 License:LGPL-2.0+
 Group:  Amusements/Toys/Other
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kfourinline-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kfourinline-4.12.97.tar.xz - kfourinline-4.13.0.tar.xz ++

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



commit kbounce for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kbounce for openSUSE:Factory checked 
in at 2014-04-18 11:31:53

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


Package is kbounce

Changes:

--- /work/SRC/openSUSE:Factory/kbounce/kbounce.changes  2014-03-30 
12:00:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.kbounce.new/kbounce.changes 2014-04-18 
12:33:29.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:14:10 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kbounce-4.12.97.tar.xz

New:

  kbounce-4.13.0.tar.xz



Other differences:
--
++ kbounce.spec ++
--- /var/tmp/diff_new_pack.xYGi9W/_old  2014-04-18 12:33:32.0 +0200
+++ /var/tmp/diff_new_pack.xYGi9W/_new  2014-04-18 12:33:32.0 +0200
@@ -23,7 +23,7 @@
 License:LGPL-2.0+
 Group:  Amusements/Games/Action/Other
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kbounce-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kbounce-4.12.97.tar.xz - kbounce-4.13.0.tar.xz ++

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



commit kdewebdev4 for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kdewebdev4 for openSUSE:Factory 
checked in at 2014-04-18 11:32:14

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


Package is kdewebdev4

Changes:

--- /work/SRC/openSUSE:Factory/kdewebdev4/kdewebdev4.changes2014-03-30 
11:59:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdewebdev4.new/kdewebdev4.changes   
2014-04-18 12:34:00.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:05:38 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kdewebdev-4.12.97.tar.xz

New:

  kdewebdev-4.13.0.tar.xz



Other differences:
--
++ kdewebdev4.spec ++
--- /var/tmp/diff_new_pack.uYzsos/_old  2014-04-18 12:34:02.0 +0200
+++ /var/tmp/diff_new_pack.uYzsos/_new  2014-04-18 12:34:02.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdewebdev4
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Base package for kdewebdev
 License:GPL-2.0+

++ kdewebdev-4.12.97.tar.xz - kdewebdev-4.13.0.tar.xz ++

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



commit svgpart for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package svgpart for openSUSE:Factory checked 
in at 2014-04-18 11:32:17

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


Package is svgpart

Changes:

--- /work/SRC/openSUSE:Factory/svgpart/svgpart.changes  2014-03-30 
11:58:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.svgpart.new/svgpart.changes 2014-04-18 
12:34:03.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:05:26 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  svgpart-4.12.97.tar.xz

New:

  svgpart-4.13.0.tar.xz



Other differences:
--
++ svgpart.spec ++
--- /var/tmp/diff_new_pack.SvwusP/_old  2014-04-18 12:34:05.0 +0200
+++ /var/tmp/diff_new_pack.SvwusP/_new  2014-04-18 12:34:05.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   svgpart
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:SVG viewer component
 License:GPL-2.0+

++ svgpart-4.12.97.tar.xz - svgpart-4.13.0.tar.xz ++

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



commit kajongg for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kajongg for openSUSE:Factory checked 
in at 2014-04-18 11:32:03

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


Package is kajongg

Changes:

--- /work/SRC/openSUSE:Factory/kajongg/kajongg.changes  2014-03-30 
11:59:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.kajongg.new/kajongg.changes 2014-04-18 
12:33:43.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:12:59 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kajongg-4.12.97.tar.xz

New:

  kajongg-4.13.0.tar.xz



Other differences:
--
++ kajongg.spec ++
--- /var/tmp/diff_new_pack.sv6gX5/_old  2014-04-18 12:33:45.0 +0200
+++ /var/tmp/diff_new_pack.sv6gX5/_new  2014-04-18 12:33:45.0 +0200
@@ -25,7 +25,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kajongg-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kajongg-4.12.97.tar.xz - kajongg-4.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kajongg-4.12.97/kajongg.desktop 
new/kajongg-4.13.0/kajongg.desktop
--- old/kajongg-4.12.97/kajongg.desktop 2014-03-18 06:05:19.0 +0100
+++ new/kajongg-4.13.0/kajongg.desktop  2014-04-08 11:03:48.0 +0200
@@ -28,6 +28,7 @@
 Name[nds]=Kajongg
 Name[nl]=Kajongg
 Name[nn]=Kajongg
+Name[pa]=ਕੇ-ਮਹਿਜੋਂਗ
 Name[pl]=Kajongg
 Name[pt]=Kajongg
 Name[pt_BR]=Kajongg
@@ -116,6 +117,7 @@
 GenericName[nds]=Mah Jongg
 GenericName[nl]=Mah Jongg
 GenericName[nn]=Mahjong
+GenericName[pa]=ਮਹਿ ਜੋਂਗ
 GenericName[pl]=Mah Jongg
 GenericName[pt]=Mah Jongg
 GenericName[pt_BR]=Mah Jongg
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kajongg-4.12.97/src/kde.py 
new/kajongg-4.13.0/src/kde.py
--- old/kajongg-4.12.97/src/kde.py  2014-03-18 06:05:19.0 +0100
+++ new/kajongg-4.13.0/src/kde.py   2014-04-08 11:03:48.0 +0200
@@ -51,6 +51,7 @@
 
 def appdataDir():
 the per user directory with kajongg application information like the 
database
+serverDir = os.path.expanduser('~/.kajonggserver/')
 if Internal.isServer:
 # the server might or might not have KDE installed, so to be on
 # the safe side we use our own .kajonggserver directory
@@ -60,18 +61,20 @@
 oldPath = os.path.expanduser(kdehome + 
'/share/apps/kajongg/kajonggserver.db')
 if not os.path.exists(oldPath):
 oldPath = 
os.path.expanduser('~/.kde4/share/apps/kajongg/kajonggserver.db')
-newPath = os.path.expanduser('~/.kajonggserver/')
-if os.path.exists(oldPath) and not os.path.exists(newPath):
+if os.path.exists(oldPath) and not os.path.exists(serverDir):
 # upgrading an old kajonggserver installation
-os.makedirs(newPath)
-shutil.move(oldPath, newPath)
-if not os.path.exists(newPath):
+os.makedirs(serverDir)
+shutil.move(oldPath, serverDir)
+if not os.path.exists(serverDir):
 try:
-os.makedirs(newPath)
+os.makedirs(serverDir)
 except OSError:
 pass
-return newPath
+return serverDir
 else:
+if not os.path.exists(serverDir):
+# the client wants to place the socket in serverDir
+os.makedirs(serverDir)
 result = os.path.dirname(unicode(KGlobal.dirs().locateLocal(appdata, 
))) + '/'
 return result
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kajongg-4.12.97/src/query.py 
new/kajongg-4.13.0/src/query.py
--- old/kajongg-4.12.97/src/query.py2014-03-18 06:05:19.0 +0100
+++ new/kajongg-4.13.0/src/query.py 2014-04-08 11:03:48.0 +0200
@@ -306,7 +306,8 @@
 player integer,
 password text
 schema['general'] = 
-ident text
+ident text,
+schemaversion text
 
 def __init__(self, path):
 self.path = path
@@ -322,6 +323,7 @@
 try:
 with Internal.db:
 self.createTables()
+Query('UPDATE general SET schemaversion=?', 
(Internal.version,))
 self.__generateDbIdent()
 finally:
 Internal.db.close(silent=True)
@@ -385,9 +387,12 @@
 @classmethod
 

commit bovo for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package bovo for openSUSE:Factory checked in 
at 2014-04-18 11:32:07

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


Package is bovo

Changes:

--- /work/SRC/openSUSE:Factory/bovo/bovo.changes2014-03-30 
11:59:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.bovo.new/bovo.changes   2014-04-18 
12:33:49.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:12:33 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  bovo-4.12.97.tar.xz

New:

  bovo-4.13.0.tar.xz



Other differences:
--
++ bovo.spec ++
--- /var/tmp/diff_new_pack.UklYAJ/_old  2014-04-18 12:33:51.0 +0200
+++ /var/tmp/diff_new_pack.UklYAJ/_new  2014-04-18 12:33:51.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Other
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:bovo-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ bovo-4.12.97.tar.xz - bovo-4.13.0.tar.xz ++

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



commit bomber for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package bomber for openSUSE:Factory checked 
in at 2014-04-18 11:32:09

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


Package is bomber

Changes:

--- /work/SRC/openSUSE:Factory/bomber/bomber.changes2014-03-30 
11:59:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.bomber.new/bomber.changes   2014-04-18 
12:33:51.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:12:24 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  bomber-4.12.97.tar.xz

New:

  bomber-4.13.0.tar.xz



Other differences:
--
++ bomber.spec ++
--- /var/tmp/diff_new_pack.jfGr7n/_old  2014-04-18 12:33:53.0 +0200
+++ /var/tmp/diff_new_pack.jfGr7n/_new  2014-04-18 12:33:53.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   bomber
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Invading cities with a plane
 License:GPL-2.0+

++ bomber-4.12.97.tar.xz - bomber-4.13.0.tar.xz ++

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



commit kdeartwork4 for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kdeartwork4 for openSUSE:Factory 
checked in at 2014-04-18 11:32:11

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


Package is kdeartwork4

Changes:

--- /work/SRC/openSUSE:Factory/kdeartwork4/kdeartwork4.changes  2014-03-30 
11:59:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdeartwork4.new/kdeartwork4.changes 
2014-04-18 12:33:56.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:07:24 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kdeartwork-4.12.97.tar.xz

New:

  kdeartwork-4.13.0.tar.xz



Other differences:
--
++ kdeartwork4.spec ++
--- /var/tmp/diff_new_pack.QIC7NG/_old  2014-04-18 12:33:59.0 +0200
+++ /var/tmp/diff_new_pack.QIC7NG/_new  2014-04-18 12:33:59.0 +0200
@@ -30,7 +30,7 @@
 License:GPL-2.0 and GPL-2.0+ and LGPL-2.1 and LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kdeartwork-%{version}.tar.xz
 Source1:baselibs.conf

++ kdeartwork-4.12.97.tar.xz - kdeartwork-4.13.0.tar.xz ++
/work/SRC/openSUSE:Factory/kdeartwork4/kdeartwork-4.12.97.tar.xz 
/work/SRC/openSUSE:Factory/.kdeartwork4.new/kdeartwork-4.13.0.tar.xz differ: 
char 27, line 1

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



commit granatier for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package granatier for openSUSE:Factory 
checked in at 2014-04-18 11:32:05

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


Package is granatier

Changes:

--- /work/SRC/openSUSE:Factory/granatier/granatier.changes  2014-03-30 
11:59:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.granatier.new/granatier.changes 2014-04-18 
12:33:46.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:12:45 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  granatier-4.12.97.tar.xz

New:

  granatier-4.13.0.tar.xz



Other differences:
--
++ granatier.spec ++
--- /var/tmp/diff_new_pack.bVpElX/_old  2014-04-18 12:33:48.0 +0200
+++ /var/tmp/diff_new_pack.bVpElX/_new  2014-04-18 12:33:48.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Action/Arcade
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:granatier-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ granatier-4.12.97.tar.xz - granatier-4.13.0.tar.xz ++

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



commit pairs for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package pairs for openSUSE:Factory checked 
in at 2014-04-18 11:32:18

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


Package is pairs

Changes:

--- /work/SRC/openSUSE:Factory/pairs/pairs.changes  2014-03-30 
11:58:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.pairs.new/pairs.changes 2014-04-18 
12:34:06.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:05:11 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  pairs-4.12.97.tar.xz

New:

  pairs-4.13.0.tar.xz



Other differences:
--
++ pairs.spec ++
--- /var/tmp/diff_new_pack.v3M9bu/_old  2014-04-18 12:34:08.0 +0200
+++ /var/tmp/diff_new_pack.v3M9bu/_new  2014-04-18 12:34:08.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   pairs
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Memory and Pairs Game
 License:GPL-2.0+

++ pairs-4.12.97.tar.xz - pairs-4.13.0.tar.xz ++

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



commit oxygen-icon-theme for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package oxygen-icon-theme for 
openSUSE:Factory checked in at 2014-04-18 11:32:20

Comparing /work/SRC/openSUSE:Factory/oxygen-icon-theme (Old)
 and  /work/SRC/openSUSE:Factory/.oxygen-icon-theme.new (New)


Package is oxygen-icon-theme

Changes:

--- /work/SRC/openSUSE:Factory/oxygen-icon-theme/oxygen-icon-theme.changes  
2014-03-30 11:58:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.oxygen-icon-theme.new/oxygen-icon-theme.changes 
2014-04-18 12:34:09.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 17:00:11 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  oxygen-icons-4.12.97.tar.xz

New:

  oxygen-icons-4.13.0.tar.xz



Other differences:
--
++ oxygen-icon-theme.spec ++
--- /var/tmp/diff_new_pack.AhBaxY/_old  2014-04-18 12:34:19.0 +0200
+++ /var/tmp/diff_new_pack.AhBaxY/_new  2014-04-18 12:34:19.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   oxygen-icon-theme
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Oxygen Icon Theme
 License:LGPL-2.1+











++ oxygen-icons-4.12.97.tar.xz - oxygen-icons-4.13.0.tar.xz ++
/work/SRC/openSUSE:Factory/oxygen-icon-theme/oxygen-icons-4.12.97.tar.xz 
/work/SRC/openSUSE:Factory/.oxygen-icon-theme.new/oxygen-icons-4.13.0.tar.xz 
differ: char 27, line 1

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



commit kmag for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kmag for openSUSE:Factory checked in 
at 2014-04-18 11:32:25

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


Package is kmag

Changes:

--- /work/SRC/openSUSE:Factory/kmag/kmag.changes2014-03-30 
11:58:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.kmag.new/kmag.changes   2014-04-18 
12:34:24.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:57:45 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kmag-4.12.97.tar.xz

New:

  kmag-4.13.0.tar.xz



Other differences:
--
++ kmag.spec ++
--- /var/tmp/diff_new_pack.IhQn6q/_old  2014-04-18 12:34:26.0 +0200
+++ /var/tmp/diff_new_pack.IhQn6q/_new  2014-04-18 12:34:26.0 +0200
@@ -26,7 +26,7 @@
 License:GPL-2.0
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{name}-%version.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kmag-4.12.97.tar.xz - kmag-4.13.0.tar.xz ++

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



commit ktimer for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package ktimer for openSUSE:Factory checked 
in at 2014-04-18 11:32:42

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


Package is ktimer

Changes:

--- /work/SRC/openSUSE:Factory/ktimer/ktimer.changes2014-03-30 
11:58:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktimer.new/ktimer.changes   2014-04-18 
12:34:46.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:54:37 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  ktimer-4.12.97.tar.xz

New:

  ktimer-4.13.0.tar.xz



Other differences:
--
++ ktimer.spec ++
--- /var/tmp/diff_new_pack.feMO6s/_old  2014-04-18 12:34:49.0 +0200
+++ /var/tmp/diff_new_pack.feMO6s/_new  2014-04-18 12:34:49.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktimer
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Countdown Launcher
 License:GPL-2.0+

++ ktimer-4.12.97.tar.xz - ktimer-4.13.0.tar.xz ++

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



commit kdebase4-artwork for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kdebase4-artwork for 
openSUSE:Factory checked in at 2014-04-18 11:32:29

Comparing /work/SRC/openSUSE:Factory/kdebase4-artwork (Old)
 and  /work/SRC/openSUSE:Factory/.kdebase4-artwork.new (New)


Package is kdebase4-artwork

Changes:

--- /work/SRC/openSUSE:Factory/kdebase4-artwork/kdebase4-artwork.changes
2014-03-30 11:58:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdebase4-artwork.new/kdebase4-artwork.changes   
2014-04-18 12:34:31.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:55:17 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kde-base-artwork-4.12.97.tar.xz

New:

  kde-base-artwork-4.13.0.tar.xz



Other differences:
--
++ kdebase4-artwork.spec ++
--- /var/tmp/diff_new_pack.z4mzl4/_old  2014-04-18 12:34:33.0 +0200
+++ /var/tmp/diff_new_pack.z4mzl4/_new  2014-04-18 12:34:33.0 +0200
@@ -24,7 +24,7 @@
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:kde-base-artwork-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kde-base-artwork-4.12.97.tar.xz - kde-base-artwork-4.13.0.tar.xz ++
/work/SRC/openSUSE:Factory/kdebase4-artwork/kde-base-artwork-4.12.97.tar.xz 
/work/SRC/openSUSE:Factory/.kdebase4-artwork.new/kde-base-artwork-4.13.0.tar.xz 
differ: char 27, line 1

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



commit kdebase4-wallpapers for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kdebase4-wallpapers for 
openSUSE:Factory checked in at 2014-04-18 11:32:27

Comparing /work/SRC/openSUSE:Factory/kdebase4-wallpapers (Old)
 and  /work/SRC/openSUSE:Factory/.kdebase4-wallpapers.new (New)


Package is kdebase4-wallpapers

Changes:

--- /work/SRC/openSUSE:Factory/kdebase4-wallpapers/kdebase4-wallpapers.changes  
2014-03-30 11:58:36.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdebase4-wallpapers.new/kdebase4-wallpapers.changes 
2014-04-18 12:34:28.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:56:02 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kde-wallpapers-4.12.97.tar.xz

New:

  kde-wallpapers-4.13.0.tar.xz



Other differences:
--
++ kdebase4-wallpapers.spec ++
--- /var/tmp/diff_new_pack.63xa9v/_old  2014-04-18 12:34:31.0 +0200
+++ /var/tmp/diff_new_pack.63xa9v/_new  2014-04-18 12:34:31.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdebase4-wallpapers
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:KDE 4 Wallpapers
 License:LGPL-3.0+

++ kde-wallpapers-4.12.97.tar.xz - kde-wallpapers-4.13.0.tar.xz ++
/work/SRC/openSUSE:Factory/kdebase4-wallpapers/kde-wallpapers-4.12.97.tar.xz 
/work/SRC/openSUSE:Factory/.kdebase4-wallpapers.new/kde-wallpapers-4.13.0.tar.xz
 differ: char 46, line 1

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



commit kcharselect for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kcharselect for openSUSE:Factory 
checked in at 2014-04-18 11:32:52

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


Package is kcharselect

Changes:

--- /work/SRC/openSUSE:Factory/kcharselect/kcharselect.changes  2014-03-30 
11:58:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.kcharselect.new/kcharselect.changes 
2014-04-18 12:34:59.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:54:03 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kcharselect-4.12.97.tar.xz

New:

  kcharselect-4.13.0.tar.xz



Other differences:
--
++ kcharselect.spec ++
--- /var/tmp/diff_new_pack.pj0kNy/_old  2014-04-18 12:35:01.0 +0200
+++ /var/tmp/diff_new_pack.pj0kNy/_new  2014-04-18 12:35:01.0 +0200
@@ -22,7 +22,7 @@
 Summary:KDE Character Selector
 License:GPL-2.0+
 Group:  Productivity/Other
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kcharselect-4.12.97.tar.xz - kcharselect-4.13.0.tar.xz ++

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



commit jovie for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package jovie for openSUSE:Factory checked 
in at 2014-04-18 11:32:34

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


Package is jovie

Changes:

--- /work/SRC/openSUSE:Factory/jovie/jovie.changes  2014-03-30 
11:58:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.jovie.new/jovie.changes 2014-04-18 
12:34:35.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:55:02 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  jovie-4.12.97.tar.xz

New:

  jovie-4.13.0.tar.xz



Other differences:
--
++ jovie.spec ++
--- /var/tmp/diff_new_pack.axsH8j/_old  2014-04-18 12:34:38.0 +0200
+++ /var/tmp/diff_new_pack.axsH8j/_new  2014-04-18 12:34:38.0 +0200
@@ -27,7 +27,7 @@
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:jovie-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ jovie-4.12.97.tar.xz - jovie-4.13.0.tar.xz ++

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



commit kwalletmanager for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kwalletmanager for openSUSE:Factory 
checked in at 2014-04-18 11:32:40

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


Package is kwalletmanager

Changes:

--- /work/SRC/openSUSE:Factory/kwalletmanager/kwalletmanager.changes
2014-03-30 11:58:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.kwalletmanager.new/kwalletmanager.changes   
2014-04-18 12:34:44.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:54:43 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kwalletmanager-4.12.97.tar.xz

New:

  kwalletmanager-4.13.0.tar.xz



Other differences:
--
++ kwalletmanager.spec ++
--- /var/tmp/diff_new_pack.HcGCkY/_old  2014-04-18 12:34:46.0 +0200
+++ /var/tmp/diff_new_pack.HcGCkY/_new  2014-04-18 12:34:46.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kwalletmanager
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Wallet Management Tool
 License:GPL-2.0+

++ kwalletmanager-4.12.97.tar.xz - kwalletmanager-4.13.0.tar.xz ++

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



commit filelight for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package filelight for openSUSE:Factory 
checked in at 2014-04-18 11:32:55

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


Package is filelight

Changes:

--- /work/SRC/openSUSE:Factory/filelight/filelight.changes  2014-03-30 
11:57:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.filelight.new/filelight.changes 2014-04-18 
12:35:03.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:53:51 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  filelight-4.12.97.tar.xz

New:

  filelight-4.13.0.tar.xz



Other differences:
--
++ filelight.spec ++
--- /var/tmp/diff_new_pack.TBmLGm/_old  2014-04-18 12:35:06.0 +0200
+++ /var/tmp/diff_new_pack.TBmLGm/_new  2014-04-18 12:35:06.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   filelight
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Graphical disk usage viewer
 License:GPL-2.0 or GPL-3.0

++ filelight-4.12.97.tar.xz - filelight-4.13.0.tar.xz ++

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



commit kmouth for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kmouth for openSUSE:Factory checked 
in at 2014-04-18 11:32:22

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


Package is kmouth

Changes:

--- /work/SRC/openSUSE:Factory/kmouth/kmouth.changes2014-03-30 
11:58:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.kmouth.new/kmouth.changes   2014-04-18 
12:34:19.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:58:03 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kmouth-4.12.97.tar.xz

New:

  kmouth-4.13.0.tar.xz



Other differences:
--
++ kmouth.spec ++
--- /var/tmp/diff_new_pack.M1vlBu/_old  2014-04-18 12:34:21.0 +0200
+++ /var/tmp/diff_new_pack.M1vlBu/_new  2014-04-18 12:34:21.0 +0200
@@ -27,7 +27,7 @@
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kmouth-4.12.97.tar.xz - kmouth-4.13.0.tar.xz ++

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



commit mobipocket for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package mobipocket for openSUSE:Factory 
checked in at 2014-04-18 11:33:00

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


Package is mobipocket

Changes:

--- /work/SRC/openSUSE:Factory/mobipocket/mobipocket.changes2014-03-30 
11:57:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.mobipocket.new/mobipocket.changes   
2014-04-18 12:35:12.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:53:33 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kdegraphics-mobipocket-4.12.97.tar.xz

New:

  kdegraphics-mobipocket-4.13.0.tar.xz



Other differences:
--
++ mobipocket.spec ++
--- /var/tmp/diff_new_pack.rdUt44/_old  2014-04-18 12:35:15.0 +0200
+++ /var/tmp/diff_new_pack.rdUt44/_new  2014-04-18 12:35:15.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mobipocket
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:E-book plugin and library
 License:GPL-2.0+

++ kdegraphics-mobipocket-4.12.97.tar.xz - 
kdegraphics-mobipocket-4.13.0.tar.xz ++

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



commit kcalc for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kcalc for openSUSE:Factory checked 
in at 2014-04-18 11:32:53

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


Package is kcalc

Changes:

--- /work/SRC/openSUSE:Factory/kcalc/kcalc.changes  2014-03-30 
11:58:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.kcalc.new/kcalc.changes 2014-04-18 
12:35:01.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:53:57 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kcalc-4.12.97.tar.xz

New:

  kcalc-4.13.0.tar.xz



Other differences:
--
++ kcalc.spec ++
--- /var/tmp/diff_new_pack.CuSt1E/_old  2014-04-18 12:35:03.0 +0200
+++ /var/tmp/diff_new_pack.CuSt1E/_new  2014-04-18 12:35:03.0 +0200
@@ -25,7 +25,7 @@
 License:GPL-2.0+
 Group:  Productivity/Scientific/Math
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kcalc-4.12.97.tar.xz - kcalc-4.13.0.tar.xz ++

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



commit kdf for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kdf for openSUSE:Factory checked in 
at 2014-04-18 11:32:49

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


Package is kdf

Changes:

--- /work/SRC/openSUSE:Factory/kdf/kdf.changes  2014-03-30 11:58:07.0 
+0200
+++ /work/SRC/openSUSE:Factory/.kdf.new/kdf.changes 2014-04-18 
12:34:56.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:54:10 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kdf-4.12.97.tar.xz

New:

  kdf-4.13.0.tar.xz



Other differences:
--
++ kdf.spec ++
--- /var/tmp/diff_new_pack.LgDl4U/_old  2014-04-18 12:34:58.0 +0200
+++ /var/tmp/diff_new_pack.LgDl4U/_new  2014-04-18 12:34:58.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdf
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Disk Usage Viewer
 License:GPL-2.0+

++ kdf-4.12.97.tar.xz - kdf-4.13.0.tar.xz ++

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



commit kfloppy for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kfloppy for openSUSE:Factory checked 
in at 2014-04-18 11:32:48

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


Package is kfloppy

Changes:

--- /work/SRC/openSUSE:Factory/kfloppy/kfloppy.changes  2014-03-30 
11:58:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.kfloppy.new/kfloppy.changes 2014-04-18 
12:34:53.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:54:17 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kfloppy-4.12.97.tar.xz

New:

  kfloppy-4.13.0.tar.xz



Other differences:
--
++ kfloppy.spec ++
--- /var/tmp/diff_new_pack.cE0Mm2/_old  2014-04-18 12:34:56.0 +0200
+++ /var/tmp/diff_new_pack.cE0Mm2/_new  2014-04-18 12:34:56.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kfloppy
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Floppy Formatter
 License:GPL-2.0+

++ kfloppy-4.12.97.tar.xz - kfloppy-4.13.0.tar.xz ++

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



commit kgpg for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kgpg for openSUSE:Factory checked in 
at 2014-04-18 11:32:45

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


Package is kgpg

Changes:

--- /work/SRC/openSUSE:Factory/kgpg/kgpg.changes2014-03-30 
11:58:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.kgpg.new/kgpg.changes   2014-04-18 
12:34:51.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:54:23 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kgpg-4.12.97.tar.xz

New:

  kgpg-4.13.0.tar.xz



Other differences:
--
++ kgpg.spec ++
--- /var/tmp/diff_new_pack.vcF2FN/_old  2014-04-18 12:34:53.0 +0200
+++ /var/tmp/diff_new_pack.vcF2FN/_new  2014-04-18 12:34:53.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kgpg
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Encryption Tool
 License:GPL-2.0+

++ kgpg-4.12.97.tar.xz - kgpg-4.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgpg-4.12.97/main.cpp new/kgpg-4.13.0/main.cpp
--- old/kgpg-4.12.97/main.cpp   2014-03-24 18:23:26.0 +0100
+++ new/kgpg-4.13.0/main.cpp2014-04-08 22:13:33.0 +0200
@@ -23,7 +23,7 @@
 static const char description[] =
 I18N_NOOP(KGpg - simple gui for gpg\n\nKGpg was designed to make gpg 
very easy to use.\nI tried to make it as secure as possible.\nHope you enjoy 
it.);
 
-static const char version[] = 2.11.97;
+static const char version[] = 2.12.0;
 
 int main(int argc, char *argv[])
 {

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



commit kmousetool for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kmousetool for openSUSE:Factory 
checked in at 2014-04-18 11:32:23

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


Package is kmousetool

Changes:

--- /work/SRC/openSUSE:Factory/kmousetool/kmousetool.changes2014-03-30 
11:58:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.kmousetool.new/kmousetool.changes   
2014-04-18 12:34:21.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:57:56 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kmousetool-4.12.97.tar.xz

New:

  kmousetool-4.13.0.tar.xz



Other differences:
--
++ kmousetool.spec ++
--- /var/tmp/diff_new_pack.Q3Rfyg/_old  2014-04-18 12:34:24.0 +0200
+++ /var/tmp/diff_new_pack.Q3Rfyg/_new  2014-04-18 12:34:24.0 +0200
@@ -26,7 +26,7 @@
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kmousetool-4.12.97.tar.xz - kmousetool-4.13.0.tar.xz ++

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



commit libnepomukwidgets for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package libnepomukwidgets for 
openSUSE:Factory checked in at 2014-04-18 11:32:58

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


Package is libnepomukwidgets

Changes:

--- /work/SRC/openSUSE:Factory/libnepomukwidgets/libnepomukwidgets.changes  
2014-03-30 11:57:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.libnepomukwidgets.new/libnepomukwidgets.changes 
2014-04-18 12:35:09.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:53:39 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  nepomuk-widgets-4.12.97.tar.xz

New:

  nepomuk-widgets-4.13.0.tar.xz



Other differences:
--
++ libnepomukwidgets.spec ++
--- /var/tmp/diff_new_pack.PdBGqc/_old  2014-04-18 12:35:12.0 +0200
+++ /var/tmp/diff_new_pack.PdBGqc/_new  2014-04-18 12:35:12.0 +0200
@@ -32,7 +32,7 @@
 License:GPL-2.0+ and LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://nepomuk.kde.org/
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:nepomuk-widgets-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ nepomuk-widgets-4.12.97.tar.xz - nepomuk-widgets-4.13.0.tar.xz ++

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



commit kaccessible for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package kaccessible for openSUSE:Factory 
checked in at 2014-04-18 11:32:32

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


Package is kaccessible

Changes:

--- /work/SRC/openSUSE:Factory/kaccessible/kaccessible.changes  2014-03-30 
11:58:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.kaccessible.new/kaccessible.changes 
2014-04-18 12:34:33.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:55:08 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  kaccessible-4.12.97.tar.xz

New:

  kaccessible-4.13.0.tar.xz



Other differences:
--
++ kaccessible.spec ++
--- /var/tmp/diff_new_pack.pDRp13/_old  2014-04-18 12:34:35.0 +0200
+++ /var/tmp/diff_new_pack.pDRp13/_new  2014-04-18 12:34:35.0 +0200
@@ -27,7 +27,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:4.12.97
+Version:4.13.0
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kaccessible-4.12.97.tar.xz - kaccessible-4.13.0.tar.xz ++

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



commit superkaramba for openSUSE:Factory

2014-04-18 Thread h_root
Hello community,

here is the log from the commit of package superkaramba for openSUSE:Factory 
checked in at 2014-04-18 11:32:39

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


Package is superkaramba

Changes:

--- /work/SRC/openSUSE:Factory/superkaramba/superkaramba.changes
2014-03-30 11:58:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.superkaramba.new/superkaramba.changes   
2014-04-18 12:34:41.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 11 16:54:50 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+---

Old:

  superkaramba-4.12.97.tar.xz

New:

  superkaramba-4.13.0.tar.xz



Other differences:
--
++ superkaramba.spec ++
--- /var/tmp/diff_new_pack.GthvFp/_old  2014-04-18 12:34:43.0 +0200
+++ /var/tmp/diff_new_pack.GthvFp/_new  2014-04-18 12:34:43.0 +0200
@@ -20,7 +20,7 @@
 BuildRequires:  libkde4-devel
 BuildRequires:  libqimageblitz-devel
 BuildRequires:  python-devel
-Version:4.12.97
+Version:4.13.0
 Release:0
 Summary:Superkaramba allows you to have (interactive) desktop widgets
 License:GPL-2.0+

++ superkaramba-4.12.97.tar.xz - superkaramba-4.13.0.tar.xz ++

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



  1   2   >