mirror of
https://github.com/rocky-linux/srpmproc.git
synced 2025-01-08 09:20:56 +00:00
6 lines
176 B
Go
6 lines
176 B
Go
package rpmutils
|
|
|
|
import "regexp"
|
|
|
|
// Nvr is a regular expression that matches a NVR.
|
|
var Nvr = regexp.MustCompile("^(\\S+)-([\\w~%.+]+)-(\\w+(?:\\.[\\w~%+]+)+?)(?:\\.rpm)?$")
|