diff --git a/modular/mod_http2/mod_http2.spec b/modular/mod_http2/mod_http2.spec new file mode 100644 index 0000000..99aa1a3 --- /dev/null +++ b/modular/mod_http2/mod_http2.spec @@ -0,0 +1,226 @@ +# Module Magic Number +%{!?_httpd_mmn: %global _httpd_mmn %(cat %{_includedir}/httpd/.mmn 2>/dev/null || echo 0-0)} +%global _httpd_apxs %{_bindir}/apxs + +Name: mod_http2 +Version: 2.0.27 +Release: 1%{?dist} +Summary: module implementing HTTP/2 for Apache 2 +License: Apache-2.0 +URL: https://icing.github.io/mod_h2/ +Source0: https://github.com/icing/mod_h2/releases/download/v%{version}/mod_http2-%{version}.tar.gz +BuildRequires: make +BuildRequires: gcc +BuildRequires: pkgconfig, httpd-devel >= 2.4.20, apr-devel +BuildRequires: pkgconfig(openssl) >= 1.0.2 +BuildRequires: autoconf, libtool +%if 0%{?rhel} > 7 +BuildRequires: /usr/bin/hostname +%else +BuildRequires: /bin/hostname +%endif +BuildRequires: rx-libnghttp2-devel +Requires: httpd-mmn = %{_httpd_mmn} +Conflicts: httpd < 2.4.48 +# https://bugzilla.redhat.com/show_bug.cgi?id=2131458 +Requires: rx-libnghttp2 + +%description +The mod_h2 Apache httpd module implements the HTTP2 protocol (h2+h2c) on +top of libnghttp2 for httpd 2.4 servers. + +%prep +%setup -q + +%build +%global _rxlibdir /opt/rx/%{_lib} +export PKG_CONFIG_PATH=%{_rxlibdir}/pkgconfig:${PKG_CONFIG_PATH} +export LDFLAGS="-L%{_rxlibdir} -Wl,-rpath=%{_rxlibdir} ${LDFLAGS:-%__global_ldflags}" +%if 0%{?rhel} < 9 +export CFLAGS="-I%{_includedir}/openssl3 %{optflags}" +%endif + +autoreconf -i +%configure --with-apxs=%{_httpd_apxs} +%make_build + +%install +%make_install +rm -rf %{buildroot}/etc/httpd/share/doc/ + +# create configuration +mkdir -p %{buildroot}%{_httpd_modconfdir} +echo "LoadModule http2_module modules/mod_http2.so" > %{buildroot}%{_httpd_modconfdir}/10-h2.conf +echo "LoadModule proxy_http2_module modules/mod_proxy_http2.so" > %{buildroot}%{_httpd_modconfdir}/10-proxy_h2.conf + +%files +%doc README.md ChangeLog AUTHORS +%license LICENSE +%config(noreplace) %{_httpd_modconfdir}/10-h2.conf +%config(noreplace) %{_httpd_modconfdir}/10-proxy_h2.conf +%{_httpd_moddir}/mod_http2.so +%{_httpd_moddir}/mod_proxy_http2.so + +%changelog +* Fri Apr 5 2024 Joe Orton - 2.0.27-1 +- update to 2.0.27 + +* Thu Jan 25 2024 Fedora Release Engineering - 2.0.26-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 21 2024 Fedora Release Engineering - 2.0.26-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Wed Jan 17 2024 Luboš Uhliarik - 2.0.26-1 +- new version 2.0.26 + +* Sat Oct 21 2023 Luboš Uhliarik - 2.0.25-1 +- new version 2.0.25 + +* Mon Sep 11 2023 Luboš Uhliarik - 2.0.22-1 +- new version 2.0.22 + +* Thu Jul 20 2023 Fedora Release Engineering - 2.0.18-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Thu Jun 01 2023 Luboš Uhliarik - 2.0.18-1 +- new version 2.0.18 +- SPDX migration + +* Wed Apr 12 2023 Luboš Uhliarik - 2.0.14-1 +- new version 2.0.14 + +* Thu Jan 19 2023 Fedora Release Engineering - 2.0.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Tue Dec 20 2022 Joe Orton - 2.0.11-1 +- update to 2.0.11 +- fix conflict with older libnghttp2 + +* Thu Oct 6 2022 Joe Orton - 2.0.9-1 +- update to 2.0.9 + +* Fri Sep 23 2022 Joe Orton - 2.0.7-1 +- update to 2.0.7 + +* Thu Jul 21 2022 Fedora Release Engineering - 1.15.24-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Thu Jan 20 2022 Fedora Release Engineering - 1.15.24-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Sep 17 2021 Joe Orton - 1.15.24-1 +- update to 1.15.24 + +* Tue Sep 14 2021 Sahana Prasad - 1.15.23-2 +- Rebuilt with OpenSSL 3.0.0 + +* Fri Aug 6 2021 Joe Orton - 1.15.23-1 +- update to 1.15.23 + +* Thu Jul 22 2021 Fedora Release Engineering - 1.15.19-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Fri Jun 11 2021 Luboš Uhliarik - 1.15.19-1 +- new version 1.15.19 +- Resolves: #1968014 - CVE-2021-31618 httpd: NULL pointer dereference on + specially crafted HTTP/2 request + +* Tue Jan 26 2021 Fedora Release Engineering - 1.15.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Thu Aug 27 2020 Joe Orton - 1.15.14-2 +- use apxs via _httpd_apxs macro + +* Mon Aug 17 2020 Joe Orton - 1.15.14-1 +- update to 1.15.14 + +* Tue Jul 28 2020 Fedora Release Engineering - 1.15.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Fri Mar 6 2020 Joe Orton - 1.15.7-1 +- update to 1.15.7 + +* Fri Feb 7 2020 Joe Orton - 1.15.5-1 +- update to 1.15.5 + +* Wed Jan 29 2020 Fedora Release Engineering - 1.15.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Mon Aug 19 2019 Lubos Uhliarik - 1.15.3-2 +- Rebuilt with newer nghttp2 + +* Thu Aug 8 2019 Joe Orton - 1.15.3-1 +- update to 1.15.3 + +* Thu Jul 25 2019 Fedora Release Engineering - 1.15.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Wed May 29 2019 Joe Orton - 1.15.1-1 +- update to 1.15.1 + +* Wed May 22 2019 Joe Orton - 1.15.0-1 +- update to 1.15.0 + +* Thu Mar 14 2019 Joe Orton - 1.14.1-1 +- update to 1.14.1 + +* Tue Mar 5 2019 Joe Orton - 1.14.0-1 +- update to 1.14.0 + +* Tue Feb 26 2019 Joe Orton - 1.13.0-1 +- update to 1.13.0 + +* Fri Feb 01 2019 Fedora Release Engineering - 1.12.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Fri Jan 18 2019 Joe Orton - 1.12.1-1 +- update to 1.12.1 + +* Tue Oct 09 2018 Lubos Uhliarik - 1.11.2-1 +- new version 1.11.2 + +* Fri Oct 05 2018 Luboš Uhliarik - 1.11.1-1 +- new version 1.11.1 (CVE-2018-11763) + +* Fri Jul 13 2018 Fedora Release Engineering - 1.10.20-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed May 2 2018 Joe Orton - 1.10.20-1 +- update to 1.10.20 + +* Wed Apr 18 2018 Joe Orton - 1.10.18-1 +- update to 1.10.18 + +* Thu Mar 29 2018 Joe Orton - 1.10.16-1 +- update to 1.10.16 (CVE-2018-1302) + +* Thu Feb 08 2018 Fedora Release Engineering - 1.10.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Tue Nov 7 2017 Joe Orton - 1.10.13-1 +- update to 1.10.13 + +* Fri Oct 20 2017 Joe Orton - 1.10.12-1 +- update to 1.10.12 + +* Thu Aug 03 2017 Fedora Release Engineering - 1.10.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Mon Jul 31 2017 Joe Orton - 1.10.10-1 +- update to 1.10.10 + +* Wed Jul 26 2017 Fedora Release Engineering - 1.10.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Thu Jul 6 2017 Joe Orton - 1.10.7-1 +- update to 1.10.7 + +* Mon Jun 12 2017 Joe Orton - 1.10.6-1 +- update to 1.10.6 + +* Tue May 16 2017 Joe Orton - 1.10.5-1 +- update to 1.10.5 + +* Mon Apr 10 2017 Luboš Uhliarik - 1.10.1-1 +- Initial import (#1440780).