From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2201) id 77E653946C30; Mon, 27 Apr 2020 17:00:44 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 77E653946C30 To: cygwin-apps-cvs@sourceware.org Subject: [calm - Cygwin server-side packaging maintenance script] branch master, updated. 20200401-13-gf8e5139 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: d047fed3d38af7a0307f46d74b0bf7e78eaaeda6 X-Git-Newrev: f8e513943c24453bce9ab5faecfe7e6c26261587 Message-Id: <20200427170044.77E653946C30@sourceware.org> Date: Mon, 27 Apr 2020 17:00:44 +0000 (GMT) From: Jon TURNEY X-BeenThere: cygwin-apps-cvs@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin-apps git logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Apr 2020 17:00:44 -0000 https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/calm.git;h=f8e513943c24453bce9ab5faecfe7e6c26261587 commit f8e513943c24453bce9ab5faecfe7e6c26261587 Author: Yaakov Selkowitz 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: