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
2024-01-19Ignore new flake B038HEADmasterJon Turney
Ignore new flake B038: "editing a loop's mutable iterable often leads to unexpected results/bugs". The instances this reports are all false positives.
2024-01-19Rewrite dependencies on removed python packagesJon Turney
Using the now removed, obsoleted package name causes the solver to want to uninstall anything which depends on these, which isn't helpful right now. Theoretically, the information to generate these exists in our "retired old-style obsoleting packages" data, but do it manually for speed right now.
2024-01-19Anchor nonexistent_provides at the endJon Turney
Anchor the nonexistent_provides regex at the end, so it matches the whole provide name, avoiding unpleasant surprises.
2024-01-10Expunge all python2 modulesJon Turney
2024-01-06Ensure announce mail ends with a blank lineJon Turney
2024-01-05Improve rendering of minimal Markdown for description in package summaryJon Turney
Retain the heuristic which makes URLs in the description, and improve it's handling of some cases.
2024-01-04Add rdepends and build_rdepends to package summaryJon Turney
Use the HTML <details> widget to avoid showing large lists by default.
2024-01-04Factor out writing the details in the package summary pageJon Turney
Contain the details in a table of class 'pkgdetails' for more layout control.
2024-01-04Isolate tests from a local repodirJon Turney
This fixes the tests if a local /git/cygwin-packages happens to exist, and adds some test coverage of code which examines repodir.
2024-01-03Avoid an exception if package.merge() fails and returns NoneJon Turney
2023-12-29Add package recipe URL to JSON dumpJon Turney
2023-12-29Add a tool for identifiying packages without packaging reposJon Turney
2023-12-22Make report tables sortableJon Turney
2023-12-15Facilitate more python2 removalJon Turney
2023-12-13Also sort by package "importance" in unmaintained packages reportJon Turney
2023-11-22Store first msgid for announce of a srcpackageJon Turney
Store the first msgid allocated for a srcpackage announce, so we can set in-reply-to and thus allow threading of subsequent announces for that package.
2023-11-22Omit empty provides_rebuild reports from list of reportJon Turney
2023-11-12Add token 'mock' to send announce only to maintainerJon Turney
Add token 'mock' to send announce only to maintainer, not the announce list.
2023-10-20Use source package of actual version, not best version in vaultingJon Turney
Use the source package of the actual version being considered, not the best version, when determining if a package is owned by a source package to be vaulted. (Source package can change between versions, if sources are split or merged)
2023-10-20Downgrade a piece of debug loggingJon Turney
2023-10-15Expire python2 modulesJon Turney
For the first time, we are expiring obsolete packages just because they are obsolete, so it is time for the previous commit, to ensure we retain any obsolete: hints they might have caused to be generated.
2023-10-15Persist missing_obsoleteJon Turney
Persist the missing obsolete: data generated from old-style obsoletion packages, so it is remembered, even if after the obsoleted package is removed.
2023-10-15Simplify 'conditionally retained' package markingJon Turney
Move the logic into a single function, rather than selectively defining a callback function depending on if the package meets some criteria.
2023-09-13Add 'fonts' categoryJon Turney
2023-09-04Tweak From: in an announce emailJon Turney
2023-08-20Also allow announce message to be determined by cygportJon Turney
2023-08-15Try to add relevant changelog excerpt to announce messageJon Turney
Look for a relevant section of changelog in README, between '----' delimiters, starting with one also containing the version, to add to the generated announce message.
2023-08-15Deploys can now automatically generate an announce emailJon Turney
This is controlled by the 'announce' token.
2023-08-15Factor out email sending to utilsJon Turney
Smooth out some issues when --email isn't specified, making args.email an empty list rather than None, which can't be iterated. When the To: address is 'debug', dump email to log, rather than stdout.
2023-08-15Explicitly use count keyword argument to re.sub()Jon Turney
This avoids flake B034: sub should pass `count` and `flags` as keyword arguments to avoid confusion due to unintuitive argument positions.
2023-07-08Prepare for python2 removalJon Turney
2023-06-11Remember package group information so we can show it on summary pageJon Turney
2023-06-11Generate an includeable HTML fragment with the list of reportsJon Turney
2023-06-10Add gtksourceview to slotted packages in repology dataJon Turney
2023-06-10Reduce scope of scallwag_db transaction lockJon Turney
If multiple deploys are ready simultaneously, don't hold the lock over all of them.
2023-05-23Add a simple way of grouping packages for maintainershipJon Turney
Define a team with a line starting with '@', e.g.: @team Maintainer1/Maintainer2 Then @team can be referred in a packages maintainer list, as shorthand for that list of maintainers. Also ignore lines starting with '#' in maintainer list as comments
2023-05-05Avoid spurious license normalization warnings over whitespaceJon Turney
2023-05-05Fix page title for rebuild reportsJon Turney
2023-05-03Don't list obsoleted packages in rebuild reportJon Turney
2023-05-02Use regex matching for version provides:Jon Turney
This makes out-of-order uploading of users and providers of future versions of these smoother.
2023-05-02Add a ruby rebuilds reportJon Turney
Generalize the perl rebuild report logic to work for any version provide:
2023-04-28Add a tool for fixing requires by linkageJon Turney
2023-04-28Enhance fix-requires-by-path to match paths against a regexJon Turney
2023-04-28Add some historic ruby provides, prior to expiring themJon Turney
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-07Drop travis build status from READMEJon Turney
2023-04-07Check that build-requires: lists valid package names, as wellJon Turney
Fix test data to satisfy that.
2023-04-06Add obsoletes_by to package summary pageJon Turney
It would be nice to also show rdepends and rbuild_depends, but those could be huge lists.