-
Notifications
You must be signed in to change notification settings - Fork 335
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
While at it, removed support for Fedora 39 as it's EOL.
- Loading branch information
Showing
7 changed files
with
173 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
MODULES+= jsc21 | ||
MODULE_SUFFIX_jsc21= jsc21 | ||
|
||
MODULE_SUMMARY_jsc21= Java 21 module for NGINX Unit | ||
|
||
MODULE_VERSION_jsc21= $(VERSION) | ||
MODULE_RELEASE_jsc21= 1 | ||
|
||
MODULE_CONFARGS_jsc21= java --module=java21 --home=/usr/lib/jvm/java-21-openjdk --lib-path=/usr/lib/jvm/java-21-openjdk/lib --jars=/usr/share/unit-jsc-common/ | ||
MODULE_MAKEARGS_jsc21= java21 | ||
MODULE_INSTARGS_jsc21= java21-install | ||
|
||
MODULE_SOURCES_jsc21= unit.example-jsc-app \ | ||
unit.example-jsc21-config | ||
|
||
BUILD_DEPENDS_jsc21= java-21-openjdk-devel | ||
|
||
define MODULE_DEFINITIONS_jsc21 | ||
Requires: unit-jsc-common == $(MODULE_VERSION_jsc_common)-$(MODULE_RELEASE_jsc_common)%{?dist}.ngx | ||
Requires: java-21-openjdk-headless | ||
endef | ||
export MODULE_DEFINITIONS_jsc21 | ||
|
||
define MODULE_PREINSTALL_jsc21 | ||
%{__mkdir} -p %{buildroot}%{_datadir}/doc/unit-jsc21/examples/jsc-app | ||
%{__install} -m 644 -p %{SOURCE100} \ | ||
%{buildroot}%{_datadir}/doc/unit-jsc21/examples/jsc-app/index.jsp | ||
%{__install} -m 644 -p %{SOURCE101} \ | ||
%{buildroot}%{_datadir}/doc/unit-jsc21/examples/unit.config | ||
%{__install} -m 644 -p %{bdir}/src/java/README.JSR-340 \ | ||
%{buildroot}%{_datadir}/doc/unit-jsc21/ | ||
endef | ||
export MODULE_PREINSTALL_jsc21 | ||
|
||
define MODULE_POSTINSTALL_jsc21 | ||
DESTDIR=%{buildroot} make java-shared-uninstall | ||
endef | ||
export MODULE_POSTINSTALL_jsc21 | ||
|
||
define MODULE_FILES_jsc21 | ||
%{_libdir}/unit/modules/* | ||
%{_libdir}/unit/debug-modules/* | ||
%dir %{_datadir}/doc/unit-jsc21 | ||
%{_datadir}/doc/unit-jsc21/* | ||
%{_datadir}/unit-jsc-common/* | ||
endef | ||
export MODULE_FILES_jsc21 | ||
|
||
define MODULE_POST_jsc21 | ||
cat <<BANNER | ||
---------------------------------------------------------------------- | ||
|
||
The $(MODULE_SUMMARY_jsc21) has been installed. | ||
|
||
To check out the sample app, run these commands: | ||
|
||
sudo service unit restart | ||
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:8800/ | ||
|
||
Online documentation is available at https://unit.nginx.org | ||
|
||
`cat /usr/share/doc/unit-jsc21/README.JSR-340` | ||
|
||
---------------------------------------------------------------------- | ||
BANNER | ||
endef | ||
export MODULE_POST_jsc21 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
MODULES+= python313 | ||
MODULE_SUFFIX_python313= python3.13 | ||
|
||
MODULE_SUMMARY_python313= Python 3.13 module for NGINX Unit | ||
|
||
MODULE_VERSION_python313= $(VERSION) | ||
MODULE_RELEASE_python313= 1 | ||
|
||
MODULE_CONFARGS_python313= python --config=python3.13-config | ||
MODULE_MAKEARGS_python313= python3.13 | ||
MODULE_INSTARGS_python313= python3.13-install | ||
|
||
MODULE_SOURCES_python313= unit.example-python-app \ | ||
unit.example-python313-config | ||
|
||
BUILD_DEPENDS_python313= python3-devel | ||
|
||
BUILD_DEPENDS+= $(BUILD_DEPENDS_python313) | ||
|
||
define MODULE_PREINSTALL_python313 | ||
%{__mkdir} -p %{buildroot}%{_datadir}/doc/unit-python313/examples/python-app | ||
%{__install} -m 644 -p %{SOURCE100} \ | ||
%{buildroot}%{_datadir}/doc/unit-python313/examples/python-app/wsgi.py | ||
%{__install} -m 644 -p %{SOURCE101} \ | ||
%{buildroot}%{_datadir}/doc/unit-python313/examples/unit.config | ||
endef | ||
export MODULE_PREINSTALL_python313 | ||
|
||
define MODULE_FILES_python313 | ||
%{_libdir}/unit/modules/* | ||
%{_libdir}/unit/debug-modules/* | ||
endef | ||
export MODULE_FILES_python313 | ||
|
||
define MODULE_POST_python313 | ||
cat <<BANNER | ||
---------------------------------------------------------------------- | ||
|
||
The $(MODULE_SUMMARY_python313) 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_python313 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"applications": { | ||
"example_java21": { | ||
"processes": 1, | ||
"type": "java 21", | ||
"webapp": "/usr/share/doc/unit-jsc21/examples/jsc-app" | ||
} | ||
}, | ||
|
||
"listeners": { | ||
"*:8800": { | ||
"pass": "applications/example_java21" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"applications": { | ||
"example_python": { | ||
"type": "python 3.13", | ||
"processes": 2, | ||
"path": "/usr/share/doc/unit-python313/examples/python-app", | ||
"module": "wsgi" | ||
} | ||
}, | ||
|
||
"listeners": { | ||
"*:8400": { | ||
"pass": "applications/example_python" | ||
} | ||
} | ||
} |