From ceb870655ec5c5efdd694328d0c4b8c98be99ebe Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Mon, 12 Nov 2007 19:45:03 -0600 Subject: Remove REQUIREDBY checks from pactest Remove any checks dealing with requiredby from pactest (but not actually from the pactests themselves). Of course, we should probably find a new way to check requiredby values of packages since there is no guarantee our code is working perfectly. Signed-off-by: Dan McGee --- pactest/pmdb.py | 7 +------ pactest/pmpkg.py | 1 - pactest/pmrule.py | 3 --- 3 files changed, 1 insertion(+), 10 deletions(-) (limited to 'pactest') diff --git a/pactest/pmdb.py b/pactest/pmdb.py index ebde324f..f927b4b8 100755 --- a/pactest/pmdb.py +++ b/pactest/pmdb.py @@ -189,8 +189,6 @@ class pmdb: pkg.depends = _getsection(fd) elif line == "%OPTDEPENDS%": pkg.optdepends = _getsection(fd) - elif line == "%REQUIREDBY%": - pkg.requiredby = _getsection(fd) elif line == "%CONFLICTS%": pkg.conflicts = _getsection(fd) elif line == "%PROVIDES%": @@ -288,16 +286,13 @@ class pmdb: pkg.mtime["files"] = getmtime(filename) # depends - # for local db entries: depends, requiredby, conflicts, provides + # for local db entries: depends, conflicts, provides # for sync ones: depends, conflicts, provides data = [] if pkg.depends: data.append(_mksection("DEPENDS", pkg.depends)) if pkg.optdepends: data.append(_mksection("OPTDEPENDS", pkg.optdepends)) - if self.treename == "local": - if pkg.requiredby: - data.append(_mksection("REQUIREDBY", pkg.requiredby)) if pkg.conflicts: data.append(_mksection("CONFLICTS", pkg.conflicts)) if pkg.provides: diff --git a/pactest/pmpkg.py b/pactest/pmpkg.py index 410423da..7b8f81d0 100755 --- a/pactest/pmpkg.py +++ b/pactest/pmpkg.py @@ -54,7 +54,6 @@ class pmpkg: # depends self.depends = [] self.optdepends = [] - self.requiredby = [] # local only self.conflicts = [] self.provides = [] # files diff --git a/pactest/pmrule.py b/pactest/pmrule.py index c5682dc1..8b49f5cd 100755 --- a/pactest/pmrule.py +++ b/pactest/pmrule.py @@ -86,9 +86,6 @@ class pmrule: elif case == "OPTDEPENDS": if not value in newpkg.optdepends: success = 0 - elif case == "REQUIREDBY": - if not value in newpkg.requiredby: - success = 0 elif case == "REASON": if newpkg.reason != int(value): success = 0 -- cgit v1.2.3-24-g4f1b