From 9a39b0101a506738b8e7fd68af39fc73e329025a Mon Sep 17 00:00:00 2001 From: Andrei Belov Date: Tue, 9 Jul 2019 14:17:03 +0300 Subject: Packages: Debian 10 "buster" support added. --- pkg/deb/Makefile | 12 ++++++++++++ pkg/deb/Makefile.jsc-common | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) (limited to 'pkg/deb') diff --git a/pkg/deb/Makefile b/pkg/deb/Makefile index 0ad98d80..952408cd 100644 --- a/pkg/deb/Makefile +++ b/pkg/deb/Makefile @@ -78,6 +78,18 @@ include Makefile.python include Makefile.perl endif +# Debian 10 +ifeq ($(CODENAME),buster) +include Makefile.php +include Makefile.python27 +include Makefile.python37 +include Makefile.go111 +include Makefile.perl +include Makefile.ruby +include Makefile.jsc-common +include Makefile.jsc11 +endif + # Debian 9 ifeq ($(CODENAME),stretch) include Makefile.php diff --git a/pkg/deb/Makefile.jsc-common b/pkg/deb/Makefile.jsc-common index 080e248f..30f777fd 100644 --- a/pkg/deb/Makefile.jsc-common +++ b/pkg/deb/Makefile.jsc-common @@ -6,7 +6,7 @@ MODULE_SUMMARY_jsc_common= Java shared packages for NGINX Unit MODULE_VERSION_jsc_common= $(VERSION) MODULE_RELEASE_jsc_common= 1 -ifeq ($(CODENAME),disco) +ifneq (,$(findstring $(CODENAME),disco buster)) JAVA_MINVERSION= 11 else JAVA_MINVERSION= 8 -- cgit