From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 114138 invoked by alias); 12 Apr 2017 10:11:48 -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 113642 invoked by uid 9795); 12 Apr 2017 10:11:47 -0000 Date: Wed, 12 Apr 2017 10:11:00 -0000 Message-ID: <20170412101147.113050.qmail@sourceware.org> From: jturney@sourceware.org To: cygwin-apps-cvs@sourceware.org Subject: [calm - Cygwin server-side packaging maintenance script] branch master, updated. 20160705-64-g1f4e125 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 389b02002f7accd6ba05e22d00cdd7b973c93035 X-Git-Newrev: 1f4e125ab00389c54a03c9d703c414e4e7ce3584 X-SW-Source: 2017-q2/txt/msg00010.txt.bz2 https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/calm.git;h=1f4e125ab00389c54a03c9d703c414e4e7ce3584 commit 1f4e125ab00389c54a03c9d703c414e4e7ce3584 Author: Jon Turney Date: Thu Apr 6 19:25:49 2017 +0100 Add daemon mode for calm SIGUSR1 tells it to re-read the upload area SIGUSR2 tells it to re-read the release area This avoids maintainers having to wait a random amount of time to discover the result of their uploads For the moment, we still re-read everything every 30 minutes, but this could be increased, which would be a good deal more efficient, as we won't be re-reading the state of the relarea when nothing has changed. https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/calm.git;h=e33732aec99315538034b886a5ad55faa1ad014c commit e33732aec99315538034b886a5ad55faa1ad014c Author: Jon Turney Date: Thu May 12 16:45:33 2016 +0000 Tweak email recipents Add stromeko to errors list Add jturney and yselkowitz to Bcc list https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/calm.git;h=73494ad1f27cead2e1d921b71496dc05b1a11114 commit 73494ad1f27cead2e1d921b71496dc05b1a11114 Author: Jon Turney Date: Fri Jun 24 14:23:51 2016 +0100 Also check for skip: but install files Check the condition both ways, so the presence/absence of skip: matches absence/presence of an install tarfile https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/calm.git;h=e460bdcee7a9e8bcc0598041e8420ff6cb74abb6 commit e460bdcee7a9e8bcc0598041e8420ff6cb74abb6 Author: Jon Turney Date: Sun Apr 9 18:39:21 2017 +0100 Improve 'should be categorized obsolete' test to apply to each version Forgive some legitimate, historical cases of this condition Diff: --- calm/package.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/calm/package.py b/calm/package.py index fe188c4..82dca12 100755 --- a/calm/package.py +++ b/calm/package.py @@ -574,7 +574,7 @@ def validate_packages(args, packages): if 'source' not in packages[p].vermap[vr]: if 'install' in packages[p].vermap[vr]: if packages[p].tars[packages[p].vermap[vr]['install']].is_empty: - lvl = logging.WARNING if p not in past_mistakes.empty_but_not_obsolete else logging.INFO + lvl = logging.WARNING if p not in past_mistakes.empty_but_not_obsolete else logging.DEBUG logging.log(lvl, "package '%s' version '%s' has empty install tar file and no source, but it's not in the _obsolete category" % (p, vr)) # make another pass to verify a source tarfile exists for every install