Packages: Debian 10 "buster" support added.

This commit is contained in:
Andrei Belov
2019-07-09 14:17:03 +03:00
parent d7516e5f4e
commit c0aad59d13
2 changed files with 13 additions and 1 deletions

View File

@@ -78,6 +78,18 @@ include Makefile.python
include Makefile.perl include Makefile.perl
endif 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 # Debian 9
ifeq ($(CODENAME),stretch) ifeq ($(CODENAME),stretch)
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
ifeq ($(CODENAME),disco) ifneq (,$(findstring $(CODENAME),disco buster))
JAVA_MINVERSION= 11 JAVA_MINVERSION= 11
else else
JAVA_MINVERSION= 8 JAVA_MINVERSION= 8