2017-04-29 19:12:12 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/jguer/yay/aur"
|
2017-05-09 03:09:43 +02:00
|
|
|
vcs "github.com/jguer/yay/aur/vcs"
|
2017-05-06 19:32:33 +02:00
|
|
|
"github.com/jguer/yay/config"
|
2017-04-29 19:12:12 +02:00
|
|
|
pac "github.com/jguer/yay/pacman"
|
|
|
|
)
|
|
|
|
|
|
|
|
func usage() {
|
|
|
|
fmt.Println(`usage: yay <operation> [...]
|
|
|
|
operations:
|
|
|
|
yay {-h --help}
|
|
|
|
yay {-V --version}
|
|
|
|
yay {-D --database} <options> <package(s)>
|
|
|
|
yay {-F --files} [options] [package(s)]
|
|
|
|
yay {-Q --query} [options] [package(s)]
|
|
|
|
yay {-R --remove} [options] <package(s)>
|
|
|
|
yay {-S --sync} [options] [package(s)]
|
|
|
|
yay {-T --deptest} [options] [package(s)]
|
|
|
|
yay {-U --upgrade} [options] <file(s)>
|
|
|
|
|
|
|
|
New operations:
|
|
|
|
yay -Qstats displays system information
|
|
|
|
yay -Cd remove unneeded dependencies
|
|
|
|
yay -G [package(s)] get pkgbuild from ABS or AUR
|
|
|
|
|
|
|
|
New options:
|
|
|
|
--topdown shows repository's packages first and then aur's
|
|
|
|
--bottomup shows aur's packages first and then repository's
|
|
|
|
--noconfirm skip user input on package install
|
2017-06-14 09:47:17 +02:00
|
|
|
--devel Check -git/-svn/-hg development version
|
|
|
|
--nodevel Disable development version checking
|
2017-04-29 19:12:12 +02:00
|
|
|
`)
|
|
|
|
}
|
|
|
|
|
2017-05-07 03:43:49 +02:00
|
|
|
var version = "2.116"
|
2017-04-29 19:12:12 +02:00
|
|
|
|
2017-05-07 03:43:49 +02:00
|
|
|
func parser() (op string, options []string, packages []string, changedConfig bool, err error) {
|
2017-04-29 19:12:12 +02:00
|
|
|
if len(os.Args) < 2 {
|
|
|
|
err = fmt.Errorf("no operation specified")
|
|
|
|
return
|
|
|
|
}
|
2017-05-07 03:43:49 +02:00
|
|
|
changedConfig = false
|
2017-04-29 19:12:12 +02:00
|
|
|
op = "yogurt"
|
|
|
|
|
|
|
|
for _, arg := range os.Args[1:] {
|
|
|
|
if arg[0] == '-' && arg[1] != '-' {
|
|
|
|
switch arg {
|
|
|
|
default:
|
|
|
|
op = arg
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if arg[0] == '-' && arg[1] == '-' {
|
2017-05-09 03:09:43 +02:00
|
|
|
changedConfig = true
|
2017-04-29 19:12:12 +02:00
|
|
|
switch arg {
|
2017-05-09 03:09:43 +02:00
|
|
|
case "--gendb":
|
|
|
|
aur.CreateDevelDB()
|
|
|
|
vcs.SaveBranchInfo()
|
|
|
|
os.Exit(0)
|
|
|
|
case "--devel":
|
|
|
|
config.YayConf.Devel = true
|
|
|
|
case "--nodevel":
|
|
|
|
config.YayConf.Devel = false
|
2017-05-25 01:28:35 +02:00
|
|
|
case "--timeupdates":
|
|
|
|
config.YayConf.TimeUpdate = true
|
2017-04-29 19:12:12 +02:00
|
|
|
case "--topdown":
|
2017-05-07 03:43:49 +02:00
|
|
|
config.YayConf.SortMode = config.TopDown
|
2017-04-29 19:12:12 +02:00
|
|
|
case "--complete":
|
2017-05-06 19:32:33 +02:00
|
|
|
config.YayConf.Shell = "sh"
|
2017-05-02 17:46:14 +02:00
|
|
|
complete()
|
2017-04-29 19:12:12 +02:00
|
|
|
os.Exit(0)
|
|
|
|
case "--fcomplete":
|
2017-05-06 19:32:33 +02:00
|
|
|
config.YayConf.Shell = "fish"
|
2017-05-02 17:46:14 +02:00
|
|
|
complete()
|
2017-04-29 19:12:12 +02:00
|
|
|
os.Exit(0)
|
|
|
|
case "--help":
|
|
|
|
usage()
|
|
|
|
os.Exit(0)
|
|
|
|
case "--noconfirm":
|
2017-05-07 03:43:49 +02:00
|
|
|
config.YayConf.NoConfirm = true
|
2017-04-29 19:12:12 +02:00
|
|
|
fallthrough
|
|
|
|
default:
|
|
|
|
options = append(options, arg)
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
packages = append(packages, arg)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2017-05-07 03:43:49 +02:00
|
|
|
op, options, pkgs, changedConfig, err := parser()
|
2017-04-29 19:12:12 +02:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
switch op {
|
|
|
|
case "-Cd":
|
2017-05-02 17:46:14 +02:00
|
|
|
err = cleanDependencies(pkgs)
|
2017-04-29 19:12:12 +02:00
|
|
|
case "-G":
|
|
|
|
for _, pkg := range pkgs {
|
2017-05-02 17:46:14 +02:00
|
|
|
err = getPkgbuild(pkg)
|
2017-04-29 19:12:12 +02:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println(pkg+":", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case "-Qstats":
|
2017-05-02 17:46:14 +02:00
|
|
|
err = localStatistics(version)
|
2017-04-29 19:12:12 +02:00
|
|
|
case "-Ss", "-Ssq", "-Sqs":
|
|
|
|
if op == "-Ss" {
|
2017-05-07 03:43:49 +02:00
|
|
|
config.YayConf.SearchMode = config.Detailed
|
2017-04-29 19:12:12 +02:00
|
|
|
} else {
|
2017-05-07 03:43:49 +02:00
|
|
|
config.YayConf.SearchMode = config.Minimal
|
2017-04-29 19:12:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if pkgs != nil {
|
2017-05-02 17:46:14 +02:00
|
|
|
err = syncSearch(pkgs)
|
2017-04-29 19:12:12 +02:00
|
|
|
}
|
|
|
|
case "-S":
|
2017-05-02 17:46:14 +02:00
|
|
|
err = install(pkgs, options)
|
2017-04-29 19:12:12 +02:00
|
|
|
case "-Syu", "-Suy":
|
2017-05-02 17:46:14 +02:00
|
|
|
err = upgrade(options)
|
2017-04-29 19:12:12 +02:00
|
|
|
case "-Si":
|
2017-05-02 17:46:14 +02:00
|
|
|
err = syncInfo(pkgs, options)
|
2017-04-29 19:12:12 +02:00
|
|
|
case "yogurt":
|
2017-05-07 03:43:49 +02:00
|
|
|
config.YayConf.SearchMode = config.NumberMenu
|
2017-04-29 19:12:12 +02:00
|
|
|
|
|
|
|
if pkgs != nil {
|
|
|
|
err = numberMenu(pkgs, options)
|
|
|
|
}
|
|
|
|
default:
|
2017-05-16 17:53:15 +02:00
|
|
|
if op[0] == 'R' {
|
|
|
|
vcs.RemovePackage(pkgs)
|
|
|
|
}
|
2017-05-07 03:43:49 +02:00
|
|
|
err = config.PassToPacman(op, pkgs, options)
|
|
|
|
}
|
2017-05-09 03:09:43 +02:00
|
|
|
|
|
|
|
if vcs.Updated {
|
|
|
|
vcs.SaveBranchInfo()
|
|
|
|
}
|
|
|
|
|
2017-05-07 03:43:49 +02:00
|
|
|
if changedConfig {
|
|
|
|
config.SaveConfig()
|
2017-04-29 19:12:12 +02:00
|
|
|
}
|
|
|
|
|
2017-05-06 19:32:33 +02:00
|
|
|
config.AlpmHandle.Release()
|
2017-04-29 19:12:12 +02:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NumberMenu presents a CLI for selecting packages to install.
|
|
|
|
func numberMenu(pkgS []string, flags []string) (err error) {
|
|
|
|
var num int
|
|
|
|
|
2017-05-02 17:46:14 +02:00
|
|
|
aq, err := aur.NarrowSearch(pkgS, true)
|
2017-04-29 19:12:12 +02:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println("Error during AUR search:", err)
|
|
|
|
}
|
2017-05-02 17:46:14 +02:00
|
|
|
numaq := len(aq)
|
2017-04-29 19:12:12 +02:00
|
|
|
pq, numpq, err := pac.Search(pkgS)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if numpq == 0 && numaq == 0 {
|
|
|
|
return fmt.Errorf("no packages match search")
|
|
|
|
}
|
|
|
|
|
2017-05-07 03:43:49 +02:00
|
|
|
if config.YayConf.SortMode == config.BottomUp {
|
2017-05-02 17:46:14 +02:00
|
|
|
printAURSearch(aq, numpq)
|
2017-04-29 19:12:12 +02:00
|
|
|
pq.PrintSearch()
|
|
|
|
} else {
|
|
|
|
pq.PrintSearch()
|
2017-05-02 17:46:14 +02:00
|
|
|
printAURSearch(aq, numpq)
|
2017-04-29 19:12:12 +02:00
|
|
|
}
|
|
|
|
|
2017-05-21 15:49:29 +02:00
|
|
|
fmt.Printf("\x1b[32m%s\x1b[0m\nNumbers: ", "Type numbers to install. Separate each number with a space.")
|
2017-04-29 19:12:12 +02:00
|
|
|
reader := bufio.NewReader(os.Stdin)
|
|
|
|
numberBuf, overflow, err := reader.ReadLine()
|
|
|
|
if err != nil || overflow {
|
|
|
|
fmt.Println(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
numberString := string(numberBuf)
|
|
|
|
var aurInstall []string
|
|
|
|
var repoInstall []string
|
|
|
|
result := strings.Fields(numberString)
|
|
|
|
for _, numS := range result {
|
|
|
|
num, err = strconv.Atoi(numS)
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Install package
|
|
|
|
if num > numaq+numpq-1 || num < 0 {
|
|
|
|
continue
|
|
|
|
} else if num > numpq-1 {
|
2017-05-07 03:43:49 +02:00
|
|
|
if config.YayConf.SortMode == config.BottomUp {
|
2017-04-29 19:12:12 +02:00
|
|
|
aurInstall = append(aurInstall, aq[numaq+numpq-num-1].Name)
|
|
|
|
} else {
|
|
|
|
aurInstall = append(aurInstall, aq[num-numpq].Name)
|
|
|
|
}
|
|
|
|
} else {
|
2017-05-07 03:43:49 +02:00
|
|
|
if config.YayConf.SortMode == config.BottomUp {
|
2017-05-07 04:29:01 +02:00
|
|
|
repoInstall = append(repoInstall, pq[numpq-num-1].Name())
|
2017-04-29 19:12:12 +02:00
|
|
|
} else {
|
2017-05-07 04:29:01 +02:00
|
|
|
repoInstall = append(repoInstall, pq[num].Name())
|
2017-04-29 19:12:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(repoInstall) != 0 {
|
2017-05-09 03:09:43 +02:00
|
|
|
err = config.PassToPacman("-S", repoInstall, flags)
|
2017-04-29 19:12:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(aurInstall) != 0 {
|
2017-05-09 03:09:43 +02:00
|
|
|
err = aur.Install(aurInstall, flags)
|
2017-04-29 19:12:12 +02:00
|
|
|
}
|
|
|
|
|
2017-05-09 03:09:43 +02:00
|
|
|
return err
|
2017-04-29 19:12:12 +02:00
|
|
|
}
|