From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2201) id E6EAA3858D38; Thu, 18 Jan 2024 22:33:18 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E6EAA3858D38 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1705617198; bh=F3SZUxTQCBl+8v+lI4lgNM43T3YNApLrjZmGPhkP2aM=; h=To:Subject:Date:From:From; b=UReU9te70MNK+bYH7kxCKWBNF/vDs7zALdri4dUB6x1Rjs6A5Xmgmcn6mHH2KYiD/ slIBY4wOsANOV40B0PLeeu+QtXL4ILe2/fVyp8B/jHEo/v3cYIQ4DKhN6B73N8yN+t Jii7bko+kLGUWMDeK20OrQxxNE1aBa+Nhzc+F4DU= To: cygwin-apps-cvs@sourceware.org Subject: [calm - Cygwin server-side packaging maintenance script] branch master, updated. 20230209-63-g5559d1a X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 78c36ba5b4601ff29c05c8aff3f09e67d280e020 X-Git-Newrev: 5559d1aef430dcf3612c4ad5150f0bc027c6d096 Message-Id: <20240118223318.E6EAA3858D38@sourceware.org> Date: Thu, 18 Jan 2024 22:33:18 +0000 (GMT) From: Jon Turney List-Id: https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/calm.git;h=5559d1aef430dcf3612c4ad5150f0bc027c6d096 commit 5559d1aef430dcf3612c4ad5150f0bc027c6d096 Author: Jon Turney Date: Thu Jan 18 20:25:41 2024 +0000 Rewrite dependencies on removed python packages 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. Diff: --- calm/past_mistakes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calm/past_mistakes.py b/calm/past_mistakes.py index bbad1bc..4b44f1d 100644 --- a/calm/past_mistakes.py +++ b/calm/past_mistakes.py @@ -172,6 +172,7 @@ nonexistent_provides = historical_provides + [ 'python2-devel', 'python27', 'python27-.*', + 'python-gtk2.0', # random build-depends 'python2-cython', 'python2-wheel', @@ -198,7 +199,6 @@ substitute_dependency = { 'python-gnome2': 'python27-gnome2', 'python-gnomevfs2': 'python27-gnomevfs2', 'python-gobject': 'python27-gobject', - 'python-gtk2.0': 'python27-gtk2.0', 'python-jinja2': 'python27-jinja2', 'python-keybinder': 'python27-keybinder', 'python-lxml': 'python27-lxml',