about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authoremilylange <git@emilylange.de>2024-03-13 16:52:25 +0100
committeremilylange <git@emilylange.de>2024-03-13 16:52:25 +0100
commit6df42f6129c55e241b3eb45ed5966a74a70fd57c (patch)
tree5ea882a70e7428d1b84e9d3d89f780ae1d819c1e /pkgs
parent2b15413b9eb5ab3a73fbc23a862481cecc85c3c7 (diff)
downloadnixlib-6df42f6129c55e241b3eb45ed5966a74a70fd57c.tar
nixlib-6df42f6129c55e241b3eb45ed5966a74a70fd57c.tar.gz
nixlib-6df42f6129c55e241b3eb45ed5966a74a70fd57c.tar.bz2
nixlib-6df42f6129c55e241b3eb45ed5966a74a70fd57c.tar.lz
nixlib-6df42f6129c55e241b3eb45ed5966a74a70fd57c.tar.xz
nixlib-6df42f6129c55e241b3eb45ed5966a74a70fd57c.tar.zst
nixlib-6df42f6129c55e241b3eb45ed5966a74a70fd57c.zip
chromium: fix `get-commit-message.py` by pointing it a newer atom feed
We previously used
<https://chromereleases.googleblog.com/feeds/posts/default>, which is
still listed alongside the new one (in
<https://chromereleases.googleblog.com>'s html) but does not seem to
receive updates since 2024-02-29.

No idea why.
Diffstat (limited to 'pkgs')
-rwxr-xr-xpkgs/applications/networking/browsers/chromium/get-commit-message.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/networking/browsers/chromium/get-commit-message.py b/pkgs/applications/networking/browsers/chromium/get-commit-message.py
index 45f4282582f5..437b82d3a777 100755
--- a/pkgs/applications/networking/browsers/chromium/get-commit-message.py
+++ b/pkgs/applications/networking/browsers/chromium/get-commit-message.py
@@ -13,7 +13,8 @@ from collections import OrderedDict
 import feedparser
 import requests
 
-feed = feedparser.parse('https://chromereleases.googleblog.com/feeds/posts/default')
+# Official rss/atom feed taken from <https://chromereleases.googleblog.com/>'s html source (<link type="application/atom+xml">)
+feed = feedparser.parse('https://www.blogger.com/feeds/8982037438137564684/posts/default')
 html_tags = re.compile(r'<[^>]+>')
 target_version = sys.argv[1] if len(sys.argv) == 2 else None