Skip to content

Commit 88c90e1

Browse files
committed
Packages: added Debian 12 "bookworm" support.
1 parent 92ffcb8 commit 88c90e1

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

pkg/deb/Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,17 @@ include Makefile.jsc8
106106
include Makefile.jsc11
107107
endif
108108

109+
# Debian 12
110+
ifeq ($(CODENAME),bookworm)
111+
include Makefile.php
112+
include Makefile.python311
113+
include Makefile.go
114+
include Makefile.perl
115+
include Makefile.ruby
116+
include Makefile.jsc-common
117+
include Makefile.jsc17
118+
endif
119+
109120
# Debian 11
110121
ifeq ($(CODENAME),bullseye)
111122
include Makefile.php

pkg/deb/Makefile.jsc-common

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ MODULE_SUMMARY_jsc_common= Java shared packages for NGINX Unit
66
MODULE_VERSION_jsc_common= $(VERSION)
77
MODULE_RELEASE_jsc_common= 1
88

9-
ifneq (,$(findstring $(CODENAME),bionic))
9+
ifeq ($(CODENAME),bionic)
1010
JAVA_MINVERSION= 8
11+
else ifeq ($(CODENAME),bookworm)
12+
JAVA_MINVERSION= 17
1113
else
1214
JAVA_MINVERSION= 11
1315
endif

0 commit comments

Comments
 (0)