mirror of
https://github.com/rocky-linux/srpmproc.git
synced 2025-01-07 17:00:56 +00:00
Fix NVR regex
This commit is contained in:
parent
e889daa21f
commit
6df2fe1e3f
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ package rpmutils
|
|||
import "regexp"
|
||||
|
||||
var (
|
||||
Nvr = regexp.MustCompile("^(\\S+)-([\\w~%.]+)-(\\w+(?:\\.[\\w+]+)+?)(?:\\.(\\w+))?(?:\\.rpm)?$")
|
||||
Nvr = regexp.MustCompile("^(\\S+)-([\\w~%.+]+)-(\\w+(?:\\.[\\w+]+)+?)(?:\\.(\\w+))?(?:\\.rpm)?$")
|
||||
epoch = regexp.MustCompile("(\\d+):")
|
||||
module = regexp.MustCompile("^(.+)-(.+)-([0-9]{19})\\.((?:.+){8})$")
|
||||
dist = regexp.MustCompile("(\\.el\\d(?:_\\d|))")
|
||||
|
|
Loading…
Reference in a new issue