From e144e264f3039b353594283f65a7ee6d81ac72ea Mon Sep 17 00:00:00 2001 From: William Douglas Date: Tue, 22 May 2018 20:59:48 +0000 Subject: [PATCH] Drop legacypython requires always As part of moving away from python2, no longer keep legacypython subpackages as part of the autorequires of the base package. --- autospec/specfiles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autospec/specfiles.py b/autospec/specfiles.py index cdcefcb..75b6126 100644 --- a/autospec/specfiles.py +++ b/autospec/specfiles.py @@ -190,7 +190,7 @@ class Specfile(object): if pkg == "autostart" and self.no_autostart: continue if pkg in ["ignore", "main", "dev", "active-units", "extras", - "lib32", "dev32"]: + "lib32", "dev32", "legacypython"]: continue self._write("Requires: {}-{}\n".format(self.name, pkg))