2017-08-01 18:43:20 +02:00
|
|
|
package main
|
2017-07-14 19:03:54 +02:00
|
|
|
|
|
|
|
import (
|
2021-08-12 18:56:23 +02:00
|
|
|
"context"
|
2017-07-14 19:03:54 +02:00
|
|
|
"fmt"
|
2017-08-01 18:43:20 +02:00
|
|
|
"sort"
|
2020-07-10 02:36:45 +02:00
|
|
|
"strings"
|
2018-03-08 22:34:12 +01:00
|
|
|
"sync"
|
2017-07-14 19:03:54 +02:00
|
|
|
|
2021-05-13 07:27:24 +02:00
|
|
|
aur "github.com/Jguer/aur"
|
2020-10-01 13:38:03 +02:00
|
|
|
alpm "github.com/Jguer/go-alpm/v2"
|
2020-05-04 09:24:32 +02:00
|
|
|
"github.com/leonelquinteros/gotext"
|
2020-05-02 16:17:20 +02:00
|
|
|
|
2021-09-08 22:28:08 +02:00
|
|
|
"github.com/Jguer/yay/v11/pkg/db"
|
2022-11-01 23:48:35 +01:00
|
|
|
"github.com/Jguer/yay/v11/pkg/dep"
|
2021-09-08 22:28:08 +02:00
|
|
|
"github.com/Jguer/yay/v11/pkg/intrange"
|
|
|
|
"github.com/Jguer/yay/v11/pkg/multierror"
|
|
|
|
"github.com/Jguer/yay/v11/pkg/query"
|
2021-10-11 22:22:03 +02:00
|
|
|
"github.com/Jguer/yay/v11/pkg/settings"
|
2021-09-08 22:28:08 +02:00
|
|
|
"github.com/Jguer/yay/v11/pkg/stringset"
|
|
|
|
"github.com/Jguer/yay/v11/pkg/text"
|
2022-11-01 23:48:35 +01:00
|
|
|
"github.com/Jguer/yay/v11/pkg/topo"
|
2021-09-08 22:28:08 +02:00
|
|
|
"github.com/Jguer/yay/v11/pkg/upgrade"
|
2017-07-14 19:03:54 +02:00
|
|
|
)
|
|
|
|
|
2021-04-19 13:23:40 +02:00
|
|
|
func filterUpdateList(list []db.Upgrade, filter upgrade.Filter) []db.Upgrade {
|
2021-02-05 22:47:03 +01:00
|
|
|
tmp := list[:0]
|
2021-08-11 20:13:28 +02:00
|
|
|
|
2021-02-05 22:47:03 +01:00
|
|
|
for _, pkg := range list {
|
|
|
|
if filter(pkg) {
|
|
|
|
tmp = append(tmp, pkg)
|
|
|
|
}
|
|
|
|
}
|
2021-08-11 20:13:28 +02:00
|
|
|
|
2021-02-05 22:47:03 +01:00
|
|
|
return tmp
|
|
|
|
}
|
|
|
|
|
2017-10-14 18:11:47 +02:00
|
|
|
// upList returns lists of packages to upgrade from each source.
|
2021-08-12 18:56:23 +02:00
|
|
|
func upList(ctx context.Context, warnings *query.AURWarnings, dbExecutor db.Executor, enableDowngrade bool,
|
2022-08-05 22:55:54 +02:00
|
|
|
filter upgrade.Filter,
|
|
|
|
) (aurUp, repoUp upgrade.UpSlice, err error) {
|
2020-08-01 01:20:00 +02:00
|
|
|
remote, remoteNames := query.GetRemotePackages(dbExecutor)
|
2017-07-14 19:03:54 +02:00
|
|
|
|
2021-08-11 20:13:28 +02:00
|
|
|
var (
|
|
|
|
wg sync.WaitGroup
|
|
|
|
develUp upgrade.UpSlice
|
|
|
|
repoSlice []db.Upgrade
|
|
|
|
errs multierror.MultiError
|
|
|
|
)
|
2017-07-14 19:03:54 +02:00
|
|
|
|
2021-05-13 07:27:24 +02:00
|
|
|
aurdata := make(map[string]*aur.Pkg)
|
2018-05-08 08:51:49 +02:00
|
|
|
|
2019-11-11 08:15:04 +01:00
|
|
|
for _, pkg := range remote {
|
|
|
|
if pkg.ShouldIgnore() {
|
|
|
|
warnings.Ignore.Set(pkg.Name())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-09 13:26:32 +02:00
|
|
|
if config.Runtime.Mode.AtLeastRepo() {
|
2020-05-04 09:24:32 +02:00
|
|
|
text.OperationInfoln(gotext.Get("Searching databases for updates..."))
|
2018-03-20 17:20:09 +01:00
|
|
|
wg.Add(1)
|
2021-08-11 20:13:28 +02:00
|
|
|
|
2018-03-20 17:20:09 +01:00
|
|
|
go func() {
|
2021-04-19 13:23:40 +02:00
|
|
|
repoSlice, err = dbExecutor.RepoUpgrades(enableDowngrade)
|
2018-08-02 18:14:57 +02:00
|
|
|
errs.Add(err)
|
2018-03-20 17:20:09 +01:00
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2021-08-09 13:26:32 +02:00
|
|
|
if config.Runtime.Mode.AtLeastAUR() {
|
2020-05-04 09:24:32 +02:00
|
|
|
text.OperationInfoln(gotext.Get("Searching AUR for updates..."))
|
2018-05-31 17:23:15 +02:00
|
|
|
|
2021-05-13 07:27:24 +02:00
|
|
|
var _aurdata []*aur.Pkg
|
2021-08-12 18:56:23 +02:00
|
|
|
_aurdata, err = query.AURInfo(ctx, config.Runtime.AURClient, remoteNames, warnings, config.RequestSplitN)
|
2018-08-02 18:14:57 +02:00
|
|
|
errs.Add(err)
|
2021-08-11 20:13:28 +02:00
|
|
|
|
2018-08-02 18:14:57 +02:00
|
|
|
if err == nil {
|
2018-07-31 17:58:49 +02:00
|
|
|
for _, pkg := range _aurdata {
|
|
|
|
aurdata[pkg.Name] = pkg
|
|
|
|
}
|
|
|
|
|
2018-05-31 17:23:15 +02:00
|
|
|
wg.Add(1)
|
2021-08-11 20:13:28 +02:00
|
|
|
|
2018-05-31 17:23:15 +02:00
|
|
|
go func() {
|
2020-10-01 14:06:21 +02:00
|
|
|
aurUp = upgrade.UpAUR(remote, aurdata, config.TimeUpdate)
|
2021-08-11 20:13:28 +02:00
|
|
|
|
2018-05-31 17:23:15 +02:00
|
|
|
wg.Done()
|
|
|
|
}()
|
2018-07-31 17:58:49 +02:00
|
|
|
|
|
|
|
if config.Devel {
|
2020-05-04 09:24:32 +02:00
|
|
|
text.OperationInfoln(gotext.Get("Checking development packages..."))
|
2018-07-31 17:58:49 +02:00
|
|
|
wg.Add(1)
|
2021-08-11 20:13:28 +02:00
|
|
|
|
2018-07-31 17:58:49 +02:00
|
|
|
go func() {
|
2021-08-12 18:56:23 +02:00
|
|
|
develUp = upgrade.UpDevel(ctx, remote, aurdata, config.Runtime.VCSStore)
|
2021-08-11 20:13:28 +02:00
|
|
|
|
2018-07-31 17:58:49 +02:00
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
}
|
2018-05-31 17:23:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-20 17:20:09 +01:00
|
|
|
wg.Wait()
|
|
|
|
|
2018-07-31 17:58:49 +02:00
|
|
|
printLocalNewerThanAUR(remote, aurdata)
|
2021-08-11 20:13:28 +02:00
|
|
|
|
2021-04-19 13:23:40 +02:00
|
|
|
names := make(stringset.StringSet)
|
2021-08-11 20:13:28 +02:00
|
|
|
|
2021-04-19 13:23:40 +02:00
|
|
|
for _, up := range develUp.Up {
|
|
|
|
names.Set(up.Name)
|
|
|
|
}
|
2021-08-11 20:13:28 +02:00
|
|
|
|
2021-04-19 13:23:40 +02:00
|
|
|
for _, up := range aurUp.Up {
|
|
|
|
if !names.Get(up.Name) {
|
|
|
|
develUp.Up = append(develUp.Up, up)
|
2018-03-21 00:04:28 +01:00
|
|
|
}
|
2018-03-20 17:20:09 +01:00
|
|
|
}
|
2021-08-11 20:13:28 +02:00
|
|
|
|
2021-04-19 13:23:40 +02:00
|
|
|
aurUp = develUp
|
2021-04-19 13:43:13 +02:00
|
|
|
aurUp.Repos = []string{"aur", "devel"}
|
2021-04-19 13:23:40 +02:00
|
|
|
|
2021-04-19 13:43:13 +02:00
|
|
|
repoUp = upgrade.UpSlice{Up: repoSlice, Repos: dbExecutor.Repos()}
|
2018-03-20 17:20:09 +01:00
|
|
|
|
2021-04-19 13:23:40 +02:00
|
|
|
aurUp.Up = filterUpdateList(aurUp.Up, filter)
|
|
|
|
repoUp.Up = filterUpdateList(repoUp.Up, filter)
|
2021-08-11 20:13:28 +02:00
|
|
|
|
2021-04-19 13:23:40 +02:00
|
|
|
return aurUp, repoUp, errs.Return()
|
2017-07-14 19:03:54 +02:00
|
|
|
}
|
|
|
|
|
2018-05-08 08:51:49 +02:00
|
|
|
func printLocalNewerThanAUR(
|
2022-08-05 22:55:54 +02:00
|
|
|
remote []alpm.IPackage, aurdata map[string]*aur.Pkg,
|
|
|
|
) {
|
2018-05-08 08:51:49 +02:00
|
|
|
for _, pkg := range remote {
|
2018-07-31 17:58:49 +02:00
|
|
|
aurPkg, ok := aurdata[pkg.Name()]
|
2018-05-08 08:51:49 +02:00
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2020-08-01 01:20:00 +02:00
|
|
|
left, right := upgrade.GetVersionDiff(pkg.Version(), aurPkg.Version)
|
2018-05-08 08:51:49 +02:00
|
|
|
|
2022-08-05 22:55:54 +02:00
|
|
|
if !isDevelPackage(pkg) && db.VerCmp(pkg.Version(), aurPkg.Version) > 0 {
|
2020-05-04 09:24:32 +02:00
|
|
|
text.Warnln(gotext.Get("%s: local (%s) is newer than AUR (%s)",
|
2020-08-17 00:09:43 +02:00
|
|
|
text.Cyan(pkg.Name()),
|
2018-08-04 15:22:49 +02:00
|
|
|
left, right,
|
2020-05-04 09:24:32 +02:00
|
|
|
))
|
2018-05-08 08:51:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-10 02:36:45 +02:00
|
|
|
func isDevelName(name string) bool {
|
2021-07-25 11:49:13 +02:00
|
|
|
for _, suffix := range []string{"git", "svn", "hg", "bzr", "nightly", "insiders-bin"} {
|
2020-07-10 02:36:45 +02:00
|
|
|
if strings.HasSuffix(name, "-"+suffix) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return strings.Contains(name, "-always-")
|
|
|
|
}
|
|
|
|
|
2020-10-01 13:38:03 +02:00
|
|
|
func isDevelPackage(pkg alpm.IPackage) bool {
|
2020-07-10 02:36:45 +02:00
|
|
|
return isDevelName(pkg.Name()) || isDevelName(pkg.Base())
|
|
|
|
}
|
|
|
|
|
2021-03-14 22:41:32 +01:00
|
|
|
// upgradePkgsMenu handles updating the cache and installing updates.
|
|
|
|
func upgradePkgsMenu(aurUp, repoUp upgrade.UpSlice) (stringset.StringSet, []string, error) {
|
|
|
|
ignore := make(stringset.StringSet)
|
|
|
|
targets := []string{}
|
2018-02-19 00:46:25 +01:00
|
|
|
|
2021-04-19 13:23:40 +02:00
|
|
|
allUpLen := len(repoUp.Up) + len(aurUp.Up)
|
2018-05-02 17:46:21 +02:00
|
|
|
if allUpLen == 0 {
|
2021-03-14 22:41:32 +01:00
|
|
|
return ignore, nil, nil
|
2017-08-01 18:43:20 +02:00
|
|
|
}
|
|
|
|
|
2018-06-11 20:48:20 +02:00
|
|
|
if !config.UpgradeMenu {
|
2021-04-19 13:23:40 +02:00
|
|
|
for _, pkg := range aurUp.Up {
|
2022-10-28 23:58:15 +02:00
|
|
|
targets = append(targets, pkg.Repository+"/"+pkg.Name)
|
2018-06-11 20:48:20 +02:00
|
|
|
}
|
|
|
|
|
2021-03-14 22:41:32 +01:00
|
|
|
return ignore, targets, nil
|
2018-06-11 20:48:20 +02:00
|
|
|
}
|
|
|
|
|
2017-08-01 18:43:20 +02:00
|
|
|
sort.Sort(repoUp)
|
2018-03-20 23:34:06 +01:00
|
|
|
sort.Sort(aurUp)
|
2021-08-11 20:13:28 +02:00
|
|
|
|
2021-04-19 13:43:13 +02:00
|
|
|
allUp := upgrade.UpSlice{Up: append(repoUp.Up, aurUp.Up...), Repos: append(repoUp.Repos, aurUp.Repos...)}
|
2021-08-11 20:13:28 +02:00
|
|
|
|
2020-08-17 00:09:43 +02:00
|
|
|
fmt.Printf("%s"+text.Bold(" %d ")+"%s\n", text.Bold(text.Cyan("::")), allUpLen, text.Bold(gotext.Get("Packages to upgrade.")))
|
2020-08-01 01:20:00 +02:00
|
|
|
allUp.Print()
|
2017-08-01 18:43:20 +02:00
|
|
|
|
2020-05-04 09:24:32 +02:00
|
|
|
text.Infoln(gotext.Get("Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"))
|
2018-03-09 04:41:45 +01:00
|
|
|
|
2021-10-11 22:22:03 +02:00
|
|
|
numbers, err := text.GetInput(config.AnswerUpgrade, settings.NoConfirm)
|
2018-03-09 04:41:45 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
2020-05-02 16:17:20 +02:00
|
|
|
// upgrade menu asks you which packages to NOT upgrade so in this case
|
|
|
|
// include and exclude are kind of swapped
|
2019-10-16 23:36:08 +02:00
|
|
|
include, exclude, otherInclude, otherExclude := intrange.ParseNumberMenu(numbers)
|
2017-08-01 18:43:20 +02:00
|
|
|
|
2018-03-09 04:41:45 +01:00
|
|
|
isInclude := len(exclude) == 0 && len(otherExclude) == 0
|
|
|
|
|
2021-04-19 13:23:40 +02:00
|
|
|
for i, pkg := range repoUp.Up {
|
2019-10-05 19:39:31 +02:00
|
|
|
if isInclude && otherInclude.Get(pkg.Repository) {
|
|
|
|
ignore.Set(pkg.Name)
|
2017-08-01 18:43:20 +02:00
|
|
|
}
|
2017-08-02 23:56:45 +02:00
|
|
|
|
2021-04-19 13:23:40 +02:00
|
|
|
if isInclude && !include.Get(len(repoUp.Up)-i+len(aurUp.Up)) {
|
2022-10-28 23:58:15 +02:00
|
|
|
targets = append(targets, pkg.Repository+"/"+pkg.Name)
|
2018-03-21 17:30:00 +01:00
|
|
|
continue
|
2017-08-01 18:43:20 +02:00
|
|
|
}
|
2018-03-09 04:41:45 +01:00
|
|
|
|
2021-04-19 13:23:40 +02:00
|
|
|
if !isInclude && (exclude.Get(len(repoUp.Up)-i+len(aurUp.Up)) || otherExclude.Get(pkg.Repository)) {
|
2022-10-28 23:58:15 +02:00
|
|
|
targets = append(targets, pkg.Repository+"/"+pkg.Name)
|
2018-03-21 17:30:00 +01:00
|
|
|
continue
|
2018-01-14 18:48:16 +01:00
|
|
|
}
|
2018-03-21 17:30:00 +01:00
|
|
|
|
2019-10-05 19:39:31 +02:00
|
|
|
ignore.Set(pkg.Name)
|
2017-08-01 18:43:20 +02:00
|
|
|
}
|
|
|
|
|
2021-04-19 13:23:40 +02:00
|
|
|
for i, pkg := range aurUp.Up {
|
2019-10-05 19:39:31 +02:00
|
|
|
if isInclude && otherInclude.Get(pkg.Repository) {
|
2018-03-09 04:41:45 +01:00
|
|
|
continue
|
2017-08-01 18:43:20 +02:00
|
|
|
}
|
|
|
|
|
2021-04-19 13:23:40 +02:00
|
|
|
if isInclude && !include.Get(len(aurUp.Up)-i) {
|
2021-03-14 22:41:32 +01:00
|
|
|
targets = append(targets, "aur/"+pkg.Name)
|
2018-03-09 04:41:45 +01:00
|
|
|
}
|
|
|
|
|
2021-04-19 13:23:40 +02:00
|
|
|
if !isInclude && (exclude.Get(len(aurUp.Up)-i) || otherExclude.Get(pkg.Repository)) {
|
2021-03-14 22:41:32 +01:00
|
|
|
targets = append(targets, "aur/"+pkg.Name)
|
2017-08-01 18:43:20 +02:00
|
|
|
}
|
|
|
|
}
|
2018-01-20 23:37:10 +01:00
|
|
|
|
2021-03-14 22:41:32 +01:00
|
|
|
return ignore, targets, err
|
|
|
|
}
|
|
|
|
|
2021-08-11 20:13:28 +02:00
|
|
|
// Targets for sys upgrade.
|
2021-08-12 18:56:23 +02:00
|
|
|
func sysupgradeTargets(ctx context.Context, dbExecutor db.Executor,
|
2022-08-05 22:55:54 +02:00
|
|
|
enableDowngrade bool,
|
|
|
|
) (stringset.StringSet, []string, error) {
|
2021-03-14 22:41:32 +01:00
|
|
|
warnings := query.NewWarnings()
|
2021-08-11 20:13:28 +02:00
|
|
|
|
2021-08-12 18:56:23 +02:00
|
|
|
aurUp, repoUp, err := upList(ctx, warnings, dbExecutor, enableDowngrade,
|
|
|
|
func(upgrade.Upgrade) bool { return true })
|
2021-03-14 22:41:32 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
warnings.Print()
|
|
|
|
|
2021-10-11 23:08:18 +02:00
|
|
|
return upgradePkgsMenu(aurUp, repoUp)
|
2017-08-01 18:43:20 +02:00
|
|
|
}
|
2022-11-01 23:48:35 +01:00
|
|
|
|
|
|
|
// Targets for sys upgrade.
|
|
|
|
func sysupgradeTargetsV2(ctx context.Context,
|
|
|
|
dbExecutor db.Executor,
|
|
|
|
graph *topo.Graph[string, *dep.InstallInfo],
|
|
|
|
enableDowngrade bool,
|
|
|
|
) (*topo.Graph[string, *dep.InstallInfo], stringset.StringSet, error) {
|
|
|
|
warnings := query.NewWarnings()
|
|
|
|
|
|
|
|
aurUp, repoUp, err := upList(ctx, warnings, dbExecutor, enableDowngrade,
|
|
|
|
func(upgrade.Upgrade) bool { return true })
|
|
|
|
if err != nil {
|
|
|
|
return graph, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
warnings.Print()
|
|
|
|
ignore := make(stringset.StringSet)
|
|
|
|
|
|
|
|
allUpLen := len(repoUp.Up) + len(aurUp.Up)
|
|
|
|
if allUpLen == 0 {
|
|
|
|
return graph, ignore, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
sort.Sort(repoUp)
|
|
|
|
sort.Sort(aurUp)
|
|
|
|
|
|
|
|
allUp := upgrade.UpSlice{Up: append(repoUp.Up, aurUp.Up...), Repos: append(repoUp.Repos, aurUp.Repos...)}
|
|
|
|
|
|
|
|
fmt.Printf("%s"+text.Bold(" %d ")+"%s\n", text.Bold(text.Cyan("::")), allUpLen, text.Bold(gotext.Get("Packages to upgrade.")))
|
|
|
|
allUp.Print()
|
|
|
|
|
|
|
|
text.Infoln(gotext.Get("Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"))
|
|
|
|
|
|
|
|
numbers, err := text.GetInput(config.AnswerUpgrade, settings.NoConfirm)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// upgrade menu asks you which packages to NOT upgrade so in this case
|
|
|
|
// include and exclude are kind of swapped
|
|
|
|
include, exclude, otherInclude, otherExclude := intrange.ParseNumberMenu(numbers)
|
|
|
|
|
|
|
|
isInclude := len(exclude) == 0 && len(otherExclude) == 0
|
|
|
|
|
|
|
|
for i, pkg := range repoUp.Up {
|
|
|
|
if isInclude && otherInclude.Get(pkg.Repository) {
|
|
|
|
ignore.Set(pkg.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
if isInclude && !include.Get(len(repoUp.Up)-i+len(aurUp.Up)) {
|
|
|
|
addUpgradeToGraph(pkg, graph)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if !isInclude && (exclude.Get(len(repoUp.Up)-i+len(aurUp.Up)) || otherExclude.Get(pkg.Repository)) {
|
|
|
|
addUpgradeToGraph(pkg, graph)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
ignore.Set(pkg.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, pkg := range aurUp.Up {
|
|
|
|
if isInclude && otherInclude.Get(pkg.Repository) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if isInclude && !include.Get(len(aurUp.Up)-i) {
|
|
|
|
addUpgradeToGraph(pkg, graph)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !isInclude && (exclude.Get(len(aurUp.Up)-i) || otherExclude.Get(pkg.Repository)) {
|
|
|
|
addUpgradeToGraph(pkg, graph)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return graph, ignore, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func addUpgradeToGraph(pkg db.Upgrade, graph *topo.Graph[string, *dep.InstallInfo]) {
|
|
|
|
source := dep.Sync
|
|
|
|
if pkg.Repository == "aur" {
|
|
|
|
source = dep.AUR
|
|
|
|
}
|
|
|
|
|
|
|
|
reason := dep.Explicit
|
|
|
|
if pkg.Reason == alpm.PkgReasonDepend {
|
|
|
|
reason = dep.Dep
|
|
|
|
}
|
|
|
|
|
|
|
|
graph.AddNode(pkg.Name)
|
|
|
|
graph.SetNodeInfo(pkg.Name, &topo.NodeInfo[*dep.InstallInfo]{
|
|
|
|
Color: "",
|
|
|
|
Background: "",
|
|
|
|
Value: &dep.InstallInfo{
|
|
|
|
Source: source,
|
|
|
|
Reason: reason,
|
|
|
|
Version: pkg.RemoteVersion,
|
|
|
|
AURBase: &pkg.Base,
|
|
|
|
SyncDBName: &pkg.Repository,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|