summaryrefslogtreecommitdiffhomepage
path: root/pkg/deb/Makefile
diff options
context:
space:
mode:
authorKonstantin Pavlov <thresh@nginx.com>2024-05-20 18:55:51 +0000
committerKonstantin Pavlov <pavlov.konstantin@gmail.com>2024-07-03 16:12:36 -0700
commit0bd18ecd715b3461b848ce31289349de8e765d9c (patch)
tree7009eb5ae4f66064016edb20516cf66595be2ff7 /pkg/deb/Makefile
parentff6d504530ad2c126fc264744faa9e62bcc43fb9 (diff)
downloadunit-0bd18ecd715b3461b848ce31289349de8e765d9c.tar.gz
unit-0bd18ecd715b3461b848ce31289349de8e765d9c.tar.bz2
Packages: clean up EOL debian-based distributions
Diffstat (limited to '')
-rw-r--r--pkg/deb/Makefile78
-rw-r--r--pkg/deb/Makefile.jsc1071
-rw-r--r--pkg/deb/Makefile.jsc1671
-rw-r--r--pkg/deb/Makefile.jsc871
-rw-r--r--pkg/deb/Makefile.python3646
-rw-r--r--pkg/deb/Makefile.python3746
6 files changed, 0 insertions, 383 deletions
diff --git a/pkg/deb/Makefile b/pkg/deb/Makefile
index a0c226e2..4e6ee8d9 100644
--- a/pkg/deb/Makefile
+++ b/pkg/deb/Makefile
@@ -36,38 +36,6 @@ include Makefile.jsc21
include Makefile.wasm
endif
-# Ubuntu 23.04
-ifeq ($(CODENAME),lunar)
-include Makefile.php
-include Makefile.python311
-include Makefile.go
-include Makefile.perl
-include Makefile.ruby
-include Makefile.jsc-common
-include Makefile.jsc11
-include Makefile.jsc17
-include Makefile.jsc18
-include Makefile.jsc19
-include Makefile.jsc20
-include Makefile.wasm
-endif
-
-# Ubuntu 22.10
-ifeq ($(CODENAME),kinetic)
-include Makefile.php
-include Makefile.python27
-include Makefile.python310
-include Makefile.go
-include Makefile.perl
-include Makefile.ruby
-include Makefile.jsc-common
-include Makefile.jsc11
-include Makefile.jsc17
-include Makefile.jsc18
-include Makefile.jsc19
-include Makefile.wasm
-endif
-
# Ubuntu 22.04
ifeq ($(CODENAME),jammy)
include Makefile.php
@@ -83,23 +51,6 @@ include Makefile.jsc18
include Makefile.wasm
endif
-# Ubuntu 21.10
-ifeq ($(CODENAME),impish)
-include Makefile.php
-include Makefile.python27
-include Makefile.python39
-include Makefile.python310
-include Makefile.go
-include Makefile.perl
-include Makefile.ruby
-include Makefile.jsc-common
-include Makefile.jsc11
-include Makefile.jsc16
-include Makefile.jsc17
-include Makefile.jsc18
-include Makefile.wasm
-endif
-
# Ubuntu 20.04
ifeq ($(CODENAME),focal)
include Makefile.php
@@ -113,22 +64,6 @@ include Makefile.jsc11
include Makefile.wasm
endif
-# Ubuntu 18.04
-ifeq ($(CODENAME),bionic)
-include Makefile.php
-include Makefile.python27
-include Makefile.python36
-include Makefile.python37
-include Makefile.python38
-include Makefile.go
-include Makefile.perl
-include Makefile.ruby
-include Makefile.jsc-common
-include Makefile.jsc8
-include Makefile.jsc11
-include Makefile.wasm
-endif
-
# Debian 12
ifeq ($(CODENAME),bookworm)
include Makefile.php
@@ -154,19 +89,6 @@ include Makefile.jsc11
include Makefile.wasm
endif
-# Debian 10
-ifeq ($(CODENAME),buster)
-include Makefile.php
-include Makefile.python27
-include Makefile.python37
-include Makefile.go
-include Makefile.perl
-include Makefile.ruby
-include Makefile.jsc-common
-include Makefile.jsc11
-include Makefile.wasm
-endif
-
CONFIGURE_ARGS_COMMON=\
--prefix=/usr \
--statedir=/var/lib/unit \
diff --git a/pkg/deb/Makefile.jsc10 b/pkg/deb/Makefile.jsc10
deleted file mode 100644
index 43ded86b..00000000
--- a/pkg/deb/Makefile.jsc10
+++ /dev/null
@@ -1,71 +0,0 @@
-MODULES+= jsc10
-MODULE_SUFFIX_jsc10= jsc10
-
-MODULE_SUMMARY_jsc10= Java 10 module for NGINX Unit
-
-MODULE_VERSION_jsc10= $(VERSION)
-MODULE_RELEASE_jsc10= 1
-
-MODULE_CONFARGS_jsc10= java --module=java10 --home=/usr/lib/jvm/java-11-openjdk-$$\(DEB_HOST_ARCH\) --jars=/usr/share/unit-jsc-common/
-MODULE_MAKEARGS_jsc10= java10
-MODULE_INSTARGS_jsc10= java10-install
-
-MODULE_SOURCES_jsc10= unit.example-jsc-app \
- unit.example-jsc10-config
-
-BUILD_DEPENDS_jsc10= openjdk-11-jdk-headless openjdk-11-jre-headless
-BUILD_DEPENDS+= $(BUILD_DEPENDS_jsc10)
-
-MODULE_BUILD_DEPENDS_jsc10=,openjdk-11-jdk-headless
-MODULE_DEPENDS_jsc10=,openjdk-11-jre-headless,unit-jsc-common (= $(MODULE_VERSION_jsc_common)-$(MODULE_RELEASE_jsc_common)~$(CODENAME))
-
-define MODULE_PREINSTALL_jsc10
- mkdir -p debian/unit-jsc10/usr/share/doc/unit-jsc10/examples/jsc-app
- install -m 644 -p debian/unit.example-jsc-app debian/unit-jsc10/usr/share/doc/unit-jsc10/examples/jsc-app/index.jsp
- install -m 644 -p debian/unit.example-jsc10-config debian/unit-jsc10/usr/share/doc/unit-jsc10/examples/unit.config
- install -m 644 -p src/java/README.JSR-340 debian/unit-jsc10/usr/share/doc/unit-jsc10/
-endef
-export MODULE_PREINSTALL_jsc10
-
-define MODULE_POSTINSTALL_jsc10
- cd $$\(BUILDDIR_unit\) \&\& \
- DESTDIR=$$\(INSTALLDIR\) make java-shared-uninstall
-endef
-export MODULE_POSTINSTALL_jsc10
-
-define MODULE_POST_jsc10
-cat <<BANNER
-----------------------------------------------------------------------
-
-The $(MODULE_SUMMARY_jsc10) has been installed.
-
-To check out the sample app, run these commands:
-
- sudo service unit restart
- cd /usr/share/doc/unit-$(MODULE_SUFFIX_jsc10)/examples
- sudo curl -X PUT --data-binary @unit.config --unix-socket /var/run/control.unit.sock http://localhost/config
- curl http://localhost:8800/
-
-Online documentation is available at https://unit.nginx.org
-
-NOTICE:
-
-This version of Unit code is made available in support of the open source
-development process. This is an intermediate build made available for
-testing purposes only. This Unit code is untested and presumed incompatible
-with the JSR 340 Java Servlet 3.1 specification. You should not deploy or
-write to this code. You should instead deploy and write production
-applications on pre-built binaries that have been tested and certified
-to meet the JSR-340 compatibility requirements such as certified binaries
-published for the JSR-340 reference implementation available at
-https://javaee.github.io/glassfish/.
-
-Redistribution of any Intermediate Build must retain this notice.
-
-Oracle and Java are registered trademarks of Oracle and/or its affiliates.
-Other names may be trademarks of their respective owners.
-
-----------------------------------------------------------------------
-BANNER
-endef
-export MODULE_POST_jsc10
diff --git a/pkg/deb/Makefile.jsc16 b/pkg/deb/Makefile.jsc16
deleted file mode 100644
index f45e1299..00000000
--- a/pkg/deb/Makefile.jsc16
+++ /dev/null
@@ -1,71 +0,0 @@
-MODULES+= jsc16
-MODULE_SUFFIX_jsc16= jsc16
-
-MODULE_SUMMARY_jsc16= Java 16 module for NGINX Unit
-
-MODULE_VERSION_jsc16= $(VERSION)
-MODULE_RELEASE_jsc16= 1
-
-MODULE_CONFARGS_jsc16= java --module=java16 --home=/usr/lib/jvm/java-16-openjdk-$$\(DEB_HOST_ARCH\) --jars=/usr/share/unit-jsc-common/
-MODULE_MAKEARGS_jsc16= java16
-MODULE_INSTARGS_jsc16= java16-install
-
-MODULE_SOURCES_jsc16= unit.example-jsc-app \
- unit.example-jsc16-config
-
-BUILD_DEPENDS_jsc16= openjdk-16-jdk-headless openjdk-16-jre-headless
-BUILD_DEPENDS+= $(BUILD_DEPENDS_jsc16)
-
-MODULE_BUILD_DEPENDS_jsc16=,openjdk-16-jdk-headless
-MODULE_DEPENDS_jsc16=,openjdk-16-jre-headless,unit-jsc-common (= $(MODULE_VERSION_jsc_common)-$(MODULE_RELEASE_jsc_common)~$(CODENAME))
-
-define MODULE_PREINSTALL_jsc16
- mkdir -p debian/unit-jsc16/usr/share/doc/unit-jsc16/examples/jsc-app
- install -m 644 -p debian/unit.example-jsc-app debian/unit-jsc16/usr/share/doc/unit-jsc16/examples/jsc-app/index.jsp
- install -m 644 -p debian/unit.example-jsc16-config debian/unit-jsc16/usr/share/doc/unit-jsc16/examples/unit.config
- install -m 644 -p src/java/README.JSR-340 debian/unit-jsc16/usr/share/doc/unit-jsc16/
-endef
-export MODULE_PREINSTALL_jsc16
-
-define MODULE_POSTINSTALL_jsc16
- cd $$\(BUILDDIR_unit\) \&\& \
- DESTDIR=$$\(INSTALLDIR\) make java-shared-uninstall
-endef
-export MODULE_POSTINSTALL_jsc16
-
-define MODULE_POST_jsc16
-cat <<BANNER
-----------------------------------------------------------------------
-
-The $(MODULE_SUMMARY_jsc16) has been installed.
-
-To check out the sample app, run these commands:
-
- sudo service unit restart
- cd /usr/share/doc/unit-$(MODULE_SUFFIX_jsc16)/examples
- sudo curl -X PUT --data-binary @unit.config --unix-socket /var/run/control.unit.sock http://localhost/config
- curl http://localhost:8800/
-
-Online documentation is available at https://unit.nginx.org
-
-NOTICE:
-
-This version of Unit code is made available in support of the open source
-development process. This is an intermediate build made available for
-testing purposes only. This Unit code is untested and presumed incompatible
-with the JSR 340 Java Servlet 3.1 specification. You should not deploy or
-write to this code. You should instead deploy and write production
-applications on pre-built binaries that have been tested and certified
-to meet the JSR-340 compatibility requirements such as certified binaries
-published for the JSR-340 reference implementation available at
-https://javaee.github.io/glassfish/.
-
-Redistribution of any Intermediate Build must retain this notice.
-
-Oracle and Java are registered trademarks of Oracle and/or its affiliates.
-Other names may be trademarks of their respective owners.
-
-----------------------------------------------------------------------
-BANNER
-endef
-export MODULE_POST_jsc16
diff --git a/pkg/deb/Makefile.jsc8 b/pkg/deb/Makefile.jsc8
deleted file mode 100644
index d7eed96b..00000000
--- a/pkg/deb/Makefile.jsc8
+++ /dev/null
@@ -1,71 +0,0 @@
-MODULES+= jsc8
-MODULE_SUFFIX_jsc8= jsc8
-
-MODULE_SUMMARY_jsc8= Java 8 module for NGINX Unit
-
-MODULE_VERSION_jsc8= $(VERSION)
-MODULE_RELEASE_jsc8= 1
-
-MODULE_CONFARGS_jsc8= java --module=java8 --home=/usr/lib/jvm/java-8-openjdk-$$\(DEB_HOST_ARCH\) --jars=/usr/share/unit-jsc-common/
-MODULE_MAKEARGS_jsc8= java8
-MODULE_INSTARGS_jsc8= java8-install
-
-MODULE_SOURCES_jsc8= unit.example-jsc-app \
- unit.example-jsc8-config
-
-BUILD_DEPENDS_jsc8= openjdk-8-jdk-headless openjdk-8-jre-headless
-BUILD_DEPENDS+= $(BUILD_DEPENDS_jsc8)
-
-MODULE_BUILD_DEPENDS_jsc8=,openjdk-8-jdk-headless
-MODULE_DEPENDS_jsc8=,openjdk-8-jre-headless,unit-jsc-common (= $(MODULE_VERSION_jsc_common)-$(MODULE_RELEASE_jsc_common)~$(CODENAME))
-
-define MODULE_PREINSTALL_jsc8
- mkdir -p debian/unit-jsc8/usr/share/doc/unit-jsc8/examples/jsc-app
- install -m 644 -p debian/unit.example-jsc-app debian/unit-jsc8/usr/share/doc/unit-jsc8/examples/jsc-app/index.jsp
- install -m 644 -p debian/unit.example-jsc8-config debian/unit-jsc8/usr/share/doc/unit-jsc8/examples/unit.config
- install -m 644 -p src/java/README.JSR-340 debian/unit-jsc8/usr/share/doc/unit-jsc8/
-endef
-export MODULE_PREINSTALL_jsc8
-
-define MODULE_POSTINSTALL_jsc8
- cd $$\(BUILDDIR_unit\) \&\& \
- DESTDIR=$$\(INSTALLDIR\) make java-shared-uninstall
-endef
-export MODULE_POSTINSTALL_jsc8
-
-define MODULE_POST_jsc8
-cat <<BANNER
-----------------------------------------------------------------------
-
-The $(MODULE_SUMMARY_jsc8) has been installed.
-
-To check out the sample app, run these commands:
-
- sudo service unit restart
- cd /usr/share/doc/unit-$(MODULE_SUFFIX_jsc8)/examples
- sudo curl -X PUT --data-binary @unit.config --unix-socket /var/run/control.unit.sock http://localhost/config
- curl http://localhost:8800/
-
-Online documentation is available at https://unit.nginx.org
-
-NOTICE:
-
-This version of Unit code is made available in support of the open source
-development process. This is an intermediate build made available for
-testing purposes only. This Unit code is untested and presumed incompatible
-with the JSR 340 Java Servlet 3.1 specification. You should not deploy or
-write to this code. You should instead deploy and write production
-applications on pre-built binaries that have been tested and certified
-to meet the JSR-340 compatibility requirements such as certified binaries
-published for the JSR-340 reference implementation available at
-https://javaee.github.io/glassfish/.
-
-Redistribution of any Intermediate Build must retain this notice.
-
-Oracle and Java are registered trademarks of Oracle and/or its affiliates.
-Other names may be trademarks of their respective owners.
-
-----------------------------------------------------------------------
-BANNER
-endef
-export MODULE_POST_jsc8
diff --git a/pkg/deb/Makefile.python36 b/pkg/deb/Makefile.python36
deleted file mode 100644
index 4fd898c6..00000000
--- a/pkg/deb/Makefile.python36
+++ /dev/null
@@ -1,46 +0,0 @@
-MODULES+= python36
-MODULE_SUFFIX_python36= python3.6
-
-MODULE_SUMMARY_python36= Python 3.6 module for NGINX Unit
-
-MODULE_VERSION_python36= $(VERSION)
-MODULE_RELEASE_python36= 1
-
-MODULE_CONFARGS_python36= python --config=python3.6-config
-MODULE_MAKEARGS_python36= python3.6
-MODULE_INSTARGS_python36= python3.6-install
-
-MODULE_SOURCES_python36= unit.example-python-app \
- unit.example-python3.6-config
-
-BUILD_DEPENDS_python36= python3.6-dev
-BUILD_DEPENDS+= $(BUILD_DEPENDS_python36)
-
-MODULE_BUILD_DEPENDS_python36=,python3.6-dev
-
-define MODULE_PREINSTALL_python36
- mkdir -p debian/unit-python3.6/usr/share/doc/unit-python3.6/examples/python-app
- install -m 644 -p debian/unit.example-python-app debian/unit-python3.6/usr/share/doc/unit-python3.6/examples/python-app/wsgi.py
- install -m 644 -p debian/unit.example-python3.6-config debian/unit-python3.6/usr/share/doc/unit-python3.6/examples/unit.config
-endef
-export MODULE_PREINSTALL_python36
-
-define MODULE_POST_python36
-cat <<BANNER
-----------------------------------------------------------------------
-
-The $(MODULE_SUMMARY_python36) has been installed.
-
-To check out the sample app, run these commands:
-
- sudo service unit restart
- cd /usr/share/doc/unit-$(MODULE_SUFFIX_python36)/examples
- sudo curl -X PUT --data-binary @unit.config --unix-socket /var/run/control.unit.sock http://localhost/config
- curl http://localhost:8400/
-
-Online documentation is available at https://unit.nginx.org
-
-----------------------------------------------------------------------
-BANNER
-endef
-export MODULE_POST_python36
diff --git a/pkg/deb/Makefile.python37 b/pkg/deb/Makefile.python37
deleted file mode 100644
index 54dd8c4c..00000000
--- a/pkg/deb/Makefile.python37
+++ /dev/null
@@ -1,46 +0,0 @@
-MODULES+= python37
-MODULE_SUFFIX_python37= python3.7
-
-MODULE_SUMMARY_python37= Python 3.7 module for NGINX Unit
-
-MODULE_VERSION_python37= $(VERSION)
-MODULE_RELEASE_python37= 1
-
-MODULE_CONFARGS_python37= python --config=python3.7-config
-MODULE_MAKEARGS_python37= python3.7
-MODULE_INSTARGS_python37= python3.7-install
-
-MODULE_SOURCES_python37= unit.example-python-app \
- unit.example-python3.7-config
-
-BUILD_DEPENDS_python37= python3.7-dev
-BUILD_DEPENDS+= $(BUILD_DEPENDS_python37)
-
-MODULE_BUILD_DEPENDS_python37=,python3.7-dev
-
-define MODULE_PREINSTALL_python37
- mkdir -p debian/unit-python3.7/usr/share/doc/unit-python3.7/examples/python-app
- install -m 644 -p debian/unit.example-python-app debian/unit-python3.7/usr/share/doc/unit-python3.7/examples/python-app/wsgi.py
- install -m 644 -p debian/unit.example-python3.7-config debian/unit-python3.7/usr/share/doc/unit-python3.7/examples/unit.config
-endef
-export MODULE_PREINSTALL_python37
-
-define MODULE_POST_python37
-cat <<BANNER
-----------------------------------------------------------------------
-
-The $(MODULE_SUMMARY_python37) has been installed.
-
-To check out the sample app, run these commands:
-
- sudo service unit restart
- cd /usr/share/doc/unit-$(MODULE_SUFFIX_python37)/examples
- sudo curl -X PUT --data-binary @unit.config --unix-socket /var/run/control.unit.sock http://localhost/config
- curl http://localhost:8400/
-
-Online documentation is available at https://unit.nginx.org
-
-----------------------------------------------------------------------
-BANNER
-endef
-export MODULE_POST_python37