summaryrefslogtreecommitdiff
path: root/debian/patches/0035-Fix-version-pattern-check-to-support-ghostscript-RC-.patch
blob: 6bb449bbfd6c46d8fe0511554a2faaa9dee6f32a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
From: Didier Raboud <odyx@debian.org>
Date: Wed, 18 Sep 2019 21:01:21 +0200
Subject: Fix version pattern check to support ghostscript RC versions

$ gs -v
GPL Ghostscript RELEASE CANDIDATE 2 9.28 (2019-09-05)
Copyright (C) 2019 Artifex Software, Inc.  All rights reserved.

Without the escaped dot, the version will match as "2 9".
---
 installer/dcheck.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/installer/dcheck.py b/installer/dcheck.py
index d684c10..4d684e1 100644
--- a/installer/dcheck.py
+++ b/installer/dcheck.py
@@ -34,7 +34,7 @@ from base import utils, services
 from base.sixext import to_bytes_utf8
 
 ver1_pat = re.compile("""(\d+\.\d+\.\d+)""", re.IGNORECASE)
-ver_pat = re.compile("""(\d+.\d+)""", re.IGNORECASE)
+ver_pat = re.compile("""(\d+\.\d+)""", re.IGNORECASE)
 PID = 0
 CMDLINE = 1