Sync from SUSE:SLFO:Main xz-java revision d23a510eae46ffabcfe566aaa4d86815

This commit is contained in:
Adrian Schröter 2024-05-04 02:19:21 +02:00
commit d0d4375549
4 changed files with 187 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -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

BIN
xz-java-1.9.zip (Stored with Git LFS) Normal file

Binary file not shown.

82
xz-java.changes Normal file
View File

@ -0,0 +1,82 @@
-------------------------------------------------------------------
Thu Sep 21 06:43:05 UTC 2023 - Fridrich Strba <fstrba@suse.com>
- Build with java source/target levels 8
-------------------------------------------------------------------
Mon Dec 12 19:32:21 UTC 2022 - Anton Shvetz <shvetz.anton@gmail.com>
- Update to version 1.9
* Release notes at /usr/share/doc/packages/xz-java/NEWS
- Remove obsolete patch:
* xz-java-source-version.patch
-------------------------------------------------------------------
Wed Feb 13 12:27:36 UTC 2019 - Klaus Kämpf <kkaempf@suse.com>
- add provides/obsoletes for xz-java (boo#1125298)
-------------------------------------------------------------------
Sat Jan 26 12:01:16 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
- Trim future goals from description.
-------------------------------------------------------------------
Wed Jan 9 08:43:32 UTC 2019 - Fridrich Strba <fstrba@suse.com>
- Modified patch:
* java-3d_source_version.patch -> xz-java-source-version.patch
+ change name to correspond to reality
-------------------------------------------------------------------
Sat Oct 27 19:12:19 UTC 2018 - Fridrich Strba <fstrba@suse.com>
- renamed package to xz-java
-------------------------------------------------------------------
Tue Oct 23 19:26:13 UTC 2018 - Fridrich Strba <fstrba@suse.com>
- Update to 1.8
- Modified patch:
* java-3d_source_version.patch
- Rediff to changed context
-------------------------------------------------------------------
Mon Oct 22 12:45:47 UTC 2018 - Fridrich Strba <fstrba@suse.com>
- Generate the maven pom files and install them
-------------------------------------------------------------------
Sat May 3 00:05:11 UTC 2014 - ecsos@opensuse.org
- update to 1.5
-------------------------------------------------------------------
Mon Nov 11 15:52:00 UTC 2013 - robertherb@arcor.de.de
- Update to 1.4
- renamed package to java-xz
-------------------------------------------------------------------
Sat Aug 31 15:52:00 UTC 2013 - conrad@quisquis.de
- Fixed Source header
-------------------------------------------------------------------
Sat Aug 31 10:24:00 UTC 2013 - conrad@quisquis.de
- Upgrade to 1.3
-------------------------------------------------------------------
Fri Apr 5 17:15:00 UTC 2013 - conrad@quisquis.de
- Fixed fedora build deps
- Fixed license string
-------------------------------------------------------------------
Thu Mar 28 13:51:00 UTC 2013 - conrad@quisquis.de
- Disabled external links in javadoc
-------------------------------------------------------------------
Thu Mar 28 13:28:00 UTC 2013 - conrad@quisquis.de
- Disabled download_files service - upstream server hangs
-------------------------------------------------------------------
Thu Mar 28 13:01:00 UTC 2013 - conrad@quisquis.de
- Initial project creation

79
xz-java.spec Normal file
View File

@ -0,0 +1,79 @@
#
# spec file for package xz-java
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2013 Peter Conrad
#
# 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: xz-java
Version: 1.9
Release: 0
Summary: Pure Java implementation of XZ compression
License: SUSE-Public-Domain
Group: Development/Libraries/Java
URL: https://tukaani.org/xz/java.html
Source: http://tukaani.org/xz/xz-java-%{version}.zip
BuildRequires: ant
BuildRequires: fdupes
BuildRequires: java-devel >= 1.8
BuildRequires: javapackages-local
BuildRequires: unzip
Provides: java-xz
Obsoletes: java-xz
BuildArch: noarch
%description
This is an implementation of XZ data compression in pure Java.
Single-threaded streamed compression and decompression and random access
decompression have been implemented.
%package javadoc
Summary: API documentation of Java XZ compression library
Group: Documentation/HTML
%description javadoc
This package contains the API documentation of xz-java.
%prep
%setup -q -c -n %{name}
%build
sed -i 's/linkoffline="[^"]*"//;/extdoc_/d' build.xml
sed -i 's/sourcever = 7/sourcever = 8/g' build.properties
ant -Dant.build.javac.{source,target}=8 clean jar doc maven
%install
# jar
install -dm 0755 %{buildroot}%{_javadir}
install -pm 0644 build/maven/xz-%{version}.jar %{buildroot}%{_javadir}/%{name}.jar
(cd %{buildroot}%{_javadir} && ln -s %{name}.jar xz.jar)
# pom
install -dm 0755 %{buildroot}%{_mavenpomdir}
install -pm 0644 build/maven/xz-%{version}.pom %{buildroot}%{_mavenpomdir}/%{name}.pom
%add_maven_depmap %{name}.pom %{name}.jar
# javadoc
mkdir -p %{buildroot}%{_javadocdir}/%{name}
cp -pr build/doc/* %{buildroot}%{_javadocdir}/%{name}
%fdupes -s %{buildroot}%{_javadocdir}
%files -f .mfiles
%license COPYING
%doc NEWS README THANKS
%{_javadir}/xz.jar
%files javadoc
%{_javadocdir}/%{name}
%changelog