|
|
|
@ -1,11 +1,12 @@
|
|
|
|
|
%bcond_with bootstrap
|
|
|
|
|
|
|
|
|
|
Name: jansi
|
|
|
|
|
Version: 2.3.3
|
|
|
|
|
Release: 6%{?dist}
|
|
|
|
|
Version: 2.4.0
|
|
|
|
|
Release: 7%{?dist}
|
|
|
|
|
Summary: Generate and interpret ANSI escape sequences in Java
|
|
|
|
|
License: ASL 2.0
|
|
|
|
|
URL: http://fusesource.github.io/jansi/
|
|
|
|
|
ExclusiveArch: %{java_arches}
|
|
|
|
|
|
|
|
|
|
# ./generate-tarball.sh
|
|
|
|
|
Source0: %{name}-%{version}.tar.gz
|
|
|
|
@ -15,13 +16,11 @@ Source1: generate-tarball.sh
|
|
|
|
|
# Change the location of the native artifact to where Fedora wants it
|
|
|
|
|
Patch0: %{name}-jni.patch
|
|
|
|
|
|
|
|
|
|
Patch1: 0001-Avoid-NPE.patch
|
|
|
|
|
|
|
|
|
|
BuildRequires: gcc
|
|
|
|
|
BuildRequires: maven-local
|
|
|
|
|
%if %{with bootstrap}
|
|
|
|
|
BuildRequires: javapackages-bootstrap
|
|
|
|
|
%else
|
|
|
|
|
BuildRequires: maven-local
|
|
|
|
|
BuildRequires: mvn(org.apache.felix:maven-bundle-plugin)
|
|
|
|
|
BuildRequires: mvn(org.apache.maven.plugins:maven-source-plugin)
|
|
|
|
|
BuildRequires: mvn(org.apache.maven.surefire:surefire-junit-platform)
|
|
|
|
@ -36,6 +35,7 @@ which don't support it like Windows and provides graceful degradation for
|
|
|
|
|
when output is being sent to output devices which cannot support ANSI sequences.
|
|
|
|
|
|
|
|
|
|
%package javadoc
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
Summary: Javadocs for %{name}
|
|
|
|
|
|
|
|
|
|
%description javadoc
|
|
|
|
@ -73,6 +73,7 @@ sed -i 's,@LIBDIR@,%{_prefix}/lib,' \
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%set_build_flags
|
|
|
|
|
CC="${CC:-gcc}"
|
|
|
|
|
# Build the native artifact
|
|
|
|
|
CFLAGS="$CFLAGS -I. -I%{java_home}/include -I%{java_home}/include/linux -fPIC -fvisibility=hidden"
|
|
|
|
|
cd src/main/native
|
|
|
|
@ -103,35 +104,43 @@ cp -p src/main/native/libjansi.so %{buildroot}%{_prefix}/lib/%{name}
|
|
|
|
|
%license license.txt
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Mon Jan 30 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.3.3-6
|
|
|
|
|
* Wed Apr 03 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 2.4.0-7
|
|
|
|
|
- Rebuilt for MSVSphere 8.10 beta
|
|
|
|
|
|
|
|
|
|
* Mon Feb 05 2024 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.4.0-7
|
|
|
|
|
- Rebuild to regenerate auto-requires
|
|
|
|
|
|
|
|
|
|
* Thu Aug 19 2021 Marian Koncek <mkoncek@redhat.com> - 2.3.3-5
|
|
|
|
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-6
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jul 18 2022 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.4.0-5
|
|
|
|
|
- Ensure CC env variable is set during build
|
|
|
|
|
|
|
|
|
|
* Thu Jul 14 2022 Marian Koncek <mkoncek@redhat.com> - 2.4.0-4
|
|
|
|
|
- Make javadoc subpackage noarch
|
|
|
|
|
|
|
|
|
|
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 2.4.0-3
|
|
|
|
|
- Rebuilt for java-17-openjdk as system jdk
|
|
|
|
|
|
|
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Nov 01 2021 Marian Koncek <mkoncek@redhat.com> - 2.4.0-1
|
|
|
|
|
- Update to upstream version 2.4.0
|
|
|
|
|
|
|
|
|
|
* Fri Sep 24 2021 Marian Koncek <mkoncek@redhat.com> - 2.3.3-3
|
|
|
|
|
- Install native artifact into a fixed location
|
|
|
|
|
- Related: rhbz#1994935
|
|
|
|
|
|
|
|
|
|
* Wed Aug 18 2021 Marian Koncek <mkoncek@redhat.com> - 2.3.3-4
|
|
|
|
|
- Avoid possible NullPointerException
|
|
|
|
|
- Resolves: rhbz#1993889
|
|
|
|
|
- Load native library from the correct location
|
|
|
|
|
- Resolves: rhbz#1994935
|
|
|
|
|
|
|
|
|
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.3.3-3
|
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
|
Related: rhbz#1991688
|
|
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.3-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jun 23 2021 Jerry James <loganjerry@gmail.com> - 2.3.3-1
|
|
|
|
|
- Version 2.3.3
|
|
|
|
|
|
|
|
|
|
* Fri Jun 18 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.1.1-7
|
|
|
|
|
* Fri Jun 18 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.1.1-5
|
|
|
|
|
- Clean tarball from content with questionable licensing
|
|
|
|
|
- Resolves: rhbz#1973750
|
|
|
|
|
|
|
|
|
|
* Wed Jun 09 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.1.1-6
|
|
|
|
|
- Rebuild to workaround DistroBaker issue
|
|
|
|
|
|
|
|
|
|
* Tue Jun 08 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.1.1-5
|
|
|
|
|
- Bootstrap Maven for CentOS Stream 9
|
|
|
|
|
- Resolves: rhbz#1973738
|
|
|
|
|
|
|
|
|
|
* Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.1.1-4
|
|
|
|
|
- Bootstrap build
|
|
|
|
|