Packages: added Ubuntu 20.04 "focal" support.

This commit is contained in:
Andrei Belov
2020-04-23 19:55:19 +03:00
parent 8f6e6086cb
commit af9392af1f
2 changed files with 13 additions and 1 deletions

View File

@@ -16,6 +16,18 @@ BUILD_DEPENDS = $(BUILD_DEPENDS_unit)
MODULES= MODULES=
# Ubuntu 20.04
ifeq ($(CODENAME),focal)
include Makefile.php
include Makefile.python27
include Makefile.python38
include Makefile.go
include Makefile.perl
include Makefile.ruby
include Makefile.jsc-common
include Makefile.jsc11
endif
# Ubuntu 19.10 # Ubuntu 19.10
ifeq ($(CODENAME),eoan) ifeq ($(CODENAME),eoan)
include Makefile.php include Makefile.php

View File

@@ -6,7 +6,7 @@ MODULE_SUMMARY_jsc_common= Java shared packages for NGINX Unit
MODULE_VERSION_jsc_common= $(VERSION) MODULE_VERSION_jsc_common= $(VERSION)
MODULE_RELEASE_jsc_common= 1 MODULE_RELEASE_jsc_common= 1
ifneq (,$(findstring $(CODENAME),eoan disco buster)) ifneq (,$(findstring $(CODENAME),focal eoan disco buster))
JAVA_MINVERSION= 11 JAVA_MINVERSION= 11
else else
JAVA_MINVERSION= 8 JAVA_MINVERSION= 8