fix: restore URL field in mkpkglists meta archives

Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2022-02-07 01:14:17 -08:00
parent 2dfa41c9a5
commit 33cddb36ff
No known key found for this signature in database
GPG key ID: F7E46DED420788F3

View file

@ -164,6 +164,7 @@ def as_dict(package: Package) -> Dict[str, Any]:
"PackageBase": package.PackageBase,
"Version": package.Version,
"Description": package.Description,
"URL": package.URL,
"NumVotes": package.NumVotes,
"Popularity": float(package.Popularity),
"OutOfDate": package.OutOfDate,
@ -191,6 +192,7 @@ def _main():
PackageBase.Name.label("PackageBase"),
Package.Version,
Package.Description,
Package.URL,
PackageBase.NumVotes,
PackageBase.Popularity,
PackageBase.OutOfDateTS.label("OutOfDate"),