From: Stefan Schantl <stefan.schantl@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 2/2] perl.req: Automatically filter-out version related requirements.
Date: Wed, 28 Dec 2022 21:41:36 +0100 [thread overview]
Message-ID: <20221228204136.391950-2-stefan.schantl@ipfire.org> (raw)
In-Reply-To: <20221228204136.391950-1-stefan.schantl@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 607 bytes --]
Filter-out everything like perl(5), perl(v5), perl(5.000),
perl(5.000_000) etc.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
src/scripts/perl.req | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/scripts/perl.req b/src/scripts/perl.req
index 5a5a54e1..2bdf04dd 100644
--- a/src/scripts/perl.req
+++ b/src/scripts/perl.req
@@ -47,6 +47,7 @@ foreach my $perlver (sort keys %perlreq) {
}
foreach my $module (sort keys %global_require) {
+ next if ($module =~ /^v?\d*\.?\d*\_?\d*$/);
next if (&is_filtered($module));
if (length($global_require{$module}) == 0) {
--
2.30.2
prev parent reply other threads:[~2022-12-28 20:41 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-28 20:41 [PATCH 1/2] perl.req: Allow filtering the found requirements Stefan Schantl
2022-12-28 20:41 ` Stefan Schantl [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20221228204136.391950-2-stefan.schantl@ipfire.org \
--to=stefan.schantl@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox