commit swingx for openSUSE:Factory

2018-10-04 Thread root
Hello community,

here is the log from the commit of package swingx for openSUSE:Factory checked 
in at 2018-10-04 19:01:18

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


Package is "swingx"

Thu Oct  4 19:01:18 2018 rev:17 rq:639669 version:0.9.4

Changes:

--- /work/SRC/openSUSE:Factory/swingx/swingx.changes2017-09-20 
17:12:07.830288896 +0200
+++ /work/SRC/openSUSE:Factory/.swingx.new/swingx.changes   2018-10-04 
19:01:20.215213278 +0200
@@ -1,0 +2,7 @@
+Wed Oct  3 05:31:25 UTC 2018 - Fridrich Strba 
+
+- Added patch:
+  * swingx-0.9.4-toArray.patch
++ Resolve ambiguity with a new toArray function added in jdk11
+
+---

New:

  swingx-0.9.4-toArray.patch



Other differences:
--
++ swingx.spec ++
--- /var/tmp/diff_new_pack.QD16bj/_old  2018-10-04 19:01:21.015212439 +0200
+++ /var/tmp/diff_new_pack.QD16bj/_new  2018-10-04 19:01:21.019212435 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package swingx
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -12,7 +12,7 @@
 # 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/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -20,7 +20,7 @@
 Version:0.9.4
 Release:0
 Summary:A collection of Swing components
-License:LGPL-2.0
+License:LGPL-2.0-only
 Group:  Development/Libraries/Java
 Url:https://swingx.dev.java.net/
 Source0:
https://swingx.dev.java.net/files/documents/2981/110622/%{name}-%{version}-src.tar.bz2
@@ -32,6 +32,8 @@
 Patch1: swingx-0.9.4-project-properties.patch
 # Don't do the "demo taglet" stuff
 Patch2: swingx-0.9.4-swinglabs-build-impl.patch
+# Resolve the ambiguity of toArray in jdk11
+Patch3: swingx-0.9.4-toArray.patch
 BuildRequires:  ant
 BuildRequires:  batik
 BuildRequires:  fdupes
@@ -59,6 +61,7 @@
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 rm -rf lib/
 
 %build

++ swingx-0.9.4-toArray.patch ++
--- swingx-0.9.4-src/src/java/org/jdesktop/swingx/error/ErrorSupport.java   
2008-09-07 06:10:24.0 +0200
+++ swingx-0.9.4-src/src/java/org/jdesktop/swingx/error/ErrorSupport.java   
2018-10-03 07:20:59.784392455 +0200
@@ -68,7 +68,7 @@
  * added.
  */
 public ErrorListener[] getErrorListeners() {
-return listeners.toArray(null);
+return listeners.toArray(new ErrorListener[0]);
 }
 
 /**



commit swingx for openSUSE:Factory

2017-09-20 Thread root
Hello community,

here is the log from the commit of package swingx for openSUSE:Factory checked 
in at 2017-09-20 17:12:07

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


Package is "swingx"

Wed Sep 20 17:12:07 2017 rev:16 rq:527283 version:0.9.4

Changes:

--- /work/SRC/openSUSE:Factory/swingx/swingx.changes2017-05-22 
10:48:38.515117531 +0200
+++ /work/SRC/openSUSE:Factory/.swingx.new/swingx.changes   2017-09-20 
17:12:07.830288896 +0200
@@ -1,0 +2,5 @@
+Tue Sep 19 11:01:03 UTC 2017 - fst...@suse.com
+
+- Fix build with jdk9: specify java source and target level 1.6
+
+---



Other differences:
--
++ swingx.spec ++
--- /var/tmp/diff_new_pack.6kzl9j/_old  2017-09-20 17:12:08.782154903 +0200
+++ /var/tmp/diff_new_pack.6kzl9j/_new  2017-09-20 17:12:08.782154903 +0200
@@ -34,11 +34,11 @@
 Patch2: swingx-0.9.4-swinglabs-build-impl.patch
 BuildRequires:  ant
 BuildRequires:  batik
+BuildRequires:  fdupes
 BuildRequires:  java-devel >= 1.6.0
 BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 Requires:   java >= 1.6.0
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
 %description
@@ -62,7 +62,7 @@
 rm -rf lib/
 
 %build
-ant jar javadoc
+ant -Djavac.source=1.6 -Djavac.target=1.6 jar javadoc
 
 %install
 # jar
@@ -76,16 +76,15 @@
 # javadoc
 mkdir -p %{buildroot}%{_javadocdir}/
 cp -r dist/javadoc %{buildroot}%{_javadocdir}/%{name}
+%fdupes -s %{buildroot}%{_javadocdir}/%{name}
 
 %files
-%defattr(-,root,root,-)
 %doc COPYING README
 %{_javadir}/*.jar
 %{_mavenpomdir}/*
 %config(noreplace) %{_datadir}/maven-metadata/%{name}.xml
 
 %files javadoc
-%defattr(-,root,root,-)
 %{_javadocdir}/%{name}
 
 %changelog




commit swingx for openSUSE:Factory

2017-05-22 Thread root
Hello community,

here is the log from the commit of package swingx for openSUSE:Factory checked 
in at 2017-05-22 10:47:29

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


Package is "swingx"

Mon May 22 10:47:29 2017 rev:15 rq:496695 version:0.9.4

Changes:

--- /work/SRC/openSUSE:Factory/swingx/swingx.changes2015-04-02 
15:58:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.swingx.new/swingx.changes   2017-05-22 
10:48:38.515117531 +0200
@@ -1,0 +2,5 @@
+Fri May 19 10:59:46 UTC 2017 - dziolkow...@suse.com
+
+- New build dependency: javapackages-local
+
+---



Other differences:
--
++ swingx.spec ++
--- /var/tmp/diff_new_pack.7fYoCl/_old  2017-05-22 10:48:39.199021138 +0200
+++ /var/tmp/diff_new_pack.7fYoCl/_new  2017-05-22 10:48:39.203020574 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package swingx
 #
-# 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
@@ -35,6 +35,7 @@
 BuildRequires:  ant
 BuildRequires:  batik
 BuildRequires:  java-devel >= 1.6.0
+BuildRequires:  javapackages-local
 BuildRequires:  javapackages-tools
 Requires:   java >= 1.6.0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build




commit swingx for openSUSE:Factory

2015-04-02 Thread h_root
Hello community,

here is the log from the commit of package swingx for openSUSE:Factory checked 
in at 2015-04-02 15:58:58

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


Package is swingx

Changes:

--- /work/SRC/openSUSE:Factory/swingx/swingx.changes2014-07-11 
20:06:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.swingx.new/swingx.changes   2015-04-02 
15:58:59.0 +0200
@@ -1,0 +2,5 @@
+Wed Mar 18 09:46:21 UTC 2015 - tchva...@suse.com
+
+- Fix build with new javapackages-tools
+
+---



Other differences:
--
++ swingx.spec ++
--- /var/tmp/diff_new_pack.yz3oqE/_old  2015-04-02 15:58:59.0 +0200
+++ /var/tmp/diff_new_pack.yz3oqE/_new  2015-04-02 15:58:59.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package swingx
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -81,7 +81,7 @@
 %doc COPYING README
 %{_javadir}/*.jar
 %{_mavenpomdir}/*
-%config(noreplace) %{_mavendepmapfragdir}/%{name}
+%config(noreplace) %{_datadir}/maven-metadata/%{name}.xml
 
 %files javadoc
 %defattr(-,root,root,-)




commit swingx for openSUSE:Factory

2014-07-11 Thread h_root
Hello community,

here is the log from the commit of package swingx for openSUSE:Factory checked 
in at 2014-07-11 20:06:02

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


Package is swingx

Changes:

--- /work/SRC/openSUSE:Factory/swingx/swingx.changes2014-06-30 
22:50:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.swingx.new/swingx.changes   2014-07-11 
20:06:03.0 +0200
@@ -1,0 +2,5 @@
+Tue Jul  8 10:53:18 UTC 2014 - tchva...@suse.com
+
+- Do not depend on ant-nodeps.
+
+---



Other differences:
--
++ swingx.spec ++
--- /var/tmp/diff_new_pack.JqzGB2/_old  2014-07-11 20:06:04.0 +0200
+++ /var/tmp/diff_new_pack.JqzGB2/_new  2014-07-11 20:06:04.0 +0200
@@ -33,13 +33,10 @@
 # Don't do the demo taglet stuff
 Patch2: swingx-0.9.4-swinglabs-build-impl.patch
 BuildRequires:  ant
-BuildRequires:  ant-nodeps
 BuildRequires:  batik
 BuildRequires:  java-devel = 1.6.0
 BuildRequires:  javapackages-tools
 Requires:   java = 1.6.0
-Requires(post): javapackages-tools
-Requires(postun): javapackages-tools
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 

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



commit swingx for openSUSE:Factory

2014-06-30 Thread h_root
Hello community,

here is the log from the commit of package swingx for openSUSE:Factory checked 
in at 2014-06-30 22:50:15

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


Package is swingx

Changes:

--- /work/SRC/openSUSE:Factory/swingx/swingx.changes2013-09-12 
13:26:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.swingx.new/swingx.changes   2014-06-30 
22:50:23.0 +0200
@@ -1,0 +2,5 @@
+Fri Jun 27 14:48:43 UTC 2014 - tchva...@suse.com
+
+- Cleanup with spec-cleaner
+
+---



Other differences:
--
++ swingx.spec ++
--- /var/tmp/diff_new_pack.xP3ViU/_old  2014-06-30 22:50:25.0 +0200
+++ /var/tmp/diff_new_pack.xP3ViU/_new  2014-06-30 22:50:25.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package swingx
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -32,19 +32,16 @@
 Patch1: swingx-0.9.4-project-properties.patch
 # Don't do the demo taglet stuff
 Patch2: swingx-0.9.4-swinglabs-build-impl.patch
-
-Requires:   java = 1.6.0
-
 BuildRequires:  ant
 BuildRequires:  ant-nodeps
 BuildRequires:  batik
 BuildRequires:  java-devel = 1.6.0
 BuildRequires:  javapackages-tools
-BuildArch:  noarch
+Requires:   java = 1.6.0
 Requires(post): javapackages-tools
 Requires(postun): javapackages-tools
-
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildArch:  noarch
 
 %description
 SwingX contains a collection of powerful, useful, and just plain fun Swing

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



commit swingx for openSUSE:Factory

2013-09-12 Thread h_root
Hello community,

here is the log from the commit of package swingx for openSUSE:Factory checked 
in at 2013-09-12 13:26:34

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


Package is swingx

Changes:

--- /work/SRC/openSUSE:Factory/swingx/swingx.changes2011-09-23 
12:47:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.swingx.new/swingx.changes   2013-09-12 
13:26:34.0 +0200
@@ -1,0 +2,10 @@
+Wed Sep 11 07:58:20 UTC 2013 - mvysko...@suse.com
+
+- use add_maven_depmap from javapackages-tools
+
+---
+Mon Sep  9 11:06:23 UTC 2013 - tchva...@suse.com
+
+- Move from jpackage-utils to javapackage-tools
+
+---



Other differences:
--
++ swingx.spec ++
--- /var/tmp/diff_new_pack.k9EKBh/_old  2013-09-12 13:26:35.0 +0200
+++ /var/tmp/diff_new_pack.k9EKBh/_new  2013-09-12 13:26:35.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package swingx (Version 0.9.4)
+# spec file for package swingx
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -16,10 +16,9 @@
 #
 
 
-
 Name:   swingx
 Version:0.9.4
-Release:1
+Release:0
 Summary:A collection of Swing components
 License:LGPL-2.0
 Group:  Development/Libraries/Java
@@ -36,13 +35,14 @@
 
 Requires:   java = 1.6.0
 
-BuildRequires:  ant ant-nodeps
-BuildRequires:  java-devel = 1.6.0
-BuildRequires:  jpackage-utils = 1.5
+BuildRequires:  ant
+BuildRequires:  ant-nodeps
 BuildRequires:  batik
+BuildRequires:  java-devel = 1.6.0
+BuildRequires:  javapackages-tools
 BuildArch:  noarch
-Requires(post): jpackage-utils
-Requires(postun): jpackage-utils
+Requires(post): javapackages-tools
+Requires(postun): javapackages-tools
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -53,7 +53,6 @@
 created like the JXDatePicker, JXTaskPane, and JXImagePanel.
 
 %package javadoc
-License:LGPL-2.0
 Summary:Javadoc for %{name}
 Group:  Documentation/HTML
 
@@ -71,30 +70,27 @@
 ant jar javadoc
 
 %install
-mkdir -p ${RPM_BUILD_ROOT}%{_javadocdir}/
-cp -r dist/javadoc ${RPM_BUILD_ROOT}%{_javadocdir}/%{name}-%{version}
-mkdir -p $RPM_BUILD_ROOT%{_javadir}
-cp -p dist/%{name}.jar  $RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar
-ln -s %{name}-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{name}.jar
-%add_to_maven_depmap org.jdesktop.swingx %{name} %{version} JPP %{name}
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-%post
-%update_maven_depmap
-
-%postun
-%update_maven_depmap
+# jar
+mkdir -p %{buildroot}%{_javadir}
+cp -p dist/%{name}.jar  %{buildroot}%{_javadir}/%{name}.jar
+
+mkdir -p %{buildroot}/%{_mavenpomdir}/
+install -m 0644 pom.xml %{buildroot}/%{_mavenpomdir}/JPP-%{name}.pom
+%add_maven_depmap
+
+# javadoc
+mkdir -p %{buildroot}%{_javadocdir}/
+cp -r dist/javadoc %{buildroot}%{_javadocdir}/%{name}
 
 %files
 %defattr(-,root,root,-)
 %doc COPYING README
 %{_javadir}/*.jar
+%{_mavenpomdir}/*
 %config(noreplace) %{_mavendepmapfragdir}/%{name}
 
 %files javadoc
 %defattr(-,root,root,-)
-%{_javadocdir}/%{name}-%{version}
+%{_javadocdir}/%{name}
 
 %changelog

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



commit swingx for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package swingx for openSUSE:Factory checked 
in at 2011-12-06 19:06:43

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


Package is swingx, Maintainer is bnc-team-j...@forge.provo.novell.com

Changes:




Other differences:
--
++ swingx.spec ++
--- /var/tmp/diff_new_pack.CPbN07/_old  2011-12-06 19:40:36.0 +0100
+++ /var/tmp/diff_new_pack.CPbN07/_new  2011-12-06 19:40:36.0 +0100
@@ -21,7 +21,7 @@
 Version:0.9.4
 Release:1
 Summary:A collection of Swing components
-License:LGPLv2
+License:LGPL-2.0
 Group:  Development/Libraries/Java
 Url:https://swingx.dev.java.net/
 Source0:
https://swingx.dev.java.net/files/documents/2981/110622/%{name}-%{version}-src.tar.bz2
@@ -53,7 +53,7 @@
 created like the JXDatePicker, JXTaskPane, and JXImagePanel.
 
 %package javadoc
-License:LGPLv2
+License:LGPL-2.0
 Summary:Javadoc for %{name}
 Group:  Documentation/HTML
 

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