public inbox for cygwin-apps-cvs@sourceware.org
help / color / mirror / Atom feed
* [calm - Cygwin server-side packaging maintenance script] branch master, updated. 20221205-20-g99e4a07
@ 2023-01-12 16:35 Jon Turney
  0 siblings, 0 replies; only message in thread
From: Jon Turney @ 2023-01-12 16:35 UTC (permalink / raw)
  To: cygwin-apps-cvs




https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/calm.git;h=99e4a07a5b8747bf7abf45367d9a3ea0c9aed97e

commit 99e4a07a5b8747bf7abf45367d9a3ea0c9aed97e
Author: Jon Turney <jon.turney@dronecode.org.uk>
Date:   Thu Jan 12 15:59:27 2023 +0000

    Expire packages which require non-existent python26

https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/calm.git;h=94388bbb8bd9f5c7847c22868401aff1c3a464bc

commit 94388bbb8bd9f5c7847c22868401aff1c3a464bc
Author: Jon Turney <jon.turney@dronecode.org.uk>
Date:   Wed Jan 11 15:20:24 2023 +0000

    Add expiry based on obsolete, removed provides
    
    This can remove packages which aren't installable any more, as they rely
    on a provide which has had whatever provided it expired.


Diff:
---
 calm/package.py       | 33 ++++++++++++++++++++++++++++-----
 calm/past_mistakes.py |  6 +++++-
 2 files changed, 33 insertions(+), 6 deletions(-)

diff --git a/calm/package.py b/calm/package.py
index 19e85d1..d450ea9 100755
--- a/calm/package.py
+++ b/calm/package.py
@@ -714,7 +714,7 @@ def validate_packages(args, packages, valid_requires_extra=None, missing_obsolet
 
                         # all packages listed in a hint must exist (unless the
                         # disable-check option says that's ok)
-                        if (r not in valid_requires) and (r not in past_mistakes.nonexistent_provides):
+                        if (r not in valid_requires) and (r not in past_mistakes.nonexistent_provides + past_mistakes.expired_provides):
                             if okmissing not in getattr(args, 'disable_check', []):
                                 logging.error("package '%s' version '%s' %s: '%s', but nothing satisfies that" % (p, v, c, r))
                                 error = True
@@ -1541,6 +1541,8 @@ def stale_packages(packages):
         if po.kind != Kind.binary:
             continue
 
+        mark = Freshness.fresh
+
         # 'conditional' package retention means the package is weakly retained.
         # This allows total expiry when a source package no longer provides
         # anything useful:
@@ -1548,14 +1550,14 @@ def stale_packages(packages):
         # - if all we have is a source package and a debuginfo package, then we
         # shouldn't retain anything.
         #
+        if pn.endswith('-debuginfo'):
+            mark = Freshness.conditional
+
         # - shared library packages which don't come from the current version of
         # source (i.e. is superseded or removed), have no packages from a
         # different source package which depend on them, and are over a certain
         # age
         #
-        mark = Freshness.fresh
-        if pn.endswith('-debuginfo'):
-            mark = Freshness.conditional
         bv = po.best_version
         es = po.version_hints[bv].get('external-source', None)
         if (re.match(common_constants.SOVERSION_PACKAGE_RE, pn) and
@@ -1571,7 +1573,28 @@ def stale_packages(packages):
 
                 mark = dep_so_age_mark
 
-        elif 'noretain' in po.override_hints:
+        # - if package depends on anything in expired_provides
+        #
+        all_reqs = set.union(*(set(po.version_hints[v].get('depends', '').split(', ')) for v in po.versions()))
+        if all_reqs.intersection(set(past_mistakes.expired_provides)):
+            def expired_provides_mark(v):
+                requires = po.version_hints[v].get('depends', '').split(', ')
+                if any(ep in requires for ep in past_mistakes.expired_provides):
+                    # XXX: for the moment, don't allow this to expire the
+                    # current version, though!
+                    if v != po.best_version:
+                        logging.info("package '%s' version '%s' not retained as it requires a provide known to be expired" % (pn, v))
+                        return Freshness.conditional
+                    else:
+                        logging.info("package '%s' version '%s' requires a provide known to be expired, but not expired as it's the current version" % (pn, v))
+
+                return Freshness.fresh
+
+            mark = expired_provides_mark
+
+        # - explicitly marked as 'noretain'
+        #
+        if 'noretain' in po.override_hints:
             def noretain_hint_mark(v):
                 noretain_versions = po.override_hints.get('noretain', '').split()
                 if (v in noretain_versions) or ('all' in noretain_versions):
diff --git a/calm/past_mistakes.py b/calm/past_mistakes.py
index 0a56340..6678d86 100644
--- a/calm/past_mistakes.py
+++ b/calm/past_mistakes.py
@@ -156,13 +156,17 @@ missing_obsolete = {
 nonexistent_provides = [
     '_windows',
     'perl5_026',
-    'python26',
     'rdiff-debuginfo',
     'rxvt-unicode-X-debuginfo',
     'xfce4-mixer-debuginfo',
     'python3-dbus-debuginfo',
 ]
 
+# provides: which don't exist and packages which require them should be expired
+expired_provides = [
+    'python26',
+]
+
 # empty source packages
 #
 # (these usually have a corresponding hand-built empty install package, which


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-01-12 16:35 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-12 16:35 [calm - Cygwin server-side packaging maintenance script] branch master, updated. 20221205-20-g99e4a07 Jon Turney

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).