# HG changeset patch # User Pascal Bellard # Date 1611933244 0 # Node ID 059bb2e67481b06489801bdb0e680e6a14942b3f # Parent b553f83f6fb9bb27e115925205d309390bbc0619 Up sudo (1.9.5p2) CVE-2021-3156 diff -r b553f83f6fb9 -r 059bb2e67481 sudo-pam/receipt --- a/sudo-pam/receipt Tue Jan 19 09:09:36 2021 +0000 +++ b/sudo-pam/receipt Fri Jan 29 15:14:04 2021 +0000 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="sudo-pam" -VERSION="1.8.31" +VERSION="1.9.5p2" CATEGORY="security" SHORT_DESC="Allows command execution as root for specified users using PAM." MAINTAINER="erjo@slitaz.org" @@ -16,6 +16,12 @@ DEPENDS="pam" BUILD_DEPENDS="pam-dev" +current_version() +{ + wget -O - $WEB_SITE 2>/dev/null | \ + grep -A 1 'The current' | sed '/>sudo/!d;s|.*>sudo *||;s|<.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r b553f83f6fb9 -r 059bb2e67481 sudo/receipt --- a/sudo/receipt Tue Jan 19 09:09:36 2021 +0000 +++ b/sudo/receipt Fri Jan 29 15:14:04 2021 +0000 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="sudo" -VERSION="1.8.31" +VERSION="1.9.5p2" CATEGORY="security" SHORT_DESC="Allows command execution as root for specified users." MAINTAINER="erjo@slitaz.org" @@ -13,6 +13,12 @@ CONFIG_FILES="/etc/sudoers" +current_version() +{ + wget -O - $WEB_SITE 2>/dev/null | \ + grep -A 1 'The current' | sed '/>sudo/!d;s|.*>sudo *||;s|<.*||;q' +} + # Rules to configure and make the package. compile_rules() {