From 5a20f432557da229281e9af0a434f998a115c5e4 Mon Sep 17 00:00:00 2001 From: Fredrik Eriksson Date: Mon, 22 Feb 2021 17:21:05 +0100 Subject: [PATCH] detect binary packages upgrades on gentoo --- sau/gentoo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sau/gentoo.py b/sau/gentoo.py index e16160e..ba18d74 100644 --- a/sau/gentoo.py +++ b/sau/gentoo.py @@ -102,7 +102,7 @@ def pkg_upgrade(): _sync_portage() # [ebuild U ] media-plugins/alsa-plugins-1.1.8 [1.1.6] - pretend_re = re.compile(r'^\[ebuild ([^\]]*)\] ([^ ]+)( \[[^\]]+\])?') + pretend_re = re.compile(r'^\[(?:ebuild|binary) ([^\]]*)\] ([^ ]+)( \[[^\]]+\])?') # media-plugins/alsa-plugins-1.1.8 version_re = re.compile(r'^(.*/.*)-(\d+.*)$')