From 5758a0637469bb29b3568d3311bc58505f82fc0c Mon Sep 17 00:00:00 2001 From: Andrei Belov Date: Thu, 21 Nov 2019 14:13:24 +0300 Subject: Packages: added Ubuntu 19.10 "eoan" support. --- docs/Makefile | 1 + docs/changes.xml | 26 +++++++++++++ pkg/deb/Makefile | 14 +++++++ pkg/deb/Makefile.go112 | 48 ++++++++++++++++++++++++ pkg/deb/Makefile.go113 | 48 ++++++++++++++++++++++++ pkg/deb/Makefile.jsc-common | 2 +- pkg/deb/debian.module/unit.example-go1.12-config | 15 ++++++++ pkg/deb/debian.module/unit.example-go1.13-config | 15 ++++++++ 8 files changed, 168 insertions(+), 1 deletion(-) create mode 100644 pkg/deb/Makefile.go112 create mode 100644 pkg/deb/Makefile.go113 create mode 100644 pkg/deb/debian.module/unit.example-go1.12-config create mode 100644 pkg/deb/debian.module/unit.example-go1.13-config diff --git a/docs/Makefile b/docs/Makefile index f9ae3177..bb4a1446 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -11,6 +11,7 @@ PACKAGES= unit \ unit-python3.5 unit-python3.6 unit-python3.7 \ unit-python3.8 \ unit-go unit-go1.7 unit-go1.8 unit-go1.9 unit-go1.10 \ + unit-go1.12 unit-go1.13 \ unit-perl \ unit-ruby \ unit-jsc-common unit-jsc8 unit-jsc10 unit-jsc11 diff --git a/docs/changes.xml b/docs/changes.xml index 0ac817ac..59106de1 100644 --- a/docs/changes.xml +++ b/docs/changes.xml @@ -5,6 +5,32 @@ + + + + +Initial release of Go 1.13 module for NGINX Unit. + + + + + + + + + + +Initial release of Go 1.12 module for NGINX Unit. + + + + + + diff --git a/pkg/deb/Makefile b/pkg/deb/Makefile index d93f193a..855dd6f7 100644 --- a/pkg/deb/Makefile +++ b/pkg/deb/Makefile @@ -16,6 +16,20 @@ BUILD_DEPENDS = $(BUILD_DEPENDS_unit) MODULES= +# Ubuntu 19.10 +ifeq ($(CODENAME),eoan) +include Makefile.php +include Makefile.python27 +include Makefile.python37 +include Makefile.python38 +include Makefile.go112 +include Makefile.go113 +include Makefile.perl +include Makefile.ruby +include Makefile.jsc-common +include Makefile.jsc11 +endif + # Ubuntu 19.04 ifeq ($(CODENAME),disco) include Makefile.php diff --git a/pkg/deb/Makefile.go112 b/pkg/deb/Makefile.go112 new file mode 100644 index 00000000..f64ab4c5 --- /dev/null +++ b/pkg/deb/Makefile.go112 @@ -0,0 +1,48 @@ +MODULES+= go112 +MODULE_SUFFIX_go112= go1.12 + +MODULE_SUMMARY_go112= Go 1.12 module for NGINX Unit + +MODULE_VERSION_go112= $(VERSION) +MODULE_RELEASE_go112= 1 + +MODULE_CONFARGS_go112= go --go=/usr/lib/go-1.12/bin/go --go-path=/usr/share/gocode +MODULE_MAKEARGS_go112= /usr/lib/go-1.12/bin/go +MODULE_INSTARGS_go112= /usr/lib/go-1.12/bin/go-install + +MODULE_SOURCES_go112= unit.example-go-app \ + unit.example-go1.12-config + +BUILD_DEPENDS_go112= golang-1.12 +BUILD_DEPENDS+= $(BUILD_DEPENDS_go112) + +MODULE_BUILD_DEPENDS_go112=,golang-1.12 +MODULE_DEPENDS_go112=,golang-1.12 + +define MODULE_PREINSTALL_go112 + mkdir -p debian/unit-go1.12/usr/share/doc/unit-go1.12/examples/go-app + install -m 644 -p debian/unit.example-go-app debian/unit-go1.12/usr/share/doc/unit-go1.12/examples/go-app/let-my-people.go + install -m 644 -p debian/unit.example-go1.12-config debian/unit-go1.12/usr/share/doc/unit-go1.12/examples/unit.config +endef +export MODULE_PREINSTALL_go112 + +define MODULE_POST_go112 +cat <