From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27825 invoked by alias); 18 Apr 2016 11:34:59 -0000 Mailing-List: contact cygwin-apps-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: cygwin-apps-cvs-owner@sourceware.org Received: (qmail 27757 invoked by uid 9795); 18 Apr 2016 11:34:58 -0000 Date: Mon, 18 Apr 2016 11:34:00 -0000 Message-ID: <20160418113458.27718.qmail@sourceware.org> From: jturney@sourceware.org To: cygwin-apps-cvs@sourceware.org Subject: [calm - Cygwin server-side packaging maintenance script] branch master, updated. dbcdbd59109bce95ed67b19b11ee2b903ed0cad6 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 2bf6a11a86d1dcb2d5229bd723e47ffb0fba3e12 X-Git-Newrev: dbcdbd59109bce95ed67b19b11ee2b903ed0cad6 X-SW-Source: 2016-q2/txt/msg00003.txt.bz2 https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/calm.git;h=dbcdbd59109bce95ed67b19b11ee2b903ed0cad6 commit dbcdbd59109bce95ed67b19b11ee2b903ed0cad6 Author: Jon Turney Date: Tue Apr 12 11:07:52 2016 +0100 Add a queue interface to a package validator Place a copy of each package upload into a filesystem queue, to be processed by something else which does checks on the package https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/calm.git;h=27eb221199cc32d8c53b1f6ed59a468045115856 commit 27eb221199cc32d8c53b1f6ed59a468045115856 Author: Jon Turney Date: Mon Apr 11 22:06:31 2016 +0100 In read_package(), log as an error if treated as an error due to strict Also fix typos of 'warning' for 'warnings' v2: Fix typo Diff: --- package.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/package.py b/package.py index cddbdb5..7640429 100755 --- a/package.py +++ b/package.py @@ -162,7 +162,7 @@ def read_package(packages, basedir, dirpath, files, strict=False): # start with a number match = re.match(r'^' + re.escape(p) + '-(.+)-(\d[0-9a-zA-Z.]*)(-src|)\.tar\.(bz2|gz|lzma|xz)$', f) if not match: - logging.lvl(strict_lvl, "tar file '%s' in package '%s' doesn't follow naming convention" % (f, p)) + logging.log(strict_lvl, "tar file '%s' in package '%s' doesn't follow naming convention" % (f, p)) warnings = True else: # historically, V can contain a '-' (since we can use the fact