commit freeciv for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package freeciv for openSUSE:Factory checked 
in at 2017-09-19 17:35:21

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


Package is "freeciv"

Tue Sep 19 17:35:21 2017 rev:4 rq:527027 version:2.5.9

Changes:

--- /work/SRC/openSUSE:Factory/freeciv/freeciv.changes  2017-08-14 
12:40:53.928596655 +0200
+++ /work/SRC/openSUSE:Factory/.freeciv.new/freeciv.changes 2017-09-19 
17:35:22.592446244 +0200
@@ -1,0 +2,9 @@
+Mon Sep 18 13:05:50 UTC 2017 - astie...@suse.com
+
+- Freeciv 2.5.9:
+  * Fix regression in 'scorelog' function: if one continues from
+a saved game, any scorelog saved before that point would get
+wiped  rather than appended to
+  * minor fixes to the Catalan and Russian localizations
+
+---

Old:

  freeciv-2.5.8.tar.bz2

New:

  freeciv-2.5.9.tar.bz2



Other differences:
--
++ freeciv.spec ++
--- /var/tmp/diff_new_pack.eynICB/_old  2017-09-19 17:35:24.512175309 +0200
+++ /var/tmp/diff_new_pack.eynICB/_new  2017-09-19 17:35:24.516174744 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   freeciv
-Version:2.5.8
+Version:2.5.9
 Release:0
 Summary:Free Civilization Clone
 License:GPL-2.0+

++ freeciv-2.5.8.tar.bz2 -> freeciv-2.5.9.tar.bz2 ++
/work/SRC/openSUSE:Factory/freeciv/freeciv-2.5.8.tar.bz2 
/work/SRC/openSUSE:Factory/.freeciv.new/freeciv-2.5.9.tar.bz2 differ: char 11, 
line 1






commit obs-service-set_version for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package obs-service-set_version for 
openSUSE:Factory checked in at 2017-09-19 17:35:26

Comparing /work/SRC/openSUSE:Factory/obs-service-set_version (Old)
 and  /work/SRC/openSUSE:Factory/.obs-service-set_version.new (New)


Package is "obs-service-set_version"

Tue Sep 19 17:35:26 2017 rev:28 rq:527308 version:0.5.6

Changes:

--- 
/work/SRC/openSUSE:Factory/obs-service-set_version/obs-service-set_version.changes
  2017-07-11 08:27:08.600463011 +0200
+++ 
/work/SRC/openSUSE:Factory/.obs-service-set_version.new/obs-service-set_version.changes
 2017-09-19 17:35:26.731862040 +0200
@@ -1,0 +2,8 @@
+Tue Sep 19 12:26:06 UTC 2017 - opensuse-packag...@opensuse.org
+
+- Avoid half-converting Debian native pkgs to non-native pkgs
+- Simplify the pip version handling
+- travis: Do not use "--use-mirrors" when using pip
+- travis: Test python 3.6
+
+---



Other differences:
--
++ _servicedata ++
--- /var/tmp/diff_new_pack.14AKyM/_old  2017-09-19 17:35:27.351774551 +0200
+++ /var/tmp/diff_new_pack.14AKyM/_new  2017-09-19 17:35:27.351774551 +0200
@@ -1,5 +1,5 @@
 
   
 g...@github.com:openSUSE/obs-service-set_version.git
-  3400eb450b66a33c49d240b4405e6d9e51e2c281
+  586b879838fd9f362372736d2878862bced025e6
 
\ No newline at end of file

++ obs-service-set_version-0.5.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/obs-service-set_version-0.5.6/.travis.yml 
new/obs-service-set_version-0.5.6/.travis.yml
--- old/obs-service-set_version-0.5.6/.travis.yml   2017-04-04 
22:09:32.0 +0200
+++ new/obs-service-set_version-0.5.6/.travis.yml   2017-09-19 
14:25:06.0 +0200
@@ -4,8 +4,7 @@
 language: python
 python:
   - "2.7"
-  - "3.3"
-  - "3.4"
+  - "3.6"
 
 # see http://docs.travis-ci.com/user/apt/#Adding-APT-Packages for adding 
packages in a container build
 addons:
@@ -15,7 +14,7 @@
 - dpkg
 
 install:
-  - pip install flake8 ddt unittest2 packaging --use-mirrors
+  - pip install flake8 ddt unittest2 packaging
 script:
   - flake8 set_version tests/
   - python -m unittest discover tests/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/obs-service-set_version-0.5.6/set_version 
new/obs-service-set_version-0.5.6/set_version
--- old/obs-service-set_version-0.5.6/set_version   2017-04-04 
22:09:32.0 +0200
+++ new/obs-service-set_version-0.5.6/set_version   2017-09-19 
14:25:06.0 +0200
@@ -136,6 +136,18 @@
 # Nothing found
 return None
 
+@staticmethod
+def _get_version_via_debian_dsc(filename):
+version = re.compile(r'^Version:([ \t\f\v]*)[^%\n\r]*', re.IGNORECASE)
+if os.path.exists(filename):
+with open(filename, "r") as f:
+for line in f:
+versionmatch = version.match(line)
+if versionmatch:
+return versionmatch.group(0)
+# Nothing found
+return None
+
 
 class PackageTypeDetector(object):
 @staticmethod
@@ -253,34 +265,16 @@
 
 v = parse(version_pip)
 if isinstance(v, Version):
-# this is a PEP440 conform version
-# TODO(toabctl): there's a epoch in PEP440. Howto handle these without
-# using rpm's epoch feature?
-parts = []
-# Release segment
-parts.append(".".join(str(x) for x in v._version.release))
-
-# Pre-release
-if v._version.pre is not None:
-parts.append("~")
-parts.append("".join(str(x) for x in v._version.pre))
-
-# Post-release
-if v._version.post is not None:
-parts.append(".post{0}".format(v._version.post[1]))
-
-# Development release
-if v._version.dev is not None:
-if v._version.pre is None:
-parts.append("~a0")
-parts.append("~dev{0}".format(v._version.dev[1]))
-
-# Local version segment
-if v._version.local is not None:
-parts.append(
-"+{0}".format(".".join(str(x) for x in v._version.local))
-)
-version_rpm = "".join(parts)
+if v.is_prerelease:
+v_rpm = v.public
+# we need to add the 'x' in front of alpha/beta release because
+# in the python world, "1.1a10" > "1.1.dev10"
+# but in the rpm world, "1.1~a10" < "1.1~dev10"
+v_rpm = v_rpm.replace('a', '~xalpha')
+v_rpm = v_rpm.replace('b', '~xbeta')
+v_rpm = v_rpm.replace('rc', '~xrc')
+v_rpm = v_rpm.replace('.dev', '~dev')
+ 

commit cloud-init for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package cloud-init for openSUSE:Factory 
checked in at 2017-09-19 17:35:23

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


Package is "cloud-init"

Tue Sep 19 17:35:23 2017 rev:38 rq:527050 version:0.7.8

Changes:

--- /work/SRC/openSUSE:Factory/cloud-init/cloud-init.changes2017-09-12 
19:56:20.747055119 +0200
+++ /work/SRC/openSUSE:Factory/.cloud-init.new/cloud-init.changes   
2017-09-19 17:35:25.652014441 +0200
@@ -1,0 +2,6 @@
+Mon Sep 18 09:39:26 CEST 2017 - ku...@suse.de
+
+- python_sitelib does not seem to exist for non single-spec
+  python modules, use python2_sitelib and python3_sitelib instead.
+
+---



Other differences:
--
++ cloud-init.spec ++
--- /var/tmp/diff_new_pack.Iqh0B2/_old  2017-09-19 17:35:26.439903245 +0200
+++ /var/tmp/diff_new_pack.Iqh0B2/_new  2017-09-19 17:35:26.439903245 +0200
@@ -262,7 +262,7 @@
 %if 0%{?suse_version} && 0%{?suse_version} <= 1315
 python setup.py install --root=%{buildroot} --prefix=%{_prefix} 
--install-lib=%{python_sitelib} --init-system=%{initsys}
 %else
-python3 setup.py install --root=%{buildroot} --prefix=%{_prefix} 
--install-lib=%{python_sitelib} --init-system=%{initsys}
+python3 setup.py install --root=%{buildroot} --prefix=%{_prefix} 
--install-lib=%{python3_sitelib} --init-system=%{initsys}
 %endif
 find %{buildroot} \( -name .gitignore -o -name .placeholder \) -delete
 # from debian install script
@@ -319,7 +319,11 @@
 
 # remove duplicate files
 %if 0%{?suse_version}
+%if 0%{?suse_version} <= 1315
 %fdupes -n %{buildroot}%{python_sitelib}
+%else
+%fdupes -n %{buildroot}%{python3_sitelib}
+%endif
 %endif
 
 %if 0%{?suse_version} && 0%{?suse_version} <= 1210
@@ -338,11 +342,12 @@
 %config(noreplace) %{_sysconfdir}/cloud/templates
 %{_sysconfdir}/dhcp/dhclient-exit-hooks.d/hook-dhclient
 %{_sysconfdir}/NetworkManager/dispatcher.d/hook-network-manager
-%{python_sitelib}/cloudinit
 %if 0%{?suse_version} && 0%{?suse_version} <= 1315
+%{python_sitelib}/cloudinit
 %{python_sitelib}/cloud_init-%{version}-py%{py_ver}.egg-info
 %else
-%{python_sitelib}/cloud_init-%{version}-py%{py3_ver}.egg-info
+%{python3_sitelib}/cloudinit
+%{python3_sitelib}/cloud_init-%{version}-py%{py3_ver}.egg-info
 %endif
 %{_prefix}/lib/cloud-init
 %if 0%{?suse_version} && 0%{?suse_version} <= 1210
@@ -394,6 +399,10 @@
 
 %files test
 %defattr(-,root,root)
+%if 0%{?suse_version} && 0%{?suse_version} <= 1315
 %{python_sitelib}/tests
+%else
+%{python3_sitelib}/tests
+%endif
 
 %changelog




commit git-annex for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package git-annex for openSUSE:Factory 
checked in at 2017-09-19 16:32:42

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


Package is "git-annex"

Tue Sep 19 16:32:42 2017 rev:12 rq:526943 version:6.20170818

Changes:

--- /work/SRC/openSUSE:Factory/git-annex/git-annex.changes  2017-08-22 
11:10:01.449033396 +0200
+++ /work/SRC/openSUSE:Factory/.git-annex.new/git-annex.changes 2017-09-19 
16:32:43.627991240 +0200
@@ -1,0 +2,6 @@
+Mon Sep 18 07:03:40 UTC 2017 - psim...@suse.com
+
+- The upstream release tarball changed in some trivial way. Copy
+  the new tarball into place to keep our version in sync.
+
+---



Other differences:
--
++ git-annex-6.20170818.tar.gz ++
/work/SRC/openSUSE:Factory/git-annex/git-annex-6.20170818.tar.gz 
/work/SRC/openSUSE:Factory/.git-annex.new/git-annex-6.20170818.tar.gz differ: 
char 2290078, line 8327




commit wordpass for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package wordpass for openSUSE:Factory 
checked in at 2017-09-19 16:32:40

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


Package is "wordpass"

Tue Sep 19 16:32:40 2017 rev:4 rq:526759 version:1.0.0.7

Changes:

--- /work/SRC/openSUSE:Factory/wordpass/wordpass.changes2017-08-31 
21:03:15.962070072 +0200
+++ /work/SRC/openSUSE:Factory/.wordpass.new/wordpass.changes   2017-09-19 
16:32:41.688265996 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ wordpass.spec ++
--- /var/tmp/diff_new_pack.t11onQ/_old  2017-09-19 16:32:42.204192917 +0200
+++ /var/tmp/diff_new_pack.t11onQ/_new  2017-09-19 16:32:42.204192917 +0200
@@ -22,8 +22,8 @@
 Release:0
 Summary:Dictionary-based password generator
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{name}
 Source0:
https://hackage.haskell.org/package/%{name}-%{version}/%{name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-containers-devel
@@ -37,7 +37,6 @@
 BuildRequires:  ghc-text-devel
 BuildRequires:  ghc-unix-compat-devel
 BuildRequires:  ghc-vector-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 This script reads dict word lists and generates word-based passwords.
@@ -60,7 +59,7 @@
 
 %package -n ghc-%{name}-devel
 Summary:Haskell %{name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   ghc-%{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -86,17 +85,14 @@
 %ghc_pkg_recache
 
 %files
-%defattr(-,root,root,-)
 %doc LICENSE
 %doc README.md changelog
 %{_bindir}/%{name}
 
 %files -n ghc-%{name} -f ghc-%{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files -n ghc-%{name}-devel -f ghc-%{name}-devel.files
-%defattr(-,root,root,-)
 %doc README.md changelog
 
 %changelog




commit ghc-serversession-backend-acid-state for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-serversession-backend-acid-state 
for openSUSE:Factory checked in at 2017-09-19 16:31:50

Comparing /work/SRC/openSUSE:Factory/ghc-serversession-backend-acid-state (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-serversession-backend-acid-state.new 
(New)


Package is "ghc-serversession-backend-acid-state"

Tue Sep 19 16:31:50 2017 rev:2 rq:526740 version:1.0.3

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-serversession-backend-acid-state/ghc-serversession-backend-acid-state.changes
2017-02-26 17:08:46.720245106 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-serversession-backend-acid-state.new/ghc-serversession-backend-acid-state.changes
   2017-09-19 16:32:10.000754517 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-serversession-backend-acid-state.spec ++
--- /var/tmp/diff_new_pack.jXgcdW/_old  2017-09-19 16:32:10.688657075 +0200
+++ /var/tmp/diff_new_pack.jXgcdW/_new  2017-09-19 16:32:10.692656508 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-serversession-backend-acid-state
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,11 +23,10 @@
 Release:0
 Summary:Storage backend for serversession using acid-state
 License:MIT
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-acid-state-devel
 BuildRequires:  ghc-containers-devel
 BuildRequires:  ghc-mtl-devel
@@ -35,11 +34,9 @@
 BuildRequires:  ghc-safecopy-devel
 BuildRequires:  ghc-serversession-devel
 BuildRequires:  ghc-unordered-containers-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-hspec-devel
 %endif
-# End cabal-rpm deps
 
 %description
 API docs and the README are available at
@@ -47,7 +44,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -60,20 +57,14 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %check
-%if %{with tests}
-%{cabal} test
-%endif
-
+%cabal_test
 
 %post devel
 %ghc_pkg_recache
@@ -82,11 +73,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc README.md
 
 %changelog




commit ghc-test-simple for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-test-simple for openSUSE:Factory 
checked in at 2017-09-19 16:32:13

Comparing /work/SRC/openSUSE:Factory/ghc-test-simple (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-test-simple.new (New)


Package is "ghc-test-simple"

Tue Sep 19 16:32:13 2017 rev:3 rq:526750 version:0.1.9

Changes:

--- /work/SRC/openSUSE:Factory/ghc-test-simple/ghc-test-simple.changes  
2016-12-06 14:26:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-test-simple.new/ghc-test-simple.changes 
2017-09-19 16:32:24.106756390 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-test-simple.spec ++
--- /var/tmp/diff_new_pack.wqA7Ej/_old  2017-09-19 16:32:24.674675944 +0200
+++ /var/tmp/diff_new_pack.wqA7Ej/_new  2017-09-19 16:32:24.678675377 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-test-simple
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,8 +23,8 @@
 Release:0
 Summary:Simple Perl inspired testing
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-QuickCheck-devel
@@ -32,7 +32,6 @@
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-state-plus-devel
 BuildRequires:  ghc-template-haskell-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-executable-path-devel
 BuildRequires:  ghc-process-devel
@@ -44,7 +43,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -72,11 +71,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc COPYING
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc changelog
 
 %changelog




commit gipeda for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package gipeda for openSUSE:Factory checked 
in at 2017-09-19 16:32:33

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


Package is "gipeda"

Tue Sep 19 16:32:33 2017 rev:3 rq:526757 version:0.3.3.2

Changes:

--- /work/SRC/openSUSE:Factory/gipeda/gipeda.changes2017-08-31 
21:02:55.480947709 +0200
+++ /work/SRC/openSUSE:Factory/.gipeda.new/gipeda.changes   2017-09-19 
16:32:37.324884058 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ gipeda.spec ++
--- /var/tmp/diff_new_pack.Jt4X1G/_old  2017-09-19 16:32:38.600703341 +0200
+++ /var/tmp/diff_new_pack.Jt4X1G/_new  2017-09-19 16:32:38.604702775 +0200
@@ -21,8 +21,8 @@
 Release:0
 Summary:Git Performance Dashboard
 License:MIT
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{name}
 Source0:
https://hackage.haskell.org/package/%{name}-%{version}/%{name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-aeson-devel
@@ -46,7 +46,6 @@
 BuildRequires:  ghc-unordered-containers-devel
 BuildRequires:  ghc-vector-devel
 BuildRequires:  ghc-yaml-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Gipeda is a a tool that presents data from your program’s benchmark suite (or
@@ -81,7 +80,6 @@
 %ghc_bin_install
 
 %files
-%defattr(-,root,root,-)
 %doc LICENSE
 %doc README.md
 %{_bindir}/%{name}




commit ghc-unagi-chan for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-unagi-chan for openSUSE:Factory 
checked in at 2017-09-19 16:32:19

Comparing /work/SRC/openSUSE:Factory/ghc-unagi-chan (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-unagi-chan.new (New)


Package is "ghc-unagi-chan"

Tue Sep 19 16:32:19 2017 rev:2 rq:526752 version:0.4.0.0

Changes:

--- /work/SRC/openSUSE:Factory/ghc-unagi-chan/ghc-unagi-chan.changes
2017-06-23 09:18:34.544646815 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-unagi-chan.new/ghc-unagi-chan.changes   
2017-09-19 16:32:27.834228395 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-unagi-chan.spec ++
--- /var/tmp/diff_new_pack.s0R304/_old  2017-09-19 16:32:29.290022183 +0200
+++ /var/tmp/diff_new_pack.s0R304/_new  2017-09-19 16:32:29.290022183 +0200
@@ -23,14 +23,13 @@
 Release:0
 Summary:Fast concurrent queues with a Chan-like API, and more
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-atomic-primops-devel
 BuildRequires:  ghc-primitive-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-containers-devel
 %endif
@@ -73,7 +72,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -101,11 +100,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc CHANGELOG.markdown
 
 %changelog




commit ghc-userid for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-userid for openSUSE:Factory 
checked in at 2017-09-19 16:32:24

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


Package is "ghc-userid"

Tue Sep 19 16:32:24 2017 rev:3 rq:526754 version:0.1.2.8

Changes:

--- /work/SRC/openSUSE:Factory/ghc-userid/ghc-userid.changes2017-02-06 
15:22:35.696449076 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-userid.new/ghc-userid.changes   
2017-09-19 16:32:30.693823336 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-userid.spec ++
--- /var/tmp/diff_new_pack.v7jvf6/_old  2017-09-19 16:32:31.641689073 +0200
+++ /var/tmp/diff_new_pack.v7jvf6/_new  2017-09-19 16:32:31.649687939 +0200
@@ -22,8 +22,8 @@
 Release:0
 Summary:The UserId type and useful instances for web development
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-aeson-devel
@@ -32,14 +32,13 @@
 BuildRequires:  ghc-safecopy-devel
 BuildRequires:  ghc-web-routes-devel
 BuildRequires:  ghc-web-routes-th-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Includes instances for SafeCopy, Lens, Boomerang, PathInfo and more.
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -64,10 +63,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit ghc-taggy-lens for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-taggy-lens for openSUSE:Factory 
checked in at 2017-09-19 16:32:11

Comparing /work/SRC/openSUSE:Factory/ghc-taggy-lens (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-taggy-lens.new (New)


Package is "ghc-taggy-lens"

Tue Sep 19 16:32:11 2017 rev:2 rq:526749 version:0.1.2

Changes:

--- /work/SRC/openSUSE:Factory/ghc-taggy-lens/ghc-taggy-lens.changes
2017-03-28 15:19:10.435469916 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-taggy-lens.new/ghc-taggy-lens.changes   
2017-09-19 16:32:22.994913882 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-taggy-lens.spec ++
--- /var/tmp/diff_new_pack.TaDNxQ/_old  2017-09-19 16:32:23.766804544 +0200
+++ /var/tmp/diff_new_pack.TaDNxQ/_new  2017-09-19 16:32:23.778802844 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-taggy-lens
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,22 +23,19 @@
 Release:0
 Summary:Lenses for the taggy html/xml parser
 License:BSD-3-Clause
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-lens-devel
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-taggy-devel
 BuildRequires:  ghc-text-devel
 BuildRequires:  ghc-unordered-containers-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-doctest-devel
 BuildRequires:  ghc-hspec-devel
 %endif
-# End cabal-rpm deps
 
 %description
 Lenses, folds, traversals and prisms for
@@ -71,7 +68,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -83,20 +80,14 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %check
-%if %{with tests}
-%{cabal} test
-%endif
-
+%cabal_test
 
 %post devel
 %ghc_pkg_recache
@@ -105,10 +96,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit misfortune for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package misfortune for openSUSE:Factory 
checked in at 2017-09-19 16:32:38

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


Package is "misfortune"

Tue Sep 19 16:32:38 2017 rev:2 rq:526758 version:0.1.1.2

Changes:

--- /work/SRC/openSUSE:Factory/misfortune/misfortune.changes2017-04-14 
13:32:41.973971411 +0200
+++ /work/SRC/openSUSE:Factory/.misfortune.new/misfortune.changes   
2017-09-19 16:32:38.716686912 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ misfortune.spec ++
--- /var/tmp/diff_new_pack.0jPBmV/_old  2017-09-19 16:32:39.268608734 +0200
+++ /var/tmp/diff_new_pack.0jPBmV/_new  2017-09-19 16:32:39.272608168 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package misfortune
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,11 +22,10 @@
 Release:0
 Summary:Fortune-mod clone
 License:SUSE-Public-Domain
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{name}
 Source0:
https://hackage.haskell.org/package/%{name}-%{version}/%{name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-cereal-devel
 BuildRequires:  ghc-directory-devel
@@ -41,8 +40,6 @@
 BuildRequires:  ghc-text-devel
 BuildRequires:  ghc-utf8-string-devel
 BuildRequires:  ghc-vector-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 Fortune-mod clone, in library and executable form.
@@ -56,7 +53,7 @@
 
 %package -n ghc-%{name}-devel
 Summary:Haskell %{name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   ghc-%{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -68,15 +65,12 @@
 %prep
 %setup -q
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post -n ghc-%{name}-devel
 %ghc_pkg_recache
 
@@ -84,7 +78,6 @@
 %ghc_pkg_recache
 
 %files
-%defattr(-,root,root,-)
 %{_bindir}/%{name}
 %{_bindir}/misfortune-strfile
 %dir %{_datadir}/%{name}-%{version}
@@ -177,9 +170,7 @@
 %{_datadir}/%{name}-%{version}/data/offensive/fortune-mod/vulgarity
 
 %files -n ghc-%{name} -f ghc-%{name}.files
-%defattr(-,root,root,-)
 
 %files -n ghc-%{name}-devel -f ghc-%{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit ghc-riak for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-riak for openSUSE:Factory 
checked in at 2017-09-19 16:31:45

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


Package is "ghc-riak"

Tue Sep 19 16:31:45 2017 rev:4 rq:526738 version:1.1.2.0

Changes:

--- /work/SRC/openSUSE:Factory/ghc-riak/ghc-riak.changes2017-08-31 
20:58:54.902749514 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-riak.new/ghc-riak.changes   2017-09-19 
16:32:08.344989060 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-riak.spec ++
--- /var/tmp/diff_new_pack.ZaTsee/_old  2017-09-19 16:32:08.876913712 +0200
+++ /var/tmp/diff_new_pack.ZaTsee/_new  2017-09-19 16:32:08.876913712 +0200
@@ -23,8 +23,8 @@
 Release:0
 Summary:A Haskell client for the Riak decentralized data store
 License:Apache-2.0
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-aeson-devel
@@ -56,7 +56,6 @@
 BuildRequires:  ghc-transformers-devel
 BuildRequires:  ghc-unordered-containers-devel
 BuildRequires:  ghc-vector-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-HUnit-devel
 BuildRequires:  ghc-QuickCheck-devel
@@ -98,7 +97,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -127,11 +126,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc Changes.md README.markdown
 
 %changelog




commit ghc-pwstore-purehaskell for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-pwstore-purehaskell for 
openSUSE:Factory checked in at 2017-09-19 16:31:43

Comparing /work/SRC/openSUSE:Factory/ghc-pwstore-purehaskell (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-pwstore-purehaskell.new (New)


Package is "ghc-pwstore-purehaskell"

Tue Sep 19 16:31:43 2017 rev:2 rq:526737 version:2.1.4

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-pwstore-purehaskell/ghc-pwstore-purehaskell.changes
  2016-11-15 17:57:23.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-pwstore-purehaskell.new/ghc-pwstore-purehaskell.changes
 2017-09-19 16:32:07.557100666 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-pwstore-purehaskell.spec ++
--- /var/tmp/diff_new_pack.xfAtvv/_old  2017-09-19 16:32:08.065028717 +0200
+++ /var/tmp/diff_new_pack.xfAtvv/_new  2017-09-19 16:32:08.073027584 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-pwstore-purehaskell
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,19 +22,16 @@
 Release:0
 Summary:Secure password storage, in pure Haskell
 License:BSD-3-Clause
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-SHA-devel
 BuildRequires:  ghc-base64-bytestring-devel
 BuildRequires:  ghc-byteable-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-random-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 To store passwords securely, they should be salted, then hashed with a slow
@@ -47,7 +44,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -60,15 +57,12 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 
@@ -76,11 +70,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc README.md
 
 %changelog




commit ghc-vector-fftw for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-vector-fftw for openSUSE:Factory 
checked in at 2017-09-19 16:32:28

Comparing /work/SRC/openSUSE:Factory/ghc-vector-fftw (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-vector-fftw.new (New)


Package is "ghc-vector-fftw"

Tue Sep 19 16:32:28 2017 rev:4 rq:526755 version:0.1.3.8

Changes:

--- /work/SRC/openSUSE:Factory/ghc-vector-fftw/ghc-vector-fftw.changes  
2017-07-05 23:59:52.252124885 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-vector-fftw.new/ghc-vector-fftw.changes 
2017-09-19 16:32:31.781669244 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-vector-fftw.spec ++
--- /var/tmp/diff_new_pack.o8aOl5/_old  2017-09-19 16:32:33.389441506 +0200
+++ /var/tmp/diff_new_pack.o8aOl5/_new  2017-09-19 16:32:33.393440940 +0200
@@ -22,8 +22,8 @@
 Release:0
 Summary:A binding to the fftw library for one-dimensional vectors
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  fftw3-devel
 BuildRequires:  ghc-Cabal-devel
@@ -31,7 +31,6 @@
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-storable-complex-devel
 BuildRequires:  ghc-vector-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 This package provides bindings to the fftw library for one-dimensional vectors.
@@ -50,7 +49,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   fftw3-devel
 Requires:   ghc-compiler = %{ghc_version}
@@ -76,10 +75,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit ghc-unique for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-unique for openSUSE:Factory 
checked in at 2017-09-19 16:32:22

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


Package is "ghc-unique"

Tue Sep 19 16:32:22 2017 rev:2 rq:526753 version:0

Changes:

--- /work/SRC/openSUSE:Factory/ghc-unique/ghc-unique.changes2017-08-31 
20:49:50.575207993 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-unique.new/ghc-unique.changes   
2017-09-19 16:32:29.817947403 +0200
@@ -1,0 +2,5 @@
+Sun Sep 17 10:32:32 UTC 2017 - psim...@suse.com
+
+- Trivial spec file cosmetic; no functional change.
+
+---



Other differences:
--
++ ghc-unique.spec ++
--- /var/tmp/diff_new_pack.mQfz90/_old  2017-09-19 16:32:30.525847130 +0200
+++ /var/tmp/diff_new_pack.mQfz90/_new  2017-09-19 16:32:30.529846563 +0200
@@ -22,8 +22,8 @@
 Release:0
 Summary:Fully concurrent unique identifiers
 License:BSD-2-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
@@ -35,7 +35,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}




commit ghc-type-eq for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-type-eq for openSUSE:Factory 
checked in at 2017-09-19 16:32:16

Comparing /work/SRC/openSUSE:Factory/ghc-type-eq (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-type-eq.new (New)


Package is "ghc-type-eq"

Tue Sep 19 16:32:16 2017 rev:2 rq:526751 version:0.5

Changes:

--- /work/SRC/openSUSE:Factory/ghc-type-eq/ghc-type-eq.changes  2017-01-18 
21:36:05.037147377 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-type-eq.new/ghc-type-eq.changes 
2017-09-19 16:32:24.794658948 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---

Old:

  1.cabal

New:

  type-eq.cabal



Other differences:
--
++ ghc-type-eq.spec ++
--- /var/tmp/diff_new_pack.PNCZUz/_old  2017-09-19 16:32:25.338581902 +0200
+++ /var/tmp/diff_new_pack.PNCZUz/_new  2017-09-19 16:32:25.342581335 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-type-eq
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,16 +22,13 @@
 Release:0
 Summary:Type equality evidence you can carry around
 License:BSD-3-Clause
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal
-# Begin cabal-rpm deps:
+Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
 BuildRequires:  cpphs
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 This package provides types and functions to store and manipulate evidence of
@@ -70,7 +67,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -83,15 +80,12 @@
 %setup -q -n %{pkg_name}-%{version}
 cp -p %{SOURCE1} %{pkg_name}.cabal
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 
@@ -99,10 +93,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog

++ type-eq.cabal ++
name:  type-eq
category:  Type System
version:   0.5
x-revision: 1
author:Gábor Lehel
maintainer:Gábor Lehel 
homepage:  http://github.com/glaebhoerl/type-eq
copyright: Copyright (C) 2012-2013 Gábor Lehel
license:   BSD3
license-file:  LICENSE
stability: experimental
cabal-version: >= 1.10
build-type:Simple
synopsis:  Type equality evidence you can carry around
description:
This package provides types and functions to store and manipulate evidence 
of equality between types.
.
To take advantage of kind polymorphism when it is available but not require 
it, it is split into the following primary modules:
.
- @/Type.Eq/@: Types and functions which can be kind-polymorphic if 
@PolyKinds@ are available, but are specific to kind @*@ otherwise.
.
- @/Type.Eq.Higher/@: Kind-monomorphic types and functions of higher 
kind, up to @* -> * -> *@.
.
- @/Type.Eq.Poly/@: Combinators that require kind polymorphism. This 
module is only available if @PolyKinds@ are available.
.
Major required extensions: @GADTs@, @TypeFamilies@ (for @~@), @Rank2Types@, 
@TypeOperators@
.
Optional extensions: @PolyKinds@ (GHC 7.6+)
.
Minimum GHC: 6.10
.
Related packages:
.
- 
.
- 
.
- 
.
- 
.
-  
(@Data.Category.Discrete@)

extra-source-files: macros.h

source-repository head
type:  git
location:  git://github.com/glaebhoerl/type-eq.git

commit ghc-syb-with-class for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-syb-with-class for 
openSUSE:Factory checked in at 2017-09-19 16:32:04

Comparing /work/SRC/openSUSE:Factory/ghc-syb-with-class (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-syb-with-class.new (New)


Package is "ghc-syb-with-class"

Tue Sep 19 16:32:04 2017 rev:2 rq:526746 version:0.6.1.7

Changes:

--- /work/SRC/openSUSE:Factory/ghc-syb-with-class/ghc-syb-with-class.changes
2016-11-02 12:41:39.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-syb-with-class.new/ghc-syb-with-class.changes   
2017-09-19 16:32:18.867498532 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-syb-with-class.spec ++
--- /var/tmp/diff_new_pack.TMaPXa/_old  2017-09-19 16:32:19.803365966 +0200
+++ /var/tmp/diff_new_pack.TMaPXa/_new  2017-09-19 16:32:19.807365399 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-syb-with-class
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,18 +22,15 @@
 Release:0
 Summary:Scrap Your Boilerplate With Class
 License:BSD-3-Clause
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-array-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-containers-devel
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-template-haskell-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 Classes, and Template Haskell code to generate instances, for the Scrap Your
@@ -41,7 +38,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -53,15 +50,12 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 
@@ -69,10 +63,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit ghc-success for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-success for openSUSE:Factory 
checked in at 2017-09-19 16:32:02

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


Package is "ghc-success"

Tue Sep 19 16:32:02 2017 rev:2 rq:526745 version:0.2.6

Changes:

--- /work/SRC/openSUSE:Factory/ghc-success/ghc-success.changes  2017-02-03 
17:40:00.965041568 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-success.new/ghc-success.changes 
2017-09-19 16:32:16.459839578 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-success.spec ++
--- /var/tmp/diff_new_pack.ToHQ4y/_old  2017-09-19 16:32:17.055755166 +0200
+++ /var/tmp/diff_new_pack.ToHQ4y/_new  2017-09-19 16:32:17.055755166 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-success
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,18 +22,15 @@
 Release:0
 Summary:A version of Either specialised for encoding of success or 
failure
 License:MIT
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-monad-control-devel
 BuildRequires:  ghc-mtl-devel
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-transformers-base-devel
 BuildRequires:  ghc-transformers-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 The primary motivation for creation of this package was the need for the
@@ -43,7 +40,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -55,15 +52,12 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 
@@ -71,10 +65,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit ghc-wavefront for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-wavefront for openSUSE:Factory 
checked in at 2017-09-19 16:32:31

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


Package is "ghc-wavefront"

Tue Sep 19 16:32:31 2017 rev:3 rq:526756 version:0.7.1

Changes:

--- /work/SRC/openSUSE:Factory/ghc-wavefront/ghc-wavefront.changes  
2017-05-10 20:49:11.750037470 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-wavefront.new/ghc-wavefront.changes 
2017-09-19 16:32:33.565416579 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-wavefront.spec ++
--- /var/tmp/diff_new_pack.yWp3MU/_old  2017-09-19 16:32:34.365303277 +0200
+++ /var/tmp/diff_new_pack.yWp3MU/_new  2017-09-19 16:32:34.369302710 +0200
@@ -22,8 +22,8 @@
 Release:0
 Summary:Wavefront OBJ loader
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-attoparsec-devel
@@ -34,7 +34,6 @@
 BuildRequires:  ghc-text-devel
 BuildRequires:  ghc-transformers-devel
 BuildRequires:  ghc-vector-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 A Wavefront OBJ loader. Currently supports polygonal information. More could be
@@ -43,7 +42,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -68,11 +67,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc CHANGELOG.md
 
 %changelog




commit ghc-taggy for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-taggy for openSUSE:Factory 
checked in at 2017-09-19 16:32:08

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


Package is "ghc-taggy"

Tue Sep 19 16:32:08 2017 rev:3 rq:526748 version:0.2.0

Changes:

--- /work/SRC/openSUSE:Factory/ghc-taggy/ghc-taggy.changes  2017-08-31 
20:49:46.447787356 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-taggy.new/ghc-taggy.changes 2017-09-19 
16:32:22.247019822 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-taggy.spec ++
--- /var/tmp/diff_new_pack.MST7wG/_old  2017-09-19 16:32:22.846934843 +0200
+++ /var/tmp/diff_new_pack.MST7wG/_new  2017-09-19 16:32:22.850934277 +0200
@@ -23,8 +23,8 @@
 Release:0
 Summary:Efficient and simple HTML/XML parsing library
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
 Patch1: fix-lts-9-build.patch
@@ -37,7 +37,6 @@
 BuildRequires:  ghc-text-devel
 BuildRequires:  ghc-unordered-containers-devel
 BuildRequires:  ghc-vector-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-directory-devel
 BuildRequires:  ghc-hspec-attoparsec-devel
@@ -78,7 +77,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -109,7 +108,6 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 %{_bindir}/%{pkg_name}
 %dir %{_datadir}/%{pkg_name}-%{version}
@@ -117,7 +115,6 @@
 %{_datadir}/%{pkg_name}-%{version}/html_files/*.html
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc example
 
 %changelog




commit ghc-spoon for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-spoon for openSUSE:Factory 
checked in at 2017-09-19 16:31:55

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


Package is "ghc-spoon"

Tue Sep 19 16:31:55 2017 rev:2 rq:526742 version:0.3.1

Changes:

--- /work/SRC/openSUSE:Factory/ghc-spoon/ghc-spoon.changes  2016-11-02 
12:38:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-spoon.new/ghc-spoon.changes 2017-09-19 
16:32:13.284289399 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---

Old:

  1.cabal

New:

  spoon.cabal



Other differences:
--
++ ghc-spoon.spec ++
--- /var/tmp/diff_new_pack.EHKw6G/_old  2017-09-19 16:32:14.068178360 +0200
+++ /var/tmp/diff_new_pack.EHKw6G/_new  2017-09-19 16:32:14.068178360 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-spoon
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,16 +22,13 @@
 Release:0
 Summary:Catch errors thrown from pure computations
 License:BSD-3-Clause
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal
+Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-deepseq-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 Takes an error-throwing expression and puts it back in the Maybe it belongs in.
@@ -41,7 +38,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -54,15 +51,12 @@
 %setup -q -n %{pkg_name}-%{version}
 cp -p %{SOURCE1} %{pkg_name}.cabal
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 
@@ -70,10 +64,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog

++ spoon.cabal ++
name:   spoon
version:0.3.1
x-revision: 1
license:BSD3
license-file:   LICENSE
author: Matt Morrow, Dan Peebles, Liyang HU
maintainer: Liyang HU 
stability:  experimental
category:   Error handling
synopsis:   Catch errors thrown from pure computations.
copyright:  2009 Matt Morrow & Dan Peebles, 2013 Liyang HU
description:
Takes an error-throwing expression and puts it back in the Maybe it belongs 
in.
.
Note that this suffers from the 
 problem. Buyer beware.
build-type: Simple
cabal-version:  >= 1.2

library
  build-depends:
base >= 4 && < 5,
deepseq >= 1
  exposed-modules:
Control.Spoon
  ghc-options: -Wall




commit ghc-syz for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-syz for openSUSE:Factory checked 
in at 2017-09-19 16:32:07

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


Package is "ghc-syz"

Tue Sep 19 16:32:07 2017 rev:2 rq:526747 version:0.2.0.0

Changes:

--- /work/SRC/openSUSE:Factory/ghc-syz/ghc-syz.changes  2017-02-03 
17:40:05.652378120 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-syz.new/ghc-syz.changes 2017-09-19 
16:32:19.947345571 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-syz.spec ++
--- /var/tmp/diff_new_pack.AiUUpq/_old  2017-09-19 16:32:20.795225468 +0200
+++ /var/tmp/diff_new_pack.AiUUpq/_new  2017-09-19 16:32:20.799224901 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-syz
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,15 +22,12 @@
 Release:0
 Summary:Scrap Your Zippers
 License:BSD-3-Clause
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-rpm-macros
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-syb-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 This package contains the generic zipper system described in the Scrap Your
@@ -41,7 +38,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -53,15 +50,12 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 
@@ -69,11 +63,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc README
 
 %changelog




commit ghc-stb-image-redux for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-stb-image-redux for 
openSUSE:Factory checked in at 2017-09-19 16:31:59

Comparing /work/SRC/openSUSE:Factory/ghc-stb-image-redux (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-stb-image-redux.new (New)


Package is "ghc-stb-image-redux"

Tue Sep 19 16:31:59 2017 rev:2 rq:526744 version:0.2.1.0

Changes:

--- /work/SRC/openSUSE:Factory/ghc-stb-image-redux/ghc-stb-image-redux.changes  
2017-04-11 09:48:30.152777290 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-stb-image-redux.new/ghc-stb-image-redux.changes 
2017-09-19 16:32:15.811931355 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-stb-image-redux.spec ++
--- /var/tmp/diff_new_pack.MstcEE/_old  2017-09-19 16:32:16.311860540 +0200
+++ /var/tmp/diff_new_pack.MstcEE/_new  2017-09-19 16:32:16.315859973 +0200
@@ -23,14 +23,13 @@
 Release:0
 Summary:Image loading and writing microlibrary
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/2.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-vector-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-hspec-devel
 %endif
@@ -40,7 +39,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -70,10 +69,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit ghc-state-plus for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-state-plus for openSUSE:Factory 
checked in at 2017-09-19 16:31:56

Comparing /work/SRC/openSUSE:Factory/ghc-state-plus (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-state-plus.new (New)


Package is "ghc-state-plus"

Tue Sep 19 16:31:56 2017 rev:3 rq:526743 version:0.1.3

Changes:

--- /work/SRC/openSUSE:Factory/ghc-state-plus/ghc-state-plus.changes
2017-06-04 01:55:24.909614837 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-state-plus.new/ghc-state-plus.changes   
2017-09-19 16:32:14.600103012 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-state-plus.spec ++
--- /var/tmp/diff_new_pack.4LY56k/_old  2017-09-19 16:32:15.699947218 +0200
+++ /var/tmp/diff_new_pack.4LY56k/_new  2017-09-19 16:32:15.703946651 +0200
@@ -23,13 +23,12 @@
 Release:0
 Summary:MonadPlus for StateT
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-mtl-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-QuickCheck-devel
 BuildRequires:  ghc-checkers-devel
@@ -40,7 +39,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -68,11 +67,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc COPYING
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc changelog
 
 %changelog




commit ghc-permutation for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-permutation for openSUSE:Factory 
checked in at 2017-09-19 16:31:36

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


Package is "ghc-permutation"

Tue Sep 19 16:31:36 2017 rev:2 rq:526734 version:0.5.0.5

Changes:

--- /work/SRC/openSUSE:Factory/ghc-permutation/ghc-permutation.changes  
2016-10-22 13:15:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-permutation.new/ghc-permutation.changes 
2017-09-19 16:32:03.945612243 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-permutation.spec ++
--- /var/tmp/diff_new_pack.NkViTQ/_old  2017-09-19 16:32:04.905476276 +0200
+++ /var/tmp/diff_new_pack.NkViTQ/_new  2017-09-19 16:32:04.917474576 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-permutation
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,15 +22,12 @@
 Release:0
 Summary:A library for permutations and combinations
 License:BSD-3-Clause
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-QuickCheck-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 This library includes data types for storing permutations and combinations.
@@ -47,7 +44,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -59,15 +56,12 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 
@@ -75,11 +69,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc NEWS examples
 
 %changelog




commit ghc-smtLib for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-smtLib for openSUSE:Factory 
checked in at 2017-09-19 16:31:52

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


Package is "ghc-smtLib"

Tue Sep 19 16:31:52 2017 rev:2 rq:526741 version:1.0.8

Changes:

--- /work/SRC/openSUSE:Factory/ghc-smtLib/ghc-smtLib.changes2017-04-12 
18:09:03.570675833 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-smtLib.new/ghc-smtLib.changes   
2017-09-19 16:32:10.792642345 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-smtLib.spec ++
--- /var/tmp/diff_new_pack.63ryAg/_old  2017-09-19 16:32:11.328566431 +0200
+++ /var/tmp/diff_new_pack.63ryAg/_new  2017-09-19 16:32:11.332565864 +0200
@@ -22,20 +22,19 @@
 Release:0
 Summary:A library for working with the SMTLIB format
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-pretty-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 A library for working with the SMTLIB format.
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -60,11 +59,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc CHANGES
 
 %changelog




commit ghc-riak-protobuf for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-riak-protobuf for 
openSUSE:Factory checked in at 2017-09-19 16:31:47

Comparing /work/SRC/openSUSE:Factory/ghc-riak-protobuf (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-riak-protobuf.new (New)


Package is "ghc-riak-protobuf"

Tue Sep 19 16:31:47 2017 rev:2 rq:526739 version:0.22.0.0

Changes:

--- /work/SRC/openSUSE:Factory/ghc-riak-protobuf/ghc-riak-protobuf.changes  
2017-05-17 10:49:11.814357876 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-riak-protobuf.new/ghc-riak-protobuf.changes 
2017-09-19 16:32:08.976899548 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-riak-protobuf.spec ++
--- /var/tmp/diff_new_pack.ZUu2f7/_old  2017-09-19 16:32:09.480828166 +0200
+++ /var/tmp/diff_new_pack.ZUu2f7/_new  2017-09-19 16:32:09.484827599 +0200
@@ -22,8 +22,8 @@
 Release:0
 Summary:Haskell types for the Riak protocol buffer API
 License:Apache-2.0
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-array-devel
@@ -31,7 +31,6 @@
 BuildRequires:  ghc-protocol-buffers-descriptor-devel
 BuildRequires:  ghc-protocol-buffers-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 A set of Haskell types for interacting with the protocol buffer API of the Riak
@@ -39,7 +38,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -64,11 +63,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc Changes.md README.markdown
 
 %changelog




commit ghc-ixset for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-ixset for openSUSE:Factory 
checked in at 2017-09-19 16:31:16

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


Package is "ghc-ixset"

Tue Sep 19 16:31:16 2017 rev:2 rq:526725 version:1.0.7

Changes:

--- /work/SRC/openSUSE:Factory/ghc-ixset/ghc-ixset.changes  2017-02-03 
17:39:17.195236761 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-ixset.new/ghc-ixset.changes 2017-09-19 
16:31:52.995163416 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-ixset.spec ++
--- /var/tmp/diff_new_pack.BKWOXM/_old  2017-09-19 16:31:53.699063706 +0200
+++ /var/tmp/diff_new_pack.BKWOXM/_new  2017-09-19 16:31:53.703063139 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-ixset
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,26 +22,23 @@
 Release:0
 Summary:Efficient relational queries on Haskell sets
 License:BSD-3-Clause
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-containers-devel
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-safecopy-devel
 BuildRequires:  ghc-syb-devel
 BuildRequires:  ghc-syb-with-class-devel
 BuildRequires:  ghc-template-haskell-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 Create and query sets that are indexed by multiple indices.
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -53,15 +50,12 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 
@@ -69,10 +63,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc COPYING
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit ghc-pure-cdb for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-pure-cdb for openSUSE:Factory 
checked in at 2017-09-19 16:31:41

Comparing /work/SRC/openSUSE:Factory/ghc-pure-cdb (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-pure-cdb.new (New)


Package is "ghc-pure-cdb"

Tue Sep 19 16:31:41 2017 rev:2 rq:526736 version:0.1.2

Changes:

--- /work/SRC/openSUSE:Factory/ghc-pure-cdb/ghc-pure-cdb.changes
2016-10-22 13:18:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-pure-cdb.new/ghc-pure-cdb.changes   
2017-09-19 16:32:06.413262694 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-pure-cdb.spec ++
--- /var/tmp/diff_new_pack.KcHdfu/_old  2017-09-19 16:32:07.421119928 +0200
+++ /var/tmp/diff_new_pack.KcHdfu/_new  2017-09-19 16:32:07.425119362 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-pure-cdb
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,11 +23,10 @@
 Release:0
 Summary:Another pure-haskell CDB (Constant Database) implementation
 License:BSD-3-Clause
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-binary-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-containers-devel
@@ -35,12 +34,10 @@
 BuildRequires:  ghc-mtl-devel
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-vector-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-Unixutils-devel
 BuildRequires:  ghc-test-simple-devel
 %endif
-# End cabal-rpm deps
 
 %description
 A library for reading and writing CDB (Constant Database) files.
@@ -59,7 +56,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -71,20 +68,14 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %check
-%if %{with tests}
-%{cabal} test
-%endif
-
+%cabal_test
 
 %post devel
 %ghc_pkg_recache
@@ -93,11 +84,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc COPYING
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc README
 
 %changelog




commit ghc-nettle for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-nettle for openSUSE:Factory 
checked in at 2017-09-19 16:31:34

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


Package is "ghc-nettle"

Tue Sep 19 16:31:34 2017 rev:2 rq:526733 version:0.2.0

Changes:

--- /work/SRC/openSUSE:Factory/ghc-nettle/ghc-nettle.changes2017-03-24 
01:58:59.460515748 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-nettle.new/ghc-nettle.changes   
2017-09-19 16:32:02.485819027 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-nettle.spec ++
--- /var/tmp/diff_new_pack.PfuTuk/_old  2017-09-19 16:32:03.849625840 +0200
+++ /var/tmp/diff_new_pack.PfuTuk/_new  2017-09-19 16:32:03.853625274 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-nettle
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,8 +23,8 @@
 Release:0
 Summary:Safe nettle binding
 License:MIT
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-byteable-devel
@@ -35,7 +35,6 @@
 BuildRequires:  ghc-tagged-devel
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(nettle)
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-HUnit-devel
 BuildRequires:  ghc-QuickCheck-devel
@@ -53,7 +52,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires:   pkgconfig
@@ -83,11 +82,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc COPYING
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc README.md
 
 %changelog




commit ghc-lazy-csv for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-lazy-csv for openSUSE:Factory 
checked in at 2017-09-19 16:31:19

Comparing /work/SRC/openSUSE:Factory/ghc-lazy-csv (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-lazy-csv.new (New)


Package is "ghc-lazy-csv"

Tue Sep 19 16:31:19 2017 rev:2 rq:526726 version:0.5.1

Changes:

--- /work/SRC/openSUSE:Factory/ghc-lazy-csv/ghc-lazy-csv.changes
2017-03-24 01:59:05.287690796 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-lazy-csv.new/ghc-lazy-csv.changes   
2017-09-19 16:31:54.422961162 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-lazy-csv.spec ++
--- /var/tmp/diff_new_pack.zQrmtB/_old  2017-09-19 16:31:54.950886380 +0200
+++ /var/tmp/diff_new_pack.zQrmtB/_new  2017-09-19 16:31:54.954885812 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-lazy-csv
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,13 +22,12 @@
 Release:0
 Summary:Efficient lazy parsers for CSV (comma-separated values)
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 The CSV format is defined by RFC 4180. These efficient lazy parsers (String and
@@ -40,7 +39,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -65,12 +64,10 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENCE-BSD3
 %{_bindir}/csvSelect
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc changelog.html
 
 %changelog




commit ghc-monadLib for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-monadLib for openSUSE:Factory 
checked in at 2017-09-19 16:31:26

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


Package is "ghc-monadLib"

Tue Sep 19 16:31:26 2017 rev:2 rq:526729 version:3.7.3

Changes:

--- /work/SRC/openSUSE:Factory/ghc-monadLib/ghc-monadLib.changes
2016-10-22 13:22:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-monadLib.new/ghc-monadLib.changes   
2017-09-19 16:31:56.650645601 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-monadLib.spec ++
--- /var/tmp/diff_new_pack.qL68y6/_old  2017-09-19 16:31:57.154574217 +0200
+++ /var/tmp/diff_new_pack.qL68y6/_new  2017-09-19 16:31:57.162573084 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-monadLib
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,19 +22,18 @@
 Release:0
 Summary:A collection of monad transformers
 License:MIT
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 A collection of monad transformers.
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -59,11 +58,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
-%doc README
+%doc CHANGES README
 
 %changelog




commit ghc-RNAlien for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-RNAlien for openSUSE:Factory 
checked in at 2017-09-19 16:30:20

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


Package is "ghc-RNAlien"

Tue Sep 19 16:30:20 2017 rev:3 rq:526706 version:1.3.7

Changes:

--- /work/SRC/openSUSE:Factory/ghc-RNAlien/ghc-RNAlien.changes  2017-04-26 
21:44:32.300766503 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-RNAlien.new/ghc-RNAlien.changes 
2017-09-19 16:31:36.413512306 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-RNAlien.spec ++
--- /var/tmp/diff_new_pack.oUDMEq/_old  2017-09-19 16:31:36.945436955 +0200
+++ /var/tmp/diff_new_pack.oUDMEq/_new  2017-09-19 16:31:36.953435822 +0200
@@ -22,8 +22,8 @@
 Release:0
 Summary:Unsupervized construction of RNA family models
 License:GPL-3.0+
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  chrpath
 BuildRequires:  ghc-BlastHTTP-devel
@@ -62,7 +62,6 @@
 BuildRequires:  ghc-time-devel
 BuildRequires:  ghc-transformers-devel
 BuildRequires:  ghc-vector-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 RNAlien is a tool for automatic construction of RNAfamily models from a single
@@ -106,7 +105,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -132,7 +131,6 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 %{_bindir}/RNAcentralHTTPRequest
 %{_bindir}/%{pkg_name}
@@ -140,6 +138,5 @@
 %{_bindir}/cmsearchToBed
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit ghc-pipes-csv for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-pipes-csv for openSUSE:Factory 
checked in at 2017-09-19 16:31:39

Comparing /work/SRC/openSUSE:Factory/ghc-pipes-csv (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-pipes-csv.new (New)


Package is "ghc-pipes-csv"

Tue Sep 19 16:31:39 2017 rev:2 rq:526735 version:1.4.3

Changes:

--- /work/SRC/openSUSE:Factory/ghc-pipes-csv/ghc-pipes-csv.changes  
2016-10-06 12:41:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-pipes-csv.new/ghc-pipes-csv.changes 
2017-09-19 16:32:05.161440018 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-pipes-csv.spec ++
--- /var/tmp/diff_new_pack.NAItvZ/_old  2017-09-19 16:32:06.325275158 +0200
+++ /var/tmp/diff_new_pack.NAItvZ/_new  2017-09-19 16:32:06.329274591 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-pipes-csv
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,11 +23,10 @@
 Release:0
 Summary:Fast, streaming csv parser
 License:MIT
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-blaze-builder-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-cassava-devel
@@ -35,7 +34,6 @@
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-unordered-containers-devel
 BuildRequires:  ghc-vector-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-HUnit-devel
 BuildRequires:  ghc-MissingH-devel
@@ -43,14 +41,13 @@
 BuildRequires:  ghc-test-framework-devel
 BuildRequires:  ghc-test-framework-hunit-devel
 %endif
-# End cabal-rpm deps
 
 %description
 `pipes-csv` is a streaming csv parser built on top of `cassava` and `pipes`.
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -62,20 +59,14 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %check
-%if %{with tests}
-%{cabal} test
-%endif
-
+%cabal_test
 
 %post devel
 %ghc_pkg_recache
@@ -84,10 +75,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit plasma-framework for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package plasma-framework for 
openSUSE:Factory checked in at 2017-09-19 16:29:24

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


Package is "plasma-framework"

Tue Sep 19 16:29:24 2017 rev:51 rq:527069 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/plasma-framework/plasma-framework.changes
2017-08-24 18:00:07.239168755 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-framework.new/plasma-framework.changes   
2017-09-19 16:31:26.306943982 +0200
@@ -1,0 +2,36 @@
+Mon Sep 18 16:19:04 UTC 2017 - fab...@ritter-vogt.de
+
+- Add patch to fix Plasma Dialogs (kde#384776):
+  * 0001-Pass-item-to-rootObject-since-it-s-now-a-singleton.patch
+
+---
+Tue Sep 12 07:11:19 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * [ConfigModel] Guard against adding a null ConfigCategory
+  * [ConfigModel] Allow programmatically adding and removing ConfigCategory
+  * [EventPluginsManager] Expose pluginPath in model
+  * [Icon Item] Don't needlessly unset imagePath
+  * [FrameSvg] Use QPixmap::mask() instead of deprecated convoluted way via 
alphaChannel()
+  * [FrameSvgItem] Create margins/fixedMargins object on demand
+  * HTML-escape applet name in undo notification
+  * fix check state for menu items
+  * Force Plasma style for QQC2 in applets
+  * Install the PlasmaComponents.3/private folder
+  * Guard failed testItem creation
+  * [Service] Restore /dev/null usage
+  * [Service] Use KConfig::SimpleConfig
+  * Drop remains of "locolor" themes
+  * Get rid of QSignalMapper
+  * [Theme] Use KConfig SimpleConfig
+  * Avoid some unnecessary theme content lookups
+  * fix check
+  * ignore spurious resize events to empty sizes (kde#382340)
+- Dropped patches, now upstream:
+  * 0001-ignore-spurious-resize-events-to-empty-sizes.patch
+
+---

Old:

  0001-ignore-spurious-resize-events-to-empty-sizes.patch
  plasma-framework-5.37.0.tar.xz

New:

  0001-Pass-item-to-rootObject-since-it-s-now-a-singleton.patch
  plasma-framework-5.38.0.tar.xz



Other differences:
--
++ plasma-framework.spec ++
--- /var/tmp/diff_new_pack.4ccLDo/_old  2017-09-19 16:31:26.966850502 +0200
+++ /var/tmp/diff_new_pack.4ccLDo/_new  2017-09-19 16:31:26.970849934 +0200
@@ -17,9 +17,13 @@
 
 
 %bcond_without lang
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   plasma-framework
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
 Summary:Plasma library and runtime components based upon KF5 and Qt5
@@ -29,30 +33,30 @@
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 # PATCH-FIX-UPSTREAM
-Patch0: 0001-ignore-spurious-resize-events-to-empty-sizes.patch
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+Patch1: 0001-Pass-item-to-rootObject-since-it-s-now-a-singleton.patch
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kactivities5-devel >= 5.19.0
-BuildRequires:  karchive-devel >= %{_tar_path}
-BuildRequires:  kconfig-devel >= %{_tar_path}
-BuildRequires:  kconfigwidgets-devel >= %{_tar_path}
-BuildRequires:  kcoreaddons-devel >= %{_tar_path}
-BuildRequires:  kdbusaddons-devel >= %{_tar_path}
-BuildRequires:  kdeclarative-devel >= %{_tar_path}
-BuildRequires:  kdoctools-devel >= %{_tar_path}
+BuildRequires:  karchive-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kconfig-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kconfigwidgets-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kcoreaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kdbusaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kdeclarative-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kdoctools-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kglobalaccel-devel >= %{_tar_path}
-BuildRequires:  kguiaddons-devel >= %{_tar_path}
-BuildRequires:  ki18n-devel >= %{_tar_path}
-BuildRequires:  kiconthemes-devel >= %{_tar_path}
-BuildRequires:  kio-devel >= %{_tar_path}
-BuildRequires:  knotifications-devel >= %{_tar_path}
-Buil

commit ghc-hip for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-hip for openSUSE:Factory checked 
in at 2017-09-19 16:30:58

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


Package is "ghc-hip"

Tue Sep 19 16:30:58 2017 rev:3 rq:526720 version:1.5.3.0

Changes:

--- /work/SRC/openSUSE:Factory/ghc-hip/ghc-hip.changes  2017-05-27 
13:16:42.533553213 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-hip.new/ghc-hip.changes 2017-09-19 
16:31:48.235837599 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-hip.spec ++
--- /var/tmp/diff_new_pack.Fdc64A/_old  2017-09-19 16:31:48.971733355 +0200
+++ /var/tmp/diff_new_pack.Fdc64A/_new  2017-09-19 16:31:48.97973 +0200
@@ -23,8 +23,8 @@
 Release:0
 Summary:Haskell Image Processing (HIP) Library
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-Chart-devel
@@ -42,7 +42,6 @@
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-temporary-devel
 BuildRequires:  ghc-vector-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-QuickCheck-devel
 BuildRequires:  ghc-hspec-devel
@@ -66,7 +65,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -94,11 +93,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc CHANGELOG.md README.md
 
 %changelog




commit amarok for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package amarok for openSUSE:Factory checked 
in at 2017-09-19 16:29:12

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


Package is "amarok"

Tue Sep 19 16:29:12 2017 rev:107 rq:526986 version:2.8.0

Changes:

--- /work/SRC/openSUSE:Factory/amarok/amarok.changes2017-08-29 
11:42:32.209381869 +0200
+++ /work/SRC/openSUSE:Factory/.amarok.new/amarok.changes   2017-09-19 
16:30:37.173904304 +0200
@@ -1,0 +2,6 @@
+Sat Sep 16 20:52:17 UTC 2017 - zai...@opensuse.org
+
+- Add gstreamer-plugins-ugly Recommends: Provide mp3 playback by
+  default for users.
+
+---



Other differences:
--
++ amarok.spec ++
--- /var/tmp/diff_new_pack.CH6xKW/_old  2017-09-19 16:31:24.919140578 +0200
+++ /var/tmp/diff_new_pack.CH6xKW/_new  2017-09-19 16:31:24.919140578 +0200
@@ -108,6 +108,7 @@
 Recommends: clamz
 Recommends: qt4-qtscript
 Recommends: kio_audiocd4
+Recommends: gstreamer-plugins-ugly
 Provides:   kde4-amarok = 2.0.90
 Obsoletes:  kde4-amarok <= 2.0.89
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build




commit korganizer for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package korganizer for openSUSE:Factory 
checked in at 2017-09-19 16:29:30

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


Package is "korganizer"

Tue Sep 19 16:29:30 2017 rev:12 rq:527267 version:17.08.1

Changes:

--- /work/SRC/openSUSE:Factory/korganizer/korganizer.changes2017-09-12 
19:49:12.543262491 +0200
+++ /work/SRC/openSUSE:Factory/.korganizer.new/korganizer.changes   
2017-09-19 16:31:28.454639743 +0200
@@ -1,0 +2,6 @@
+Tue Sep 19 06:13:24 UTC 2017 - wba...@tmo.at
+
+- Require kdepim-runtime, korganizer is pretty useless without the
+  ical resources
+
+---



Other differences:
--
++ korganizer.spec ++
--- /var/tmp/diff_new_pack.A8BGha/_old  2017-09-19 16:31:29.362511136 +0200
+++ /var/tmp/diff_new_pack.A8BGha/_new  2017-09-19 16:31:29.366510568 +0200
@@ -79,6 +79,7 @@
 BuildRequires:  pkgconfig(Qt5X11Extras) >= 5.2.0
 Requires:   akonadi-calendar-tools
 Requires:   kdepim-addons
+Requires:   kdepim-runtime
 Provides:   korganizer5 = %{version}
 Obsoletes:  korganizer5 < %{version}
 %if %{with lang}




commit ghc-multiset-comb for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-multiset-comb for 
openSUSE:Factory checked in at 2017-09-19 16:31:28

Comparing /work/SRC/openSUSE:Factory/ghc-multiset-comb (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-multiset-comb.new (New)


Package is "ghc-multiset-comb"

Tue Sep 19 16:31:28 2017 rev:2 rq:526730 version:0.2.4.1

Changes:

--- /work/SRC/openSUSE:Factory/ghc-multiset-comb/ghc-multiset-comb.changes  
2016-10-22 13:13:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-multiset-comb.new/ghc-multiset-comb.changes 
2017-09-19 16:31:59.378259224 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-multiset-comb.spec ++
--- /var/tmp/diff_new_pack.hUQlia/_old  2017-09-19 16:31:59.982173677 +0200
+++ /var/tmp/diff_new_pack.hUQlia/_new  2017-09-19 16:31:59.982173677 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-multiset-comb
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,16 +22,13 @@
 Release:0
 Summary:Combinatorial algorithms over multisets
 License:BSD-3-Clause
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-containers-devel
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-transformers-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 Various combinatorial algorithms over multisets, including generating all
@@ -40,7 +37,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -52,15 +49,12 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 
@@ -68,10 +62,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit ghc-hmt for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-hmt for openSUSE:Factory checked 
in at 2017-09-19 16:31:13

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


Package is "ghc-hmt"

Tue Sep 19 16:31:13 2017 rev:2 rq:526724 version:0.15

Changes:

--- /work/SRC/openSUSE:Factory/ghc-hmt/ghc-hmt.changes  2017-03-28 
15:19:58.724630487 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-hmt.new/ghc-hmt.changes 2017-09-19 
16:31:52.251268792 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-hmt.spec ++
--- /var/tmp/diff_new_pack.4iYSxJ/_old  2017-09-19 16:31:52.863182112 +0200
+++ /var/tmp/diff_new_pack.4iYSxJ/_new  2017-09-19 16:31:52.871180978 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-hmt
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,8 +22,8 @@
 Release:0
 Summary:Haskell Music Theory
 License:GPL-1.0+
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-array-devel
@@ -43,14 +43,13 @@
 BuildRequires:  ghc-safe-devel
 BuildRequires:  ghc-split-devel
 BuildRequires:  ghc-utf8-string-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Haskell music theory library.
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -75,13 +74,11 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %dir %{_datadir}/%{pkg_name}-%{version}
 %dir %{_datadir}/%{pkg_name}-%{version}/Help
 %{_datadir}/%{pkg_name}-%{version}/README
 %{_datadir}/%{pkg_name}-%{version}/Help/hmt.help.lhs
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit ghc-clckwrks-theme-bootstrap for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-clckwrks-theme-bootstrap for 
openSUSE:Factory checked in at 2017-09-19 16:30:33

Comparing /work/SRC/openSUSE:Factory/ghc-clckwrks-theme-bootstrap (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-clckwrks-theme-bootstrap.new (New)


Package is "ghc-clckwrks-theme-bootstrap"

Tue Sep 19 16:30:33 2017 rev:2 rq:526711 version:0.4.2.1

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-clckwrks-theme-bootstrap/ghc-clckwrks-theme-bootstrap.changes
2017-05-17 10:53:04.917565783 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-clckwrks-theme-bootstrap.new/ghc-clckwrks-theme-bootstrap.changes
   2017-09-19 16:31:41.304819419 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-clckwrks-theme-bootstrap.spec ++
--- /var/tmp/diff_new_pack.sNkeG5/_old  2017-09-19 16:31:41.872738969 +0200
+++ /var/tmp/diff_new_pack.sNkeG5/_new  2017-09-19 16:31:41.876738403 +0200
@@ -22,8 +22,8 @@
 Release:0
 Summary:Simple bootstrap based template for clckwrks
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-clckwrks-devel
@@ -36,14 +36,13 @@
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-text-devel
 BuildRequires:  ghc-web-plugins-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 A simple bootstrap based theme for clckwrks.
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -69,7 +68,6 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 %dir %{_datadir}/%{pkg_name}-%{version}
 %dir %{_datadir}/%{pkg_name}-%{version}/data
@@ -93,7 +91,6 @@
 
%{_datadir}/%{pkg_name}-%{version}/data/fonts/glyphicons-halflings-regular.woff2
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc README.md
 
 %changelog




commit ghc-mwc-random-monad for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-mwc-random-monad for 
openSUSE:Factory checked in at 2017-09-19 16:31:30

Comparing /work/SRC/openSUSE:Factory/ghc-mwc-random-monad (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-mwc-random-monad.new (New)


Package is "ghc-mwc-random-monad"

Tue Sep 19 16:31:30 2017 rev:2 rq:526731 version:0.7.3.1

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-mwc-random-monad/ghc-mwc-random-monad.changes
2017-04-12 18:07:53.676558647 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-mwc-random-monad.new/ghc-mwc-random-monad.changes
   2017-09-19 16:32:00.094157814 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-mwc-random-monad.spec ++
--- /var/tmp/diff_new_pack.8Zkuld/_old  2017-09-19 16:32:00.610084732 +0200
+++ /var/tmp/diff_new_pack.8Zkuld/_new  2017-09-19 16:32:00.618083599 +0200
@@ -22,8 +22,8 @@
 Release:0
 Summary:Monadic interface for mwc-random
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-monad-primitive-devel
@@ -32,14 +32,13 @@
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-transformers-devel
 BuildRequires:  ghc-vector-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Simple monadic interface for mwc-random.
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -65,11 +64,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc ChangeLog
 
 %changelog




commit ghc-hmatrix-repa for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-hmatrix-repa for 
openSUSE:Factory checked in at 2017-09-19 16:31:10

Comparing /work/SRC/openSUSE:Factory/ghc-hmatrix-repa (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-hmatrix-repa.new (New)


Package is "ghc-hmatrix-repa"

Tue Sep 19 16:31:10 2017 rev:2 rq:526723 version:0.1.2.2

Changes:

--- /work/SRC/openSUSE:Factory/ghc-hmatrix-repa/ghc-hmatrix-repa.changes
2017-04-12 18:06:57.920442316 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-hmatrix-repa.new/ghc-hmatrix-repa.changes   
2017-09-19 16:31:51.183420058 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-hmatrix-repa.spec ++
--- /var/tmp/diff_new_pack.2VbnTJ/_old  2017-09-19 16:31:52.119287488 +0200
+++ /var/tmp/diff_new_pack.2VbnTJ/_new  2017-09-19 16:31:52.123286921 +0200
@@ -22,22 +22,21 @@
 Release:0
 Summary:Adaptors for interoperability between hmatrix and repa
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-hmatrix-devel
 BuildRequires:  ghc-repa-devel
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-vector-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Adaptors for interoperability between hmatrix and repa.
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -62,11 +61,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc CHANGES README
 
 %changelog




commit ghc-GraphSCC for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-GraphSCC for openSUSE:Factory 
checked in at 2017-09-19 16:30:14

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


Package is "ghc-GraphSCC"

Tue Sep 19 16:30:14 2017 rev:2 rq:526705 version:1.0.4

Changes:

--- /work/SRC/openSUSE:Factory/ghc-GraphSCC/ghc-GraphSCC.changes
2016-09-24 15:21:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-GraphSCC.new/ghc-GraphSCC.changes   
2017-09-19 16:31:34.729750823 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-GraphSCC.spec ++
--- /var/tmp/diff_new_pack.OxnLEI/_old  2017-09-19 16:31:35.197684537 +0200
+++ /var/tmp/diff_new_pack.OxnLEI/_new  2017-09-19 16:31:35.205683404 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-GraphSCC
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,23 +22,20 @@
 Release:0
 Summary:Tarjan's algorithm for computing the strongly connected 
components of a graph
 License:BSD-3-Clause
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-array-devel
 BuildRequires:  ghc-containers-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 Tarjan's algorithm for computing the strongly connected components of a graph.
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -50,15 +47,12 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 
@@ -66,10 +60,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit ghc-crypto-pubkey for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-crypto-pubkey for 
openSUSE:Factory checked in at 2017-09-19 16:30:38

Comparing /work/SRC/openSUSE:Factory/ghc-crypto-pubkey (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-crypto-pubkey.new (New)


Package is "ghc-crypto-pubkey"

Tue Sep 19 16:30:38 2017 rev:3 rq:526713 version:0.2.8

Changes:

--- /work/SRC/openSUSE:Factory/ghc-crypto-pubkey/ghc-crypto-pubkey.changes  
2016-07-21 08:12:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-crypto-pubkey.new/ghc-crypto-pubkey.changes 
2017-09-19 16:31:42.864598466 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-crypto-pubkey.spec ++
--- /var/tmp/diff_new_pack.snNgEV/_old  2017-09-19 16:31:43.408521416 +0200
+++ /var/tmp/diff_new_pack.snNgEV/_new  2017-09-19 16:31:43.412520849 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-crypto-pubkey
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,11 +23,10 @@
 Release:0
 Summary:Public Key cryptography
 License:BSD-2-Clause
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-byteable-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-crypto-numbers-devel
@@ -35,14 +34,12 @@
 BuildRequires:  ghc-crypto-random-devel
 BuildRequires:  ghc-cryptohash-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-tasty-devel
 BuildRequires:  ghc-tasty-hunit-devel
 BuildRequires:  ghc-tasty-kat-devel
 BuildRequires:  ghc-tasty-quickcheck-devel
 %endif
-# End cabal-rpm deps
 
 %description
 Public Key cryptography
@@ -53,7 +50,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -65,20 +62,14 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %check
-%if %{with tests}
-%{cabal} test
-%endif
-
+%cabal_test
 
 %post devel
 %ghc_pkg_recache
@@ -87,10 +78,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit ghc-hflags for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-hflags for openSUSE:Factory 
checked in at 2017-09-19 16:30:56

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


Package is "ghc-hflags"

Tue Sep 19 16:30:56 2017 rev:2 rq:526719 version:0.4.2

Changes:

--- /work/SRC/openSUSE:Factory/ghc-hflags/ghc-hflags.changes2017-03-24 
02:05:35.376466860 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-hflags.new/ghc-hflags.changes   
2017-09-19 16:31:47.367960538 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---

Old:

  1.cabal

New:

  hflags.cabal



Other differences:
--
++ ghc-hflags.spec ++
--- /var/tmp/diff_new_pack.NW8dKk/_old  2017-09-19 16:31:47.891886321 +0200
+++ /var/tmp/diff_new_pack.NW8dKk/_new  2017-09-19 16:31:47.895885754 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-hflags
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,16 +22,15 @@
 Release:0
 Summary:Command line flag parser, very similar to Google's gflags
 License:Apache-2.0
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal
+Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-containers-devel
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-template-haskell-devel
 BuildRequires:  ghc-text-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 The 'HFlags' library supports easy definition of command line flags,
@@ -80,7 +79,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -106,11 +105,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc COPYING
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc README.md changelog examples
 
 %changelog

++ hflags.cabal ++
name: hflags
version: 0.4.2
x-revision: 1
license: Apache-2.0
license-file: COPYING
author: Mihaly Barasz , Gergely Risko 
maintainer: Gergely Risko 
build-type: Simple
cabal-version: >= 1.10
category: Console
stability: provisional
homepage: http://github.com/errge/hflags
bug-reports: http://github.com/errge/hflags/issues

synopsis: Command line flag parser, very similar to Google's gflags
description:
  The @HFlags@ library supports easy definition of command line flags,
  reimplementing the ideas from Google's @gflags@
  ().
  .
  Command line flags can be declared in any file at the toplevel,
  using 'defineFlag'.  At runtime, the actual values are assigned to
  the toplevel @flags_name@ constants.  Those can be used purely
  throughout the program.
  .
  At the beginning of the @main@ function, @$initHFlags \"program
  description\"@ has to be called to initialize the flags.  All flags
  will be initialized that are transitively reachable via imports from
  @main@.  This means, that any Haskell package can easily define
  command line flags with @HFlags@.  This feature is demonstrated by
  
  and .
  .
  A simple example (more in the
   directory):
  .
  @
  \#!\/usr\/bin\/env runhaskell
  .
  {-\# LANGUAGE TemplateHaskell \#-}
  .
  import HFlags
  .
  'defineFlag' \"name\" \"Indiana Jones\" \"Who to greet.\"
  'defineFlag' \"r:repeat\" (3 + 4 :: Int) \"Number of times to repeat the 
message.\"
  .
  main = do s <- $initHFlags \"Simple program v0.1\"
sequence_ $ replicate flags_repeat greet
putStrLn $ \"Your additional arguments were: \" ++ show s
putStrLn $ \"Which is

commit ghc-Unixutils for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-Unixutils for openSUSE:Factory 
checked in at 2017-09-19 16:30:24

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


Package is "ghc-Unixutils"

Tue Sep 19 16:30:24 2017 rev:2 rq:526707 version:1.54.1

Changes:

--- /work/SRC/openSUSE:Factory/ghc-Unixutils/ghc-Unixutils.changes  
2016-11-16 13:32:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-Unixutils.new/ghc-Unixutils.changes 
2017-09-19 16:31:37.253393331 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-Unixutils.spec ++
--- /var/tmp/diff_new_pack.rUYCrt/_old  2017-09-19 16:31:37.833311181 +0200
+++ /var/tmp/diff_new_pack.rUYCrt/_new  2017-09-19 16:31:37.837310615 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-Unixutils
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,11 +22,10 @@
 Release:0
 Summary:A crude interface between Haskell and Unix-like operating 
systems
 License:BSD-3-Clause
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-directory-devel
 BuildRequires:  ghc-exceptions-devel
@@ -40,8 +39,6 @@
 BuildRequires:  ghc-unix-devel
 BuildRequires:  ghc-zlib-devel
 BuildRequires:  glibc-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 A collection of useful and mildly useful functions that you might expect to
@@ -49,14 +46,12 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
-# Begin cabal-rpm deps:
 Requires:   glibc-devel
 Requires(post): ghc-compiler = %{ghc_version}
 Requires(postun): ghc-compiler = %{ghc_version}
-# End cabal-rpm deps
 
 %description devel
 This package provides the Haskell %{pkg_name} library development files.
@@ -64,15 +59,12 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 
@@ -80,10 +72,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc COPYING
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit ghc-monad-primitive for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-monad-primitive for 
openSUSE:Factory checked in at 2017-09-19 16:31:24

Comparing /work/SRC/openSUSE:Factory/ghc-monad-primitive (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-monad-primitive.new (New)


Package is "ghc-monad-primitive"

Tue Sep 19 16:31:24 2017 rev:2 rq:526728 version:0.1

Changes:

--- /work/SRC/openSUSE:Factory/ghc-monad-primitive/ghc-monad-primitive.changes  
2016-10-22 13:12:38.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-monad-primitive.new/ghc-monad-primitive.changes 
2017-09-19 16:31:55.810764574 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-monad-primitive.spec ++
--- /var/tmp/diff_new_pack.rvKEN1/_old  2017-09-19 16:31:56.354687525 +0200
+++ /var/tmp/diff_new_pack.rvKEN1/_new  2017-09-19 16:31:56.358686959 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-monad-primitive
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,16 +22,13 @@
 Release:0
 Summary:Type class for monad transformers stack with pirimitive base 
monad
 License:BSD-3-Clause
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-primitive-devel
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-transformers-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 Type class for for monad transformers stack with pirimitive base monad and
@@ -39,7 +36,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -52,15 +49,12 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 
@@ -68,10 +62,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit ghc-mersenne-random for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-mersenne-random for 
openSUSE:Factory checked in at 2017-09-19 16:31:21

Comparing /work/SRC/openSUSE:Factory/ghc-mersenne-random (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-mersenne-random.new (New)


Package is "ghc-mersenne-random"

Tue Sep 19 16:31:21 2017 rev:2 rq:526727 version:1.0.0.1

Changes:

--- /work/SRC/openSUSE:Factory/ghc-mersenne-random/ghc-mersenne-random.changes  
2017-04-12 18:07:43.330021607 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-mersenne-random.new/ghc-mersenne-random.changes 
2017-09-19 16:31:55.146858619 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-mersenne-random.spec ++
--- /var/tmp/diff_new_pack.0Ibl3m/_old  2017-09-19 16:31:55.682782703 +0200
+++ /var/tmp/diff_new_pack.0Ibl3m/_new  2017-09-19 16:31:55.694781003 +0200
@@ -22,13 +22,12 @@
 Release:0
 Summary:Generate high quality pseudorandom numbers using a SIMD Fast 
Mersenne Twister
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-old-time-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 The Mersenne twister is a pseudorandom number generator developed by Makoto
@@ -61,7 +60,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -87,11 +86,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc LICENSE.sfmt readme todo
 
 %changelog




commit ghc-arithmoi for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-arithmoi for openSUSE:Factory 
checked in at 2017-09-19 16:30:26

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


Package is "ghc-arithmoi"

Tue Sep 19 16:30:26 2017 rev:4 rq:526708 version:0.5.0.0

Changes:

--- /work/SRC/openSUSE:Factory/ghc-arithmoi/ghc-arithmoi.changes
2017-08-31 21:03:24.800828210 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-arithmoi.new/ghc-arithmoi.changes   
2017-09-19 16:31:38.345238663 +0200
@@ -1,0 +2,5 @@
+Sun Sep 17 10:29:18 UTC 2017 - psim...@suse.com
+
+- More trivial fixes to the spec file; no functional change.
+
+---



Other differences:
--
++ ghc-arithmoi.spec ++
--- /var/tmp/diff_new_pack.X6vSHA/_old  2017-09-19 16:31:38.929155947 +0200
+++ /var/tmp/diff_new_pack.X6vSHA/_new  2017-09-19 16:31:38.933155380 +0200
@@ -23,8 +23,8 @@
 Release:0
 Summary:Efficient basic number-theoretic functions
 License:MIT
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-array-devel
@@ -52,7 +52,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}




commit ghc-hOpenPGP for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-hOpenPGP for openSUSE:Factory 
checked in at 2017-09-19 16:30:49

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


Package is "ghc-hOpenPGP"

Tue Sep 19 16:30:49 2017 rev:2 rq:526717 version:2.5.5

Changes:

--- /work/SRC/openSUSE:Factory/ghc-hOpenPGP/ghc-hOpenPGP.changes
2017-05-29 22:19:19.622723376 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-hOpenPGP.new/ghc-hOpenPGP.changes   
2017-09-19 16:31:45.892169592 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-hOpenPGP.spec ++
--- /var/tmp/diff_new_pack.aysWYI/_old  2017-09-19 16:31:46.348105007 +0200
+++ /var/tmp/diff_new_pack.aysWYI/_new  2017-09-19 16:31:46.352104440 +0200
@@ -23,8 +23,8 @@
 Release:0
 Summary:Native Haskell implementation of OpenPGP (RFC4880)
 License:MIT
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-aeson-devel
@@ -67,7 +67,6 @@
 BuildRequires:  ghc-unordered-containers-devel
 BuildRequires:  ghc-wl-pprint-extras-devel
 BuildRequires:  ghc-zlib-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-QuickCheck-devel
 BuildRequires:  ghc-quickcheck-instances-devel
@@ -81,7 +80,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -109,10 +108,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit ghc-hjson for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-hjson for openSUSE:Factory 
checked in at 2017-09-19 16:31:07

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


Package is "ghc-hjson"

Tue Sep 19 16:31:07 2017 rev:2 rq:526722 version:1.3.2

Changes:

--- /work/SRC/openSUSE:Factory/ghc-hjson/ghc-hjson.changes  2017-04-12 
18:06:55.124837600 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-hjson.new/ghc-hjson.changes 2017-09-19 
16:31:50.087575290 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-hjson.spec ++
--- /var/tmp/diff_new_pack.cAmEL8/_old  2017-09-19 16:31:51.035441020 +0200
+++ /var/tmp/diff_new_pack.cAmEL8/_new  2017-09-19 16:31:51.039440454 +0200
@@ -22,21 +22,20 @@
 Release:0
 Summary:JSON parsing library
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-containers-devel
 BuildRequires:  ghc-parsec-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 JSON parsing library with simple and sane API.
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -61,10 +60,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc COPYING
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit ghc-nationstates for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-nationstates for 
openSUSE:Factory checked in at 2017-09-19 16:31:32

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


Package is "ghc-nationstates"

Tue Sep 19 16:31:32 2017 rev:2 rq:526732 version:0.5.0.0

Changes:

--- /work/SRC/openSUSE:Factory/ghc-nationstates/ghc-nationstates.changes
2017-03-09 01:56:22.294926939 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-nationstates.new/ghc-nationstates.changes   
2017-09-19 16:32:00.726068302 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-nationstates.spec ++
--- /var/tmp/diff_new_pack.nujdOi/_old  2017-09-19 16:32:01.182003717 +0200
+++ /var/tmp/diff_new_pack.nujdOi/_new  2017-09-19 16:32:01.186003151 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-nationstates
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,8 +22,8 @@
 Release:0
 Summary:NationStates API client
 License:Apache-2.0
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-bytestring-devel
@@ -37,14 +37,13 @@
 BuildRequires:  ghc-tls-devel
 BuildRequires:  ghc-transformers-devel
 BuildRequires:  ghc-xml-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 NationStates API client.
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -69,11 +68,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc README.md
 
 %changelog




commit ghc-hjpath for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-hjpath for openSUSE:Factory 
checked in at 2017-09-19 16:31:01

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


Package is "ghc-hjpath"

Tue Sep 19 16:31:01 2017 rev:2 rq:526721 version:3.0.1

Changes:

--- /work/SRC/openSUSE:Factory/ghc-hjpath/ghc-hjpath.changes2017-04-12 
18:06:54.488927514 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-hjpath.new/ghc-hjpath.changes   
2017-09-19 16:31:49.435667636 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-hjpath.spec ++
--- /var/tmp/diff_new_pack.05S3ir/_old  2017-09-19 16:31:49.959593419 +0200
+++ /var/tmp/diff_new_pack.05S3ir/_new  2017-09-19 16:31:49.967592286 +0200
@@ -22,22 +22,21 @@
 Release:0
 Summary:XPath-like syntax for querying JSON
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-containers-devel
 BuildRequires:  ghc-hjson-devel
 BuildRequires:  ghc-parsec-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 JPath is XPath-inspired query language to query JSON data.
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -62,10 +61,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc COPYING
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit ghc-fay-uri for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-fay-uri for openSUSE:Factory 
checked in at 2017-09-19 16:30:46

Comparing /work/SRC/openSUSE:Factory/ghc-fay-uri (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-fay-uri.new (New)


Package is "ghc-fay-uri"

Tue Sep 19 16:30:46 2017 rev:2 rq:526716 version:0.2.0.0

Changes:

--- /work/SRC/openSUSE:Factory/ghc-fay-uri/ghc-fay-uri.changes  2017-05-17 
10:52:48.695847821 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-fay-uri.new/ghc-fay-uri.changes 
2017-09-19 16:31:45.276256840 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-fay-uri.spec ++
--- /var/tmp/diff_new_pack.uMwPX5/_old  2017-09-19 16:31:45.792183756 +0200
+++ /var/tmp/diff_new_pack.uMwPX5/_new  2017-09-19 16:31:45.796183189 +0200
@@ -22,20 +22,19 @@
 Release:0
 Summary:Persistent FFI bindings for using jsUri in Fay
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-fay-base-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Persistent FFI bindings for using jsUri in Fay.
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -60,13 +59,11 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 %dir %{_datadir}/%{pkg_name}-%{version}
 %dir %{_datadir}/%{pkg_name}-%{version}/src
 %{_datadir}/%{pkg_name}-%{version}/src/Uri.hs
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit ghc-fay for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-fay for openSUSE:Factory checked 
in at 2017-09-19 16:30:41

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


Package is "ghc-fay"

Tue Sep 19 16:30:41 2017 rev:4 rq:526714 version:0.23.1.16

Changes:

--- /work/SRC/openSUSE:Factory/ghc-fay/ghc-fay.changes  2017-08-31 
20:47:00.863029976 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-fay.new/ghc-fay.changes 2017-09-19 
16:31:43.844459663 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-fay.spec ++
--- /var/tmp/diff_new_pack.n2ZR8H/_old  2017-09-19 16:31:44.388382612 +0200
+++ /var/tmp/diff_new_pack.n2ZR8H/_new  2017-09-19 16:31:44.392382046 +0200
@@ -22,8 +22,8 @@
 Release:0
 Summary:A compiler for Fay, a Haskell subset that compiles to 
JavaScript
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/8.cabal#/%{pkg_name}.cabal
 BuildRequires:  chrpath
@@ -59,7 +59,6 @@
 BuildRequires:  ghc-unordered-containers-devel
 BuildRequires:  ghc-utf8-string-devel
 BuildRequires:  ghc-vector-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Fay is a proper subset of Haskell which is type-checked with GHC, and compiled
@@ -77,7 +76,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -104,7 +103,6 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 %{_bindir}/%{pkg_name}
 %dir %{_datadir}/%{pkg_name}-%{version}
@@ -115,7 +113,6 @@
 %{_datadir}/%{pkg_name}-%{version}/src/Fay/FFI.hs
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc CHANGELOG.md README.md examples
 
 %changelog




commit ghc-happstack-clientsession for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-happstack-clientsession for 
openSUSE:Factory checked in at 2017-09-19 16:30:54

Comparing /work/SRC/openSUSE:Factory/ghc-happstack-clientsession (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-happstack-clientsession.new (New)


Package is "ghc-happstack-clientsession"

Tue Sep 19 16:30:54 2017 rev:2 rq:526718 version:7.3.1

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-happstack-clientsession/ghc-happstack-clientsession.changes
  2017-04-14 13:32:29.843685693 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-happstack-clientsession.new/ghc-happstack-clientsession.changes
 2017-09-19 16:31:46.748048352 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-happstack-clientsession.spec ++
--- /var/tmp/diff_new_pack.poPtFO/_old  2017-09-19 16:31:47.255976401 +0200
+++ /var/tmp/diff_new_pack.poPtFO/_new  2017-09-19 16:31:47.259975835 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-happstack-clientsession
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,11 +22,10 @@
 Release:0
 Summary:Client-side session data
 License:BSD-3-Clause
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-cereal-devel
 BuildRequires:  ghc-clientsession-devel
@@ -36,15 +35,13 @@
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-safecopy-devel
 BuildRequires:  ghc-transformers-base-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 Uses the clientsession library to store session data in an HTTP cookie.
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -57,15 +54,12 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 
@@ -73,10 +67,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc COPYING
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog




commit ghc-fay-builder for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-fay-builder for openSUSE:Factory 
checked in at 2017-09-19 16:30:44

Comparing /work/SRC/openSUSE:Factory/ghc-fay-builder (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-fay-builder.new (New)


Package is "ghc-fay-builder"

Tue Sep 19 16:30:44 2017 rev:2 rq:526715 version:0.2.0.5

Changes:

--- /work/SRC/openSUSE:Factory/ghc-fay-builder/ghc-fay-builder.changes  
2017-05-16 14:39:42.189091978 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-fay-builder.new/ghc-fay-builder.changes 
2017-09-19 16:31:44.548359951 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-fay-builder.spec ++
--- /var/tmp/diff_new_pack.I3IOiR/_old  2017-09-19 16:31:45.140276102 +0200
+++ /var/tmp/diff_new_pack.I3IOiR/_new  2017-09-19 16:31:45.144275536 +0200
@@ -22,8 +22,8 @@
 Release:0
 Summary:Compile Fay code on cabal install, and ad-hoc recompile during 
development
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/4.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
@@ -35,14 +35,13 @@
 BuildRequires:  ghc-safe-devel
 BuildRequires:  ghc-split-devel
 BuildRequires:  ghc-text-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Compile Fay code on cabal install, and ad-hoc recompile during development.
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -68,11 +67,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc CHANGELOG.md README.md
 
 %changelog




commit ghc-cassava-megaparsec for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-cassava-megaparsec for 
openSUSE:Factory checked in at 2017-09-19 16:30:30

Comparing /work/SRC/openSUSE:Factory/ghc-cassava-megaparsec (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-cassava-megaparsec.new (New)


Package is "ghc-cassava-megaparsec"

Tue Sep 19 16:30:30 2017 rev:2 rq:526710 version:0.1.0

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-cassava-megaparsec/ghc-cassava-megaparsec.changes
2017-04-12 18:05:31.452668341 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-cassava-megaparsec.new/ghc-cassava-megaparsec.changes
   2017-09-19 16:31:40.672908933 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-cassava-megaparsec.spec ++
--- /var/tmp/diff_new_pack.45b78M/_old  2017-09-19 16:31:41.168838681 +0200
+++ /var/tmp/diff_new_pack.45b78M/_new  2017-09-19 16:31:41.172838114 +0200
@@ -23,8 +23,8 @@
 Release:0
 Summary:Megaparsec parser of CSV files that plays nicely with Cassava
 License:MIT
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/4.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
@@ -35,7 +35,6 @@
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-unordered-containers-devel
 BuildRequires:  ghc-vector-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-hspec-devel
 BuildRequires:  ghc-hspec-megaparsec-devel
@@ -46,7 +45,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -76,11 +75,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE.md
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc CHANGELOG.md README.md
 
 %changelog




commit ghc-GenericPretty for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-GenericPretty for 
openSUSE:Factory checked in at 2017-09-19 16:30:10

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


Package is "ghc-GenericPretty"

Tue Sep 19 16:30:10 2017 rev:2 rq:526704 version:1.2.1

Changes:

--- /work/SRC/openSUSE:Factory/ghc-GenericPretty/ghc-GenericPretty.changes  
2016-09-24 15:20:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-GenericPretty.new/ghc-GenericPretty.changes 
2017-09-19 16:31:34.101839771 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-GenericPretty.spec ++
--- /var/tmp/diff_new_pack.cPDlBT/_old  2017-09-19 16:31:34.633764420 +0200
+++ /var/tmp/diff_new_pack.cPDlBT/_new  2017-09-19 16:31:34.633764420 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-GenericPretty
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,15 +22,12 @@
 Release:0
 Summary:A generic, derivable, haskell pretty printer
 License:BSD-3-Clause
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-pretty-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 GenericPretty is a Haskell library that supports automatic derivation of pretty
@@ -66,7 +63,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -78,15 +75,12 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 
@@ -94,11 +88,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc README
 
 %changelog




commit ghc-crackNum for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-crackNum for openSUSE:Factory 
checked in at 2017-09-19 16:30:36

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


Package is "ghc-crackNum"

Tue Sep 19 16:30:36 2017 rev:3 rq:526712 version:1.9

Changes:

--- /work/SRC/openSUSE:Factory/ghc-crackNum/ghc-crackNum.changes
2017-04-13 10:45:14.647950426 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-crackNum.new/ghc-crackNum.changes   
2017-09-19 16:31:42.180695345 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-crackNum.spec ++
--- /var/tmp/diff_new_pack.iVwdCf/_old  2017-09-19 16:31:42.740616029 +0200
+++ /var/tmp/diff_new_pack.iVwdCf/_new  2017-09-19 16:31:42.740616029 +0200
@@ -22,15 +22,14 @@
 Release:0
 Summary:Crack various integer, floating-point data formats
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-FloatingHex-devel
 BuildRequires:  ghc-data-binary-ieee754-devel
 BuildRequires:  ghc-ieee754-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Crack HP, SP and DP floats and 8, 16, 32, 64 bit words and integers.
@@ -39,7 +38,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -64,12 +63,10 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 %{_bindir}/%{pkg_name}
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc CHANGES.md README.md
 
 %changelog




commit ghc-bzlib for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-bzlib for openSUSE:Factory 
checked in at 2017-09-19 16:30:28

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


Package is "ghc-bzlib"

Tue Sep 19 16:30:28 2017 rev:2 rq:526709 version:0.5.0.5

Changes:

--- /work/SRC/openSUSE:Factory/ghc-bzlib/ghc-bzlib.changes  2016-09-25 
14:36:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-bzlib.new/ghc-bzlib.changes 2017-09-19 
16:31:39.149124787 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-bzlib.spec ++
--- /var/tmp/diff_new_pack.fVyqaX/_old  2017-09-19 16:31:40.172979751 +0200
+++ /var/tmp/diff_new_pack.fVyqaX/_new  2017-09-19 16:31:40.184978051 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-bzlib
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,16 +22,13 @@
 Release:0
 Summary:Compression and decompression in the bzip2 format
 License:BSD-3-Clause
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  libbz2-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 This package provides a pure interface for compressing and decompressing
@@ -44,14 +41,12 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
-# Begin cabal-rpm deps:
 Requires:   libbz2-devel
 Requires(post): ghc-compiler = %{ghc_version}
 Requires(postun): ghc-compiler = %{ghc_version}
-# End cabal-rpm deps
 
 %description devel
 This package provides the Haskell %{pkg_name} library development files.
@@ -59,15 +54,12 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 
@@ -75,11 +67,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc examples
 
 %changelog




commit clckwrks-cli for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package clckwrks-cli for openSUSE:Factory 
checked in at 2017-09-19 16:30:04

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


Package is "clckwrks-cli"

Tue Sep 19 16:30:04 2017 rev:2 rq:526702 version:0.2.17.1

Changes:

--- /work/SRC/openSUSE:Factory/clckwrks-cli/clckwrks-cli.changes
2017-05-17 10:53:25.706641213 +0200
+++ /work/SRC/openSUSE:Factory/.clckwrks-cli.new/clckwrks-cli.changes   
2017-09-19 16:31:32.674042030 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ clckwrks-cli.spec ++
--- /var/tmp/diff_new_pack.iRXG5v/_old  2017-09-19 16:31:33.169971778 +0200
+++ /var/tmp/diff_new_pack.iRXG5v/_new  2017-09-19 16:31:33.169971778 +0200
@@ -21,8 +21,8 @@
 Release:0
 Summary:A command-line interface for adminstrating some aspects of 
clckwrks
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{name}
 Source0:
https://hackage.haskell.org/package/%{name}-%{version}/%{name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-acid-state-devel
@@ -32,7 +32,6 @@
 BuildRequires:  ghc-network-devel
 BuildRequires:  ghc-parsec-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 This tool permits browsing of users, changing their roles, and other features.
@@ -47,7 +46,6 @@
 %ghc_bin_install
 
 %files
-%defattr(-,root,root,-)
 %doc LICENSE
 %{_bindir}/%{name}
 




commit kdeclarative for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kdeclarative for openSUSE:Factory 
checked in at 2017-09-19 16:29:17

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


Package is "kdeclarative"

Tue Sep 19 16:29:17 2017 rev:46 rq:527039 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kdeclarative/kdeclarative.changes
2017-08-24 17:55:53.250942804 +0200
+++ /work/SRC/openSUSE:Factory/.kdeclarative.new/kdeclarative.changes   
2017-09-19 16:31:25.203100352 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:17 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * None
+
+---

Old:

  kdeclarative-5.37.0.tar.xz

New:

  kdeclarative-5.38.0.tar.xz



Other differences:
--
++ kdeclarative.spec ++
--- /var/tmp/diff_new_pack.BlKKgZ/_old  2017-09-19 16:31:25.771019901 +0200
+++ /var/tmp/diff_new_pack.BlKKgZ/_new  2017-09-19 16:31:25.779018768 +0200
@@ -18,31 +18,38 @@
 
 %bcond_without lang
 %define lname   libKF5Declarative5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kdeclarative
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
 Summary:Integration of QML and KDE workspaces
+# Note for legal: GPL-2.0+ files relicensed upstream with permission from the 
authors
+# See commits g7482bef08, g62b8e46 and gaf91457 in the upstream KDE repository.
+# They will be part of the next release (5.39)
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
-BuildRequires:  kconfig-devel >= %{_tar_path}
-BuildRequires:  kcoreaddons-devel >= %{_tar_path}
+BuildRequires:  kconfig-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kcoreaddons-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kglobalaccel-devel >= %{_tar_path}
-BuildRequires:  kguiaddons-devel >= %{_tar_path}
-BuildRequires:  ki18n-devel >= %{_tar_path}
-BuildRequires:  kiconthemes-devel >= %{_tar_path}
-BuildRequires:  kio-devel >= %{_tar_path}
-BuildRequires:  kpackage-devel >= %{_tar_path}
-BuildRequires:  kwidgetsaddons-devel >= %{_tar_path}
-BuildRequires:  kwindowsystem-devel >= %{_tar_path}
+BuildRequires:  kglobalaccel-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kguiaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  ki18n-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kiconthemes-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kio-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kpackage-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kwidgetsaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kwindowsystem-devel >= %{_kf5_bugfix_version}
 BuildRequires:  libepoxy-devel
 BuildRequires:  cmake(Qt5Core) >= 5.6.0
 BuildRequires:  cmake(Qt5Gui) >= 5.6.0
@@ -101,9 +108,9 @@
 Requires:   %lname = %{version}
 Requires:   %{name}-components = %{version}
 Requires:   extra-cmake-modules
-Requires:   kconfig-devel >= %{_tar_path}
-Requires:   kcoreaddons-devel >= %{_tar_path}
-Requires:   kpackage-devel >= %{_tar_path}
+Requires:   kconfig-devel >= %{_kf5_bugfix_version}
+Requires:   kcoreaddons-devel >= %{_kf5_bugfix_version}
+Requires:   kpackage-devel >= %{_kf5_bugfix_version}
 Requires:   libKF5CalendarEvents5 = %{version}
 Requires:   libKF5QuickAddons5 = %{version}
 Requires:   cmake(Qt5Qml) >= 5.6.0

++ kdeclarative-5.37.0.tar.xz -> kdeclarative-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeclarative-5.37.0/CMakeLists.txt 
new/kdeclarative-5.38.0/CMakeLists.txt
--- old/kdeclarative-5.37.0/CMakeLists.txt  2017-08-06 19:59:45.0 
+0200
+++ new/kdeclarative-5.38.0/CMakeLists.txt  2017-09-03 10:03:18.0 
+0200
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.37.0") # handled by release scripts

commit ghc-FloatingHex for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ghc-FloatingHex for openSUSE:Factory 
checked in at 2017-09-19 16:30:07

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


Package is "ghc-FloatingHex"

Tue Sep 19 16:30:07 2017 rev:2 rq:526703 version:0.4

Changes:

--- /work/SRC/openSUSE:Factory/ghc-FloatingHex/ghc-FloatingHex.changes  
2017-04-12 18:04:36.876385014 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-FloatingHex.new/ghc-FloatingHex.changes 
2017-09-19 16:31:33.409937785 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-FloatingHex.spec ++
--- /var/tmp/diff_new_pack.QX3yUv/_old  2017-09-19 16:31:33.989855635 +0200
+++ /var/tmp/diff_new_pack.QX3yUv/_new  2017-09-19 16:31:33.993855068 +0200
@@ -22,13 +22,12 @@
 Release:0
 Summary:Read and write hexadecimal floating point numbers
 License:BSD-3-Clause
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-template-haskell-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Read and write hexadecimal floating point numbers. Provides a quasiquoter for
@@ -42,7 +41,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -67,11 +66,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc CHANGES.md README.md
 
 %changelog




commit ki18n for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ki18n for openSUSE:Factory checked 
in at 2017-09-19 16:29:05

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


Package is "ki18n"

Tue Sep 19 16:29:05 2017 rev:48 rq:526766 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/ki18n/ki18n.changes  2017-08-24 
17:56:13.516088465 +0200
+++ /work/SRC/openSUSE:Factory/.ki18n.new/ki18n.changes 2017-09-19 
16:30:35.210182499 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:17 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * autotests: fix when fr_FR is installed. semanticTags() needs English.
+
+---

Old:

  ki18n-5.37.0.tar.xz

New:

  ki18n-5.38.0.tar.xz



Other differences:
--
++ ki18n.spec ++
--- /var/tmp/diff_new_pack.CRBrey/_old  2017-09-19 16:30:36.050063516 +0200
+++ /var/tmp/diff_new_pack.CRBrey/_new  2017-09-19 16:30:36.054062948 +0200
@@ -18,12 +18,16 @@
 
 %bcond_without lang
 %define lname   libKF5I18n5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   ki18n
-Version:5.37.0
+Version:5.38.0
 Release:0
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  gettext-runtime
 BuildRequires:  kf5-filesystem

++ ki18n-5.37.0.tar.xz -> ki18n-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ki18n-5.37.0/CMakeLists.txt 
new/ki18n-5.38.0/CMakeLists.txt
--- old/ki18n-5.37.0/CMakeLists.txt 2017-08-06 20:03:41.0 +0200
+++ new/ki18n-5.38.0/CMakeLists.txt 2017-09-03 10:07:15.0 +0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
 project(KI18n VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ki18n-5.37.0/autotests/klocalizedstringtest.cpp 
new/ki18n-5.38.0/autotests/klocalizedstringtest.cpp
--- old/ki18n-5.37.0/autotests/klocalizedstringtest.cpp 2017-08-06 
20:03:41.0 +0200
+++ new/ki18n-5.38.0/autotests/klocalizedstringtest.cpp 2017-09-03 
10:07:15.0 +0200
@@ -235,6 +235,8 @@
 
 void KLocalizedStringTest::semanticTags()
 {
+KLocalizedString::setLanguages({"en"});
+
 // 
 QCOMPARE(xi18nc("@action:inmenu", "Open with 
%1", "Okteta"),
  QString("Open with Okteta"));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ki18n-5.37.0/autotests/klocalizedstringtest.h 
new/ki18n-5.38.0/autotests/klocalizedstringtest.h
--- old/ki18n-5.37.0/autotests/klocalizedstringtest.h   2017-08-06 
20:03:41.0 +0200
+++ new/ki18n-5.38.0/autotests/klocalizedstringtest.h   2017-09-03 
10:07:15.0 +0200
@@ -29,7 +29,6 @@
 void initTestCase();
 void correctSubs();
 void wrongSubs();
-void semanticTags();
 void removeAcceleratorMarker();
 void miscMethods();
 void translateToFrenchLowlevel();
@@ -40,6 +39,7 @@
 void testThreads();
 
 void testLocalizedTranslator();
+void semanticTags();
 
 private:
 bool m_hasFrench;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ki18n-5.37.0/po/eu/ki18n5.po 
new/ki18n-5.38.0/po/eu/ki18n5.po
--- old/ki18n-5.37.0/po/eu/ki18n5.po2017-08-06 20:03:41.0 +0200
+++ new/ki18n-5.38.0/po/eu/ki18n5.po2017-09-03 10:07:15.0 +0200
@@ -1,25 +1,26 @@
-# translation of kdelibs4.po to Euskara/Basque (eu)
-# KDE: EUSKERA TRANSLATION
-# Copyright (C) 1999,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011, Free 
Software Foundation, Inc.
+# Translation of ki18n5.po to Euskara/Basque (eu).
+# Copyright (C) 1999-2017, Free Software Foundation, Inc

commit breeze5-icons for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2017-09-19 16:28:59

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


Package is "breeze5-icons"

Tue Sep 19 16:28:59 2017 rev:23 rq:526697 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes  
2017-08-24 17:53:02.694965603 +0200
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new/breeze5-icons.changes 
2017-09-19 16:29:00.891545051 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:16 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * None
+
+---

Old:

  breeze-icons-5.37.0.tar.xz

New:

  breeze-icons-5.38.0.tar.xz



Other differences:
--
++ breeze5-icons.spec ++
--- /var/tmp/diff_new_pack.IhrRYl/_old  2017-09-19 16:29:01.495459487 +0200
+++ /var/tmp/diff_new_pack.IhrRYl/_new  2017-09-19 16:29:01.499458921 +0200
@@ -16,9 +16,13 @@
 #
 
 
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   breeze5-icons
-Version:5.37.0
+Version:5.38.0
 Release:0
 Summary:Breeze icon theme
 License:LGPL-3.0
@@ -28,7 +32,7 @@
 # PATCH-FIX-OPENSUSE oxygen.diff -- inherit from oxygen
 Patch0: oxygen.diff
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  libxml2-tools

++ breeze-icons-5.37.0.tar.xz -> breeze-icons-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.37.0/CMakeLists.txt 
new/breeze-icons-5.38.0/CMakeLists.txt
--- old/breeze-icons-5.37.0/CMakeLists.txt  2017-08-06 18:25:08.0 
+0200
+++ new/breeze-icons-5.38.0/CMakeLists.txt  2017-09-02 10:47:30.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
 project(BreezeIcons VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.37.0/icons/index.theme 
new/breeze-icons-5.38.0/icons/index.theme
--- old/breeze-icons-5.37.0/icons/index.theme   2017-08-06 18:25:08.0 
+0200
+++ new/breeze-icons-5.38.0/icons/index.theme   2017-09-02 10:47:30.0 
+0200
@@ -11,6 +11,7 @@
 Name[en_GB]=Breeze
 Name[es]=Brisa
 Name[et]=Breeze
+Name[eu]=Breeze
 Name[fi]=Breeze
 Name[fr]=Brise
 Name[gd]=Oiteag
@@ -48,6 +49,7 @@
 Comment[en_GB]=Default Plasma 5 Theme
 Comment[es]=Tema por omisión de Plasma 5
 Comment[et]=Vaikimisi Plasma 5 teema
+Comment[eu]=Plasma 5eko gai lehenetsia
 Comment[fi]=Plasma 5:n oletusteema
 Comment[fr]=Thème par défaut de Plasma 5
 Comment[gd]=Ùrlar Plasma 5 bunaiteach
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.37.0/icons-dark/index.theme 
new/breeze-icons-5.38.0/icons-dark/index.theme
--- old/breeze-icons-5.37.0/icons-dark/index.theme  2017-08-06 
18:25:08.0 +0200
+++ new/breeze-icons-5.38.0/icons-dark/index.theme  2017-09-02 
10:47:30.0 +0200
@@ -11,6 +11,7 @@
 Name[en_GB]=Breeze Dark
 Name[es]=Brisa oscura
 Name[et]=Breeze Dark
+Name[eu]=Breeze iluna
 Name[fi]=Breeze Dark
 Name[fr]=Brise Foncée
 Name[gd]=Oiteag dhorcha
@@ -48,6 +49,7 @@
 Comment[en_GB]=Default Plasma 5 Theme for Dark themes
 Comment[es]=Tema por omisión de Plasma 5 para temas oscuros
 Comment[et]=Vaikimisi Plasma 5 tume teema
+Comment[eu]=Plasma 5eko gai ilun lehenetsia
 Comment[fi]=Plasma 5:n oletusteema tummille teemoille
 Comment[fr]=Thème par défaut de Plasma 5 pour les thèmes foncés
 Comment[gd]=Ùrlar Plasma 5 bunaiteach airson ùrlaran dorcha




commit threadweaver for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package threadweaver for openSUSE:Factory 
checked in at 2017-09-19 16:28:53

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


Package is "threadweaver"

Tue Sep 19 16:28:53 2017 rev:45 rq:526689 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/threadweaver/threadweaver.changes
2017-08-24 18:00:36.443055422 +0200
+++ /work/SRC/openSUSE:Factory/.threadweaver.new/threadweaver.changes   
2017-09-19 16:28:56.836119634 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:19 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * Do not leak symbols of pimpl classes, protect with Q_DECL_HIDDEN
+
+---

Old:

  threadweaver-5.37.0.tar.xz

New:

  threadweaver-5.38.0.tar.xz



Other differences:
--
++ threadweaver.spec ++
--- /var/tmp/diff_new_pack.f9Mcxy/_old  2017-09-19 16:28:57.600011404 +0200
+++ /var/tmp/diff_new_pack.f9Mcxy/_new  2017-09-19 16:28:57.604010837 +0200
@@ -17,12 +17,16 @@
 
 
 %define lname   libKF5ThreadWeaver5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   threadweaver
-Version:5.37.0
+Version:5.38.0
 Release:0
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  cmake(Qt5Core) >= 5.6.0

++ threadweaver-5.37.0.tar.xz -> threadweaver-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/threadweaver-5.37.0/CMakeLists.txt 
new/threadweaver-5.38.0/CMakeLists.txt
--- old/threadweaver-5.37.0/CMakeLists.txt  2017-08-06 19:02:24.0 
+0200
+++ new/threadweaver-5.38.0/CMakeLists.txt  2017-09-02 11:47:16.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
 project(ThreadWeaver VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/threadweaver-5.37.0/src/dependencypolicy.cpp 
new/threadweaver-5.38.0/src/dependencypolicy.cpp
--- old/threadweaver-5.37.0/src/dependencypolicy.cpp2017-08-06 
19:02:24.0 +0200
+++ new/threadweaver-5.38.0/src/dependencypolicy.cpp2017-09-02 
11:47:16.0 +0200
@@ -42,7 +42,7 @@
 
 typedef QMultiMap JobMultiMap;
 
-class DependencyPolicy::Private
+class Q_DECL_HIDDEN DependencyPolicy::Private
 {
 public:
 /** A container to keep track of Job dependencies.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/threadweaver-5.37.0/src/queue.cpp 
new/threadweaver-5.38.0/src/queue.cpp
--- old/threadweaver-5.37.0/src/queue.cpp   2017-08-06 19:02:24.0 
+0200
+++ new/threadweaver-5.38.0/src/queue.cpp   2017-09-02 11:47:16.0 
+0200
@@ -39,7 +39,7 @@
 static Queue::GlobalQueueFactory *globalQueueFactory;
 }
 
-class Queue::Private
+class Q_DECL_HIDDEN Queue::Private
 {
 public:
 Private(Queue *q, QueueSignals *queue)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/threadweaver-5.37.0/src/queuestream.cpp 
new/threadweaver-5.38.0/src/queuestream.cpp
--- old/threadweaver-5.37.0/src/queuestream.cpp 2017-08-06 19:02:24.0 
+0200
+++ new/threadweaver-5.38.0/src/queuestream.cpp 2017-09-02 11:47:16.0 
+0200
@@ -34,7 +34,7 @@
 namespace ThreadWeaver
 {
 
-class QueueStream::Private
+class Q_DECL_HIDDEN QueueStream::Private
 {
 public:
 Private(Queue *w) : weaver(w) {}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/threadweaver-5.37.0/src/resourcerestrictionpolicy.cpp 
new/threadweaver-5.38.0/src/resourcerestrictionpolicy.cpp
--- old/threadweaver-5.37.0

commit prison-qt5 for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package prison-qt5 for openSUSE:Factory 
checked in at 2017-09-19 16:28:06

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


Package is "prison-qt5"

Tue Sep 19 16:28:06 2017 rev:10 rq:526685 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/prison-qt5/prison-qt5.changes2017-08-24 
18:00:10.266742325 +0200
+++ /work/SRC/openSUSE:Factory/.prison-qt5.new/prison-qt5.changes   
2017-09-19 16:28:17.805649709 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:19 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * None
+
+---

Old:

  prison-5.37.0.tar.xz

New:

  prison-5.38.0.tar.xz



Other differences:
--
++ prison-qt5.spec ++
--- /var/tmp/diff_new_pack.dspEYY/_old  2017-09-19 16:28:18.329575474 +0200
+++ /var/tmp/diff_new_pack.dspEYY/_new  2017-09-19 16:28:18.329575474 +0200
@@ -19,9 +19,13 @@
 %define sonum   5
 %define rname prison
 %define _libname KF5Prison
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   prison-qt5
-Version:5.37.0
+Version:5.38.0
 Release:0
 Summary:Barcode abstraction layer library
 License:MIT
@@ -30,7 +34,7 @@
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{rname}-%{version}.tar.xz
 Source99:   baselibs.conf
 BuildRequires:  cmake >= 2.8.12
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkg-config

++ prison-5.37.0.tar.xz -> prison-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/prison-5.37.0/CMakeLists.txt 
new/prison-5.38.0/CMakeLists.txt
--- old/prison-5.37.0/CMakeLists.txt2017-08-06 19:00:13.0 +0200
+++ new/prison-5.38.0/CMakeLists.txt2017-09-02 11:44:50.0 +0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
 project(prison VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.37.0 NO_MODULE)
+find_package(ECM 5.38.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" "${ECM_MODULE_PATH}")




commit sonnet for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2017-09-19 16:28:24

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


Package is "sonnet"

Tue Sep 19 16:28:24 2017 rev:47 rq:526687 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2017-08-24 
18:00:17.637704134 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2017-09-19 
16:28:25.704530527 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:19 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * Do not leak symbols of pimpl classes, protect with Q_DECL_HIDDEN
+
+---

Old:

  sonnet-5.37.0.tar.xz

New:

  sonnet-5.38.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.zo29EW/_old  2017-09-19 16:28:26.328442126 +0200
+++ /var/tmp/diff_new_pack.zo29EW/_new  2017-09-19 16:28:26.328442126 +0200
@@ -18,15 +18,19 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   sonnet
-Version:5.37.0
+Version:5.38.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0
 # Enchant plugin is currently disabled upstream
 #BuildRequires:  enchant-devel
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 %if %{with lang}
@@ -53,7 +57,7 @@
 %package -n libKF5SonnetCore%sonum
 Summary:KDE spell checking library
 Group:  System/GUI/KDE
-Requires:   %{name} >= %{_tar_path}
+Requires:   %{name} >= %{_kf5_bugfix_version}
 Obsoletes:  libKF5SonnetCore4
 %if %{with lang}
 Recommends: libKF5SonnetCore%sonum-lang = %{version}

++ sonnet-5.37.0.tar.xz -> sonnet-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.37.0/CMakeLists.txt 
new/sonnet-5.38.0/CMakeLists.txt
--- old/sonnet-5.37.0/CMakeLists.txt2017-08-06 20:15:00.0 +0200
+++ new/sonnet-5.38.0/CMakeLists.txt2017-09-03 10:18:55.0 +0200
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.37.0/po/gl/sonnet5_qt.po 
new/sonnet-5.38.0/po/gl/sonnet5_qt.po
--- old/sonnet-5.37.0/po/gl/sonnet5_qt.po   2017-08-06 20:15:00.0 
+0200
+++ new/sonnet-5.38.0/po/gl/sonnet5_qt.po   2017-09-03 10:18:55.0 
+0200
@@ -16,7 +16,7 @@
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2014-03-23 01:50+\n"
-"PO-Revision-Date: 2017-07-26 08:57+0100\n"
+"PO-Revision-Date: 2017-08-12 15:22+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
@@ -167,7 +167,7 @@
 #: ui/configui.ui:54
 msgctxt "SonnetConfigUI|"
 msgid "Enable &background spellchecking"
-msgstr "Activar a &corrección en segundo plano"
+msgstr "Activar a &corrección ortográfica en segundo plano"
 
 #: ui/configui.ui:61
 msgctxt "SonnetConfigUI|"
@@ -222,22 +222,22 @@
 #: ui/dialog.cpp:244
 msgctxt "Sonnet::Dialog|"
 msgid "Spell check stopped."
-msgstr "Detívose a corrección de ortografía."
+msgstr "Detívose a corrección ortográfica."
 
 #: ui/dialog.cpp:254
 msgctxt "Sonnet::Dialog|"
 msgid "Spell check canceled."
-msgstr "Cancelouse a corrección de ortografía."
+msgstr "Cancelouse a corrección ortográfica."
 
 #: ui/dialog.cpp:430 ui/dialog.cpp:433
 msgctxt "Sonnet::Dialog|"
 msgid "Spell check complete."
-msgstr "Completouse a corrección de ortografía."
+msgstr "Completouse a corrección ortográfica."
 
 #: ui/highlighter.cpp:229 ui/highlight

commit syntax-highlighting for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package syntax-highlighting for 
openSUSE:Factory checked in at 2017-09-19 16:28:35

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


Package is "syntax-highlighting"

Tue Sep 19 16:28:35 2017 rev:11 rq:526688 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/syntax-highlighting/syntax-highlighting.changes  
2017-08-24 18:00:29.827987147 +0200
+++ 
/work/SRC/openSUSE:Factory/.syntax-highlighting.new/syntax-highlighting.changes 
2017-09-19 16:28:38.930656558 +0200
@@ -1,0 +2,21 @@
+Tue Sep 12 07:11:19 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * Add syntax definition for Adblock Plus filter lists
+  * Rewrite the Sieve syntax definition
+  * Add highlighting for QDoc configuration files
+  * Add highlight definition for Tiger
+  * Escape hyphen in rest.xml regular expressions (kde#383632)
+  * fix: plaintext is highlighted as powershell
+  * indexer: Use qWarning for every error message
+  * Add syntax highlighting for Metamath
+  * Lesscss highlighting: Add generated reference as unit test
+  * Rebased Less syntax highlighting on SCSS one (kde#369277)
+  * Add Pony highlighting
+  * Rewrite the email syntax definition
+
+---

Old:

  syntax-highlighting-5.37.0.tar.xz

New:

  syntax-highlighting-5.38.0.tar.xz



Other differences:
--
++ syntax-highlighting.spec ++
--- /var/tmp/diff_new_pack.sXsguz/_old  2017-09-19 16:28:39.502575526 +0200
+++ /var/tmp/diff_new_pack.sXsguz/_new  2017-09-19 16:28:39.506574958 +0200
@@ -18,9 +18,13 @@
 
 %bcond_without lang
 %define lname   libKF5SyntaxHighlighting5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   syntax-highlighting
-Version:5.37.0
+Version:5.38.0
 Release:0
 Summary:Syntax highlighting engine and library
 License:LGPL-2.1+ and GPL-2.0 and GPL-2.0+ and GPL-3.0 and MIT and 
BSD-3-Clause and Artistic-1.0
@@ -29,7 +33,7 @@
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 %if %{with lang}

++ syntax-highlighting-5.37.0.tar.xz -> syntax-highlighting-5.38.0.tar.xz 
++
 13368 lines of diff (skipped)




commit solid for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package solid for openSUSE:Factory checked 
in at 2017-09-19 16:28:18

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


Package is "solid"

Tue Sep 19 16:28:18 2017 rev:47 rq:526686 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/solid/solid.changes  2017-08-24 
18:00:12.786387435 +0200
+++ /work/SRC/openSUSE:Factory/.solid.new/solid.changes 2017-09-19 
16:28:20.573257569 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:19 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * None
+
+---

Old:

  solid-5.37.0.tar.xz

New:

  solid-5.38.0.tar.xz



Other differences:
--
++ solid.spec ++
--- /var/tmp/diff_new_pack.xTFKet/_old  2017-09-19 16:28:21.177172001 +0200
+++ /var/tmp/diff_new_pack.xTFKet/_new  2017-09-19 16:28:21.181171434 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5Solid5
-%define _tar_path 5.37
+%define _tar_path 5.38
 Name:   solid
-Version:5.37.0
+Version:5.38.0
 Release:0
 BuildRequires:  bison
 BuildRequires:  cmake >= 3.0

++ solid-5.37.0.tar.xz -> solid-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/solid-5.37.0/CMakeLists.txt 
new/solid-5.38.0/CMakeLists.txt
--- old/solid-5.37.0/CMakeLists.txt 2017-08-06 20:14:40.0 +0200
+++ new/solid-5.38.0/CMakeLists.txt 2017-09-03 10:18:35.0 +0200
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
 project(Solid VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/solid-5.37.0/po/gl/solid5_qt.po 
new/solid-5.38.0/po/gl/solid5_qt.po
--- old/solid-5.37.0/po/gl/solid5_qt.po 2017-08-06 20:14:40.0 +0200
+++ new/solid-5.38.0/po/gl/solid5_qt.po 2017-09-03 10:18:35.0 +0200
@@ -858,7 +858,7 @@
 #: solid/devices/backends/udisks2/udisksdevice.cpp:722
 msgctxt "Solid::Backends::UDisks2::Device|"
 msgid "An invalid or malformed option has been given"
-msgstr "Indicouse unha opción non válida ou mal formada."
+msgstr "Indicouse unha opción incorrecta ou mal formada."
 
 #: solid/devices/backends/udisks2/udisksdevice.cpp:724
 msgctxt "Solid::Backends::UDisks2::Device|"




commit oxygen5-icon-theme for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package oxygen5-icon-theme for 
openSUSE:Factory checked in at 2017-09-19 16:27:54

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


Package is "oxygen5-icon-theme"

Tue Sep 19 16:27:54 2017 rev:18 rq:526683 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/oxygen5-icon-theme/oxygen5-icon-theme.changes
2017-08-24 17:59:52.873192186 +0200
+++ 
/work/SRC/openSUSE:Factory/.oxygen5-icon-theme.new/oxygen5-icon-theme.changes   
2017-09-19 16:28:04.719503890 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:18 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * None
+
+---

Old:

  oxygen-icons5-5.37.0.tar.xz

New:

  oxygen-icons5-5.38.0.tar.xz



Other differences:
--
++ oxygen5-icon-theme.spec ++
--- /var/tmp/diff_new_pack.TSoB1t/_old  2017-09-19 16:28:13.242296289 +0200
+++ /var/tmp/diff_new_pack.TSoB1t/_new  2017-09-19 16:28:13.246295722 +0200
@@ -18,9 +18,13 @@
 
 %bcond_with autotests
 
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   oxygen5-icon-theme
-Version:5.37.0
+Version:5.38.0
 Release:0
 Summary:Oxygen Icon Theme
 License:LGPL-3.0











++ oxygen-icons5-5.37.0.tar.xz -> oxygen-icons5-5.38.0.tar.xz ++
/work/SRC/openSUSE:Factory/oxygen5-icon-theme/oxygen-icons5-5.37.0.tar.xz 
/work/SRC/openSUSE:Factory/.oxygen5-icon-theme.new/oxygen-icons5-5.38.0.tar.xz 
differ: char 27, line 1




commit libKF5NetworkManagerQt for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package libKF5NetworkManagerQt for 
openSUSE:Factory checked in at 2017-09-19 16:27:43

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


Package is "libKF5NetworkManagerQt"

Tue Sep 19 16:27:43 2017 rev:42 rq:526682 version:5.38.0

Changes:

--- 
/work/SRC/openSUSE:Factory/libKF5NetworkManagerQt/libKF5NetworkManagerQt.changes
2017-08-24 17:59:33.335943986 +0200
+++ 
/work/SRC/openSUSE:Factory/.libKF5NetworkManagerQt.new/libKF5NetworkManagerQt.changes
   2017-09-19 16:27:45.066288615 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:18 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * None
+
+---

Old:

  networkmanager-qt-5.37.0.tar.xz

New:

  networkmanager-qt-5.38.0.tar.xz



Other differences:
--
++ libKF5NetworkManagerQt.spec ++
--- /var/tmp/diff_new_pack.IMKhjr/_old  2017-09-19 16:27:49.061722484 +0200
+++ /var/tmp/diff_new_pack.IMKhjr/_new  2017-09-19 16:27:49.061722484 +0200
@@ -17,9 +17,13 @@
 
 
 %define soversion 6
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   libKF5NetworkManagerQt
-Version:5.37.0
+Version:5.38.0
 Release:0
 Summary:A Qt wrapper for NetworkManager DBus API
 License:LGPL-2.1 or LGPL-3.0
@@ -28,7 +32,7 @@
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/networkmanager-qt-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  cmake
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
 BuildRequires:  cmake(Qt5Core) >= 5.6.0
 BuildRequires:  cmake(Qt5DBus) >= 5.6.0

++ networkmanager-qt-5.37.0.tar.xz -> networkmanager-qt-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/networkmanager-qt-5.37.0/CMakeLists.txt 
new/networkmanager-qt-5.38.0/CMakeLists.txt
--- old/networkmanager-qt-5.37.0/CMakeLists.txt 2017-08-06 18:58:32.0 
+0200
+++ new/networkmanager-qt-5.38.0/CMakeLists.txt 2017-09-02 11:42:56.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
 project(NetworkManagerQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit kxmlgui for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kxmlgui for openSUSE:Factory checked 
in at 2017-09-19 16:27:26

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


Package is "kxmlgui"

Tue Sep 19 16:27:26 2017 rev:48 rq:526679 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kxmlgui/kxmlgui.changes  2017-08-24 
17:59:11.734986459 +0200
+++ /work/SRC/openSUSE:Factory/.kxmlgui.new/kxmlgui.changes 2017-09-19 
16:27:30.144402986 +0200
@@ -1,0 +2,16 @@
+Tue Sep 12 07:11:18 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * Save up a bunch of stat() calls on application start
+  * Fix KHelpMenu position on Wayland
+  * Remove checks for Qt < 5.6, now that even 5.7 is required.
+  * Do not leak symbols of pimpl classes, protect with Q_DECL_HIDDEN
+  * Drop broken mid-button click handling (kde#383162)
+  * KUndoActions: use actionCollection to set the shortcut
+  * autotest: output filename on error
+
+---

Old:

  kxmlgui-5.37.0.tar.xz

New:

  kxmlgui-5.38.0.tar.xz



Other differences:
--
++ kxmlgui.spec ++
--- /var/tmp/diff_new_pack.LbKJDQ/_old  2017-09-19 16:27:31.064272643 +0200
+++ /var/tmp/diff_new_pack.LbKJDQ/_new  2017-09-19 16:27:31.068272077 +0200
@@ -18,26 +18,29 @@
 
 %bcond_without lang
 %define lname   libKF5XmlGui5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kxmlgui
-Version:5.37.0
+Version:5.38.0
 Release:0
-%define kf5_version %{version}
-BuildRequires:  attica-qt5-devel >= %{_tar_path}
+BuildRequires:  attica-qt5-devel >= %{_kf5_bugfix_version}
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
-BuildRequires:  kconfig-devel >= %{_tar_path}
-BuildRequires:  kconfigwidgets-devel >= %{_tar_path}
-BuildRequires:  kcoreaddons-devel >= %{_tar_path}
+BuildRequires:  kconfig-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kconfigwidgets-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kcoreaddons-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kglobalaccel-devel >= %{_tar_path}
-BuildRequires:  ki18n-devel >= %{_tar_path}
-BuildRequires:  kiconthemes-devel >= %{_tar_path}
-BuildRequires:  kitemviews-devel >= %{_tar_path}
-BuildRequires:  ktextwidgets-devel >= %{_tar_path}
-BuildRequires:  kwidgetsaddons-devel >= %{_tar_path}
-BuildRequires:  kwindowsystem-devel >= %{_tar_path}
+BuildRequires:  kglobalaccel-devel >= %{_kf5_bugfix_version}
+BuildRequires:  ki18n-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kiconthemes-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kitemviews-devel >= %{_kf5_bugfix_version}
+BuildRequires:  ktextwidgets-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kwidgetsaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kwindowsystem-devel >= %{_kf5_bugfix_version}
 BuildRequires:  cmake(Qt5Core) >= 5.6.0
 BuildRequires:  cmake(Qt5DBus) >= 5.6.0
 BuildRequires:  cmake(Qt5Network) >= 5.6.0
@@ -79,8 +82,8 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   kconfig-devel >= %{_tar_path}
-Requires:   kconfigwidgets-devel >= %{_tar_path}
+Requires:   kconfig-devel >= %{_kf5_bugfix_version}
+Requires:   kconfigwidgets-devel >= %{_kf5_bugfix_version}
 Requires:   cmake(Qt5DBus) >= 5.6.0
 Requires:   cmake(Qt5Widgets) >= 5.6.0
 Requires:   cmake(Qt5Xml) >= 5.6.0

++ kxmlgui-5.37.0.tar.xz -> kxmlgui-5.38.0.tar.xz ++
 19788 lines of diff (skipped)




commit kwindowsystem for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kwindowsystem for openSUSE:Factory 
checked in at 2017-09-19 16:27:20

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


Package is "kwindowsystem"

Tue Sep 19 16:27:20 2017 rev:49 rq:526678 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kwindowsystem/kwindowsystem.changes  
2017-08-24 17:59:03.656124358 +0200
+++ /work/SRC/openSUSE:Factory/.kwindowsystem.new/kwindowsystem.changes 
2017-09-19 16:27:21.857577212 +0200
@@ -1,0 +2,12 @@
+Tue Sep 12 07:11:18 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * Do not leak symbols of pimpl classes, protect with Q_DECL_HIDDEN
+  * Restore behaviour of KKeyServer::symXToKeyQt
+  * KKeyServer: fix handling of KeypadModifier.
+
+---

Old:

  kwindowsystem-5.37.0.tar.xz

New:

  kwindowsystem-5.38.0.tar.xz



Other differences:
--
++ kwindowsystem.spec ++
--- /var/tmp/diff_new_pack.r9XPfU/_old  2017-09-19 16:27:22.405499572 +0200
+++ /var/tmp/diff_new_pack.r9XPfU/_new  2017-09-19 16:27:22.413498439 +0200
@@ -18,12 +18,16 @@
 
 %bcond_without lang
 %define lname   libKF5WindowSystem5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kwindowsystem
-Version:5.37.0
+Version:5.38.0
 Release:0
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 %if %{with lang}

++ kwindowsystem-5.37.0.tar.xz -> kwindowsystem-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwindowsystem-5.37.0/CMakeLists.txt 
new/kwindowsystem-5.38.0/CMakeLists.txt
--- old/kwindowsystem-5.37.0/CMakeLists.txt 2017-08-06 20:12:39.0 
+0200
+++ new/kwindowsystem-5.38.0/CMakeLists.txt 2017-09-03 10:16:33.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
 project(KWindowSystem VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwindowsystem-5.37.0/autotests/CMakeLists.txt 
new/kwindowsystem-5.38.0/autotests/CMakeLists.txt
--- old/kwindowsystem-5.37.0/autotests/CMakeLists.txt   2017-08-06 
20:12:39.0 +0200
+++ new/kwindowsystem-5.38.0/autotests/CMakeLists.txt   2017-09-03 
10:16:33.0 +0200
@@ -39,6 +39,7 @@
 kmanagerselectiontest
 kstartupinfo_unittest
 kxmessages_unittest
+kkeyserver_x11_unittest
 )
 
 kwindowsystem_unit_tests(
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kwindowsystem-5.37.0/autotests/kkeyserver_x11_unittest.cpp 
new/kwindowsystem-5.38.0/autotests/kkeyserver_x11_unittest.cpp
--- old/kwindowsystem-5.37.0/autotests/kkeyserver_x11_unittest.cpp  
1970-01-01 01:00:00.0 +0100
+++ new/kwindowsystem-5.38.0/autotests/kkeyserver_x11_unittest.cpp  
2017-09-03 10:16:33.0 +0200
@@ -0,0 +1,79 @@
+/* This file is part of the KDE libraries
+Copyright (c) 2017 David Faure 
+
+This library is free software; you can redistribute it and/or modify
+it under the terms of the GNU Lesser General Public License as published by
+the Free Software Foundation; either version 2 of the License or ( at
+your option ) version 3 or, at the discretion of KDE e.V. ( which shall
+act as a proxy as in section 14 of the GPLv3 ), any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+Library General Public License for more details.

commit kxmlrpcclient5 for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kxmlrpcclient5 for openSUSE:Factory 
checked in at 2017-09-19 16:27:32

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


Package is "kxmlrpcclient5"

Tue Sep 19 16:27:32 2017 rev:31 rq:526680 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kxmlrpcclient5/kxmlrpcclient5.changes
2017-08-24 17:59:18.298062057 +0200
+++ /work/SRC/openSUSE:Factory/.kxmlrpcclient5.new/kxmlrpcclient5.changes   
2017-09-19 16:27:34.391801143 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:18 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * None
+
+---

Old:

  kxmlrpcclient-5.37.0.tar.xz

New:

  kxmlrpcclient-5.38.0.tar.xz



Other differences:
--
++ kxmlrpcclient5.spec ++
--- /var/tmp/diff_new_pack.bG5RcS/_old  2017-09-19 16:27:35.267677034 +0200
+++ /var/tmp/diff_new_pack.bG5RcS/_new  2017-09-19 16:27:35.271676468 +0200
@@ -19,9 +19,13 @@
 %bcond_without lang
 %define rname kxmlrpcclient
 %define lname libKF5XmlRpcClient5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kxmlrpcclient5
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
 Summary:Library containing simple XML-RPC Client support
@@ -30,10 +34,10 @@
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{rname}-%{version}.tar.xz
 Source1:baselibs.conf
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel >= %{_tar_path}
-BuildRequires:  kio-devel >= %{_tar_path}
+BuildRequires:  ki18n-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kio-devel >= %{_kf5_bugfix_version}
 BuildRequires:  cmake(Qt5Test) >= 5.6.0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -54,7 +58,7 @@
 Summary:Library containing simple XML-RPC Client support: Build 
Environment
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
-Requires:   kio-devel >= %{_tar_path}
+Requires:   kio-devel >= %{_kf5_bugfix_version}
 
 %description devel
 Library containing simple XML-RPC Client support. Development files.

++ kxmlrpcclient-5.37.0.tar.xz -> kxmlrpcclient-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kxmlrpcclient-5.37.0/CMakeLists.txt 
new/kxmlrpcclient-5.38.0/CMakeLists.txt
--- old/kxmlrpcclient-5.37.0/CMakeLists.txt 2017-08-06 20:13:16.0 
+0200
+++ new/kxmlrpcclient-5.38.0/CMakeLists.txt 2017-09-03 10:17:10.0 
+0200
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.38.0") # handled by release scripts
 project(KXmlRpcClient VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.37.0 CONFIG )
+find_package(ECM 5.38.0 CONFIG )
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kxmlrpcclient-5.37.0/po/eu/libkxmlrpcclient5.po 
new/kxmlrpcclient-5.38.0/po/eu/libkxmlrpcclient5.po
--- old/kxmlrpcclient-5.37.0/po/eu/libkxmlrpcclient5.po 1970-01-01 
01:00:00.0 +0100
+++ new/kxmlrpcclient-5.38.0/po/eu/libkxmlrpcclient5.po 2017-09-03 
10:17:10.0 +0200
@@ -0,0 +1,31 @@
+# Translation of libkxmlrpcclient5.po to Euskara/Basque (eu).
+# Copyright (C) 2017, Free Software Foundation, Inc.
+# This file is distributed under the same license as the frameworks package.
+# KDE Euskaratzeko proiektuaren arduraduna .
+#
+# Translators:
+# Iñigo Salvador Azurmendi , 2017.
+msgid ""
+msgstr ""
+"Project-Id-Version: libkxmlrpcclient5\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2016-11-19 20:12+0100\n"
+"PO-Revision

commit kwidgetsaddons for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kwidgetsaddons for openSUSE:Factory 
checked in at 2017-09-19 16:27:13

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


Package is "kwidgetsaddons"

Tue Sep 19 16:27:13 2017 rev:45 rq:526677 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kwidgetsaddons/kwidgetsaddons.changes
2017-08-24 18:11:10.821734277 +0200
+++ /work/SRC/openSUSE:Factory/.kwidgetsaddons.new/kwidgetsaddons.changes   
2017-09-19 16:27:15.278509460 +0200
@@ -1,0 +2,19 @@
+Tue Sep 12 07:11:18 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * simplify setContents by letting Qt do more of the work
+  * KSqueezedTextLabel: Add isSqueezed() for convenience
+  * KSqueezedTextLabel: Small improvements to API docs
+  * [KPasswordLineEdit] Set focus proxy to line edit (kde#383653)
+  * [KPasswordDialog] Reset geometry property
+  * Tag some more private classes with hidden visibility
+  * Do not leak symbols of pimpl classes, protect with Q_DECL_HIDDEN
+- Dropped patches, now upstream:
+  * 0001-KPasswordDialog-Reset-geometry-property.patch
+  * 0001-KPasswordLineEdit-Set-focus-proxy-to-line-edit.patch
+
+---

Old:

  0001-KPasswordDialog-Reset-geometry-property.patch
  0001-KPasswordLineEdit-Set-focus-proxy-to-line-edit.patch
  kwidgetsaddons-5.37.0.tar.xz

New:

  kwidgetsaddons-5.38.0.tar.xz



Other differences:
--
++ kwidgetsaddons.spec ++
--- /var/tmp/diff_new_pack.G3TBxG/_old  2017-09-19 16:27:17.102251037 +0200
+++ /var/tmp/diff_new_pack.G3TBxG/_new  2017-09-19 16:27:17.106250471 +0200
@@ -18,12 +18,16 @@
 
 %bcond_without lang
 %define lname   libKF5WidgetsAddons5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kwidgetsaddons
-Version:5.37.0
+Version:5.38.0
 Release:0
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 %if %{with lang}
@@ -38,10 +42,6 @@
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
-# PATCH-FIX-UPSTREAM
-Patch0: 0001-KPasswordLineEdit-Set-focus-proxy-to-line-edit.patch
-# PATCH-FIX-UPSTREAM
-Patch1: 0001-KPasswordDialog-Reset-geometry-property.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -79,8 +79,6 @@
 %lang_package -n %lname
 %prep
 %setup -q
-%patch0 -p1
-%patch1 -p1
 
 %build
   %cmake_kf5 -d build -- -Dlconvert_executable=%{_kf5_libdir}/qt5/bin/lconvert

++ kwidgetsaddons-5.37.0.tar.xz -> kwidgetsaddons-5.38.0.tar.xz ++
 34481 lines of diff (skipped)




commit libKF5ModemManagerQt for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package libKF5ModemManagerQt for 
openSUSE:Factory checked in at 2017-09-19 16:27:38

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


Package is "libKF5ModemManagerQt"

Tue Sep 19 16:27:38 2017 rev:41 rq:526681 version:5.38.0

Changes:

--- 
/work/SRC/openSUSE:Factory/libKF5ModemManagerQt/libKF5ModemManagerQt.changes
2017-08-24 17:59:23.645308902 +0200
+++ 
/work/SRC/openSUSE:Factory/.libKF5ModemManagerQt.new/libKF5ModemManagerQt.changes
   2017-09-19 16:27:39.407090496 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:18 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * None
+
+---

Old:

  modemmanager-qt-5.37.0.tar.xz

New:

  modemmanager-qt-5.38.0.tar.xz



Other differences:
--
++ libKF5ModemManagerQt.spec ++
--- /var/tmp/diff_new_pack.VoxhIJ/_old  2017-09-19 16:27:40.150985090 +0200
+++ /var/tmp/diff_new_pack.VoxhIJ/_new  2017-09-19 16:27:40.150985090 +0200
@@ -17,9 +17,13 @@
 
 
 %define soversion 6
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   libKF5ModemManagerQt
-Version:5.37.0
+Version:5.38.0
 Release:0
 Summary:Qt wrapper for ModemManager DBus API
 License:LGPL-2.1 or LGPL-3.0
@@ -27,7 +31,7 @@
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/modemmanager-qt-%{version}.tar.xz
 BuildRequires:  cmake
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
 BuildRequires:  cmake(Qt5Core) >= 5.6.0
 BuildRequires:  cmake(Qt5DBus) >= 5.6.0

++ modemmanager-qt-5.37.0.tar.xz -> modemmanager-qt-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/modemmanager-qt-5.37.0/CMakeLists.txt 
new/modemmanager-qt-5.38.0/CMakeLists.txt
--- old/modemmanager-qt-5.37.0/CMakeLists.txt   2017-08-06 18:58:00.0 
+0200
+++ new/modemmanager-qt-5.38.0/CMakeLists.txt   2017-09-02 11:42:10.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
 project(ModemManagerQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit kwayland for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kwayland for openSUSE:Factory 
checked in at 2017-09-19 16:27:08

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


Package is "kwayland"

Tue Sep 19 16:27:08 2017 rev:40 rq:526676 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kwayland/kwayland.changes2017-08-24 
17:58:57.592978347 +0200
+++ /work/SRC/openSUSE:Factory/.kwayland.new/kwayland.changes   2017-09-19 
16:27:09.719297202 +0200
@@ -1,0 +2,14 @@
+Tue Sep 12 07:11:18 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * Treat input RGB buffers as premultiplied
+  * Update SurfaceInterface outputs when an output global gets destroyed
+  * KWayland::Client::Surface track output destruction
+  * Do not leak symbols of pimpl classes, protect with Q_DECL_HIDDEN
+  * Avoid sending data offers from an invalid source. (kde#383054)
+
+---

Old:

  kwayland-5.37.0.tar.xz

New:

  kwayland-5.38.0.tar.xz



Other differences:
--
++ kwayland.spec ++
--- /var/tmp/diff_new_pack.06Dygz/_old  2017-09-19 16:27:10.379203693 +0200
+++ /var/tmp/diff_new_pack.06Dygz/_new  2017-09-19 16:27:10.383203127 +0200
@@ -16,9 +16,13 @@
 #
 
 
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kwayland
-Version:5.37.0
+Version:5.38.0
 Release:0
 Summary:KDE Wayland library
 License:LGPL-2.1+
@@ -27,7 +31,7 @@
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  libQt5Gui-private-headers-devel >= 5.6.0

++ kwayland-5.37.0.tar.xz -> kwayland-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.37.0/CMakeLists.txt 
new/kwayland-5.38.0/CMakeLists.txt
--- old/kwayland-5.37.0/CMakeLists.txt  2017-08-06 18:55:14.0 +0200
+++ new/kwayland-5.38.0/CMakeLists.txt  2017-09-02 11:39:02.0 +0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
 project(KWayland VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.37.0/autotests/client/test_drag_drop.cpp 
new/kwayland-5.38.0/autotests/client/test_drag_drop.cpp
--- old/kwayland-5.37.0/autotests/client/test_drag_drop.cpp 2017-08-06 
18:55:14.0 +0200
+++ new/kwayland-5.38.0/autotests/client/test_drag_drop.cpp 2017-09-02 
11:39:02.0 +0200
@@ -187,7 +187,7 @@
 using namespace KWayland::Client;
 auto s = m_compositor->createSurface();
 
-QImage img(QSize(100, 200), QImage::Format_ARGB32);
+QImage img(QSize(100, 200), QImage::Format_RGB32);
 img.fill(Qt::red);
 s->attachBuffer(m_shm->createBuffer(img));
 s->damage(QRect(0, 0, 100, 200));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.37.0/autotests/client/test_shadow.cpp 
new/kwayland-5.38.0/autotests/client/test_shadow.cpp
--- old/kwayland-5.37.0/autotests/client/test_shadow.cpp2017-08-06 
18:55:14.0 +0200
+++ new/kwayland-5.38.0/autotests/client/test_shadow.cpp2017-09-02 
11:39:02.0 +0200
@@ -204,28 +204,28 @@
 
 // now create the shadow
 QScopedPointer shadow(m_shadow->createShadow(surface.data()));
-QImage topLeftImage(QSize(10, 10), QImage::Format_ARGB32);
+QImage topLeftImage(QSize(10, 10), QImage::Format_ARGB32_Premultiplied);
 topLeftImage.fill(Qt::whit

commit kwallet for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kwallet for openSUSE:Factory checked 
in at 2017-09-19 16:27:00

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


Package is "kwallet"

Tue Sep 19 16:27:00 2017 rev:49 rq:526675 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kwallet/kwallet.changes  2017-08-24 
17:58:49.398132584 +0200
+++ /work/SRC/openSUSE:Factory/.kwallet.new/kwallet.changes 2017-09-19 
16:27:04.787995973 +0200
@@ -1,0 +2,11 @@
+Tue Sep 12 07:11:18 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * Do not leak symbols of pimpl classes, protect with Q_DECL_HIDDEN
+  * Don't use find_file for finding files in our own source dir
+
+---

Old:

  kwallet-5.37.0.tar.xz

New:

  kwallet-5.38.0.tar.xz



Other differences:
--
++ kwallet.spec ++
--- /var/tmp/diff_new_pack.r2iAwS/_old  2017-09-19 16:27:06.019821422 +0200
+++ /var/tmp/diff_new_pack.r2iAwS/_new  2017-09-19 16:27:06.023820855 +0200
@@ -18,13 +18,17 @@
 
 %bcond_without lang
 %define lname   libKF5Wallet5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kwallet
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 %if 0%{?is_opensuse} || 0%{?sle_version} >= 13
 BuildRequires:  libqgpgme-devel
@@ -34,18 +38,18 @@
 %else
 BuildRequires:  boost-devel
 %endif
-BuildRequires:  kconfig-devel >= %{_tar_path}
-BuildRequires:  kconfigwidgets-devel >= %{_tar_path}
-BuildRequires:  kcoreaddons-devel >= %{_tar_path}
-BuildRequires:  kdbusaddons-devel >= %{_tar_path}
-BuildRequires:  kdoctools-devel >= %{_tar_path}
+BuildRequires:  kconfig-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kconfigwidgets-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kcoreaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kdbusaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kdoctools-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel >= %{_tar_path}
-BuildRequires:  kiconthemes-devel >= %{_tar_path}
-BuildRequires:  knotifications-devel >= %{_tar_path}
-BuildRequires:  kservice-devel >= %{_tar_path}
-BuildRequires:  kwidgetsaddons-devel >= %{_tar_path}
-BuildRequires:  kwindowsystem-devel >= %{_tar_path}
+BuildRequires:  ki18n-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kiconthemes-devel >= %{_kf5_bugfix_version}
+BuildRequires:  knotifications-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kservice-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kwidgetsaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kwindowsystem-devel >= %{_kf5_bugfix_version}
 BuildRequires:  libgcrypt-devel >= 1.5.0
 BuildRequires:  cmake(Qt5DBus) >= 5.6.0
 BuildRequires:  cmake(Qt5Test) >= 5.6.0

++ kwallet-5.37.0.tar.xz -> kwallet-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwallet-5.37.0/CMakeLists.txt 
new/kwallet-5.38.0/CMakeLists.txt
--- old/kwallet-5.37.0/CMakeLists.txt   2017-08-06 20:11:41.0 +0200
+++ new/kwallet-5.38.0/CMakeLists.txt   2017-09-03 10:15:33.0 +0200
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.38.0") # handled by release scripts
 project(KWallet VERSION ${KF5_VERSION})
 set(CMAKE_EXPORT_COMPILE_COMMANDS 1)
 
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwallet-5.37.0/po/gl/kwalletd5.po 
new/kwallet-5.38.0/po/gl/kwalletd5.po
--- old/kwallet-5.37.0/po/gl/kwalletd5.po   2017-08-06 20:11:41.0

commit ktextwidgets for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ktextwidgets for openSUSE:Factory 
checked in at 2017-09-19 16:26:49

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


Package is "ktextwidgets"

Tue Sep 19 16:26:49 2017 rev:45 rq:526673 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/ktextwidgets/ktextwidgets.changes
2017-08-24 17:58:34.380247839 +0200
+++ /work/SRC/openSUSE:Factory/.ktextwidgets.new/ktextwidgets.changes   
2017-09-19 16:26:49.974095143 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:18 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * Do not leak symbols of pimpl classes, protect with Q_DECL_HIDDEN
+
+---

Old:

  ktextwidgets-5.37.0.tar.xz

New:

  ktextwidgets-5.38.0.tar.xz



Other differences:
--
++ ktextwidgets.spec ++
--- /var/tmp/diff_new_pack.OMnKtp/_old  2017-09-19 16:26:50.785980095 +0200
+++ /var/tmp/diff_new_pack.OMnKtp/_new  2017-09-19 16:26:50.789979529 +0200
@@ -18,24 +18,28 @@
 
 %bcond_without lang
 %define lname   libKF5TextWidgets5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   ktextwidgets
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
-BuildRequires:  kcompletion-devel >= %{_tar_path}
-BuildRequires:  kconfig-devel >= %{_tar_path}
-BuildRequires:  kconfigwidgets-devel >= %{_tar_path}
+BuildRequires:  kcompletion-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kconfig-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kconfigwidgets-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel >= %{_tar_path}
-BuildRequires:  kiconthemes-devel >= %{_tar_path}
-BuildRequires:  kservice-devel >= %{_tar_path}
-BuildRequires:  kwidgetsaddons-devel >= %{_tar_path}
-BuildRequires:  kwindowsystem-devel >= %{_tar_path}
-BuildRequires:  sonnet-devel >= %{_tar_path}
+BuildRequires:  ki18n-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kiconthemes-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kservice-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kwidgetsaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kwindowsystem-devel >= %{_kf5_bugfix_version}
+BuildRequires:  sonnet-devel >= %{_kf5_bugfix_version}
 BuildRequires:  cmake(Qt5Core) >= 5.6.0
 BuildRequires:  cmake(Qt5Test) >= 5.6.0
 BuildRequires:  cmake(Qt5Widgets) >= 5.6.0
@@ -68,8 +72,8 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   ki18n-devel >= %{_tar_path}
-Requires:   sonnet-devel >= %{_tar_path}
+Requires:   ki18n-devel >= %{_kf5_bugfix_version}
+Requires:   sonnet-devel >= %{_kf5_bugfix_version}
 Requires:   cmake(Qt5Widgets) >= 5.6.0
 
 %description devel

++ ktextwidgets-5.37.0.tar.xz -> ktextwidgets-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.37.0/CMakeLists.txt 
new/ktextwidgets-5.38.0/CMakeLists.txt
--- old/ktextwidgets-5.37.0/CMakeLists.txt  2017-08-06 20:10:55.0 
+0200
+++ new/ktextwidgets-5.38.0/CMakeLists.txt  2017-09-03 10:14:46.0 
+0200
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.38.0") # handled by release scripts
 project(KTextWidgets VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.37.0/po/eu/ktextwidgets5.po 
new/ktextwidgets-5.38.0/po/eu/ktextwidgets5.po
--- old/ktext

commit kunitconversion for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kunitconversion for openSUSE:Factory 
checked in at 2017-09-19 16:26:53

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


Package is "kunitconversion"

Tue Sep 19 16:26:53 2017 rev:46 rq:526674 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kunitconversion/kunitconversion.changes  
2017-08-24 17:58:41.263278370 +0200
+++ /work/SRC/openSUSE:Factory/.kunitconversion.new/kunitconversion.changes 
2017-09-19 16:26:57.517026284 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:18 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * None
+
+---

Old:

  kunitconversion-5.37.0.tar.xz

New:

  kunitconversion-5.38.0.tar.xz



Other differences:
--
++ kunitconversion.spec ++
--- /var/tmp/diff_new_pack.zimpL8/_old  2017-09-19 16:26:58.120940709 +0200
+++ /var/tmp/diff_new_pack.zimpL8/_new  2017-09-19 16:26:58.124940142 +0200
@@ -18,17 +18,20 @@
 
 %bcond_without lang
 %define lname   libKF5UnitConversion5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kunitconversion
-Version:5.37.0
+Version:5.38.0
 Release:0
-%define kf5_version %{version}
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
-BuildRequires:  kconfig-devel >= %{_tar_path}
+BuildRequires:  kconfig-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel >= %{_tar_path}
+BuildRequires:  ki18n-devel >= %{_kf5_bugfix_version}
 BuildRequires:  cmake(Qt5Core) >= 5.6.0
 BuildRequires:  cmake(Qt5Network) >= 5.6.0
 BuildRequires:  cmake(Qt5Test) >= 5.6.0

++ kunitconversion-5.37.0.tar.xz -> kunitconversion-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kunitconversion-5.37.0/CMakeLists.txt 
new/kunitconversion-5.38.0/CMakeLists.txt
--- old/kunitconversion-5.37.0/CMakeLists.txt   2017-08-06 20:11:16.0 
+0200
+++ new/kunitconversion-5.38.0/CMakeLists.txt   2017-09-03 10:15:07.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.38.0") # handled by release scripts
 project(KUnitConversion VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kunitconversion-5.37.0/po/zh_CN/kunitconversion5.po 
new/kunitconversion-5.38.0/po/zh_CN/kunitconversion5.po
--- old/kunitconversion-5.37.0/po/zh_CN/kunitconversion5.po 2017-08-06 
20:11:16.0 +0200
+++ new/kunitconversion-5.38.0/po/zh_CN/kunitconversion5.po 2017-09-03 
10:15:07.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:12+0100\n"
-"PO-Revision-Date: 2017-08-05 09:29-0400\n"
+"PO-Revision-Date: 2017-08-31 05:10-0400\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit ktexteditor for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package ktexteditor for openSUSE:Factory 
checked in at 2017-09-19 16:26:42

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


Package is "ktexteditor"

Tue Sep 19 16:26:42 2017 rev:45 rq:526672 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/ktexteditor/ktexteditor.changes  2017-08-24 
17:58:28.729043806 +0200
+++ /work/SRC/openSUSE:Factory/.ktexteditor.new/ktexteditor.changes 
2017-09-19 16:26:45.810685117 +0200
@@ -1,0 +2,26 @@
+Wed Sep 13 07:05:50 UTC 2017 - lbeltr...@kde.org
+
+- Add 0001-Disable-KAuth-integration.patch
+  * Streamlined way to disable KAuth support from ktexteditor
+- Remove patches, folded into the above:
+  * 0001-Revert-KAuth-integration-in-document-saving-vol.-2.patch
+  * 0002-Revert-KAuth-integration-in-document-saving.patch
+
+---
+Tue Sep 12 07:11:18 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * Port Document/View scripting API to QJSValue-based solution
+  * Show icons in icon border context menu
+  * Use config.h more
+  * Fix compilation on windows with editorconfig-c-core available
+  * Replace KStandardAction::PasteText with KStandardAction::Paste
+  * Support fractional scaling in generating the sidebar preview
+  * Fix build with QT_NO_ACCESSIBILITY
+  * Switch from QtScript to QtQml
+
+---

Old:

  0001-Revert-KAuth-integration-in-document-saving-vol.-2.patch
  0002-Revert-KAuth-integration-in-document-saving.patch
  ktexteditor-5.37.0.tar.xz

New:

  0001-Disable-KAuth-integration.patch
  ktexteditor-5.38.0.tar.xz



Other differences:
--
++ ktexteditor.spec ++
--- /var/tmp/diff_new_pack.Ak2crb/_old  2017-09-19 16:26:46.466592171 +0200
+++ /var/tmp/diff_new_pack.Ak2crb/_new  2017-09-19 16:26:46.470591605 +0200
@@ -17,36 +17,41 @@
 
 
 %bcond_without lang
-%define _tar_path 5.37
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
+%define _tar_path 5.38
 Name:   ktexteditor
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
-BuildRequires:  karchive-devel >= %{_tar_path}
-BuildRequires:  kconfig-devel >= %{_tar_path}
+BuildRequires:  karchive-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kconfig-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kguiaddons-devel >= %{_tar_path}
-BuildRequires:  ki18n-devel >= %{_tar_path}
-BuildRequires:  kiconthemes-devel >= %{_tar_path}
-BuildRequires:  kio-devel >= %{_tar_path}
-BuildRequires:  kparts-devel >= %{_tar_path}
+BuildRequires:  kguiaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  ki18n-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kiconthemes-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kio-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kparts-devel >= %{_kf5_bugfix_version}
 %if 0%{?suse_version} >= 1330 || 0%{?leap_version} >= 420200
 BuildRequires:  libeditorconfig-devel
 %endif
 BuildRequires:  libgit2-devel
-BuildRequires:  sonnet-devel >= %{_tar_path}
-BuildRequires:  syntax-highlighting-devel >= %{_tar_path}
+BuildRequires:  sonnet-devel >= %{_kf5_bugfix_version}
+BuildRequires:  syntax-highlighting-devel >= %{_kf5_bugfix_version}
 BuildRequires:  cmake(Qt5Core) >= 5.6.0
 BuildRequires:  cmake(Qt5PrintSupport) >= 5.6.0
+BuildRequires:  cmake(Qt5Qml) >= 5.6.0
 BuildRequires:  cmake(Qt5Script) >= 5.6.0
 BuildRequires:  cmake(Qt5Test) >= 5.6.0
 BuildRequires:  cmake(Qt5Widgets) >= 5.6.0
 BuildRequires:  cmake(Qt5Xml) >= 5.6.0
 BuildRequires:  cmake(Qt5XmlPatterns) >= 5.6.0
-Requires:   syntax-highlighting >= %{_tar_path}
+Requires:   syntax-highlighting >= %{_kf5_bugfix_version}
 %if %{with lang}
 Recommends: %{name}-lang = %{version}
 %endif
@@ -59,9 +64,7 @@
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 # PATCH-MISFEATURE-OPENSUSE - Disliked by the security team (boo#1033055)
-Patch1: 0001-Revert-KAuth-integration-in-document-saving-vol.-2.patch
-# PATCH-MISFEATURE-OPENSUSE - Disliked by the 

commit kservice for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kservice for openSUSE:Factory 
checked in at 2017-09-19 16:26:37

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


Package is "kservice"

Tue Sep 19 16:26:37 2017 rev:50 rq:526671 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kservice/kservice.changes2017-08-24 
17:58:18.754448719 +0200
+++ /work/SRC/openSUSE:Factory/.kservice.new/kservice.changes   2017-09-19 
16:26:38.835673512 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:18 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * autotests: fix running tests in parallel
+
+---

Old:

  kservice-5.37.0.tar.xz

New:

  kservice-5.38.0.tar.xz



Other differences:
--
++ kservice.spec ++
--- /var/tmp/diff_new_pack.hMOBEn/_old  2017-09-19 16:26:39.467583967 +0200
+++ /var/tmp/diff_new_pack.hMOBEn/_new  2017-09-19 16:26:39.471583400 +0200
@@ -17,23 +17,27 @@
 
 
 %bcond_without lang
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kservice
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  bison
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  flex
-BuildRequires:  kconfig-devel >= %{_tar_path}
-BuildRequires:  kcoreaddons-devel >= %{_tar_path}
-BuildRequires:  kcrash-devel >= %{_tar_path}
-BuildRequires:  kdbusaddons-devel >= %{_tar_path}
-BuildRequires:  kdoctools-devel >= %{_tar_path}
+BuildRequires:  kconfig-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kcoreaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kcrash-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kdbusaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kdoctools-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel >= %{_tar_path}
+BuildRequires:  ki18n-devel >= %{_kf5_bugfix_version}
 BuildRequires:  cmake(Qt5Concurrent) >= 5.6.0
 BuildRequires:  cmake(Qt5DBus) >= 5.6.0
 BuildRequires:  cmake(Qt5Test) >= 5.6.0
@@ -41,7 +45,7 @@
 %if %{with lang}
 Recommends: %{name}-lang = %{version}
 %endif
-Recommends: kded >= %{_tar_path}
+Recommends: kded >= %{_kf5_bugfix_version}
 Obsoletes:  libKF5Service4
 Summary:Plugin framework for desktop services
 License:LGPL-2.1+
@@ -65,8 +69,8 @@
 Group:  Development/Libraries/KDE
 Requires:   %{name} = %{version}
 Requires:   extra-cmake-modules
-Requires:   kconfig-devel >= %{_tar_path}
-Requires:   kcoreaddons-devel >= %{_tar_path}
+Requires:   kconfig-devel >= %{_kf5_bugfix_version}
+Requires:   kcoreaddons-devel >= %{_kf5_bugfix_version}
 
 %description devel
 Provides a plugin framework for handling desktop services. Services can

++ kservice-5.37.0.tar.xz -> kservice-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kservice-5.37.0/CMakeLists.txt 
new/kservice-5.38.0/CMakeLists.txt
--- old/kservice-5.37.0/CMakeLists.txt  2017-08-06 20:10:03.0 +0200
+++ new/kservice-5.38.0/CMakeLists.txt  2017-09-03 10:13:56.0 +0200
@@ -1,13 +1,13 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.38.0") # handled by release scripts
 project(KService VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kservice-5.37.0/autotests/CMakeLists.txt 
new/kservice-5.38.0/autotests/CMakeLists.txt
--- old/kservice-5.37.0/autotests/CMakeLists.txt2017-08-06 
20:10:03.0 +0200
+++ new/kservice-5.38.0/autotests/CMa

commit kross for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kross for openSUSE:Factory checked 
in at 2017-09-19 16:26:28

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


Package is "kross"

Tue Sep 19 16:26:28 2017 rev:45 rq:526669 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kross/kross.changes  2017-08-24 
18:00:52.264826946 +0200
+++ /work/SRC/openSUSE:Factory/.kross.new/kross.changes 2017-09-19 
16:26:29.732963427 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:18 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * Use the application domain when doing i18n of actions
+
+---

Old:

  kross-5.37.0.tar.xz

New:

  kross-5.38.0.tar.xz



Other differences:
--
++ kross.spec ++
--- /var/tmp/diff_new_pack.DFePY4/_old  2017-09-19 16:26:30.324879548 +0200
+++ /var/tmp/diff_new_pack.DFePY4/_new  2017-09-19 16:26:30.328878981 +0200
@@ -17,9 +17,13 @@
 
 
 %bcond_without lang
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kross
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 3.0

++ kross-5.37.0.tar.xz -> kross-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kross-5.37.0/CMakeLists.txt 
new/kross-5.38.0/CMakeLists.txt
--- old/kross-5.37.0/CMakeLists.txt 2017-08-06 20:09:30.0 +0200
+++ new/kross-5.38.0/CMakeLists.txt 2017-09-03 10:13:22.0 +0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.38.0") # handled by release scripts
 project(Kross VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kross-5.37.0/po/eu/kross5.po 
new/kross-5.38.0/po/eu/kross5.po
--- old/kross-5.37.0/po/eu/kross5.po2017-08-06 20:09:30.0 +0200
+++ new/kross-5.38.0/po/eu/kross5.po2017-09-03 10:13:22.0 +0200
@@ -1,25 +1,26 @@
-# translation of kdelibs4.po to Euskara/Basque (eu)
-# KDE: EUSKERA TRANSLATION
-# Copyright (C) 1999,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011, Free 
Software Foundation, Inc.
+# Translation of kross.po to Euskara/Basque (eu)
+# Copyright (C) 1999-2017, Free Software Foundation, Inc.
+# This file is distributed under the same license as the frameworks package.
+# KDE Euskaratzeko proiektuaren arduraduna .
 #
-# Marcos , 2002,2003, 2004, 2005.
+# Translators:
+# Marcos , 2002,2003, 2004, 2005, 2006, 2007, 2008, 
2009, 2010.
 # Ion Gaztañaga , 2005.
-# marcos , 2006, 2007, 2008, 2009, 2010.
 # Iñaki Larrañaga Murgoitio , 2009.
-# Iñigo Salvador Azurmendi , 2010, 2011, 2012, 2013, 2014.
+# Iñigo Salvador Azurmendi , 2010, 2011, 2012, 2013, 
2014, 2017.
 msgid ""
 msgstr ""
-"Project-Id-Version: kdelibs4\n"
+"Project-Id-Version: kross5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:12+0100\n"
-"PO-Revision-Date: 2014-03-02 19:49+0100\n"
+"PO-Revision-Date: 2017-08-30 23:29+0100\n"
 "Last-Translator: Iñigo Salvador Azurmendi \n"
 "Language-Team: Basque \n"
 "Language: eu\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #, kde-format
@@ -33,46 +34,40 @@
 msgstr "mar...@euskalgnu.org,igaztan...@gmail.com,xa...@euskalnet.net"
 
 #: console/main.cpp:99
-#, fuzzy, kde-format
-#| msgid "Kross"
+#, kde-format
 msgctxt "application name"
 msgid "Kross"
 msgstr "Kross"
 
 #: console/main.cpp:101
-#, fuzzy, kde-format
-#| msgid "KDE application to run Kross scripts."
+#, kde-format
 msgctxt "application description"
 msgid "Comm

commit kpty for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kpty for openSUSE:Factory checked in 
at 2017-09-19 16:26:24

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


Package is "kpty"

Tue Sep 19 16:26:24 2017 rev:46 rq:526668 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kpty/kpty.changes2017-08-24 
17:58:06.624157262 +0200
+++ /work/SRC/openSUSE:Factory/.kpty.new/kpty.changes   2017-09-19 
16:26:25.325587986 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:18 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * None
+
+---

Old:

  kpty-5.37.0.tar.xz

New:

  kpty-5.38.0.tar.xz



Other differences:
--
++ kpty.spec ++
--- /var/tmp/diff_new_pack.LsjN8W/_old  2017-09-19 16:26:25.973496172 +0200
+++ /var/tmp/diff_new_pack.LsjN8W/_new  2017-09-19 16:26:25.973496172 +0200
@@ -18,9 +18,13 @@
 
 %bcond_without lang
 %define lname   libKF5Pty5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kpty
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 3.0

++ kpty-5.37.0.tar.xz -> kpty-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpty-5.37.0/CMakeLists.txt 
new/kpty-5.38.0/CMakeLists.txt
--- old/kpty-5.37.0/CMakeLists.txt  2017-08-06 20:09:12.0 +0200
+++ new/kpty-5.38.0/CMakeLists.txt  2017-09-03 10:13:04.0 +0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.38.0") # handled by release scripts
 project(KPty VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpty-5.37.0/po/zh_CN/kpty5.po 
new/kpty-5.38.0/po/zh_CN/kpty5.po
--- old/kpty-5.37.0/po/zh_CN/kpty5.po   2017-08-06 20:09:12.0 +0200
+++ new/kpty-5.38.0/po/zh_CN/kpty5.po   2017-09-03 10:13:04.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:12+0100\n"
-"PO-Revision-Date: 2017-08-05 09:29-0400\n"
+"PO-Revision-Date: 2017-08-31 05:10-0400\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit krunner for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package krunner for openSUSE:Factory checked 
in at 2017-09-19 16:26:33

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


Package is "krunner"

Tue Sep 19 16:26:33 2017 rev:43 rq:526670 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/krunner/krunner.changes  2017-08-24 
17:58:11.235507756 +0200
+++ /work/SRC/openSUSE:Factory/.krunner.new/krunner.changes 2017-09-19 
16:26:34.564278796 +0200
@@ -1,0 +2,12 @@
+Tue Sep 12 07:11:18 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * Clear previous actions on update
+  * Use QUrls from match to create mimeData in base implementation
+  * Add remote runners over DBus
+
+---

Old:

  krunner-5.37.0.tar.xz

New:

  krunner-5.38.0.tar.xz



Other differences:
--
++ krunner.spec ++
--- /var/tmp/diff_new_pack.PllteF/_old  2017-09-19 16:26:35.072206819 +0200
+++ /var/tmp/diff_new_pack.PllteF/_new  2017-09-19 16:26:35.076206252 +0200
@@ -17,24 +17,28 @@
 
 
 %define lname   libKF5Runner5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   krunner
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
-BuildRequires:  kconfig-devel >= %{_tar_path}
-BuildRequires:  kcoreaddons-devel >= %{_tar_path}
+BuildRequires:  kconfig-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kcoreaddons-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel >= %{_tar_path}
-BuildRequires:  kio-devel >= %{_tar_path}
-BuildRequires:  kservice-devel >= %{_tar_path}
-BuildRequires:  kwindowsystem-devel >= %{_tar_path}
-BuildRequires:  plasma-framework-devel >= %{_tar_path}
-BuildRequires:  solid-devel >= %{_tar_path}
-BuildRequires:  threadweaver-devel >= %{_tar_path}
+BuildRequires:  ki18n-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kio-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kservice-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kwindowsystem-devel >= %{_kf5_bugfix_version}
+BuildRequires:  plasma-framework-devel >= %{_kf5_bugfix_version}
+BuildRequires:  solid-devel >= %{_kf5_bugfix_version}
+BuildRequires:  threadweaver-devel >= %{_kf5_bugfix_version}
 BuildRequires:  cmake(Qt5Gui) >= 5.6.0
 BuildRequires:  cmake(Qt5Quick) >= 5.6.0
 BuildRequires:  cmake(Qt5Test) >= 5.6.0
@@ -69,7 +73,7 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   plasma-framework-devel >= %{_tar_path}
+Requires:   plasma-framework-devel >= %{_kf5_bugfix_version}
 Requires:   cmake(Qt5Core) >= 5.6.0
 Conflicts:  kapptemplate <= 16.03.80
 
@@ -113,5 +117,6 @@
 %{_kf5_includedir}/*.h
 %{_kf5_mkspecsdir}/qt_KRunner.pri
 %{_kf5_sharedir}/kdevappwizard
+%{_kf5_dbusinterfacesdir}/kf5_org.kde.krunner1.xml
 
 %changelog

++ krunner-5.37.0.tar.xz -> krunner-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krunner-5.37.0/CMakeLists.txt 
new/krunner-5.38.0/CMakeLists.txt
--- old/krunner-5.37.0/CMakeLists.txt   2017-08-06 20:09:44.0 +0200
+++ new/krunner-5.38.0/CMakeLists.txt   2017-09-03 10:13:37.0 +0200
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.38.0") # handled by release scripts
 project(KRunner VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krunner-5.37.0/autotests/CMakeLists.txt 
new/krunner-5.38.0/autotests/

commit knotifyconfig for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package knotifyconfig for openSUSE:Factory 
checked in at 2017-09-19 16:25:49

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


Package is "knotifyconfig"

Tue Sep 19 16:25:49 2017 rev:44 rq:526663 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/knotifyconfig/knotifyconfig.changes  
2017-08-24 17:57:36.352421013 +0200
+++ /work/SRC/openSUSE:Factory/.knotifyconfig.new/knotifyconfig.changes 
2017-09-19 16:25:51.910323297 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:17 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * None
+
+---

Old:

  knotifyconfig-5.37.0.tar.xz

New:

  knotifyconfig-5.38.0.tar.xz



Other differences:
--
++ knotifyconfig.spec ++
--- /var/tmp/diff_new_pack.3Kr3uF/_old  2017-09-19 16:25:53.014166867 +0200
+++ /var/tmp/diff_new_pack.3Kr3uF/_new  2017-09-19 16:25:53.018166300 +0200
@@ -18,33 +18,37 @@
 
 %bcond_without lang
 %define lname   libKF5NotifyConfig5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   knotifyconfig
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
-BuildRequires:  kbookmarks-devel >= %{_tar_path}
-BuildRequires:  kcompletion-devel >= %{_tar_path}
-BuildRequires:  kconfigwidgets-devel >= %{_tar_path}
-BuildRequires:  kcoreaddons-devel >= %{_tar_path}
-BuildRequires:  kdbusaddons-devel >= %{_tar_path}
+BuildRequires:  kbookmarks-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kcompletion-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kconfigwidgets-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kcoreaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kdbusaddons-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kguiaddons-devel >= %{_tar_path}
-BuildRequires:  ki18n-devel >= %{_tar_path}
-BuildRequires:  kiconthemes-devel >= %{_tar_path}
-BuildRequires:  kio-devel >= %{_tar_path}
-BuildRequires:  kitemviews-devel >= %{_tar_path}
-BuildRequires:  knotifications-devel >= %{_tar_path}
-BuildRequires:  kservice-devel >= %{_tar_path}
-BuildRequires:  ktextwidgets-devel >= %{_tar_path}
-BuildRequires:  kwidgetsaddons-devel >= %{_tar_path}
-BuildRequires:  kwindowsystem-devel >= %{_tar_path}
-BuildRequires:  kxmlgui-devel >= %{_tar_path}
+BuildRequires:  kguiaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  ki18n-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kiconthemes-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kio-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kitemviews-devel >= %{_kf5_bugfix_version}
+BuildRequires:  knotifications-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kservice-devel >= %{_kf5_bugfix_version}
+BuildRequires:  ktextwidgets-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kwidgetsaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kwindowsystem-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kxmlgui-devel >= %{_kf5_bugfix_version}
 BuildRequires:  phonon4qt5-devel
-BuildRequires:  solid-devel >= %{_tar_path}
+BuildRequires:  solid-devel >= %{_kf5_bugfix_version}
 BuildRequires:  cmake(Qt5DBus) >= 5.6.0
 BuildRequires:  cmake(Qt5Test) >= 5.6.0
 BuildRequires:  cmake(Qt5Widgets) >= 5.6.0

++ knotifyconfig-5.37.0.tar.xz -> knotifyconfig-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifyconfig-5.37.0/CMakeLists.txt 
new/knotifyconfig-5.38.0/CMakeLists.txt
--- old/knotifyconfig-5.37.0/CMakeLists.txt 2017-08-06 20:07:53.0 
+0200
+++ new/knotifyconfig-5.38.0/CMakeLists.txt 2017-09-03 10:11:43.0 
+0200
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.38.0") # handled by release scripts
 project(KNotifyConfig VERSION ${KF5_VERSION})
 
 # Dependencies
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5

commit kplotting for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kplotting for openSUSE:Factory 
checked in at 2017-09-19 16:26:18

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


Package is "kplotting"

Tue Sep 19 16:26:18 2017 rev:45 rq:526667 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kplotting/kplotting.changes  2017-08-24 
17:57:59.465165600 +0200
+++ /work/SRC/openSUSE:Factory/.kplotting.new/kplotting.changes 2017-09-19 
16:26:20.550264690 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:18 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * Do not leak symbols of pimpl classes, protect with Q_DECL_HIDDEN
+
+---

Old:

  kplotting-5.37.0.tar.xz

New:

  kplotting-5.38.0.tar.xz



Other differences:
--
++ kplotting.spec ++
--- /var/tmp/diff_new_pack.9eZrFH/_old  2017-09-19 16:26:21.174176277 +0200
+++ /var/tmp/diff_new_pack.9eZrFH/_new  2017-09-19 16:26:21.178175709 +0200
@@ -17,9 +17,13 @@
 
 
 %define lname   libKF5Plotting5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kplotting
-Version:5.37.0
+Version:5.38.0
 Release:0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kplotting-5.37.0.tar.xz -> kplotting-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kplotting-5.37.0/CMakeLists.txt 
new/kplotting-5.38.0/CMakeLists.txt
--- old/kplotting-5.37.0/CMakeLists.txt 2017-08-06 18:50:19.0 +0200
+++ new/kplotting-5.38.0/CMakeLists.txt 2017-09-02 11:16:38.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
 project(KPlotting VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kplotting-5.37.0/src/kplotwidget.cpp 
new/kplotting-5.38.0/src/kplotwidget.cpp
--- old/kplotting-5.37.0/src/kplotwidget.cpp2017-08-06 18:50:19.0 
+0200
+++ new/kplotting-5.38.0/src/kplotwidget.cpp2017-09-02 11:16:38.0 
+0200
@@ -39,7 +39,7 @@
 #define SMALLTICKSIZE 4
 #define TICKOFFSET 0
 
-class KPlotWidget::Private
+class Q_DECL_HIDDEN KPlotWidget::Private
 {
 public:
 Private(KPlotWidget *qq)




commit kparts for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kparts for openSUSE:Factory checked 
in at 2017-09-19 16:26:05

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


Package is "kparts"

Tue Sep 19 16:26:05 2017 rev:44 rq:526665 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kparts/kparts.changes2017-08-24 
17:57:47.734817811 +0200
+++ /work/SRC/openSUSE:Factory/.kparts.new/kparts.changes   2017-09-19 
16:26:06.880201876 +0200
@@ -1,0 +2,11 @@
+Tue Sep 12 07:11:17 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * Unhide ReadOnlyPart::doOpenStream & Co to doxygen skipping private methods
+  * Do not leak symbols of pimpl classes, protect with Q_DECL_HIDDEN
+
+---

Old:

  kparts-5.37.0.tar.xz

New:

  kparts-5.38.0.tar.xz



Other differences:
--
++ kparts.spec ++
--- /var/tmp/diff_new_pack.RXLjOW/_old  2017-09-19 16:26:07.452120829 +0200
+++ /var/tmp/diff_new_pack.RXLjOW/_new  2017-09-19 16:26:07.456120262 +0200
@@ -18,30 +18,34 @@
 
 %bcond_without lang
 %define lname   libKF5Parts5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kparts
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
-BuildRequires:  kbookmarks-devel >= %{_tar_path}
-BuildRequires:  kcompletion-devel >= %{_tar_path}
-BuildRequires:  kconfigwidgets-devel >= %{_tar_path}
-BuildRequires:  kdbusaddons-devel >= %{_tar_path}
+BuildRequires:  kbookmarks-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kcompletion-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kconfigwidgets-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kdbusaddons-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kguiaddons-devel >= %{_tar_path}
-BuildRequires:  ki18n-devel >= %{_tar_path}
-BuildRequires:  kiconthemes-devel >= %{_tar_path}
-BuildRequires:  kio-devel >= %{_tar_path}
-BuildRequires:  kitemviews-devel >= %{_tar_path}
-BuildRequires:  kservice-devel >= %{_tar_path}
-BuildRequires:  ktextwidgets-devel >= %{_tar_path}
-BuildRequires:  kwidgetsaddons-devel >= %{_tar_path}
-BuildRequires:  kwindowsystem-devel >= %{_tar_path}
-BuildRequires:  kxmlgui-devel >= %{_tar_path}
-BuildRequires:  solid-devel >= %{_tar_path}
+BuildRequires:  kguiaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  ki18n-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kiconthemes-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kio-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kitemviews-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kservice-devel >= %{_kf5_bugfix_version}
+BuildRequires:  ktextwidgets-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kwidgetsaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kwindowsystem-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kxmlgui-devel >= %{_kf5_bugfix_version}
+BuildRequires:  solid-devel >= %{_kf5_bugfix_version}
 BuildRequires:  cmake(Qt5Core) >= 5.6.0
 BuildRequires:  cmake(Qt5Network) >= 5.6.0
 BuildRequires:  cmake(Qt5Test) >= 5.6.0
@@ -78,9 +82,9 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   kio-devel >= %{_tar_path}
-Requires:   ktextwidgets-devel >= %{_tar_path}
-Requires:   kxmlgui-devel >= %{_tar_path}
+Requires:   kio-devel >= %{_kf5_bugfix_version}
+Requires:   ktextwidgets-devel >= %{_kf5_bugfix_version}
+Requires:   kxmlgui-devel >= %{_kf5_bugfix_version}
 
 %description devel
 This library implements the framework for KDE parts, which are

++ kparts-5.37.0.tar.xz -> kparts-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.37.0/CMakeLists.txt 
new/kparts-5.38.0/CMakeLists.txt
--- old/kparts-5.37.0/CMakeLists.txt2017-08-06 20:08:27.0 +0200
+++ new/kparts-5.38.0/CMakeLists.txt2017-09-03 10:12:18.0 +0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.37.0") # handled by 

commit kpeople5 for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kpeople5 for openSUSE:Factory 
checked in at 2017-09-19 16:26:10

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


Package is "kpeople5"

Tue Sep 19 16:26:10 2017 rev:31 rq:52 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kpeople5/kpeople5.changes2017-08-24 
17:57:53.769967765 +0200
+++ /work/SRC/openSUSE:Factory/.kpeople5.new/kpeople5.changes   2017-09-19 
16:26:15.239017344 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:18 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * autotest: use QTRY_COMPARE to make the test more robust
+
+---

Old:

  kpeople-5.37.0.tar.xz

New:

  kpeople-5.38.0.tar.xz



Other differences:
--
++ kpeople5.spec ++
--- /var/tmp/diff_new_pack.DSSsCf/_old  2017-09-19 16:26:15.746945366 +0200
+++ /var/tmp/diff_new_pack.DSSsCf/_new  2017-09-19 16:26:15.750944799 +0200
@@ -18,9 +18,13 @@
 
 %bcond_without lang
 %define rname kpeople
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kpeople5
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kpeople-5.37.0.tar.xz -> kpeople-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpeople-5.37.0/CMakeLists.txt 
new/kpeople-5.38.0/CMakeLists.txt
--- old/kpeople-5.37.0/CMakeLists.txt   2017-08-06 20:08:42.0 +0200
+++ new/kpeople-5.38.0/CMakeLists.txt   2017-09-03 10:12:33.0 +0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.38.0") # handled by release scripts
 project (KPeople VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpeople-5.37.0/autotests/personsmodeltest.cpp 
new/kpeople-5.38.0/autotests/personsmodeltest.cpp
--- old/kpeople-5.37.0/autotests/personsmodeltest.cpp   2017-08-06 
20:08:42.0 +0200
+++ new/kpeople-5.38.0/autotests/personsmodeltest.cpp   2017-09-03 
10:12:33.0 +0200
@@ -88,8 +88,7 @@
 QCOMPARE(newUri, QStringLiteral("kpeople://1"));
 
 // TODO: replace with actual model signals spying
-QTest::qWait(2000); //give it a bit of time to update the model
-QCOMPARE(m_model->rowCount(), 3);
+QTRY_COMPARE(m_model->rowCount(), 3);
 QCOMPARE(m_model->rowCount(m_model->indexForPersonUri(newUri)), 2);
 
 // There needs to be 2 rows inserted - one for the new Person
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpeople-5.37.0/po/eu/kpeople5.po 
new/kpeople-5.38.0/po/eu/kpeople5.po
--- old/kpeople-5.37.0/po/eu/kpeople5.po1970-01-01 01:00:00.0 
+0100
+++ new/kpeople-5.38.0/po/eu/kpeople5.po2017-09-03 10:12:33.0 
+0200
@@ -0,0 +1,83 @@
+# Translation of kpeople5.po to Euskara/Basque (eu).
+# Copyright (C) 2017, Free Software Foundation, Inc.
+# This file is distributed under the same license as the kde-workspace package.
+# KDE Euskaratzeko proiektuaren arduraduna .
+#
+# Translators:
+# Iñigo Salvador Azurmendi , 2017.
+msgid ""
+msgstr ""
+"Project-Id-Version: kpeople5\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2016-11-19 20:12+0100\n"
+"PO-Revision-Date: 2017-08-16 13:12+0100\n"
+"Last-Translator: Iñigo Salvador Azurmendi \n"
+"Language-Team: Basque \n"
+"Language: eu\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: match.cpp:52
+#, kde-format
+msgctxt "@title:column"
+msgid "Name"
+msgst

commit kpackage for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kpackage for openSUSE:Factory 
checked in at 2017-09-19 16:25:56

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


Package is "kpackage"

Tue Sep 19 16:25:56 2017 rev:35 rq:526664 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kpackage/kpackage.changes2017-08-24 
17:57:41.487697713 +0200
+++ /work/SRC/openSUSE:Factory/.kpackage.new/kpackage.changes   2017-09-19 
16:25:57.161579123 +0200
@@ -1,0 +2,12 @@
+Tue Sep 12 07:11:17 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * refactor kpackagetool away from stringy options
+  * autotests: fix running tests in parallel
+  * kpackagetool: fix memory leak detected by LeakSanitizer
+
+---

Old:

  kpackage-5.37.0.tar.xz

New:

  kpackage-5.38.0.tar.xz



Other differences:
--
++ kpackage.spec ++
--- /var/tmp/diff_new_pack.95r6YY/_old  2017-09-19 16:25:59.473251530 +0200
+++ /var/tmp/diff_new_pack.95r6YY/_new  2017-09-19 16:25:59.477250963 +0200
@@ -17,20 +17,24 @@
 
 
 %bcond_without lang
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kpackage
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
-BuildRequires:  karchive-devel >= %{_tar_path}
-BuildRequires:  kconfig-devel >= %{_tar_path}
-BuildRequires:  kcoreaddons-devel >= %{_tar_path}
-BuildRequires:  kdoctools-devel >= %{_tar_path}
+BuildRequires:  karchive-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kconfig-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kcoreaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kdoctools-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel >= %{_tar_path}
+BuildRequires:  ki18n-devel >= %{_kf5_bugfix_version}
 BuildRequires:  cmake(Qt5Core) >= 5.6.0
 BuildRequires:  cmake(Qt5Test) >= 5.6.0
 %if %{with lang}
@@ -52,7 +56,7 @@
 Group:  Development/Libraries/KDE
 Requires:   %{name} = %{version}
 Requires:   extra-cmake-modules
-Requires:   kcoreaddons-devel >= %{_tar_path}
+Requires:   kcoreaddons-devel >= %{_kf5_bugfix_version}
 
 %description devel
 This framework lets applications to manage user installable packages of 
non-binary assets.

++ kpackage-5.37.0.tar.xz -> kpackage-5.38.0.tar.xz ++
 13962 lines of diff (skipped)




commit knotifications for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package knotifications for openSUSE:Factory 
checked in at 2017-09-19 16:25:40

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


Package is "knotifications"

Tue Sep 19 16:25:40 2017 rev:46 rq:526662 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/knotifications/knotifications.changes
2017-08-24 17:57:30.657223178 +0200
+++ /work/SRC/openSUSE:Factory/.knotifications.new/knotifications.changes   
2017-09-19 16:25:43.663491993 +0200
@@ -1,0 +2,11 @@
+Tue Sep 12 07:11:17 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * Don't block starting notification service (kde#382444)
+  * Do not leak symbols of pimpl classes, protect with Q_DECL_HIDDEN
+
+---

Old:

  knotifications-5.37.0.tar.xz

New:

  knotifications-5.38.0.tar.xz



Other differences:
--
++ knotifications.spec ++
--- /var/tmp/diff_new_pack.ztwmo1/_old  2017-09-19 16:25:44.319399041 +0200
+++ /var/tmp/diff_new_pack.ztwmo1/_new  2017-09-19 16:25:44.323398474 +0200
@@ -18,25 +18,31 @@
 
 %bcond_without lang
 %define lname   libKF5Notifications5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   knotifications
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
-BuildRequires:  kcodecs-devel >= %{_tar_path}
-BuildRequires:  kconfig-devel >= %{_tar_path}
-BuildRequires:  kcoreaddons-devel >= %{_tar_path}
+BuildRequires:  kcodecs-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kconfig-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kcoreaddons-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kwindowsystem-devel >= %{_tar_path}
+BuildRequires:  kwindowsystem-devel >= %{_kf5_bugfix_version}
 %if %{with lang}
 BuildRequires:  cmake(Qt5LinguistTools) >= 5.6.0
 %endif
 BuildRequires:  phonon4qt5-devel
 BuildRequires:  cmake(Qt5DBus) >= 5.6.0
 BuildRequires:  cmake(Qt5Test) >= 5.6.0
+# Temporary: qttexttospeech doesn't build in TW ("invalid" license)
+# BuildRequires:  cmake(Qt5TextToSpeech) >= 5.6.0
 BuildRequires:  cmake(Qt5Widgets) >= 5.6.0
 BuildRequires:  cmake(Qt5X11Extras) >= 5.6.0
 BuildRequires:  pkgconfig(dbusmenu-qt5)

++ knotifications-5.37.0.tar.xz -> knotifications-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifications-5.37.0/CMakeLists.txt 
new/knotifications-5.38.0/CMakeLists.txt
--- old/knotifications-5.37.0/CMakeLists.txt2017-08-06 20:07:35.0 
+0200
+++ new/knotifications-5.38.0/CMakeLists.txt2017-09-03 10:11:24.0 
+0200
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.38.0") # handled by release scripts
 project(KNotifications VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifications-5.37.0/po/eu/knotifications5_qt.po 
new/knotifications-5.38.0/po/eu/knotifications5_qt.po
--- old/knotifications-5.37.0/po/eu/knotifications5_qt.po   2017-08-06 
20:07:35.0 +0200
+++ new/knotifications-5.38.0/po/eu/knotifications5_qt.po   2017-09-03 
10:11:24.0 +0200
@@ -1,66 +1,56 @@
-# translation of kdelibs4.po to Euskara/Basque (eu)
-# KDE: EUSKERA TRANSLATION
-# Copyright (C) 1999,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011, Free 
Software Foundation, Inc.
+# Translation of knotifications5_qt.po to Euskara/Basque (eu).
+# Copyright (C) 1999-2017, Free Software Foundation, Inc.
+# This file

commit knewstuff for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package knewstuff for openSUSE:Factory 
checked in at 2017-09-19 16:25:29

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


Package is "knewstuff"

Tue Sep 19 16:25:29 2017 rev:44 rq:526661 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/knewstuff/knewstuff.changes  2017-08-24 
17:57:24.910032667 +0200
+++ /work/SRC/openSUSE:Factory/.knewstuff.new/knewstuff.changes 2017-09-19 
16:25:33.996861910 +0200
@@ -1,0 +2,11 @@
+Tue Sep 12 07:11:17 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * kmoretoolstest2 doesn't seem interactive, make it run as autotest
+  * Adapt KMoreTools unittests so they can run without "make install".
+
+---

Old:

  knewstuff-5.37.0.tar.xz

New:

  knewstuff-5.38.0.tar.xz



Other differences:
--
++ knewstuff.spec ++
--- /var/tmp/diff_new_pack.IlHqiZ/_old  2017-09-19 16:25:34.704761589 +0200
+++ /var/tmp/diff_new_pack.IlHqiZ/_new  2017-09-19 16:25:34.704761589 +0200
@@ -18,28 +18,32 @@
 
 %bcond_without lang
 %define lname   libKF5NewStuff5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   knewstuff
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
-BuildRequires:  attica-qt5-devel >= %{_tar_path}
+BuildRequires:  attica-qt5-devel >= %{_kf5_bugfix_version}
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
-BuildRequires:  karchive-devel >= %{_tar_path}
-BuildRequires:  kcompletion-devel >= %{_tar_path}
-BuildRequires:  kconfig-devel >= %{_tar_path}
-BuildRequires:  kcoreaddons-devel >= %{_tar_path}
+BuildRequires:  karchive-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kcompletion-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kconfig-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kcoreaddons-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel >= %{_tar_path}
-BuildRequires:  kiconthemes-devel >= %{_tar_path}
-BuildRequires:  kio-devel >= %{_tar_path}
-BuildRequires:  kitemviews-devel >= %{_tar_path}
-BuildRequires:  kservice-devel >= %{_tar_path}
-BuildRequires:  ktextwidgets-devel >= %{_tar_path}
-BuildRequires:  kwidgetsaddons-devel >= %{_tar_path}
-BuildRequires:  kxmlgui-devel >= %{_tar_path}
+BuildRequires:  ki18n-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kiconthemes-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kio-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kitemviews-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kservice-devel >= %{_kf5_bugfix_version}
+BuildRequires:  ktextwidgets-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kwidgetsaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kxmlgui-devel >= %{_kf5_bugfix_version}
 BuildRequires:  cmake(Qt5Core) >= 5.6.0
 BuildRequires:  cmake(Qt5Qml) >= 5.6.0
 BuildRequires:  cmake(Qt5Quick) >= 5.6.0
@@ -93,7 +97,7 @@
 %package core-devel
 Summary:Framework for downloading and sharing additional application 
data
 Group:  Development/Libraries/KDE
-Requires:   attica-qt5-devel >= %{_tar_path}
+Requires:   attica-qt5-devel >= %{_kf5_bugfix_version}
 Requires:   extra-cmake-modules
 Requires:   libKF5NewStuffCore5 = %{version}
 
@@ -120,8 +124,8 @@
 Requires:   %lname = %{version}
 Requires:   %{name}-core-devel = %{version}
 Requires:   extra-cmake-modules
-Requires:   kservice-devel >= %{_tar_path}
-Requires:   kxmlgui-devel >= %{_tar_path}
+Requires:   kservice-devel >= %{_kf5_bugfix_version}
+Requires:   kxmlgui-devel >= %{_kf5_bugfix_version}
 Requires:   libKF5NewStuffCore5 = %{version}
 Requires:   cmake(Qt5Widgets) >= 5.6.0
 

++ knewstuff-5.37.0.tar.xz -> knewstuff-5.38.0.tar.xz ++
 1876 lines of diff (skipped)




commit kjsembed for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kjsembed for openSUSE:Factory 
checked in at 2017-09-19 16:25:11

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


Package is "kjsembed"

Tue Sep 19 16:25:11 2017 rev:46 rq:526659 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kjsembed/kjsembed.changes2017-08-24 
18:01:13.333859401 +0200
+++ /work/SRC/openSUSE:Factory/.kjsembed.new/kjsembed.changes   2017-09-19 
16:25:14.131677177 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:17 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * None
+
+---

Old:

  kjsembed-5.37.0.tar.xz

New:

  kjsembed-5.38.0.tar.xz



Other differences:
--
++ kjsembed.spec ++
--- /var/tmp/diff_new_pack.pb4bPu/_old  2017-09-19 16:25:14.815580254 +0200
+++ /var/tmp/diff_new_pack.pb4bPu/_new  2017-09-19 16:25:14.819579687 +0200
@@ -18,18 +18,22 @@
 
 %bcond_without lang
 %define lname   libKF5JsEmbed5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kjsembed
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
-BuildRequires:  kdoctools-devel >= %{_tar_path}
+BuildRequires:  kdoctools-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel >= %{_tar_path}
-BuildRequires:  kjs-devel >= %{_tar_path}
+BuildRequires:  ki18n-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kjs-devel >= %{_kf5_bugfix_version}
 BuildRequires:  cmake(Qt5Core) >= 5.6.0
 BuildRequires:  cmake(Qt5Svg) >= 5.6.0
 BuildRequires:  cmake(Qt5UiTools) >= 5.6.0
@@ -63,8 +67,8 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   ki18n-devel >= %{_tar_path}
-Requires:   kjs-devel >= %{_tar_path}
+Requires:   ki18n-devel >= %{_kf5_bugfix_version}
+Requires:   kjs-devel >= %{_kf5_bugfix_version}
 
 %description devel
 KSJEmbed provides a method of binding JavaScript objects to QObjects,

++ kjsembed-5.37.0.tar.xz -> kjsembed-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjsembed-5.37.0/CMakeLists.txt 
new/kjsembed-5.38.0/CMakeLists.txt
--- old/kjsembed-5.37.0/CMakeLists.txt  2017-08-06 20:06:42.0 +0200
+++ new/kjsembed-5.38.0/CMakeLists.txt  2017-09-03 10:10:32.0 +0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.38.0") # handled by release scripts
 project(KJsEmbed VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjsembed-5.37.0/po/gl/kjsembed5.po 
new/kjsembed-5.38.0/po/gl/kjsembed5.po
--- old/kjsembed-5.37.0/po/gl/kjsembed5.po  2017-08-06 20:06:42.0 
+0200
+++ new/kjsembed-5.38.0/po/gl/kjsembed5.po  2017-09-03 10:10:32.0 
+0200
@@ -103,7 +103,7 @@
 #: kjsembed/qaction_binding.cpp:84
 #, kde-format
 msgid "Must supply a valid parent."
-msgstr "Debe fornecer un antergo válido."
+msgstr "Debe fornecer un antergo correcto."
 
 #: kjsembed/qformbuilder_binding.cpp:56
 #, kde-format
@@ -123,7 +123,7 @@
 #: kjsembed/qlayout_binding.cpp:87
 #, kde-format
 msgid "'%1' is not a valid QLayout."
-msgstr "«%1» non é un QLayout válido."
+msgstr "«%1» non é un QLayout correcto."
 
 #: kjsembed/qlayout_binding.cpp:93
 #, kde-format
@@ -241,7 +241,7 @@
 #: kjsembed/qwidget_binding.cpp:161
 #, kde-format
 msgid "'%1' is not a valid QWidget."
-msgstr "«%1» non é un QWidget válido."
+msgstr "«%1» non é un QWidget correct

commit kmediaplayer for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kmediaplayer for openSUSE:Factory 
checked in at 2017-09-19 16:25:20

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


Package is "kmediaplayer"

Tue Sep 19 16:25:20 2017 rev:44 rq:526660 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kmediaplayer/kmediaplayer.changes
2017-08-24 18:01:21.568699536 +0200
+++ /work/SRC/openSUSE:Factory/.kmediaplayer.new/kmediaplayer.changes   
2017-09-19 16:25:23.618332732 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:17 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * None
+
+---

Old:

  kmediaplayer-5.37.0.tar.xz

New:

  kmediaplayer-5.38.0.tar.xz



Other differences:
--
++ kmediaplayer.spec ++
--- /var/tmp/diff_new_pack.KL9mBu/_old  2017-09-19 16:25:24.242244312 +0200
+++ /var/tmp/diff_new_pack.KL9mBu/_new  2017-09-19 16:25:24.246243746 +0200
@@ -17,32 +17,36 @@
 
 
 %define lname   libKF5MediaPlayer5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kmediaplayer
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
-BuildRequires:  kbookmarks-devel >= %{_tar_path}
-BuildRequires:  kcompletion-devel >= %{_tar_path}
-BuildRequires:  kconfigwidgets-devel >= %{_tar_path}
-BuildRequires:  kdbusaddons-devel >= %{_tar_path}
+BuildRequires:  kbookmarks-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kcompletion-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kconfigwidgets-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kdbusaddons-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kguiaddons-devel >= %{_tar_path}
-BuildRequires:  ki18n-devel >= %{_tar_path}
-BuildRequires:  kiconthemes-devel >= %{_tar_path}
-BuildRequires:  kio-devel >= %{_tar_path}
-BuildRequires:  kitemviews-devel >= %{_tar_path}
-BuildRequires:  knotifications-devel >= %{_tar_path}
-BuildRequires:  kparts-devel >= %{_tar_path}
-BuildRequires:  kservice-devel >= %{_tar_path}
-BuildRequires:  ktextwidgets-devel >= %{_tar_path}
-BuildRequires:  kwidgetsaddons-devel >= %{_tar_path}
-BuildRequires:  kwindowsystem-devel >= %{_tar_path}
-BuildRequires:  kxmlgui-devel >= %{_tar_path}
-BuildRequires:  solid-devel >= %{_tar_path}
+BuildRequires:  kguiaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  ki18n-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kiconthemes-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kio-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kitemviews-devel >= %{_kf5_bugfix_version}
+BuildRequires:  knotifications-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kparts-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kservice-devel >= %{_kf5_bugfix_version}
+BuildRequires:  ktextwidgets-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kwidgetsaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kwindowsystem-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kxmlgui-devel >= %{_kf5_bugfix_version}
+BuildRequires:  solid-devel >= %{_kf5_bugfix_version}
 BuildRequires:  cmake(Qt5DBus) >= 5.6.0
 BuildRequires:  cmake(Qt5Test) >= 5.6.0
 BuildRequires:  cmake(Qt5Widgets) >= 5.6.0
@@ -72,8 +76,8 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   ki18n-devel >= %{_tar_path}
-Requires:   kparts-devel >= %{_tar_path}
+Requires:   ki18n-devel >= %{_kf5_bugfix_version}
+Requires:   kparts-devel >= %{_kf5_bugfix_version}
 
 %description devel
 KMediaPlayer builds on the KParts framework to provide a common interface for

++ kmediaplayer-5.37.0.tar.xz -> kmediaplayer-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmediaplayer-5.37.0/CMakeLists.txt 
new/kmediaplayer-5.38.0/CMakeLists.txt
--- old/kmediaplayer-5.37.0/CMakeLists.txt  2017-08-06 18:46:29.0 
+0200
+++ new/kmediaplayer-5.38.0/CMakeLists.txt  2017-09-02 23:25:46.0 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "

commit kjs for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kjs for openSUSE:Factory checked in 
at 2017-09-19 16:25:04

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


Package is "kjs"

Tue Sep 19 16:25:04 2017 rev:45 rq:526658 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kjs/kjs.changes  2017-08-24 18:01:01.411538644 
+0200
+++ /work/SRC/openSUSE:Factory/.kjs.new/kjs.changes 2017-09-19 
16:25:08.144525681 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:17 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * None
+
+---

Old:

  kjs-5.37.0.tar.xz

New:

  kjs-5.38.0.tar.xz



Other differences:
--
++ kjs.spec ++
--- /var/tmp/diff_new_pack.SvN7qI/_old  2017-09-19 16:25:08.772436692 +0200
+++ /var/tmp/diff_new_pack.SvN7qI/_new  2017-09-19 16:25:08.772436692 +0200
@@ -18,15 +18,19 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kjs
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
-BuildRequires:  kdoctools-devel >= %{_tar_path}
+BuildRequires:  kdoctools-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
 BuildRequires:  pcre-devel
 BuildRequires:  perl

++ kjs-5.37.0.tar.xz -> kjs-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjs-5.37.0/CMakeLists.txt 
new/kjs-5.38.0/CMakeLists.txt
--- old/kjs-5.37.0/CMakeLists.txt   2017-08-06 20:06:25.0 +0200
+++ new/kjs-5.38.0/CMakeLists.txt   2017-09-03 10:10:14.0 +0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
 project(KJS VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit kjobwidgets for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kjobwidgets for openSUSE:Factory 
checked in at 2017-09-19 16:24:54

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


Package is "kjobwidgets"

Tue Sep 19 16:24:54 2017 rev:46 rq:526657 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kjobwidgets/kjobwidgets.changes  2017-08-24 
17:57:16.311243800 +0200
+++ /work/SRC/openSUSE:Factory/.kjobwidgets.new/kjobwidgets.changes 
2017-09-19 16:25:00.729576543 +0200
@@ -1,0 +2,11 @@
+Tue Sep 12 07:11:17 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * Do not leak symbols of pimpl classes, protect with Q_DECL_HIDDEN
+  * Initialize the "Pause" button state in the widget tracker
+
+---

Old:

  kjobwidgets-5.37.0.tar.xz

New:

  kjobwidgets-5.38.0.tar.xz



Other differences:
--
++ kjobwidgets.spec ++
--- /var/tmp/diff_new_pack.m5J2YZ/_old  2017-09-19 16:25:01.621450144 +0200
+++ /var/tmp/diff_new_pack.m5J2YZ/_new  2017-09-19 16:25:01.621450144 +0200
@@ -18,17 +18,21 @@
 
 %bcond_without lang
 %define lname   libKF5JobWidgets5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kjobwidgets
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
-BuildRequires:  kcoreaddons-devel >= %{_tar_path}
+BuildRequires:  kcoreaddons-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kwidgetsaddons-devel >= %{_tar_path}
+BuildRequires:  kwidgetsaddons-devel >= %{_kf5_bugfix_version}
 %if %{with lang}
 BuildRequires:  cmake(Qt5LinguistTools) >= 5.6.0
 %endif
@@ -63,7 +67,7 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   kcoreaddons-devel >= %{_tar_path}
+Requires:   kcoreaddons-devel >= %{_kf5_bugfix_version}
 Requires:   cmake(Qt5Widgets) >= 5.6.0
 
 %description devel

++ kjobwidgets-5.37.0.tar.xz -> kjobwidgets-5.38.0.tar.xz ++
 7489 lines of diff (skipped)




  1   2   >