From 7996d08ecf8ef160852da8e8fd688924ac50fa22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Sun, 4 Dec 2022 23:10:22 +0100 Subject: [PATCH] Update debian/compat to version 13 Compat version 13 is currently the recommended one. An important change introduced in 10 was change of default to target parallel builds https://github.com/Debian/debhelper/blob/5d1bb29841043d8e47ebbdd043e6cd086cad508e/debhelper.pod#compatibility-levels --- tools/packaging/cpt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/packaging/cpt.py b/tools/packaging/cpt.py index b5105e1844..144043a893 100755 --- a/tools/packaging/cpt.py +++ b/tools/packaging/cpt.py @@ -1048,7 +1048,7 @@ def debianize(): print('Create file: ' + os.path.join(prefix, 'debian', 'compat')) f = open(os.path.join(prefix, 'debian', 'compat'), 'w') - f.write("9") + f.write("13") f.close() print('Create file: ' + os.path.join(prefix, 'debian', 'control'))