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
2018-06-05Update version to 2018060520180605Jon Turney
2018-05-14Add support for 'missing-curr' token in disabled-check: key in pvr.hintJon Turney
in pvr.hint, disable-check can contain: missing-curr: check that package has a current version Move identification of best-version earlier to support this. Also fix looking for empty-obsolete in disable-check.
2018-05-14Ignore test-only packages in non-unique current versions checkJon Turney
2018-05-14Fix some escaping issues reported by latest pycodestyleJon Turney
Also disable W504 (line break after binary operator). The existing code is formatted to satisify W503 (Line break occurred before a binary operator).
2018-05-14Also remove versions which have no packages left, after expiryJon Turney
2018-03-07Drop strict option to read_package()Jon Turney
We no longer need the ability to not issue warnings about problems in the relarea, since the problems are all fixed.
2018-03-05Make test_scan_uploads repeatableJon Turney
setup.hint files get renamed at upload since 828b91be, so use a copy of testdata/homes to make the test repeatable.
2018-03-05Warn if replace-versions: lists a version which is also offered for installJon Turney
2018-03-05Improve reasons for not migrating reported by hint-migrateJon Turney
2018-02-28Update packages.inc for stylesheet changesJon Turney
2018-02-20Fix typoJon Turney
2018-02-20Properly generate an empty depends2: when neededJon Turney
2018-02-20Tolerate comma or space separated obsoletes: in hintsJon Turney
2018-02-02Also warn about pointless replace-versions: when it's equal to current versionJon Turney
2018-02-02Update TODOJon 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)
2018-02-02Update URL for setup.ini format descriptionJon Turney
The URL given is just a redirect now. Details of setup.ini were moved elsewhere in 2002.
2018-02-01Clarify vaulting messageJon Turney
Packages are removed due to expiry settings, so "no longer accessible by installer" is no longer true.
2018-01-31Update version to 2018013120180131Jon Turney
2018-01-31Don't suppress empty depends2: when that could cause problemsJon Turney
Don't suppress empty depends2: if there might be a preceeding non-empty depends2: or requires: This is neccessary to ensure setup's parsing code doesn't re-use a previous non-empty value for the version under consideration.
2018-01-30Update version to 2018013020180130Jon Turney
2018-01-26Avoid exceptions following curr: selecting a non-existent versionJon Turney
2018-01-23Don't terminate with an exception after an invalid override.hintJon Turney
2018-01-23Add a replace-versions: key in override.hint to list versions which should ↵Jon Turney
always be replaced This is intended for (temporarily) dealing with anomalous versions e.g. those which have been removed (or relabelled as test), without a superseding higher version existing, and indicates to setup that the named versions(s), if installed, should be replaced with different version. Also warn if this key pointlessly lists versions which will be replaced by the current version anyhow.
2018-01-22Run flake8, as wellJon Turney
2018-01-22Run pep8 on setup.py as wellJon Turney
2018-01-22Fix running pep8 on test/Jon Turney
2018-01-22Remove some unused importsJon Turney
2018-01-22Rename depends: to depends2:Jon Turney
depends: lines are recognized, but not handled correctly by setup versions 2.880 to 2.884 (they are ignored by setup version 2.879 and prior).
2018-01-18Generate depends: from requires:, if not presentJon Turney
... and vice versa Also, fix check that depends: packages exist to handle empty depends: (and similarly for obsoletes:)
2018-01-12Update past_mistakesYaakov Selkowitz
2017-12-20Add a disable-check: key in pvr.hint to disable certain checksJon Turney
Add a disable-check: key in pvr.hint to disable certain checks, to gradually supersede the static list in past_mistakes (which needs calm restarting to re-read) disable-check: contains a list of tokens, which indicates which checks are to be downgraded from errors to warnings in pvr.hint, disable-check: can contain: empty-obsolete check that if a binary package is empty and has no source package, it is marked obsolete unique-version check that this binary package has the same version as all other packages made from the same source package These disable-check:s end up being applied to new versions when something is split out from an existing source. That kind of suggests something is not quite right about the test we are doing here. But we are limited because we don't have a source-centric view of things due to source packages not really being a thing yet...
2017-12-20Update past_mistakesYaakov Selkowitz
2017-12-06Treat 'not on the package list' as an errorJon Turney
Update tests appropriately
2017-12-04Update version to 2017120420171204Jon Turney
2017-11-30Update TODOJon Turney
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-22Repository paths generated by mkgitolite should start with git/Jon Turney
2017-11-22Consider external-source: in 'empty but not obsolete' checkJon Turney
2017-11-22Don't warn about directories which just contain .sum filesJon Turney
2017-11-22Fix logging of bad sha512.sum line not to include newlineJon Turney
2017-11-22Suppress empty depends:, obsoletes:, build-depends:Jon Turney
2017-11-22Various fixes and improvements to dedup toolJon Turney
2017-11-22Add a tool for finding duplicatesJon Turney
2017-11-22Add a tool for migrating setup.hint to pvr.hintJon Turney
2017-11-22Rationalize the way we run ad-hoc toolsJon Turney
2017-11-17Test with python 3.6 as well on TravisJon Turney