From 05961c8f614c58181917d86a8b9afaa1da8a64d1 Mon Sep 17 00:00:00 2001 From: Louis Abel Date: Tue, 23 Jul 2024 14:14:10 -0700 Subject: [PATCH] fix: match against a regex for debug* packages --- peridot/composetools/rpm.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/peridot/composetools/rpm.go b/peridot/composetools/rpm.go index f4afecc..58a6473 100644 --- a/peridot/composetools/rpm.go +++ b/peridot/composetools/rpm.go @@ -33,12 +33,14 @@ package composetools import ( "errors" "fmt" - "github.com/gobwas/glob" "path/filepath" + "regexp" + "strings" + + "github.com/gobwas/glob" "peridot.resf.org/apollo/rpmutils" "peridot.resf.org/peridot/yummeta" "peridot.resf.org/utils" - "strings" ) var ( @@ -47,6 +49,7 @@ var ( var ( debugSuffixes = []string{"-debuginfo", "-debugsource", "-debuginfo-common"} + debugRegex = regexp.MustCompile(`^(?:.*-debuginfo(?:-.*)?|.*-debuginfo-.*|.*-debugsource)$`) soGlob = glob.MustCompile("*.so.*") gtk2EnginesGlob = glob.MustCompile("/usr/lib*/gtk-2.0/*/engines") gtk2ModulesGlob = glob.MustCompile("/usr/lib*/gtk-2.0/*/modules") @@ -70,12 +73,9 @@ func StripDebugSuffixes(name string) string { } func IsDebugPackage(name string) bool { - for _, suffix := range debugSuffixes { - if strings.HasSuffix(name, suffix) { - return true - } + if debugRegex.MatchString(name) { + return true } - return false }