2020-10-15 11:56:45 +00:00
|
|
|
%global srcname servlet-api
|
|
|
|
|
|
|
|
Name: jakarta-servlet
|
|
|
|
Version: 5.0.0
|
2021-04-16 00:42:18 +00:00
|
|
|
Release: 6%{?dist}
|
2020-10-15 11:56:45 +00:00
|
|
|
Summary: Server-side API for handling HTTP requests and responses
|
|
|
|
# most of the project is EPL-2.0 or GPLv2 w/exceptions,
|
|
|
|
# but some files still have Apache-2.0 license headers:
|
|
|
|
# https://github.com/eclipse-ee4j/servlet-api/issues/347
|
|
|
|
License: (EPL-2.0 or GPLv2 with exceptions) and ASL 2.0
|
|
|
|
|
|
|
|
URL: https://github.com/eclipse-ee4j/servlet-api
|
|
|
|
Source0: %{url}/archive/%{version}-RELEASE/%{srcname}-%{version}.tar.gz
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
BuildRequires: maven-local
|
|
|
|
BuildRequires: mvn(org.apache.felix:maven-bundle-plugin)
|
|
|
|
BuildRequires: mvn(org.codehaus.mojo:build-helper-maven-plugin)
|
|
|
|
|
|
|
|
# package renamed in fedora 33, remove in fedora 35
|
|
|
|
Provides: glassfish-servlet-api = %{version}-%{release}
|
|
|
|
Obsoletes: glassfish-servlet-api < 3.1.0-21
|
|
|
|
|
|
|
|
%description
|
|
|
|
Jakarta Servlet defines a server-side API for handling HTTP requests
|
|
|
|
and responses.
|
|
|
|
|
|
|
|
|
|
|
|
%package javadoc
|
|
|
|
Summary: Javadoc for %{name}
|
|
|
|
|
|
|
|
# package renamed in fedora 33, remove in fedora 35
|
|
|
|
Provides: glassfish-servlet-api-javadoc = %{version}-%{release}
|
|
|
|
Obsoletes: glassfish-servlet-api-javadoc < 3.1.0-21
|
|
|
|
|
|
|
|
%description javadoc
|
|
|
|
This package contains the API documentation for %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{srcname}-%{version}-RELEASE
|
|
|
|
|
|
|
|
# remove unnecessary dependency on parent POM
|
|
|
|
%pom_remove_parent . api
|
|
|
|
|
|
|
|
# do not build specification documentation
|
|
|
|
%pom_disable_module spec
|
|
|
|
|
|
|
|
# Copy to old package name
|
|
|
|
# TODO: Remove when all dependencies are migrated from javax.servlet to jakarta.servlet
|
|
|
|
cp -pr api/src/main/java/jakarta api/src/main/java/javax
|
|
|
|
sed -i -e 's/jakarta\./javax./g' $(find api/src/main/java/javax -name *.java)
|
|
|
|
%pom_xpath_replace pom:instructions/pom:Export-Package \
|
|
|
|
'<Export-Package>jakarta.servlet.*,javax.servlet.*;version="4.0.0"</Export-Package>' api
|
|
|
|
|
|
|
|
# do not install useless parent POM
|
|
|
|
%mvn_package jakarta.servlet:servlet-parent __noinstall
|
|
|
|
|
|
|
|
# remove unnecessary maven plugins
|
|
|
|
%pom_remove_plugin -r :formatter-maven-plugin
|
|
|
|
%pom_remove_plugin -r :impsort-maven-plugin
|
|
|
|
%pom_remove_plugin -r :maven-enforcer-plugin
|
|
|
|
%pom_remove_plugin -r :maven-javadoc-plugin
|
|
|
|
%pom_remove_plugin -r :maven-source-plugin
|
|
|
|
|
|
|
|
# add maven artifact coordinate aliases for backwards compatibility
|
|
|
|
%mvn_alias jakarta.servlet:jakarta.servlet-api \
|
|
|
|
javax.servlet:javax.servlet-api \
|
|
|
|
javax.servlet:servlet-api
|
|
|
|
|
|
|
|
# add compat symlink for packages constructing the classpath manually
|
|
|
|
%mvn_file :{*} %{name}/@1 glassfish-servlet-api
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%mvn_build
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
%mvn_install
|
|
|
|
|
|
|
|
|
|
|
|
%files -f .mfiles
|
|
|
|
%license LICENSE.md NOTICE.md
|
|
|
|
%doc README.md
|
|
|
|
|
|
|
|
%files javadoc -f .mfiles-javadoc
|
|
|
|
%license LICENSE.md NOTICE.md
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2021-04-16 00:42:18 +00:00
|
|
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 5.0.0-6
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
|
2021-02-04 05:07:26 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-10-15 11:56:45 +00:00
|
|
|
* Thu Aug 20 2020 Mat Booth <mat.booth@redhat.com> - 5.0.0-4
|
|
|
|
- Correct mvn_file macro invokation
|
|
|
|
|
|
|
|
* Wed Aug 19 2020 Fabio Valentini <decathorpe@gmail.com> - 5.0.0-3
|
|
|
|
- Add compat symlink for packages constructing the classpath manually.
|
|
|
|
|
|
|
|
* Wed Aug 19 2020 Mat Booth <mat.booth@redhat.com> - 5.0.0-2
|
|
|
|
- Also ship the API in the old javax namespace to aid transition
|
|
|
|
|
|
|
|
* Thu Aug 13 2020 Fabio Valentini <decathorpe@gmail.com> - 5.0.0-1
|
|
|
|
- Initial package renamed from glassfish-servlet-api.
|
|
|
|
|