Changeset View
Changeset View
Standalone View
Standalone View
swh/lister/aur/__init__.py
- This file was added.
# Copyright (C) 2022 the Software Heritage developers | |||||
# License: GNU General Public License version 3, or any later version | |||||
# See top-level LICENSE file for more information | |||||
def register(): | |||||
from .lister import AurLister | |||||
return { | |||||
"lister": AurLister, | |||||
"task_modules": ["%s.tasks" % __name__], | |||||
} | |||||
vlorentz: I don't think that's accurate; we do archive split packages, but only their "pkgbase" because… | |||||
Done Inline ActionsI rephrase it, does it looks ok for you? franckbret: I rephrase it, does it looks ok for you? | |||||
Not Done Inline Actionswhy is "version" in both? vlorentz: why is `"version"` in both? | |||||
Done Inline ActionsBecause its the associative key for lines for both dict which is needed for the loader the get the corresponding informations. franckbret: Because its the associative key for lines for both dict which is needed for the loader the get… | |||||
Not Done Inline Actionsnevermind, it's fine vlorentz: nevermind, it's fine |
I don't think that's accurate; we do archive split packages, but only their "pkgbase" because that is the only one that actually has source code.