* [gentoo-portage-dev] [PATCH] repoman: fix atom.blocker checks.
@ 2014-08-04 9:02 Michał Górny
2014-08-04 21:51 ` Michał Górny
2014-08-11 21:05 ` Michał Górny
0 siblings, 2 replies; 4+ messages in thread
From: Michał Górny @ 2014-08-04 9:02 UTC (permalink / raw
To: gentoo-portage-dev; +Cc: Michał Górny
The original checks assume that no-blocker is denoted as 'None'.
However, currently atom.blocker returns just 'False'.
---
bin/repoman | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/bin/repoman b/bin/repoman
index 9c5d720..71fc7f0 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -2042,16 +2042,16 @@ for x in effective_scanlist:
if atom == "||":
continue
+ is_blocker = atom.blocker
+
# Skip dependency.unknown for blockers, so that we
# don't encourage people to remove necessary blockers,
# as discussed in bug #382407.
- if atom.blocker is None and \
+ if not is_blocker and \
not portdb.xmatch("match-all", atom) and \
not atom.cp.startswith("virtual/"):
unknown_pkgs.add((mytype, atom.unevaluated_atom))
- is_blocker = atom.blocker
-
if catdir != "virtual":
if not is_blocker and \
atom.cp in suspect_virtual:
--
2.0.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [gentoo-portage-dev] [PATCH] repoman: fix atom.blocker checks.
2014-08-04 9:02 [gentoo-portage-dev] [PATCH] repoman: fix atom.blocker checks Michał Górny
@ 2014-08-04 21:51 ` Michał Górny
2014-08-06 21:07 ` Brian Dolbec
2014-08-11 21:05 ` Michał Górny
1 sibling, 1 reply; 4+ messages in thread
From: Michał Górny @ 2014-08-04 21:51 UTC (permalink / raw
To: gentoo-portage-dev; +Cc: multilib
[-- Attachment #1: Type: text/plain, Size: 3196 bytes --]
Dnia 2014-08-04, o godz. 11:02:27
Michał Górny <mgorny@gentoo.org> napisał(a):
> The original checks assume that no-blocker is denoted as 'None'.
> However, currently atom.blocker returns just 'False'.
So, applying this patch restores the 'dependency.unknown' check that
wasn't working for some time. As a result, I think it slows down
repoman near GNOME & KDE categories (though no real measurements),
and gives 4779 new warnings.
Some of those warnings concern only || () dependencies, e.g.:
x11-wm/awesome/awesome-3.5.5.ebuild: DEPEND:
<x11-libs/libX11-1.3.99.901[xcb]
which applies to:
|| ( <x11-libs/libX11-1.3.99.901[xcb] >=x11-libs/libX11-1.3.99.901 )
in the ebuild.
However, some look like false positives and need further investigation:
app-emulation/emul-linux-x86-baselibs/emul-linux-x86-baselibs-20140406-r4.ebuild: RDEPEND: >=app-arch/bzip2-1.0.6-r4[abi_x86_32(-)], >=app-arch/xz-utils-5.0.5-r1[abi_x86_32(-)], >=app-text/libpaper-1.1.24-r2[abi_x86_32(-)], >=dev-db/sqlite-3.8.3:3[abi_x86_32(-)], >=dev-libs/dbus-glib-0.100.2-r1[abi_x86_32(-)], >=dev-libs/elfutils-0.155-r1[abi_x86_32(-)], >=dev-libs/expat-2.1.0-r3[abi_x86_32(-)], >=dev-libs/glib-2.34.3:2[abi_x86_32(-)], >=dev-libs/gmp-5.1.3-r1[abi_x86_32(-)], >=dev-libs/json-c-0.11-r1[abi_x86_32(-)], >=dev-libs/libelf-0.8.13-r2[abi_x86_32(-)], >=dev-libs/libgcrypt-1.5.3-r100:11[abi_x86_32(-)], >=dev-libs/libgcrypt-1.6.1-r1:0[abi_x86_32(-)], >=dev-libs/libgpg-error-1.12-r1[abi_x86_32(-)], >=dev-libs/libpcre-8.33-r1[abi_x86_32(-)], >=dev-libs/libtasn1-3.4-r1[abi_x86_32(-)], >=dev-libs/libxml2-2.9.1-r4[abi_x86_32(-)], >=dev-libs/libxslt-1.1.28-r2[abi_x86_32(-)], >=dev-libs/lzo-2.06-r1[abi_x86_32(-)], >=dev-libs/nettle-2.7.1-r1[abi_x86_32(-)], >=dev-libs/openssl-1.0.1h-r2[abi_x86_32(-)], >=dev-libs/udis86-1.7-r2[abi_x86_32(-)], >=media-libs/giflib-4.2.3-r1[abi_x86_32(-)], >=media-libs/lcms-2.5-r1:2[abi_x86_32(-)], >=media-libs/libpng-1.2.51:1.2[abi_x86_32(-)], >=media-libs/libpng-1.6.10:0[abi_x86_32(-)], >=media-libs/tiff-3.9.7-r1:3[abi_x86_32(-)], >=media-libs/tiff-4.0.3-r6:0[abi_x86_32(-)], >=sys-apps/acl-2.2.52-r1[abi_x86_32(-)], >=sys-apps/attr-2.4.47-r1[abi_x86_32(-)], >=sys-apps/dbus-1.6.18-r1[abi_x86_32(-)], >=sys-apps/file-5.18-r1[abi_x86_32(-)], >=sys-apps/tcp-wrappers-7.6.22-r1[abi_x86_32(-)], >=sys-apps/util-linux-2.24.1-r3[abi_x86_32(-)], >=sys-devel/gettext-0.18.3.2[abi_x86_32(-)], >=sys-devel/libtool-2.4.2-r1[abi_x86_32(-)], >=sys-devel/llvm-3.3-r3[abi_x86_32(-)], >=sys-libs/e2fsprogs-libs-1.42.9[abi_x86_32(-)], >=sys-libs/gdbm-1.10-r1[abi_x86_32(-)], >=sys-libs/gpm-1.20.7-r2[abi_x86_32(-)], >=sys-libs/libavc1394-0.5.4-r1[abi_x86_32(-)], >=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)], >=sys-libs/ncurses-5.9-r3[abi_x86_32(-)], >=sys-libs/readline-6.2_p5-r1:0[abi_x86_32(-)], >=sys-libs/slang-2.2.4-r1[abi_x86_32(-)], >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)]
CC-ing multilib@ for consultation :).
I don't think this should prevent us from committing the patch,
however. If we believe the potential false positives are important
enough, we should just add explanatory 'if False' instead of keeping
a code bug ;).
--
Best regards,
Michał Górny
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 949 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [gentoo-portage-dev] [PATCH] repoman: fix atom.blocker checks.
2014-08-04 21:51 ` Michał Górny
@ 2014-08-06 21:07 ` Brian Dolbec
0 siblings, 0 replies; 4+ messages in thread
From: Brian Dolbec @ 2014-08-06 21:07 UTC (permalink / raw
To: gentoo-portage-dev
[-- Attachment #1: Type: text/plain, Size: 4540 bytes --]
On Mon, 4 Aug 2014 23:51:00 +0200
Michał Górny <mgorny@gentoo.org> wrote:
> Dnia 2014-08-04, o godz. 11:02:27
> Michał Górny <mgorny@gentoo.org> napisał(a):
>
> > The original checks assume that no-blocker is denoted as 'None'.
> > However, currently atom.blocker returns just 'False'.
>
> So, applying this patch restores the 'dependency.unknown' check that
> wasn't working for some time. As a result, I think it slows down
> repoman near GNOME & KDE categories (though no real measurements),
> and gives 4779 new warnings.
>
> Some of those warnings concern only || () dependencies, e.g.:
>
> x11-wm/awesome/awesome-3.5.5.ebuild: DEPEND:
> <x11-libs/libX11-1.3.99.901[xcb]
>
> which applies to:
>
> || ( <x11-libs/libX11-1.3.99.901[xcb] >=x11-libs/libX11-1.3.99.901 )
>
> in the ebuild.
>
> However, some look like false positives and need further
> investigation:
>
> app-emulation/emul-linux-x86-baselibs/emul-linux-x86-baselibs-20140406-r4.ebuild:
> RDEPEND: >=app-arch/bzip2-1.0.6-r4[abi_x86_32(-)],
> >=app-arch/xz-utils-5.0.5-r1[abi_x86_32(-)],
> >>=app-text/libpaper-1.1.24-r2[abi_x86_32(-)],
> >>>=dev-db/sqlite-3.8.3:3[abi_x86_32(-)],
> >>>>=dev-libs/dbus-glib-0.100.2-r1[abi_x86_32(-)],
> >>>>>=dev-libs/elfutils-0.155-r1[abi_x86_32(-)],
> >>>>>>=dev-libs/expat-2.1.0-r3[abi_x86_32(-)],
> >>>>>>>=dev-libs/glib-2.34.3:2[abi_x86_32(-)],
> >>>>>>>>=dev-libs/gmp-5.1.3-r1[abi_x86_32(-)],
> >>>>>>>>>=dev-libs/json-c-0.11-r1[abi_x86_32(-)],
> >>>>>>>>>>=dev-libs/libelf-0.8.13-r2[abi_x86_32(-)],
> >>>>>>>>>>>=dev-libs/libgcrypt-1.5.3-r100:11[abi_x86_32(-)],
> >>>>>>>>>>>>=dev-libs/libgcrypt-1.6.1-r1:0[abi_x86_32(-)],
> >>>>>>>>>>>>>=dev-libs/libgpg-error-1.12-r1[abi_x86_32(-)],
> >>>>>>>>>>>>>>=dev-libs/libpcre-8.33-r1[abi_x86_32(-)],
> >>>>>>>>>>>>>>>=dev-libs/libtasn1-3.4-r1[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>=dev-libs/libxml2-2.9.1-r4[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>=dev-libs/libxslt-1.1.28-r2[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>=dev-libs/lzo-2.06-r1[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>=dev-libs/nettle-2.7.1-r1[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>=dev-libs/openssl-1.0.1h-r2[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>=dev-libs/udis86-1.7-r2[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>=media-libs/giflib-4.2.3-r1[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>=media-libs/lcms-2.5-r1:2[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>=media-libs/libpng-1.2.51:1.2[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>=media-libs/libpng-1.6.10:0[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>>=media-libs/tiff-3.9.7-r1:3[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>>>=media-libs/tiff-4.0.3-r6:0[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>=sys-apps/acl-2.2.52-r1[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>=sys-apps/attr-2.4.47-r1[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=sys-apps/dbus-1.6.18-r1[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=sys-apps/file-5.18-r1[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=sys-apps/tcp-wrappers-7.6.22-r1[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=sys-apps/util-linux-2.24.1-r3[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=sys-devel/gettext-0.18.3.2[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=sys-devel/libtool-2.4.2-r1[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=sys-devel/llvm-3.3-r3[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=sys-libs/e2fsprogs-libs-1.42.9[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=sys-libs/gdbm-1.10-r1[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=sys-libs/gpm-1.20.7-r2[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=sys-libs/libavc1394-0.5.4-r1[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=sys-libs/ncurses-5.9-r3[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=sys-libs/readline-6.2_p5-r1:0[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=sys-libs/slang-2.2.4-r1[abi_x86_32(-)],
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)]
>
> CC-ing multilib@ for consultation :).
>
> I don't think this should prevent us from committing the patch,
> however. If we believe the potential false positives are important
> enough, we should just add explanatory 'if False' instead of keeping
> a code bug ;).
>
Since, TomWij isn't around atm.
ack to commit this patch.
--
Brian Dolbec <dolsen>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 620 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [gentoo-portage-dev] [PATCH] repoman: fix atom.blocker checks.
2014-08-04 9:02 [gentoo-portage-dev] [PATCH] repoman: fix atom.blocker checks Michał Górny
2014-08-04 21:51 ` Michał Górny
@ 2014-08-11 21:05 ` Michał Górny
1 sibling, 0 replies; 4+ messages in thread
From: Michał Górny @ 2014-08-11 21:05 UTC (permalink / raw
To: gentoo-portage-dev
[-- Attachment #1: Type: text/plain, Size: 322 bytes --]
Dnia 2014-08-04, o godz. 11:02:27
Michał Górny <mgorny@gentoo.org> napisał(a):
> The original checks assume that no-blocker is denoted as 'None'.
> However, currently atom.blocker returns just 'False'.
This one got into git a while ago, and it'll go live in the next
release.
--
Best regards,
Michał Górny
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 949 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-08-11 21:07 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-04 9:02 [gentoo-portage-dev] [PATCH] repoman: fix atom.blocker checks Michał Górny
2014-08-04 21:51 ` Michał Górny
2014-08-06 21:07 ` Brian Dolbec
2014-08-11 21:05 ` Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox