Am 24.01.2018 um 19:32 schrieb Nis Martensen:
> How about this?
> 
> import apt
> 
> def is_security_update(pkgname, version):
>     try:
>         p = apt.Cache()[pkgname]
>     except:
>         return False
> 
>     if version not in p.versions:
>         return False
> 
>     if 'Debian-Security' in [o.label for o in
>                     p.versions[version].origins]:
>         return True
>     return False

Thanks. How do you catch the case when security updates are part of a
stable point release?

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to