[calm - Cygwin server-side packaging maintenance script] branch master, updated. 20200401-13-gf8e5139
Jon TURNEY via Cygwin-apps-cvs <[email protected]>
| Newsgroups | gmane.os.cygwin.cvs.apps |
|---|---|
| Message-ID | <[email protected]> |
https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/calm.git;h=f8e513943c24453bce9ab5faecfe7e6c26261587 commit f8e513943c24453bce9ab5faecfe7e6c26261587 Author: Yaakov Selkowitz <[email protected]> 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: