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
AgeCommit message (Collapse)Author
2023-04-09mksetupini: Warn about migrating obsolete --okmissing optionsJon Turney
Also drop obsolete, genini-compatible --okmissing option from help text.
2023-04-07Add a test for mksetupiniJon Turney
2023-04-07Fix default of release label for mksetupiniJon Turney
Defaulting this to 'cygwin' isn't a very good idea.
2023-04-07Check that build-requires: lists valid package names, as wellJon Turney
Fix test data to satisfy that.
2023-01-29Fix inverted logic in mksetupini error propagationJon Turney
Fixes: d77b94da7803 ("Propagate any error reading packages through mksetupini")
2023-01-19Propagate any error reading packages through mksetupiniJon Turney
At the moment, calm.process_relarea() is expected to keep going, although we might later fail due to package set validation problemss. (In particular tests just assume that we ignore various problematic packages, although we don't actually check that they are being rejected with the epxected problem)
2022-12-05Make mksetupini continue to work for legacy x86 architectureJon Turney
2018-02-02mksetupini: mutually imply disable-checks for requires: and depends:Jon Turney
Disabling either of 'missing-depended-package' or 'missing-required-package' checks, implies both of these checks are disabled (since depends: is generated from requires:, and vice versa, if not present)
2017-11-30Make --disable-check able to take comma separated valuesJon Turney
... as well as being repeated
2017-11-30Add a disable-check: key in override.hint to disable certain checksJon Turney
Add a disable-check: key to hints to disable certain checks, rather than a static lists in past_mistakes (which needs calm restarting to re-read) disable-check: contains a list of tokens, similar to those for the --disable-check option, which indicates which checks are to be downgraded from errors to warnings for this package in override.hint, disable-check: can contain: curr-most-recent check that the curr: version is the most recent non-test version Also, don't consider equal mtime to be newer Also, allow curr-most-recent to be disabled by --disable-check
2017-11-30Add mksetupini option --disable-checkJon Turney
Add mksetupini option --disable-check, as a more general replacement for --okmissing
2017-11-30Make calm and mksetupini return a non-zero exit status on errorJon Turney
2017-11-09Add depends: handlingJon Turney
Future work: We probably need something to set requires: hint based on depends: hint, if one isn't present.
2017-11-09Add obsoletes: handlingJon Turney
Validate that the obsoleted packages exist (unless disabled with okmissing) No validation is done on any version relation which might be specified, but it's not clear how we can do that...
2017-05-07Check for and fix pep8 E226 missing whitespace around arithmetic operatorJon Turney
2016-08-30Read either setup.hint or pvr.hintJon Turney
For every package version, either setup.hint or pvr.hint must exist Read version overrides from override.hint or setup.hint Factor out reading hints and checking for errors in read_package
2016-07-18Add option 'okmissing=curr' to mksetupiniKen Brown
If this option is specified, suppress warning that a package doesn’t have a current version.
2016-05-12Make packageableJon Turney
Rearrange file layout for python packaging Add setup.py Use python3 style relative imports Add calm and mksetupini script entry points Fix tests to locate testdata in the same directory