commit bundle-lang-common for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package bundle-lang-common for 
openSUSE:Factory checked in at 2017-06-01 00:12:37

Comparing /work/SRC/openSUSE:Factory/bundle-lang-common (Old)
 and  /work/SRC/openSUSE:Factory/.bundle-lang-common.new (New)


Package is "bundle-lang-common"

Thu Jun  1 00:12:37 2017 rev:221 rq: version:13.2

Changes:

bundle-lang-gnome.changes: same change
bundle-lang-kde.changes: same change
bundle-lang-other.changes: same change



Other differences:
--
++ bundle-lang-common.spec ++
 3103 lines (skipped)
 between 
/work/SRC/openSUSE:Factory/bundle-lang-common/bundle-lang-common.spec
 and 
/work/SRC/openSUSE:Factory/.bundle-lang-common.new/bundle-lang-common.spec

bundle-lang-gnome.spec: same change
bundle-lang-kde.spec: same change
++ packages.txt ++
--- /var/tmp/diff_new_pack.AoVtS9/_old  2017-06-01 00:12:43.912789069 +0200
+++ /var/tmp/diff_new_pack.AoVtS9/_new  2017-06-01 00:12:43.912789069 +0200
@@ -50,7 +50,6 @@
 colord-gtk-lang gnome
 colord-lang gnome-extras
 comix-lang gnome-extras
-conduit-lang gnome-extras
 corebird-lang gnome-extras
 coreutils-lang common
 cpio-lang common




commit sudo for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package sudo for openSUSE:Factory checked in 
at 2017-05-31 21:26:18

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


Package is "sudo"

Wed May 31 21:26:18 2017 rev:86 rq:499850 version:1.8.19p2

Changes:

--- /work/SRC/openSUSE:Factory/sudo/sudo.changes2017-03-10 
21:05:59.673182349 +0100
+++ /work/SRC/openSUSE:Factory/.sudo.new/sudo.changes   2017-05-31 
21:26:19.337799096 +0200
@@ -1,0 +2,9 @@
+Tue May 30 19:11:42 UTC 2017 - sfl...@suse.de
+
+- Fix a vulnerability in Sudo's get_process_ttyname() leading to 
+  privlage elevation.
+  * sudo-1.8.19p2-CVE-2017-1000367.patch 
+  * CVE-2017-1000367
+  * bsc#1039361
+
+---

New:

  sudo-1.8.19p2-CVE-2017-1000367.patch



Other differences:
--
++ sudo.spec ++
--- /var/tmp/diff_new_pack.2QeaZM/_old  2017-05-31 21:26:20.221674395 +0200
+++ /var/tmp/diff_new_pack.2QeaZM/_new  2017-05-31 21:26:20.225673831 +0200
@@ -35,6 +35,7 @@
 Patch1: sudo-sudoers.patch
 Patch2: sudo-1.8.19p2-decrement_env_len.patch
 Patch3: sudo-1.8.19p2-dont_overwrite_ret_val.patch
+Patch4: sudo-1.8.19p2-CVE-2017-1000367.patch
 BuildRequires:  audit-devel
 BuildRequires:  cyrus-sasl-devel
 BuildRequires:  groff
@@ -78,6 +79,7 @@
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
 
 %build
 %ifarch s390 s390x %sparc

++ sudo-1.8.19p2-CVE-2017-1000367.patch ++
Index: sudo-1.8.19p2/src/ttyname.c
===
--- sudo-1.8.19p2.orig/src/ttyname.c
+++ sudo-1.8.19p2/src/ttyname.c
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012-2016 Todd C. Miller 
+ * Copyright (c) 2012-2017 Todd C. Miller 
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -145,20 +145,22 @@ sudo_ttyname_dev(dev_t tdev, char *name,
 }
 #elif defined(HAVE_STRUCT_PSINFO_PR_TTYDEV) || defined(HAVE_PSTAT_GETPROC) || 
defined(__linux__)
 /*
- * Devices to search before doing a breadth-first scan.
+ * Device nodes and directories to search before searching all of /dev
  */
 static char *search_devs[] = {
 "/dev/console",
-"/dev/wscons",
-"/dev/pts/",
-"/dev/vt/",
-"/dev/term/",
-"/dev/zcons/",
+"/dev/pts/",   /* POSIX pty */
+"/dev/vt/",/* Solaris virtual console */
+"/dev/term/",  /* Solaris serial ports */
+"/dev/zcons/", /* Solaris zone console */
+"/dev/pty/",   /* HP-UX old-style pty */
 NULL
 };
 
+/*
+ * Device nodes to ignore when searching all of /dev
+ */
 static char *ignore_devs[] = {
-"/dev/fd/",
 "/dev/stdin",
 "/dev/stdout",
 "/dev/stderr",
@@ -166,16 +168,18 @@ static char *ignore_devs[] = {
 };
 
 /*
- * Do a breadth-first scan of dir looking for the specified device.
+ * Do a scan of a directory looking for the specified device.
+ * Does not descend into subdirectories.
  * Returns name on success and NULL on failure, setting errno.
  */
 static char *
-sudo_ttyname_scan(const char *dir, dev_t rdev, bool builtin, char *name, 
size_t namelen)
+sudo_ttyname_scan(const char *dir, dev_t rdev, char *name, size_t namelen)
 {
-size_t sdlen, num_subdirs = 0, max_subdirs = 0;
-char pathbuf[PATH_MAX], **subdirs = NULL;
+size_t sdlen;
+char pathbuf[PATH_MAX];
 char *ret = NULL;
 struct dirent *dp;
+struct stat sb;
 unsigned int i;
 DIR *d = NULL;
 debug_decl(sudo_ttyname_scan, SUDO_DEBUG_UTIL)
@@ -183,6 +187,18 @@ sudo_ttyname_scan(const char *dir, dev_t
 if (dir[0] == '\0' || (d = opendir(dir)) == NULL)
goto done;
 
+if (fstat(dirfd(d), &sb) == -1) {
+   sudo_debug_printf(SUDO_DEBUG_ERROR|SUDO_DEBUG_LINENO,
+   "unable to fstat %s", dir);
+   goto done;
+}
+if ((sb.st_mode & S_IWOTH) != 0) {
+   sudo_debug_printf(SUDO_DEBUG_ERROR|SUDO_DEBUG_LINENO,
+   "ignoring world-writable directory %s", dir);
+   errno = ENOENT;
+   goto done;
+}
+
 sudo_debug_printf(SUDO_DEBUG_INFO|SUDO_DEBUG_LINENO,
"scanning for dev %u in %s", (unsigned int)rdev, dir);
 
@@ -220,18 +236,6 @@ sudo_ttyname_scan(const char *dir, dev_t
}
if (ignore_devs[i] != NULL)
continue;
-   if (!builtin) {
-   /* Skip entries in search_devs; we already checked them. */
-   for (i = 0; search_devs[i] != NULL; i++) {
-   len = strlen(search_devs[i]);
-   if (search_devs[i][len - 1] == '/')
-   len--;
-   if (d_len == len && strncmp(pathbuf, search_d

commit javapackages-tools for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package javapackages-tools for 
openSUSE:Factory checked in at 2017-05-31 13:32:25

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


Package is "javapackages-tools"

Wed May 31 13:32:25 2017 rev:14 rq:497990 version:4.7.0+git20170331.ef4057e7

Changes:

New Changes file:

--- /dev/null   2017-03-01 00:40:19.279048016 +0100
+++ 
/work/SRC/openSUSE:Factory/.javapackages-tools.new/javapackages-tools-extras.changes
2017-05-31 13:32:26.337553435 +0200
@@ -0,0 +1,182 @@
+---
+Wed May 24 13:39:01 UTC 2017 - tchva...@suse.com
+
+- Fix typo in suse-use-libdir.patch
+
+---
+Fri May 19 10:26:41 UTC 2017 - tchva...@suse.com
+
+- Fix url to correct one https://github.com/fedora-java/javapackages
+
+---
+Thu May 18 20:11:39 UTC 2017 - tchva...@suse.com
+
+- Split to python and non-python edition for smaller depgraph
+- Add patch python-optional.patch
+- Fix abs2rel shebang:
+  * fix-abs2rel.patch
+- Fix Requires on subpackages to point to javapackages-tools proper
+
+---
+Thu May 18 19:40:26 UTC 2017 - tchva...@suse.com
+
+- Update to version 4.7.0+git20170331.ef4057e7:
+  * Reimplement abs2rel in Python
+  * Don't expand {scl} in macro definitions
+  * Install expanded rpmfc attr files
+  * [spec] Avoid file conflicts between in SCL
+  * Fix macros.d directory ownership
+  * Make %ant macro enable SCL when needed
+  * [spec] Fix file conflicts between SCL and non-SCL packages
+  * Fix ownership of ivyxmldir
+  * [test] Force locale for python processes
+  * Don't include timestamp in generated pom.properties
+- Remove patch merged by upstream:
+  * create_valid_xml_comments.patch
+- Remove patch suse-macros-install-location.patch
+  * We switch to /usr/lib/ location for macros
+- Try to reduce some dependencies bsc#1036025
+- Refresh patch suse-use-libdir.patch
+
+---
+Fri Feb 12 15:21:42 UTC 2016 - toddrme2...@gmail.com
+
+- Add create_valid_xml_comments.patch
+  python-lxml 3.5.0 introduces validation for xml comments, and 
+  one of the comments created in this package were not valid.
+  This patch fixes the problem.  It backported from upstream and
+  should be in the next release.
+  
https://github.com/mizdebsk/javapackages/commit/84211c0ee761e93ee507f5d37e9fc80ec377e89d
+
+---
+Mon Feb  8 20:23:42 UTC 2016 - tchva...@suse.com
+
+- Version update to 4.6.0:
+  * various bugfixes for maven tooling
+  * introduction to gradle-local package for gradle packaging
+
+---
+Wed Apr  1 08:40:57 UTC 2015 - tchva...@suse.com
+
+- Drop dependency over source-highlight as it causes build cycle
+
+---
+Tue Mar 31 10:28:12 UTC 2015 - tchva...@suse.com
+
+- Try to break buildcycle detected on Factory
+
+---
+Wed Mar 18 10:44:29 UTC 2015 - tchva...@suse.com
+
+- Fix build on SLE11
+
+---
+Tue Mar 17 14:39:51 UTC 2015 - tchva...@suse.com
+
+- Use python-devel instead of pkgconfig to build on sle11
+
+---
+Tue Mar 17 14:02:21 UTC 2015 - tchva...@suse.com
+
+- Add python-javapackages as requirement for main package
+
+---
+Tue Mar 17 13:35:17 UTC 2015 - tchva...@suse.com
+
+- Update requires on python packages to properly have all the needed
+  dependencies on runtime
+
+---
+Tue Mar 17 09:34:37 UTC 2015 - tchva...@suse.com
+
+- Install macros to /etc/rpm as we do in SUSE:
+  * suse-macros-install-location.patch
+- Cleanup with spec-cleaner
+
+---
+Fri Jan 23 20:59:04 UTC 2015 - mailaen...@opensuse.org
+
+- Drop patches
+  * depgen.patch
+  * javapackages-2.0.1-fix-bashisms.patch
+  * javapackages-2.0.1-java9.patch
+  * maven_depmap-no-attribute-exit.patch
+- Remove hacky workarounds
+- Fix rpmlint errors
+- Enable maven-local
+- Avoid unsatisfiable dependencies
+- Enable unit tests
+- Update to version 4.4.0
+
+---
+Mon Dec  8 13:02:05 UTC 2014 - fst...@suse.com
+
+- Added patch:
+  * javapackages-2.0.

commit bea-stax for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package bea-stax for openSUSE:Factory 
checked in at 2017-05-31 13:32:19

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


Package is "bea-stax"

Wed May 31 13:32:19 2017 rev:23 rq:497069 version:1.2.0

Changes:

--- /work/SRC/openSUSE:Factory/bea-stax/bea-stax.changes2013-09-11 
13:39:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.bea-stax.new/bea-stax.changes   2017-05-31 
13:32:21.422246279 +0200
@@ -1,0 +2,5 @@
+Sun May 21 08:15:12 UTC 2017 - tchva...@suse.com
+
+- Cleanup a bit and remove unused patch bea-stax-gcj43-build.patch
+
+---

Old:

  bea-stax-gcj43-build.patch



Other differences:
--
++ bea-stax.spec ++
--- /var/tmp/diff_new_pack.jSVmaf/_old  2017-05-31 13:32:22.314120564 +0200
+++ /var/tmp/diff_new_pack.jSVmaf/_new  2017-05-31 13:32:22.314120564 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package bea-stax
 #
-# Copyright (c) 2013 SUSE LINUX Products 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
@@ -16,47 +16,35 @@
 #
 
 
-%define namebea-stax
-%define version 1.2.0
-%define release 0.rc1.2jpp
 %define section free
+Name:   bea-stax
+Version:1.2.0
+Release:0
 Summary:Streaming API for XML
 License:Apache-2.0
 Group:  Development/Libraries/Java
 Url:http://dev2dev.bea.com/technologies/stax/index.jsp
 Source0:stax-src-1.2.0_rc1-dev.zip
 Patch0: bea-stax-target15.patch
-Patch1: bea-stax-gcj43-build.patch
 Patch2: bea-stax-gcj-build.patch
-
-Name:   bea-stax
-Version:%{version}
-Release:0
-BuildArch:  noarch
-BuildRequires:  javapackages-tools
-%if %defined suse_version
 BuildRequires:  ant
 BuildRequires:  java-1_5_0-gcj-compat-devel
+BuildRequires:  javapackages-tools
 BuildRequires:  unzip
-#BuildRequires:  xerces-j2-bootstrap
 #!BuildIgnore:  xerces-j2-bootstrap
-BuildRequires:  xml-commons-apis-bootstrap
-BuildRequires:  xml-commons-resolver-bootstrap
-BuildRequires:  xml-commons-which-bootstrap
 #!BuildIgnore: antlr antlr-java
 #!BuildIgnore:  xerces-j2 xml-commons xml-commons-apis xml-commons-resolver 
xml-commons-which
 #!BuildIgnore:  xml-commons-jaxp-1.3-apis
-%endif
+BuildRequires:  xml-commons-apis-bootstrap
+BuildRequires:  xml-commons-resolver-bootstrap
+BuildRequires:  xml-commons-which-bootstrap
 Requires:   %{name}-api = %{version}-%{release}
-Requires:   javapackages-tools
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildArch:  noarch
 
 %description
 The Streaming API for XML (StAX) is a groundbreaking new Java API for
 parsing and writing XML easily and efficiently.
 
-
-
 %package api
 Summary:The StAX API
 Group:  Development/Libraries/Java
@@ -64,16 +52,11 @@
 %description api
 Streaming API for XML
 
-
-
 %{summary}
 
 %prep
-%setup -q -c -n %{name}-%{version}
+%setup -q -c
 %patch0 -b .target15
-%if %suse_version <= 1110
-%patch1 -b .gcj43-build
-%endif
 %patch2 -b .gcj-build
 
 %build
@@ -81,17 +64,14 @@
 
 %install
 # jar
-install -d -m 0755 $RPM_BUILD_ROOT%{_javadir}
-install -p -m 0644 build/stax-api-1.0.jar 
$RPM_BUILD_ROOT%{_javadir}/%{name}-api-%{version}.jar
-install -p -m 0644 build/stax-1.2.0_rc1-dev.jar 
$RPM_BUILD_ROOT%{_javadir}/%{name}-ri-%{version}.jar
-ln -s %{name}-api-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{name}-api.jar
-ln -s %{name}-ri-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{name}-ri.jar
+install -d -m 0755 %{buildroot}%{_javadir}
+install -p -m 0644 build/stax-api-1.0.jar 
%{buildroot}%{_javadir}/%{name}-api-%{version}.jar
+install -p -m 0644 build/stax-1.2.0_rc1-dev.jar 
%{buildroot}%{_javadir}/%{name}-ri-%{version}.jar
+ln -s %{name}-api-%{version}.jar %{buildroot}%{_javadir}/%{name}-api.jar
+ln -s %{name}-ri-%{version}.jar %{buildroot}%{_javadir}/%{name}-ri.jar
 
 %files
 %defattr(-,root,root,-)
-#%{_docdir}/%{name}-%{version}/BEA*.doc
-#%{_docdir}/%{name}-%{version}/README.txt
-#%{_datadir}/%{name}-%{version}
 %{_javadir}/%{name}-ri-%{version}.jar
 %{_javadir}/%{name}-ri.jar
 





commit hamcrest for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package hamcrest for openSUSE:Factory 
checked in at 2017-05-31 13:32:41

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


Package is "hamcrest"

Wed May 31 13:32:41 2017 rev:20 rq:499447 version:1.3

Changes:

--- /work/SRC/openSUSE:Factory/hamcrest/hamcrest.changes2015-04-02 
15:55:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.hamcrest.new/hamcrest.changes   2017-05-31 
13:32:43.499134396 +0200
@@ -1,0 +2,12 @@
+Mon May 29 16:05:25 UTC 2017 - tchva...@suse.com
+
+- Apply patch from fedora:
+  * hamcrest-1.3-fork-javac.patch
+
+---
+Fri May 19 13:11:37 UTC 2017 - tchva...@suse.com
+
+- Fix homepage
+- Update to build with new javapacakges-tools
+
+---

New:

  hamcrest-1.3-fork-javac.patch



Other differences:
--
++ hamcrest.spec ++
--- /var/tmp/diff_new_pack.OH0fd8/_old  2017-05-31 13:32:44.854943285 +0200
+++ /var/tmp/diff_new_pack.OH0fd8/_new  2017-05-31 13:32:44.854943285 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package hamcrest
 #
-# Copyright (c) 2015 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
@@ -16,32 +16,13 @@
 #
 
 
-%define _without_integration 1
-%define _without_tests 1
-%define _withouth_jarjar 1
-
-# This option controls integration which requires easymock2 and jmock and junit
-%bcond_without integration
-
-# This option controls jarjar on qdox
-# Since bundling the qdox classes prevents upgrades, we disable it by default
-%bcond_with jarjar
-
-# This option controls tests which requires ant-junit and testng
-%bcond_without tests
-
-# If integration is disabled, then tests are disabled
-%if %without integration
-%bcond_with tests
-%endif
-
 Name:   hamcrest
 Version:1.3
 Release:0
 Summary:Library of matchers for building test expressions
 License:BSD-3-Clause
 Group:  Development/Libraries/Java
-Url:http://code.google.com/p/%{name}/
+Url:https://github.com/hamcrest/JavaHamcrest
 Source0:http://%{name}.googlecode.com/files/%{name}-%{version}.tgz
 Source1:
http://repo1.maven.org/maven2/org/%{name}/%{name}-parent/%{version}/%{name}-parent-%{version}.pom
 Source2:
http://repo1.maven.org/maven2/org/%{name}/%{name}-library/%{version}/%{name}-library-%{version}.pom
@@ -52,13 +33,11 @@
 # This file was added by the maintainer for compatibility with maven dep
 # solving system
 Source7:%{name}-text-%{version}.pom
-
 Source8:hamcrest-core-MANIFEST.MF
 Source9:hamcrest-library-MANIFEST.MF
 Source10:   hamcrest-text-MANIFEST.MF
 Source11:   hamcrest-integration-MANIFEST.MF
 Source12:   hamcrest-generator-MANIFEST.MF
-
 #PATCH-FIX-OPENSUSE: don't use versioned deps, no overview in html
 Patch0: %{name}-%{version}-build.patch
 #PATCH-FIX-OPENSUSE: don't bundle QDox classes into hamcrest-generator.jar
@@ -69,33 +48,15 @@
 Patch3: %{name}-%{version}-javadoc.patch
 #PATCH-FIX-UPSTREAM: random build crash fix
 Patch4: hamcrest-1.3-random-build-crash.patch
-
-Requires:   java >= 1.6.0
-Requires:   qdox
-%if %with integration
-Requires:   easymock2
-Requires:   jmock
-%endif
-
+Patch5: hamcrest-1.3-fork-javac.patch
 BuildRequires:  ant >= 1.6.5
 BuildRequires:  java-devel >= 1.6.0
+BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
-BuildRequires:  zip
-%if %with integration
-BuildRequires:  easymock2
-%endif
-%if %with jarjar
-BuildRequires:  jarjar
-%endif
-%if %with integration
-BuildRequires:  ant-junit
-BuildRequires:  jmock
-BuildRequires:  junit
-%endif
 BuildRequires:  qdox
-%if %with tests
-BuildRequires:  testng
-%endif
+BuildRequires:  zip
+Requires:   java >= 1.6.0
+Requires:   qdox
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -105,8 +66,6 @@
 used in other frameworks. Typical scenarios include testing frameworks,
 mocking libraries and UI validation rules.
 
-
-
 %package javadoc
 Summary:Javadoc for %{name}
 Group:  Documentation/HTML
@@ -119,9 +78,6 @@
 Group:  Development/Libraries/Java
 Requires:   %{name} = %{version}
 Requires:   junit
-%if %with tests
-Requires:   testng
-%endif
 
 %description demo
 Demo files for %{name}.
@@ -132,48 +88,19 @@
 rm -fr 
hamcrest-integration/src/main/java/org/hamcrest/integratio

commit geronimo-specs for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package geronimo-specs for openSUSE:Factory 
checked in at 2017-05-31 13:32:37

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


Package is "geronimo-specs"

Wed May 31 13:32:37 2017 rev:25 rq:498498 version:1.2

Changes:

--- /work/SRC/openSUSE:Factory/geronimo-specs/geronimo-specs.changes
2015-04-02 15:55:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.geronimo-specs.new/geronimo-specs.changes   
2017-05-31 13:32:38.415850920 +0200
@@ -1,0 +2,11 @@
+Fri May 19 14:33:51 UTC 2017 - tchva...@suse.com
+
+- Remove javadoc to cut build time in half
+
+---
+Fri May 19 13:22:01 UTC 2017 - tchva...@suse.com
+
+- Fix building with new javapackages-tools
+- Remove unused conditionals
+
+---



Other differences:
--
++ geronimo-specs.spec ++
 1938 lines (skipped)
 between /work/SRC/openSUSE:Factory/geronimo-specs/geronimo-specs.spec
 and /work/SRC/openSUSE:Factory/.geronimo-specs.new/geronimo-specs.spec

++ geronimo-specs.build.xml ++
--- /var/tmp/diff_new_pack.fhrL7C/_old  2017-05-31 13:32:39.659675594 +0200
+++ /var/tmp/diff_new_pack.fhrL7C/_new  2017-05-31 13:32:39.663675030 +0200
@@ -238,8 +238,6 @@
   
   
   
-
-  
   
 
   




commit apache-ivy for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package apache-ivy for openSUSE:Factory 
checked in at 2017-05-31 13:32:11

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


Package is "apache-ivy"

Wed May 31 13:32:11 2017 rev:11 rq:497064 version:2.3.0

Changes:

--- /work/SRC/openSUSE:Factory/apache-ivy/apache-ivy.changes2015-04-02 
15:53:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.apache-ivy.new/apache-ivy.changes   
2017-05-31 13:32:13.927302738 +0200
@@ -1,0 +2,10 @@
+Sun May 21 08:01:08 UTC 2017 - tchva...@suse.com
+
+- Reduce deps a bit
+
+---
+Fri May 19 10:07:03 UTC 2017 - pcervi...@suse.com
+
+- New build dependency: javapackages-local 
+
+---



Other differences:
--
++ apache-ivy.spec ++
--- /var/tmp/diff_new_pack.djP6lw/_old  2017-05-31 13:32:14.811178151 +0200
+++ /var/tmp/diff_new_pack.djP6lw/_new  2017-05-31 13:32:14.815177587 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package apache-ivy
 #
-# Copyright (c) 2015 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
@@ -29,13 +29,13 @@
 BuildRequires:  ant
 BuildRequires:  bouncycastle
 BuildRequires:  commons-httpclient
-BuildRequires:  java-devel >= 1.5
+BuildRequires:  dos2unix
+BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 BuildRequires:  jsch
 BuildRequires:  oro
-Requires:   javapackages-tools
-Provides:   ivy = %{version}-%{release}
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Provides:   ivy = %{version}
+Obsoletes:  ivy < %{version}
 BuildArch:  noarch
 
 %description
@@ -58,17 +58,11 @@
 %setup -q
 
 # Fix messed-up encodings
-for F in README LICENSE NOTICE
-do
-sed 's/\r//' $F |iconv -f iso8859-1 -t utf8 >$F.utf8
-touch -r $F $F.utf8
-mv $F.utf8 $F
-done
+dos2unix README LICENSE NOTICE RELEASE_NOTES CHANGES.txt
 
 #TODO: return back when bouncycastle-pgp will be available
 rm -fr src/java/org/apache/ivy/plugins/signer/bouncycastle
 
-%build
 # Remove prebuilt documentation
 rm -rf doc build/doc
 
@@ -79,6 +73,7 @@
 sed '/vfs.*=.*org.apache.ivy.plugins.resolver.VfsResolver/d' -i \
 src/java/org/apache/ivy/core/settings/typedef.properties
 
+%build
 # Craft class path
 mkdir -p lib
 build-jar-repository lib ant ant/ant-nodeps oro jsch commons-httpclient




commit bsf for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package bsf for openSUSE:Factory checked in 
at 2017-05-31 13:31:56

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


Package is "bsf"

Wed May 31 13:31:56 2017 rev:23 rq:496986 version:2.4.0

Changes:

--- /work/SRC/openSUSE:Factory/bsf/bsf.changes  2015-04-02 16:00:32.0 
+0200
+++ /work/SRC/openSUSE:Factory/.bsf.new/bsf.changes 2017-05-31 
13:31:59.965270771 +0200
@@ -1,0 +2,11 @@
+Sat May 20 18:41:16 UTC 2017 - tchva...@suse.com
+
+- Remove jython from dependencies, not needed
+
+---
+Fri May 19 11:38:11 UTC 2017 - pcervi...@suse.com
+
+- New build dependency: javapackages-local
+- Spec file cleaned
+
+---



Other differences:
--
++ bsf.spec ++
--- /var/tmp/diff_new_pack.UjuGQl/_old  2017-05-31 13:32:00.641175498 +0200
+++ /var/tmp/diff_new_pack.UjuGQl/_new  2017-05-31 13:32:00.645174934 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package bsf
 #
-# Copyright (c) 2015 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
@@ -32,10 +32,9 @@
 BuildRequires:  ant
 BuildRequires:  apache-commons-logging
 BuildRequires:  java-devel
+BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
-BuildRequires:  jython
 BuildRequires:  rhino
-#!BuildIgnore: mysql-connector-java
 BuildRequires:  xalan-j2
 BuildRequires:  xml-commons-apis
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -66,8 +65,6 @@
 %package javadoc
 Summary:Javadoc for bsf
 Group:  Development/Libraries/Java
-# FIXME: use proper Requires(pre/post/preun/...)
-PreReq: coreutils
 
 %description javadoc
 Bean Scripting Framework (BSF) is a set of Java classes which provides
@@ -95,7 +92,7 @@
 
 %build
 [ -z "$JAVA_HOME" ] && export JAVA_HOME=%{_jvmdir}/java
-export CLASSPATH=$(build-classpath apache-commons-logging rhino xalan-j2 
jython servlet jspapi)
+export CLASSPATH=$(build-classpath apache-commons-logging rhino xalan-j2 
servlet jspapi)
 ant jar
 rm -rf bsf/src/org/apache/bsf/engines/java
 ant javadocs





commit java-1_7_0-openjdk for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package java-1_7_0-openjdk for 
openSUSE:Factory checked in at 2017-05-31 13:31:34

Comparing /work/SRC/openSUSE:Factory/java-1_7_0-openjdk (Old)
 and  /work/SRC/openSUSE:Factory/.java-1_7_0-openjdk.new (New)


Package is "java-1_7_0-openjdk"

Wed May 31 13:31:34 2017 rev:85 rq:496978 version:1.7.0.141

Changes:

--- 
/work/SRC/openSUSE:Factory/java-1_7_0-openjdk/java-1_7_0-openjdk-bootstrap.changes
  2017-04-24 09:45:00.639976909 +0200
+++ 
/work/SRC/openSUSE:Factory/.java-1_7_0-openjdk.new/java-1_7_0-openjdk-bootstrap.changes
 2017-05-31 13:31:39.528151498 +0200
@@ -1,0 +2,177 @@
+Sat May 20 17:05:25 UTC 2017 - tchva...@suse.com
+
+- Own /usr/lib64/jvm-exports as 1.8.0 and newer do because it is
+  no longer in javapackages-tools
+
+---
+Wed May 17 11:03:15 UTC 2017 - fst...@suse.com
+
+- Update to 2.6.10 - OpenJDK 7u141 (bsc#1034849)
+* Security fixes
+- S8163520, CVE-2017-3509: Reuse cache entries
+- S8163528, CVE-2017-3511: Better library loading
+- S8165626, CVE-2017-3512: Improved window framing
+- S8167110, CVE-2017-3514: Windows peering issue
+- S8169011, CVE-2017-3526: Resizing XML parse trees
+- S8170222, CVE-2017-3533: Better transfers of files
+- S8171121, CVE-2017-3539: Enhancing jar checking
+- S8171533, CVE-2017-3544: Better email transfer
+- S8172299: Improve class processing
+  * New features
+- PR3347: jstack.stp should support AArch64
+  * Import of OpenJDK 7 u141 build 0
+- S4717864: setFont() does not update Fonts of Menus already on
+  screen
+- S6474807: (smartcardio) CardTerminal.connect() throws
+  CardException instead of CardNotPresentException
+- S6518907: cleanup IA64 specific code in Hotspot
+- S6869327: Add new C2 flag to keep safepoints in counted loops.
+- S7112912: Message "Error occurred during initialization of
+  VM" on boxes with lots of RAM
+- S7124213: [macosx] pack() does ignore size of a component;
+  doesn't on the other platforms
+- S7124219: [macosx] Unable to draw images to fullscreen
+- S7124552: [macosx] NullPointerException in getBufferStrategy()
+- S7148275: [macosx] setIconImages() not working correctly
+  (distorted icon when minimized)
+- S7154841: [macosx] Popups appear behind taskbar
+- S7155957:
+  closed/java/awt/MenuBar/MenuBarStress1/MenuBarStress1.java
+  hangs on win 64 bit with jdk8
+- S7160627: [macosx] TextArea has wrong initial size
+- S7167293: FtpURLConnection connection leak on
+  FileNotFoundException
+- S7168851: [macosx] Netbeans crashes in
+  CImage.nativeCreateNSImageFromArray
+- S7197203: sun/misc/URLClassPath/ClassnameCharTest.sh failed,
+  compile error
+- S8005255: [macosx] Cleanup warnings in sun.lwawt
+- S8006088: Incompatible heap size flags accepted by VM
+- S8007295: Reduce number of warnings in awt classes
+- S8010722: assert: failed: heap size is too big for compressed
+  oops
+- S8011059: [macosx] Support automatic @2x images loading on
+  Mac OS X
+- S8014058: Regression tests for 8006088
+- S8014489:
+  tests/gc/arguments/Test(Serial|CMS|Parallel|G1)HeapSizeFlags
+  jtreg tests invoke wrong class
+- S8016302: Change type of the number of GC workers to unsigned
+  int (2)
+- S8024662: gc/arguments/TestUseCompressedOopsErgo.java does
+  not compile.
+- S8024669: Native OOME when allocating after changes to
+  maximum heap supporting Coops sizing on sparcv9
+- S8024926: [macosx] AquaIcon HiDPI support
+- S8025974: l10n for policytool
+- S8027025: [macosx] getLocationOnScreen returns 0 if parent
+  invisible
+- S8028212: Custom cursor HiDPI support
+- S8028471: PPC64 (part 215): opto: Extend ImplicitNullCheck
+  optimization.
+- S8031573: [macosx] Checkmarks of JCheckBoxMenuItems aren't
+  rendered in high resolution on Retina
+- S8033534: [macosx] Get MultiResolution image from native
+  system
+- S8033786: White flashing when opening Dialogs and Menus using
+  Nimbus with dark background
+- S8035568: [macosx] Cursor management unification
+- S8041734: JFrame in full screen mode leaves empty workspace
+  after close
+- S8059803: Update use of GetVersionEx to get correct Windows
+  version in hs_err files
+- S8066504: GetVersionEx in
+  java.base/windows/native/libjava/java_props_md.c might not
+  get correct Windows version 0
+- S8079595: Resizing dialog which is JWindow parent makes JVM
+  crash
+- S8080729: [macosx] java 7 and 8 JDialogs on multiscreen jump
+  to parent frame on focus
+- S8130769: The new menu can't be shown on the menubar aft

commit asm for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package asm for openSUSE:Factory checked in 
at 2017-05-31 13:32:02

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


Package is "asm"

Wed May 31 13:32:02 2017 rev:17 rq:496987 version:1.5.3

Changes:

--- /work/SRC/openSUSE:Factory/asm/asm.changes  2013-07-18 15:48:24.0 
+0200
+++ /work/SRC/openSUSE:Factory/.asm.new/asm.changes 2017-05-31 
13:32:03.480775240 +0200
@@ -1,0 +2,6 @@
+Sat May 20 18:43:47 UTC 2017 - tchva...@suse.com
+
+- Run over with spec-cleaner
+- Remove obsolete deps
+
+---



Other differences:
--
++ asm.spec ++
--- /var/tmp/diff_new_pack.lYvEGG/_old  2017-05-31 13:32:04.072691806 +0200
+++ /var/tmp/diff_new_pack.lYvEGG/_new  2017-05-31 13:32:04.076691241 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package asm
 #
-# Copyright (c) 2013 SUSE LINUX Products 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
@@ -14,15 +14,9 @@
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
-# icecream 0
 
 
 Name:   asm
-BuildRequires:  ant
-BuildRequires:  java2-devel-packages
-BuildRequires:  objectweb-anttask
-BuildRequires:  xml-commons-apis
-%define sectionfree
 Version:1.5.3
 Release:0
 Summary:Java bytecode manipulation framework
@@ -32,9 +26,12 @@
 Source0:http://download.us.forge.objectweb.org/asm/asm-1.5.3.tar.gz
 Source1:http://asm.objectweb.org/current/asm-eng.pdf
 Source2:http://asm.objectweb.org/doc/faq.html
-Patch:  %{name}-java14compat.patch
-BuildArch:  noarch
+Patch0: %{name}-java14compat.patch
+BuildRequires:  ant
+BuildRequires:  objectweb-anttask
+BuildRequires:  xml-commons-apis
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildArch:  noarch
 
 %description
 ASM is a Java bytecode manipulation framework.
@@ -47,21 +44,16 @@
 ASM offers similar functionalities as BCEL or SERP, but is much
 smaller.
 
-
-
 %package   javadoc
-PreReq: coreutils
 Summary:Java bytecode manipulation framework (documentation)
 Group:  Development/Libraries/Java
 
 %description   javadoc
 Javadoc for asm.
 
-
-
 %prep
-%setup -q -n %{name}-%{version}
-%patch
+%setup -q
+%patch0
 find . -name "*.jar" -exec rm -f {} \;
 install -m 644 %{SOURCE1} .
 install -m 644 %{SOURCE2} .
@@ -71,26 +63,16 @@
 
 %install
 # jars
-install -d -m 755 $RPM_BUILD_ROOT%{_javadir}/%{name}
+install -d -m 755 %{buildroot}%{_javadir}/%{name}
 for jar in output/dist/lib/*.jar; do
 install -m 644 ${jar} \
-$RPM_BUILD_ROOT%{_javadir}/%{name}/`basename ${jar}`
+%{buildroot}%{_javadir}/%{name}/`basename ${jar}`
 done
-(cd $RPM_BUILD_ROOT%{_javadir}/%{name} && for jar in *-%{version}*; do \
+(cd %{buildroot}%{_javadir}/%{name} && for jar in *-%{version}*; do \
 ln -sf ${jar} ${jar/-%{version}/}; done)
 # javadoc
-install -p -d -m 755 $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
-cp -pr output/dist/doc/javadoc/user/* 
$RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
-(cd $RPM_BUILD_ROOT%{_javadocdir} && ln -sf %{name}-%{version} %{name})
-
-%post javadoc
-rm -f %{_javadocdir}/%{name}
-ln -s %{name}-%{version} %{_javadocdir}/%{name}
-
-%postun javadoc
-if [ $1 -eq 0 ]; then
-  rm -f %{_javadocdir}/%{name}
-fi
+install -p -d -m 755 %{buildroot}%{_javadocdir}/%{name}
+cp -pr output/dist/doc/javadoc/user/* %{buildroot}%{_javadocdir}/%{name}
 
 %files
 %defattr(0644,root,root,0755)
@@ -100,8 +82,7 @@
 
 %files javadoc
 %defattr(0644,root,root,0755)
-%dir %{_javadocdir}/%{name}-%{version}
-%{_javadocdir}/%{name}-%{version}/*
-%ghost %{_javadocdir}/%{name}
+%dir %{_javadocdir}/%{name}
+%{_javadocdir}/%{name}/*
 
 %changelog




commit ecj for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package ecj for openSUSE:Factory checked in 
at 2017-05-31 13:30:54

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


Package is "ecj"

Wed May 31 13:30:54 2017 rev:22 rq:496824 version:4.4.0

Changes:

--- /work/SRC/openSUSE:Factory/ecj/ecj.changes  2015-09-17 09:17:14.0 
+0200
+++ /work/SRC/openSUSE:Factory/.ecj.new/ecj.changes 2017-05-31 
13:30:57.142126015 +0200
@@ -1,0 +2,5 @@
+Fri May 19 12:04:39 UTC 2017 - tchva...@suse.com
+
+- Fix build with javapacakges-tools
+
+---



Other differences:
--
++ ecj.spec ++
--- /var/tmp/diff_new_pack.IQeD9p/_old  2017-05-31 13:30:58.309961404 +0200
+++ /var/tmp/diff_new_pack.IQeD9p/_new  2017-05-31 13:30:58.313960840 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ecj
 #
-# Copyright (c) 2015 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
@@ -46,16 +46,18 @@
 Patch3: eclipse-gcj-nodummysymbol.patch
 BuildRequires:  ant
 BuildRequires:  gzip
+BuildRequires:  javapackages-local
+BuildRequires:  javapackages-tools
 BuildRequires:  unzip
 Conflicts:  ecj-bootstrap
 Provides:   eclipse-ecj = %{version}-%{release}
 Obsoletes:  eclipse-ecj < 3.4.2-4
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 %if 0%{?suse_version} > 1315 || 0%{?is_opensuse} == 1
 #!BuildIgnore:  java-1_6_0-openjdk java-1_6_0-openjdk-devel
 #!BuildIgnore:  java-1_7_0-openjdk java-1_7_0-openjdk-devel
 #!BuildIgnore:  java-1_8_0-openjdk java-1_8_0-openjdk-devel
+#!BuildIgnore:  java-9-openjdk java-9-openjdk-devel
 BuildRequires:  java-1_7_0-openjdk-bootstrap-devel
 %else
 BuildRequires:  java-devel >= 1.7.0





commit bcel for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package bcel for openSUSE:Factory checked in 
at 2017-05-31 13:31:40

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


Package is "bcel"

Wed May 31 13:31:40 2017 rev:25 rq:496981 version:5.2

Changes:

--- /work/SRC/openSUSE:Factory/bcel/bcel.changes2015-04-02 
16:00:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.bcel.new/bcel.changes   2017-05-31 
13:31:53.590169379 +0200
@@ -1,0 +2,5 @@
+Fri May 19 16:56:30 UTC 2017 - tchva...@suse.com
+
+- Buildignore more java implementations
+
+---



Other differences:
--
++ bcel.spec ++
--- /var/tmp/diff_new_pack.vEvcpy/_old  2017-05-31 13:31:54.230079179 +0200
+++ /var/tmp/diff_new_pack.vEvcpy/_new  2017-05-31 13:31:54.234078615 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package bcel
 #
-# Copyright (c) 2015 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
@@ -32,8 +32,10 @@
 #BuildRequires:  xerces-j2-bootstrap
 #!BuildIgnore:  xml-commons-apis xml-commons-resolver xml-commons xerces-j2
 #!BuildIgnore:  xml-commons-jaxp-1.3-apis
-#!BuildIgnore:  java-1_6_0-openjdk-devel
-#!BuildIgnore:  java-1_7_0-openjdk-devel
+#!BuildIgnore:  java-1_6_0-openjdk java-1_6_0-openjdk-devel
+#!BuildIgnore:  java-1_7_0-openjdk java-1_7_0-openjdk-devel
+#!BuildIgnore:  java-1_8_0-openjdk java-1_8_0-openjdk-devel
+#!BuildIgnore:  java-9-openjdk java-9-openjdk-devel
 #!BuildIgnore:  xerces-j2-bootstrap
 BuildRequires:  xml-commons-apis-bootstrap
 Requires:   regexp





commit oro for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package oro for openSUSE:Factory checked in 
at 2017-05-31 13:31:46

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


Package is "oro"

Wed May 31 13:31:46 2017 rev:17 rq:496982 version:2.0.8

Changes:

--- /work/SRC/openSUSE:Factory/oro/oro.changes  2014-06-30 22:50:14.0 
+0200
+++ /work/SRC/openSUSE:Factory/.oro.new/oro.changes 2017-05-31 
13:31:54.402054938 +0200
@@ -1,0 +2,5 @@
+Sat May 20 18:16:52 UTC 2017 - tchva...@suse.com
+
+- Do not require dead package
+
+---



Other differences:
--
++ oro.spec ++
--- /var/tmp/diff_new_pack.zNI290/_old  2017-05-31 13:31:54.849991799 +0200
+++ /var/tmp/diff_new_pack.zNI290/_new  2017-05-31 13:31:54.849991799 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package oro
 #
-# Copyright (c) 2014 SUSE LINUX Products 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
@@ -27,7 +27,6 @@
 Url:http://jakarta.apache.org/oro/
 Source0:%{full_name}-%{version}.tar.gz
 BuildRequires:  ant
-BuildRequires:  java2-devel-packages
 BuildRequires:  xml-commons-apis
 Provides:   %{full_name} = %{version}-%{release}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build




commit sac for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package sac for openSUSE:Factory checked in 
at 2017-05-31 13:31:27

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


Package is "sac"

Wed May 31 13:31:27 2017 rev:6 rq:496886 version:1.3

Changes:

--- /work/SRC/openSUSE:Factory/sac/sac.changes  2016-03-16 10:26:00.0 
+0100
+++ /work/SRC/openSUSE:Factory/.sac.new/sac.changes 2017-05-31 
13:31:29.073625118 +0200
@@ -1,0 +2,5 @@
+Sat May 20 07:29:06 UTC 2017 - tchva...@suse.com
+
+- Fix build with new javapackages-tools
+
+---



Other differences:
--
++ sac.spec ++
--- /var/tmp/diff_new_pack.oBzZMb/_old  2017-05-31 13:31:31.253317879 +0200
+++ /var/tmp/diff_new_pack.oBzZMb/_new  2017-05-31 13:31:31.257317315 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package sac
 #
-# 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
@@ -31,12 +31,11 @@
 Source2:%{name}-MANIFEST.MF
 Source3:
http://mirrors.ibiblio.org/pub/mirrors/maven2/org/w3c/css/sac/1.3/sac-1.3.pom
 BuildRequires:  ant
-BuildRequires:  java-devel
-BuildRequires:  jpackage-utils
+BuildRequires:  javapackages-local
+BuildRequires:  javapackages-tools
 BuildRequires:  unzip
 BuildRequires:  zip
 Requires:   java
-Requires:   jpackage-utils
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 





commit ht2html for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package ht2html for openSUSE:Factory checked 
in at 2017-05-31 13:31:50

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


Package is "ht2html"

Wed May 31 13:31:50 2017 rev:15 rq:496984 version:2.0

Changes:

--- /work/SRC/openSUSE:Factory/ht2html/ht2html.changes  2011-09-23 
02:02:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.ht2html.new/ht2html.changes 2017-05-31 
13:31:54.977973760 +0200
@@ -1,0 +2,5 @@
+Sat May 20 18:25:21 UTC 2017 - tchva...@suse.com
+
+- Update to not require deps that are not needed for build
+
+---



Other differences:
--
++ ht2html.spec ++
--- /var/tmp/diff_new_pack.HJ6Mt2/_old  2017-05-31 13:31:55.613884123 +0200
+++ /var/tmp/diff_new_pack.HJ6Mt2/_new  2017-05-31 13:31:55.617883560 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package ht2html (Version 2.0)
+# spec file for package ht2html
 #
-# Copyright (c) 2009 SUSE LINUX Products 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
@@ -15,22 +15,17 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   ht2html
-BuildRequires:  ant java2-devel-packages python-devel xml-commons-apis
-%definenameht2html
-%define version2.0
-%define release1jpp
 Version:2.0
-Release:273
+Release:0
+Summary:The www.python.org Web Site Generator
+License:Python-2.0
+Group:  Development/Tools/Other
 Url:http://ht2html.sourceforge.net
 Source0:%{name}-%{version}.tar.bz2
 Source1:%{name}.bz2
-License:Python-2.0
-Group:  Development/Tools/Other
-Summary:The www.python.org Web Site Generator
+Requires:   python
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -48,39 +43,31 @@
 file. These headers specify certain options that ht2html's various
 classes support. Python 2.0 or newer is required.
 
-
-
-Authors:
-
-Barry Warsaw
-
 %prep
 %setup -q
 bzcat %{SOURCE1} > %{name}
 
 %build
+:
 
 %install
-install -d -m 755 $RPM_BUILD_ROOT%{_bindir}
-install -m 755 %{name} $RPM_BUILD_ROOT%{_bindir}
-install -d -m 755 $RPM_BUILD_ROOT%{_datadir}/%{name}
-install -m 755 calcroot.py $RPM_BUILD_ROOT%{_datadir}/%{name}
-install -m 755 ht2html.py $RPM_BUILD_ROOT%{_datadir}/%{name}
-install -m 644 BAWGenerator.py $RPM_BUILD_ROOT%{_datadir}/%{name}
-install -m 644 Banner.py $RPM_BUILD_ROOT%{_datadir}/%{name}
-install -m 644 HTParser.py $RPM_BUILD_ROOT%{_datadir}/%{name}
-install -m 644 IPC8Generator.py $RPM_BUILD_ROOT%{_datadir}/%{name}
-install -m 644 JPyGenerator.py $RPM_BUILD_ROOT%{_datadir}/%{name}
-install -m 644 JPyLocalGenerator.py $RPM_BUILD_ROOT%{_datadir}/%{name}
-install -m 644 LinkFixer.py $RPM_BUILD_ROOT%{_datadir}/%{name}
-install -m 644 PDOGenerator.py $RPM_BUILD_ROOT%{_datadir}/%{name}
-install -m 644 SelfGenerator.py $RPM_BUILD_ROOT%{_datadir}/%{name}
-install -m 644 Sidebar.py $RPM_BUILD_ROOT%{_datadir}/%{name}
-install -m 644 Skeleton.py $RPM_BUILD_ROOT%{_datadir}/%{name}
-install -m 644 StandardGenerator.py $RPM_BUILD_ROOT%{_datadir}/%{name}
-
-%clean
-rm -rf $RPM_BUILD_ROOT
+install -d -m 755 %{buildroot}%{_bindir}
+install -m 755 %{name} %{buildroot}%{_bindir}
+install -d -m 755 %{buildroot}%{_datadir}/%{name}
+install -m 755 calcroot.py %{buildroot}%{_datadir}/%{name}
+install -m 755 ht2html.py %{buildroot}%{_datadir}/%{name}
+install -m 644 BAWGenerator.py %{buildroot}%{_datadir}/%{name}
+install -m 644 Banner.py %{buildroot}%{_datadir}/%{name}
+install -m 644 HTParser.py %{buildroot}%{_datadir}/%{name}
+install -m 644 IPC8Generator.py %{buildroot}%{_datadir}/%{name}
+install -m 644 JPyGenerator.py %{buildroot}%{_datadir}/%{name}
+install -m 644 JPyLocalGenerator.py %{buildroot}%{_datadir}/%{name}
+install -m 644 LinkFixer.py %{buildroot}%{_datadir}/%{name}
+install -m 644 PDOGenerator.py %{buildroot}%{_datadir}/%{name}
+install -m 644 SelfGenerator.py %{buildroot}%{_datadir}/%{name}
+install -m 644 Sidebar.py %{buildroot}%{_datadir}/%{name}
+install -m 644 Skeleton.py %{buildroot}%{_datadir}/%{name}
+install -m 644 StandardGenerator.py %{buildroot}%{_datadir}/%{name}
 
 %files
 %defattr(-,root,root)





commit apache-commons-parent for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package apache-commons-parent for 
openSUSE:Factory checked in at 2017-05-31 13:31:13

Comparing /work/SRC/openSUSE:Factory/apache-commons-parent (Old)
 and  /work/SRC/openSUSE:Factory/.apache-commons-parent.new (New)


Package is "apache-commons-parent"

Wed May 31 13:31:13 2017 rev:11 rq:496830 version:32

Changes:

--- 
/work/SRC/openSUSE:Factory/apache-commons-parent/apache-commons-parent.changes  
2015-04-02 15:53:19.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.apache-commons-parent.new/apache-commons-parent.changes
 2017-05-31 13:31:14.263712649 +0200
@@ -1,0 +2,12 @@
+Fri May 19 16:59:46 UTC 2017 - tchva...@suse.com
+
+- Do not require java-devel for build
+
+---
+Fri May 19 10:04:45 UTC 2017 - pcervi...@suse.com
+
+- New build dependency: javapackages-local 
+- Fixed requires
+- Spec file cleaned
+
+---



Other differences:
--
++ apache-commons-parent.spec ++
--- /var/tmp/diff_new_pack.4vspVg/_old  2017-05-31 13:31:14.735646127 +0200
+++ /var/tmp/diff_new_pack.4vspVg/_new  2017-05-31 13:31:14.739645564 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package apache-commons-parent
 #
-# Copyright (c) 2015 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
@@ -18,7 +18,6 @@
 
 %define base_name   parent
 %define short_name  commons-%{base_name}
-
 Name:   apache-%{short_name}
 Version:32
 Release:0
@@ -26,38 +25,19 @@
 License:Apache-2.0
 Group:  Development/Libraries/Java
 Url:
http://svn.apache.org/repos/asf/commons/proper/%{short_name}/tags/%{short_name}-%{version}/
-
 # svn export 
http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-32
 # tar caf commons-parent-32.tar.xz commons-parent-32
 Source0:%{short_name}-%{version}.tar.xz
-
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildArch:  noarch
-
-BuildRequires:  java-devel >= 1.6.0
+BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 BuildRequires:  xz
-
 Requires:   java >= 1.6.0
-Requires:   javapackages-tools
-#Requires: maven2 >= 2.2.1
-#Requires: maven-antrun-plugin
-#Requires: maven-assembly-plugin
-#Requires: maven-compiler-plugin
-#Requires: maven-idea-plugin
-#Requires: maven-install-plugin
-#Requires: maven-jar-plugin
-#Requires: maven-javadoc-plugin
-#Requires: maven-plugin-bundle
-#Requires: maven-resources-plugin
-#Requires: maven-surefire-plugin
-Requires(post):   javapackages-tools
-Requires(postun): javapackages-tools
-
 Provides:   jakarta-%{short_name} = %{version}-%{release}
 Obsoletes:  jakarta-%{short_name} < 23
 Provides:   %{short_name} = %{version}-%{release}
 Obsoletes:  %{short_name} < 23
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildArch:  noarch
 
 %description
 The Project Object Model files for the apache-commons packages.




commit saxon8 for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package saxon8 for openSUSE:Factory checked 
in at 2017-05-31 13:31:17

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


Package is "saxon8"

Wed May 31 13:31:17 2017 rev:17 rq:496836 version:B.8.8

Changes:

--- /work/SRC/openSUSE:Factory/saxon8/saxon8.changes2014-08-01 
19:27:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.saxon8.new/saxon8.changes   2017-05-31 
13:31:19.898918339 +0200
@@ -1,0 +2,5 @@
+Fri May 19 17:09:34 UTC 2017 - tchva...@suse.com
+
+- Do not require javapackage-tools
+
+---



Other differences:
--
++ saxon8.spec ++
--- /var/tmp/diff_new_pack.xIi3NV/_old  2017-05-31 13:31:20.862782478 +0200
+++ /var/tmp/diff_new_pack.xIi3NV/_new  2017-05-31 13:31:20.870781350 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package saxon8
 #
-# Copyright (c) 2014 SUSE LINUX Products 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
@@ -144,7 +144,6 @@
 Summary:Utility scripts for saxon8
 Group:  Development/Languages/Other
 Requires:   %{name} = %{version}-%{release}
-Requires:   javapackages-tools
 
 %descriptionscripts
 Utility scripts for saxon8.




commit saxon6 for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package saxon6 for openSUSE:Factory checked 
in at 2017-05-31 13:31:23

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


Package is "saxon6"

Wed May 31 13:31:23 2017 rev:10 rq:496837 version:6.5.5

Changes:

--- /work/SRC/openSUSE:Factory/saxon6/saxon6.changes2014-08-01 
19:27:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.saxon6.new/saxon6.changes   2017-05-31 
13:31:24.414281876 +0200
@@ -1,0 +2,5 @@
+Fri May 19 17:10:09 UTC 2017 - tchva...@suse.com
+
+- Do not require javapackage-tools
+
+---



Other differences:
--
++ saxon6.spec ++
--- /var/tmp/diff_new_pack.4Val20/_old  2017-05-31 13:31:25.098185477 +0200
+++ /var/tmp/diff_new_pack.4Val20/_new  2017-05-31 13:31:25.102184913 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package saxon6
 #
-# Copyright (c) 2014 SUSE LINUX Products 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
@@ -134,7 +134,6 @@
 Summary:Utility scripts for %{name}
 Group:  Productivity/Publishing/XML
 Requires:   %{name} = %{version}-%{release}
-Requires:   javapackages-tools
 Provides:   saxon-scripts
 
 %descriptionscripts





commit ant for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package ant for openSUSE:Factory checked in 
at 2017-05-31 13:31:05

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


Package is "ant"

Wed May 31 13:31:05 2017 rev:59 rq:496829 version:1.9.9

Changes:

--- /work/SRC/openSUSE:Factory/ant/ant-antlr.changes2017-02-28 
23:46:41.318139471 +0100
+++ /work/SRC/openSUSE:Factory/.ant.new/ant-antlr.changes   2017-05-31 
13:31:07.716635490 +0200
@@ -1,0 +2,20 @@
+Fri May 19 08:08:28 UTC 2017 - tchva...@suse.com
+
+- Disable javadoc completely it is on the web in much better form
+- Remove if0 conditions
+- Remove patch apache-ant-old-gcj-build.patch for sle11 and unused
+- Fix build with split javapackages-tools
+
+---
+Mon May  8 20:05:59 UTC 2017 - bwiedem...@suse.com
+
+- Version bump to 1.9.9:
+  * Read WHATSNEW file for full changelist
+
+---
+Mon May  8 07:43:51 UTC 2017 - bwiedem...@suse.de
+
+- Add reproducible.patch to allow reproducible builds of ant itself
+  and packages built with ant like jcodings
+
+---
ant-junit.changes: same change
ant.changes: same change

Old:

  apache-ant-1.9.6-src.tar.bz2
  apache-ant-1.9.6-src.tar.bz2.asc
  apache-ant-old-gcj-build.patch

New:

  apache-ant-1.9.9-src.tar.bz2
  apache-ant-1.9.9-src.tar.bz2.asc
  reproducible.patch



Other differences:
--
++ ant-antlr.spec ++
--- /var/tmp/diff_new_pack.BLdtgl/_old  2017-05-31 13:31:10.616226779 +0200
+++ /var/tmp/diff_new_pack.BLdtgl/_new  2017-05-31 13:31:10.620226216 +0200
@@ -23,20 +23,12 @@
 %bcond_with junit
 %bcond_without antlr
 
-# disable javadoc build on arm platform - it delays a build a lot
-# mvyskocil: ifarch does not work for noarch packages ...
-%if %{_arch} != arm
-%global build_javadoc 1
-%else
-%global build_javadoc 0
-%endif
-
 %global ant_home %{_datadir}/ant
 
 %global major_version 1.9
 
 Name:   ant-antlr
-Version:1.9.6
+Version:1.9.9
 Release:0
 Summary:Antlr Task for ant
 License:Apache-2.0
@@ -49,8 +41,8 @@
 Source1002: ant.keyring
 Patch0: apache-ant-no-test-jar.patch
 Patch1: apache-ant-class-path-in-manifest.patch
-#PATCH-FIX-SLE: fix building with old gcj by working around bugs
-Patch2: apache-ant-old-gcj-build.patch
+#PATCH-FIX-UPSTREAM -- https://bz.apache.org/bugzilla/show_bug.cgi?id=61079
+Patch3: reproducible.patch
 %if %{with bootstrap}
 BuildRequires:  java-1_5_0-gcj-compat-devel
 #!BuildIgnore:  java-1_6_0-openjdk java-1_6_0-openjdk-devel
@@ -60,6 +52,8 @@
 %endif
 BuildRequires:  antlr-bootstrap
 BuildRequires:  javapackages-tools
+# Needed for maven conversions
+BuildRequires:  javapackages-local
 BuildRequires:  unzip
 #BuildRequires:  xerces-j2-bootstrap
 #!BuildIgnore: xerces-j2-bootstrap
@@ -73,6 +67,9 @@
 BuildRequires:  xerces-j2
 BuildRequires:  xml-commons-apis
 %endif
+%if 0%{?suse_version} > 1320
+BuildRequires:  strip-nondeterminism
+%endif
 %if %{with bootstrap}
 Requires:   java-devel >= 1.5.0
 Requires:   javapackages-tools
@@ -90,6 +87,7 @@
 Requires:   antlr
 %requires_eqant
 Provides:   ant-antlr = %{version}-%{release}
+Obsoletes:  ant-javadoc
 %endif
 %if %{with junit}
 Requires:   junit4
@@ -104,41 +102,9 @@
 
 This package contains optional JUnit tasks for Apache Ant.
 %else
-# FIXME: this should be different for antlr
 %description
 Apache Ant is a Java-based build tool. In theory, it is kind of like
 Make, but without Make's wrinkles.
-
-Why another build tool when there is already make, gnumake, nmake, jam,
-and others? Because all those tools have limitations that Ant's
-original author could not live with when developing software across
-multiple platforms. Make-like tools are inherently shell-based--they
-evaluate a set of dependencies then execute commands, not unlike what
-you would issue in a shell. This means that you can easily extend these
-tools by using or writing any program for the OS that you are working
-on. However, this also means that you limit yourself to the OS, or at
-least the OS type, such as Unix, that you are working on.
-
-Makefiles are inherently evil as well. Anybody who has worked on them
-for any time has run into the dreaded tab problem. "Is my command not
-executing because I have a space in front of my tab???" said the
-original author of Ant way too many times. Tools like Jam took care of
-this to a great degree, but still have yet another format to use and
-remember.
-
-Ant is different. Instead of a model where it is e

commit xerces-j2 for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package xerces-j2 for openSUSE:Factory 
checked in at 2017-05-31 13:30:35

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


Package is "xerces-j2"

Wed May 31 13:30:35 2017 rev:38 rq:496817 version:2.11.0

Changes:

--- /work/SRC/openSUSE:Factory/xerces-j2/xerces-j2.changes  2016-02-17 
12:26:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.xerces-j2.new/xerces-j2.changes 2017-05-31 
13:30:35.329200637 +0200
@@ -1,0 +2,5 @@
+Fri May 19 16:31:01 UTC 2017 - tchva...@suse.com
+
+- BuildIgnore more main java versions to stick to gcj
+
+---



Other differences:
--
++ xerces-j2.spec ++
--- /var/tmp/diff_new_pack.MjhAtD/_old  2017-05-31 13:30:36.093092963 +0200
+++ /var/tmp/diff_new_pack.MjhAtD/_new  2017-05-31 13:30:36.097092400 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xerces-j2
 #
-# 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
@@ -37,6 +37,9 @@
 # some build requirements removed to enable jpackage bootstrap. this is
 # the first package built, and we use the libraries in the tools subdir
 # for it.
+#!BuildIgnore:  java-9-openjdk java-9-openjdk-devel
+#!BuildIgnore:  java-1_8_0-openjdk java-1_8_0-openjdk-devel
+#!BuildIgnore:  java-1_7_0-openjdk java-1_7_0-openjdk-devel
 #!BuildIgnore:  java-1_6_0-openjdk java-1_6_0-openjdk-devel
 #!BuildIgnore:  antlr antlr-java
 BuildRequires:  java-1_5_0-gcj-compat-devel
@@ -99,7 +102,6 @@
 Summary:Additional utility scripts for xerces-j2
 Group:  Development/Libraries/Java
 Requires:   %{name} = %{version}
-Requires:   javapackages-tools
 
 %descriptionscripts
 Welcome to the future! Xerces2 is the next generation of high
@@ -126,7 +128,6 @@
 %packagexml-resolver
 Summary:Resolver subproject of xml-commons
 Group:  Development/Libraries/Java
-Requires:   javapackages-tools
 Requires(post): update-alternatives
 Requires(pre):  update-alternatives
 Provides:   xml-commons-resolver
@@ -142,7 +143,6 @@
 %packagexml-apis
 Summary:APIs subproject of xml-commons
 Group:  Development/Libraries/Java
-Requires:   javapackages-tools
 Requires(post): update-alternatives
 Requires(pre):  update-alternatives
 Provides:   xml-commons-apis




commit jdom for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package jdom for openSUSE:Factory checked in 
at 2017-05-31 13:31:00

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


Package is "jdom"

Wed May 31 13:31:00 2017 rev:20 rq:496827 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/jdom/jdom.changes2015-04-02 
16:00:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.jdom.new/jdom.changes   2017-05-31 
13:31:02.177416269 +0200
@@ -1,0 +2,5 @@
+Fri May 19 16:55:11 UTC 2017 - tchva...@suse.com
+
+- Expand the buildignore lines for newer jdk
+
+---



Other differences:
--
++ jdom.spec ++
--- /var/tmp/diff_new_pack.Xsf7pt/_old  2017-05-31 13:31:03.601215578 +0200
+++ /var/tmp/diff_new_pack.Xsf7pt/_new  2017-05-31 13:31:03.601215578 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package jdom
 #
-# Copyright (c) 2015 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
@@ -61,6 +61,8 @@
 BuildRequires:  servletapi5
 #!BuildIgnore:  java-1_6_0-openjdk java-1_6_0-openjdk-devel
 #!BuildIgnore:  java-1_7_0-openjdk java-1_7_0-openjdk-devel
+#!BuildIgnore:  java-1_8_0-openjdk java-1_8_0-openjdk-devel
+#!BuildIgnore:  java-9-openjdk java-9-openjdk-devel
 BuildRequires:  unzip
 BuildRequires:  xalan-j2
 BuildRequires:  xerces-j2




commit xml-commons for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package xml-commons for openSUSE:Factory 
checked in at 2017-05-31 13:30:27

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


Package is "xml-commons"

Wed May 31 13:30:27 2017 rev:38 rq:496816 version:1.4.01

Changes:

--- /work/SRC/openSUSE:Factory/xml-commons/xml-commons-apis-bootstrap.changes   
2015-03-18 12:59:39.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.xml-commons.new/xml-commons-apis-bootstrap.changes  
2017-05-31 13:30:29.478025383 +0200
@@ -1,0 +2,6 @@
+Fri May 19 11:40:41 UTC 2017 - vsis...@suse.com
+
+- Add BuildRequires: javapackages-local (for maven conversions)
+- .spec file cleanup 
+
+---
--- /work/SRC/openSUSE:Factory/xml-commons/xml-commons.changes  2015-04-02 
15:59:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.xml-commons.new/xml-commons.changes 
2017-05-31 13:30:30.193924474 +0200
@@ -1,0 +2,6 @@
+Fri May 19 11:39:11 UTC 2017 - vsis...@suse.com
+
+- Add BuildRequires: javapackages-local (for maven conversions)
+- .spec file cleanup
+
+---



Other differences:
--
++ xml-commons-apis-bootstrap.spec ++
--- /var/tmp/diff_new_pack.Lpaeg1/_old  2017-05-31 13:30:32.453605964 +0200
+++ /var/tmp/diff_new_pack.Lpaeg1/_new  2017-05-31 13:30:32.457605400 +0200
@@ -2,7 +2,7 @@
 #
 # spec file for package xml-commons-apis-bootstrap
 #
-# Copyright (c) 2015 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,7 +22,6 @@
 %define   apis_jar %{real_name}-apis-bootstrap
 %define   which_jar %{real_name}-which-bootstrap
 %define   resolver_jar %{real_name}-resolver-bootstrap
-
 Name:   xml-commons-apis-bootstrap
 Version:1.4.01
 Release:0
@@ -37,14 +36,15 @@
 Patch1: %{real_name}-resolver-crosslink.patch
 Patch2: %{real_name}-resolver-1.1-build_xml.patch
 Patch3: %{real_name}-enum.patch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildArch:  noarch
-Provides:   xml-apis
 #!BuildIgnore:  antlr antlr-java
 BuildRequires:  antlr-bootstrap
-BuildRequires:  java-1_5_0-gcj-compat-devel
 #!BuildIgnore:  java-1_6_0-openjdk java-1_6_0-openjdk-devel
 BuildRequires:  fastjar
+BuildRequires:  java-1_5_0-gcj-compat-devel
+# Needed for maven conversions
+BuildRequires:  javapackages-local
+Provides:   xml-apis
+BuildArch:  noarch
 
 %description
 This is xml-apis from the java-bootrapping-tools package. DO NOT
@@ -68,7 +68,6 @@
 This is xml-resolver from the java-bootrapping-tools package. DO NOT
 INSTALL ... THIS IS JUST FOR PACKAGING & BOOTSTRAPPING JAVA PURPOSES!!
 
-
 %prep
 # To make patches unchanged
 %setup -q -T -c
@@ -133,7 +132,7 @@
 # uses $TARGET_DIR to move created jar to
 function mkJar() {
   find  -name "version.txt" -or -name "*.class" -or -name "*.properties" -or 
-name "*.rsc" -or -name "*manifest*" |\
-xargs /usr/bin/fastjar -m manifest.* -cf ${1}.jar ;
+xargs %{_bindir}/fastjar -m manifest.* -cf ${1}.jar ;
   mv ${1}.jar $TARGET_DIR
 }
 #<<<
@@ -183,16 +182,12 @@
 
 %install
 #>>> % install
-mkdir -p $RPM_BUILD_ROOT/%{_javadir}
-cp %{apis_jar}.jar $RPM_BUILD_ROOT/%{_javadir}
-cp %{which_jar}.jar $RPM_BUILD_ROOT/%{_javadir}
-cp %{resolver_jar}.jar $RPM_BUILD_ROOT/%{_javadir}
+mkdir -p %{buildroot}/%{_javadir}
+cp %{apis_jar}.jar %{buildroot}/%{_javadir}
+cp %{which_jar}.jar %{buildroot}/%{_javadir}
+cp %{resolver_jar}.jar %{buildroot}/%{_javadir}
 #<<< install end
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-#>>> files
-
 %files
 %defattr(-,root,root)
 %doc xml-commons-1_0_b2/LICENSE.txt

++ xml-commons.spec ++
--- /var/tmp/diff_new_pack.Lpaeg1/_old  2017-05-31 13:30:32.521596380 +0200
+++ /var/tmp/diff_new_pack.Lpaeg1/_new  2017-05-31 13:30:32.525595816 +0200
@@ -1,9 +1,8 @@
 #
 # spec file for package xml-commons
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2000-2008, JPackage Project
-# All rights reserved.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -21,23 +20,15 @@
 # FIXME: workaround for bnc#650905
 %define with_repolib 0
 %define without_repolib 1
-
 %define repo%{_javadir}/repository.jboss.com
 %define repodir %{repo}/apache-xml-commons/1.3.04-brew
 %define repodirlib %{repodir}/lib
 

commit slf4j for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package slf4j for openSUSE:Factory checked 
in at 2017-05-31 13:30:45

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


Package is "slf4j"

Wed May 31 13:30:45 2017 rev:12 rq:496822 version:1.7.12

Changes:

--- /work/SRC/openSUSE:Factory/slf4j/slf4j.changes  2015-11-12 
19:35:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.slf4j.new/slf4j.changes 2017-05-31 
13:30:49.107258564 +0200
@@ -1,0 +2,5 @@
+Fri May 19 16:49:25 UTC 2017 - tchva...@suse.com
+
+- Remove some not-needed deps
+
+---



Other differences:
--
++ slf4j.spec ++
--- /var/tmp/diff_new_pack.wByqio/_old  2017-05-31 13:30:50.071122703 +0200
+++ /var/tmp/diff_new_pack.wByqio/_new  2017-05-31 13:30:50.075122140 +0200
@@ -1,9 +1,8 @@
 #
 # spec file for package slf4j
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2000-2009, JPackage Project
-# All rights reserved.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -28,9 +27,6 @@
 Source0:http://www.slf4j.org/dist/%{name}-%{version}.tar.gz
 Source1:build.xml.tar.bz2
 Patch1: build-remove-slf4j_api-binder.patch
-
-Requires(post): javapackages-tools
-Requires(postun): javapackages-tools
 BuildRequires:  ant >= 1.6.5
 BuildRequires:  ant-junit >= 1.6.5
 BuildRequires:  apache-commons-lang
@@ -43,12 +39,11 @@
 BuildRequires:  log4j-mini
 Requires:   cal10n
 Requires:   java
-Requires:   javapackages-tools
 # this is ugly hack, which creates package wich requires the same,
 # however slf4j is not splitted between -api and -impl, but pom files are 
modeled as it was
 Provides:   osgi(slf4j.api)
-BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildArch:  noarch
 
 %description
 The Simple Logging Facade for Java or (SLF4J) is intended to serve
@@ -65,7 +60,6 @@
 %package javadoc
 Summary:Javadoc for %{name}
 Group:  Documentation/HTML
-Requires:   javapackages-tools
 
 %description javadoc
 API documentation for %{name}.
@@ -86,7 +80,7 @@
 sed -i -e "s|ant<|org.apache.ant<|g" integration/pom.xml
 
 %{_bindir}/find -name "*.css" -o -name "*.js" -o -name "*.txt" | \
-%{_bindir}/xargs -t %{__perl} -pi -e 's/\r$//g'
+%{_bindir}/xargs -t perl -pi -e 's/\r$//g'
 
 # The general pattern is that the API package exports API classes and does
 # # not require impl classes. slf4j was breaking that causing "A cycle was
@@ -112,40 +106,40 @@
 
 %install
 # jars
-install -d -m 0755 $RPM_BUILD_ROOT%{_javadir}/%{name}
+install -d -m 0755 %{buildroot}%{_javadir}/%{name}
 
 install -m 644 jcl-over-slf4j/target/jcl-over-slf4j-%{version}.jar \
-   $RPM_BUILD_ROOT%{_javadir}/%{name}/jcl-over-slf4j.jar
+   %{buildroot}%{_javadir}/%{name}/jcl-over-slf4j.jar
 install -m 644 jul-to-slf4j/target/jul-to-slf4j-%{version}.jar \
-   $RPM_BUILD_ROOT%{_javadir}/%{name}/jul-to-slf4j.jar
+   %{buildroot}%{_javadir}/%{name}/jul-to-slf4j.jar
 install -m 644 log4j-over-slf4j/target/log4j-over-slf4j-%{version}.jar \
-   $RPM_BUILD_ROOT%{_javadir}/%{name}/log4j-over-slf4j.jar
+   %{buildroot}%{_javadir}/%{name}/log4j-over-slf4j.jar
 install -m 644 slf4j-api/target/%{name}-api-%{version}.jar \
-   $RPM_BUILD_ROOT%{_javadir}/%{name}/api.jar
+   %{buildroot}%{_javadir}/%{name}/api.jar
 install -m 644 slf4j-ext/target/%{name}-ext-%{version}.jar \
-   $RPM_BUILD_ROOT%{_javadir}/%{name}/ext.jar
+   %{buildroot}%{_javadir}/%{name}/ext.jar
 install -m 644 slf4j-jcl/target/%{name}-jcl-%{version}.jar \
-   $RPM_BUILD_ROOT%{_javadir}/%{name}/jcl.jar
+   %{buildroot}%{_javadir}/%{name}/jcl.jar
 install -m 644 slf4j-jdk14/target/%{name}-jdk14-%{version}.jar \
-   $RPM_BUILD_ROOT%{_javadir}/%{name}/jdk14.jar
+   %{buildroot}%{_javadir}/%{name}/jdk14.jar
 install -m 644 slf4j-log4j12/target/%{name}-log4j12-%{version}.jar \
-   $RPM_BUILD_ROOT%{_javadir}/%{name}/log4j12.jar
+   %{buildroot}%{_javadir}/%{name}/log4j12.jar
 install -m 644 slf4j-migrator/target/%{name}-migrator-%{version}.jar \
-   $RPM_BUILD_ROOT%{_javadir}/%{name}/migrator.jar
+   %{buildroot}%{_javadir}/%{name}/migrator.jar
 install -m 644 slf4j-nop/target/%{name}-nop-%{version}.jar \
-   $RPM_BUILD_ROOT%{_javadir}/%{name}/nop.jar
+   %{buildroot}%{_javadir}/%{name}/nop.jar
 install -m 644 slf4j-simple/target/%{name}-simple-%{version}.jar \
-   $RPM_BUILD_ROOT%{_javadir}/%{name}/simple.jar
+   %{buildroot}%{_javadir}/%{name}/simple.jar
 
 # manual
-install -d -m 0755 $RPM_BUILD_R

commit xpp3 for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package xpp3 for openSUSE:Factory checked in 
at 2017-05-31 13:30:20

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


Package is "xpp3"

Wed May 31 13:30:20 2017 rev:17 rq:496813 version:1.1.4c

Changes:

--- /work/SRC/openSUSE:Factory/xpp3/xpp3.changes2014-12-06 
13:45:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.xpp3.new/xpp3.changes   2017-05-31 
13:30:21.459155672 +0200
@@ -1,0 +2,5 @@
+Fri May 19 16:26:28 UTC 2017 - tchva...@suse.com
+
+- Do not require javapackage-tools
+
+---



Other differences:
--
++ xpp3.spec ++
--- /var/tmp/diff_new_pack.6uZ8v1/_old  2017-05-31 13:30:22.998938634 +0200
+++ /var/tmp/diff_new_pack.6uZ8v1/_new  2017-05-31 13:30:23.002938070 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xpp3
 #
-# Copyright (c) 2014 SUSE LINUX Products 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
@@ -16,25 +16,22 @@
 #
 
 
-%define section free
-Summary:XML Pull Parser
-License:Apache-1.1
-Group:  Development/Libraries/Java
-
 Name:   xpp3
 Version:1.1.4c
 Release:0
+Summary:XML Pull Parser
+License:Apache-1.1
+Group:  Development/Libraries/Java
 Url:http://www.extreme.indiana.edu/xgws/xsoap/xpp/mxp1/index.html
 Source0:
http://www.extreme.indiana.edu/dist/java-repository/xpp3/distributions/xpp3-%{version}_src.tgz
-Requires:   java >= 1.4.2
-Requires:   javapackages-tools
 BuildRequires:  ant >= 1.6
 BuildRequires:  javapackages-tools
 BuildRequires:  junit
 BuildRequires:  perl
 BuildRequires:  xml-commons-apis
-BuildArch:  noarch
+Requires:   java >= 1.4.2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildArch:  noarch
 
 %description
 Xml Pull Parser 3rd Edition (XPP3) MXP1 is a new XmlPull parsing engine
@@ -75,17 +72,17 @@
 
 %install
 # jars
-mkdir -p $RPM_BUILD_ROOT%{_javadir}
+mkdir -p %{buildroot}%{_javadir}
 cp -p build/%{name}-%{version}.jar \
-  $RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar
+  %{buildroot}%{_javadir}/%{name}-%{version}.jar
 cp -p build/%{name}_min-%{version}.jar \
-  $RPM_BUILD_ROOT%{_javadir}/%{name}-minimal-%{version}.jar
+  %{buildroot}%{_javadir}/%{name}-minimal-%{version}.jar
 cp -p build/%{name}_xpath-%{version}.jar \
-  $RPM_BUILD_ROOT%{_javadir}/%{name}-xpath-%{version}.jar
-(cd $RPM_BUILD_ROOT%{_javadir} && for jar in *-%{version}.jar; do ln -sf 
${jar} `echo $jar| sed "s|-%{version}||g"`; done)
+  %{buildroot}%{_javadir}/%{name}-xpath-%{version}.jar
+(cd %{buildroot}%{_javadir} && for jar in *-%{version}.jar; do ln -sf ${jar} 
`echo $jar| sed "s|-%{version}||g"`; done)
 # javadoc
-mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name}
-cp -pr doc/api/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}
+mkdir -p %{buildroot}%{_javadocdir}/%{name}
+cp -pr doc/api/* %{buildroot}%{_javadocdir}/%{name}
 rm -rf doc/{build.txt,api}
 
 %files




commit fastjar for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package fastjar for openSUSE:Factory checked 
in at 2017-05-31 13:30:15

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


Package is "fastjar"

Wed May 31 13:30:15 2017 rev:20 rq:496810 version:0.98

Changes:

--- /work/SRC/openSUSE:Factory/fastjar/fastjar.changes  2015-04-21 
10:45:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.fastjar.new/fastjar.changes 2017-05-31 
13:30:16.315880634 +0200
@@ -1,0 +2,11 @@
+Fri May 19 14:14:56 UTC 2017 - tchva...@suse.com
+
+- Apply patches from debian to be up-par:
+  * fix-update-mode.diff
+  * jartool.diff
+- Remove patch fastjar-0.98-fix.patch
+  * Merged in jartool.diff
+- Remove patch fastjar-0.98-directory-traversal.patch
+  * Merged in jartool.diff
+
+---

Old:

  fastjar-0.98-directory-traversal.patch
  fastjar-0.98-fix.patch

New:

  fix-update-mode.diff
  jartool.diff



Other differences:
--
++ fastjar.spec ++
--- /var/tmp/diff_new_pack.UGfDW8/_old  2017-05-31 13:30:16.991785363 +0200
+++ /var/tmp/diff_new_pack.UGfDW8/_new  2017-05-31 13:30:16.995784799 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package fastjar
 #
-# Copyright (c) 2015 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
@@ -19,7 +19,7 @@
 Name:   fastjar
 Version:0.98
 Release:0
-Summary:The fastjar Java package archiver
+Summary:Java package archiver
 License:GPL-2.0+
 Group:  Development/Languages/Java
 Url:http://savannah.nongnu.org/projects/fastjar/
@@ -27,12 +27,11 @@
 # Current signing key has expired
 #Source1:
http://download.savannah.gnu.org/releases/%{name}/%{name}-%{version}.tar.gz.sig
 #Source2:
http://savannah.nongnu.org/project/memberlist-gpgkeys.php?group=%{name}&download=1#/%{name}.keyring
-Patch0: fastjar-0.98-fix.patch
-Patch1: fastjar-0.98-directory-traversal.patch
+Patch2: fix-update-mode.diff
+Patch3: jartool.diff
 BuildRequires:  zlib-devel
-Requires(preun): %{install_info_prereq}
 Requires(post):  %{install_info_prereq}
-Provides:   libgcj:%{_bindir}/fastjar
+Requires(preun): %{install_info_prereq}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -42,28 +41,27 @@
 
 %prep
 %setup -q
-%patch0
-%patch1 -p1 -b .directory-traversal
+%autopatch -p1
 
 %build
 %configure
 make %{?_smp_mflags}
 
 %install
-make DESTDIR=%{buildroot} install %{?_smp_mflags}
+%make_install
 
 %post
-%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
+%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info%{ext_info}
 
 %preun
-%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
+%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info%{ext_info}
 
 %files
 %defattr(-,root,root)
 %doc AUTHORS README NEWS ChangeLog
-%{_mandir}/man1/fastjar.1.gz
-%{_mandir}/man1/grepjar.1.gz
-%{_infodir}/fastjar.info.gz
+%{_mandir}/man1/fastjar.1%{ext_man}
+%{_mandir}/man1/grepjar.1%{ext_man}
+%{_infodir}/fastjar.info%{ext_info}
 %{_bindir}/fastjar
 %{_bindir}/grepjar
 

++ fix-update-mode.diff ++
Index: b/compress.c
===
--- a/compress.c
+++ b/compress.c
@@ -86,6 +86,10 @@ write_data (int fd, void *buf, size_t le
  exit(EXIT_FAILURE);
}
}
+  else if (!next && here + len >= end_of_entries)
+   {
+ end_of_entries = here + len;
+   }
 }
 
   return write (fd, buf, len);
Index: b/jartool.c
===
--- a/jartool.c
+++ b/jartool.c
@@ -1273,15 +1273,18 @@ int add_file_to_jar(int jfd, int ffd, co
 compress_file(ffd, jfd, ze, existing);
   } else {
 /* If we are not writing the last entry, make space for it. */
-if (existing && existing->next_entry)
+if (existing) 
   {
-   if (ze->usize > existing->usize)
+   if (existing->next_entry) 
  {
-   if (shift_down (jfd, existing->next_entry->offset,
-   ze->usize - existing->usize, existing->next_entry))
+   if (ze->usize > existing->usize) 
  {
-   fprintf (stderr, "%s: %s\n", progname, strerror (errno));
-   return 1;
+   if (shift_down (jfd, existing->next_entry->offset,
+   ze->usize - existing->usize, 
existing->next_entry)

commit antlr for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package antlr for openSUSE:Factory checked 
in at 2017-05-31 13:30:03

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


Package is "antlr"

Wed May 31 13:30:03 2017 rev:33 rq:496776 version:2.7.7

Changes:

--- /work/SRC/openSUSE:Factory/antlr/antlr.changes  2014-12-06 
13:45:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.antlr.new/antlr.changes 2017-05-31 
13:30:05.605390313 +0200
@@ -1,0 +2,5 @@
+Fri May 19 13:28:56 UTC 2017 - tchva...@suse.com
+
+- Reduce dependencies a bit
+
+---



Other differences:
--
++ antlr-bootstrap.spec ++
--- /var/tmp/diff_new_pack.NlbUeq/_old  2017-05-31 13:30:07.429133251 +0200
+++ /var/tmp/diff_new_pack.NlbUeq/_new  2017-05-31 13:30:07.437132123 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package antlr-bootstrap
 #
-# Copyright (c) 2014 SUSE LINUX Products 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

++ antlr.spec ++
--- /var/tmp/diff_new_pack.NlbUeq/_old  2017-05-31 13:30:07.481125922 +0200
+++ /var/tmp/diff_new_pack.NlbUeq/_new  2017-05-31 13:30:07.485125359 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package antlr
 #
-# Copyright (c) 2014 SUSE LINUX Products 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
@@ -35,12 +35,10 @@
 BuildRequires:  ant
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
-BuildRequires:  libstdc++-devel
-BuildRequires:  python-devel
-BuildRequires:  unzip
+BuildRequires:  javapackages-tools
+BuildRequires:  python
 BuildRequires:  xml-commons-apis
 Requires:   %{name}-java
-Requires:   javapackages-tools
 Provides:   %{name}-bootstrap = %{version}
 Obsoletes:  %{name}-bootstrap < %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -51,16 +49,11 @@
 compilers, and translators from grammatical descriptions containing C++
 or Java actions (you can use PCCTS 1.xx to generate C-based parsers).
 
-# To not introduce arch dependent java package, lets have this in separate 
subpackage
-
 %packagejava
 Summary:ANother Tool for Language Recognition (Manual)
 Group:  Development/Tools/Other
 Requires:   java >= 1.6.0
-Provides:   file:/%{_javadir}/%{name}.jar
-%if 0%{?suse_version} > 1200
 BuildArch:  noarch
-%endif
 
 %descriptionjava
 ANTLR, Another Tool for Language Recognition, (formerly PCCTS) is a
@@ -73,9 +66,7 @@
 %packagemanual
 Summary:ANother Tool for Language Recognition (Manual)
 Group:  Development/Tools/Other
-%if 0%{?suse_version} > 1200
 BuildArch:  noarch
-%endif
 
 %descriptionmanual
 ANTLR, Another Tool for Language Recognition, (formerly PCCTS) is a
@@ -88,9 +79,7 @@
 %packagejavadoc
 Summary:ANother Tool for Language Recognition (Java Documentation)
 Group:  Development/Tools/Other
-%if 0%{?suse_version} > 1200
 BuildArch:  noarch
-%endif
 
 %descriptionjavadoc
 ANTLR, Another Tool for Language Recognition, (formerly PCCTS) is a




commit jakarta-commons-net for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package jakarta-commons-net for 
openSUSE:Factory checked in at 2017-05-31 13:30:09

Comparing /work/SRC/openSUSE:Factory/jakarta-commons-net (Old)
 and  /work/SRC/openSUSE:Factory/.jakarta-commons-net.new (New)


Package is "jakarta-commons-net"

Wed May 31 13:30:09 2017 rev:21 rq:496778 version:1.4.1

Changes:

--- /work/SRC/openSUSE:Factory/jakarta-commons-net/jakarta-commons-net.changes  
2015-04-02 15:56:25.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.jakarta-commons-net.new/jakarta-commons-net.changes 
2017-05-31 13:30:12.360438167 +0200
@@ -1,0 +2,5 @@
+Fri May 19 13:56:33 UTC 2017 - tchva...@suse.com
+
+- Fix build with new javapackages-tools
+
+---



Other differences:
--
++ jakarta-commons-net.spec ++
--- /var/tmp/diff_new_pack.d41Iba/_old  2017-05-31 13:30:14.344158556 +0200
+++ /var/tmp/diff_new_pack.d41Iba/_new  2017-05-31 13:30:14.348157991 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package jakarta-commons-net
 #
-# Copyright (c) 2015 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
@@ -16,10 +16,6 @@
 #
 
 
-%define _without_maven 1
-%define with_maven %{!?_without_maven:1}%{?_without_maven:0}
-%define without_maven %{?_without_maven:1}%{!?_without_maven:0}
-%define without_tests 1
 %define base_name   net
 %define short_name  commons-%{base_name}
 Name:   jakarta-commons-net
@@ -44,32 +40,13 @@
 Patch3: commons-net-ftp-leap-year-parsing.patch
 BuildRequires:  ant >= 1.6
 BuildRequires:  java-devel
+BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 BuildRequires:  oro
 Requires:   oro >= 2.0.8
 Provides:   %{short_name} = %{version}-%{release}
 Obsoletes:  %{short_name} < %{version}-%{release}
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
-%if ! %{without_tests}
-BuildRequires:  ant-junit >= 1.6
-BuildRequires:  junit >= 3.8.1
-%endif
-%if %{with_maven}
-BuildRequires:  maven >= 1.1
-BuildRequires:  maven-plugin-changes
-BuildRequires:  maven-plugin-checkstyle
-BuildRequires:  maven-plugin-jcoverage
-BuildRequires:  maven-plugin-jdepend
-BuildRequires:  maven-plugin-jxr
-BuildRequires:  maven-plugin-license
-BuildRequires:  maven-plugin-tasklist
-BuildRequires:  maven-plugin-test
-BuildRequires:  maven-plugin-xdoc
-BuildRequires:  maven-plugins-base
-BuildRequires:  saxon9
-BuildRequires:  saxon9-scripts
-%endif
 
 %description
 This is an Internet protocol suite Java library originally developed by
@@ -89,21 +66,6 @@
 well as BSD R command support. The purpose of the library is to provide
 fundamental protocol access, not higher-level abstractions.
 
-%if %{with_maven}
-
-%package manual
-Summary:Jakarta Commons Net Package
-Group:  Development/Libraries/Java
-
-%description manual
-This is an Internet protocol suite Java library originally developed by
-ORO, Inc.  This version supports Finger, Whois, TFTP, Telnet, POP3,
-FTP, NNTP, SMTP, and some miscellaneous protocols like Time and Echo as
-well as BSD R command support. The purpose of the library is to provide
-fundamental protocol access, not higher-level abstractions.
-
-%endif
-
 %prep
 %setup -q -n %{short_name}-%{version}
 gzip -dc %{SOURCE5} | tar xf -
@@ -115,47 +77,13 @@
 find . -name "*.jar" -exec rm -f {} \;
 
 %build
-%if %{with_maven}
-export DEPCAT=$(pwd)/commons-net-1.4.1-depcat.new.xml
-echo '' > $DEPCAT
-echo '' >> $DEPCAT
-for p in $(find . -name project.xml); do
-pushd $(dirname $p)
-%{_bindir}/saxon9 project.xml %{SOURCE1} >> $DEPCAT
-popd
-done
-echo >> $DEPCAT
-echo '' >> $DEPCAT
-%{_bindir}/saxon9 $DEPCAT %{SOURCE2} > commons-net-1.4.1-depmap.new.xml
-for p in $(find . -name project.xml); do
-pushd $(dirname $p)
-cp project.xml project.xml.orig
-%{_bindir}/saxon9 -o project.xml project.xml.orig %{SOURCE3} map=%{SOURCE4}
-popd
-done
-export MAVEN_HOME_LOCAL=$(pwd)/.maven
-#-Dmaven.test.failure.ignore=true \
-maven -e \
--Dmaven.repo.remote=file:%{_datadir}/maven/repository \
--Dmaven.home.local=${MAVEN_HOME_LOCAL} \
-jar:jar javadoc:generate site
-%else
 mkdir -p target/lib
 ln -s %{_javadir}/oro.jar target/lib
 ln -s %{_javadir}/junit.jar target/lib
-%if %{without_tests}
 ant \
 -Dant.build.javac.source=1.5 -Dant.build.javac.target=1.5 \
 -Dnoget=true -Dfinal.name=commons-net-%{version} 
-Dj2se.api=%{_javadocdir}/java \
 jar javadoc
-%else
-export OPT_JAR_LIST="ant/ant-junit

commit wsdl4j for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package wsdl4j for openSUSE:Factory checked 
in at 2017-05-31 13:29:58

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


Package is "wsdl4j"

Wed May 31 13:29:58 2017 rev:21 rq:496741 version:1.6.3

Changes:

--- /work/SRC/openSUSE:Factory/wsdl4j/wsdl4j.changes2015-04-02 
15:59:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.wsdl4j.new/wsdl4j.changes   2017-05-31 
13:30:00.222149099 +0200
@@ -1,0 +2,5 @@
+Fri May 19 12:12:11 UTC 2017 - tchva...@suse.com
+
+- Fix building of axis with this new javapackages-tools
+
+---



Other differences:
--
++ wsdl4j.spec ++
--- /var/tmp/diff_new_pack.ueywHk/_old  2017-05-31 13:30:00.754074121 +0200
+++ /var/tmp/diff_new_pack.ueywHk/_new  2017-05-31 13:30:00.758073558 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package wsdl4j
 #
-# Copyright (c) 2015 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
@@ -27,14 +27,13 @@
 Source1:%{name}-MANIFEST.MF
 Source2:
http://repo1.maven.org/maven2/wsdl4j/wsdl4j/%{version}/wsdl4j-%{version}.pom
 BuildRequires:  ant-junit
+BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 BuildRequires:  unzip
 BuildRequires:  xml-commons-apis
 BuildRequires:  zip
 Requires:   java
 Requires:   jaxp_parser_impl
-Requires(post): javapackages-tools
-Requires(postun): javapackages-tools
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 





commit objectweb-asm for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package objectweb-asm for openSUSE:Factory 
checked in at 2017-05-31 13:29:47

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


Package is "objectweb-asm"

Wed May 31 13:29:47 2017 rev:17 rq:496735 version:3.3.1

Changes:

--- /work/SRC/openSUSE:Factory/objectweb-asm/objectweb-asm.changes  
2015-04-02 15:58:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.objectweb-asm.new/objectweb-asm.changes 
2017-05-31 13:29:48.807757990 +0200
@@ -1,0 +2,8 @@
+Fri May 19 12:01:04 UTC 2017 - dziolkow...@suse.com
+
+- New build dependency: javapackages-local
+- cleaned spec using spec-cleaner 
+- remove "section free" macro
+- get rid of %if 0 blocks
+
+---



Other differences:
--
++ objectweb-asm.spec ++
--- /var/tmp/diff_new_pack.TMd3kE/_old  2017-05-31 13:29:49.495661028 +0200
+++ /var/tmp/diff_new_pack.TMd3kE/_new  2017-05-31 13:29:49.499660464 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package objectweb-asm
 #
-# Copyright (c) 2015 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
@@ -16,8 +16,6 @@
 #
 
 
-%define section free
-
 Name:   objectweb-asm
 Version:3.3.1
 Release:0
@@ -36,17 +34,17 @@
 Source8:
http://repo1.maven.org/maven2/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom
 Source9:asm-MANIFEST.MF
 Patch0: objectweb-asm-no-classpath-in-manifest.patch
-# Needed by asm-xml.jar
-Requires:   xml-commons-apis
-PreReq: javapackages-tools
 BuildRequires:  ant >= 1.6.5
 BuildRequires:  java-1_5_0-gcj-compat-devel
+BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 BuildRequires:  objectweb-anttask
 BuildRequires:  xml-commons-apis
 BuildRequires:  zip
-BuildArch:  noarch
+# Needed by asm-xml.jar
+Requires:   xml-commons-apis
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildArch:  noarch
 
 %description
 ASM is a Java bytecode manipulation framework.
@@ -59,23 +57,6 @@
 ASM offers similar functionalities as BCEL or SERP, but is much
 smaller.
 
-%if 0
-%packagejavadoc
-Summary:Javadoc for %{name}
-Group:  Development/Libraries/Java
-
-%descriptionjavadoc
-ASM is a Java bytecode manipulation framework.
-
-It can be used to dynamically generate stub classes or other proxy
-classes, directly in binary form, or to dynamically modify classes at
-load time, i.e., just before they are loaded into the Java Virtual
-Machine.
-
-ASM offers similar functionalities as BCEL or SERP, but is much
-smaller.
-%endif
-
 %prep
 %setup -q -n asm-%{version}
 %patch0 -p1
@@ -125,12 +106,6 @@
 install -m 644 %{SOURCE8} 
%{buildroot}%{_mavenpomdir}/JPP.objectweb-asm-asm-parent.pom
 %add_maven_depmap  JPP.objectweb-asm-asm-all.pom %{name}/asm-all.jar
 
-%if 0
-# javadoc
-install -p -d -m 755 %{buildroot}%{_javadocdir}/%{name}
-cp -pr output/dist/doc/javadoc/user/* %{buildroot}%{_javadocdir}/%{name}
-%endif
-
 %files
 %defattr(0644,root,root,0755)
 %doc LICENSE.txt README.txt
@@ -139,10 +114,4 @@
 %{_mavenpomdir}/*
 %{_datadir}/maven-metadata/%{name}.xml*
 
-%if 0
-%files javadoc
-%defattr(0644,root,root,0755)
-%{_javadocdir}/%{name}
-%endif
-
 %changelog




commit saxon9 for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package saxon9 for openSUSE:Factory checked 
in at 2017-05-31 13:29:52

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


Package is "saxon9"

Wed May 31 13:29:52 2017 rev:14 rq:496738 version:9.4.0.7

Changes:

--- /work/SRC/openSUSE:Factory/saxon9/saxon9.changes2015-04-02 
15:58:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.saxon9.new/saxon9.changes   2017-05-31 
13:29:53.891041487 +0200
@@ -1,0 +2,5 @@
+Fri May 19 11:02:53 UTC 2017 - dziolkow...@suse.com
+
+- New build dependency: javapackages-local
+
+---



Other differences:
--
++ saxon9.spec ++
--- /var/tmp/diff_new_pack.f5UcVO/_old  2017-05-31 13:29:55.114868984 +0200
+++ /var/tmp/diff_new_pack.f5UcVO/_new  2017-05-31 13:29:55.114868984 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package saxon9
 #
-# Copyright (c) 2015 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
@@ -38,6 +38,8 @@
 BuildRequires:  bea-stax-api
 BuildRequires:  dom4j
 BuildRequires:  java-devel
+BuildRequires:  javapackages-local
+BuildRequires:  javapackages-tools
 BuildRequires:  jdom
 BuildRequires:  unzip
 BuildRequires:  xml-commons-apis
@@ -95,7 +97,6 @@
 Summary:Utility scripts for %{name}
 Group:  Productivity/Publishing/XML
 Requires:   %{name} = %{version}-%{release}
-Requires:   javapackages-tools
 Requires:   jaxp_parser_impl
 Requires:   xml-commons-apis
 






commit bouncycastle for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package bouncycastle for openSUSE:Factory 
checked in at 2017-05-31 13:29:19

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


Package is "bouncycastle"

Wed May 31 13:29:19 2017 rev:16 rq:496615 version:1.54

Changes:

--- /work/SRC/openSUSE:Factory/bouncycastle/bouncycastle.changes
2016-03-01 09:35:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.bouncycastle.new/bouncycastle.changes   
2017-05-31 13:29:19.699860819 +0200
@@ -1,0 +2,7 @@
+Fri May 19 10:17:53 UTC 2017 - pcervi...@suse.com
+
+- New build dependency: javapackages-local
+- Fixed requires
+- Spec file cleaned
+
+---



Other differences:
--
++ bouncycastle.spec ++
--- /var/tmp/diff_new_pack.b3YS0x/_old  2017-05-31 13:29:20.835700720 +0200
+++ /var/tmp/diff_new_pack.b3YS0x/_new  2017-05-31 13:29:20.839700156 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package bouncycastle
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -30,14 +30,13 @@
 Source0:
http://www.bouncycastle.org/download/bcprov-%{archivever}.tar.gz
 Source1:
http://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/%{ver}/bcprov-jdk15on-%{ver}.pom
 BuildRequires:  java-devel
+BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 BuildRequires:  junit
 #FIXME: this is needed for initialize of NSS crypto backend, will be required 
(not required(post) by openjdk)
 BuildRequires:  mozilla-nss
 BuildRequires:  unzip
 Requires:   java
-Requires(post): javapackages-tools
-Requires(postun): javapackages-tools
 Provides:   bcprov = %{version}-%{release}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch




commit rhino for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package rhino for openSUSE:Factory checked 
in at 2017-05-31 13:29:26

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


Package is "rhino"

Wed May 31 13:29:26 2017 rev:29 rq:496626 version:1.7R3

Changes:

--- /work/SRC/openSUSE:Factory/rhino/rhino.changes  2017-02-13 
07:47:44.382063587 +0100
+++ /work/SRC/openSUSE:Factory/.rhino.new/rhino.changes 2017-05-31 
13:29:26.730869783 +0200
@@ -1,0 +2,6 @@
+Fri May 19 11:19:44 UTC 2017 - dziolkow...@suse.com
+
+- New build dependency: javapackages-local
+- spec cleaned using spec-cleaner
+
+---



Other differences:
--
++ rhino.spec ++
--- /var/tmp/diff_new_pack.SsGewa/_old  2017-05-31 13:29:27.398775640 +0200
+++ /var/tmp/diff_new_pack.SsGewa/_new  2017-05-31 13:29:27.402775077 +0200
@@ -3,7 +3,6 @@
 #
 # Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2000-2009, JPackage Project
-# All rights reserved.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +19,6 @@
 
 %define section free
 %define cvs_version 1_7R3
-
 Name:   rhino
 Version:1.7R3
 Release:0
@@ -28,7 +26,6 @@
 License:MPL-1.1 or GPL-2.0+
 Group:  Development/Libraries/Java
 Url:http://www.mozilla.org/rhino/
-
 # wget ftp://ftp.mozilla.org/pub/mozilla.org/js/rhino%{cvs_version}.zip
 # unzip -q rhino%{cvs_version}.zip
 # find rhino%{cvs_version}/ -name '*jar' | xargs rm -rf
@@ -41,7 +38,6 @@
 Source6:rhino-js.pom
 Source7:rhino.pom
 Source8:rhino-component-info.xml
-
 Patch0: rhino-build.patch
 # Add OSGi metadata from Eclipse Orbit project
 # Rip out of MANIFEST.MF included in this JAR:
@@ -51,10 +47,10 @@
 Patch3: rhino-288467.patch
 #PATCH-FIX-OPENSUSE: allow build under gcj
 Patch100:   rhino-1.7-gcj.patch
-
 BuildRequires:  ant
 BuildRequires:  bea-stax-api
 BuildRequires:  java-1_5_0-gcj-compat-devel
+BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 BuildRequires:  jline
 #BuildRequires:  xerces-j2-bootstrap
@@ -65,13 +61,11 @@
 #!BuildIgnore:  xml-commons-jaxp-1.3-apis
 #!BuildIgnore:  java-1_6_0-openjdk java-1_6_0-openjdk-devel
 #!BuildIgnore:  java-1_7_0-openjdk java-1_7_0-openjdk-devel
-
 Requires:   bea-stax-api
 Requires:   jline
 Requires:   xmlbeans
-
-BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildArch:  noarch
 
 %description
 Rhino is an open-source implementation of JavaScript written entirely
@@ -102,11 +96,11 @@
 sed -i -e 's|^implementation.version: Rhino .* release .* 
\${implementation.date}|implementation.version: Rhino %{version} release 
%{release} \${implementation.date}|' build.properties
 
 %setup -q -n %{name}%{cvs_version}
-%patch0 -p0 -b .build
+%patch0  -b .build
 %patch1 -p1 -b .fixManifest
 %patch2 -p1 -b .crosslink
-%patch3 -p0 -b .sav3
-%patch100 -p0 -b .gjc
+%patch3  -b .sav3
+%patch100  -b .gjc
 
 %build
 export CLASSPATH=$(build-classpath jline)
@@ -149,9 +143,6 @@
 %add_maven_depmap JPP-%{name}.pom %{name}.jar
 %add_maven_depmap JPP-js.pom js.jar
 
-%clean
-%{__rm} -rf %{buildroot}
-
 %files
 %defattr(0644,root,root,0755)
 %doc LICENSE.txt




commit hsqldb for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package hsqldb for openSUSE:Factory checked 
in at 2017-05-31 13:29:42

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


Package is "hsqldb"

Wed May 31 13:29:42 2017 rev:21 rq:496719 version:2.3.3

Changes:

--- /work/SRC/openSUSE:Factory/hsqldb/hsqldb.changes2015-08-10 
09:11:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.hsqldb.new/hsqldb.changes   2017-05-31 
13:29:44.260398953 +0200
@@ -1,0 +2,5 @@
+Fri May 19 11:49:45 UTC 2017 - mplus...@suse.com
+
+- Update dependencies 
+
+---



Other differences:
--
++ hsqldb.spec ++
--- /var/tmp/diff_new_pack.fgXYxY/_old  2017-05-31 13:29:45.248259711 +0200
+++ /var/tmp/diff_new_pack.fgXYxY/_new  2017-05-31 13:29:45.252259147 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package hsqldb
 #
-# Copyright (c) 2015 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
@@ -41,6 +41,8 @@
 Patch1: %{name}-cmdline.patch
 BuildRequires:  ant
 BuildRequires:  fdupes
+# Needed for maven conversions
+BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 BuildRequires:  junit
 BuildRequires:  servletapi5





commit regexp for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package regexp for openSUSE:Factory checked 
in at 2017-05-31 13:29:31

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


Package is "regexp"

Wed May 31 13:29:31 2017 rev:20 rq:496627 version:1.5

Changes:

--- /work/SRC/openSUSE:Factory/regexp/regexp.changes2015-04-02 
15:58:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.regexp.new/regexp.changes   2017-05-31 
13:29:32.290086198 +0200
@@ -1,0 +2,6 @@
+Fri May 19 11:22:28 UTC 2017 - dziolkow...@suse.com
+
+- New build dependency: javapackages-local
+- spec cleaned using spec-cleaner
+
+---



Other differences:
--
++ regexp.spec ++
--- /var/tmp/diff_new_pack.hOZDtZ/_old  2017-05-31 13:29:33.437924408 +0200
+++ /var/tmp/diff_new_pack.hOZDtZ/_new  2017-05-31 13:29:33.437924408 +0200
@@ -1,9 +1,8 @@
 #
 # spec file for package regexp
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2000-2008, JPackage Project
-# All rights reserved.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,12 +15,10 @@
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
-# icecream 0
 
 
 %define full_name   jakarta-%{name}
 %define section free
-
 Name:   regexp
 Version:1.5
 Release:0
@@ -31,19 +28,16 @@
 Url:http://jakarta.apache.org/%{name}/
 Source0:
http://www.apache.org/dist/jakarta/regexp/jakarta-regexp-%{version}.tar.gz
 Source1:regexp-%{version}.pom
-BuildRequires:  javapackages-tools
-Requires(pre): javapackages-tools
-Requires(postun):  javapackages-tools
+BuildRequires:  ant
 BuildRequires:  ant >= 1.6
 BuildRequires:  java-1_5_0-gcj-compat-devel
+BuildRequires:  javapackages-local
+BuildRequires:  javapackages-tools
 BuildRequires:  xml-commons-apis-bootstrap
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 #!BuildIgnore:  xml-commons-apis xml-commons-resolver xml-commons xerces-j2
 #!BuildIgnore:  xml-commons-jaxp-1.3-apis
 BuildArch:  noarch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ant
-BuildRequires:  java-1_5_0-gcj-compat-devel
-BuildRequires:  xml-commons-apis-bootstrap
 
 %description
 Regexp is a 100% Pure Java Regular Expression package that was
@@ -66,13 +60,13 @@
 
 %install
 # jars
-install -d -m 755 $RPM_BUILD_ROOT%{_javadir}
-install -m 644 build/*.jar $RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar
-(cd $RPM_BUILD_ROOT%{_javadir} && for jar in *-%{version}*; do ln -sf ${jar} 
`echo $jar| sed  "s|-%{version}||g"`; done)
+install -d -m 755 %{buildroot}%{_javadir}
+install -m 644 build/*.jar %{buildroot}%{_javadir}/%{name}-%{version}.jar
+(cd %{buildroot}%{_javadir} && for jar in *-%{version}*; do ln -sf ${jar} 
`echo $jar| sed  "s|-%{version}||g"`; done)
 [ -d docs/api ] && rm -rf docs/api
 # pom
-%{__mkdir_p} %{buildroot}%{_mavenpomdir}
-%{__install} -p -m 0644 %{SOURCE1} %{buildroot}%{_mavenpomdir}/JPP-%{name}.pom
+mkdir -p %{buildroot}%{_mavenpomdir}
+install -p -m 0644 %{SOURCE1} %{buildroot}%{_mavenpomdir}/JPP-%{name}.pom
 %add_maven_depmap JPP-%{name}.pom %{name}.jar
 
 %files




commit mysql-connector-java for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package mysql-connector-java for 
openSUSE:Factory checked in at 2017-05-31 13:29:37

Comparing /work/SRC/openSUSE:Factory/mysql-connector-java (Old)
 and  /work/SRC/openSUSE:Factory/.mysql-connector-java.new (New)


Package is "mysql-connector-java"

Wed May 31 13:29:37 2017 rev:26 rq:496681 version:5.1.42

Changes:

--- 
/work/SRC/openSUSE:Factory/mysql-connector-java/mysql-connector-java.changes
2017-05-06 18:24:52.307693352 +0200
+++ 
/work/SRC/openSUSE:Factory/.mysql-connector-java.new/mysql-connector-java.changes
   2017-05-31 13:29:39.705041042 +0200
@@ -1,0 +2,39 @@
+Fri May 19 11:34:06 UTC 2017 - dziolkow...@suse.com
+
+- New build dependency: javapackages-local
+- cleaned spec using spec-cleaner
+
+---
+Thu May 18 12:40:03 UTC 2017 - tchva...@suse.com
+
+- Hardcode requirement for java 1.8 or newer to build
+
+---
+Thu May 18 11:55:03 UTC 2017 - tchva...@suse.com
+
+- Drop patch use-classpath-in-tests.patch
+- Add patch disabling testsuite:
+  * disable-testsuite.patch
+- Drop patch extra-libs-build.patch:
+  * Rather use the thing to propagate some wrongly found libs
+- Drop patch no-jdk5-requirement.patch:
+  * Simply override the value in ant command
+- Add patch hibernate-check.patch to remove hibernate check
+- Add patch compile-jdk7.patch to compile with old JDK versions
+
+---
+Thu May 18 10:42:07 UTC 2017 - tchva...@suse.com
+
+- Version update to 5.1.42 bsc#1035210 bsc#1035697 bsc#1035211:
+  * CVE-2017-3589 CVE-2017-3523 CVE-2017-3586 
+  * http://dev.mysql.com/doc/relnotes/connector-j/en/news-5-1.html
+- Remove upstreamed mysql-connector-java-5.1.35-CVE-2017-3523.patch
+- Refresh patch extra-libs-build.patch
+- Drop obsolete patch jdk6-check-use-jdk7.patch
+- Refresh patch no-jdk5-requirement.patch
+- Attempt to refresh mysql-connector-java-jdbc-4.1.patch
+  * Partialy merged by upstream, many conflicts
+- Add patch to relax compiler check:
+  * javac-check.patch
+
+---

Old:

  extra-libs-build.patch
  jdk6-check-use-jdk7.patch
  mysql-connector-java-5.1.35-CVE-2017-3523.patch
  mysql-connector-java-5.1.35-suse.tar.xz
  no-jdk5-requirement.patch
  use-classpath-in-tests.patch

New:

  compile-jdk7.patch
  disable-testsuite.patch
  hibernate-check.patch
  javac-check.patch
  mysql-connector-java-5.1.42-suse.tar.xz



Other differences:
--
++ mysql-connector-java.spec ++
--- /var/tmp/diff_new_pack.OCBqKb/_old  2017-05-31 13:29:40.404942389 +0200
+++ /var/tmp/diff_new_pack.OCBqKb/_new  2017-05-31 13:29:40.404942389 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mysql-connector-java
-Version:5.1.35
+Version:5.1.42
 Release:0
 Summary:Official JDBC Driver for MySQL
 License:GPL-2.0+
@@ -27,24 +27,17 @@
 # Script to repack upstream tarball
 # ./generate-tarball.sh VERSION
 Source99:   generate-tarball.sh
-# PATCH-FIX-UPSTREAM: do not strictly require jdk6 to compile
-Patch0: jdk6-check-use-jdk7.patch
-# PATCH-FIX-UPSTREAM: do not require hibernate4 to actually just build
-Patch1: extra-libs-build.patch
-# PATCH-FIX-SUSE: do not build jdbc3 driver needing too old java
-Patch2: no-jdk5-requirement.patch
-# PATCH-FIX-UPSTREAM: build with jdbc4.1 and also with new javac
-Patch3: mysql-connector-java-jdbc-4.1.patch
-# PATCH-FIX-UPSTREAM: do not lose classpath during tests build
-Patch4: use-classpath-in-tests.patch
-# PATCH_FIX-UPSTREAM: CVE-2017-3523 Oracle MySQL <=5.1.40 Connector/J 
-# Remote Code Execution Vulnerability
-Patch5: mysql-connector-java-5.1.35-CVE-2017-3523.patch
+Patch0: javac-check.patch
+Patch1: hibernate-check.patch
+Patch2: mysql-connector-java-jdbc-4.1.patch
+Patch3: disable-testsuite.patch
+Patch4: compile-jdk7.patch
 BuildRequires:  ant
 BuildRequires:  ant-contrib
 BuildRequires:  apache-commons-logging
 BuildRequires:  geronimo-jta-1_1-api
-BuildRequires:  java-devel >= 1.6.0
+BuildRequires:  java-devel >= 1.8.0
+BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 BuildRequires:  junit
 BuildRequires:  log4j-mini
@@ -77,13 +70,18 @@
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
-%patch5 -p1
 
 # dup
 rm -f README
 # wrong end of line encoding
 sed -i -e 's/.$//' README.txt
 
+# extra libs
+mkdir -p lib
+mkdir -p src/lib
+ln -f -s %{_datadir}/java/ant/ant-contrib.jar lib/ant-contrib.jar
+ln -f -s %{_datadir}/java/slf4j/api.jar lib/slf4j-api.jar
+
 %build
 # disabl

commit bsh2 for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package bsh2 for openSUSE:Factory checked in 
at 2017-05-31 13:28:14

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


Package is "bsh2"

Wed May 31 13:28:14 2017 rev:29 rq:496514 version:2.0.0.b6

Changes:

--- /work/SRC/openSUSE:Factory/bsh2/bsh2.changes2016-03-26 
15:08:01.0 +0100
+++ /work/SRC/openSUSE:Factory/.bsh2.new/bsh2.changes   2017-05-31 
13:28:15.652888324 +0200
@@ -1,0 +2,5 @@
+Fri May 19 08:45:20 UTC 2017 - mplus...@suse.com
+
+- Update package dependencies 
+
+---



Other differences:
--
++ bsh2.spec ++
--- /var/tmp/diff_new_pack.O5QOLr/_old  2017-05-31 13:28:16.472772761 +0200
+++ /var/tmp/diff_new_pack.O5QOLr/_new  2017-05-31 13:28:16.476772197 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package bsh2
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2000-2008, JPackage Project
 #
 # All modifications and additions to the file contributed by third parties
@@ -52,6 +52,8 @@
 BuildRequires:  java-devel >= 1.6.0
 BuildRequires:  javacc3
 BuildRequires:  javapackages-tools
+# Needed for maven conversions
+BuildRequires:  javapackages-local
 BuildRequires:  servletapi4
 Requires:   bsf
 Requires:   javapackages-tools




commit junit for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package junit for openSUSE:Factory checked 
in at 2017-05-31 13:28:59

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


Package is "junit"

Wed May 31 13:28:59 2017 rev:19 rq:496567 version:4.11

Changes:

--- /work/SRC/openSUSE:Factory/junit/junit.changes  2015-08-05 
19:13:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.junit.new/junit.changes 2017-05-31 
13:29:01.522422963 +0200
@@ -1,0 +2,5 @@
+Fri May 19 10:03:43 UTC 2017 - dziolkow...@suse.com
+
+- New build dependency: javapackages-local
+
+---



Other differences:
--
++ junit.spec ++
--- /var/tmp/diff_new_pack.PAsap1/_old  2017-05-31 13:29:02.170331639 +0200
+++ /var/tmp/diff_new_pack.PAsap1/_new  2017-05-31 13:29:02.174331075 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package junit
 #
-# Copyright (c) 2015 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
@@ -33,6 +33,7 @@
 BuildRequires:  ant
 BuildRequires:  hamcrest >= 1.3
 BuildRequires:  java-devel >= 1.6.0
+BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 BuildRequires:  perl(Digest::MD5)
 Requires:   hamcrest




commit apache-commons-logging for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package apache-commons-logging for 
openSUSE:Factory checked in at 2017-05-31 13:29:14

Comparing /work/SRC/openSUSE:Factory/apache-commons-logging (Old)
 and  /work/SRC/openSUSE:Factory/.apache-commons-logging.new (New)


Package is "apache-commons-logging"

Wed May 31 13:29:14 2017 rev:15 rq:496607 version:1.2

Changes:

--- 
/work/SRC/openSUSE:Factory/apache-commons-logging/apache-commons-logging.changes
2016-01-30 11:30:48.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.apache-commons-logging.new/apache-commons-logging.changes
   2017-05-31 13:29:15.844404253 +0200
@@ -1,0 +2,11 @@
+Fri May 19 11:03:15 UTC 2017 - tchva...@suse.com
+
+- Remove bootstrap conditional
+
+---
+Fri May 19 10:51:10 UTC 2017 - pcervi...@suse.com
+
+- New build dependency: javapackages-local 
+- Fixed requires
+
+---



Other differences:
--
++ apache-commons-logging.spec ++
--- /var/tmp/diff_new_pack.Z3YDO2/_old  2017-05-31 13:29:16.460317439 +0200
+++ /var/tmp/diff_new_pack.Z3YDO2/_new  2017-05-31 13:29:16.464316876 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package apache-commons-logging
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2000-2007, JPackage Project
 #
 # All modifications and additions to the file contributed by third parties
@@ -19,7 +19,6 @@
 
 %define base_name  logging
 %define short_name commons-%{base_name}
-%bcond_with java_bootstrap
 Name:   apache-%{short_name}
 Version:1.2
 Release:0
@@ -33,25 +32,20 @@
 Source3:
http://central.maven.org/maven2/commons-logging/commons-logging/%{version}/%{short_name}-%{version}.pom
 Patch0: commons-logging-1.1.3-src-junit.diff
 BuildRequires:  ant
+BuildRequires:  ant-junit
 BuildRequires:  apache-commons-parent
 BuildRequires:  java-devel >= 1.6.0
+BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 BuildRequires:  junit
 BuildRequires:  log4j-mini >= 1.2
 BuildRequires:  servletapi5
 Requires:   java >= 1.6.0
-Requires:   javapackages-tools
-Requires(post): javapackages-tools
-Requires(postun): javapackages-tools
 Provides:   jakarta-%{short_name} = %{version}-%{release}
 Obsoletes:  jakarta-%{short_name} < %{version}
 Provides:   %{short_name} = %{version}-%{release}
 Obsoletes:  %{short_name} < %{version}
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
-%if !%{with java_bootstrap}
-BuildRequires:  ant-junit
-%endif
 
 %description
 The commons-logging package provides a simple, component oriented





commit jline for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package jline for openSUSE:Factory checked 
in at 2017-05-31 13:28:54

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


Package is "jline"

Wed May 31 13:28:54 2017 rev:19 rq:496565 version:0.9.94

Changes:

--- /work/SRC/openSUSE:Factory/jline/jline.changes  2015-04-02 
15:57:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.jline.new/jline.changes 2017-05-31 
13:28:56.095187940 +0200
@@ -1,0 +2,5 @@
+Fri May 19 09:23:12 UTC 2017 - mplus...@suse.com
+
+- Update dependencies 
+
+---



Other differences:
--
++ jline.spec ++
--- /var/tmp/diff_new_pack.FAxodF/_old  2017-05-31 13:28:56.823085342 +0200
+++ /var/tmp/diff_new_pack.FAxodF/_new  2017-05-31 13:28:56.823085342 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package jline
 #
-# Copyright (c) 2015 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
@@ -21,10 +21,9 @@
 %define bcond_with()%{expand:%%{?_with_%{1}:%%global with_%{1} 1}}
 %define bcond_without() %{expand:%%{!?_without_%{1}:%%global with_%{1} 1}}
 %define _without_maven 1
-%bcond_without  maven
 %define section free
 %define repo_dir.m2/repository
-
+%bcond_without  maven
 Name:   jline
 Version:0.9.94
 Release:0
@@ -36,15 +35,22 @@
 Source1:CatalogManager.properties
 Source2:jline-build.xml
 Source3:jline-0.9.94.pom
+BuildRequires:  ant
+BuildRequires:  java-1_5_0-gcj-compat-devel
+# Needed for maven conversions
+BuildRequires:  javapackages-local
+BuildRequires:  javapackages-tools
+BuildRequires:  unzip
+BuildRequires:  xml-commons-resolver
 Requires:   /bin/sh
 Requires:   /bin/stty
-Requires(post): javapackages-tools
-Requires(postun): javapackages-tools
 #bnc#816314: for update_maven_depmap
 Requires(post): findutils
+Requires(post): javapackages-tools
 Requires(postun): findutils
-BuildRequires:  javapackages-tools
-BuildRequires:  xml-commons-resolver
+Requires(postun): javapackages-tools
+#!BuildIgnore:  antlr antlr-java
+BuildArch:  noarch
 %if %with maven
 BuildRequires:  maven-release
 BuildRequires:  maven-surefire-plugin
@@ -57,12 +63,6 @@
 BuildRequires:  maven2-plugin-resources
 BuildRequires:  maven2-plugin-site
 %endif
-BuildRequires:  ant
-BuildRequires:  java-1_5_0-gcj-compat-devel
-BuildRequires:  unzip
-#!BuildIgnore:  antlr antlr-java
-BuildArch:  noarch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 JLine is a java library for reading and editing user input in console
@@ -70,8 +70,6 @@
 masking, customizable keybindings, and pass-through handlers to use to
 chain to other console applications.
 
-
-
 %packagedemo
 Summary:Java library for reading and editing user input in console 
applications
 Group:  Development/Libraries/Java
@@ -82,9 +80,6 @@
 masking, customizable keybindings, and pass-through handlers to use to
 chain to other console applications.
 
-
-
-
 %prep
 # BEWARE: The jar file META-INF is not under the subdir
 %setup -q -c
@@ -120,9 +115,9 @@
 
 %install
 # jars
-install -d -m 755 $RPM_BUILD_ROOT%{_javadir}
-install -p -m 644 src/target/jline.jar 
$RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar
-(cd $RPM_BUILD_ROOT%{_javadir} && for jar in *-%{version}*; do ln -sf ${jar} 
${jar/-%{version}/}; done)
+install -d -m 755 %{buildroot}%{_javadir}
+install -p -m 644 src/target/jline.jar 
%{buildroot}%{_javadir}/%{name}-%{version}.jar
+(cd %{buildroot}%{_javadir} && for jar in *-%{version}*; do ln -sf ${jar} 
${jar/-%{version}/}; done)
 
 # pom
 install -pD -T -m 644 %{SOURCE3} %{buildroot}%{_mavenpomdir}/JPP-%{name}.pom





commit ant-contrib for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package ant-contrib for openSUSE:Factory 
checked in at 2017-05-31 13:28:43

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


Package is "ant-contrib"

Wed May 31 13:28:43 2017 rev:24 rq:496533 version:1.0b3

Changes:

--- /work/SRC/openSUSE:Factory/ant-contrib/ant-contrib.changes  2015-04-02 
15:51:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.ant-contrib.new/ant-contrib.changes 
2017-05-31 13:28:46.112595000 +0200
@@ -1,0 +2,5 @@
+Fri May 19 09:08:21 UTC 2017 - tchva...@suse.com
+
+- Fix build with new javapackages-tools
+
+---



Other differences:
--
++ ant-contrib.spec ++
--- /var/tmp/diff_new_pack.VC7mFx/_old  2017-05-31 13:28:46.880486765 +0200
+++ /var/tmp/diff_new_pack.VC7mFx/_new  2017-05-31 13:28:46.884486201 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ant-contrib
 #
-# Copyright (c) 2015 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
@@ -32,12 +32,13 @@
 Patch1: ant-contrib-antservertest.patch
 Patch2: ant-contrib-pom.patch
 Patch3: ant-contrib-1.0b3-enable-for-task.patch
-BuildRequires:  ant >= 1.7.1
+BuildRequires:  ant
 BuildRequires:  apache-ivy
 BuildRequires:  bcel >= 5.1
 BuildRequires:  commons-httpclient
 BuildRequires:  commons-logging
 BuildRequires:  java-devel
+BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 BuildRequires:  junit
 BuildRequires:  xerces-j2




commit dom4j for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package dom4j for openSUSE:Factory checked 
in at 2017-05-31 13:28:49

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


Package is "dom4j"

Wed May 31 13:28:49 2017 rev:18 rq:496535 version:1.6.1

Changes:

--- /work/SRC/openSUSE:Factory/dom4j/dom4j.changes  2015-04-02 
15:55:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.dom4j.new/dom4j.changes 2017-05-31 
13:28:49.288147402 +0200
@@ -1,0 +2,5 @@
+Fri May 19 09:03:12 UTC 2017 - mplus...@suse.com
+
+- Update dependencies
+ 
+---



Other differences:
--
++ dom4j.spec ++
--- /var/tmp/diff_new_pack.bV8j39/_old  2017-05-31 13:28:49.876064534 +0200
+++ /var/tmp/diff_new_pack.bV8j39/_new  2017-05-31 13:28:49.880063971 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package dom4j
 #
-# Copyright (c) 2015 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
@@ -41,6 +41,8 @@
 BuildRequires:  bea-stax
 BuildRequires:  isorelax
 BuildRequires:  java-devel >= 1.5.0
+# Needed for maven conversions
+BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 BuildRequires:  jaxen-bootstrap >= 1.1
 BuildRequires:  jtidy




commit jsch for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package jsch for openSUSE:Factory checked in 
at 2017-05-31 13:29:04

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


Package is "jsch"

Wed May 31 13:29:04 2017 rev:19 rq:496569 version:0.1.54

Changes:

--- /work/SRC/openSUSE:Factory/jsch/jsch.changes2017-02-16 
16:43:36.454270995 +0100
+++ /work/SRC/openSUSE:Factory/.jsch.new/jsch.changes   2017-05-31 
13:29:05.281893059 +0200
@@ -1,0 +2,5 @@
+Fri May 19 09:59:03 UTC 2017 - dziolkow...@suse.com
+
+- New build dependency: javapackages-local
+
+---



Other differences:
--
++ jsch.spec ++
--- /var/tmp/diff_new_pack.TiMOsj/_old  2017-05-31 13:29:05.917803426 +0200
+++ /var/tmp/diff_new_pack.TiMOsj/_new  2017-05-31 13:29:05.917803426 +0200
@@ -29,6 +29,7 @@
 Source3:
http://repo1.maven.org/maven2/com/jcraft/%{name}/%{version}/%{name}-%{version}.pom
 BuildRequires:  ant
 BuildRequires:  java-devel
+BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 BuildRequires:  jzlib
 BuildRequires:  unzip





commit apache-commons-lang for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package apache-commons-lang for 
openSUSE:Factory checked in at 2017-05-31 13:29:09

Comparing /work/SRC/openSUSE:Factory/apache-commons-lang (Old)
 and  /work/SRC/openSUSE:Factory/.apache-commons-lang.new (New)


Package is "apache-commons-lang"

Wed May 31 13:29:09 2017 rev:6 rq:496570 version:2.6

Changes:

--- /work/SRC/openSUSE:Factory/apache-commons-lang/apache-commons-lang.changes  
2015-04-02 15:53:01.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.apache-commons-lang.new/apache-commons-lang.changes 
2017-05-31 13:29:10.741123571 +0200
@@ -1,0 +2,5 @@
+Fri May 19 09:58:16 UTC 2017 - pcervi...@suse.com
+
+- New build dependency: javapackages-local
+
+---



Other differences:
--
++ apache-commons-lang.spec ++
--- /var/tmp/diff_new_pack.e4qYGi/_old  2017-05-31 13:29:11.241053105 +0200
+++ /var/tmp/diff_new_pack.e4qYGi/_new  2017-05-31 13:29:11.245052541 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package apache-commons-lang
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) 2000-2009, JPackage Project
 #
 # All modifications and additions to the file contributed by third parties
@@ -31,6 +31,7 @@
 BuildRequires:  ant
 BuildRequires:  ant-junit
 BuildRequires:  java-devel >= 1.6.0
+BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 BuildRequires:  junit
 Provides:   %{short_name} = %{version}-%{release}




commit axis for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package axis for openSUSE:Factory checked in 
at 2017-05-31 13:28:33

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


Package is "axis"

Wed May 31 13:28:33 2017 rev:26 rq:496517 version:1.4

Changes:

--- /work/SRC/openSUSE:Factory/axis/axis.changes2015-04-02 
15:54:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.axis.new/axis.changes   2017-05-31 
13:28:34.614215711 +0200
@@ -1,0 +2,12 @@
+Fri May 19 08:54:25 UTC 2017 - tchva...@suse.com
+
+- Fix build with new javapackages-tools
+
+---
+Wed May 17 10:38:22 UTC 2017 - tchva...@suse.com
+
+- Disable javadoc
+- Fix build with new ant 1.9.8+
+  * axis-ant-build.patch
+
+---

New:

  axis-ant-build.patch



Other differences:
--
++ axis.spec ++
--- /var/tmp/diff_new_pack.DLGcpE/_old  2017-05-31 13:28:35.978023480 +0200
+++ /var/tmp/diff_new_pack.DLGcpE/_new  2017-05-31 13:28:35.978023480 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package axis
 #
-# Copyright (c) 2015 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
@@ -44,6 +44,7 @@
 Patch0: unimplemented-dom3-methods.patch
 Patch1: axis-1.4-gcc44_build.patch
 Patch2: axis-manifest.patch
+Patch3: axis-ant-build.patch
 BuildRequires:  ant
 BuildRequires:  ant-jdepend
 BuildRequires:  antlr
@@ -54,6 +55,7 @@
 BuildRequires:  gnu-jaf
 BuildRequires:  jakarta-commons-discovery
 BuildRequires:  java-devel
+BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 BuildRequires:  junit
 BuildRequires:  log4j-mini
@@ -67,10 +69,10 @@
 Requires:   jakarta-commons-discovery
 Requires:   java
 Requires:   javamail
-Requires:   javapackages-tools
 Requires:   jaxp_parser_impl
 Requires:   log4j
 Requires:   wsdl4j
+Obsoletes:  %{name}-javadoc
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -78,14 +80,6 @@
 Apache Axis is an implementation of the SOAP ("Simple Object Access
 Protocol") submission to W3C.
 
-%package javadoc
-PreReq: coreutils
-Summary:Api documentation for axis
-Group:  Documentation/Other
-
-%description javadoc
-Api documentation for axis
-
 %package manual
 Summary:Manual for axis
 Group:  Documentation/Other
@@ -95,11 +89,11 @@
 
 %prep
 %setup -q -n %{name}-1_4
-ln -s %{_javadocdir}/%{name} docs/apiDocs
 
 %patch0 -p1
 %patch1 -p1 -b gcc44-build
 %patch2 -p0
+%patch3 -p1
 
 # Remove provided binaries
 find . -name "*.jar" -exec rm -f {} \;
@@ -113,7 +107,6 @@
 CLASSPATH=$(build-classpath wsdl4j commons-discovery commons-httpclient3 
commons-logging log4j activation javamail servletapi5)
 export CLASSPATH=$CLASSPATH:$(build-classpath oro junit jdepend jimi 
xml-security jsse httpunit jms castor 2>/dev/null)
 export OPT_JAR_LIST="ant/ant-nodeps"
-export LC_ALL="en_US.UTF-8" # necessary for javadoc
 ant -Dcompile.ime=true \
 -Dwsdl4j.jar=$(build-classpath wsdl4j) \
 -Dcommons-discovery.jar=$(build-classpath commons-discovery) \
@@ -130,7 +123,7 @@
 -Djsse.jar=$(build-classpath jsse/jsse 2>/dev/null) \
 -Dant.build.javac.source=1.4 \
 -Dant.build.javac.target=1.4 \
-clean compile javadocs
+clean compile
 
 %install
 ### Jar files
@@ -140,10 +133,6 @@
%{buildroot}%{_javadir}/%{name}
 popd
 
-### Javadoc
-install -d -m 755 %{buildroot}%{_javadocdir}/%{name}
-cp -pr build/javadocs/* %{buildroot}%{_javadocdir}/%{name}
-
 # POMs
 install -d -m 755 $RPM_BUILD_ROOT%{_mavenpomdir}
 install -m 644 %{S:4} $RPM_BUILD_ROOT%{_mavenpomdir}/JPP.%{name}-axis.pom
@@ -165,11 +154,6 @@
 %{_mavenpomdir}/*.pom
 %{_datadir}/maven-metadata/%{name}.xml
 
-%files javadoc
-%defattr(0644,root,root,0755)
-%dir %{_javadocdir}/%{name}
-%{_javadocdir}/%{name}/*
-
 %files manual
 %defattr(0644,root,root,0755)
 %doc docs/*

++ axis-ant-build.patch ++
Index: axis-1_4/build.xml
===
--- axis-1_4.orig/build.xml
+++ axis-1_4/build.xml
@@ -92,6 +92,9 @@ Copyright:
 
   
+
+  
+
 
 
-
+
   
   
   



commit apache-commons-codec for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package apache-commons-codec for 
openSUSE:Factory checked in at 2017-05-31 13:27:54

Comparing /work/SRC/openSUSE:Factory/apache-commons-codec (Old)
 and  /work/SRC/openSUSE:Factory/.apache-commons-codec.new (New)


Package is "apache-commons-codec"

Wed May 31 13:27:54 2017 rev:14 rq:496507 version:1.10

Changes:

--- 
/work/SRC/openSUSE:Factory/apache-commons-codec/apache-commons-codec.changes
2015-04-02 15:52:20.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.apache-commons-codec.new/apache-commons-codec.changes
   2017-05-31 13:27:57.867395195 +0200
@@ -1,0 +2,5 @@
+Fri May 19 08:43:40 UTC 2017 - tchva...@suse.com
+
+- Fix build with new javapackages-tools
+
+---



Other differences:
--
++ apache-commons-codec.spec ++
--- /var/tmp/diff_new_pack.nU7Ren/_old  2017-05-31 13:27:59.923105442 +0200
+++ /var/tmp/diff_new_pack.nU7Ren/_new  2017-05-31 13:27:59.927104879 +0200
@@ -1,9 +1,8 @@
 #
 # spec file for package apache-commons-codec
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2000-2010, JPackage Project
-# All rights reserved.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,56 +17,32 @@
 #
 
 
-# % bcond_without maven
-
 %define base_name  codec
 %define short_name commons-%{base_name}
-
 Name:   apache-commons-codec
 Version:1.10
 Release:0
 Summary:Apache Commons Codec Package
 License:Apache-2.0
 Group:  Development/Libraries/Java
-
 Url:http://commons.apache.org/codec/
 Source0:
http://www.apache.org/dist/commons/%{base_name}/source/%{short_name}-%{version}-src.tar.gz
 Source4:MANIFEST.MF
-
 # PATCH-FIX-OPENSUSE Avoid spurious timeout in BeiderMorse tests
 Patch0: timeout.patch
-
 BuildRequires:  ant >= 1.7
 BuildRequires:  ant-junit >= 1.7
+BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 # FIXME: mozilla-nss is necessary in order to use crypto, which is tested via 
junit tests
 #this should be a dependency of openjdk itself
 BuildRequires:  junit
 BuildRequires:  mozilla-nss
-
-%if %with maven
-BuildRequires:  apache-commons-parent >= 12
-BuildRequires:  maven-surefire-maven-plugin
-BuildRequires:  maven-surefire-provider-junit
-BuildRequires:  maven2 >= 2.0.8
-BuildRequires:  maven2-plugin-antrun
-BuildRequires:  maven2-plugin-assembly
-BuildRequires:  maven2-plugin-compiler
-BuildRequires:  maven2-plugin-idea
-BuildRequires:  maven2-plugin-install
-BuildRequires:  maven2-plugin-jar
-BuildRequires:  maven2-plugin-javadoc
-BuildRequires:  maven2-plugin-resources
-%endif
-Requires(post): javapackages-tools
-Requires(postun): javapackages-tools
-
 Requires:   java >= 1.6.0
 Provides:   jakarta-%{short_name} = %{version}
 Obsoletes:  jakarta-%{short_name} < %{version}
 Provides:   %{short_name} = %{version}
 Obsoletes:  %{short_name} < %{version}
-
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -142,11 +117,7 @@
 
 # javadoc
 mkdir -p %{buildroot}%{_javadocdir}/%{name}-%{version}
-%if %with maven
-cp -pr target/site/apidocs/* %{buildroot}%{_javadocdir}/%{name}-%{version}
-%else
 cp -pr dist/docs/api/* %{buildroot}%{_javadocdir}/%{name}-%{version}
-%endif
 ln -s %{name}-%{version} 
%{buildroot}%{_javadocdir}/jakarta-%{short_name}-%{version}
 ln -s %{name}-%{version} %{buildroot}%{_javadocdir}/jakarta-%{short_name}
 ln -s %{name}-%{version} %{buildroot}%{_javadocdir}/%{name}
@@ -156,7 +127,11 @@
 %doc LICENSE.txt RELEASE-NOTES.txt
 %{_javadir}/*.jar
 %{_mavenpomdir}/*
-%{_datadir}/maven-metadata/%{name}.xml*
+%if %{?suse_version} > 1320
+%{_datadir}/maven-metadata/%{name}.xml
+%else
+%config(noreplace) %{_mavendepmapfragdir}/%{name}
+%endif
 
 %files javadoc
 %defattr(0644,root,root,0755)




commit java-1_8_0-openjdk for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package java-1_8_0-openjdk for 
openSUSE:Factory checked in at 2017-05-31 13:27:42

Comparing /work/SRC/openSUSE:Factory/java-1_8_0-openjdk (Old)
 and  /work/SRC/openSUSE:Factory/.java-1_8_0-openjdk.new (New)


Package is "java-1_8_0-openjdk"

Wed May 31 13:27:42 2017 rev:47 rq:495794 version:1.8.0.131

Changes:

--- /work/SRC/openSUSE:Factory/java-1_8_0-openjdk/java-1_8_0-openjdk.changes
2017-03-03 17:34:22.307299089 +0100
+++ 
/work/SRC/openSUSE:Factory/.java-1_8_0-openjdk.new/java-1_8_0-openjdk.changes   
2017-05-31 13:27:44.321304515 +0200
@@ -1,0 +2,191 @@
+Wed May 17 10:52:18 UTC 2017 - fst...@suse.com
+
+- Upgrade to version jdk8u131 (icedtea 3.4.0) - bsc#1034849
+  * Security fixes
+- S8163520, CVE-2017-3509: Reuse cache entries
+- S8163528, CVE-2017-3511: Better library loading
+- S8165626, CVE-2017-3512: Improved window framing
+- S8167110, CVE-2017-3514: Windows peering issue
+- S8168699: Validate special case invocations
+- S8169011, CVE-2017-3526: Resizing XML parse trees
+- S8170222, CVE-2017-3533: Better transfers of files
+- S8171121, CVE-2017-3539: Enhancing jar checking
+- S8171533, CVE-2017-3544: Better email transfer
+- S8172299: Improve class processing
+  * New features
+- PR1969: Add AArch32 JIT port
+- PR3297: Allow Shenandoah to be used on AArch64
+- PR3340: jstack.stp should support AArch64
+  * Import of OpenJDK 8 u131 build 11
+- S6474807: (smartcardio) CardTerminal.connect() throws
+  CardException instead of CardNotPresentException
+- S6515172, PR3346: Runtime.availableProcessors() ignores Linux
+  taskset command
+- S7155957:
+  closed/java/awt/MenuBar/MenuBarStress1/MenuBarStress1.java
+  hangs on win 64 bit with jdk8
+- S7167293: FtpURLConnection connection leak on
+  FileNotFoundException
+- S8035568: [macosx] Cursor management unification
+- S8079595: Resizing dialog which is JWindow parent makes JVM
+  crash
+- S8130769: The new menu can't be shown on the menubar after
+  clicking the "Add" button.
+- S8146602:
+  jdk/test/sun/misc/URLClassPath/ClassnameCharTest.java test
+  fails with NullPointerException
+- S8147842: IME Composition Window is displayed at incorrect
+  location
+- S8147910, PR3346: Cache initial active_processor_count
+- S8150490: Update OS detection code to recognize Windows
+  Server 2016
+- S8160951: [TEST_BUG]
+  javax/xml/bind/marshal/8134111/UnmarshalTest.java should be
+  added into :needs_jre group
+- S8160958: [TEST_BUG]
+  java/net/SetFactoryPermission/SetFactoryPermission.java
+  should be added into :needs_compact2 group
+- S8161147: jvm crashes when -XX:+UseCountedLoopSafepoints is
+  enabled
+- S8161195: Regression:
+  closed/javax/swing/text/FlowView/LayoutTest.java
+- S8161993, PR3346: G1 crashes if active_processor_count
+  changes during startup
+- S8162876: [TEST_BUG]
+  sun/net/www/protocol/http/HttpInputStream.java fails
+  intermittently
+- S8162916: Test sun/security/krb5/auto/UnboundSSL.java fails
+- S8164533: sun/security/ssl/SSLSocketImpl/CloseSocket.java
+  failed with "Error while cleaning up threads after test"
+- S8167179: Make XSL generated namespace prefixes local to
+  transformation process
+- S8168774: Polymorhic signature method check crashes javac
+- S8169465: Deadlock in com.sun.jndi.ldap.pool.Connections
+- S8169589: [macosx] Activating a JDialog puts to back another
+  dialog
+- S8170307: Stack size option -Xss is ignored
+- S8170316: (tz) Support tzdata2016j
+- S8170814: Reuse cache entries (part II)
+- S8170888, PR3314, RH1284948: [linux] Experimental support for
+  cgroup memory limits in container (ie Docker) environments
+- S8171388: Update JNDI Thread contexts
+- S8171949: [macosx] AWT_ZoomFrame Automated tests fail with
+  error: The bitwise mask Frame.ICONIFIED is not setwhen the
+  frame is in ICONIFIED state
+- S8171952: [macosx]
+  AWT_Modality/Automated/ModalExclusion/NoExclusion/ModelessDialog
+  test fails as DummyButton on Dialog did not gain focus when
+ clicked.
+- S8173030: Temporary backout fix #8035568 from 8u131-b03
+- S8173031: Temporary backout fix #8171952 from 8u131-b03
+- S8173783, PR3328: IllegalArgumentException:
+  jdk.tls.namedGroups
+- S8173931: 8u131 L10n resource file update
+- S8174844: Incorrect GPL header causes RE script to miss swap
+  to commercial header for licensee source bundle
+- S8174985: NTLM authentication doesn't work with IIS if NTLM
+  cache is disabled
+- S8176044: (tz) Support tzdata2017a
+  * Backports
+- S6457406, PR33

commit python-pandas for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package python-pandas for openSUSE:Factory 
checked in at 2017-05-31 12:22:08

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


Package is "python-pandas"

Wed May 31 12:22:08 2017 rev:4 rq:499830 version:0.20.1

Changes:

--- /work/SRC/openSUSE:Factory/python-pandas/python-pandas-doc.changes  
2017-05-08 19:04:58.607507945 +0200
+++ /work/SRC/openSUSE:Factory/.python-pandas.new/python-pandas-doc.changes 
2017-05-31 12:22:31.452836771 +0200
@@ -1,0 +2,31 @@
+Tue May 30 17:08:33 UTC 2017 - toddrme2...@gmail.com
+
+- Fix documentation BuildRequires.
+
+---
+Thu May 18 01:07:08 UTC 2017 - toddrme2...@gmail.com
+
+- Update to version 0.20.1
+  Highlights include:
+  * New ``.agg()`` API for Series/DataFrame similar to the
+groupby-rolling-resample API's
+  * Integration with the ``feather-format``, including a new
+top-level ``pd.read_feather()`` and ``DataFrame.to_feather()``
+method
+  * The ``.ix`` indexer has been deprecated
+  * ``Panel`` has been deprecated
+  * Addition of an ``IntervalIndex`` and ``Interval`` scalar type
+  * Improved user API when grouping by index levels in ``.groupby()``
+  * Improved support for ``UInt64`` dtypes
+  * A new orient for JSON serialization, ``orient='table'``, that
+uses the Table Schema spec and that gives the possibility for
+a more interactive repr in the Jupyter Notebook
+  * Experimental support for exporting styled DataFrames
+(``DataFrame.style``) to Excel
+  * Window binary corr/cov operations now return a MultiIndexed
+``DataFrame`` rather than a ``Panel``, as ``Panel`` is now
+deprecated
+  * Support for S3 handling now uses ``s3fs``
+  * Google BigQuery support now uses the ``pandas-gbq`` library
+
+---
--- /work/SRC/openSUSE:Factory/python-pandas/python-pandas.changes  
2017-05-08 19:04:58.639503425 +0200
+++ /work/SRC/openSUSE:Factory/.python-pandas.new/python-pandas.changes 
2017-05-31 12:22:31.980762245 +0200
@@ -1,0 +2,26 @@
+Thu May 18 01:07:08 UTC 2017 - toddrme2...@gmail.com
+
+- Update to version 0.20.1
+  Highlights include:
+  * New ``.agg()`` API for Series/DataFrame similar to the
+groupby-rolling-resample API's
+  * Integration with the ``feather-format``, including a new
+top-level ``pd.read_feather()`` and ``DataFrame.to_feather()``
+method
+  * The ``.ix`` indexer has been deprecated
+  * ``Panel`` has been deprecated
+  * Addition of an ``IntervalIndex`` and ``Interval`` scalar type
+  * Improved user API when grouping by index levels in ``.groupby()``
+  * Improved support for ``UInt64`` dtypes
+  * A new orient for JSON serialization, ``orient='table'``, that
+uses the Table Schema spec and that gives the possibility for
+a more interactive repr in the Jupyter Notebook
+  * Experimental support for exporting styled DataFrames
+(``DataFrame.style``) to Excel
+  * Window binary corr/cov operations now return a MultiIndexed
+``DataFrame`` rather than a ``Panel``, as ``Panel`` is now
+deprecated
+  * Support for S3 handling now uses ``s3fs``
+  * Google BigQuery support now uses the ``pandas-gbq`` library
+
+---

Old:

  pandas-0.19.2.tar.gz

New:

  pandas-0.20.1.tar.gz



Other differences:
--
++ python-pandas-doc.spec ++
--- /var/tmp/diff_new_pack.usqBqL/_old  2017-05-31 12:22:32.872636341 +0200
+++ /var/tmp/diff_new_pack.usqBqL/_new  2017-05-31 12:22:32.876635777 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-pandas-doc
-Version:0.19.2
+Version:0.20.1
 Release:0
 Summary:Documentation for python-pandas
 License:BSD-3-Clause
@@ -31,11 +31,12 @@
 BuildRequires:  python3-devel
 BuildRequires:  python3-setuptools
 BuildRequires:  python3-Sphinx
-BuildRequires:  python3-dateutil >= 1.5
+BuildRequires:  python3-python-dateutil >= 1.5
 BuildRequires:  python3-jupyter_client
 BuildRequires:  python3-jupyter_ipykernel
 BuildRequires:  python3-jupyter_nbconvert
 BuildRequires:  python3-jupyter_nbformat
+BuildRequires:  python3-jupyter_nbsphinx
 BuildRequires:  python3-matplotlib
 BuildRequires:  python3-numpy-devel >= 1.7.1
 BuildRequires:  python3-pytz

++ python-pandas.spec ++
--- /var/tmp/diff_new_pack.usqBqL/_old  2017-05-31 12:22:32.896632953 +0200
+++ /var/tmp/diff_new_pack.usqBqL/_new  2017-05-31 12:22:32.900632389 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() pytho

commit legion for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package legion for openSUSE:Factory checked 
in at 2017-05-31 12:22:23

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


Package is "legion"

Wed May 31 12:22:23 2017 rev:3 rq:499845 version:17.05.0

Changes:

--- /work/SRC/openSUSE:Factory/legion/legion.changes2017-02-26 
17:09:40.352105541 +0100
+++ /work/SRC/openSUSE:Factory/.legion.new/legion.changes   2017-05-31 
12:22:36.688097721 +0200
@@ -1,0 +2,6 @@
+Fri May 26 21:53:42 UTC 2017 - jungh...@votca.org
+
+- Version bump to 17.05.0: no changelog available
+  * see 
https://github.com/StanfordLegion/legion/compare/legion-17.02.0...legion-17.05.0
+
+---

Old:

  legion-17.02.0.tar.gz

New:

  legion-17.05.0.tar.gz



Other differences:
--
++ legion.spec ++
--- /var/tmp/diff_new_pack.AodXFy/_old  2017-05-31 12:22:37.443991013 +0200
+++ /var/tmp/diff_new_pack.AodXFy/_new  2017-05-31 12:22:37.447990448 +0200
@@ -16,7 +16,7 @@
 #
 
 Name:   legion
-Version:17.02.0
+Version:17.05.0
 Release:0
 Summary:A data-centric parallel programming system
 License:Apache-2.0
@@ -80,12 +80,21 @@
 %setup -q -n %{name}-%{name}-%{version}
 
 %build
-%{cmake} -DLegion_USE_HWLOC=ON -DLegion_USE_GASNet=ON 
-DLegion_BUILD_EXAMPLES=ON
+%{cmake} -DLegion_USE_HWLOC=ON \
+ -DLegion_USE_GASNet=ON \
+ -DLegion_BUILD_EXAMPLES=ON \
+ -DLegion_BUILD_TESTS=ON \
+ -DLegion_ENABLE_TESTING=ON \
+ -DGASNet_CONDUIT=mpi \
+ -DLegion_BUILD_TUTORIAL=ON
 make %{?_smp_mflags}
 
 %install
 make -C build install DESTDIR=%{buildroot} 
 
+%check
+LD_LIBRARY_PATH='%{buildroot}/%{_libdir}:%{_libdir}/mpi/gcc/openmpi/%{_lib}' 
make -C build %{?_smp_mflags} test ARGS='-V'
+
 %post -n liblegion1 -p /sbin/ldconfig
 %postun -n liblegion1 -p /sbin/ldconfig
 

++ legion-17.02.0.tar.gz -> legion-17.05.0.tar.gz ++
 59830 lines of diff (skipped)




commit tmux for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package tmux for openSUSE:Factory checked in 
at 2017-05-31 12:22:35

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


Package is "tmux"

Wed May 31 12:22:35 2017 rev:36 rq:499869 version:2.5

Changes:

--- /work/SRC/openSUSE:Factory/tmux/tmux.changes2017-05-04 
15:05:21.230401449 +0200
+++ /work/SRC/openSUSE:Factory/.tmux.new/tmux.changes   2017-05-31 
12:22:38.503841396 +0200
@@ -1,0 +2,8 @@
+Tue May 30 22:26:00 UTC 2017 - mimi...@gmail.com
+
+- update to 2.5
+- dropped tmux_issue889.patch
+- refresh tmux-socket-path.patch
+* new stable release
+
+---

Old:

  tmux-2.4.tar.gz
  tmux_issue889.patch

New:

  tmux-2.5.tar.gz



Other differences:
--
++ tmux.spec ++
--- /var/tmp/diff_new_pack.JLSEMp/_old  2017-05-31 12:22:39.067761788 +0200
+++ /var/tmp/diff_new_pack.JLSEMp/_new  2017-05-31 12:22:39.071761224 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   tmux
-Version:2.4
+Version:2.5
 Release:0
 Summary:Terminal multiplexer
 License:ISC and BSD-3-Clause and BSD-2-Clause
@@ -26,8 +26,6 @@
 Source0:
https://github.com/%{name}/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
 # PATCH-FIX-OPENSUSE crrodrig...@opensuse.org -- Use /run/tmux instead of /tmp 
as the default socket path, this add some robustness against accidental 
deletion via systemd-tmpfiles-clean, tmpwatch, or similar
 Patch0: tmux-socket-path.patch
-# PATCH-FIX-UPSTREAM tmux_issue889.patch -- mimi...@gmail.com -- fix 
boo#1037468
-Patch1: tmux_issue889.patch
 BuildRequires:  automake
 BuildRequires:  pkgconfig
 BuildRequires:  utempter-devel
@@ -56,7 +54,6 @@
 %prep
 %setup -q
 %patch0 -p1
-%patch1 -p1
 
 %build
 autoreconf -fi

++ tmux-2.4.tar.gz -> tmux-2.5.tar.gz ++
 7258 lines of diff (skipped)

++ tmux-socket-path.patch ++
--- /var/tmp/diff_new_pack.JLSEMp/_old  2017-05-31 12:22:39.287730736 +0200
+++ /var/tmp/diff_new_pack.JLSEMp/_new  2017-05-31 12:22:39.287730736 +0200
@@ -1,10 +1,10 @@
-Index: tmux-2.4/tmux.c
+Index: tmux-2.5/tmux.c
 ===
 tmux-2.4.orig/tmux.c
-+++ tmux-2.4/tmux.c
-@@ -120,7 +120,7 @@ make_label(const char *label)
+--- tmux-2.5.orig/tmux.c
 tmux-2.5/tmux.c
+@@ -119,7 +119,7 @@ make_label(const char *label)
if ((s = getenv("TMUX_TMPDIR")) != NULL && *s != '\0')
-   xasprintf(&base, "%s/tmux-%u", s, uid);
+   xasprintf(&base, "%s/tmux-%ld", s, (long)uid);
else
 -  xasprintf(&base, "%s/tmux-%ld", _PATH_TMP, (long)uid);
 +  xasprintf(&base, "/run/tmux/%ld", (long)uid);




commit python-aedir for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package python-aedir for openSUSE:Factory 
checked in at 2017-05-31 12:21:25

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


Package is "python-aedir"

Wed May 31 12:21:25 2017 rev:5 rq:499773 version:0.0.26

Changes:

--- /work/SRC/openSUSE:Factory/python-aedir/python-aedir.changes
2017-02-19 01:04:29.370439039 +0100
+++ /work/SRC/openSUSE:Factory/.python-aedir.new/python-aedir.changes   
2017-05-31 12:21:27.229902944 +0200
@@ -1,0 +2,5 @@
+Tue May 30 13:33:23 UTC 2017 - mich...@stroeder.com
+
+- update to 0.0.26
+
+---

Old:

  aedir-0.0.23.tar.gz
  aedir-0.0.23.tar.gz.asc

New:

  aedir-0.0.26.tar.gz
  aedir-0.0.26.tar.gz.asc



Other differences:
--
++ python-aedir.spec ++
--- /var/tmp/diff_new_pack.YOPxsz/_old  2017-05-31 12:21:28.309750506 +0200
+++ /var/tmp/diff_new_pack.YOPxsz/_new  2017-05-31 12:21:28.313749941 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-aedir
-Version:0.0.23
+Version:0.0.26
 Release:0
 Summary:Python module for AE-DIR
 License:Apache-2.0

++ aedir-0.0.23.tar.gz -> aedir-0.0.26.tar.gz ++
 2628 lines of diff (skipped)




commit storeBackup for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package storeBackup for openSUSE:Factory 
checked in at 2017-05-31 12:21:38

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


Package is "storeBackup"

Wed May 31 12:21:38 2017 rev:28 rq:499824 version:3.5

Changes:

--- /work/SRC/openSUSE:Factory/storeBackup/storeBackup.changes  2017-01-09 
10:59:12.210266063 +0100
+++ /work/SRC/openSUSE:Factory/.storeBackup.new/storeBackup.changes 
2017-05-31 12:21:40.172075940 +0200
@@ -1,0 +2,6 @@
+Mon May 29 09:53:45 UTC 2017 - wagner-tho...@gmx.at
+
+- don't process vim's *.swp and *.udf files (in addition to *~) 
+  from /etc/storebackup.d/
+
+---



Other differences:
--
++ storeBackup-3.5.diff ++
--- /var/tmp/diff_new_pack.U8bEFa/_old  2017-05-31 12:21:40.835982218 +0200
+++ /var/tmp/diff_new_pack.U8bEFa/_new  2017-05-31 12:21:40.839981654 +0200
@@ -7,7 +7,7 @@
  [ -x /usr/bin/storeBackup ] || exit 0
  
 -configs=`run-parts --list /etc/storebackup.d/`
-+configs=`find /etc/storebackup.d/ -type f \( ! -iname "*~" \)`
++configs=$(find /etc/storebackup.d/ -type f \( ! -iname "*~" ! -iname "*.swp" 
! -iname "*.udf" \))
  delayed_error=''
  
  if [ "$configs" ]; then




commit platformsh-cli for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package platformsh-cli for openSUSE:Factory 
checked in at 2017-05-31 12:21:32

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


Package is "platformsh-cli"

Wed May 31 12:21:32 2017 rev:13 rq:499785 version:3.17.0

Changes:

--- /work/SRC/openSUSE:Factory/platformsh-cli/platformsh-cli.changes
2017-05-22 10:48:58.936239266 +0200
+++ /work/SRC/openSUSE:Factory/.platformsh-cli.new/platformsh-cli.changes   
2017-05-31 12:21:37.640433323 +0200
@@ -1,0 +2,10 @@
+Tue May 30 14:14:44 UTC 2017 - ji...@boombatower.com
+
+- Update to version 3.17.0:
+  * Update console-form dependency
+  * Docs search now needs rawurlencode()
+  * Improve default Drush aliases on cloning (#603)
+  * Add environment:init command
+  * Release v3.17.0
+
+---

Old:

  platformsh-cli-3.16.2.tar.xz

New:

  platformsh-cli-3.17.0.tar.xz



Other differences:
--
++ platformsh-cli.spec ++
--- /var/tmp/diff_new_pack.Wjr5j8/_old  2017-05-31 12:21:38.312338473 +0200
+++ /var/tmp/diff_new_pack.Wjr5j8/_new  2017-05-31 12:21:38.312338473 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   platformsh-cli
-Version:3.16.2
+Version:3.17.0
 Release:0
 Summary:Tool for managing Platform.sh services from the command line
 # See licenses.txt for dependency licenses.

++ _service ++
--- /var/tmp/diff_new_pack.Wjr5j8/_old  2017-05-31 12:21:38.34892 +0200
+++ /var/tmp/diff_new_pack.Wjr5j8/_new  2017-05-31 12:21:38.34892 +0200
@@ -2,7 +2,7 @@
   
 @PARENT_TAG@
 v(.*)
-refs/tags/v3.16.2
+refs/tags/v3.17.0
 git://github.com/platformsh/platformsh-cli.git
 git
 enable

++ _servicedata ++
--- /var/tmp/diff_new_pack.Wjr5j8/_old  2017-05-31 12:21:38.372330004 +0200
+++ /var/tmp/diff_new_pack.Wjr5j8/_new  2017-05-31 12:21:38.372330004 +0200
@@ -1,6 +1,6 @@
 
   
 git://github.com/platformsh/platformsh-cli.git
-74265f2f14e1f2355371c9ad2c9117d01c28fe24
+d208570716b87cf061e296d346c0dd342aa3c1ba
   
 

++ licenses.txt ++
--- /var/tmp/diff_new_pack.Wjr5j8/_old  2017-05-31 12:21:38.416323793 +0200
+++ /var/tmp/diff_new_pack.Wjr5j8/_new  2017-05-31 12:21:38.420323229 +0200
@@ -15,8 +15,8 @@
 guzzlehttp/streams  3.0.0MIT   
 padraic/humbug_get_contents 1.0.4BSD-3-Clause  
 padraic/phar-updater1.0.3BSD-3-Clause  
-platformsh/client   v0.10.2  MIT   
-platformsh/console-form v0.0.8   MIT   
+platformsh/client   v0.10.3  MIT   
+platformsh/console-form v0.0.10  MIT   
 psr/log 1.0.2MIT   
 react/promise   v2.5.1   MIT   
 stecman/symfony-console-completion  0.7.0MIT   

++ platformsh-cli-3.16.2.tar.xz -> platformsh-cli-3.17.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/platformsh-cli-3.16.2/composer.json 
new/platformsh-cli-3.17.0/composer.json
--- old/platformsh-cli-3.16.2/composer.json 2017-05-19 23:57:49.0 
+0200
+++ new/platformsh-cli-3.17.0/composer.json 2017-05-30 14:25:44.0 
+0200
@@ -7,7 +7,7 @@
 "doctrine/cache": "~1.5",
 "guzzlehttp/guzzle": "^5.3",
 "guzzlehttp/ringphp": "^1.1",
-"platformsh/console-form": "0.0.8",
+"platformsh/console-form": "0.0.10",
 "platformsh/client": "^0.10",
 "symfony/console": "^3.0 !=3.2.5 !=3.2.6",
 "symfony/yaml": "^3.0 || ^2.6",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/platformsh-cli-3.16.2/composer.lock 
new/platformsh-cli-3.17.0/composer.lock
--- old/platformsh-cli-3.16.2/composer.lock 2017-05-19 23:57:49.0 
+0200
+++ new/platformsh-cli-3.17.0/composer.lock 2017-05-30 14:25:44.0 
+0200
@@ -4,7 +4,7 @@
 "Read more about it at 
https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file";,
 "This file is @generated automatically"
 ],
-"content-hash": "c3322283a273a90a18178d15f6e44acc",
+"content-hash": "2f96c4c4c7449d8115643ed6246dff2b",
 "packages": [
 {
 "name": "cocur/slugify",
@@ -593,16 +593,16 @@
 },
 {
 "name": "platformsh/client",
-"version": "v0.10.2",
+"version": "v0.10.3",
 "source": {
 "type": "git",
 "url": 
"https://github.com/platformsh/platformsh-client-php.git";,
-

commit virt-sandbox for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package virt-sandbox for openSUSE:Factory 
checked in at 2017-05-31 12:21:16

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


Package is "virt-sandbox"

Wed May 31 12:21:16 2017 rev:13 rq:499771 version:0.6.0

Changes:

--- /work/SRC/openSUSE:Factory/virt-sandbox/virt-sandbox.changes
2015-09-17 09:21:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.virt-sandbox.new/virt-sandbox.changes   
2017-05-31 12:21:18.167182296 +0200
@@ -1,0 +2,6 @@
+Tue May 30 13:22:44 UTC 2017 - cbosdon...@suse.com
+
+- Add ext4 module to QEMU initrd to load ext* root images.
+  559b54d-load-ext4.patch. bsc#944325
+
+---

New:

  559b54d-load-ext4.patch



Other differences:
--
++ virt-sandbox.spec ++
--- /var/tmp/diff_new_pack.O52Br4/_old  2017-05-31 12:21:20.010922022 +0200
+++ /var/tmp/diff_new_pack.O52Br4/_new  2017-05-31 12:21:20.010922022 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package virt-sandbox
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -31,7 +31,8 @@
 
 # Upstream patches
 Patch0: dhcp-fix.patch
-Patch1: f24d003b-sync-unmount-shutdown.patch
+Patch1: 559b54d-load-ext4.patch
+Patch2: f24d003b-sync-unmount-shutdown.patch
 
 # Patches pending upstream review
 
@@ -96,6 +97,7 @@
 %setup -q -n libvirt-sandbox-%{version}
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
 %patch200 -p1
 
 %build

++ 559b54d-load-ext4.patch ++
Index: libvirt-sandbox-0.6.0/libvirt-sandbox/libvirt-sandbox-builder-machine.c
===
--- libvirt-sandbox-0.6.0.orig/libvirt-sandbox/libvirt-sandbox-builder-machine.c
+++ libvirt-sandbox-0.6.0/libvirt-sandbox/libvirt-sandbox-builder-machine.c
@@ -187,6 +187,13 @@ static gchar *gvir_sandbox_builder_machi
  * the file isn't found */
 gvir_sandbox_config_initrd_add_module(initrd, "af_packet.ko");
 
+/* In case ext4 is built as a module, include it and its deps
+ * for the root mount */
+gvir_sandbox_config_initrd_add_module(initrd, "crc16.ko");
+gvir_sandbox_config_initrd_add_module(initrd, "mbcache.ko");
+gvir_sandbox_config_initrd_add_module(initrd, "jbd2.ko");
+gvir_sandbox_config_initrd_add_module(initrd, "ext4.ko");
+
 if (!gvir_sandbox_builder_initrd_construct(builder, initrd, targetfile, 
error))
 goto cleanup;
 



commit gsmartcontrol for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package gsmartcontrol for openSUSE:Factory 
checked in at 2017-05-31 12:21:58

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


Package is "gsmartcontrol"

Wed May 31 12:21:58 2017 rev:2 rq:499828 version:0.9.0

Changes:

--- /work/SRC/openSUSE:Factory/gsmartcontrol/gsmartcontrol.changes  
2016-11-12 13:02:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.gsmartcontrol.new/gsmartcontrol.changes 
2017-05-31 12:22:01.397079669 +0200
@@ -1,0 +2,26 @@
+Tue May 16 09:19:31 UTC 2017 - joerg.loren...@ki.tng.de
+
+- Update to version 0.9.0
+  + Implemented (untested) support for Linux-based Areca
+controllers with enclosures.
+  + Implemented (untested) support for Windows-based Areca
+controllers (thanks to Richard Kagerer).
+  + Implemented (untested) support for Linux-based HP controllers
+with cciss and hpsa/hpahcisr drivers (thanks to
+Fabrice Bacchella).
+  + Changes in Preferences no longer fail silently until
+rescan/restart.
+  + Better drive detection under Windows after removable drives
+are detached.
+  + Windows version is no longer marked as "dpi aware" since it's
+not supported that well.
+  + Drive attribute descriptions have been updated (including
+clarifications for SSDs).
+  + Added support for SSD-only and HDD-only vendor attributes.
+  + Devices having only basic info can be displayed now in the
+info window.
+  + Fixed BDRW drive detection (it was detected as a HDD).
+  + Other minor improvements.
+  + A number of issues have been fixed (including a crash).
+
+---

Old:

  gsmartcontrol-0.8.7.tar.bz2

New:

  gsmartcontrol-0.9.0.tar.bz2



Other differences:
--
++ gsmartcontrol.spec ++
--- /var/tmp/diff_new_pack.mgGfpq/_old  2017-05-31 12:22:02.164971267 +0200
+++ /var/tmp/diff_new_pack.mgGfpq/_new  2017-05-31 12:22:02.164971267 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gsmartcontrol
 #
-# 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
@@ -17,7 +17,7 @@
 
 
 Name:   gsmartcontrol
-Version:0.8.7
+Version:0.9.0
 Release:0
 License:GPL-2.0 or GPL-3.0
 Summary:Hard Disk Health Inspection Tool
@@ -25,16 +25,16 @@
 Url:http://gsmartcontrol.sourceforge.net/
 Source0:
http://downloads.sourceforge.net/%{name}/%{version}/%{name}-%{version}.tar.bz2
 Source1:%{name}-rpmlintrc
+BuildRequires:  fdupes
 BuildRequires:  gcc-c++
-BuildRequires:  gtkmm2-devel
-BuildRequires:  libstdc++-devel
-BuildRequires:  libglademm-devel
-BuildRequires:  pcre-devel
 BuildRequires:  hicolor-icon-theme
-BuildRequires:  fdupes
+BuildRequires:  libstdc++-devel
 BuildRequires:  update-desktop-files
-Requires:   smartmontools
+BuildRequires:  pkgconfig(gtkmm-2.4)
+BuildRequires:  pkgconfig(libglademm-2.4)
+BuildRequires:  pkgconfig(libpcre)
 Requires:   pcre
+Requires:   smartmontools
 Recommends: xdg-utils
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -68,13 +68,14 @@
 %files
 %defattr(-,root,root,-)
 %doc %{_defaultdocdir}/%{name}
-%doc LICENSE_*.txt
 %{_bindir}/%{name}
 %{_bindir}/%{name}-root
 %{_mandir}/man1/%{name}.1%{ext_man}
 %{_mandir}/man1/%{name}-root.1%{ext_man}
 %{_datadir}/%{name}
 %{_datadir}/applications/%{name}.desktop
+%dir %{_datadir}/metainfo
+%{_datadir}/metainfo/%{name}.appdata.xml
 %{_datadir}/icons/hicolor/*/apps/%{name}.png
 %{_datadir}/pixmaps/%{name}.png
 %{_datadir}/pixmaps/%{name}.xpm

++ gsmartcontrol-0.8.7.tar.bz2 -> gsmartcontrol-0.9.0.tar.bz2 ++
 77211 lines of diff (skipped)




commit gnome-phone-manager for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package gnome-phone-manager for 
openSUSE:Factory checked in at 2017-05-31 12:21:49

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


Package is "gnome-phone-manager"

Wed May 31 12:21:49 2017 rev:45 rq:499827 version:0.69

Changes:

--- /work/SRC/openSUSE:Factory/gnome-phone-manager/gnome-phone-manager.changes  
2015-06-30 10:19:50.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-phone-manager.new/gnome-phone-manager.changes 
2017-05-31 12:21:50.814573571 +0200
@@ -1,0 +2,6 @@
+Mon May 29 15:17:44 UTC 2017 - dims...@opensuse.org
+
+- Fix build with gcc7: inject -Wno-error=format-y2k into CFLAGS
+  (boo#1041212).
+
+---



Other differences:
--
++ gnome-phone-manager.spec ++
--- /var/tmp/diff_new_pack.Mc6qxY/_old  2017-05-31 12:21:51.646456136 +0200
+++ /var/tmp/diff_new_pack.Mc6qxY/_new  2017-05-31 12:21:51.654455007 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-phone-manager
 #
-# Copyright (c) 2015 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
@@ -98,6 +98,7 @@
 
 %build
 # Needed by patch1
+export CFLAGS="%{optflags} -Wno-error=format-y2k"
 NOCONFIGURE=1 gnome-autogen.sh
 %configure \
 --disable-static \




commit python-renderspec for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package python-renderspec for 
openSUSE:Factory checked in at 2017-05-31 12:21:02

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


Package is "python-renderspec"

Wed May 31 12:21:02 2017 rev:4 rq:499767 version:1.6.1

Changes:

--- /work/SRC/openSUSE:Factory/python-renderspec/python-renderspec.changes  
2017-04-24 09:49:23.94673 +0200
+++ /work/SRC/openSUSE:Factory/.python-renderspec.new/python-renderspec.changes 
2017-05-31 12:21:03.669228919 +0200
@@ -1,0 +2,7 @@
+Tue May 30 13:18:42 UTC 2017 - cloud-de...@suse.de
+
+- update to version 1.6.1
+  - Sort found archives by mtime for version detection
+  - Updated from global requirements
+
+---

Old:

  renderspec-1.6.0.tar.gz

New:

  renderspec-1.6.1.tar.gz



Other differences:
--
++ python-renderspec.spec ++
--- /var/tmp/diff_new_pack.RTMrZa/_old  2017-05-31 12:21:04.429121647 +0200
+++ /var/tmp/diff_new_pack.RTMrZa/_new  2017-05-31 12:21:04.429121647 +0200
@@ -18,7 +18,7 @@
 
 %global sname renderspec
 Name:   python-renderspec
-Version:1.6.0
+Version:1.6.1
 Release:0
 Summary:Generate spec files from Jinja2 templates
 License:Apache-2.0
@@ -27,7 +27,7 @@
 Source0:
https://pypi.io/packages/source/r/%{sname}/%{sname}-%{version}.tar.gz
 BuildRequires:  openstack-macros
 BuildRequires:  python-devel
-BuildRequires:  python-pbr >= 1.8
+BuildRequires:  python-pbr >= 2.0.0
 Requires:   python-Jinja2 >= 2.8
 Requires:   python-PyYAML >= 3.10.0
 Requires:   python-packaging >= 16.5

++ renderspec-1.6.0.tar.gz -> renderspec-1.6.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/renderspec-1.6.0/ChangeLog 
new/renderspec-1.6.1/ChangeLog
--- old/renderspec-1.6.0/ChangeLog  2017-04-21 11:14:16.0 +0200
+++ new/renderspec-1.6.1/ChangeLog  2017-05-30 14:20:54.0 +0200
@@ -1,6 +1,12 @@
 CHANGES
 ===
 
+1.6.1
+-
+
+* Sort found archives by mtime for version detection
+* Updated from global requirements
+
 1.6.0
 -
 
@@ -10,9 +16,9 @@
 1.5.0
 -
 
-* Look in 'output_dir' when searching archives
+* Look in 'output\_dir' when searching archives
 * Enable and fix more tests
-* Add new function fetch_source() to download files
+* Add new function fetch\_source() to download files
 * Make output dir available in the context
 * Updated from global requirements
 
@@ -21,7 +27,7 @@
 
 * Add dynamic version detection from archive files
 * Fix docs for child templates
-* Introduce context variable 'pypi_name'
+* Introduce context variable 'pypi\_name'
 * Updated from global requirements
 * Updated from global requirements
 * Updated from global requirements
@@ -52,7 +58,7 @@
 * Updated from global requirements
 * Updated from global requirements
 * Update homepage with developer documentation page
-* Add req_cleanup block for Fedora templates
+* Add req\_cleanup block for Fedora templates
 * Updated from global requirements
 * Support distro specific child templates
 * Updated from global requirements
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/renderspec-1.6.0/PKG-INFO 
new/renderspec-1.6.1/PKG-INFO
--- old/renderspec-1.6.0/PKG-INFO   2017-04-21 11:14:16.0 +0200
+++ new/renderspec-1.6.1/PKG-INFO   2017-05-30 14:20:54.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: renderspec
-Version: 1.6.0
+Version: 1.6.1
 Summary: Jinja2 template renderer for generating .spec files
 Home-page: http://docs.openstack.org/developer/renderspec/
 Author: OpenStack
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/renderspec-1.6.0/renderspec/utils.py 
new/renderspec-1.6.1/renderspec/utils.py
--- old/renderspec-1.6.0/renderspec/utils.py2017-04-21 11:10:44.0 
+0200
+++ new/renderspec-1.6.1/renderspec/utils.py2017-05-30 14:18:20.0 
+0200
@@ -71,9 +71,11 @@
 if isinstance(directories, six.string_types):
 directories = [directories]
 
-return [os.path.join(d, f) for d in directories if d for f in os.listdir(d)
-if f.startswith(basename) and
-f.endswith(('tar.gz', 'zip', 'tar.bz2', 'xz'))]
+return sorted(
+[os.path.join(d, f) for d in directories if d for f in os.listdir(d)
+ if f.startswith(basename) and
+ f.endswith(('tar.gz', 'zip', 'tar.bz2', 'xz'))],
+key=lambda x: os.stat(x).st_mtime, reverse=True)
 
 
 def _find_pkg_info(directory):
diff -urN '--exclude=CVS' 

commit mstflint for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package mstflint for openSUSE:Factory 
checked in at 2017-05-31 12:21:09

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


Package is "mstflint"

Wed May 31 12:21:09 2017 rev:7 rq:499770 version:4.6.0

Changes:

--- /work/SRC/openSUSE:Factory/mstflint/mstflint.changes2017-05-27 
13:19:30.673782443 +0200
+++ /work/SRC/openSUSE:Factory/.mstflint.new/mstflint.changes   2017-05-31 
12:21:10.752229038 +0200
@@ -1,0 +2,5 @@
+Tue May 30 12:21:38 UTC 2017 - nmoreychaisemar...@suse.com
+
+- Add mstflint-gcc7.patch for GCC7 support
+
+---

New:

  mstflint-gcc7.patch



Other differences:
--
++ mstflint.spec ++
--- /var/tmp/diff_new_pack.QjSWvU/_old  2017-05-31 12:21:11.920064179 +0200
+++ /var/tmp/diff_new_pack.QjSWvU/_new  2017-05-31 12:21:11.924063615 +0200
@@ -38,6 +38,8 @@
 Patch3: mstflint-4.4.0-no-date-time.patch
 # PATCH-FIX-UPSTREAM Add all needed defines to get it built on armv7
 Patch4: mstflint-armv7_arch.patch
+# PATCH-FIX-UPSTREAM Ignore fallthrough for GCC7 support
+Patch5: mstflint-gcc7.patch
 
 BuildRequires:  gcc-c++
 BuildRequires:  libibmad-devel
@@ -61,6 +63,7 @@
 %patch2
 %patch3
 %patch4
+%patch5
 
 %build
 ./autogen.sh

++ mstflint-gcc7.patch ++
diff --git configure.ac configure.ac
index f988818..8384528 100644
--- configure.ac
+++ configure.ac
@@ -98,6 +98,7 @@ AS_IF([test "x$enable_dynamic_ld" = "xyes"], [
   LDFLAGS="$LDFLAGS -Wl,--dynamic-linker=/lib64/ld64.so.2"
 ])
 
+CPPFLAGS="$CPPFLAGS -Wno-implicit-fallthrough"
 CFLAGS="$CFLAGS -Werror -DMST_UL"
 CXXFLAGS="$CXXFLAGS -Werror -DMST_UL"
 



commit xfs for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package xfs for openSUSE:Factory checked in 
at 2017-05-31 12:19:52

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


Package is "xfs"

Wed May 31 12:19:52 2017 rev:12 rq:499645 version:1.1.4

Changes:

--- /work/SRC/openSUSE:Factory/xfs/xfs.changes  2014-08-27 07:46:25.0 
+0200
+++ /work/SRC/openSUSE:Factory/.xfs.new/xfs.changes 2017-05-31 
12:20:26.174521888 +0200
@@ -1,0 +2,6 @@
+Tue May 30 09:50:45 UTC 2017 - sndir...@suse.com
+
+- includes everything needed for missing sle issue entries:
+  fate #320388 (bsc#1041620) 
+
+---



Other differences:
--
++ xfs.spec ++
--- /var/tmp/diff_new_pack.ZLuJsp/_old  2017-05-31 12:20:26.846427038 +0200
+++ /var/tmp/diff_new_pack.ZLuJsp/_new  2017-05-31 12:20:26.850426473 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xfs
 #
-# Copyright (c) 2014 SUSE LINUX Products 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




commit openct for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package openct for openSUSE:Factory checked 
in at 2017-05-31 12:20:55

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


Package is "openct"

Wed May 31 12:20:55 2017 rev:37 rq:499766 version:0.6.20

Changes:

--- /work/SRC/openSUSE:Factory/openct/openct.changes2015-08-10 
09:16:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.openct.new/openct.changes   2017-05-31 
12:20:57.126152579 +0200
@@ -37 +37 @@
-- Added libudev-devel in order to get correct udevdir
+- Added libudev-devel in order to get correct udevdir (bnc#859827)



Other differences:
--
++ openct.spec ++
--- /var/tmp/diff_new_pack.soyU3W/_old  2017-05-31 12:20:57.790058858 +0200
+++ /var/tmp/diff_new_pack.soyU3W/_new  2017-05-31 12:20:57.794058293 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package openct
 #
-# Copyright (c) 2015 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




commit clpeak for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package clpeak for openSUSE:Factory checked 
in at 2017-05-31 12:19:42

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


Package is "clpeak"

Wed May 31 12:19:42 2017 rev:3 rq:499612 version:1.0+git.20170525

Changes:

--- /work/SRC/openSUSE:Factory/clpeak/clpeak.changes2017-02-03 
17:34:45.197734924 +0100
+++ /work/SRC/openSUSE:Factory/.clpeak.new/clpeak.changes   2017-05-31 
12:20:18.079664600 +0200
@@ -1,0 +2,14 @@
+Tue May 30 08:35:31 UTC 2017 - mplus...@suse.com
+
+- Update to version 1.0+git.20170525:
+  * Add GTX 1080 Ti results
+  * Remove non printable chars from log file
+  * Add One Plus 3T results
+  * Macbook pro results submitted by Harry Mallon
+  * Rename Macbook_Pro_2013.log to Mac_Pro_Late_2013_.log
+  * Not passing half as kernel argument
+  * Fix uninitialized variable
+  * Ignore ignored-attributes warning in g++, clang++
+  * Enable support for FreeBSD.
+
+---

Old:

  clpeak-1.0+git.20160805.tar.xz

New:

  _servicedata
  clpeak-1.0+git.20170525.tar.xz



Other differences:
--
++ clpeak.spec ++
--- /var/tmp/diff_new_pack.wMk4Ey/_old  2017-05-31 12:20:19.291493532 +0200
+++ /var/tmp/diff_new_pack.wMk4Ey/_new  2017-05-31 12:20:19.295492968 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   clpeak
-Version:1.0+git.20160805
+Version:1.0+git.20170525
 Release:0
 Summary:Find peak OpenCL capacities like bandwidth & compute
 License:SUSE-Public-Domain
@@ -51,7 +51,7 @@
 
 %files
 %defattr (-,root,root)
-%doc README.md LICENSE STATUS
+%doc README.md LICENSE STATUS results
 %{_bindir}/%{name}
 
 %changelog

++ _servicedata ++


git://github.com/krrishnarraj/clpeak
  c23d2f77a9154d155eefee0538e453272921e5a5++
 clpeak-1.0+git.20160805.tar.xz -> clpeak-1.0+git.20170525.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/clpeak-1.0+git.20160805/.gitmodules 
new/clpeak-1.0+git.20170525/.gitmodules
--- old/clpeak-1.0+git.20160805/.gitmodules 1970-01-01 01:00:00.0 
+0100
+++ new/clpeak-1.0+git.20170525/.gitmodules 2017-05-25 06:45:41.0 
+0200
@@ -0,0 +1,3 @@
+[submodule "android/app/src/main/jni/libopencl-stub"]
+   path = android/app/src/main/jni/libopencl-stub
+   url = https://github.com/krrishnarraj/libopencl-stub
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/clpeak-1.0+git.20160805/CMakeLists.txt 
new/clpeak-1.0+git.20170525/CMakeLists.txt
--- old/clpeak-1.0+git.20160805/CMakeLists.txt  2016-08-05 08:23:31.0 
+0200
+++ new/clpeak-1.0+git.20170525/CMakeLists.txt  2017-05-25 06:45:41.0 
+0200
@@ -89,7 +89,7 @@
 add_definitions("-march=native")
   endif()
 
-  add_definitions("-fPIC -Wall -Wextra -Wno-deprecated-declarations 
-Wno-unused-parameter")
+  add_definitions("-fPIC -Wall -Wextra -Wno-deprecated-declarations 
-Wno-unused-parameter -Wno-ignored-attributes")
 endif()
 
 # override cl.hp from deps. Its buggy or not present in come systems
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/clpeak-1.0+git.20160805/include/common.h 
new/clpeak-1.0+git.20170525/include/common.h
--- old/clpeak-1.0+git.20160805/include/common.h2016-08-05 
08:23:31.0 +0200
+++ new/clpeak-1.0+git.20170525/include/common.h2017-05-25 
06:45:41.0 +0200
@@ -2,7 +2,7 @@
 #define COMMON_H
 
 #include 
-#if defined(__APPLE__) || defined(__MACOSX)
+#if defined(__APPLE__) || defined(__MACOSX) || defined(__FreeBSD__)
 #include 
 #endif
 
@@ -12,7 +12,9 @@
 
 #define TAB "  "
 #define NEWLINE "\n"
+#ifndef __FreeBSD__
 #define uintunsigned int
+#endif
 
 #define MAX(X, Y)   \
   (X > Y)? X: Y;
@@ -39,6 +41,8 @@
 #elif defined(__arm__)
 #define OS_NAME "Linux ARM"
 #endif
+#elif defined(__FreeBSD__)
+#define OS_NAME "FreeBSD"
 #endif
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/clpeak-1.0+git.20160805/results/Apple/Mac_Pro_Late_2013_.log 
new/clpeak-1.0+git.20170525/results/Apple/Mac_Pro_Late_2013_.log
--- old/clpeak-1.0+git.20160805/results/Apple/Mac_Pro_Late_2013_.log
1970-01-01 01:00:00.0 +0100
+++ new/clpeak-1.0+git.20170525/results/Apple/Mac_Pro_Late_2013_.log
2017-05-25 06:45:41.0 +0200
@@ -0,0 +1,76 @@
+Platform: Apple
+  Device: AMD Radeon HD - FirePro D700 Compute Engine
+Driver version  : 1.2 (Mar 16 2017 18:19:56) (Macintosh)
+Compute units   : 32
+Clock f

commit crosstool-ng for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package crosstool-ng for openSUSE:Factory 
checked in at 2017-05-31 12:19:33

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


Package is "crosstool-ng"

Wed May 31 12:19:33 2017 rev:6 rq:499581 version:1.22.0

Changes:

--- /work/SRC/openSUSE:Factory/crosstool-ng/crosstool-ng.changes
2016-03-26 15:27:23.0 +0100
+++ /work/SRC/openSUSE:Factory/.crosstool-ng.new/crosstool-ng.changes   
2017-05-31 12:20:14.328194178 +0200
@@ -1,0 +2,8 @@
+Fri May 26 19:27:55 UTC 2017 - b...@vdm-design.de
+
+- Add patch (crosstool-ng-gperf-fix.patch) to fix build
+  with gpref version >= 3.1, based on upstream commit
+  
https://github.com/crosstool-ng/crosstool-ng/commit/3bb2bcd2a328fb56332398783e91899ce3bc3556
+  
+
+---

New:

  crosstool-ng-gperf-fix.patch



Other differences:
--
++ crosstool-ng.spec ++
--- /var/tmp/diff_new_pack.km3LSV/_old  2017-05-31 12:20:15.448036095 +0200
+++ /var/tmp/diff_new_pack.km3LSV/_new  2017-05-31 12:20:15.448036095 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package crosstool-ng
 #
-# 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
@@ -26,6 +26,8 @@
 Source0:
http://crosstool-ng.org/download/crosstool-ng/%{name}-%{version}.tar.bz2
 # PATCH-FIX-TO-UPSTREAM -- bmwiedemann
 Patch0: reproducible.patch
+# PATCH-FIX-UPSTREAM crosstool-ng-gperf-fix.patch b...@vdm-design.de -- fixes 
build with gperf >= 3.1 
+Patch1: crosstool-ng-gperf-fix.patch
 BuildRequires:  bison
 BuildRequires:  fdupes
 BuildRequires:  flex
@@ -54,6 +56,7 @@
 %prep
 %setup -qn %{name}
 %patch0 -p1
+%patch1 -p1
 # from legal team
 # "Distribution and use is free, also for commercial purposes" (no 
modification permission) 
 find patches/ -name '*-new-valencian-locale.patch' -type f -delete -print

++ crosstool-ng-gperf-fix.patch ++
diff -urd crosstool-ng.orig/configure crosstool-ng.new/configure
--- crosstool-ng.orig/configure 2015-11-20 14:03:36.0 +0100
+++ crosstool-ng.new/configure  2017-05-27 10:12:40.383087059 +0200
@@ -635,6 +635,7 @@
 lzma
 xz
 kconfig_options
+GPERF_LEN_TYPE
 automake
 LIBTOOLIZE
 LIBTOOL
@@ -5331,6 +5332,27 @@
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_automake" >&5
 $as_echo "$ac_cv_path_automake" >&6; }
 automake=$ac_cv_path_automake
+ 
+ 
+#
+# Gperf 3.1 started generating functions with size_t rather than unsigned int
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the type used in gperf 
declarations" >&5
+$as_echo_n "checking for the type used in gperf declarations... " >&6; }
+echo "#include " > conftest.gperf.c
+echo "const char * in_word_set(const char *, GPERF_LEN_TYPE);" >> 
conftest.gperf.c
+echo foo,bar | ${GPERF} -L ANSI-C >> conftest.gperf.c
+if ${CC} -c -o /dev/null conftest.gperf.c -DGPERF_LEN_TYPE='size_t' >/dev/null 
2>&1; then :
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: size_t" >&5
+$as_echo "size_t" >&6; }
+ GPERF_LEN_TYPE='size_t'
+elif ${CC} -c -o /dev/null conftest.gperf.c -DGPERF_LEN_TYPE='unsigned int' 
>/dev/null 2>&1; then :
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsigned int" >&5
+$as_echo "unsigned int" >&6; }
+ GPERF_LEN_TYPE='unsigned int'
+else
+  as_fn_error $? "unable to determine gperf len type" "$LINENO" 5
+fi
+rm -f conftest.gperf.c
 
 
 #
diff -urd crosstool-ng.orig/configure.ac crosstool-ng.new/configure.ac
--- crosstool-ng.orig/configure.ac  2015-11-18 06:29:15.0 +0100
+++ crosstool-ng.new/configure.ac   2017-05-27 10:00:57.411342197 +0200
@@ -290,6 +290,22 @@
  AC_MSG_ERROR([could not find GNU automake >= 1.10])])])
 AC_SUBST([automake], [$ac_cv_path_automake])
 
+#
+# Gperf 3.1 started generating functions with size_t rather than unsigned int
+AC_MSG_CHECKING([for the type used in gperf declarations])
+echo "#include " > conftest.gperf.c
+echo "const char * in_word_set(const char *, GPERF_LEN_TYPE);" >> 
conftest.gperf.c
+echo foo,bar | ${GPERF} -L ANSI-C >> conftest.gperf.c
+AS_IF([${CC} -c -o /dev/null conftest.gperf.c -DGPERF_LEN_TYPE='size_t' 
>/dev/null 2>&1],
+[AC_MSG_RESULT([size_t])
+ GPERF_LEN_TYPE='size_t'],
+[${CC} -c -o /dev/null conftest.gperf.c -DGPERF_LEN_TYPE='unsigned 
in

commit libdevil for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package libdevil for openSUSE:Factory 
checked in at 2017-05-31 12:19:45

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


Package is "libdevil"

Wed May 31 12:19:45 2017 rev:5 rq:499616 version:1.7.8

Changes:

--- /work/SRC/openSUSE:Factory/libdevil/libdevil.changes2015-06-30 
10:17:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.libdevil.new/libdevil.changes   2017-05-31 
12:20:19.575453447 +0200
@@ -1,0 +2,8 @@
+Mon May 29 13:01:06 UTC 2017 - dims...@opensuse.org
+
+- Drop lcms-devel BuildRequires and pass --disable-lcms to
+  configure: lcms upstream explicitly recommends no longer to use
+  this outdated version of the library (DevIL 1.8.0 seems to gain
+  lcms2 support).
+
+---



Other differences:
--
++ libdevil.spec ++
--- /var/tmp/diff_new_pack.vKemkN/_old  2017-05-31 12:20:20.439331497 +0200
+++ /var/tmp/diff_new_pack.vKemkN/_new  2017-05-31 12:20:20.439331497 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libdevil
 #
-# Copyright (c) 2015 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
@@ -43,7 +43,6 @@
 BuildRequires:  giflib-devel
 BuildRequires:  libjasper-devel
 BuildRequires:  libjpeg-devel
-BuildRequires:  liblcms-devel
 BuildRequires:  libmng-devel
 BuildRequires:  libpng-devel
 BuildRequires:  libtiff-devel
@@ -158,6 +157,7 @@
--enable-ILUT \
--enable-ILU \
--disable-wdp \
+   --disable-lcms \
--disable-sse3
 make %{?_smp_mflags}
 




commit scite for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package scite for openSUSE:Factory checked 
in at 2017-05-31 12:19:40

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


Package is "scite"

Wed May 31 12:19:40 2017 rev:24 rq:499598 version:3.7.4

Changes:

--- /work/SRC/openSUSE:Factory/scite/scite.changes  2017-04-20 
20:57:01.156469403 +0200
+++ /work/SRC/openSUSE:Factory/.scite.new/scite.changes 2017-05-31 
12:20:16.743853170 +0200
@@ -1,0 +2,6 @@
+Tue May 30 07:01:03 UTC 2017 - bwiedem...@suse.com
+
+- Add reproducible.patch to sort input files to make build reproducible
+  (boo#1041090)
+
+---

New:

  reproducible.patch



Other differences:
--
++ scite.spec ++
--- /var/tmp/diff_new_pack.Qd5bim/_old  2017-05-31 12:20:17.883692265 +0200
+++ /var/tmp/diff_new_pack.Qd5bim/_new  2017-05-31 12:20:17.887691700 +0200
@@ -27,6 +27,8 @@
 Url:http://www.scintilla.org/SciTE.html
 Source0:http://download.sourceforge.net/scintilla/%{name}%{tar_ver}.tgz
 Source1:%{name}.changes
+# PATCH-FIX-UPSTREAM https://sourceforge.net/p/scintilla/bugs/1946/
+Patch0: reproducible.patch
 BuildRequires:  gcc-c++
 %if 0%{?favor_gtk2}
 BuildRequires:  gtk2-devel
@@ -43,6 +45,7 @@
 
 %prep
 %setup -q -c
+%patch0 -p1
 
 # Fix "Your file uses  __DATE and __TIME__ this causes the package to rebuild 
when not needed warning"
 # 
http://sourceforge.net/tracker/?func=detail&atid=102439&aid=3314371&group_id=2439
 is WONTFIX.

++ reproducible.patch ++
Index: scite-3.7.4/scintilla/gtk/makefile
===
--- scite-3.7.4.orig/scintilla/gtk/makefile
+++ scite-3.7.4/scintilla/gtk/makefile
@@ -96,7 +96,7 @@ GLIB_GENMARSHAL_FLAGS = --prefix=scintil
 .list.c:
$(GLIB_GENMARSHAL) --body $(GLIB_GENMARSHAL_FLAGS) $< > $@
 
-LEXOBJS:=$(addsuffix .o,$(basename $(notdir $(wildcard 
$(srcdir)/../lexers/Lex*.cxx
+LEXOBJS:=$(addsuffix .o,$(basename $(sort $(notdir $(wildcard 
$(srcdir)/../lexers/Lex*.cxx)
 
 all: $(COMPLIB)
 



commit opus-tools for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package opus-tools for openSUSE:Factory 
checked in at 2017-05-31 12:19:32

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


Package is "opus-tools"

Wed May 31 12:19:32 2017 rev:5 rq:499461 version:0.1.10

Changes:

--- /work/SRC/openSUSE:Factory/opus-tools/opus-tools.changes2014-12-19 
09:37:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.opus-tools.new/opus-tools.changes   
2017-05-31 12:20:13.128363552 +0200
@@ -1,0 +2,13 @@
+Mon May 29 18:31:50 UTC 2017 - zai...@opensuse.org
+
+- Update to version 0.1.10:
+  + This release includes several bug fixes, including security
+fixes in opusenc, as well as a few minor enhancements.
+- opusenc:
+  . Improved handling of malformed input files to avoid crashes
+and other troublesome behavior.
+  . Percent progress is shown while encoding.
+- opusrtp: New --extract option to extract from input pcap
+  file.
+
+---

Old:

  opus-tools-0.1.9.tar.gz

New:

  opus-tools-0.1.10.tar.gz



Other differences:
--
++ opus-tools.spec ++
--- /var/tmp/diff_new_pack.zvLQC4/_old  2017-05-31 12:20:14.060232005 +0200
+++ /var/tmp/diff_new_pack.zvLQC4/_new  2017-05-31 12:20:14.064231440 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package opus-tools
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2012 Bjørn Lie (zai...@opensuse.org).
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,7 +18,7 @@
 
 
 Name:   opus-tools
-Version:0.1.9
+Version:0.1.10
 Release:0
 Summary:A set of tools for the opus audio codec
 License:BSD-2-Clause and GPL-2.0
@@ -51,7 +51,7 @@
 
 %files
 %defattr(-,root,root)
-%doc ChangeLog COPYING AUTHORS
+%doc COPYING AUTHORS
 %{_bindir}/opusdec
 %{_bindir}/opusenc
 %{_bindir}/opusinfo

++ opus-tools-0.1.9.tar.gz -> opus-tools-0.1.10.tar.gz ++
 20875 lines of diff (skipped)




commit digikam for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package digikam for openSUSE:Factory checked 
in at 2017-05-31 12:20:15

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


Package is "digikam"

Wed May 31 12:20:15 2017 rev:158 rq:499679 version:5.5.0

Changes:

--- /work/SRC/openSUSE:Factory/digikam/digikam.changes  2017-03-16 
09:51:26.910527077 +0100
+++ /work/SRC/openSUSE:Factory/.digikam.new/digikam.changes 2017-05-31 
12:20:30.173957305 +0200
@@ -1,0 +2,6 @@
+Tue May 30 09:22:34 UTC 2017 - alarr...@suse.com
+
+- digikam now recommends marble in order for the geolocation widgets
+  to work by default.
+
+---



Other differences:
--
++ digikam.spec ++
--- /var/tmp/diff_new_pack.HTL6P8/_old  2017-05-31 12:20:32.297657512 +0200
+++ /var/tmp/diff_new_pack.HTL6P8/_new  2017-05-31 12:20:32.297657512 +0200
@@ -90,6 +90,7 @@
 Recommends: %{name}-lang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   exiv2 >= 0.25
+Recommends: marble
 Recommends: showfoto
 # Got merged into libimageeditor in 5.2.0
 Provides:   %{name}-plugin-color = %{version}
@@ -129,7 +130,6 @@
 Recommends: enblend-enfuse
 Recommends: hugin
 Recommends: kipi-plugins-lang = %{version}
-Supplements:packageand(kipi-plugins:marble)
 Obsoletes:  kipi-plugins-acquireimage < %{version}
 Obsoletes:  kipi-plugins-geolocation < %{version}
 Obsoletes:  kipi-plugins5 < %{version}




commit lxcfs for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package lxcfs for openSUSE:Factory checked 
in at 2017-05-31 12:19:47

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


Package is "lxcfs"

Wed May 31 12:19:47 2017 rev:3 rq:499619 version:2.0.7

Changes:

--- /work/SRC/openSUSE:Factory/lxcfs/lxcfs.changes  2016-09-05 
21:23:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.lxcfs.new/lxcfs.changes 2017-05-31 
12:20:20.803280120 +0200
@@ -1,0 +2,106 @@
+Wed May 17 10:44:25 UTC 2017 - opensuse_buildserv...@ojkastl.de
+
+- update to version 2.0.7
+  This is the seventh bugfix release for LXCFS 2.0. This includes the 
following bugfixes:
+  * Remove unused variable
+  * Also check next variable for NULL on cg_rmdir
+  * virtualize the 'btime' field of /proc/stat
+  * cleanup: return false instead of NULL as bool
+  * Limit memswlimit by TotalSwap
+  * pam_cgfs: remove dead assignment
+  * pam_cgfs: return created directly
+  * pam_cgfs: make sure that **p is not NULL
+  * bindings: Want space for ints? Call sizeof(int)!
+  * pam_cgfs: make trim() safer
+  * pam_cgfs: error out on failure in cgv2_init()
+  * pam_cgfs: remove dead assignment
+  * bindings: implement guest nice
+  * bindings: increase reserved buffer size a little
+
+- added signature verification
+
+---
+Fri Jan 27 15:31:13 UTC 2017 - opensuse_buildserv...@ojkastl.de
+
+- deleted patches 0001 to 00024, as they are upstream already
+  - 0001-Fix-test_reload-for-lxcfs-chroot.patch
+  - 0002-Virtualize-more-of-the-meminfo-fields.patch
+  - 0003-pam-fix-race-in-cgroup-creation.patch
+  - 0004-meminfo-don-t-show-negative-swapfree.patch
+  - 0005-bindings-improve-debugging.patch
+  - 0006-bindings-use-openat-fd-for-fstatat-unlinkat.patch
+  - 0007-bindings-close-open-fds-on-error.patch
+  - 0008-bindings-grant-access-to-var-lib-lxcfs.patch
+  - 0009-bindings-enable-access-to-var-lib-lxcfs-cgroup.patch
+  - 0010-bindings-allow-access-to-var-lib-lxcfs-proc.patch
+  - 0011-lxcfs-bindings-show-.-and-.-dir-entries.patch
+  - 0012-lxcfs-better-fs-behavior-on-var-lib-lxcfs.patch
+  - 0013-bindings-non-functional-changes.patch
+  - 0014-bindings-set-errno-in-pick_controller_from_path.patch
+  - 0015-bindings-more-consistent-fs-behavior.patch
+  - 0016-add-pld-linux-support.patch
+  - 0017-don-t-use-argv-0-in-usage-output.patch
+  - 0018-bindings-revert-cgroup-check.patch
+  - 0019-bindings-improve-returned-errnos.patch
+  - 0020-bindings-make-rmdir-behave-more-consistently.patch
+  - 0021-libtool-do-not-link-lxcfs-against-liblxcfs.patch
+  - 0022-bindings-lxcfs-improve-debugging.patch
+  - 0023-bindings-fix-debug-macro.patch
+  - 0024-bindings-restore-original-working-directory.patch
+
+---
+Wed Jan 25 09:10:46 UTC 2017 - opensuse_buildserv...@ojkastl.de
+
+- update to version 2.0.6
+  This is the sixth bugfix release for LXCFS 2.0. This includes the following 
bugfixes:
+Fix swap values with nested cgroups
+tests: Fix run on ppc64el
+Fix wrong scanning of memory.stat
+
+- update to version 2.0.5
+  This is the fifth bugfix release for LXCFS 2.0. This includes the following 
bugfixes:
+Add Documentation key to systemd unit
+bindings: allow getattr on O_WRONLY files
+bindings: remove noop check
+fix Active/Inactive /proc/meminfo
+macro: add header for shared macros
+pam_cgfs: reimplement and add cgroupfs v2 support
+pam_cgfs: re-use cgroups that already belong to us
+pam_cgfs: handle cgroupfs v1 cpuset controller
+pam_cgfs: improve logging
+cgroups: handle non-existent isolcpus file
+
+- update to version 2.0.4
+  This is the fourth bugfix release for LXCFS 2.0. This includes the following 
bugfixes:
+   Fix test_reload for lxcfs chroot
+   Virtualize more of the meminfo fields
+   pam: fix race in cgroup creation
+   meminfo: don't show negative swapfree
+   bindings: improve debugging
+   bindings: use openat fd for fstatat(), unlinkat()
+   bindings: close open fds on error
+   bindings: grant access to /var/lib/lxcfs
+   bindings: enable access to /var/lib/lxcfs/cgroup
+   bindings: allow access to /var/lib/lxcfs/proc
+   lxcfs, bindings: show "." and ".." dir entries
+   lxcfs: better fs behavior on /var/lib/lxcfs
+   bindings: non functional changes
+   bindings: set errno in pick_controller_from_path()
+   bindings: more consistent fs behavior
+   add pld linux support
+   don't use argv[0] in usage output
+   bindings: revert cgroup check
+   bindings: improve returned errnos
+   bindings: make rmdir behave more consistently
+   libtool: do not link lxcfs against liblxcfs
+   bindings, lxcfs: improve debugging
+   bindings: fix debug macro
+   autotools: add -avoid

commit freeradius-server for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package freeradius-server for 
openSUSE:Factory checked in at 2017-05-31 12:19:49

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


Package is "freeradius-server"

Wed May 31 12:19:49 2017 rev:68 rq:499629 version:3.0.14

Changes:

--- /work/SRC/openSUSE:Factory/freeradius-server/freeradius-server.changes  
2017-03-20 17:09:16.460314018 +0100
+++ /work/SRC/openSUSE:Factory/.freeradius-server.new/freeradius-server.changes 
2017-05-31 12:20:22.731007992 +0200
@@ -1,0 +2,48 @@
+Mon May 29 12:40:52 UTC 2017 - adam.ma...@suse.de
+
+- update to 3.0.14 (still FATE#322416)
+  
+  Feature improvements
+  * Enforce TLS client certificate expiration on session resumption,
+and Session-Timeout. See CVE-2017-9148 (bnc#1041445)
+  * Updated dictionary.cisco.vpn3000, dictionary.patton
+  * Added dictionary.dellemc
+  * Lowered the log output for failed PEAP sessions.
+  * ALlow utc in rlm_date.
+  * The internal OpenSSL session cache has been disabled.
+Please see mods-available/eap
+  * Update detail reader documentation.
+  * Make outgoing RadSec connections non-blocking.
+  * Add SQL backing to Moonshot-*-TargetedId generation.
+
+  Bug Fixes
+  * radtest uses Cleartext-Password for EAP, not User-Password.
+  * Update documentation for mods-enabled/ linking.
+  * Enhanced checks for moonshot salt.
+  * Allow session resumption for RadSec connections.
+  * Update "huntgroups" file to note that port ranges are not supported
+  * Fix OpenSSL permissions issues on default key files.
+  * Certificates are not required when PSK is used.
+  * Allow SubjectAltName as first extension in cert.
+  * Fixed talloc issue with TLS session resumption.
+  * "&Attr-26 := 0x01" now produces useful error messages.
+  * Handle connection error in rlm_ldap_cacheable_groupobj.
+  * Fix endian issues in DHCP.
+  * Multiple minor fixes for Coverity complaints.
+  * Handle unexpected regex.
+  * Fix minor issues in dictionaries.
+  * Fix typos and grammar. Patches from Alan Buxey.
+  * Fix erroneous VP creation in rlm_preproces.
+  * Fix MIB. Patch from Jeff Gehlbach.
+  * Trust router updates from Alejandro Perez.
+  * Allow build with LibreSSL.
+  * Use correct packet for channel bindings.
+  * Many fixes found by PVS-Studio. Thanks to PVS-Studio for giving us
+a test license. Please see the git commit history for more info.
+  * Fix incorrect length check in EAP-PWD. This may be exploitable.
+  * Stop rotating session database files (radutmp, radwtmp) since
+these are not logfiles.
+
+- freeradius-server-radiusd-logrotate.patch: updated
+
+---

Old:

  freeradius-server-3.0.13.tar.bz2
  freeradius-server-3.0.13.tar.bz2.sig

New:

  freeradius-server-3.0.14.tar.bz2
  freeradius-server-3.0.14.tar.bz2.sig



Other differences:
--
++ freeradius-server.spec ++
--- /var/tmp/diff_new_pack.hKoiPX/_old  2017-05-31 12:20:23.514897334 +0200
+++ /var/tmp/diff_new_pack.hKoiPX/_new  2017-05-31 12:20:23.518896770 +0200
@@ -20,7 +20,7 @@
 %define apxs2 apxs2-prefork
 %define apache2_sysconfdir %(%{_sbindir}/%{apxs2} -q SYSCONFDIR)
 Name:   freeradius-server
-Version:3.0.13
+Version:3.0.14
 Release:0
 
 %if 0%{?suse_version} > 1140
@@ -431,6 +431,8 @@
 %dir %attr(750,root,radiusd) %{_sysconfdir}/raddb/mods-config/files
 %attr(640,root,radiusd) %config(noreplace) 
%{_sysconfdir}/raddb/mods-config/files/*
 %dir %attr(750,root,radiusd) %{_sysconfdir}/raddb/mods-config/preprocess
+%attr(640,root,radiusd) %config(noreplace) 
%{_sysconfdir}/raddb/mods-config/sql/moonshot-targeted-ids/*
+%dir %attr(750,root,radiusd) /etc/raddb/mods-config/sql/moonshot-targeted-ids
 %attr(640,root,radiusd) %config(noreplace) 
%{_sysconfdir}/raddb/mods-config/preprocess/*
 %dir %attr(750,root,radiusd) %{_sysconfdir}/raddb/mods-config/python
 %attr(640,root,radiusd) %config(noreplace) 
%{_sysconfdir}/raddb/mods-config/python/radiusd.py
@@ -515,6 +517,7 @@
 %attr(640,root,radiusd) %config(noreplace) 
%{_sysconfdir}/raddb/mods-available/logintime
 %attr(640,root,radiusd) %config(noreplace) 
%{_sysconfdir}/raddb/mods-available/mac2ip
 %attr(640,root,radiusd) %config(noreplace) 
%{_sysconfdir}/raddb/mods-available/mac2vlan
+%attr(640,root,radiusd) %config(noreplace) 
%{_sysconfdir}/raddb/mods-available/moonshot-targeted-ids
 %attr(640,root,radiusd) %config(noreplace) 
%{_sysconfdir}/raddb/mods-available/mschap
 %attr(640,root,radiusd) %config(noreplace) 
%{_sysconfdir}/raddb/mods-available/ntlm_auth
 %attr(640,root,radiusd) %config(noreplace) 
%{_sysconfdir}/raddb/mods-available/opendirectory

commit tomatoes for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package tomatoes for openSUSE:Factory 
checked in at 2017-05-31 12:20:41

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


Package is "tomatoes"

Wed May 31 12:20:41 2017 rev:2 rq:499764 version:1.55

Changes:

--- /work/SRC/openSUSE:Factory/tomatoes/tomatoes.changes2015-06-23 
11:56:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.tomatoes.new/tomatoes.changes   2017-05-31 
12:20:42.312243797 +0200
@@ -1,0 +2,6 @@
+Sat May 27 05:17:40 UTC 2017 - bwiedem...@suse.com
+
+- Add reproducible.patch to sort input files to make build reproducible
+  (boo#1041090)
+
+---

New:

  reproducible.patch



Other differences:
--
++ tomatoes.spec ++
--- /var/tmp/diff_new_pack.M87egP/_old  2017-05-31 12:20:43.004146124 +0200
+++ /var/tmp/diff_new_pack.M87egP/_new  2017-05-31 12:20:43.004146124 +0200
@@ -27,6 +27,7 @@
 Source1:
http://downloads.sourceforge.net/%{name}/1.5/%{name}-linux-1.5.tar.bz2
 Source2:%{name}-rpmlintrc
 Source3:%{name}.desktop
+Patch0: reproducible.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  dos2unix
 BuildRequires:  gcc-c++
@@ -50,6 +51,7 @@
 
 %prep
 %setup -q -a1
+%patch0 -p1
 
 cp -r tomatoes-1.5/* .
 

++ reproducible.patch ++
sort input files (boo#1041090)

when building packages (e.g. for openSUSE Linux)
(random) filesystem order of input files
influences ordering of functions in the output,
thus without the patch, builds (in disposable VMs) would differ.

See https://reproducible-builds.org/ for why this matters.

Index: tomatoes-1.55/makefile
===
--- tomatoes-1.55.orig/makefile
+++ tomatoes-1.55/makefile
@@ -53,7 +53,7 @@ endif
 endif
 
 # Source and object files
-SOURCES = $(wildcard src/*.cpp)
+SOURCES = $(sort $(wildcard src/*.cpp))
 OBJS = $(SOURCES:.cpp=.o)
 OBJS := $(subst src/,obj/,$(OBJS))
 



commit crash for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package crash for openSUSE:Factory checked 
in at 2017-05-31 12:20:08

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


Package is "crash"

Wed May 31 12:20:08 2017 rev:140 rq:499668 version:7.1.8

Changes:

--- /work/SRC/openSUSE:Factory/crash/crash.changes  2017-04-11 
09:36:01.114588769 +0200
+++ /work/SRC/openSUSE:Factory/.crash.new/crash.changes 2017-05-31 
12:20:28.558185396 +0200
@@ -1,0 +2,13 @@
+Thu May 25 18:56:51 CEST 2017 - dm...@suse.com
+
+- crash-stop_read_error_when_intent_is_retry.patch: When reading a
+  memory image fails it may not be an error if it is still possible
+  to switch image and retry the read. Fix the error message output
+  to only occur if no retries are intended (bsc#1038839).
+
+---
+Mon Apr 24 15:50:26 UTC 2017 - astie...@suse.com
+
+- Exclude openSUSE from RT KMP build (bsc#1013843)
+
+---
@@ -28,0 +42,5 @@
+Wed Feb  1 14:08:44 UTC 2017 - msucha...@suse.com
+
+- Fix analyzing fadump dumps on PPC64 (bsc#1022962).
+
+---
@@ -119,0 +138,11 @@
+Wed Oct 19 11:55:14 UTC 2016 - lpecha...@suse.com
+
+- Enabled RT KMP build (bsc#1005578)
+
+---
+Mon Aug 15 12:58:39 UTC 2016 - ptesa...@suse.com
+
+- crash-linux-4.6-printk-flags.patch: Fix warning "failed to read
+  pageflag_names entry" on Linux 4.6 (bsc#978601).
+
+---
@@ -126 +155 @@
-Fri May 27 14:45:20 UTC 2016 - ptesa...@suse.com
+Fri May 27 13:44:34 UTC 2016 - ptesa...@suse.com
@@ -128 +157 @@
-- eppic-support-arm64.patch: Support for ARM64.
+- eppic-support-arm64.patch: Support for ARM64 (FATE#320844).
@@ -131 +160 @@
-Thu Apr 28 14:11:01 UTC 2016 - dm...@suse.com
+Tue May 24 20:14:06 CEST 2016 - dm...@suse.de
@@ -156 +185 @@
-Tue Sep  8 20:07:52 UTC 2015 - dm...@suse.com
+Fri Jan 22 08:19:11 UTC 2016 - lpecha...@suse.com
@@ -158,3 +187 @@
-- Upgrade of source tarball to 7.1.3 from upstream and refresh of
-  patch series to match. For the changelog of the source tarball
-  see:
+- Disable RT KMP build (bsc#962719)
@@ -162 +189,2 @@
-  http://people.redhat.com/anderson/crash.changelog.html
+---
+Wed Oct  7 15:03:03 UTC 2015 - lpecha...@suse.com
@@ -164 +192,43 @@
-  Feature enhancements include:
+- Enable RT KMP build (bsc#948840)
+
+---
+Tue Sep 22 14:43:49 UTC 2015 - dm...@suse.com
+
+- Update to 7.1.3 (bsc#946458)
+  o Introduction of "dis -f " which disassembles from the
+address to the end of the function
+  o Introduction of "dis -s " which displays the filename
+and line number associated with the specified text location,
+followed by a source code listing if available.
+  o Addition of a new "--src " command line option for
+use by the "dis -s" option if the kernel source is not located
+in the standard location.
+  o Do not search for a panic task in s390x dumpfiles that are
+marked as a "live dump"
+  o Fix unnecessary error messages when a directory is used as a
+command line argument
+  o See http://people.redhat.com/anderson/crash.changelog.html for
+the complete changelog
+- Removed these patches obsoleted by mainline:
+   crash-x86_64-nested-nmi.patch
+   crash-keep-file-orig-with-name-on-select.patch
+   crash-kmem_cache-downsize.patch
+   crash-s390x-add-vector-support.patch
+- Refreshed patches
+
+---
+Wed Jul 29 13:47:05 UTC 2015 - ptesa...@suse.cz
+
+- crash-move-xen-dom0-handling-into-own-file.patch: Move Xen Dom0
+  handling into xen_dom0.c (FATE#316467).
+- crash-move-xen-p2m-map.patch: Move xen p2m map initialization to
+  xen_kdump_p2m (FATE#316467).
+- crash-use-xen_machine_addr-command.patch: Use XEN_MACHINE_ADDR
+  command flag instead of overriding readmem (FATE#316467).
+- crash-move-xen-elf-note-processing.patch: Move Xen ELF note
+  processing to xen_dom0.c (FATE#316467).
+- crash-add-xen-dom0-support-for-kdump.patch: Add Xen Dom0 support
+  for kdump compressed files (FATE#316467).
+
+---
+Tue Jul 21 15:18:29 UTC 2015 - ptesa...@suse.com
@@ -166,11 +236,2 @@
-  - Introduction of the "dis -f " option, which 
-disassembles from the target address until the end of the
-function.
-  - Introduction of the "dis -s " option, which displays
-the filename and line number that is associated with the
-specified text location, fol

commit lpe for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package lpe for openSUSE:Factory checked in 
at 2017-05-31 12:19:36

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


Package is "lpe"

Wed May 31 12:19:36 2017 rev:2 rq:499594 version:1.2.8

Changes:

--- /work/SRC/openSUSE:Factory/lpe/lpe.changes  2016-07-09 09:22:00.0 
+0200
+++ /work/SRC/openSUSE:Factory/.lpe.new/lpe.changes 2017-05-31 
12:20:15.604014076 +0200
@@ -1,0 +2,6 @@
+Mon May 29 19:39:34 UTC 2017 - dims...@opensuse.org
+
+- Change RPM group to Productivity/Editors/Other: put the editor
+  next to all the others.
+
+---



Other differences:
--
++ lpe.spec ++
--- /var/tmp/diff_new_pack.agEf4k/_old  2017-05-31 12:20:16.551880270 +0200
+++ /var/tmp/diff_new_pack.agEf4k/_new  2017-05-31 12:20:16.555879706 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package lpe
 #
-# Copyright (c) 2015 SUSE LINUX Products 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
@@ -15,19 +15,20 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:  lpe
 Version:   1.2.8
 Release:   0
-License:   GPL-2.0
 Summary:   Small programming text editor
+License:GPL-2.0
+Group:  Productivity/Editors/Other
 Url:   https://packages.qa.debian.org/l/lpe.html
-Group: Application/Editors
 Source:
http://http.debian.net/debian/pool/main/l/lpe/%{name}_%{version}.orig.tar.xz
 Patch: drop_gettext_version.patch
-BuildRequires: slang-devel
+BuildRequires:  libtool
 BuildRequires: ncurses-devel
+BuildRequires:  slang-devel
 BuildRequires: xz
-BuildRequires: libtool
 BuildRoot: %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -67,3 +68,5 @@
 %{_mandir}/man1/lpe.1*
 %dir %{_mandir}/bg/
 %dir %{_mandir}/bg/man1
+
+%changelog




commit xgalaga++ for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package xgalaga++ for openSUSE:Factory 
checked in at 2017-05-31 12:20:32

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


Package is "xgalaga++"

Wed May 31 12:20:32 2017 rev:2 rq:499763 version:0.8.4

Changes:

--- /work/SRC/openSUSE:Factory/xgalaga++/xgalaga++.changes  2014-12-03 
22:52:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.xgalaga++.new/xgalaga++.changes 2017-05-31 
12:20:33.561479104 +0200
@@ -1,0 +2,6 @@
+Sat May 27 04:58:50 UTC 2017 - bwiedem...@suse.com
+
+- Add reproducible.patch to sort input files to make build reproducible
+  (boo#1041090)
+
+---

New:

  reproducible.patch



Other differences:
--
++ xgalaga++.spec ++
--- /var/tmp/diff_new_pack.tNyDRq/_old  2017-05-31 12:20:34.149396110 +0200
+++ /var/tmp/diff_new_pack.tNyDRq/_new  2017-05-31 12:20:34.149396110 +0200
@@ -26,6 +26,8 @@
 Source0:http://marc.mongenet.ch/OSS/XGalaga/%{name}_%{version}.tar.gz
 Source1:%{name}.desktop
 Source2:%{name}.png
+# PATCH-FIX-UPSTREAM -- TODO
+Patch0: reproducible.patch
 %if 0%{?suse_version}
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  update-desktop-files
@@ -42,6 +44,7 @@
 
 %prep
 %setup -q -n %{name}-%{version}
+%patch0 -p1
 
 # Adjust Highscore
 sed -i -e 's|/usr/local|/usr/|' \

++ reproducible.patch ++
Index: xgalaga++-0.8.4/Makefile
===
--- xgalaga++-0.8.4.orig/Makefile
+++ xgalaga++-0.8.4/Makefile
@@ -124,7 +124,7 @@ CXXOPTS = $(GOAL_OPTS) $(COMPILE_OPTS) $
 LDOPTS = $(GOAL_OPTS) $(LNK_LIBS)
 
 # source files in this project
-sources := $(wildcard $(srcdir)/*.$(SOURCE_SUFFIX))
+sources := $(sort $(wildcard $(srcdir)/*.$(SOURCE_SUFFIX)))
 
 # object files in this project
 objs := $(notdir $(sources))




commit tbb for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package tbb for openSUSE:Factory checked in 
at 2017-05-31 12:20:01

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


Package is "tbb"

Wed May 31 12:20:01 2017 rev:8 rq:499650 version:2017_20170412

Changes:

--- /work/SRC/openSUSE:Factory/tbb/tbb.changes  2017-05-24 16:52:12.075064140 
+0200
+++ /work/SRC/openSUSE:Factory/.tbb.new/tbb.changes 2017-05-31 
12:20:27.730302265 +0200
@@ -1,0 +2,5 @@
+Tue May 30 09:11:27 UTC 2017 - bwiedem...@suse.com
+
+- Add reproducible.patch to not add build hostname+kernel to binary
+
+---

New:

  reproducible.patch



Other differences:
--
++ tbb.spec ++
--- /var/tmp/diff_new_pack.bejTjf/_old  2017-05-31 12:20:28.350214755 +0200
+++ /var/tmp/diff_new_pack.bejTjf/_new  2017-05-31 12:20:28.354214190 +0200
@@ -29,6 +29,8 @@
 Source0:https://github.com/01org/tbb/archive/%{rel_ver}.tar.gz
 # PATCH-FIX-OPENSUSE optflags.patch -- Use rpm optflags
 Patch1: optflags.patch
+# PATCH-FIX-OPENSUSE reproducible.patch -- Do not compile build 
hostname+kernel into binary
+Patch2: reproducible.patch
 BuildRequires:  gcc-c++
 BuildRequires:  python-devel
 BuildRequires:  swig >= 3.0.6
@@ -89,6 +91,7 @@
 %prep
 %setup -q -n %{name}-%{rel_ver}
 %patch1 -p1
+%patch2 -p1
 
 %build
 make OPTFLAGS="%{optflags}" %{?_smp_mflags} tbb_build_prefix=obj

++ reproducible.patch ++
Index: tbb-2017_U6/build/version_info_linux.sh
===
--- tbb-2017_U6.orig/build/version_info_linux.sh
+++ tbb-2017_U6/build/version_info_linux.sh
@@ -20,10 +20,10 @@
 
 # Script used to generate version info string
 echo "#define __TBB_VERSION_STRINGS(N) \\"
-echo '#N": BUILD_HOST'"\t\t"`hostname -s`" ("`uname -m`")"'" ENDL \'
+echo '#N": BUILD_HOST'"\t\t"openSUSE" ("`uname -m`")"'" ENDL \'
 # find OS name in *-release and issue* files by filtering blank lines and 
lsb-release content out
 echo '#N": BUILD_OS'"\t\t"`lsb_release -sd 2>/dev/null | grep -ih '[a-z] ' - 
/etc/*release /etc/issue 2>/dev/null | head -1 | sed -e 's/["]//g'`'" ENDL 
\'
-echo '#N": BUILD_KERNEL'"\t"`uname -srv`'" ENDL \'
+echo '#N": BUILD_KERNEL'"\t"Linux'" ENDL \'
 echo '#N": BUILD_GCC'"\t\t"`g++ --version &1 | grep 'g++'`'" ENDL 
\'
 [ -z "$COMPILER_VERSION" ] || echo '#N": 
BUILD_COMPILER'"\t"$COMPILER_VERSION'" ENDL \'
 echo '#N": BUILD_LIBC'"\t"`getconf GNU_LIBC_VERSION | grep glibc | sed -e 
's/^glibc //'`'" ENDL \'



commit health-checker for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package health-checker for openSUSE:Factory 
checked in at 2017-05-31 12:19:56

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


Package is "health-checker"

Wed May 31 12:19:56 2017 rev:2 rq:499649 version:0.4

Changes:

--- /work/SRC/openSUSE:Factory/health-checker/health-checker.changes
2017-05-20 10:13:42.171547598 +0200
+++ /work/SRC/openSUSE:Factory/.health-checker.new/health-checker.changes   
2017-05-31 12:20:26.990406713 +0200
@@ -1,0 +2,5 @@
+Thu May 25 07:36:23 UTC 2017 - jeng...@inai.de
+
+- Resolve orthographical issues in descriptions.
+
+---



Other differences:
--
++ health-checker.spec ++
--- /var/tmp/diff_new_pack.0oGYWI/_old  2017-05-31 12:20:27.570324848 +0200
+++ /var/tmp/diff_new_pack.0oGYWI/_new  2017-05-31 12:20:27.574324284 +0200
@@ -32,25 +32,27 @@
 %{?systemd_requires}
 
 %description
-health-checker is a service running once at every reboot to verify,
+health-checker is a service running once at every reboot to verify
 that all important services are running. If it is the first reboot after
 an update, an automatic rollback to the last working snapshot is made.
 If this is not after an update, a reboot is made. If this does not help,
 the services will be disabled.
-This package does not contain any checks, for this, additional
+This package does not contain any checks. For this, additional
 plugins for different products are needed.
 
 %package plugins-caasp
 Summary:  Health-checker plugins for SUSE CaaS Platform
+Group:  System/Base
 Requires: %{name} >= %{version}
 Provides: health-checker-plugins = 1.0
 
 %description plugins-caasp
 This package contains health-checker plugins for testing that
-SUSE CaaS Platform did boot correct.
+the SUSE CaaS Platform did boot correctly.
 
 %package testing
 Summary:  Test plugin for health-checker
+Group:  System/Base
 Requires: %{name} >= %{version}
 Provides: health-checker-plugins = 1.0
 




commit libguestfs for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package libguestfs for openSUSE:Factory 
checked in at 2017-05-31 12:20:48

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


Package is "libguestfs"

Wed May 31 12:20:48 2017 rev:50 rq:499765 version:1.36.4

Changes:

--- /work/SRC/openSUSE:Factory/libguestfs/libguestfs.changes2017-05-16 
14:46:56.128121358 +0200
+++ /work/SRC/openSUSE:Factory/.libguestfs.new/libguestfs.changes   
2017-05-31 12:20:50.199130438 +0200
@@ -1,0 +2,6 @@
+Tue May 30 09:42:47 UTC 2017 - oher...@suse.de
+
+- Update to version 1.36.4
+  ... to fix build with gperf 3.1
+
+---

Old:

  libguestfs-1.32.4.tar.xz

New:

  libguestfs-1.36.4.tar.xz



Other differences:
--
++ libguestfs.spec ++
--- /var/tmp/diff_new_pack.SriyUA/_old  2017-05-31 12:20:51.674922107 +0200
+++ /var/tmp/diff_new_pack.SriyUA/_new  2017-05-31 12:20:51.678921542 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libguestfs
 #
-# Copyright (c) 2017 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2011 Michal Hrusecky 
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,50 +18,24 @@
 # needsbinariesforbuild
 
 
-Version:1.32.4
+Version:1.36.4
 Release:0
+%{ocaml_preserve_bytecode}
 
-%define opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0)
-%if !%opt
-# get rid of /usr/lib/rpm/find-debuginfo.sh
-# strip kills the bytecode part of ELF binaries
-# see also NO_BRP_STRIP_DEBUG in install section
-%undefine _build_create_debug
-%endif
-
-# disable certain features for a SLES11 build
-# in Virtualization repo in OBS they're reenabled via prjconf
-%if %suse_version == 1110
-%bcond_with ocaml_bindings
-%bcond_with lua_bindings
-%bcond_with python_bindings
-%bcond_with perl_bindings
-%bcond_with hivex
-%bcond_with zerofree
-%else
 %bcond_without ocaml_bindings
 %bcond_without lua_bindings
 %bcond_without python_bindings
 %bcond_without perl_bindings
 %bcond_without hivex
 %bcond_without zerofree
-%endif
 
 %bcond_without fuse
 
-%if %suse_version > 1210
 %bcond_without ruby_bindings
-%else
-%bcond_with ruby_bindings
-%endif
 
 %bcond_without p2v
 
-%if %suse_version >= 1230
 %bcond_without bash_completion
-%else
-%bcond_with bash_completion
-%endif
 # The following defines are overridden in the individual subpackages
 %define _configure_fuse --disable-fuse
 %define _configure_lua --disable-lua
@@ -70,12 +44,7 @@
 %define _configure_python --disable-python
 %define _configure_ruby --disable-ruby
 
-# /lib/udev is a symlink in 12.3+, package the full directory
-%if %suse_version > 1220
 %define udevrulesdir /usr/lib/udev/rules.d
-%else
-%define udevrulesdir /lib/udev/rules.d
-%endif
 #
 # use 'env LIBGUESTFS_HV=/path/to/kvm libguestfs-test-tool' to verify
 %define kvm_binary /bin/false
@@ -122,18 +91,13 @@
 BuildRequires:  gperf
 BuildRequires:  libacl-devel
 BuildRequires:  libcap-devel
-%if %suse_version >= 1220
 BuildRequires:  libconfig-devel
-%endif
 BuildRequires:  libtool
 BuildRequires:  libvirt-devel >= 0.10.2
 BuildRequires:  libxml2-devel
 BuildRequires:  ncurses-devel
 %if %{with perl_bindings}
 BuildRequires:  perl(Module::Build)
-%if %suse_version < 1140
-BuildRequires:  perl-macros
-%endif
 %endif
 BuildRequires:  createrepo
 BuildRequires:  db48-utils
@@ -143,13 +107,15 @@
 BuildRequires:  qemu-tools
 BuildRequires:  readline-devel
 BuildRequires:  supermin >= 5.1.6
+BuildRequires:  pkgconfig(dbus-1)
+BuildRequires:  pkgconfig(yajl) >= 2.0.4
 # Required to build tools, its independent from bindings
 BuildRequires:  glib2-devel
 BuildRequires:  ocaml
 BuildRequires:  ocaml-findlib
 
 #
-BuildRequires:  ocaml-rpm-macros >= 4.02.1
+BuildRequires:  ocaml-rpm-macros >= 4.03
 %if %{with ocaml_bindings}
 %define _configure_ocaml --enable-ocaml
 %endif
@@ -278,9 +244,9 @@
 %if %{with ocaml_bindings}
 %package -n ocaml-libguestfs
 Summary:Provides OCaml support for libguestfs
+#
 License:GPL-2.0
 Group:  System/Filesystems
-#
 
 %description -n ocaml-libguestfs
 Allows OCaml scripts to directly use libguestfs.
@@ -393,10 +359,8 @@
 BuildRequires:  gawk
 BuildRequires:  genisoimage
 BuildRequires:  glibc
-BuildRequires:  grep
-%if %suse_version > 1210
 BuildRequires:  gptfdisk
-%endif
+BuildRequires:  grep
 BuildRequires:  gzip
 BuildRequires:  initviocons
 BuildRequires:  iproute2
@@ -420,12 +384,8 @@
 %ifarch %ix86 x86_64
 BuildRequires:  syslinux
 %endif
-%if %suse_version >= 1210
 BuildRequires:  systemd
 BuildRequires:  systemd-sysvinit
-%else
-BuildRequires:  sysvinit

commit codec2 for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package codec2 for openSUSE:Factory checked 
in at 2017-05-31 12:20:24

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


Package is "codec2"

Wed May 31 12:20:24 2017 rev:2 rq:499754 version:0.6

Changes:

--- /work/SRC/openSUSE:Factory/codec2/codec2.changes2017-03-28 
15:21:32.519346249 +0200
+++ /work/SRC/openSUSE:Factory/.codec2.new/codec2.changes   2017-05-31 
12:20:32.609613475 +0200
@@ -1,0 +2,11 @@
+Tue May 30 12:25:22 UTC 2017 - mplus...@suse.com
+
+- Update licensing information 
+
+---
+Sun Apr 16 09:10:20 UTC 2017 - mar...@gmx.de
+
+- Update to version 0.6:
+  * No upstream changelog available
+
+---

Old:

  codec2-0.5.1.tar.xz

New:

  codec2-0.6.tar.xz



Other differences:
--
++ codec2.spec ++
--- /var/tmp/diff_new_pack.JWoyFg/_old  2017-05-31 12:20:33.333511285 +0200
+++ /var/tmp/diff_new_pack.JWoyFg/_new  2017-05-31 12:20:33.337510721 +0200
@@ -16,13 +16,14 @@
 #
 
 
-%define libname lib%{name}-0_5
+%define libname lib%{name}-0_6
 Name:   codec2
-Version:0.5.1
+Version:0.6
 Release:0
 Summary:Low bit rate speech codec
 # octave and asterisk directories contain GPL-2.0 licensed code but its not
-# used
+# used build, only used in examples subpackage. src/horus_l2.* is not free
+# for non-commercial usage but is not used either.
 License:LGPL-2.1
 Group:  Productivity/Hamradio/Other
 Url:http://rowetel.com/codec2.html
@@ -31,6 +32,7 @@
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
 BuildRequires:  pkgconfig
+BuildRequires:  pkgconfig(samplerate)
 BuildRequires:  pkgconfig(speex)
 BuildRequires:  pkgconfig(speexdsp)
 
@@ -40,7 +42,6 @@
 
 %package -n %{libname}
 Summary:Low bit rate speech codec
-Summary:Low bit rate speech codec
 License:LGPL-2.1
 Group:  System/Libraries
 
@@ -61,6 +62,7 @@
 %package examples
 Summary:Example code for Codec 2
 License:GPL-2.0 AND LGPL-2.1
+Group:  Productivity/Hamradio/Other
 Requires:   %{name}-devel = %{version}
 BuildArch:  noarch
 
@@ -69,6 +71,9 @@
 
 %prep
 %setup -q
+# horus_l2.* is not needed for building and has to be removed due to
+# licensing reasons
+rm -rf src/horus_l2.*
 
 %build
 %cmake \
@@ -77,7 +82,6 @@
   -Wno-dev
 make %{?_smp_mflags}
 
-
 %install
 %cmake_install
 
@@ -91,7 +95,7 @@
 
 Name:   codec2
 Version:%{version}
-License:GPL-2.0 AND LGPL-2.1
+License:GPL-2.0 and LGPL-2.1
 Description: Low bit rate speech codec for two-way radio
 Cflags: -I\${includedir}
 Libs: -L\${libdir} -l%{name}
@@ -107,6 +111,8 @@
 %{_bindir}/c2demo
 %{_bindir}/c2enc
 %{_bindir}/c2sim
+%{_bindir}/drs232
+%{_bindir}/drs232_ldpc
 %{_bindir}/fdmdv_demod
 %{_bindir}/fdmdv_get_test_bits
 %{_bindir}/fdmdv_interleave
@@ -114,6 +120,7 @@
 %{_bindir}/fdmdv_put_test_bits
 %{_bindir}/fec_dec
 %{_bindir}/fec_enc
+%{_bindir}/fsk_mod
 %{_bindir}/fm_demod
 %{_bindir}/insert_errors
 

++ codec2-0.5.1.tar.xz -> codec2-0.6.tar.xz ++
/work/SRC/openSUSE:Factory/codec2/codec2-0.5.1.tar.xz 
/work/SRC/openSUSE:Factory/.codec2.new/codec2-0.6.tar.xz differ: char 26, line 1




commit python-testtools for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package python-testtools for 
openSUSE:Factory checked in at 2017-05-31 12:19:28

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


Package is "python-testtools"

Wed May 31 12:19:28 2017 rev:20 rq:499451 version:2.2.0

Changes:

--- /work/SRC/openSUSE:Factory/python-testtools/python-testtools.changes
2017-05-22 18:08:26.773874119 +0200
+++ /work/SRC/openSUSE:Factory/.python-testtools.new/python-testtools.changes   
2017-05-31 12:20:10.932673507 +0200
@@ -1,0 +2,6 @@
+Mon May 22 08:08:02 UTC 2017 - tbecht...@suse.com
+
+- Revert "Require python-unittest2 only for python2". We have now
+  a python3-unittest2 package which should be used.
+
+---



Other differences:
--
++ python-testtools.spec ++
--- /var/tmp/diff_new_pack.ty3VZL/_old  2017-05-31 12:20:12.820407024 +0200
+++ /var/tmp/diff_new_pack.ty3VZL/_new  2017-05-31 12:20:12.820407024 +0200
@@ -36,9 +36,7 @@
 Requires:   python-python-mimeparse
 Requires:   python-six >= 1.4.0
 Requires:   python-traceback2
-%ifpython2
 Requires:   python-unittest2 >= 1.0.0
-%endif
 Recommends: python-fixtures >= 1.3.0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch




commit honggfuzz for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package honggfuzz for openSUSE:Factory 
checked in at 2017-05-31 12:19:21

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


Package is "honggfuzz"

Wed May 31 12:19:21 2017 rev:4 rq:498984 version:0.9

Changes:

--- /work/SRC/openSUSE:Factory/honggfuzz/honggfuzz.changes  2017-04-30 
21:24:46.453286002 +0200
+++ /work/SRC/openSUSE:Factory/.honggfuzz.new/honggfuzz.changes 2017-05-31 
12:20:06.869247120 +0200
@@ -1,0 +2,7 @@
+Mon May 29 12:12:59 UTC 2017 - bwiedem...@suse.com
+
+- Add reproducible.patch to sort input files to make build reproducible
+  (boo#1041090)
+- Add gcc7.patch to make it build on GCC7 in Factory
+
+---

New:

  gcc7.patch
  reproducible.patch



Other differences:
--
++ honggfuzz.spec ++
--- /var/tmp/diff_new_pack.p1RLTv/_old  2017-05-31 12:20:08.021084521 +0200
+++ /var/tmp/diff_new_pack.p1RLTv/_new  2017-05-31 12:20:08.025083957 +0200
@@ -24,6 +24,10 @@
 Group:  Development/Tools/Other
 Url:https://google.github.io/honggfuzz/
 Source: 
https://github.com/google/honggfuzz/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM https://github.com/google/honggfuzz/pull/144
+Patch0: reproducible.patch
+# PATCH-FIX-UPSTREAM Make this package compile with gcc7 
https://github.com/google/honggfuzz/issues/145
+Patch1: gcc7.patch
 BuildRequires:  binutils-devel
 BuildRequires:  libunwind-devel
 BuildRequires:  zlib-devel
@@ -35,6 +39,8 @@
 
 %prep
 %setup -q
+%patch0 -p1
+%patch1 -p1
 
 %build
 export CFLAGS="%{optflags}"

++ gcc7.patch ++
Index: honggfuzz-0.9/Makefile
===
--- honggfuzz-0.9.orig/Makefile
+++ honggfuzz-0.9/Makefile
@@ -24,7 +24,7 @@
 CC ?= gcc
 LD = $(CC)
 BIN := honggfuzz
-COMMON_CFLAGS := -D_GNU_SOURCE -Wall -Werror -Wframe-larger-than=131072
+COMMON_CFLAGS := -D_GNU_SOURCE -Wall -Wframe-larger-than=131072
 COMMON_LDFLAGS := -lm
 COMMON_SRCS := $(sort $(wildcard *.c))
 CFLAGS ?= -O3
@@ -37,8 +37,7 @@ ifeq ($(OS),Linux)
 ARCH := LINUX
 
 ARCH_CFLAGS := -std=c11 -I/usr/local/include -I/usr/include \
-   -Wextra -Wno-initializer-overrides -Wno-override-init \
-   -Wno-unknown-warning-option -funroll-loops \
+   -Wextra -Wno-override-init -funroll-loops \
-D_FILE_OFFSET_BITS=64
 ARCH_LDFLAGS := -L/usr/local/include -L/usr/include \
 -lpthread -lunwind-ptrace -lunwind-generic -lbfd -lopcodes 
-lrt
++ reproducible.patch ++
Index: honggfuzz-0.9/Makefile
===
--- honggfuzz-0.9.orig/Makefile
+++ honggfuzz-0.9/Makefile
@@ -26,7 +26,7 @@ LD = $(CC)
 BIN := honggfuzz
 COMMON_CFLAGS := -D_GNU_SOURCE -Wall -Werror -Wframe-larger-than=131072
 COMMON_LDFLAGS := -lm
-COMMON_SRCS := $(wildcard *.c)
+COMMON_SRCS := $(sort $(wildcard *.c))
 CFLAGS ?= -O3
 LDFLAGS ?=
 
@@ -42,7 +42,7 @@ ifeq ($(OS),Linux)
-D_FILE_OFFSET_BITS=64
 ARCH_LDFLAGS := -L/usr/local/include -L/usr/include \
 -lpthread -lunwind-ptrace -lunwind-generic -lbfd -lopcodes 
-lrt
-ARCH_SRCS := $(wildcard linux/*.c)
+ARCH_SRCS := $(sort $(wildcard linux/*.c))
 
 ifeq ("$(wildcard /usr/include/bfd.h)","")
 WARN_LIBRARY += binutils-devel
@@ -113,11 +113,11 @@ else ifeq ($(OS),Darwin)
 ifeq ($(MIG_RET),1)
 $(error mig failed to generate RPC code)
 endif
-ARCH_SRCS := $(wildcard mac/*.c)
+ARCH_SRCS := $(sort $(wildcard mac/*.c))
 # OS Darwin
 else
 ARCH := POSIX
-ARCH_SRCS := $(wildcard posix/*.c)
+ARCH_SRCS := $(sort $(wildcard posix/*.c))
 ARCH_CFLAGS := -std=c11 -I/usr/local/include -I/usr/include \
-Wextra -Wno-initializer-overrides -Wno-override-init \
-Wno-unknown-warning-option -Wno-unknown-pragmas \



commit libGLw for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package libGLw for openSUSE:Factory checked 
in at 2017-05-31 12:19:26

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


Package is "libGLw"

Wed May 31 12:19:26 2017 rev:14 rq:499012 version:8.0.0

Changes:

--- /work/SRC/openSUSE:Factory/libGLw/libGLw.changes2016-03-29 
14:50:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.libGLw.new/libGLw.changes   2017-05-31 
12:20:08.169063632 +0200
@@ -1,0 +2,6 @@
+Mon May 29 14:21:55 UTC 2017 - sndir...@suse.com
+
+- includes everything needed for missing sle issue entries:
+  fate #315643-315645, 319159-319161, 319618 (bsc#1041368) 
+
+---



Other differences:
--
++ libGLw.spec ++
--- /var/tmp/diff_new_pack.XkzeAA/_old  2017-05-31 12:20:09.536870545 +0200
+++ /var/tmp/diff_new_pack.XkzeAA/_new  2017-05-31 12:20:09.540869981 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libGLw
 #
-# 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
@@ -60,8 +60,8 @@
 
 %package -n %lname
 Summary:Xt OpenGL drawing area widget library
-Group:  System/Libraries
 # O/P added in 12.2
+Group:  System/Libraries
 Provides:   GLw%{libversion} = %version-%release
 Provides:   MesaGLw = %version-%release
 Obsoletes:  MesaGLw < %version-%release
@@ -84,8 +84,8 @@
 
 %package -n %lname_m
 Summary:Motif OpenGL drawing area widget library
-Group:  System/Libraries
 # O/P added in 12.2
+Group:  System/Libraries
 Provides:   GLw%{libversion} = %version-%release
 Provides:   MesaGLw = %version-%release
 Obsoletes:  MesaGLw < %version-%release




commit perl-Selenium-Remote-Driver for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package perl-Selenium-Remote-Driver for 
openSUSE:Factory checked in at 2017-05-31 12:18:56

Comparing /work/SRC/openSUSE:Factory/perl-Selenium-Remote-Driver (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Selenium-Remote-Driver.new (New)


Package is "perl-Selenium-Remote-Driver"

Wed May 31 12:18:56 2017 rev:5 rq:498861 version:1.20

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Selenium-Remote-Driver/perl-Selenium-Remote-Driver.changes
  2017-02-16 17:03:02.672880321 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Selenium-Remote-Driver.new/perl-Selenium-Remote-Driver.changes
 2017-05-31 12:19:56.898654618 +0200
@@ -1,0 +2,16 @@
+Sat May 27 06:33:45 UTC 2017 - co...@suse.com
+
+- updated to 1.20
+   see /usr/share/doc/packages/perl-Selenium-Remote-Driver/Changes
+
+  1.20   05-54-2017
+  [BUG FIXES]
+  - Shim use of name as find method for geckodriver
+  - Start up geckodriver/binary Firefox properly
+  - #309, #310: @syspete: Fix issues with dependencies
+  - #313, #312: @lukec: Handle saucelabs redirect during session create
+  
+  [NEW FEATURES]
+  - #307: @vitstradal: Re-use an existing session
+
+---

Old:

  Selenium-Remote-Driver-1.12.tar.gz

New:

  Selenium-Remote-Driver-1.20.tar.gz



Other differences:
--
++ perl-Selenium-Remote-Driver.spec ++
--- /var/tmp/diff_new_pack.Z2p16R/_old  2017-05-31 12:19:57.542563721 +0200
+++ /var/tmp/diff_new_pack.Z2p16R/_new  2017-05-31 12:19:57.546563157 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Selenium-Remote-Driver
-Version:1.12
+Version:1.20
 Release:0
 %define cpan_name Selenium-Remote-Driver
 Summary:Perl Client for Selenium Remote Driver
@@ -40,7 +40,7 @@
 BuildRequires:  perl(IO::Uncompress::Unzip) >= 2.030
 BuildRequires:  perl(JSON)
 BuildRequires:  perl(LWP::UserAgent)
-BuildRequires:  perl(List::MoreUtils)
+BuildRequires:  perl(List::Util) >= 1.33
 BuildRequires:  perl(Moo) >= 1.005
 BuildRequires:  perl(Moo::Role)
 BuildRequires:  perl(Sub::Install)
@@ -61,7 +61,7 @@
 Requires:   perl(IO::Uncompress::Unzip) >= 2.030
 Requires:   perl(JSON)
 Requires:   perl(LWP::UserAgent)
-Requires:   perl(List::MoreUtils)
+Requires:   perl(List::Util) >= 1.33
 Requires:   perl(Moo) >= 1.005
 Requires:   perl(Moo::Role)
 Requires:   perl(Sub::Install)
@@ -116,6 +116,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes ide-plugin.js README.md TAGS
+%doc Changes GPATH GRTAGS GTAGS ide-plugin.js README.md TAGS
 
 %changelog

++ Selenium-Remote-Driver-1.12.tar.gz -> Selenium-Remote-Driver-1.20.tar.gz 
++
 2623 lines of diff (skipped)




commit ocserv for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package ocserv for openSUSE:Factory checked 
in at 2017-05-31 12:19:14

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


Package is "ocserv"

Wed May 31 12:19:14 2017 rev:4 rq:498971 version:0.11.6

Changes:

--- /work/SRC/openSUSE:Factory/ocserv/ocserv.changes2017-01-25 
23:31:44.494744426 +0100
+++ /work/SRC/openSUSE:Factory/.ocserv.new/ocserv.changes   2017-05-31 
12:20:03.105778390 +0200
@@ -1,0 +2,6 @@
+Thu May 11 08:35:51 UTC 2017 - dims...@opensuse.org
+
+- Use readline (current) instead of readline5:
+  + Replace readline5-devel BuildRequires with readline-devel.
+
+---



Other differences:
--
++ ocserv.spec ++
--- /var/tmp/diff_new_pack.Tndi7S/_old  2017-05-31 12:20:04.737548042 +0200
+++ /var/tmp/diff_new_pack.Tndi7S/_new  2017-05-31 12:20:04.741547477 +0200
@@ -54,7 +54,7 @@
 BuildRequires:  pam-devel
 BuildRequires:  pkgconfig
 BuildRequires:  protobuf-c
-BuildRequires:  readline5-devel
+BuildRequires:  readline-devel
 BuildRequires:  systemd-devel
 # /usr/bin/certtool for generating certificates
 Requires:   gnutls >= 3.1.10




commit ghc for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package ghc for openSUSE:Factory checked in 
at 2017-05-31 12:19:10

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


Package is "ghc"

Wed May 31 12:19:10 2017 rev:55 rq:498960 version:8.0.2

Changes:

--- /work/SRC/openSUSE:Factory/ghc/ghc.changes  2017-05-09 18:06:27.136893220 
+0200
+++ /work/SRC/openSUSE:Factory/.ghc.new/ghc.changes 2017-05-31 
12:20:01.681979381 +0200
@@ -1,0 +2,8 @@
+Sun May 28 12:52:06 UTC 2017 - mimi...@gmail.com
+
+- make compactible with new upstream macros 
+- added patches for more stable abi:
+* buildpath-abi-stability.patch
+* reproducible-tmp-names.patch
+
+---

New:

  buildpath-abi-stability.patch
  reproducible-tmp-names.patch



Other differences:
--
++ ghc.spec ++
--- /var/tmp/diff_new_pack.HU5S9W/_old  2017-05-31 12:20:02.825817911 +0200
+++ /var/tmp/diff_new_pack.HU5S9W/_new  2017-05-31 12:20:02.833816782 +0200
@@ -78,6 +78,10 @@
 Patch31:ghc-pie.patch
 # PATCH-FIX-OPENSUSE ghc-8.0.2-Cabal-dynlibdir.patch -- Fix shared library 
directory location.
 Patch100:   ghc-8.0.2-Cabal-dynlibdir.patch
+# PATCH-FIX-UPSTREAM buildpath-abi-stability.patch -- debian patch for more 
stable abi-1
+Patch110:   buildpath-abi-stability.patch
+# PATCH-FIX-UPSTREAM reproducible-tmp-names.patch -- debian patch for more 
stable abi-2
+Patch111:   reproducible-tmp-names.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -119,30 +123,30 @@
 %global ghc_pkg_c_deps ghc-compiler = %{ghc_version_override}-%{release}
 
 %if %{defined ghclibdir}
-%ghc_lib_subpackage Cabal-1.24.2.0
-%ghc_lib_subpackage array-0.5.1.1
-%ghc_lib_subpackage -c gmp-devel,libffi-devel,libdw-devel,libelf-devel 
base-4.9.1.0
-%ghc_lib_subpackage binary-0.8.3.0
-%ghc_lib_subpackage bytestring-0.10.8.1
-%ghc_lib_subpackage containers-0.5.7.1
-%ghc_lib_subpackage deepseq-1.4.2.0
-%ghc_lib_subpackage directory-1.3.0.0
-%ghc_lib_subpackage filepath-1.4.1.1
-%ghc_lib_subpackage -x ghc-%{ghc_version_override}
-%ghc_lib_subpackage ghc-boot-%{ghc_version_override}
-%ghc_lib_subpackage ghc-boot-th-%{ghc_version_override}
-%ghc_lib_subpackage -x ghci-%{ghc_version_override}
-%ghc_lib_subpackage haskeline-0.7.3.0
-%ghc_lib_subpackage hoopl-3.10.2.1
-%ghc_lib_subpackage hpc-0.6.0.3
-%ghc_lib_subpackage pretty-1.1.3.3
-%ghc_lib_subpackage process-1.4.3.0
-%ghc_lib_subpackage template-haskell-2.11.1.0
-%ghc_lib_subpackage -c ncurses-devel terminfo-0.4.0.2
-%ghc_lib_subpackage time-1.6.0.1
-%ghc_lib_subpackage transformers-0.5.2.0
-%ghc_lib_subpackage unix-2.7.2.1
-%ghc_lib_subpackage xhtml-3000.2.1
+%ghc_lib_subpackage -d Cabal-1.24.2.0
+%ghc_lib_subpackage -d array-0.5.1.1
+%ghc_lib_subpackage -d -c gmp-devel,libffi-devel,libdw-devel,libelf-devel 
base-4.9.1.0
+%ghc_lib_subpackage -d binary-0.8.3.0
+%ghc_lib_subpackage -d bytestring-0.10.8.1
+%ghc_lib_subpackage -d containers-0.5.7.1
+%ghc_lib_subpackage -d deepseq-1.4.2.0
+%ghc_lib_subpackage -d directory-1.3.0.0
+%ghc_lib_subpackage -d filepath-1.4.1.1
+%ghc_lib_subpackage -d -x ghc-%{ghc_version_override}
+%ghc_lib_subpackage -d ghc-boot-%{ghc_version_override}
+%ghc_lib_subpackage -d ghc-boot-th-%{ghc_version_override}
+%ghc_lib_subpackage -d -x ghci-%{ghc_version_override}
+%ghc_lib_subpackage -d haskeline-0.7.3.0
+%ghc_lib_subpackage -d hoopl-3.10.2.1
+%ghc_lib_subpackage -d hpc-0.6.0.3
+%ghc_lib_subpackage -d pretty-1.1.3.3
+%ghc_lib_subpackage -d process-1.4.3.0
+%ghc_lib_subpackage -d template-haskell-2.11.1.0
+%ghc_lib_subpackage -d -c ncurses-devel terminfo-0.4.0.2
+%ghc_lib_subpackage -d time-1.6.0.1
+%ghc_lib_subpackage -d transformers-0.5.2.0
+%ghc_lib_subpackage -d unix-2.7.2.1
+%ghc_lib_subpackage -d xhtml-3000.2.1
 %endif
 
 %global version %{ghc_version_override}
@@ -168,6 +172,8 @@
 %patch30 -p1
 %patch31 -p1
 %patch100 -p1
+%patch110 -p1
+%patch111 -p1
 
 %build
 # Check if bootstrap is required, i.e. version is different from ghc's version

++ buildpath-abi-stability.patch ++
Index: ghc-7.10.1/compiler/iface/MkIface.hs
===
--- ghc-7.10.1.orig/compiler/iface/MkIface.hs   2015-05-17 20:34:02.808643844 
+0200
+++ ghc-7.10.1/compiler/iface/MkIface.hs2015-05-17 20:34:02.804643799 
+0200
@@ -611,7 +611,7 @@
iface_hash <- computeFingerprint putNameLiterally
   (mod_hash,
ann_fn (mkVarOcc "module"),  -- See mkIfaceAnnCache
-   mi_usages iface0,
+   usages,
sorted_deps,
mi_hpc iface0)
 
@@ -644,6 +6

commit sshfs for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package sshfs for openSUSE:Factory checked 
in at 2017-05-31 12:19:17

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


Package is "sshfs"

Wed May 31 12:19:17 2017 rev:27 rq:498976 version:2.8

Changes:

--- /work/SRC/openSUSE:Factory/sshfs/sshfs.changes  2016-10-19 
13:15:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.sshfs.new/sshfs.changes 2017-05-31 
12:20:04.961516425 +0200
@@ -1,0 +2,7 @@
+Sun May 28 08:59:38 UTC 2017 - t...@opensuse.org
+
+- Spec file:
+  Correct URL from Sourceforge to GitHub (the SF URL is redirected
+  to GH anyway)
+
+---



Other differences:
--
++ sshfs.spec ++
--- /var/tmp/diff_new_pack.vRo74O/_old  2017-05-31 12:20:06.681273656 +0200
+++ /var/tmp/diff_new_pack.vRo74O/_new  2017-05-31 12:20:06.685273091 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package sshfs
 #
-# 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,7 +22,7 @@
 Summary:Filesystem client based on SSH file transfer protocol
 License:GPL-2.0+
 Group:  System/Filesystems
-Url:http://fuse.sourceforge.net/sshfs.html
+Url:https://github.com/libfuse/sshfs
 Source: 
https://github.com/libfuse/sshfs/releases/download/%{name}_%{version}/%{name}-%{version}.tar.gz
 BuildRequires:  automake
 BuildRequires:  fuse-devel




commit liberasurecode for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package liberasurecode for openSUSE:Factory 
checked in at 2017-05-31 12:19:00

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


Package is "liberasurecode"

Wed May 31 12:19:00 2017 rev:3 rq:498876 version:1.4.0

Changes:

--- /work/SRC/openSUSE:Factory/liberasurecode/liberasurecode.changes
2017-02-14 00:43:40.294298046 +0100
+++ /work/SRC/openSUSE:Factory/.liberasurecode.new/liberasurecode.changes   
2017-05-31 12:19:58.110483551 +0200
@@ -4 +4 @@
-- Update RPM group and summaries.
+- Update RPM group and summaries (bsc#1041161)



Other differences:
--
++ liberasurecode.spec ++
--- /var/tmp/diff_new_pack.blMA25/_old  2017-05-31 12:19:58.826382491 +0200
+++ /var/tmp/diff_new_pack.blMA25/_new  2017-05-31 12:19:58.830381927 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package liberasurecode
 #
-# 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




commit kate4-parts for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package kate4-parts for openSUSE:Factory 
checked in at 2017-05-31 12:19:05

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


Package is "kate4-parts"

Wed May 31 12:19:05 2017 rev:5 rq:498911 version:4.14.3

Changes:

--- /work/SRC/openSUSE:Factory/kate4-parts/kate4-parts.changes  2017-02-06 
15:22:15.359356852 +0100
+++ /work/SRC/openSUSE:Factory/.kate4-parts.new/kate4-parts.changes 
2017-05-31 12:19:58.998358214 +0200
@@ -1,0 +2,5 @@
+Sun May 28 12:40:55 UTC 2017 - wba...@tmo.at
+
+- Add gcc7-fix.patch to fix build with GCC7
+
+---

New:

  gcc7-fix.patch



Other differences:
--
++ kate4-parts.spec ++
--- /var/tmp/diff_new_pack.2muGz5/_old  2017-05-31 12:20:00.346167951 +0200
+++ /var/tmp/diff_new_pack.2muGz5/_new  2017-05-31 12:20:00.350167386 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kate4-parts
 #
-# 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
@@ -24,6 +24,8 @@
 Group:  Productivity/Editors/Other
 Url:http://www.kde.org/
 Source0:kate-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM gcc7-fix.patch -- fix build with GCC7
+Patch:  gcc7-fix.patch
 BuildRequires:  libkactivities-devel
 BuildRequires:  libkde4-devel >= %version
 BuildRequires:  libqjson-devel
@@ -46,6 +48,7 @@
 
 %prep
 %setup -q -n kate-%{version}
+%patch -p1
 
 %build
 %ifarch ppc64

++ gcc7-fix.patch ++
>From 4d1a7c60f6126faaea0e4efb86471f9df45d1e2e Mon Sep 17 00:00:00 2001
From: Wolfgang Bauer 
Date: Sun, 28 May 2017 14:35:41 +0200
Subject: [PATCH] Make compile with MSVC2013 (and GCC7)

Fixes an error when compiling with GCC7:
error: call of overloaded 'abs(uint)' is ambiguous

Backport of 
https://cgit.kde.org/ktexteditor.git/commit/?id=8b2820b4c95284337b5713ce7f548a456c25279e
from the KF5 ktexteditor.
---
 part/view/kateviewhelpers.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/part/view/kateviewhelpers.cpp b/part/view/kateviewhelpers.cpp
index 8ad87710e..fa5ff03e5 100644
--- a/part/view/kateviewhelpers.cpp
+++ b/part/view/kateviewhelpers.cpp
@@ -1703,7 +1703,7 @@ void KateIconBorder::paintBorder (int /*x*/, int y, int 
/*width*/, int height)
   if (realLine > -1) {
 if (m_viewInternal->cache()->viewLine(z).startCol() == 0) {
   if (m_viRelLineNumbersOn && m_view->viInputMode()) {
-int diff = abs(realLine - currentLine);
+int diff = abs(realLine - static_cast(currentLine));
 if (diff > 0) {
   p.drawText( lnX + m_maxCharWidth / 2, y, lnWidth - 
m_maxCharWidth, h,
   Qt::TextDontClip|Qt::AlignRight|Qt::AlignVCenter, 
QString("%1").arg(diff) );
-- 
2.12.3




commit ghc-rpm-macros for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package ghc-rpm-macros for openSUSE:Factory 
checked in at 2017-05-31 12:19:07

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


Package is "ghc-rpm-macros"

Wed May 31 12:19:07 2017 rev:32 rq:498959 version:1.7.1

Changes:

--- /work/SRC/openSUSE:Factory/ghc-rpm-macros/ghc-rpm-macros.changes
2017-02-28 23:50:54.330427913 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-rpm-macros.new/ghc-rpm-macros.changes   
2017-05-31 12:20:00.534141415 +0200
@@ -1,0 +2,6 @@
+Mon May 29 06:43:58 UTC 2017 - mimi...@gmail.com
+
+- update to 1.7.1
+- sync with upstream
+
+---

Old:

  ghc-rpm-macros-1.6.95.tar.xz

New:

  ghc-rpm-macros-1.7.1.tar.xz



Other differences:
--
++ ghc-rpm-macros.spec ++
--- /var/tmp/diff_new_pack.iNVWaD/_old  2017-05-31 12:20:01.398019466 +0200
+++ /var/tmp/diff_new_pack.iNVWaD/_new  2017-05-31 12:20:01.402018901 +0200
@@ -18,28 +18,23 @@
 
 %global macros_dir %{_sysconfdir}/rpm
 %global without_hscolour 1
-
 Name:   ghc-rpm-macros
-Version:1.6.95
+Version:1.7.1
 Release:0
-BuildArch:  noarch
 Summary:RPM Macros for building packages for GHC
 License:GPL-3.0+
 Group:  Development/Libraries/Other
-
 Url:https://fedoraproject.org/wiki/Haskell_SIG
-
 # source prepared manually from github.com/opensuse-haskell/ghc-rpm-macros
 Source0:%{name}-%{version}.tar.xz
-
 BuildRequires:  xz
 Requires:   rpm
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildArch:  noarch
 %if %{undefined without_hscolour}
 Requires:   hscolour
 %endif
 
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-
 %description
 A set of macros for building GHC packages following the openSUSE
 Haskell Guidelines.  ghc needs to be installed in
@@ -63,7 +58,7 @@
 Macros used when generating source Haskell rpm packages.
 
 %prep
-%setup -q -n %{name}-%{version}
+%setup -q
 
 %build
 echo no build stage needed
@@ -74,6 +69,7 @@
 install -p -D -m 0644 macros.ghc-suse 
%{buildroot}/%{macros_dir}/macros.ghc-suse
 install -p -D -m 0755 ghc-deps.sh %{buildroot}/%{_prefix}/lib/rpm/ghc-deps.sh
 install -p -D -m 0755 cabal-tweak-dep-ver 
%{buildroot}/%{_bindir}/cabal-tweak-dep-ver
+install -p -D -m 0755 cabal-tweak-drop-dep 
%{buildroot}/%{_bindir}/cabal-tweak-drop-dep
 install -p -D -m 0755 cabal-tweak-flag %{buildroot}/%{_bindir}/cabal-tweak-flag
 install -p -D -m 0755 ghc-pkg-wrapper 
%{buildroot}/%{_prefix}/lib/rpm/ghc-pkg-wrapper
 install -p -D -m 0644 ghc.attr 
%{buildroot}/%{_prefix}/lib/rpm/fileattrs/ghc.attr
@@ -87,6 +83,7 @@
 %{_prefix}/lib/rpm/ghc-deps.sh
 %{_bindir}/cabal-tweak-dep-ver
 %{_bindir}/cabal-tweak-flag
+%{_bindir}/cabal-tweak-drop-dep
 %{_prefix}/lib/rpm/ghc-pkg-wrapper
 %{_prefix}/lib/rpm/fileattrs/ghc.attr
 %{_prefix}/lib/rpm/ghc-dirs.sh

++ ghc-rpm-macros-1.6.95.tar.xz -> ghc-rpm-macros-1.7.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ghc-rpm-macros-1.6.95/README 
new/ghc-rpm-macros-1.7.1/README
--- old/ghc-rpm-macros-1.6.95/README2016-12-19 09:57:45.0 +0100
+++ new/ghc-rpm-macros-1.7.1/README 2017-05-28 12:18:49.801151295 +0200
@@ -1,4 +1,7 @@
-This repo is used for latest rpm packaging of ghc and Haskell packages.
+This repo is used for the latest development rpm packaging of ghc and
+Haskell packages.
 
-It is used for experimental packaging for new versions of ghc
-and as upstream to Fedora and OpenSUSE Haskell packaging.
+It is used for packaging for new versions of ghc
+and as an upstream for Fedora and OpenSUSE Haskell packaging.
+
+The aim now is to make it work across multiple ghc versions.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ghc-rpm-macros-1.6.95/cabal-tweak-drop-dep 
new/ghc-rpm-macros-1.7.1/cabal-tweak-drop-dep
--- old/ghc-rpm-macros-1.6.95/cabal-tweak-drop-dep  1970-01-01 
01:00:00.0 +0100
+++ new/ghc-rpm-macros-1.7.1/cabal-tweak-drop-dep   2017-05-28 
12:16:53.830745496 +0200
@@ -0,0 +1,30 @@
+#!/bin/sh
+
+set -e +x
+
+USAGE="Usage: $0 dep"
+
+if [ $# -ne 1 ]; then
+echo "$USAGE"
+exit 1
+fi
+
+DEP=$1
+
+CABALFILE=$(ls *.cabal)
+
+if [ $(echo $CABALFILE | wc -w) -ne 1 ]; then
+   echo "There needs to be one .cabal file in the current dir!"
+   exit 1
+fi
+
+if [ ! -f $CABALFILE.orig ]; then
+BACKUP=.orig
+fi
+
+if grep $DEP $CABALFILE | sed -e "s/$DEP//" | grep -q -e "[A-Za-z]"; then
+echo "$0: deleting whole $DEP lines not safe - try more precise pattern"
+exit 1
+fi
+
+sed -i$BACKUP -e

commit darktable for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package darktable for openSUSE:Factory 
checked in at 2017-05-31 12:18:43

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


Package is "darktable"

Wed May 31 12:18:43 2017 rev:69 rq:498853 version:2.2.5

Changes:

--- /work/SRC/openSUSE:Factory/darktable/darktable.changes  2017-05-06 
18:30:34.823362680 +0200
+++ /work/SRC/openSUSE:Factory/.darktable.new/darktable.changes 2017-05-31 
12:19:49.779659569 +0200
@@ -1,0 +2,35 @@
+Sun May 28 14:54:24 UTC 2017 - mrueck...@suse.de
+
+- update to 2.2.5
+  - New features:
+- When appending EXIF data to an exported image, do not fail if reading of 
EXIF from the original file fails
+- Support XYZ as proofing profile
+- Clear DerivedFrom from XMP before writing it
+- bauhaus: when using soft bounds, keep slider step constant
+  - Bugfixes:
+- Some GCC7 build fixes
+- cmstest: fix crash when missing XRandR extension.
+- Fix crash in Lua libs when collapsing libs
+- Mac packaging: some fixes
+- RawSpeed: TiffIFD: avoid double-free
+- Fix a few alloc-dealloc mismatches
+  - Base Support:
+- Canon EOS 77D
+- Canon EOS 9000D
+- Nikon D500 (14bit-uncompressed, 12bit-uncompressed)
+- Nikon D5600 (12bit-compressed, 12bit-uncompressed, 14bit-compressed, 
14bit-uncompressed)
+- Panasonic DC-FZ82 (4:3)
+- Panasonic DMC-FZ80 (4:3)
+- Panasonic DMC-FZ85 (4:3)
+- Panasonic DC-GH5 (4:3)
+  - White Balance Presets:
+- Pentax K-3 II
+  - Noise Profiles:
+- Nikon D500
+- Panasonic DMC-FZ300
+- Panasonic DMC-LX100
+- Pentax K-70
+- Sony ILCE-5000
+- refreshed darktable-old-glib.patch
+
+---

Old:

  darktable-2.2.4.tar.xz

New:

  darktable-2.2.5.tar.xz



Other differences:
--
++ darktable.spec ++
--- /var/tmp/diff_new_pack.imBQmi/_old  2017-05-31 12:19:51.479419623 +0200
+++ /var/tmp/diff_new_pack.imBQmi/_new  2017-05-31 12:19:51.483419059 +0200
@@ -47,7 +47,7 @@
 %define cmake_options -DCMAKE_SKIP_RPATH:BOOL=OFF 
-DCMAKE_BUILD_TYPE=RelWithDebInfo -DBINARY_PACKAGE_BUILD=1 
-DCMAKE_INSTALL_DATAROOTDIR="share" -DCMAKE_INSTALL_LIBDIR="%{_lib}"
 
 Name:   darktable
-Version:2.2.4
+Version:2.2.5
 Release:0
 Url:http://www.darktable.org/
 Source0:%{name}-%{version}.tar.xz

++ darktable-2.2.4.tar.xz -> darktable-2.2.5.tar.xz ++
 6950 lines of diff (skipped)

++ darktable-old-glib.patch ++
--- /var/tmp/diff_new_pack.imBQmi/_old  2017-05-31 12:19:52.559267187 +0200
+++ /var/tmp/diff_new_pack.imBQmi/_new  2017-05-31 12:19:52.559267187 +0200
@@ -1,8 +1,8 @@
-Index: darktable-2.0.2/src/common/exif.cc
+Index: darktable-2.2.5/src/common/exif.cc
 ===
 darktable-2.0.2.orig/src/common/exif.cc
-+++ darktable-2.0.2/src/common/exif.cc
-@@ -78,6 +78,13 @@ const char *dt_xmp_keys[]
+--- darktable-2.2.5.orig/src/common/exif.cc
 darktable-2.2.5/src/common/exif.cc
+@@ -82,6 +82,13 @@ const char *dt_xmp_keys[]
  
  static const guint dt_xmp_keys_n = G_N_ELEMENTS(dt_xmp_keys); // the number 
of XmpBag XmpSeq keys that dt uses
  
@@ -16,7 +16,7 @@
  
  /* a few helper functions inspired by
 
https://projects.kde.org/projects/kde/kdegraphics/libs/libkexiv2/repository/revisions/master/entry/libkexiv2/kexiv2gps.cpp
-@@ -1291,7 +1298,11 @@ int dt_exif_read_blob(uint8_t *buf, cons
+@@ -1356,7 +1363,11 @@ int dt_exif_read_blob(uint8_t **buf, con
if(res != NULL)
{
  char *desc = (char *)res->data;
@@ -28,18 +28,3 @@
exifData["Exif.Image.ImageDescription"] = desc;
  else
exifData["Exif.Photo.UserComment"] = desc;
-# Index: darktable-2.0.2/cmake/modules/FindGTK3.cmake
-# ===
-# --- darktable-2.0.2.orig/cmake/modules/FindGTK3.cmake
-# +++ darktable-2.0.2/cmake/modules/FindGTK3.cmake
-# @@ -84,8 +84,8 @@ find_library(GDKPIXBUF_LIBRARY NAMES gdk
-#  # Glib
-#  
-#  # NOTE: must be one of the macros listed in 
https://developer.gnome.org/glib/stable/glib-Version-Information.html
-# -find_package(Glib REQUIRED 2.40)
-# -set(GTK3_DEFINITIONS ${GTK3_DEFINITIONS} 
"-DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_40")
-# +find_package(Glib REQUIRED 2.32)
-# +set(GTK3_DEFINITIONS ${GTK3_DEFINITIONS} 
"-DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_32")
-#  set(GTK3_DEFINITIONS ${GTK3_DEFINITIONS} 
"-DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_MIN_REQUIRED")
-#  
-#  if(NOT Glib_FOUND)




commit plasma5-workspace-wallpapers for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package plasma5-workspace-wallpapers for 
openSUSE:Factory checked in at 2017-05-31 12:18:36

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


Package is "plasma5-workspace-wallpapers"

Wed May 31 12:18:36 2017 rev:30 rq:498819 version:5.10.0

Changes:

--- 
/work/SRC/openSUSE:Factory/plasma5-workspace-wallpapers/plasma5-workspace-wallpapers.changes
2017-04-26 21:44:58.189111810 +0200
+++ 
/work/SRC/openSUSE:Factory/.plasma5-workspace-wallpapers.new/plasma5-workspace-wallpapers.changes
   2017-05-31 12:19:44.224443769 +0200
@@ -1,0 +2,20 @@
+Fri May 26 14:10:33 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.0.php
+- Changes since 5.9.95:
+  * None
+
+---
+Thu May 11 20:26:32 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.95
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.9.95.php
+- Changes since 5.9.5:
+  * None
+
+---

Old:

  plasma-workspace-wallpapers-5.9.5.tar.xz

New:

  plasma-workspace-wallpapers-5.10.0.tar.xz



Other differences:
--
++ plasma5-workspace-wallpapers.spec ++
--- /var/tmp/diff_new_pack.iUQRlV/_old  2017-05-31 12:19:45.528259716 +0200
+++ /var/tmp/diff_new_pack.iUQRlV/_new  2017-05-31 12:19:45.528259716 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   plasma5-workspace-wallpapers
-Version:5.9.5
+Version:5.10.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= 0.0.12
@@ -27,7 +27,7 @@
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/plasma/%{version}/plasma-workspace-wallpapers-%{version}.tar.xz
+Source: plasma-workspace-wallpapers-%{version}.tar.xz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ plasma-workspace-wallpapers-5.9.5.tar.xz -> 
plasma-workspace-wallpapers-5.10.0.tar.xz ++
/work/SRC/openSUSE:Factory/plasma5-workspace-wallpapers/plasma-workspace-wallpapers-5.9.5.tar.xz
 
/work/SRC/openSUSE:Factory/.plasma5-workspace-wallpapers.new/plasma-workspace-wallpapers-5.10.0.tar.xz
 differ: char 26, line 1




commit spacenavd for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package spacenavd for openSUSE:Factory 
checked in at 2017-05-31 12:18:18

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


Package is "spacenavd"

Wed May 31 12:18:18 2017 rev:2 rq:498709 version:0.6

Changes:

--- /work/SRC/openSUSE:Factory/spacenavd/spacenavd.changes  2017-01-25 
23:19:55.553628430 +0100
+++ /work/SRC/openSUSE:Factory/.spacenavd.new/spacenavd.changes 2017-05-31 
12:19:28.914604974 +0200
@@ -1,0 +2,6 @@
+Sat May 27 05:26:02 UTC 2017 - bwiedem...@suse.com
+
+- Add reproducible.patch to sort input files to make build reproducible
+  (boo#1041090)
+
+---

New:

  reproducible.patch



Other differences:
--
++ spacenavd.spec ++
--- /var/tmp/diff_new_pack.Ck2uGU/_old  2017-05-31 12:19:29.810478508 +0200
+++ /var/tmp/diff_new_pack.Ck2uGU/_new  2017-05-31 12:19:29.810478508 +0200
@@ -19,6 +19,8 @@
 Source2:   spnavrc
 Source3:   xinitrc-%{name}
 Source4:   %{name}.service
+# PATCH-FIX-UPSTREAM bmwiedemann https://sourceforge.net/p/spacenav/patches/6/
+Patch0: reproducible.patch
 BuildRoot: %{_tmppath}/%{name}-%{version}-build
 BuildRequires: xorg-x11
 BuildRequires: xorg-x11-devel
@@ -37,6 +39,7 @@
  
 %prep  
 %setup -q
+%patch0 -p1
 
 %build
 %configure

++ reproducible.patch ++
sort input files (boo#1041090)

when building packages (e.g. for openSUSE Linux)
(random) filesystem order of input files
influences ordering of functions in the output,
thus without the patch, builds (in disposable VMs) would differ.

See https://reproducible-builds.org/ for why this matters.

Index: spacenavd-0.6/Makefile.in
===
--- spacenavd-0.6.orig/Makefile.in
+++ spacenavd-0.6/Makefile.in
@@ -1,4 +1,4 @@
-src = $(wildcard src/*.c) $(wildcard src/serial/*.c) $(wildcard 
src/magellan/*.c)
+src = $(sort $(wildcard src/*.c) $(wildcard src/serial/*.c) $(wildcard 
src/magellan/*.c))
 hdr = $(wildcard src/*.h) $(wildcard src/serial/*.h) $(wildcard 
src/magellan/*.h)
 obj = $(src:.c=.o)
 dep = $(obj:.o=.d)




commit dita-ot for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package dita-ot for openSUSE:Factory checked 
in at 2017-05-31 12:18:09

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


Package is "dita-ot"

Wed May 31 12:18:09 2017 rev:21 rq:498611 version:1.5.1

Changes:

--- /work/SRC/openSUSE:Factory/dita-ot/dita-ot.changes  2017-05-22 
10:49:17.753587043 +0200
+++ /work/SRC/openSUSE:Factory/.dita-ot.new/dita-ot.changes 2017-05-31 
12:19:19.871881482 +0200
@@ -1,0 +2,5 @@
+Fri May 26 12:49:36 UTC 2017 - jeng...@inai.de
+
+- Reword descriptions.
+
+---



Other differences:
--
++ dita-ot.spec ++
--- /var/tmp/diff_new_pack.bbx47Y/_old  2017-05-31 12:19:20.543786633 +0200
+++ /var/tmp/diff_new_pack.bbx47Y/_new  2017-05-31 12:19:20.547786069 +0200
@@ -19,7 +19,7 @@
 Name:   dita-ot
 Version:1.5.1
 Release:0
-Summary:DITA Open Toolkit
+Summary:DITA document stylesheets
 License:CPL-1.0 or Apache-2.0
 Group:  Productivity/Publishing/XML
 Url:http://dita-ot.sourceforge.net/
@@ -47,6 +47,9 @@
 %description
 Stylesheets for processing DITA documents.
 
+(DITA Open Toolkit is a publishing engine for XML content authored in
+the Darwin Information Typing Architecture.)
+
 %define xml_dir %{_datadir}/xml
 %define xml_pack_dir %{xml_dir}/dita
 




commit grub2-theme-breeze for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package grub2-theme-breeze for 
openSUSE:Factory checked in at 2017-05-31 12:18:39

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


Package is "grub2-theme-breeze"

Wed May 31 12:18:39 2017 rev:10 rq:498824 version:5.10.0

Changes:

--- /work/SRC/openSUSE:Factory/grub2-theme-breeze/grub2-theme-breeze.changes
2017-04-26 21:44:48.698451619 +0200
+++ 
/work/SRC/openSUSE:Factory/.grub2-theme-breeze.new/grub2-theme-breeze.changes   
2017-05-31 12:19:47.507980250 +0200
@@ -1,0 +2,20 @@
+Fri May 26 14:10:29 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.0.php
+- Changes since 5.9.95:
+  * None
+
+---
+Thu May 11 20:26:20 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.95
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.9.95.php
+- Changes since 5.9.5:
+  * None
+
+---

Old:

  breeze-grub-5.9.5.tar.xz

New:

  breeze-grub-5.10.0.tar.xz



Other differences:
--
++ grub2-theme-breeze.spec ++
--- /var/tmp/diff_new_pack.wzdB4x/_old  2017-05-31 12:19:48.183884836 +0200
+++ /var/tmp/diff_new_pack.wzdB4x/_new  2017-05-31 12:19:48.187884272 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   grub2-theme-breeze
-Version:5.9.5
+Version:5.10.0
 Release:0
 Summary:Plasma branding for GRUB2's graphical console
 License:GPL-3.0+
 Group:  System/Boot
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/plasma/%{version}/breeze-grub-%{version}.tar.xz
+Source: breeze-grub-%{version}.tar.xz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ breeze-grub-5.9.5.tar.xz -> breeze-grub-5.10.0.tar.xz ++




commit perl-Wx for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package perl-Wx for openSUSE:Factory checked 
in at 2017-05-31 12:18:47

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


Package is "perl-Wx"

Wed May 31 12:18:47 2017 rev:7 rq:498858 version:0.9932

Changes:

--- /work/SRC/openSUSE:Factory/perl-Wx/perl-Wx.changes  2017-03-31 
15:08:25.241433956 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Wx.new/perl-Wx.changes 2017-05-31 
12:19:52.979207906 +0200
@@ -1,0 +2,27 @@
+Thu May 25 09:26:01 UTC 2017 - co...@suse.com
+
+- updated to 0.9932
+   see /usr/share/doc/packages/perl-Wx/Changes
+
+  0.9932 Tue Apr 18 2017
+  - fix build for Perl 5.25.11 ( . no longer in @INC )
+  - RT:121224 - fixes broken 0.9930 commit for keycode constants
+  - RT:120657 revert changes for this fro 0.9929
+  
+  0.9931 Mon Apr 17 2017
+  - really skip Strawberry 64 bit build test failure
+  
+  0.9930 Mon Apr 17 2017
+  - Refactor wxTreeList
+  - RT:119059 some missing keycode constants 
+  - skip Strawberry 64 bit build test failure
+  - Fix none latin paths in @INC on Windows
+  
+  0.9929 Sat Apr 8 2017
+  - Fix current OSX builds
+  - RT:115097 remove encoding pragma
+  - RT:120657 for Wx_Exp.pm exports incomplete
+  - RT:105467 Unescaped left brace in regex
+  - RT:120139 support wxScrolledWindow::ShowScrollbars
+
+---

Old:

  Wx-0.9928.tar.gz

New:

  Wx-0.9932.tar.gz



Other differences:
--
++ perl-Wx.spec ++
--- /var/tmp/diff_new_pack.45p67v/_old  2017-05-31 12:19:54.478996189 +0200
+++ /var/tmp/diff_new_pack.45p67v/_new  2017-05-31 12:19:54.482995625 +0200
@@ -17,22 +17,22 @@
 
 
 Name:   perl-Wx
-Version:0.9928
+Version:0.9932
 Release:0
 %define cpan_name Wx
 Summary:Interface to the Wxwidgets Cross-Platform Gui Toolkit
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Wx/
-Source0:
http://www.cpan.org/authors/id/M/MD/MDOOTSON/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/M/MD/MDOOTSON/%{cpan_name}-%{version}.tar.gz
 Source1:perl-Wx-rpmlintrc
 Source2:cpanspec.yml
-# Needed for reproducible build
-Patch0: 0001-Sort-output-of-dumped-dictionaries-for-reproducible-.patch
-Patch1: 0002-Provide-overload-methods-to-XSpp-in-sorted-order.patch
-# Fix for incomplete Wx_Exp.pm, 
https://rt.cpan.org/Public/Bug/Display.html?id=120657
-Patch2: 0001-fix-incomplete-Wx_Exp.pm-due-to-missing-dependecy-in.patch
+Patch0: 0001-fix-incomplete-Wx_Exp.pm-due-to-missing-dependecy-in.patch
+Patch1: 0001-Sort-output-of-dumped-dictionaries-for-reproducible-.patch
+Patch2: 0002-Provide-overload-methods-to-XSpp-in-sorted-order.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  perl
+BuildRequires:  perl-macros
 BuildRequires:  perl(Alien::wxWidgets) >= 0.25
 BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.46
 BuildRequires:  perl(ExtUtils::ParseXS) >= 3.15
@@ -61,6 +61,7 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
+find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1

++ Wx-0.9928.tar.gz -> Wx-0.9932.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Wx-0.9928/Changes new/Wx-0.9932/Changes
--- old/Wx-0.9928/Changes   2015-12-20 18:20:25.0 +0100
+++ new/Wx-0.9932/Changes   2017-04-18 03:04:22.0 +0200
@@ -1,5 +1,26 @@
 Revision history for Perl extension Wx.
 
+0.9932 Tue Apr 18 2017
+- fix build for Perl 5.25.11 ( . no longer in @INC )
+- RT:121224 - fixes broken 0.9930 commit for keycode constants
+- RT:120657 revert changes for this fro 0.9929
+
+0.9931 Mon Apr 17 2017
+- really skip Strawberry 64 bit build test failure
+
+0.9930 Mon Apr 17 2017
+- Refactor wxTreeList
+- RT:119059 some missing keycode constants 
+- skip Strawberry 64 bit build test failure
+- Fix none latin paths in @INC on Windows
+
+0.9929 Sat Apr 8 2017
+- Fix current OSX builds
+- RT:115097 remove encoding pragma
+- RT:120657 for Wx_Exp.pm exports incomplete
+- RT:105467 Unescaped left brace in regex
+- RT:120139 support wxScrolledWindow::ShowScrollbars
+
 0.9928 Sun Dec 20 2015
 - Fix memory leak in Wx::Timer
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Wx-0.9928/Constant.xs new/Wx-0.9932/Constant.xs
--- old/Wx-0.9928/Constant.xs   2014-11-02 20:27:34

commit perl-Lingua-EN-Inflect for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package perl-Lingua-EN-Inflect for 
openSUSE:Factory checked in at 2017-05-31 12:18:50

Comparing /work/SRC/openSUSE:Factory/perl-Lingua-EN-Inflect (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Lingua-EN-Inflect.new (New)


Package is "perl-Lingua-EN-Inflect"

Wed May 31 12:18:50 2017 rev:11 rq:498860 version:1.902

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Lingua-EN-Inflect/perl-Lingua-EN-Inflect.changes
2017-01-10 10:46:51.358826869 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Lingua-EN-Inflect.new/perl-Lingua-EN-Inflect.changes
   2017-05-31 12:19:56.074770922 +0200
@@ -1,0 +2,13 @@
+Sun May 28 05:57:44 UTC 2017 - co...@suse.com
+
+- updated to 1.902
+   see /usr/share/doc/packages/perl-Lingua-EN-Inflect/Changes
+
+  
+  
+  1.902  Sat May 27 22:23:21 2017
+  
+  - Noted the new conversion documentation in Lingua::EN::Inflexion
+(thanks Lady Aleena)
+
+---

Old:

  Lingua-EN-Inflect-1.901.tar.gz

New:

  Lingua-EN-Inflect-1.902.tar.gz



Other differences:
--
++ perl-Lingua-EN-Inflect.spec ++
--- /var/tmp/diff_new_pack.Sq4ZNV/_old  2017-05-31 12:19:56.586698656 +0200
+++ /var/tmp/diff_new_pack.Sq4ZNV/_new  2017-05-31 12:19:56.590698091 +0200
@@ -17,14 +17,14 @@
 
 
 Name:   perl-Lingua-EN-Inflect
-Version:1.901
+Version:1.902
 Release:0
 %define cpan_name Lingua-EN-Inflect
 Summary:Convert singular to plural. Select "a" or "an"
 License:GPL-1.0+ or Artistic-1.0
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Lingua-EN-Inflect/
-Source0:
http://www.cpan.org/authors/id/D/DC/DCONWAY/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/D/DC/DCONWAY/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -33,11 +33,12 @@
 %{perl_requires}
 
 %description
-*[_Note:_ This module is strictly in maintenance mode now. If you're mostly
-interested in singular/plural and a/an inflections, take a look at the
-newer Lingua::EN::Inflexion module, which offers a cleaner and more
+*[_Note:_ This module is strictly in maintenance mode now. Take a look at
+the newer Lingua::EN::Inflexion module, which offers a cleaner and more
 convenient interface, has many more features (including plural->singular
-inflexions), and is also much better tested.]*
+inflexions), and is also much better tested. If you have existing code that
+relies on Lingua::EN::Inflect, see the section of the documentation
+entitled "CONVERTING FROM LINGUA::EN::INFLECT". ]*
 
 The exportable subroutines of Lingua::EN::Inflect provide plural
 inflections, "a"/"an" selection for English words, and manipulation of

++ Lingua-EN-Inflect-1.901.tar.gz -> Lingua-EN-Inflect-1.902.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Lingua-EN-Inflect-1.901/Changes 
new/Lingua-EN-Inflect-1.902/Changes
--- old/Lingua-EN-Inflect-1.901/Changes 2016-12-31 20:16:25.0 +0100
+++ new/Lingua-EN-Inflect-1.902/Changes 2017-05-27 22:23:21.0 +0200
@@ -258,3 +258,9 @@
 1.901  Sun Jan  1 06:16:25 2017
 
 - Removed Build.PL (thanks SKAJI)
+
+
+1.902  Sat May 27 22:23:21 2017
+
+- Noted the new conversion documentation in Lingua::EN::Inflexion
+  (thanks Lady Aleena)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Lingua-EN-Inflect-1.901/META.json 
new/Lingua-EN-Inflect-1.902/META.json
--- old/Lingua-EN-Inflect-1.901/META.json   2016-12-31 20:16:29.0 
+0100
+++ new/Lingua-EN-Inflect-1.902/META.json   2017-05-27 22:23:25.0 
+0200
@@ -37,5 +37,5 @@
   }
},
"release_status" : "stable",
-   "version" : "1.901"
+   "version" : "1.902"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Lingua-EN-Inflect-1.901/META.yml 
new/Lingua-EN-Inflect-1.902/META.yml
--- old/Lingua-EN-Inflect-1.901/META.yml2016-12-31 20:16:29.0 
+0100
+++ new/Lingua-EN-Inflect-1.902/META.yml2017-05-27 22:23:25.0 
+0200
@@ -19,4 +19,4 @@
 - inc
 requires:
   Test::More: '0'
-version: '1.901'
+version: '1.902'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Lingua-EN-Inflect-1.901/README 
new/Lingua-EN-Inflect-1.902/README
--- old/Lingua-EN-Inflect-1.901/README  2016-12-31 20:16:25.0 +0100
+++ new/Lingua-EN-Inflect-1.902/README  2017-05-27 22:23:21.0 +0200
@@ -1,4 +1,4 @@
-Lingua::EN::Inflect version 1.901

commit orion for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package orion for openSUSE:Factory checked 
in at 2017-05-31 12:18:11

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


Package is "orion"

Wed May 31 12:18:11 2017 rev:5 rq:498619 version:1.5.1+git~20170519

Changes:

--- /work/SRC/openSUSE:Factory/orion/orion.changes  2017-05-20 
10:14:34.376171570 +0200
+++ /work/SRC/openSUSE:Factory/.orion.new/orion.changes 2017-05-31 
12:19:23.295398204 +0200
@@ -1,0 +2,6 @@
+Sat May 20 12:07:13 UTC 2017 - pousadua...@gmail.com
+
+- Update to version 1.5.1+git~20170519:
+  * ChannelListModel improvements (#162)
+
+---

Old:

  orion-1.5.1+git~20170518.tar.xz

New:

  orion-1.5.1+git~20170519.tar.xz



Other differences:
--
++ orion.spec ++
--- /var/tmp/diff_new_pack.z6J8Lz/_old  2017-05-31 12:19:25.379104060 +0200
+++ /var/tmp/diff_new_pack.z6J8Lz/_new  2017-05-31 12:19:25.379104060 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   orion
-Version:1.5.1+git~20170518
+Version:1.5.1+git~20170519
 Release:0
 Summary:Twitch stream client using Qt
 License:GPL-3.0

++ _servicedata ++
--- /var/tmp/diff_new_pack.z6J8Lz/_old  2017-05-31 12:19:25.431096720 +0200
+++ /var/tmp/diff_new_pack.z6J8Lz/_new  2017-05-31 12:19:25.435096156 +0200
@@ -1,4 +1,4 @@
 
 
 https://github.com/alamminsalo/orion.git
-  f16fb3a246e777eb162dd66cff453959d606d905
\ No newline at end of file
+  0f79a6bb5132c97ba1602b59596eeb669a4977f0
\ No newline at end of file

++ orion-1.5.1+git~20170518.tar.xz -> orion-1.5.1+git~20170519.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/orion-1.5.1+git~20170518/src/model/channel.cpp 
new/orion-1.5.1+git~20170519/src/model/channel.cpp
--- old/orion-1.5.1+git~20170518/src/model/channel.cpp  2017-05-18 
07:55:24.0 +0200
+++ new/orion-1.5.1+git~20170519/src/model/channel.cpp  2017-05-19 
14:24:40.0 +0200
@@ -146,7 +146,7 @@
 timestamp = QDateTime::currentDateTime().toMSecsSinceEpoch();
 }
 
-qint64 Channel::getTime(){
+qint64 Channel::getTime() const{
return timestamp;
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/orion-1.5.1+git~20170518/src/model/channel.h 
new/orion-1.5.1+git~20170519/src/model/channel.h
--- old/orion-1.5.1+git~20170518/src/model/channel.h2017-05-18 
07:55:24.0 +0200
+++ new/orion-1.5.1+git~20170519/src/model/channel.h2017-05-19 
14:24:40.0 +0200
@@ -57,7 +57,7 @@
 void setLastSeen(time_t);
 const QString lastOnline();
void updateTime();
-qint64 getTime();
+qint64 getTime() const;
 const QString getName() const;
 const QString getServiceName() const;
 const QString getFullUri() const;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/orion-1.5.1+git~20170518/src/model/channellistmodel.cpp 
new/orion-1.5.1+git~20170519/src/model/channellistmodel.cpp
--- old/orion-1.5.1+git~20170518/src/model/channellistmodel.cpp 2017-05-18 
07:55:24.0 +0200
+++ new/orion-1.5.1+git~20170519/src/model/channellistmodel.cpp 2017-05-19 
14:24:40.0 +0200
@@ -94,23 +94,84 @@
 return channels.size();
 }
 
+void debugChannel(const QString prefix, const Channel * c) {
+qDebug() << prefix << ":" << c->getId() << c->getName() << "game" << 
c->getGame() << "serviceName" << c->getServiceName() << "time" << c->getTime() 
<< "viewers" << c->getViewers();
+}
+
+void ChannelListModel::addChannelInternal(Channel *channel) {
+channels.append(channel);
+auto id = channel->getId();
+if (id == 0) {
+qDebug() << "inserting new channel with 0 id";
+}
+else {
+channelIdIndex.insert(id, channel);
+}
+}
+
 void ChannelListModel::addChannel(Channel *channel)
 {
-beginInsertRows(QModelIndex(), channels.size(), channels.size());
-channels.append(channel);
-endInsertRows();
+if (updateChannelIfExisting(channel)) {
+qDebug() << "ChannelListModel::addChannel got existing channel" << 
channel->getId() << channel->getName();
+}
+else {
+beginInsertRows(QModelIndex(), channels.size(), channels.size());
+addChannelInternal(channel);
+endInsertRows();
+}
+}
+
+bool ChannelListModel::updateChannelIfExisting(const Channel * channel) {
+const auto id = channel->getId();
+
+const auto existingChannelEntry = channelIdIndex.find(id);
+if (existingChannelEntry != channelIdIndex.end()) {
+ 

commit easy-rsa for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package easy-rsa for openSUSE:Factory 
checked in at 2017-05-31 12:18:07

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


Package is "easy-rsa"

Wed May 31 12:18:07 2017 rev:2 rq:498607 version:3.0.1

Changes:

--- /work/SRC/openSUSE:Factory/easy-rsa/easy-rsa.changes2017-02-03 
17:36:11.445527613 +0100
+++ /work/SRC/openSUSE:Factory/.easy-rsa.new/easy-rsa.changes   2017-05-31 
12:19:18.308102231 +0200
@@ -1,0 +2,19 @@
+Sat May 27 07:30:22 UTC 2017 - br...@ioda-net.ch
+
+- Add special %if for SLE11 as patch tool can't rename files. 
+- Include upstream patches 
+  + f174800.patch 
+ Generate random serial number for all certificates 
+  + 29d4dee.patch
+ Fixes #91 basename: invalid option -- 's'   
+  + b93d0a1.patch
+ Spelling fixes and sentence structure improvements   
+  + fb4d8d8.patch
+ Fix comment indicating the end of the function verify_file()
+  + b75faa4.patch
+ Convert README and COPYING into markdown files 
+- Rename openSUSE specific patch easyrsa.packaging.patch to
+  easy-rsa-packaging.patch
+- spec-cleaner -m (Add also SUSE copyrights)
+
+---

Old:

  easy-rsa-3.0.1.tar.gz
  easyrsa.packaging.patch

New:

  29d4dee.patch
  3.0.1.tar.gz
  b75faa4.patch
  b93d0a1.patch
  easy-rsa-packaging.patch
  f174800.patch
  fb4d8d8.patch



Other differences:
--
++ easy-rsa.spec ++
--- /var/tmp/diff_new_pack.uNphnX/_old  2017-05-31 12:19:19.079993268 +0200
+++ /var/tmp/diff_new_pack.uNphnX/_new  2017-05-31 12:19:19.083992704 +0200
@@ -1,6 +1,7 @@
 #
 # spec file for package easy-rsa
 #
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2015 Stefan Jakobs.
 #
 # All modifications and additions to the file contributed by third parties
@@ -12,15 +13,31 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
+
+
 Name:   easy-rsa
 Version:3.0.1
-Release:1
-License:GPL-2.0
+Release:0
 Summary:CLI utility to build and manage a PKI CA
-Url:https://github.com/OpenVPN/easy-rsa
+License:GPL-2.0
 Group:  Productivity/Networking/Security
-Source: %{name}-%{version}.tar.gz
-Patch0: easyrsa.packaging.patch
+Url:https://github.com/OpenVPN/easy-rsa
+Source: https://github.com/OpenVPN/easy-rsa/archive/%{version}.tar.gz
+# Fixed upstream issues
+# Generate random serial number for all certificates
+Patch0: https://github.com/OpenVPN/easy-rsa/commit/f174800.patch
+# Fixes #91 basename: invalid option -- 's'.
+Patch1: https://github.com/OpenVPN/easy-rsa/commit/29d4dee.patch
+# spelling fixes and setence structure improvements
+Patch2: https://github.com/OpenVPN/easy-rsa/commit/b93d0a1.patch
+# Fix comment indicating the end of the function verify_file() comment.
+Patch3: https://github.com/OpenVPN/easy-rsa/commit/fb4d8d8.patch
+# Convert README and COPYING into markdown files
+Patch4: https://github.com/OpenVPN/easy-rsa/commit/b75faa4.patch
+# openSUSE specific
+Patch100:   easy-rsa-packaging.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -31,9 +48,24 @@
 
 %prep
 %setup -q
-%patch0 -p0
-sed -i 's;#\(set_var EASYRSA   \)"$PWD";\1"/etc/easy-rsa";' 
easyrsa3/vars.example
-mv README.quickstart.md README.quickstart
+%patch0 -p1
+%patch1 -p1
+%patch2 -p1
+%patch3 -p1
+%patch4 -p1
+%patch100 -p0
+sed -i 's;#\(set_var EASYRSA   \)"$PWD";\1"%{_sysconfdir}/easy-rsa";' 
easyrsa3/vars.example
+
+# Add this for SLE11, patch tool can't rename file.
+# Next release we should publish .md documentation.
+%if 0%{?sles_version} > 0 && 0%{?sles_version} < 12
+mv -v COPYING COPYING.md
+mv -v README README.md
+%endif
+
+mv -v COPYING.md COPYING
+mv -v README.md README
+mv -v README.quickstart.md README.quickstart
 for f in doc/*.md; do
mv $f ${f%.md}
 done
@@ -48,11 +80,12 @@
 install -Dm0644 easyrsa3/x509-types/* 
%{buildroot}/%{_sysconfdir}/easy-rsa/x509-types/
 install -Dm0755 easyrsa3/easyrsa %{buildroot}/%{_bindir}/easyrsa
 
-
 %files
 %defattr(-,root,root)
 %doc KNOWN_ISSUES README README.quickstart COPYING
+%doc Licensing/*
 %doc doc/*
 %{_bindir}/easyrsa
 %config(noreplace) %{_sysconfdir}/easy-rsa
 
+%changelog

++ 29d4dee.patch ++
>From 29d4dee508706a34b50c20d338b3f2d452446716 Mon Sep 17 00:00:00 2001
From: Thomas Szteliga 
Date: Mon, 21 Mar 2016 17:25:58 +0100
Subject: [PATCH] Fixes #91 basename: invalid option --

commit plymouth-theme-breeze for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package plymouth-theme-breeze for 
openSUSE:Factory checked in at 2017-05-31 12:18:27

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


Package is "plymouth-theme-breeze"

Wed May 31 12:18:27 2017 rev:10 rq:498787 version:5.10.0

Changes:

--- 
/work/SRC/openSUSE:Factory/plymouth-theme-breeze/plymouth-theme-breeze.changes  
2017-04-26 21:45:01.436653351 +0200
+++ 
/work/SRC/openSUSE:Factory/.plymouth-theme-breeze.new/plymouth-theme-breeze.changes
 2017-05-31 12:19:33.281988455 +0200
@@ -1,0 +2,20 @@
+Fri May 26 14:10:35 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.0.php
+- Changes since 5.9.95:
+  * None
+
+---
+Thu May 11 20:26:34 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.95
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.9.95.php
+- Changes since 5.9.5:
+  * install preview image
+
+---

Old:

  breeze-plymouth-5.9.5.tar.xz

New:

  breeze-plymouth-5.10.0.tar.xz



Other differences:
--
++ plymouth-theme-breeze.spec ++
--- /var/tmp/diff_new_pack.lz2H9L/_old  2017-05-31 12:19:33.813913366 +0200
+++ /var/tmp/diff_new_pack.lz2H9L/_new  2017-05-31 12:19:33.813913366 +0200
@@ -34,7 +34,7 @@
 
 
 Name:   plymouth-theme-breeze
-Version:5.9.5
+Version:5.10.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= 1.8.0
@@ -44,7 +44,7 @@
 License:GPL-2.0+
 Group:  System/Base
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/plasma/%{version}/breeze-plymouth-%{version}.tar.xz
+Source: breeze-plymouth-%{version}.tar.xz
 Requires:   %{name}-plugin-breeze = %{version}
 Requires:   plymouth-plugin-label-ft
 Requires(post): plymouth-scripts

++ breeze-plymouth-5.9.5.tar.xz -> breeze-plymouth-5.10.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-plymouth-5.9.5/CMakeLists.txt 
new/breeze-plymouth-5.10.0/CMakeLists.txt
--- old/breeze-plymouth-5.9.5/CMakeLists.txt2017-04-25 14:27:23.0 
+0200
+++ new/breeze-plymouth-5.10.0/CMakeLists.txt   2017-05-26 10:14:11.0 
+0200
@@ -1,5 +1,5 @@
 project(breeze-plymouth)
-set(PROJECT_VERSION "5.9.5")
+set(PROJECT_VERSION "5.10.0")
 set(PROJECT_VERSION_MAJOR 5)
 
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-plymouth-5.9.5/breeze-text/CMakeLists.txt 
new/breeze-plymouth-5.10.0/breeze-text/CMakeLists.txt
--- old/breeze-plymouth-5.9.5/breeze-text/CMakeLists.txt2017-04-25 
14:27:23.0 +0200
+++ new/breeze-plymouth-5.10.0/breeze-text/CMakeLists.txt   2017-05-26 
10:14:11.0 +0200
@@ -4,5 +4,5 @@
 install(TARGETS breeze-text DESTINATION ${Plymouth_PLUGINSDIR})
 
 configure_file(breeze-text.plymouth.cmake 
${CMAKE_CURRENT_BINARY_DIR}/breeze-text.plymouth)
-install(FILES ${CMAKE_CURRENT_BINARY_DIR}/breeze-text.plymouth
+install(FILES ${CMAKE_CURRENT_BINARY_DIR}/breeze-text.plymouth preview.png
 DESTINATION ${Plymouth_THEMESDIR}/breeze-text)
Binary files old/breeze-plymouth-5.9.5/breeze-text/preview.png and 
new/breeze-plymouth-5.10.0/breeze-text/preview.png differ




commit chrome-gnome-shell for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package chrome-gnome-shell for 
openSUSE:Factory checked in at 2017-05-31 12:18:05

Comparing /work/SRC/openSUSE:Factory/chrome-gnome-shell (Old)
 and  /work/SRC/openSUSE:Factory/.chrome-gnome-shell.new (New)


Package is "chrome-gnome-shell"

Wed May 31 12:18:05 2017 rev:5 rq:498572 version:9

Changes:

--- /work/SRC/openSUSE:Factory/chrome-gnome-shell/chrome-gnome-shell.changes
2017-03-22 23:00:29.447021951 +0100
+++ 
/work/SRC/openSUSE:Factory/.chrome-gnome-shell.new/chrome-gnome-shell.changes   
2017-05-31 12:19:14.904582686 +0200
@@ -1,0 +2,39 @@
+Thu May 18 18:54:55 UTC 2017 - zai...@opensuse.org
+
+- Update to version 9:
+  + connector:
+- Handle command line argument outside of GApplication.
+- Fix gsettings GNOME Shell schema lookup.
+- Fixed possible AttributeError.
+- Fixed Ctrl spelling.
+  + compatibility:
+- Fixed external messaging for Firefox 54.
+- Updated to Firefox 52.
+  + Removed redundant line forgotten in previous commit.
+  + firefox:
+- Restrict maximum version to 53.
+- Show usefull error message in case native connector not
+  installed.
+  + api: show errror instead of warning in case initialization
+failure.
+  + Improved error handling when GNOME Shell is not installed or
+not running.
+  + options: allow html in error messages.
+  + sync:
+- Avoid synchronization of disabled extensions during sleep
+  state.
+- Increased idle queue timeout.
+  + update-check: make python-requests dependency optional.
+  + constants: drop old string.
+  + doap: fix JavaScript spelling.
+  + extension: open Shell extensions website on icon click.
+  + i18n:
+- Regenerate template.
+- Explicitly distinguish "browser extension" and "Shell
+  extension".
+- Fix error message.
+- Update list of supported locales.
+- Regenerate locales.
+  + Updated translations.
+
+---

Old:

  chrome-gnome-shell-8.2.tar.xz

New:

  chrome-gnome-shell-9.tar.xz



Other differences:
--
++ chrome-gnome-shell.spec ++
--- /var/tmp/diff_new_pack.nmck3U/_old  2017-05-31 12:19:15.496499129 +0200
+++ /var/tmp/diff_new_pack.nmck3U/_new  2017-05-31 12:19:15.500498564 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   chrome-gnome-shell
-Version:8.2
+Version:9
 Release:0
 Summary:GNOME Shell integration for Chrome Extension compatible 
browsers
 License:GPL-3.0+

++ _service ++
--- /var/tmp/diff_new_pack.nmck3U/_old  2017-05-31 12:19:15.528494612 +0200
+++ /var/tmp/diff_new_pack.nmck3U/_new  2017-05-31 12:19:15.528494612 +0200
@@ -2,9 +2,9 @@
   
 git://git.gnome.org/chrome-gnome-shell
 git
-8.2
+9
 enable
-refs/tags/v8.2
+refs/tags/v9
   
   
 *.tar

++ _servicedata ++
--- /var/tmp/diff_new_pack.nmck3U/_old  2017-05-31 12:19:15.548491790 +0200
+++ /var/tmp/diff_new_pack.nmck3U/_new  2017-05-31 12:19:15.552491225 +0200
@@ -1,4 +1,4 @@
 
 
 git://git.gnome.org/chrome-gnome-shell
-  e6dff0531b5bc962360fb491713030b7faaaf7d8
\ No newline at end of file
+  35851c792fb68a180d42ee875dadea88089351b1
\ No newline at end of file

++ chrome-gnome-shell-8.2.tar.xz -> chrome-gnome-shell-9.tar.xz ++
 6967 lines of diff (skipped)




commit highlight for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package highlight for openSUSE:Factory 
checked in at 2017-05-31 12:11:23

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


Package is "highlight"

Wed May 31 12:11:23 2017 rev:10 rq:498870 version:3.36

Changes:

--- /work/SRC/openSUSE:Factory/highlight/highlight.changes  2017-04-24 
09:46:51.676272104 +0200
+++ /work/SRC/openSUSE:Factory/.highlight.new/highlight.changes 2017-05-31 
12:11:23.479128657 +0200
@@ -1,0 +2,8 @@
+Sun May 21 22:07:49 UTC 2017 - antoine.belv...@opensuse.org
+
+- Add service file
+  * set_version (disabled)
+  * download_files (disabled)
+- Update highlight.keyring: Key had expired in 2017/02
+
+---

New:

  _service



Other differences:
--
++ _service ++

  
3.36
  
  
enable
  


++ highlight.keyring ++
 1101 lines (skipped)
 between highlight.keyring
 and /work/SRC/openSUSE:Factory/.highlight.new/highlight.keyring




commit pam_kwallet for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package pam_kwallet for openSUSE:Factory 
checked in at 2017-05-31 12:18:29

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


Package is "pam_kwallet"

Wed May 31 12:18:29 2017 rev:8 rq:498810 version:5.10.0

Changes:

--- /work/SRC/openSUSE:Factory/pam_kwallet/pam_kwallet.changes  2017-04-26 
21:44:55.097548250 +0200
+++ /work/SRC/openSUSE:Factory/.pam_kwallet.new/pam_kwallet.changes 
2017-05-31 12:19:34.229854650 +0200
@@ -1,0 +2,20 @@
+Fri May 26 14:10:31 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.0.php
+- Changes since 5.9.95:
+  * None
+
+---
+Thu May 11 20:26:27 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.95
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.9.95.php
+- Changes since 5.9.5:
+  * None
+
+---

Old:

  kwallet-pam-5.9.5.tar.xz

New:

  kwallet-pam-5.10.0.tar.xz



Other differences:
--
++ pam_kwallet.spec ++
--- /var/tmp/diff_new_pack.Rw321z/_old  2017-05-31 12:19:34.849767140 +0200
+++ /var/tmp/diff_new_pack.Rw321z/_new  2017-05-31 12:19:34.853766576 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   pam_kwallet
-Version:5.9.5
+Version:5.10.0
 Release:0
 Summary:A PAM Module for kwallet signing
 License:LGPL-2.1 and GPL-2.0+ and GPL-3.0
 Group:  System/GUI/KDE
 Url:http://www.kde.org/
-Source: 
http://download.kde.org/stable/plasma/%{version}/kwallet-pam-%{version}.tar.xz
+Source: kwallet-pam-%{version}.tar.xz
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem
 BuildRequires:  libgcrypt-devel >= 1.5.0

++ kwallet-pam-5.9.5.tar.xz -> kwallet-pam-5.10.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwallet-pam-5.9.5/CMakeLists.txt 
new/kwallet-pam-5.10.0/CMakeLists.txt
--- old/kwallet-pam-5.9.5/CMakeLists.txt2017-04-25 14:49:23.0 
+0200
+++ new/kwallet-pam-5.10.0/CMakeLists.txt   2017-05-26 10:50:36.0 
+0200
@@ -1,7 +1,7 @@
 project(pam_kwallet)
 cmake_minimum_required(VERSION 2.8.12)
 
-set(PROJECT_VERSION "5.9.5")
+set(PROJECT_VERSION "5.10.0")
 set(PROJECT_VERSION_MAJOR 5)
 
 find_package (ECM 1.2.0 REQUIRED NO_MODULE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwallet-pam-5.9.5/pam_kwallet_init.desktop.cmake 
new/kwallet-pam-5.10.0/pam_kwallet_init.desktop.cmake
--- old/kwallet-pam-5.9.5/pam_kwallet_init.desktop.cmake2017-04-25 
14:49:23.0 +0200
+++ new/kwallet-pam-5.10.0/pam_kwallet_init.desktop.cmake   2017-05-26 
10:50:36.0 +0200
@@ -13,6 +13,7 @@
 Name[fi]=KWalletin PAM-pistokeyhteys
 Name[fr]=Connection au socket PAM de KWallet
 Name[gl]=Conexión ao sócket PAM de KWallet
+Name[hu]=KWallet PAM socket-kapcsolat
 Name[ia]=Connexion de PAM Socket de KWallet
 Name[it]=Connessione socket PAM di KWallet
 Name[ko]=KWallet PAM 소켓 연결
@@ -29,6 +30,7 @@
 Name[sr@ijekavianlatin]=Veza sa K‑novčanikovim PAM soketom
 Name[sr@latin]=Veza sa K‑novčanikovim PAM soketom
 Name[sv]=Plånbokens PAM-uttagsanslutning
+Name[tr]=KWallet PAM Soketi Bağlantısı
 Name[uk]=З’єднання із сокетом PAM KWallet
 Name[x-test]=xxKWallet PAM Socket Connectionxx
 Name[zh_CN]=KWallet PAM 套接字连接
@@ -47,6 +49,7 @@
 Comment[fi]=Yhteys KWalletin PAM-pistokkeeseen
 Comment[fr]=Connecter au socket PAM de KWallet
 Comment[gl]=Conectar ao sócket PAM de KWallet
+Comment[hu]=Kapcsolódás KWallet PAM sockethez
 Comment[ia]=Connecte a PAMsoccket de KWallet
 Comment[it]=Connetti al socket PAM di KWallet
 Comment[ko]=KWallet PAM 소켓에 연결할 수 없음
@@ -63,6 +66,7 @@
 Comment[sr@ijekavianlatin]=Poveži se na K‑novčanikov PAM soket
 Comment[sr@latin]=Poveži se na K‑novčanikov PAM soket
 Comment[sv]=Anslut till plånbokens PAM-uttag
+Comment[tr]=KWallet PAM soketine bağlan
 Comment[uk]=З’єднатися із сокетом PAM KWallet
 Comment[x-test]=xxConnect to KWallet PAM socketxx
 Comment[zh_CN]=连接到 KWallet PAM 套接字




commit cowsay for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package cowsay for openSUSE:Factory checked 
in at 2017-05-31 12:18:13

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


Package is "cowsay"

Wed May 31 12:18:13 2017 rev:3 rq:498621 version:3.03

Changes:

--- /work/SRC/openSUSE:Factory/cowsay/cowsay.changes2014-05-02 
13:54:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.cowsay.new/cowsay.changes   2017-05-31 
12:19:26.238982676 +0200
@@ -1,0 +2,6 @@
+Sat May 27 09:21:12 UTC 2017 - sor.ale...@meowr.ru
+
+- Add perl to BuildRequires in order to make the package rebuild
+  when perl was updated.
+
+---
@@ -11 +16,0 @@
-



Other differences:
--
++ cowsay.spec ++
--- /var/tmp/diff_new_pack.Zbcodg/_old  2017-05-31 12:19:26.838897989 +0200
+++ /var/tmp/diff_new_pack.Zbcodg/_new  2017-05-31 12:19:26.838897989 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package cowsay
 #
-# Copyright (c) 2014 SUSE LINUX Products 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
@@ -16,6 +16,9 @@
 #
 
 
+%if 0%{?suse_version} >= 1140
+%{?!perl_requires:%define perl_requires() Requires: perl = %{perl_version}}
+%endif
 Name:   cowsay
 Version:3.03
 Release:0
@@ -27,12 +30,9 @@
 Source1:http://nog.net/~tony/warez/%{name}-%{version}.tar.gz.sig
 Source2:http://nog.net/~tony/tony-monroe-gpgkey.txt#/cowsay.keyring
 BuildRequires:  bash
+BuildRequires:  perl
 BuildArch:  noarch
-%if 0%{?suse_version} < 1140
-Requires:   perl = %{perl_version}
-%else
-%{perl_requires}
-%endif
+%perl_requires
 
 %description
 cowsay is a configurable talking cow, written in Perl.  It operates






commit rpmdevtools for openSUSE:Factory

2017-05-31 Thread root
Hello community,

here is the log from the commit of package rpmdevtools for openSUSE:Factory 
checked in at 2017-05-31 12:18:26

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


Package is "rpmdevtools"

Wed May 31 12:18:26 2017 rev:2 rq:498783 version:8.10

Changes:

--- /work/SRC/openSUSE:Factory/rpmdevtools/rpmdevtools.changes  2017-01-25 
23:24:49.493302065 +0100
+++ /work/SRC/openSUSE:Factory/.rpmdevtools.new/rpmdevtools.changes 
2017-05-31 12:19:32.302126777 +0200
@@ -1,0 +2,18 @@
+Sat May 27 13:28:13 UTC 2017 - aloi...@gmx.com
+
+- Update to version 8.10
+  * Extract (only) full name from gecos field in -packager
+(rh#1350928)
+  * Point URLs to pagure.io
+
+- Updated source and homepage URLs
+
+- Dropped rmdevelrpms-8.5-SLE11.patch (target no longer built
+  in project)
+
+- Polished suse-specfile.patch, split off the python template
+  as suse-specfile_python.patch and
+  suse-specfile_python_single.patch and applied each depending on
+  the availability of python-rpm-macros
+
+---

Old:

  rmdevelrpms-8.5-SLE11.patch
  rpmdevtools-8.9.tar.xz

New:

  rpmdevtools-8.10.tar.xz
  suse-specfile_python.patch
  suse-specfile_python_single.patch



Other differences:
--
++ rpmdevtools.spec ++
--- /var/tmp/diff_new_pack.rcyEjN/_old  2017-05-31 12:19:32.878045477 +0200
+++ /var/tmp/diff_new_pack.rcyEjN/_new  2017-05-31 12:19:32.878045477 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rpmdevtools
 #
-# 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
@@ -18,20 +18,23 @@
 
 %define emacs_sitestart_d %{_datadir}/emacs/site-lisp
 Name:   rpmdevtools
-Version:8.9
+Version:8.10
 Release:0
 Summary:RPM Development Tools
 # rpmdev-setuptree is GPL-2.0, everything else GPL-2.0+
 License:GPL-2.0 and GPL-2.0+
 Group:  Development/Tools/Other
-Url:https://fedorahosted.org/rpmdevtools/
-Source0:
https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.xz
+Url:https://pagure.io/rpmdevtools
+Source0:https://releases.pagure.org/%{name}/%{name}-%{version}.tar.xz
 Source1:skeleton
 Source2:%{name}-rpmlintrc
 # PATCH-FIX-OPENSUSE suse-specfile.patch -- Apply fix to comply to 
http://en.opensuse.org/openSUSE:Specfile_guidelines
 Patch0: suse-specfile.patch
 Patch1: dont-drop-Groups.patch
-Patch2: rmdevelrpms-8.5-SLE11.patch
+# PATCH-FIX-OPENSUSE suse-specfile_python.patch -- Use old style python 
template
+Patch3: suse-specfile_python.patch
+# PATCH-FIX-OPENSUSE suse-specfile_python_single.patch -- Use new style python 
template (singlespec)
+Patch4: suse-specfile_python_single.patch
 BuildRequires:  help2man
 BuildRequires:  rpm-python
 BuildRequires:  xz
@@ -71,8 +74,10 @@
 %setup -q
 %patch0 -p1
 %patch1 -p1
-%if 0%{?suse_version} == 1110
-%patch2
+%if 0%{?suse_version} == 1315 && 0%{?sle_version} <= 120200
+%patch3 -p1
+%else
+%patch4 -p1
 %endif
 cp -a %{SOURCE1} template.init
 
@@ -88,7 +93,7 @@
 
 mkdir -p %{buildroot}%{emacs_sitestart_d}
 ln -s %{_datadir}/rpmdevtools/rpmdev-init.el 
%{buildroot}%{emacs_sitestart_d}/rpmdev-init.el
-#/bin/touch %{buildroot}%{emacs_sitestart_d}/rpmdev-init.elc
+#/bin/touch %%{buildroot}%%{emacs_sitestart_d}/rpmdev-init.elc
 
 # Use the "rpmdev-" prefix for spectool that conflicts with Redhat spectool
 mv %{buildroot}%{_bindir}/spectool %{buildroot}%{_bindir}/rpmdev-spectool

++ rpmdevtools-8.9.tar.xz -> rpmdevtools-8.10.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rpmdevtools-8.9/Makefile.am 
new/rpmdevtools-8.10/Makefile.am
--- old/rpmdevtools-8.9/Makefile.am 2016-06-23 19:31:58.0 +0200
+++ new/rpmdevtools-8.10/Makefile.am2017-01-14 11:51:20.0 +0100
@@ -74,3 +74,22 @@
 
 flake8: $(python_scripts)
$(flake8) $(python_scripts)
+
+shell_scripts = rpmdev-diff rpmdev-extract rpmdev-md5 rpmdev-newinit \
+   rpmdev-newspec rpmdev-packager rpmdev-setuptree rpmdev-wipetree \
+   rpminfo rpmls template.init
+bashate = bashate
+shellcheck = shellcheck
+
+bashate: $(shell_scripts)
+   $(bashate) $(shell_scripts)
+
+shellcheck: $(shell_scripts)
+   $(shellcheck) $(shell_scripts)
+
+check-local: $(shell_scripts)
+   ret=0
+   for file in $(shell_scripts) ; do \
+   bash -n -O extglob $$file || ret=$$? ; 

  1   2   >