jaxb/jaxb.spec

281 lines
9.2 KiB
RPMSpec
Raw Normal View History

%bcond_with bootstrap
2023-11-27 12:48:53 +00:00
Name: jaxb
2023-12-14 08:14:48 +00:00
Version: 4.0.4
Release: 6%{?dist}
Summary: JAXB Reference Implementation
License: BSD-3-Clause
URL: https://github.com/eclipse-ee4j/jaxb-ri
2021-10-29 09:03:09 +00:00
BuildArch: noarch
ExclusiveArch: %{java_arches} noarch
2021-10-29 09:03:09 +00:00
Source0: %{url}/archive/%{version}-RI/%{name}-%{version}.tar.gz
2023-11-27 12:48:53 +00:00
%if %{with bootstrap}
BuildRequires: javapackages-bootstrap
%else
BuildRequires: maven-local
2023-11-27 12:48:53 +00:00
BuildRequires: mvn(com.github.relaxng:relaxngDatatype)
BuildRequires: mvn(com.sun.istack:istack-commons-maven-plugin)
2021-10-29 09:03:09 +00:00
BuildRequires: mvn(com.sun.istack:istack-commons-runtime)
2022-02-21 08:18:26 +00:00
BuildRequires: mvn(com.sun.istack:istack-commons-tools)
BuildRequires: mvn(com.sun.xml.dtd-parser:dtd-parser)
2021-10-29 09:03:09 +00:00
BuildRequires: mvn(com.sun.xml.fastinfoset:FastInfoset)
BuildRequires: mvn(jakarta.activation:jakarta.activation-api)
BuildRequires: mvn(jakarta.xml.bind:jakarta.xml.bind-api)
2023-11-27 12:48:53 +00:00
BuildRequires: mvn(net.java.dev.msv:xsdlib)
2023-02-08 10:39:28 +00:00
BuildRequires: mvn(org.apache.ant:ant)
2023-11-27 12:48:53 +00:00
BuildRequires: mvn(org.apache.ant:ant-junit)
2023-02-08 10:39:28 +00:00
BuildRequires: mvn(org.apache.felix:maven-bundle-plugin)
2023-11-27 12:48:53 +00:00
BuildRequires: mvn(org.apache.maven.plugins:maven-antrun-plugin)
2023-02-08 10:39:28 +00:00
BuildRequires: mvn(org.apache.maven.plugins:maven-assembly-plugin)
BuildRequires: mvn(org.apache.maven.plugins:maven-dependency-plugin)
BuildRequires: mvn(org.apache.maven.plugins:maven-source-plugin)
BuildRequires: mvn(org.codehaus.mojo:build-helper-maven-plugin)
BuildRequires: mvn(org.jvnet.staxex:stax-ex)
2023-11-27 12:48:53 +00:00
%endif
%description
GlassFish JAXB Reference Implementation.
%package codemodel
Summary: Codemodel Core
2022-10-27 14:37:36 +00:00
%description codemodel
2023-01-16 13:40:36 +00:00
The core functionality of the CodeModel java source code generation library.
%package codemodel-annotation-compiler
Summary: Codemodel Annotation Compiler
2022-10-27 14:37:36 +00:00
%description codemodel-annotation-compiler
2023-01-16 13:40:36 +00:00
The annotation compiler ant task for the CodeModel java source code generation
library.
2022-10-27 14:37:36 +00:00
%package relaxng-datatype
Summary: RelaxNG Datatype
%description relaxng-datatype
RelaxNG Datatype library.
%package xsom
Summary: XML Schema Object Model
%description xsom
XML Schema Object Model (XSOM) is a Java library that allows applications to
easily parse XML Schema documents and inspect information in them. It is
expected to be useful for applications that need to take XML Schema as an
input.
2023-01-16 13:40:36 +00:00
%package core
Summary: JAXB Core
%description core
JAXB Core module. Contains sources required by XJC, JXC and Runtime modules.
2022-10-27 14:37:36 +00:00
%package rngom
2023-02-08 10:39:28 +00:00
# pom.xml and module-info.java are under BSD, rest is MIT
2023-09-01 13:41:09 +00:00
License: MIT AND BSD-3-Clause
2022-10-27 14:37:36 +00:00
Summary: RELAX NG Object Model/Parser
%description rngom
This package contains RELAX NG Object Model/Parser.
%package runtime
Summary: JAXB Runtime
%description runtime
JAXB (JSR 222) Reference Implementation
%package txw2
Summary: TXW2 Runtime
%description txw2
TXW is a library that allows you to write XML documents.
%package xjc
2023-11-27 12:48:53 +00:00
# jaxb-ri/xjc/src/main/java/com/sun/tools/xjc/reader/internalizer/NamespaceContextImpl.java is under Apache-2.0
2023-09-01 13:41:09 +00:00
License: BSD-3-Clause AND Apache-2.0
Summary: JAXB XJC
2022-10-27 14:37:36 +00:00
%description xjc
2023-01-16 13:40:36 +00:00
JAXB Binding Compiler. Contains source code needed for binding customization
files into java sources. In other words: the tool to generate java classes for
the given xml representation.
%package txwc2
Summary: TXW2 Compiler
2022-10-27 14:37:36 +00:00
%description txwc2
2023-01-16 13:40:36 +00:00
JAXB schema generator. The tool to generate XML schema based on java classes.
%prep
2022-10-27 14:37:36 +00:00
%setup -q -n jaxb-ri-%{version}-RI
2022-10-26 12:19:06 +00:00
pushd jaxb-ri
2022-10-27 14:37:36 +00:00
# Remove ee4j parent
%pom_remove_parent boms/bom codemodel external xsom
2022-10-26 12:18:02 +00:00
%pom_remove_plugin -r :buildnumber-maven-plugin
2022-10-27 14:37:36 +00:00
%pom_remove_plugin -r :maven-enforcer-plugin
2022-10-26 12:18:02 +00:00
2022-10-27 14:37:36 +00:00
# Skip docs generation because of missing dependencies
2022-10-26 12:18:02 +00:00
%pom_xpath_remove "pom:profiles/pom:profile[pom:id='default-profile']/pom:modules"
2022-10-27 14:37:36 +00:00
# Disable unneeded extra OSGi bundles
%pom_disable_module bundles
2022-10-26 12:19:06 +00:00
2022-10-27 14:37:36 +00:00
# Missing dependency on org.checkerframework:compiler
2021-10-29 09:03:09 +00:00
%pom_disable_module jxc
2022-10-26 12:19:06 +00:00
2023-01-16 13:40:36 +00:00
%pom_remove_dep org.eclipse.angus:angus-activation core
2022-10-26 12:19:06 +00:00
# Don't install aggregator and parent poms
2022-02-21 08:18:26 +00:00
%mvn_package :jaxb-bom __noinstall
%mvn_package :jaxb-bom-ext __noinstall
%mvn_package :jaxb-bundles __noinstall
%mvn_package :jaxb-codemodel-parent __noinstall
%mvn_package :jaxb-docs-parent __noinstall
%mvn_package :jaxb-external-parent __noinstall
%mvn_package :jaxb-parent __noinstall
%mvn_package :jaxb-runtime-parent __noinstall
%mvn_package :jaxb-samples __noinstall
%mvn_package :jaxb-txw-parent __noinstall
%mvn_package :jaxb-www __noinstall
2023-11-27 12:48:53 +00:00
%if %{with bootstrap}
%pom_disable_module core
%pom_disable_module codemodel-annotation-compiler codemodel
%pom_disable_module runtime
%pom_disable_module relaxng-datatype external
%pom_disable_module rngom external
%pom_disable_module xjc
%pom_disable_module xsom
%pom_disable_module txw
%endif
2022-10-26 12:19:06 +00:00
popd
%build
2022-10-26 12:19:06 +00:00
pushd jaxb-ri
2023-11-27 12:48:53 +00:00
%mvn_build -s -f -j -- -Dproject.build.sourceEncoding=UTF-8
2022-10-26 12:19:06 +00:00
popd
%install
2022-10-26 12:19:06 +00:00
pushd jaxb-ri
%mvn_install
2022-10-26 12:19:06 +00:00
popd
%files codemodel -f jaxb-ri/.mfiles-codemodel
%license LICENSE.md NOTICE.md
2023-11-27 12:48:53 +00:00
%if %{without bootstrap}
%files codemodel-annotation-compiler -f jaxb-ri/.mfiles-codemodel-annotation-compiler
2023-11-27 12:48:53 +00:00
%files core -f jaxb-ri/.mfiles-jaxb-core
2022-02-21 08:18:26 +00:00
%files relaxng-datatype -f jaxb-ri/.mfiles-relaxng-datatype
%license LICENSE.md NOTICE.md
2022-10-27 14:37:36 +00:00
%files xsom -f jaxb-ri/.mfiles-xsom
%files rngom -f jaxb-ri/.mfiles-rngom
2022-02-21 08:18:26 +00:00
%files txw2 -f jaxb-ri/.mfiles-txw2
%license LICENSE.md NOTICE.md
%files txwc2 -f jaxb-ri/.mfiles-txwc2
2023-11-27 12:48:53 +00:00
%files runtime -f jaxb-ri/.mfiles-jaxb-runtime
2022-02-21 08:18:26 +00:00
%files xjc -f jaxb-ri/.mfiles-jaxb-xjc
2023-11-27 12:48:53 +00:00
%endif
%changelog
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 4.0.4-6
- Bump release for October 2024 mass rebuild:
Resolves: RHEL-64018
* Thu Aug 01 2024 Troy Dawson <tdawson@redhat.com> - 4.0.4-5
- Bump release for Aug 2024 java mass rebuild
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 4.0.4-4
- Bump release for June 2024 mass rebuild
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.4-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Sat Jan 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
2023-12-14 08:14:48 +00:00
* Wed Nov 29 2023 Marian Koncek <mkoncek@redhat.com> - 4.0.4-1
- Update to upstream version 4.0.4
2023-11-27 12:48:53 +00:00
* Mon Nov 27 2023 Marian Koncek <mkoncek@redhat.com> - 4.0.3-1
- Update to upstream version 4.0.3
* Fri Sep 01 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.0.2-3
- Convert License tag to SPDX format
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
2023-02-08 11:20:36 +00:00
* Wed Feb 08 2023 Marian Koncek <mkoncek@redhat.com> - 4.0.2-1
- Update to upstream version 4.0.2
2023-02-08 10:39:28 +00:00
* Wed Feb 08 2023 Marian Koncek <mkoncek@redhat.com> - 4.0.1-4
- Change license, remove bootstrap macro
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
2023-01-16 14:04:13 +00:00
* Mon Jan 16 2023 Marian Koncek <mkoncek@redhat.com> - 4.0.1-2
- Rebuild
2022-10-31 12:28:17 +00:00
* Mon Nov 21 2022 Marian Koncek <mkoncek@redhat.com> - 4.0.1-1
- Update to pstream version 4.0.1
2022-10-27 14:37:36 +00:00
* Thu Oct 27 2022 Marian Koncek <mkoncek@redhat.com> - 2.3.5-8
- Add bootstrap option
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.5-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Fri Jul 08 2022 Jiri Vanek <jvanek@redhat.com> - 2.3.5-6
- Rebuilt for Drop i686 JDKs
2022-02-21 08:18:26 +00:00
* Mon Feb 21 2022 Didik Supriadi <didiksupriadi41@fedoraproject.org> - 2.3.5-5
- Remove subpackage that provides BOM/POM only
- Clean up spec (provides, obsoletes, etc.)
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 2.3.5-4
- Rebuilt for java-17-openjdk as system jdk
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.5-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
2021-11-18 12:22:41 +00:00
* Wed Nov 17 2021 Didik Supriadi <didiksupriadi41@fedoraproject.org> - 2.3.5-2
- Remove workaround for SUREFIRE-1897
2021-10-29 09:03:09 +00:00
* Tue Oct 26 2021 Didik Supriadi <didiksupriadi41@fedoraproject.org> - 2.3.5-1
- Update to version 2.3.5
- Remove jp_minimal
- Disable tests
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.3-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Fri Feb 5 2021 Mat Booth <mat.booth@redhat.com> - 2.3.3-6
- Add obsoletes/provides and compat aliases for old relaxngDatatype package
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.3-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Tue Aug 18 2020 Mat Booth <mat.booth@redhat.com> - 2.3.3-4
- Restore deps on fi and stax-ex for full build mode
* Mon Aug 17 2020 Mat Booth <mat.booth@redhat.com> - 2.3.3-3
- Add obsoletes/provides and compat aliases for old xsom package
* Tue Aug 11 2020 Mat Booth <mat.booth@redhat.com> - 2.3.3-2
- Fastinfoset and Staxex are optional deps, this should be reflected in the OSGi
metadata
* Tue Aug 04 2020 Mat Booth <mat.booth@redhat.com> - 2.3.3-1
- Update to latest upstream release
- Disable javadocs for now, due to https://github.com/fedora-java/xmvn/issues/58
- Upstream moved to eclipse-ee4j and implementation license changed to BSD (EDL)
- Enable tests, don't unnecessarily ship parent poms
- Rename package from glassfish-jaxb