From 826a2e7f8c7786acb3b5d2217f19814f314289ab Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Wed, 5 Jan 2022 16:21:31 -0500 Subject: add initial lw d/ contents --- librewolf/debian/l10n_revs.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 librewolf/debian/l10n_revs.py (limited to 'librewolf/debian/l10n_revs.py') diff --git a/librewolf/debian/l10n_revs.py b/librewolf/debian/l10n_revs.py new file mode 100644 index 0000000..19fc30d --- /dev/null +++ b/librewolf/debian/l10n_revs.py @@ -0,0 +1,8 @@ +import json +import sys + + +data = json.load(sys.stdin) +for k, v in sorted(data.items()): + if 'linux64' in v['platforms']: + print('{}:{}'.format(k, v['revision'])) -- cgit