Skip to content

Commit

Permalink
add qt6-* tracker
Browse files Browse the repository at this point in the history
  • Loading branch information
UTsweetyfish committed Feb 8, 2024
1 parent 3d447c1 commit 703a188
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,10 @@
'packages': {k: v for k, v in raw_data.items() if k in ESSENTIAL},
'distros': ['beige', 'sid'],
}))

# qt6-*
with open('output/index-qt6.html', 'w', encoding='utf-8') as f:
f.write(tmpl.render({
'packages': {k: v for k, v in raw_data.items() if k.startswith('qt6-')},
'distros': ['beige', 'sid'],
}))

0 comments on commit 703a188

Please sign in to comment.