yay/vcs.go

77 lines
2.0 KiB
Go
Raw Normal View History

package main
2017-05-01 03:23:03 +02:00
2017-05-01 03:34:40 +02:00
import (
2021-08-12 18:56:23 +02:00
"context"
"path/filepath"
"strings"
2018-08-03 00:30:48 +02:00
"sync"
2018-03-22 19:23:20 +01:00
"github.com/leonelquinteros/gotext"
2021-09-08 22:28:08 +02:00
"github.com/Jguer/yay/v11/pkg/db"
"github.com/Jguer/yay/v11/pkg/dep"
"github.com/Jguer/yay/v11/pkg/download"
"github.com/Jguer/yay/v11/pkg/query"
"github.com/Jguer/yay/v11/pkg/settings"
"github.com/Jguer/yay/v11/pkg/srcinfo"
2021-09-08 22:28:08 +02:00
"github.com/Jguer/yay/v11/pkg/stringset"
"github.com/Jguer/yay/v11/pkg/text"
2017-05-01 03:34:40 +02:00
)
2017-05-01 03:23:03 +02:00
2021-08-11 20:13:28 +02:00
// createDevelDB forces yay to create a DB of the existing development packages.
2021-08-12 18:56:23 +02:00
func createDevelDB(ctx context.Context, config *settings.Configuration, dbExecutor db.Executor) error {
remoteNames := dbExecutor.InstalledRemotePackageNames()
2021-08-12 18:56:23 +02:00
info, err := query.AURInfoPrint(ctx, config.Runtime.AURClient, remoteNames, config.RequestSplitN)
2018-03-22 19:23:20 +01:00
if err != nil {
return err
}
2018-03-25 23:31:20 +02:00
2020-07-10 02:36:45 +02:00
bases := dep.GetBases(info)
toSkip := pkgbuildsToSkip(bases, stringset.FromSlice(remoteNames))
targets := make([]string, 0, len(bases))
pkgBuildDirsByBase := make(map[string]string, len(bases))
2021-08-11 20:13:28 +02:00
for _, base := range bases {
if !toSkip.Get(base.Pkgbase()) {
targets = append(targets, base.Pkgbase())
}
pkgBuildDirsByBase[base.Pkgbase()] = filepath.Join(config.BuildDir, base.Pkgbase())
}
toSkipSlice := toSkip.ToSlice()
if len(toSkipSlice) != 0 {
text.OperationInfoln(
gotext.Get("PKGBUILD up to date, Skipping (%d/%d): %s",
len(toSkipSlice), len(bases), text.Cyan(strings.Join(toSkipSlice, ", "))))
}
2021-08-12 18:56:23 +02:00
if _, errA := download.AURPKGBUILDRepos(ctx,
config.Runtime.CmdBuilder, targets, config.AURURL, config.BuildDir, false); errA != nil {
return err
}
srcinfos, err := srcinfo.ParseSrcinfoFilesByBase(pkgBuildDirsByBase, false)
if err != nil {
return err
}
2018-03-22 19:23:20 +01:00
var wg sync.WaitGroup
for i := range srcinfos {
for iP := range srcinfos[i].Packages {
2018-08-03 00:30:48 +02:00
wg.Add(1)
2021-08-11 20:13:28 +02:00
go func(i string, iP int) {
config.Runtime.VCSStore.Update(ctx, srcinfos[i].Packages[iP].Pkgname, srcinfos[i].Source)
wg.Done()
}(i, iP)
2018-03-22 19:23:20 +01:00
}
}
2018-08-03 00:30:48 +02:00
wg.Wait()
text.OperationInfoln(gotext.Get("GenDB finished. No packages were installed"))
2021-08-11 20:13:28 +02:00
return err
2017-05-01 03:23:03 +02:00
}