Packages: added Debian 11 "bullseye" support.

This commit is contained in:
Andrei Belov
2021-08-17 16:45:51 +03:00
parent 48a9399f23
commit 3bd60e317c
2 changed files with 13 additions and 1 deletions

View File

@@ -135,6 +135,18 @@ include Makefile.python
include Makefile.perl
endif
# Debian 11
ifeq ($(CODENAME),bullseye)
include Makefile.php
include Makefile.python27
include Makefile.python39
include Makefile.go
include Makefile.perl
include Makefile.ruby
include Makefile.jsc-common
include Makefile.jsc11
endif
# Debian 10
ifeq ($(CODENAME),buster)
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_RELEASE_jsc_common= 1
ifneq (,$(findstring $(CODENAME),hirsute groovy focal eoan disco buster))
ifneq (,$(findstring $(CODENAME),hirsute groovy focal eoan disco buster bullseye))
JAVA_MINVERSION= 11
else
JAVA_MINVERSION= 8