commit xpp2 for openSUSE:Factory

2019-11-10 Thread root
Hello community,

here is the log from the commit of package xpp2 for openSUSE:Factory checked in 
at 2019-11-10 22:27:48

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


Package is "xpp2"

Sun Nov 10 22:27:48 2019 rev:18 rq:746580 version:2.1.10

Changes:

--- /work/SRC/openSUSE:Factory/xpp2/xpp2.changes2017-09-13 
22:26:39.450672582 +0200
+++ /work/SRC/openSUSE:Factory/.xpp2.new.2990/xpp2.changes  2019-11-10 
22:27:49.292344187 +0100
@@ -1,0 +2,6 @@
+Fri Nov  8 12:01:16 UTC 2019 - Fridrich Strba 
+
+- BuildRequire xerces-j2, because it is not automatically pulled
+  by ant anymore
+
+---



Other differences:
--
++ xpp2.spec ++
--- /var/tmp/diff_new_pack.CQqfrp/_old  2019-11-10 22:27:49.828344926 +0100
+++ /var/tmp/diff_new_pack.CQqfrp/_new  2019-11-10 22:27:49.832344931 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xpp2
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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/
 #
 
 
@@ -32,6 +32,7 @@
 BuildRequires:  fdupes
 BuildRequires:  javapackages-tools
 BuildRequires:  junit
+BuildRequires:  xerces-j2
 BuildRequires:  xml-commons-apis
 Requires:   xml-commons-apis
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -79,7 +80,7 @@
 
 %build
 export OPT_JAR_LIST="ant/ant-junit junit"
-export CLASSPATH=$(build-classpath xml-commons-apis)
+export CLASSPATH=$(build-classpath xml-commons-apis xerces-j2)
 ant all api api.impl
 CLASSPATH=$CLASSPATH:$(build-classpath 
junit):build/tests:build/lib/PullParser-2.1.10.jar
 java AllTests




commit xpp2 for openSUSE:Factory

2017-09-13 Thread root
Hello community,

here is the log from the commit of package xpp2 for openSUSE:Factory checked in 
at 2017-09-13 22:26:35

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


Package is "xpp2"

Wed Sep 13 22:26:35 2017 rev:17 rq:523325 version:2.1.10

Changes:

--- /work/SRC/openSUSE:Factory/xpp2/xpp2.changes2014-07-21 
10:35:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.xpp2.new/xpp2.changes   2017-09-13 
22:26:39.450672582 +0200
@@ -1,0 +2,11 @@
+Mon Sep 11 16:45:34 UTC 2017 - fst...@suse.com
+
+- Modified patch:
+  * xpp2-build_xml.patch
++ Specify java source and target level 1.6 in order to allow
+  building with jdk9
+  * xpp2-enum.patch
++ Rename variables "enum" to "emun" in order to avoid clash
+  with a reserved word in java >= 1.5
+
+---

New:

  xpp2-enum.patch



Other differences:
--
++ xpp2.spec ++
--- /var/tmp/diff_new_pack.kP7rtq/_old  2017-09-13 22:26:40.158572924 +0200
+++ /var/tmp/diff_new_pack.kP7rtq/_new  2017-09-13 22:26:40.162572362 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xpp2
 #
-# 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
@@ -26,6 +26,7 @@
 Url:http://www.extreme.indiana.edu/xgws/xsoap/xpp/
 Source0:
http://www.extreme.indiana.edu/xgws/xsoap/xpp/download/PullParser2/PullParser2.1.10.tar.bz2
 Patch0: xpp2-build_xml.patch
+Patch1: xpp2-enum.patch
 BuildRequires:  ant >= 1.6
 BuildRequires:  ant-junit >= 1.6
 BuildRequires:  fdupes
@@ -74,6 +75,7 @@
 # remove all binary libs
 find . -name "*.jar" -exec rm -f {} \;
 %patch0 -b .sav
+%patch1 -p1
 
 %build
 export OPT_JAR_LIST="ant/ant-junit junit"

++ xpp2-build_xml.patch ++
--- /var/tmp/diff_new_pack.kP7rtq/_old  2017-09-13 22:26:40.186568983 +0200
+++ /var/tmp/diff_new_pack.kP7rtq/_new  2017-09-13 22:26:40.186568983 +0200
@@ -5,8 +5,8 @@
  
  
 -  
-+  
-+  
++  
++  

  

@@ -185,7 +185,7 @@
   0) {
-Enumeration enum = children.elements();
-while (enum.hasMoreElements()) {
-Object child = enum.nextElement();
+Enumeration emun = children.elements();
+while (emun.hasMoreElements()) {
+Object child = emun.nextElement();
 if(child instanceof XmlNode) {
 ((XmlNode)child).setParentNode(null);
 }
@@ -373,11 +373,11 @@
 if(declaredNs != null) {
 System.arraycopy(declaredNs, 0, uris, off, len);
 }
-//Enumeration enum = prefix2Ns.keys();
+//Enumeration emun = prefix2Ns.keys();
 //int i = off;
-//while (enum.hasMoreElements() && i < off + len)
+//while (emun.hasMoreElements() && i < off + len)
 //{
-//uris[i++] = (String) prefix2Ns.get( enum.nextElement() );
+//uris[i++] = (String) prefix2Ns.get( emun.nextElement() );
 //}
 }
 
@@ -512,10 +512,10 @@
 buf.append(declaredNs[i]);
 buf.append("'");
 }
-//Enumeration enum = prefix2Ns.keys();
-//while (enum.hasMoreElements())
+//Enumeration emun = prefix2Ns.keys();
+//while (emun.hasMoreElements())
 //{
-//  Object key = enum.nextElement();
+//  Object key = emun.nextElement();
 //  buf.append("xmlns:");
 //  buf.append(key);
 //  buf.append("='");
--- PullParser2.1.10/src/java/tests/node/NodeTest.java  2017-09-11 
18:39:27.109544537 +0200
+++ PullParser2.1.10/src/java/tests/node/NodeTest.java  2017-09-11 
18:43:53.211362957 +0200
@@ -386,20 +386,20 @@
 assertEquals("", t1.getDefaultNamespaceUri());
 
 // check enumeration stuff...
-Enumeration enum = t1.children();
+Enumeration emun = t1.children();
 assertEquals(0, t1.getChildrenCountSoFar());
 //child1, child2...
-assertTrue(enum.hasMoreElements());
-child1 = (XmlPullNode) enum.nextElement();
+assertTrue(emun.hasMoreElements());
+child1 = (XmlPullNode) emun.nextElement();
 assertEquals("child1", child1.getLocalName());
-assertNotNull(enum.nextElement());
-child3 = (XmlPullNode) enum.nextElement();
+assertNotNull(emun.ne

commit xpp2 for openSUSE:Factory

2014-07-21 Thread h_root
Hello community,

here is the log from the commit of package xpp2 for openSUSE:Factory checked in 
at 2014-07-21 10:35:30

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


Package is "xpp2"

Changes:

--- /work/SRC/openSUSE:Factory/xpp2/xpp2.changes2013-09-11 
17:12:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.xpp2.new/xpp2.changes   2014-07-21 
10:35:31.0 +0200
@@ -1,0 +2,5 @@
+Fri Jul 11 13:59:37 UTC 2014 - tchva...@suse.com
+
+- Cleanup with spec-cleaner and do not version javadoc dir.
+
+---



Other differences:
--
++ xpp2.spec ++
--- /var/tmp/diff_new_pack.fzyfpM/_old  2014-07-21 10:35:32.0 +0200
+++ /var/tmp/diff_new_pack.fzyfpM/_new  2014-07-21 10:35:32.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xpp2
 #
-# 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
@@ -16,15 +16,13 @@
 #
 
 
-%define section free
 %define originalname PullParser
-Summary:XML Pull Parser
-License:Apache-1.1
-Group:  Development/Libraries/Java
-
 Name:   xpp2
 Version:2.1.10
 Release:0
+Summary:XML Pull Parser
+License:Apache-1.1
+Group:  Development/Libraries/Java
 Url:http://www.extreme.indiana.edu/xgws/xsoap/xpp/
 Source0:
http://www.extreme.indiana.edu/xgws/xsoap/xpp/download/PullParser2/PullParser2.1.10.tar.bz2
 Patch0: xpp2-build_xml.patch
@@ -35,16 +33,14 @@
 BuildRequires:  junit
 BuildRequires:  xml-commons-apis
 Requires:   xml-commons-apis
-BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildArch:  noarch
 
 %description
 XML Pull Parser 2 (XPP2) is a simple and fast incremental XML parser.
 NOTE: XPP2 is no longer developed and is on maintenance mode. All
 active development concentrates on its successor XPP3/MXP1
 
-
-
 %package javadoc
 Summary:XML Pull Parser
 Group:  Development/Libraries/Java
@@ -54,8 +50,6 @@
 NOTE: XPP2 is no longer developed and is on maintenance mode. All
 active development concentrates on its successor XPP3/MXP1
 
-
-
 %package manual
 Summary:XML Pull Parser
 Group:  Development/Libraries/Java
@@ -65,8 +59,6 @@
 NOTE: XPP2 is no longer developed and is on maintenance mode. All
 active development concentrates on its successor XPP3/MXP1
 
-
-
 %package demo
 Summary:XML Pull Parser
 Group:  Development/Libraries/Java
@@ -77,8 +69,6 @@
 NOTE: XPP2 is no longer developed and is on maintenance mode. All
 active development concentrates on its successor XPP3/MXP1
 
-
-
 %prep
 %setup -q -n %{originalname}%{version}
 # remove all binary libs
@@ -94,69 +84,36 @@
 
 %install
 # jars
-mkdir -p $RPM_BUILD_ROOT%{_javadir}
+mkdir -p %{buildroot}%{_javadir}
 cp -p build/lib/%{originalname}-intf-%{version}.jar \
-  $RPM_BUILD_ROOT%{_javadir}/%{name}-intf-%{version}.jar
+  %{buildroot}%{_javadir}/%{name}-intf-%{version}.jar
 cp -p build/lib/%{originalname}-standard-%{version}.jar \
-  $RPM_BUILD_ROOT%{_javadir}/%{name}-standard-%{version}.jar
+  %{buildroot}%{_javadir}/%{name}-standard-%{version}.jar
 cp -p build/lib/%{originalname}-%{version}.jar \
-  $RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar
+  %{buildroot}%{_javadir}/%{name}-%{version}.jar
 cp -p build/lib/%{originalname}-x2-%{version}.jar \
-  $RPM_BUILD_ROOT%{_javadir}/%{name}-x2-%{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}-x2-%{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}-%{version}/api
-mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}/api_impl
-cp -pr doc/api/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}/api
-cp -pr doc/api_impl/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}/api_impl
-ln -s %{name}-%{version} $RPM_BUILD_ROOT%{_javadocdir}/%{name}
+mkdir -p %{buildroot}%{_javadocdir}/%{name}/api
+mkdir -p %{buildroot}%{_javadocdir}/%{name}/api_impl
+cp -pr doc/api/* %{buildroot}%{_javadocdir}/%{name}/api
+cp -pr doc/api_impl/* %{buildroot}%{_javadocdir}/%{name}/api_impl
 rm -rf doc/{build.txt,api,api_impl}
 # manual
-mkdir -p $RPM_BUILD_ROOT%{_datadir}/doc/%{name}-%{version}
-cp -pr doc/* $RPM_BUILD_ROOT%{_datadir}/doc/%{name}

commit xpp2 for openSUSE:Factory

2013-09-11 Thread h_root
Hello community,

here is the log from the commit of package xpp2 for openSUSE:Factory checked in 
at 2013-09-11 17:11:59

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


Package is "xpp2"

Changes:

--- /work/SRC/openSUSE:Factory/xpp2/xpp2.changes2012-02-01 
10:00:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.xpp2.new/xpp2.changes   2013-09-11 
17:12:00.0 +0200
@@ -1,0 +2,5 @@
+Mon Sep  9 11:06:31 UTC 2013 - tchva...@suse.com
+
+- Move from jpackage-utils to javapackage-tools
+
+---



Other differences:
--
++ xpp2.spec ++
--- /var/tmp/diff_new_pack.BgxbEm/_old  2013-09-11 17:12:00.0 +0200
+++ /var/tmp/diff_new_pack.BgxbEm/_new  2013-09-11 17:12:00.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xpp2
 #
-# Copyright (c) 2012 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
@@ -19,21 +19,21 @@
 %define section free
 %define originalname PullParser
 Summary:XML Pull Parser
+License:Apache-1.1
+Group:  Development/Libraries/Java
 
 Name:   xpp2
 Version:2.1.10
-Release:3
-License:Apache-1.1
+Release:0
 Url:http://www.extreme.indiana.edu/xgws/xsoap/xpp/
-Group:  Development/Libraries/Java
 Source0:
http://www.extreme.indiana.edu/xgws/xsoap/xpp/download/PullParser2/PullParser2.1.10.tar.bz2
 Patch0: xpp2-build_xml.patch
 BuildRequires:  ant >= 1.6
 BuildRequires:  ant-junit >= 1.6
-BuildRequires:  jpackage-utils >= 1.6
+BuildRequires:  fdupes
+BuildRequires:  javapackages-tools
 BuildRequires:  junit
 BuildRequires:  xml-commons-apis
-BuildRequires:  fdupes
 Requires:   xml-commons-apis
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -46,7 +46,6 @@
 
 
 %package javadoc
-License:Apache-1.1
 Summary:XML Pull Parser
 Group:  Development/Libraries/Java
 
@@ -58,7 +57,6 @@
 
 
 %package manual
-License:Apache-1.1
 Summary:XML Pull Parser
 Group:  Development/Libraries/Java
 
@@ -70,7 +68,6 @@
 
 
 %package demo
-License:Apache-1.1
 Summary:XML Pull Parser
 Group:  Development/Libraries/Java
 Requires:   %{name} = %{version}

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



commit xpp2 for openSUSE:Factory

2012-02-01 Thread h_root
Hello community,

here is the log from the commit of package xpp2 for openSUSE:Factory checked in 
at 2012-02-01 10:00:53

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


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

Changes:

--- /work/SRC/openSUSE:Factory/xpp2/xpp2.changes2011-09-23 
12:52:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.xpp2.new/xpp2.changes   2012-02-01 
10:00:56.0 +0100
@@ -1,0 +2,5 @@
+Tue Jan 31 10:17:26 UTC 2012 - mvysko...@suse.cz
+
+- remove file conflict between xpp2 and xpp2-manual 
+
+---



Other differences:
--
++ xpp2.spec ++
--- /var/tmp/diff_new_pack.hiOjFU/_old  2012-02-01 10:00:57.0 +0100
+++ /var/tmp/diff_new_pack.hiOjFU/_new  2012-02-01 10:00:57.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package xpp2 (Version 2.1.10)
+# spec file for package xpp2
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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
@@ -178,6 +178,8 @@
 %defattr(0644,root,root,0755)
 %{_datadir}/doc/%{name}-%{version}
 %{_datadir}/doc/%{name}
+%exclude %{_datadir}/doc/%{name}-%{version}/README.html
+%exclude %{_datadir}/doc/%{name}-%{version}/LICENSE.txt
 
 %files demo
 %defattr(0644,root,root,0755)

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



commit xpp2 for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

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

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


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

Changes:




Other differences:
--
++ xpp2.spec ++
--- /var/tmp/diff_new_pack.hJtl7w/_old  2011-12-06 19:58:58.0 +0100
+++ /var/tmp/diff_new_pack.hJtl7w/_new  2011-12-06 19:58:58.0 +0100
@@ -23,7 +23,7 @@
 Name:   xpp2
 Version:2.1.10
 Release:3
-License:Apache 1.1 (Indiana University)
+License:Apache-1.1
 Url:http://www.extreme.indiana.edu/xgws/xsoap/xpp/
 Group:  Development/Libraries/Java
 Source0:
http://www.extreme.indiana.edu/xgws/xsoap/xpp/download/PullParser2/PullParser2.1.10.tar.bz2
@@ -46,7 +46,7 @@
 
 
 %package javadoc
-License:Apache 1.1 (Indiana University)
+License:Apache-1.1
 Summary:XML Pull Parser
 Group:  Development/Libraries/Java
 
@@ -58,7 +58,7 @@
 
 
 %package manual
-License:Apache 1.1 (Indiana University)
+License:Apache-1.1
 Summary:XML Pull Parser
 Group:  Development/Libraries/Java
 
@@ -70,7 +70,7 @@
 
 
 %package demo
-License:Apache 1.1 (Indiana University)
+License:Apache-1.1
 Summary:XML Pull Parser
 Group:  Development/Libraries/Java
 Requires:   %{name} = %{version}

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