summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--parabola_repolint/repocache.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/parabola_repolint/repocache.py b/parabola_repolint/repocache.py
index 784c586..fed00e4 100644
--- a/parabola_repolint/repocache.py
+++ b/parabola_repolint/repocache.py
@@ -323,6 +323,10 @@ class PkgEntry():
with open(os.path.join(path, 'desc'), 'r') as infile:
data = infile.read()
+ if os.path.exists(os.path.join(path, 'depends')):
+ with open(os.path.join(path, 'depends'), 'r') as infile:
+ data += "\n" + infile.read()
+
self._data = {}
cur = None
for line in data.splitlines():