[calm - Cygwin server-side packaging maintenance script] branch master, updated. 20200401-13-gf8e5139

Jon TURNEY jturney@sourceware.org
Mon Apr 27 17:00:44 GMT 2020




https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/calm.git;h=f8e513943c24453bce9ab5faecfe7e6c26261587

commit f8e513943c24453bce9ab5faecfe7e6c26261587
Author: Yaakov Selkowitz <yselkowi@redhat.com>
Date:   Mon Apr 27 17:52:35 2020 +0100

    Relax unique-version check for old python versions


Diff:
---
 calm/package.py | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/calm/package.py b/calm/package.py
index ff30122..fc6d6b7 100755
--- a/calm/package.py
+++ b/calm/package.py
@@ -866,6 +866,11 @@ def validate_packages(args, packages):
             if re.match(r'^lib.*\d', install_p):
                 continue
 
+            # ignore Python module packages, as we may keep old versions of
+            # those
+            if re.match(r'^python[23][567]-.*', install_p):
+                continue
+
             # ignore packages which don't have a current version (i.e. are test
             # only)
             if 'curr' not in packages[install_p].stability:



More information about the Cygwin-apps-cvs mailing list