public inbox for gentoo-portage-dev@lists.gentoo.org
 help / color / mirror / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download: 
* Re: [gentoo-portage-dev] [PATCH gentoolkit 2/2] eclean: Add option to delete binpkgs with changed deps
  @ 2020-03-02 21:11 99%     ` Matt Turner
  0 siblings, 0 replies; 1+ results
From: Matt Turner @ 2020-03-02 21:11 UTC (permalink / raw
  To: Zac Medico; +Cc: gentoo-portage-dev

On Sun, Mar 1, 2020 at 10:39 PM Zac Medico <zmedico@gentoo.org> wrote:
>
> On 2/20/20 9:29 PM, Matt Turner wrote:
> > @@ -564,7 +577,22 @@ def findPackages(
> >
> >          # Exclude if binpkg exists in the porttree and not --deep
> >          if not destructive and port_dbapi.cpv_exists(cpv):
> > -            continue
> > +            if not options['changed-deps']:
> > +                continue
> > +
> > +            uselist = bin_dbapi.aux_get(cpv, ['USE'])[0].split()
> > +            all_equal = True
> > +
> > +            for k in ('RDEPEND', 'PDEPEND'):
> > +                binpkg_deps = bin_dbapi.aux_get(cpv, [k])
> > +                ebuild_deps = port_dbapi.aux_get(cpv, [k])
> > +
> > +                if not _deps_equal(binpkg_deps, ebuild_deps, cpv.eapi, uselist):
> > +                    all_equal = False
> > +                    break
> > +
> > +            if all_equal:
> > +                continue
>
> If all_equal is True, then none of the other filters have an opportunity
> to add this package to the dead_binpkgs set. That's not good is it?

There are four cases we skip including packages: 1) exclude list, 2)
time limit, 3) non-destructive and package still exists (and now
optionally runtime deps haven't changed), 4) destructive and package
is installed. Cases (3) and (4) are non-overlapping.

If none of those cases are true, then we add the package to the
dead_binpkgs set. The logic looks right to me.

Maybe I'm not understanding.

With your other suggestion in place, the code looks like this, which
is hopefully clearer.

    # Exclude if binpkg exists in the porttree and not --deep
    if not destructive and port_dbapi.cpv_exists(cpv):
        if not options['changed-deps']:
            continue

        keys = ('RDEPEND', 'PDEPEND')
        binpkg_deps = bin_dbapi.aux_get(cpv, keys)
        ebuild_deps = port_dbapi.aux_get(cpv, keys)
        uselist = bin_dbapi.aux_get(cpv, ['USE'])[0].split()

        if _deps_equal(binpkg_deps, ebuild_deps, cpv.eapi, uselist):
            continue

Unfortunately I don't have any packages with changed-deps at the
moment for testing :(


^ permalink raw reply	[relevance 99%]

Results 1-1 of 1 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2020-02-21  5:29     [gentoo-portage-dev] [PATCH gentoolkit 1/2] eclean: Rewrite findPackages() Matt Turner
2020-02-21  5:29     ` [gentoo-portage-dev] [PATCH gentoolkit 2/2] eclean: Add option to delete binpkgs with changed deps Matt Turner
2020-03-02  6:39       ` Zac Medico
2020-03-02 21:11 99%     ` Matt Turner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox