mirror of
https://github.com/Jguer/yay.git
synced 2024-11-06 17:17:22 +01:00
7bc4a666e6
* extract runtime building from cfg * respect AURRPCURL * use -Syu if there are no targets, allows to pass extra options * one more step towards removing runtime from cfg
83 lines
1.8 KiB
Go
83 lines
1.8 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/Jguer/aur"
|
|
"github.com/leonelquinteros/gotext"
|
|
|
|
"github.com/Jguer/yay/v12/pkg/download"
|
|
"github.com/Jguer/yay/v12/pkg/settings"
|
|
"github.com/Jguer/yay/v12/pkg/settings/parser"
|
|
"github.com/Jguer/yay/v12/pkg/text"
|
|
)
|
|
|
|
// yay -Gp.
|
|
func printPkgbuilds(dbExecutor download.DBSearcher, aurClient aur.QueryClient, httpClient *http.Client, targets []string,
|
|
mode parser.TargetMode, aurURL string,
|
|
) error {
|
|
pkgbuilds, err := download.PKGBUILDs(dbExecutor, aurClient, httpClient, targets, aurURL, mode)
|
|
if err != nil {
|
|
text.Errorln(err)
|
|
}
|
|
|
|
if len(pkgbuilds) != 0 {
|
|
for target, pkgbuild := range pkgbuilds {
|
|
fmt.Printf("\n\n# %s\n\n", target)
|
|
fmt.Print(string(pkgbuild))
|
|
}
|
|
}
|
|
|
|
if len(pkgbuilds) != len(targets) {
|
|
missing := []string{}
|
|
|
|
for _, target := range targets {
|
|
if _, ok := pkgbuilds[target]; !ok {
|
|
missing = append(missing, target)
|
|
}
|
|
}
|
|
|
|
text.Warnln(gotext.Get("Unable to find the following packages:"), " ", strings.Join(missing, ", "))
|
|
|
|
return fmt.Errorf("")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// yay -G.
|
|
func getPkgbuilds(ctx context.Context, dbExecutor download.DBSearcher, aurClient aur.QueryClient,
|
|
config *settings.Configuration, targets []string, force bool,
|
|
) error {
|
|
wd, err := os.Getwd()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
cloned, errD := download.PKGBUILDRepos(ctx, dbExecutor, aurClient,
|
|
config.Runtime.CmdBuilder, targets, config.Mode, config.AURURL, wd, force)
|
|
if errD != nil {
|
|
text.Errorln(errD)
|
|
}
|
|
|
|
if len(targets) != len(cloned) {
|
|
missing := []string{}
|
|
|
|
for _, target := range targets {
|
|
if _, ok := cloned[target]; !ok {
|
|
missing = append(missing, target)
|
|
}
|
|
}
|
|
|
|
text.Warnln(gotext.Get("Unable to find the following packages:"), " ", strings.Join(missing, ", "))
|
|
|
|
err = fmt.Errorf("")
|
|
}
|
|
|
|
return err
|
|
}
|