From 7d491c9bf15113ec0e6b87b067bae69a5282f5af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= Date: Thu, 30 May 2024 23:00:30 -0300 Subject: [PATCH] singular: skip *p* versions which are not stable releases --- srcpkgs/singular/update | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/srcpkgs/singular/update b/srcpkgs/singular/update index 93a63868f4c..8b7c1641db6 100644 --- a/srcpkgs/singular/update +++ b/srcpkgs/singular/update @@ -1 +1,3 @@ -pattern='(singular|Release)?-?\K[-.p\d]+(?=\.tar\.gz")' +# skip *p* which often behaves as a prerelease for next version +# see https://github.com/sagemath/sage/pull/38689#issuecomment-2366934173 +ignore='*p*'