Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/cygwin-apps/calm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2023-01-03 16:07:08 +0300
committerJon Turney <jon.turney@dronecode.org.uk>2023-01-03 16:28:18 +0300
commit36f62caeb71476f0a401569f90f64c465593220c (patch)
tree8019083616499408d773fb678bc012ce0034c476
parent8413b769e25cd02472b14f11fc41e00d642c9028 (diff)
Drop special case to handle libturbojpeg as a solib package
Drop special case to handle libturbojpeg as a solib package, since it got expired.
-rw-r--r--calm/common_constants.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/calm/common_constants.py b/calm/common_constants.py
index 5adfe91..cc43009 100644
--- a/calm/common_constants.py
+++ b/calm/common_constants.py
@@ -91,4 +91,4 @@ PACKAGE_COMPRESSIONS_RE = r'\.(' + '|'.join(PACKAGE_COMPRESSIONS) + r')'
# inspecting the contents (but that's expensive to do). for the moment, we
# recognize soversion packages by the simple heuristic of looking at the package
# name
-SOVERSION_PACKAGE_RE = r'^(lib|girepository-).*[\d_.]+$|^libflint$|^libturbojpeg$'
+SOVERSION_PACKAGE_RE = r'^(lib|girepository-).*[\d_.]+$|^libflint$'