From b0b04bfe190dab3cce9467a5d83ec3ec04014846 Mon Sep 17 00:00:00 2001 From: Josef 'Jeff' Sipek Date: Tue, 3 Jul 2018 14:43:29 -0400 Subject: [PATCH] remove 'openindiana.org' and 'on-nightly' from set of allowed publishers to depend on --- tools/python/pkglint/userland.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/pkglint/userland.py b/tools/python/pkglint/userland.py index 1cd85432b..f87110684 100644 --- a/tools/python/pkglint/userland.py +++ b/tools/python/pkglint/userland.py @@ -459,7 +459,7 @@ class UserlandManifestChecker(base.ManifestChecker): interface=pkg.client.api.ImageInterface("/", pkg.client.api.CURRENT_API_VERSION, progtracker, lambda x: False, None,None) ret = interface.info([pkg_name],True,info_needed) if ret[pkg.client.api.ImageInterface.INFO_FOUND]: - allowed_pubs = engine.get_param("%s.allowed_pubs" % self.name).split(" ") + ["openindiana.org","on-nightly","unleashed"] + allowed_pubs = engine.get_param("%s.allowed_pubs" % self.name).split(" ") + ["unleashed"] for i in ret[pkg.client.api.ImageInterface.INFO_FOUND]: if i.publisher not in allowed_pubs: engine.error(_("package %(pkg)s depends on %(name)s, which comes from forbidden publisher %(publisher)s") % -- 2.11.4.GIT