From 768e750638d78071e2b41114da5f8a897f860d7b2bc7d3bb0ed2a4d7455b9139 Mon Sep 17 00:00:00 2001 From: Fridrich Strba Date: Mon, 4 Nov 2024 19:36:35 +0000 Subject: [PATCH 1/2] OBS-URL: https://build.opensuse.org/package/show/Java:packages/xmlstreambuffer?expand=0&rev=17 --- .gitattributes | 23 +++++++++ .gitignore | 1 + streambuffer-1.5.4.tar.gz | 3 ++ xmlstreambuffer.changes | 19 +++++++ xmlstreambuffer.spec | 102 ++++++++++++++++++++++++++++++++++++++ 5 files changed, 148 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 streambuffer-1.5.4.tar.gz create mode 100644 xmlstreambuffer.changes create mode 100644 xmlstreambuffer.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/streambuffer-1.5.4.tar.gz b/streambuffer-1.5.4.tar.gz new file mode 100644 index 0000000..47c6569 --- /dev/null +++ b/streambuffer-1.5.4.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5099506e5455bb0dc40e956afa811cf45b9fcaf9615c47a4fdcae84bac27ca8e +size 52973 diff --git a/xmlstreambuffer.changes b/xmlstreambuffer.changes new file mode 100644 index 0000000..76017b6 --- /dev/null +++ b/xmlstreambuffer.changes @@ -0,0 +1,19 @@ +------------------------------------------------------------------- +Sat Nov 2 17:51:20 UTC 2024 - Fridrich Strba + +- Assure we are building against the right apis + +------------------------------------------------------------------- +Tue Sep 12 12:51:36 UTC 2023 - Fridrich Strba + +- Reproducible builds: use SOURCE_DATE_EPOCH for timestamp + +------------------------------------------------------------------- +Wed Mar 23 05:57:56 UTC 2022 - Fridrich Strba + +- Build with source and target levels 8 (jsc#SLE-23217) + +------------------------------------------------------------------- +Mon Mar 9 12:13:40 UTC 2020 - Fridrich Strba + +- Initial packaging of xmlstreambuffer 1.5.4 diff --git a/xmlstreambuffer.spec b/xmlstreambuffer.spec new file mode 100644 index 0000000..258f82d --- /dev/null +++ b/xmlstreambuffer.spec @@ -0,0 +1,102 @@ +# +# spec file for package xmlstreambuffer +# +# Copyright (c) 2024 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +Name: xmlstreambuffer +Version: 1.5.4 +Release: 0 +Summary: XML Stream Buffer +License: CDDL-1.0 OR GPL-2.0-only WITH Classpath-exception-2.0 +Group: Development/Libraries/Java +URL: https://java.net/projects/xmlstreambuffer/ +Source0: https://github.com/kohsuke/xmlstreambuffer/archive/streambuffer-%{version}.tar.gz +BuildRequires: fdupes +BuildRequires: java-devel >= 1.8 +BuildRequires: maven-local +BuildRequires: mvn(net.java:jvnet-parent:pom:) +BuildRequires: mvn(org.apache.felix:maven-bundle-plugin) +BuildRequires: mvn(org.jvnet.staxex:stax-ex) +#!BuildRequires: stax-ex +Requires: stax-ex +BuildArch: noarch + +%description +A stream buffer is a stream-based representation of an XML +info-set in Java. Stream buffers are designed to: provide +very efficient stream-based memory representations of XML +info-sets; and be created and processed using any Java-based +XML API. +Conceptually a stream buffer is similar to the representation +used in the Xerces deferred DOM implementation, with the crucial +difference that a stream buffer does not store hierarchical +information like parent and sibling information. The deferred +DOM implementation reduces memory usage when large XML documents +are parsed but only a subset of the document needs to be processed. +(Note that using deferred DOM will be more expensive than +non-deferred DOM in terms of memory and processing if all +the document is traversed.) +Stream buffers may be used as an efficient alternative to DOM where: +* most or all of an XML info-set will eventually get traversed; and/or +* targeted access to certain parts of an XML info-set are required + and need to be efficiently processed using stream-based APIs like + SAX or StAX. + +%package javadoc +Summary: Javadoc for %{name} +Group: Documentation/HTML + +%description javadoc +This package contains javadoc for %{name}. + +%prep +%setup -q -n %{name}-streambuffer-%{version} +find ./ -name '*.class' -delete +find ./ -name '*.jar' -delete +find ./ -name '*.zip' -delete + +%pom_remove_plugin :maven-deploy-plugin +%pom_remove_plugin :maven-source-plugin +%pom_remove_plugin :findbugs-maven-plugin +%pom_remove_plugin :glassfish-copyright-maven-plugin +%pom_remove_plugin :cobertura-maven-plugin +%pom_remove_plugin :buildnumber-maven-plugin +%pom_remove_plugin :maven-enforcer-plugin + +rm -r test/com/sun/xml/stream/buffer/stax/InscopeNamespaceTest.java + +%{mvn_file} :streambuffer %{name} + +%build + +%{mvn_build} -f -- \ +%if %{?pkg_vcmp:%pkg_vcmp java-devel >= 9}%{!?pkg_vcmp:0} + -Dmaven.compiler.release=8 \ +%endif + -Dproject.build.outputTimestamp=$(date -u -d @${SOURCE_DATE_EPOCH:-$(date +%%s)} +%%Y-%%m-%%dT%%H:%%M:%%SZ) \ + -Dsource=8 + +%install +%mvn_install +%fdupes -s %{buildroot}%{_javadocdir} + +%files -f .mfiles +%license copyright.txt + +%files javadoc -f .mfiles-javadoc +%license copyright.txt + +%changelog From 49f98ac40c3ea76b7b1a32b429d1e0be6b11f147f19f7dced07120e67cc77d46 Mon Sep 17 00:00:00 2001 From: Fridrich Strba Date: Mon, 4 Nov 2024 21:28:06 +0000 Subject: [PATCH 2/2] OBS-URL: https://build.opensuse.org/package/show/Java:packages/xmlstreambuffer?expand=0&rev=18 --- xmlstreambuffer.changes | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/xmlstreambuffer.changes b/xmlstreambuffer.changes index 76017b6..42adb45 100644 --- a/xmlstreambuffer.changes +++ b/xmlstreambuffer.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Nov 4 21:27:51 UTC 2024 - Fridrich Strba + +- Fix conflict/choice of providers + ------------------------------------------------------------------- Sat Nov 2 17:51:20 UTC 2024 - Fridrich Strba