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>2022-06-19 15:11:44 +0300
committerJon Turney <jon.turney@dronecode.org.uk>2023-01-07 19:42:15 +0300
commitf4efac3d1d0e03bfc44a090dfad61d154fbb97d4 (patch)
treebfe975043b4b2d5e3b88eaa019611c7452d85aa7
parentaec1dcf7af8df98df4c7ded84fd3a7a7750f9efd (diff)
Finish data for old_style_obsolete_by heuristic
-rw-r--r--calm/past_mistakes.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/calm/past_mistakes.py b/calm/past_mistakes.py
index 5cd85a7..6c38e36 100644
--- a/calm/past_mistakes.py
+++ b/calm/past_mistakes.py
@@ -176,8 +176,9 @@ empty_source = {
# additional data for the heuristic for upgrading old-style obsoletion packages
old_style_obsolete_by = {
'at-spi2-atk': 'libatk-bridge2.0_0',
- 'qt-gstreamer': 'libQtGStreamer1_0_0',
+ 'idle3': 'idle39',
'lighttpd-mod_trigger_b4_dl': 'lighttpd',
+ 'qt-gstreamer': 'libQtGStreamer1_0_0',
# these are odd and only exist to record an optional dependency on the
# language runtime (dynamically loaded at runtime), which is also noted in
# build-requires:
@@ -187,5 +188,8 @@ old_style_obsolete_by = {
'vim-python3': 'vim',
'vim-ruby': 'vim',
# (An empty replacement means "don't apply this heuristic")
- 'libksba': '',
+ # these packages probably should be marked as self-destruct?
+ 'mate-utils': '',
+ 'texlive-collection-htmlxml': '',
+ 'w32api': '',
}