summaryrefslogtreecommitdiffhomepage
path: root/pkg/deb/Makefile.jsc8
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/deb/Makefile.jsc8')
-rw-r--r--pkg/deb/Makefile.jsc871
1 files changed, 0 insertions, 71 deletions
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