From 4371b7f0e3b7f7e1e3e77ddfccb1a498fe60e456 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sun, 25 Jan 2026 17:04:42 +0200 Subject: [PATCH] Recognize 'maintainers' field in pkg.info --- src/bpm-utils-shared/package.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bpm-utils-shared/package.go b/src/bpm-utils-shared/package.go index 57f6b20..dfe7ec5 100644 --- a/src/bpm-utils-shared/package.go +++ b/src/bpm-utils-shared/package.go @@ -18,6 +18,7 @@ type PackageInfo struct { Revision int `yaml:"revision,omitempty"` Url string `yaml:"url,omitempty"` License string `yaml:"license,omitempty"` + Maintainers []string `yaml:"maintainers,omitempty"` Arch string `yaml:"architecture,omitempty"` OutputArch string `yaml:"output_architecture,omitempty"` Type string `yaml:"type,omitempty"`