reindex: preserve 'explicit' flags

Look up in the old database whether the spec was explicit or not and
preserve it into the new database.

Fixes #1050.
This commit is contained in:
Ben Boeckel 2016-06-15 12:48:40 -04:00
parent c803f7ae98
commit 716f12dd58

View file

@ -309,7 +309,11 @@ def reindex(self, directory_layout):
for spec in directory_layout.all_specs():
# Create a spec for each known package and add it.
path = directory_layout.path_for_spec(spec)
self._add(spec, path, directory_layout)
old_info = old_data.get(spec.dag_hash())
explicit = False
if old_info is not None:
explicit = old_info.explicit
self._add(spec, path, directory_layout, explicit=explicit)
self._check_ref_counts()