@@ -12,6 +12,7 @@ import (
12
12
"github.com/microsoft/CBL-Mariner/toolkit/tools/internal/file"
13
13
"github.com/microsoft/CBL-Mariner/toolkit/tools/internal/logger"
14
14
"github.com/microsoft/CBL-Mariner/toolkit/tools/internal/shell"
15
+ "github.com/microsoft/CBL-Mariner/toolkit/tools/internal/sliceutils"
15
16
)
16
17
17
18
const (
@@ -53,36 +54,38 @@ const (
53
54
)
54
55
55
56
const (
57
+ installedRPMRegexRPMIndex = 1
58
+
56
59
rpmProgram = "rpm"
57
60
rpmSpecProgram = "rpmspec"
58
61
rpmBuildProgram = "rpmbuild"
59
62
)
60
63
61
- var goArchToRpmArch = map [string ]string {
62
- "amd64" : "x86_64" ,
63
- "arm64" : "aarch64" ,
64
- }
65
-
66
- // GetRpmArch converts the GOARCH arch into an RPM arch
67
- func GetRpmArch (goArch string ) (rpmArch string , err error ) {
68
- rpmArch , ok := goArchToRpmArch [goArch ]
69
- if ! ok {
70
- err = fmt .Errorf ("Unknown GOARCH detected (%s)" , goArch )
64
+ var (
65
+ goArchToRpmArch = map [string ]string {
66
+ "amd64" : "x86_64" ,
67
+ "arm64" : "aarch64" ,
71
68
}
72
- return
73
- }
74
69
75
- var (
76
70
// Output from 'rpm' prints installed RPMs in a line with the following format:
77
71
//
78
72
// D: ========== +++ [name]-[version]-[release].[distribution] [architecture]-linux [hex_value]
79
73
//
80
74
// Example:
81
75
//
82
76
// D: ========== +++ systemd-devel-239-42.cm2 x86_64-linux 0x0
83
- installedRPMLineRegex = regexp .MustCompile (`^D: =+ \+{3} (\S+).*$` )
77
+ installedRPMRegex = regexp .MustCompile (`^D: =+ \+{3} (\S+).*$` )
84
78
)
85
79
80
+ // GetRpmArch converts the GOARCH arch into an RPM arch
81
+ func GetRpmArch (goArch string ) (rpmArch string , err error ) {
82
+ rpmArch , ok := goArchToRpmArch [goArch ]
83
+ if ! ok {
84
+ err = fmt .Errorf ("Unknown GOARCH detected (%s)" , goArch )
85
+ }
86
+ return
87
+ }
88
+
86
89
// SetMacroDir adds RPM_CONFIGDIR=$(newMacroDir) into the shell's environment for the duration of a program.
87
90
// To restore the environment the caller can use shell.SetEnvironment() with the returned origenv.
88
91
// On an empty string argument return success immediately and do not modify the environment.
@@ -318,13 +321,13 @@ func QueryRPMProvides(rpmFile string) (provides []string, err error) {
318
321
// end up being installed after resolving outdated, obsoleted, or conflicting packages.
319
322
func ResolveCompetingPackages (rootDir string , rpmPaths ... string ) (resolvedRPMs []string , err error ) {
320
323
const (
321
- queryFormat = ""
322
- installedRPMIndex = 1
323
- squashErrors = true
324
+ queryFormat = ""
325
+ squashErrors = true
324
326
)
325
327
326
328
args := []string {
327
329
"-Uvvh" ,
330
+ "--replacepkgs" ,
328
331
"--nodeps" ,
329
332
"--root" ,
330
333
rootDir ,
@@ -340,15 +343,15 @@ func ResolveCompetingPackages(rootDir string, rpmPaths ...string) (resolvedRPMs
340
343
}
341
344
342
345
splitStdout := strings .Split (stderr , "\n " )
346
+ uniqueResolvedRPMs := map [string ]bool {}
343
347
for _ , line := range splitStdout {
344
- matches := installedRPMLineRegex .FindStringSubmatch (line )
345
- if len (matches ) = = 0 {
346
- continue
348
+ matches := installedRPMRegex .FindStringSubmatch (line )
349
+ if len (matches ) ! = 0 {
350
+ uniqueResolvedRPMs [ matches [ installedRPMRegexRPMIndex ]] = true
347
351
}
348
-
349
- resolvedRPMs = append (resolvedRPMs , matches [installedRPMIndex ])
350
352
}
351
353
354
+ resolvedRPMs = sliceutils .StringsSetToSlice (uniqueResolvedRPMs )
352
355
return
353
356
}
354
357
0 commit comments