From: Richard Purdie Date: Sun, 21 Feb 2021 09:50:37 +0000 (+0000) Subject: reproduce: Fix exclusion list for rpm X-Git-Tag: yocto-3.3~383 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=2af535282833dddb58f24ec5b360230c47e6f6b1;p=openembedded-core.git reproduce: Fix exclusion list for rpm rpm uses "XXX-VERSION" compared to deb/ipk which use "XXX_VERSION" which breaks the go package exclusion. Work around with both go_ and go- for now. Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/selftest/cases/reproducible.py b/meta/lib/oeqa/selftest/cases/reproducible.py index 8849c95c49..e54230f853 100644 --- a/meta/lib/oeqa/selftest/cases/reproducible.py +++ b/meta/lib/oeqa/selftest/cases/reproducible.py @@ -38,6 +38,7 @@ exclude_packages = [ 'go-helloworld', 'go-runtime', 'go_', + 'go-', 'gst-devtools', 'gstreamer1.0-python', 'gtk-doc',