Packages: added Fedora 37 support.

This commit is contained in:
Konstantin Pavlov
2022-11-16 17:06:42 +04:00
parent 09ac678943
commit 0feab91c5b
3 changed files with 85 additions and 1 deletions

View File

@@ -18,8 +18,10 @@ else ifeq ($(shell rpm --eval "%{?rhel}"), 9)
OSVER = centos9 OSVER = centos9
else ifeq ($(shell rpm --eval "%{?amzn}"), 2) else ifeq ($(shell rpm --eval "%{?amzn}"), 2)
OSVER = amazonlinux2 OSVER = amazonlinux2
else ifeq ($(shell test `rpm --eval '0%{?fedora} -ge 35'`; echo $$?),0) else ifeq ($(shell test `rpm --eval '0%{?fedora} -ge 35 -a 0%{?fedora} -le 36'`; echo $$?),0)
OSVER = fedora OSVER = fedora
else ifeq ($(shell test `rpm --eval '0%{?fedora} -ge 37'`; echo $$?),0)
OSVER = fedora37
endif endif
BUILD_DEPENDS_unit = gcc rpm-build rpmlint BUILD_DEPENDS_unit = gcc rpm-build rpmlint
@@ -93,6 +95,17 @@ include Makefile.jsc8
include Makefile.jsc11 include Makefile.jsc11
endif endif
ifeq ($(OSVER), fedora37)
include Makefile.php
include Makefile.python311
include Makefile.go
include Makefile.perl
include Makefile.ruby
include Makefile.jsc-common
include Makefile.jsc8
include Makefile.jsc11
endif
CONFIGURE_ARGS=\ CONFIGURE_ARGS=\
--prefix=/usr \ --prefix=/usr \
--state=%{_sharedstatedir}/unit \ --state=%{_sharedstatedir}/unit \

View File

@@ -0,0 +1,55 @@
MODULES+= python311
MODULE_SUFFIX_python311= python3.11
MODULE_SUMMARY_python311= Python 3.11 module for NGINX Unit
MODULE_VERSION_python311= $(VERSION)
MODULE_RELEASE_python311= 1
MODULE_CONFARGS_python311= python --config=python3.11-config
MODULE_MAKEARGS_python311= python3.11
MODULE_INSTARGS_python311= python3.11-install
MODULE_SOURCES_python311= unit.example-python-app \
unit.example-python311-config
ifneq (,$(findstring $(OSVER),fedora37))
BUILD_DEPENDS_python311= python3-devel
endif
BUILD_DEPENDS+= $(BUILD_DEPENDS_python311)
define MODULE_PREINSTALL_python311
%{__mkdir} -p %{buildroot}%{_datadir}/doc/unit-python311/examples/python-app
%{__install} -m 644 -p %{SOURCE100} \
%{buildroot}%{_datadir}/doc/unit-python311/examples/python-app/wsgi.py
%{__install} -m 644 -p %{SOURCE101} \
%{buildroot}%{_datadir}/doc/unit-python311/examples/unit.config
endef
export MODULE_PREINSTALL_python311
define MODULE_FILES_python311
%{_libdir}/unit/modules/*
%{_libdir}/unit/debug-modules/*
endef
export MODULE_FILES_python311
define MODULE_POST_python311
cat <<BANNER
----------------------------------------------------------------------
The $(MODULE_SUMMARY_python311) has been installed.
To check the sample app, run these commands:
sudo service unit start
cd /usr/share/doc/%{name}/examples
sudo curl -X PUT --data-binary @unit.config --unix-socket /var/run/unit/control.sock http://localhost/config
curl http://localhost:8400/
Online documentation is available at https://unit.nginx.org
----------------------------------------------------------------------
BANNER
endef
export MODULE_POST_python311

View File

@@ -0,0 +1,16 @@
{
"applications": {
"example_python": {
"type": "python 3.11",
"processes": 2,
"path": "/usr/share/doc/unit-python311/examples/python-app",
"module": "wsgi"
}
},
"listeners": {
"*:8400": {
"pass": "applications/example_python"
}
}
}