From 844c224bb60db3def143532663b4eb8e8861426e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20W=C3=B3jcik?= Date: Wed, 3 Nov 2021 21:56:54 +0100 Subject: [PATCH 1/2] common/lint-commits: error out on non-conventional subject --- common/scripts/lint-commits | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/lint-commits b/common/scripts/lint-commits index 65f584f5f84e..01c4eda17007 100755 --- a/common/scripts/lint-commits +++ b/common/scripts/lint-commits @@ -38,7 +38,7 @@ do (NF > 2) && (length > 80) { print C ": long line: " $0; exit 1 } !subject { if (length > 50) { print C ": subject is a bit long" } - if (!($0 ~ ":" || $0 ~ "^Take over maintainership " || $0 ~ "^Orphan ")) { print C ": subject does not follow CONTRIBUTING.md guildelines" } + if (!($0 ~ ":" || $0 ~ "^Take over maintainership " || $0 ~ "^Orphan ")) { print C ": subject does not follow CONTRIBUTING.md guildelines"; exit 1 } # Below check is too noisy? # if (!($0 ~ "^New package:" || $0 ~ ".*: update to")) { # print C ": not new package/update/removal?" From 6d92fa837edd30a4d8afae1149221c1a8e79401e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20W=C3=B3jcik?= Date: Wed, 3 Nov 2021 22:09:19 +0100 Subject: [PATCH 2/2] update fetchmail --- srcpkgs/fetchmail/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/fetchmail/template b/srcpkgs/fetchmail/template index 91fa37c38b41..d1bbe5f33432 100644 --- a/srcpkgs/fetchmail/template +++ b/srcpkgs/fetchmail/template @@ -1,6 +1,6 @@ # Template file for 'fetchmail' pkgname=fetchmail -version=6.4.22 +version=6.4.23 revision=1 build_style=gnu-configure configure_args="--with-ssl=${XBPS_CROSS_BASE}/usr" @@ -13,7 +13,7 @@ license="GPL-2.0-only" homepage="http://fetchmail.sourceforge.net/" changelog="https://gitlab.com/fetchmail/fetchmail/-/raw/legacy_64/NEWS" distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.xz" -checksum=cc6818bd59435602169fa292d6d163d56b21c7f53112829470a3aceabe612c84 +checksum=5f7a5e13731431134a2ca535bbced7adc666d3aeb93169a0830945d91f492300 post_install() { vsed -i -e 's,/usr/bin/python ,/usr/bin/python3 ,' "${DESTDIR}/usr/bin/fetchmailconf"