depot/pkgs/by-name/lu/lunatask/update.py
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

18 lines
487 B
Python
Executable file

#!/usr/bin/env nix-shell
#!nix-shell -i python --packages python3 python3Packages.feedparser common-updater-scripts
"""
Parses the latest version from atom feed and runs update-source-version
"""
import subprocess
import feedparser
URL = "https://lunatask.app/releases/atom.xml"
feed = feedparser.parse(URL)
latest_entry = feed.entries[0]
latest_version = latest_entry.title.split()[-1].lstrip("v")
subprocess.run(["update-source-version", "lunatask", latest_version], check=True)