[packages/apache-mod_wsgi] - py2 part moved to apache-mod_wsgi-py2.spec
qboosh
qboosh at pld-linux.org
Sat Mar 22 18:44:38 CET 2025
commit 6268396b06031e92ef81bff1fd94b09d1e38d1ba
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date: Sat Mar 22 18:23:43 2025 +0100
- py2 part moved to apache-mod_wsgi-py2.spec
apache-mod_wsgi.spec | 92 ++--------------------------------------------------
1 file changed, 2 insertions(+), 90 deletions(-)
---
diff --git a/apache-mod_wsgi.spec b/apache-mod_wsgi.spec
index 98a5b2a..9f81d53 100644
--- a/apache-mod_wsgi.spec
+++ b/apache-mod_wsgi.spec
@@ -2,11 +2,6 @@
# - add -n mod_wsgi-express package
# https://github.com/GrahamDumpleton/mod_wsgi#installation-into-python
-#
-# Conditional build:
-%bcond_without python2 # mod_wsgi for CPython 2.x
-%bcond_without python3 # mod_wsgi for CPython 3.x
-
%define mod_name wsgi
%define apxs /usr/sbin/apxs
Summary: WSGI interface for the Apache Web server
@@ -25,12 +20,7 @@ BuildRequires: apache-devel >= 2.2
BuildRequires: apr-devel >= 1:1.0.0
BuildRequires: autoconf
BuildRequires: automake
-%if %{with python2}
-BuildRequires: python-devel >= 1:2.6
-%endif
-%if %{with python3}
BuildRequires: python3-devel >= 1:3.3
-%endif
BuildRequires: rpmbuild(macros) >= 1.268
BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -52,34 +42,6 @@ bibliotekę uruchomieniową Apache i ma mniejsze wymagania niż w
przypadku używania istniejących adapterów WSGI dla modułu mod_python
lub CGI.
-%package py2
-Summary: Python 2.x WSGI interface for the Apache Web server
-Summary(pl.UTF-8): Interfejs WSGI Pythona 2.x dla serwera WWW Apache
-Group: Networking/Daemons
-Requires: apache(modules-api) = %{apache_modules_api}
-Requires: apr >= 1:1.0.0
-Requires: python-modules >= 1:2.6
-Provides: apache(mod_wsgi) = %{version}-%{release}
-Obsoletes: apache-mod_wsgi < 4.5.7-0.2
-Conflicts: %{name}-py3
-# http://helpful.knobs-dials.com/index.php/Mod_wsgi_notes#PyEval_AcquireThread:_non-NULL_old_thread_state
-Conflicts: apache-mod_python
-
-%description py2
-The mod_wsgi adapter is an Apache module that provides a WSGI
-compliant interface for hosting Python based web applications within
-Apache. The adapter is written completely in C code against the Apache
-C runtime and for hosting WSGI applications within Apache has a lower
-overhead than using existing WSGI adapters for mod_python or CGI.
-
-%description py2 -l pl.UTF-8
-Adapter mod_wsgi jest modułem udostępniającym interfejs WSGI dla
-aplikacji WWW napisanych w języku Python i osadzonych w serwerze
-Apache. Adapter jest w całości napisany w języku C w oparciu o
-bibliotekę uruchomieniową Apache i ma mniejsze wymagania niż w
-przypadku używania istniejących adapterów WSGI dla modułu mod_python
-lub CGI.
-
%package py3
Summary: Python 3.x WSGI interface for the Apache Web server
Summary(pl.UTF-8): Interfejs WSGI Pythona 3.x dla serwera WWW Apache
@@ -114,63 +76,23 @@ lub CGI.
%build
%{__aclocal}
%{__autoconf}
-
-# doesn't support out of tree builds, so we just build twice
-%if %{with python2}
-%configure \
- --with-python=%{__python} \
- --with-apxs=%{apxs}
-
-%{__make}
-%{__make} install DESTDIR=$(pwd)/py2
-%{__make} clean
-%endif
-
-%if %{with python3}
%configure \
--with-python=%{__python3} \
--with-apxs=%{apxs}
-%{__make}
-%{__make} install DESTDIR=$(pwd)/py3
-%{__make} clean
-%endif
-
%install
rm -rf $RPM_BUILD_ROOT
install -d $RPM_BUILD_ROOT{%{_pkglibdir},%{_sysconfdir}}
-%if %{with python2}
-cp -a py2/* $RPM_BUILD_ROOT
-%{__mv} $RPM_BUILD_ROOT%{_pkglibdir}/mod_%{mod_name}{,-py2}.so
-sed -e 's/mod_wsgi.so/mod_wsgi-py2.so/' %{SOURCE1} > $RPM_BUILD_ROOT%{_sysconfdir}/61_mod_wsgi-py2.conf
-%endif
+%{__make} install \
+ DESTDIR=$RPM_BUILD_ROOT
-%if %{with python3}
-cp -a py3/* $RPM_BUILD_ROOT
%{__mv} $RPM_BUILD_ROOT%{_pkglibdir}/mod_%{mod_name}{,-py3}.so
sed -e 's/mod_wsgi.so/mod_wsgi-py3.so/' %{SOURCE1} > $RPM_BUILD_ROOT%{_sysconfdir}/61_mod_wsgi-py3.conf
-%endif
%clean
rm -rf $RPM_BUILD_ROOT
-%triggerpostun py2 -- %{name} < 4.5.7-0.2
-if [ -f %{_sysconfdir}/61_mod_wsgi.conf.rpmsave ]; then
- mv -f %{_sysconfdir}/61_mod_wsgi-py2.conf{,.rpmnew}
- mv -f %{_sysconfdir}/61_mod_wsgi{.conf.rpmsave,-py2.conf}
- %{__sed} -i -e 's/mod_wsgi.so/mod_wsgi-py2.so/' $RPM_BUILD_ROOT%{_sysconfdir}/61_mod_wsgi-py2.conf
- %service -q httpd restart
-fi
-
-%post py2
-%service -q httpd restart
-
-%postun py2
-if [ "$1" = "0" ]; then
- %service -q httpd restart
-fi
-
%post py3
%service -q httpd restart
@@ -179,18 +101,8 @@ if [ "$1" = "0" ]; then
%service -q httpd restart
fi
-%if %{with python2}
-%files py2
-%defattr(644,root,root,755)
-%doc README.rst CREDITS.rst
-%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/*_mod_%{mod_name}-py2.conf
-%attr(755,root,root) %{_pkglibdir}/mod_%{mod_name}-py2.so
-%endif
-
-%if %{with python3}
%files py3
%defattr(644,root,root,755)
%doc README.rst CREDITS.rst
%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/*_mod_%{mod_name}-py3.conf
%attr(755,root,root) %{_pkglibdir}/mod_%{mod_name}-py3.so
-%endif
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/apache-mod_wsgi.git/commitdiff/6268396b06031e92ef81bff1fd94b09d1e38d1ba
More information about the pld-cvs-commit
mailing list