mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
19 lines
487 B
Python
Executable File
19 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)
|