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
2019-05-30Update version to 2019053020190530Jon Turney
2019-05-29Update hint parsing testsJon Turney
Use a separate expected file for each pvr.hint Add testing of override.hint parsing
2019-05-29Remove reading setup.hint filesJon Turney
2019-05-27Write package metadata summaryJon Turney
Write a summary of package metadata in json format.
2019-05-27Show test status for versions in package summary pageJon Turney
2019-05-27Redirect directory index of package file lists to package summary pageJon Turney
This needs to use RedirectMatch with an exact match, as we don't want to redirect other URLs which have this directory URL as a prefix. Also use 'ForceType' rather than 'AddType' for an incomplete list of extensions.
2019-05-27Tidy up packages.incJon Turney
2019-05-27Don't list previous maintainer in summary page if orphanedJon Turney
2019-05-27Add navigation frame to package summary pageJon Turney
Add navigation frame to package summary page Set execute permission required for SSI
2019-05-27Generate a per-package summary HTML pageJon Turney
2019-05-24Make orphanmaint a parameter of Maintainers.readJon Turney
2019-05-24Tolerate an empty override.hintJon Turney
Unlike pvr.hint, it can be valid if it doesn't contain anything
2019-03-29Fix a bit of spammy IRC reportingJon Turney
2019-03-14Fix some over-indentation reported by latest pycodestyleJon Turney
2019-03-14Be a bit more verbose to IRC about starting and stopping requested workJon Turney
2019-03-14Fix some issues reported by lgtm.com analysisJon Turney
2019-03-14Don't warn about non-maintainer upload attempts on every runJon Turney
Don't warn about non-maintainer package upload attempts on every run, only when something is ready to move
2018-10-21Warn about non-archive uploadsJon Turney
Warn if a compressed empty file is uploaded in place of a compressed archive Also error if an impossibly small compressed archive is uploaded
2018-10-21Report 0-byte archivesJon Turney
setup doesn't consider these valid, so report if they appear
2018-10-20Update version to 2018102020181020Jon Turney
2018-10-20Add to TODOJon Turney
2018-08-30Fix some silent errors when parsing hints failsJon Turney
2018-07-07Emit setup-minimum-version:Jon Turney
When a setup version is specified, also emit a setup-minimum-version: header. This is mainly just to document the minimum version supported, as this header is only interpreted by very recent setup versions... 2.844 is chosen as an initial minimum version, as prior to that only x86 installs were supported, and setup.ini was located at a different URL path.
2018-06-13Write 'conflicts:' from hints into setup.iniJon Turney
2018-06-06Write 'provides:' from hints into setup.iniJon Turney
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