Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/cygwin-apps/calm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2023-01-02 17:50:41 +0300
committerJon Turney <jon.turney@dronecode.org.uk>2023-01-02 19:47:05 +0300
commit8413b769e25cd02472b14f11fc41e00d642c9028 (patch)
tree0a5a0085213be9b8b892604552e992d236200578 /calm/calm.py
parentdb46667e54cba9aae167c633e90ab228bd920723 (diff)
Tweak SOVERSION_PACKAGE_RE so it matches solib packages without a number
'libflint' and 'libturbojpeg' packages were mistakenly first made as solib packages without a soversion number. Explicitly match them so they get treated as old solibs
Diffstat (limited to 'calm/calm.py')
-rwxr-xr-xcalm/calm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/calm/calm.py b/calm/calm.py
index 173fe47..dc66926 100755
--- a/calm/calm.py
+++ b/calm/calm.py
@@ -735,7 +735,7 @@ def main():
parser.add_argument('--stagingdir', action='store', metavar='DIR', help="automated build staging directory (default: " + stagingdir_default + ")", default=stagingdir_default)
parser.add_argument('--no-stale', action='store_false', dest='stale', help="don't vault stale packages")
parser.set_defaults(stale=True)
- parser.add_argument('--reports', action='store_true', dest='reports', help="don't produce reports", default=None)
+ parser.add_argument('--reports', action='store_true', dest='reports', help="produce reports (default: off unless daemonized)", default=None)
parser.add_argument('-n', '--dry-run', action='store_true', dest='dryrun', help="don't do anything")
parser.add_argument('--vault', action='store', metavar='DIR', help="vault directory (default: " + vault_default + ")", default=vault_default, dest='vault')
parser.add_argument('-v', '--verbose', action='count', dest='verbose', help='verbose output')