Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/pr/276'
Browse files Browse the repository at this point in the history
  • Loading branch information
lilydjwg committed Aug 8, 2024
2 parents d4e27c2 + e4cff0b commit 3abe5ad
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
5 changes: 5 additions & 0 deletions docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -757,6 +757,11 @@ This enables you to track updates from `Anitya <https://release-monitoring.org/>
anitya
``distro/package``, where ``distro`` can be a lot of things like "fedora", "arch linux", "gentoo", etc. ``package`` is the package name of the chosen distribution.

anitya_id
The identifier of the project/package in anitya.

Note that either anitya or anitya_id needs to be specified, anitya_id is preferred when both specified.

Check Android SDK
~~~~~~~~~~~~~~~~~
::
Expand Down
4 changes: 3 additions & 1 deletion nvchecker_source/anitya.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
URL = 'https://release-monitoring.org/api/project/{pkg}'

async def get_version(name, conf, *, cache, **kwargs):
pkg = conf.get('anitya')
pkg = conf.get('anitya_id')
if pkg is None:
pkg = conf.get('anitya')
url = URL.format(pkg = pkg)
data = await cache.get_json(url)
return RichResult(
Expand Down
7 changes: 7 additions & 0 deletions tests/test_anitya.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,10 @@ async def test_anitya(get_version):
"anitya": "fedora/shutter",
})
assert re.match(r"[0-9.]+", version)

async def test_anitya_by_id(get_version):
version = await get_version("shutter", {
"source": "anitya",
"anitya_id": "4813",
})
assert re.match(r"[0-9.]+", version)

0 comments on commit 3abe5ad

Please sign in to comment.