2017-08-01 18:43:20 +02:00
|
|
|
package main
|
2017-07-14 19:03:54 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"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"
|
2018-04-05 14:33:31 +02:00
|
|
|
"unicode"
|
2017-07-14 19:03:54 +02:00
|
|
|
|
2019-04-23 17:53:20 +02:00
|
|
|
alpm "github.com/Jguer/go-alpm"
|
2020-05-04 09:24:32 +02:00
|
|
|
"github.com/leonelquinteros/gotext"
|
2020-05-02 16:17:20 +02:00
|
|
|
|
2020-06-13 19:29:50 +02:00
|
|
|
"github.com/Jguer/yay/v10/pkg/intrange"
|
2020-07-05 02:01:08 +02:00
|
|
|
"github.com/Jguer/yay/v10/pkg/query"
|
2020-07-05 02:45:23 +02:00
|
|
|
"github.com/Jguer/yay/v10/pkg/settings"
|
2020-06-13 19:29:50 +02:00
|
|
|
"github.com/Jguer/yay/v10/pkg/text"
|
2019-10-16 23:36:08 +02:00
|
|
|
|
2020-05-02 16:17:20 +02:00
|
|
|
rpc "github.com/mikkeloscar/aur"
|
|
|
|
|
2020-06-13 19:29:50 +02:00
|
|
|
"github.com/Jguer/yay/v10/pkg/multierror"
|
|
|
|
"github.com/Jguer/yay/v10/pkg/stringset"
|
2017-07-14 19:03:54 +02:00
|
|
|
)
|
|
|
|
|
2017-08-01 18:43:20 +02:00
|
|
|
// upgrade type describes a system upgrade.
|
|
|
|
type upgrade struct {
|
2017-07-14 19:03:54 +02:00
|
|
|
Name string
|
|
|
|
Repository string
|
|
|
|
LocalVersion string
|
|
|
|
RemoteVersion string
|
|
|
|
}
|
|
|
|
|
2017-10-14 18:11:47 +02:00
|
|
|
// upSlice is a slice of Upgrades
|
2017-08-01 18:43:20 +02:00
|
|
|
type upSlice []upgrade
|
2017-07-18 00:44:46 +02:00
|
|
|
|
2017-08-01 18:43:20 +02:00
|
|
|
func (u upSlice) Len() int { return len(u) }
|
|
|
|
func (u upSlice) Swap(i, j int) { u[i], u[j] = u[j], u[i] }
|
2017-07-18 00:44:46 +02:00
|
|
|
|
2017-08-01 18:43:20 +02:00
|
|
|
func (u upSlice) Less(i, j int) bool {
|
2018-03-26 03:28:31 +02:00
|
|
|
if u[i].Repository == u[j].Repository {
|
|
|
|
iRunes := []rune(u[i].Name)
|
|
|
|
jRunes := []rune(u[j].Name)
|
2020-07-10 02:36:45 +02:00
|
|
|
return text.LessRunes(iRunes, jRunes)
|
2018-03-26 03:28:31 +02:00
|
|
|
}
|
|
|
|
|
2020-07-05 16:58:35 +02:00
|
|
|
syncDB, err := config.Runtime.AlpmHandle.SyncDBs()
|
2018-03-26 03:28:31 +02:00
|
|
|
if err != nil {
|
2018-03-20 23:34:06 +01:00
|
|
|
iRunes := []rune(u[i].Repository)
|
|
|
|
jRunes := []rune(u[j].Repository)
|
2020-07-10 02:36:45 +02:00
|
|
|
return text.LessRunes(iRunes, jRunes)
|
2018-03-26 03:28:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
less := false
|
2019-02-04 17:56:02 +01:00
|
|
|
found := syncDB.ForEach(func(db alpm.DB) error {
|
2019-03-04 17:07:04 +01:00
|
|
|
switch db.Name() {
|
|
|
|
case u[i].Repository:
|
2018-03-26 03:28:31 +02:00
|
|
|
less = true
|
2019-03-04 17:07:04 +01:00
|
|
|
case u[j].Repository:
|
2018-03-26 03:28:31 +02:00
|
|
|
less = false
|
2019-03-04 17:07:04 +01:00
|
|
|
default:
|
2018-03-26 03:28:31 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Errorf("")
|
|
|
|
})
|
|
|
|
|
|
|
|
if found != nil {
|
|
|
|
return less
|
2018-03-20 23:34:06 +01:00
|
|
|
}
|
2018-03-26 03:28:31 +02:00
|
|
|
|
2018-04-08 00:20:15 +02:00
|
|
|
iRunes := []rune(u[i].Repository)
|
|
|
|
jRunes := []rune(u[j].Repository)
|
2020-07-10 02:36:45 +02:00
|
|
|
return text.LessRunes(iRunes, jRunes)
|
2018-03-20 23:34:06 +01:00
|
|
|
}
|
2017-07-18 00:44:46 +02:00
|
|
|
|
2018-07-16 16:28:18 +02:00
|
|
|
func getVersionDiff(oldVersion, newVersion string) (left, right string) {
|
|
|
|
if oldVersion == newVersion {
|
2018-08-04 15:22:49 +02:00
|
|
|
return oldVersion + red(""), newVersion + green("")
|
2018-02-21 09:41:25 +01:00
|
|
|
}
|
|
|
|
|
2018-07-16 16:28:18 +02:00
|
|
|
diffPosition := 0
|
2018-04-05 14:33:31 +02:00
|
|
|
|
2018-07-16 16:28:18 +02:00
|
|
|
checkWords := func(str string, index int, words ...string) bool {
|
|
|
|
for _, word := range words {
|
|
|
|
wordLength := len(word)
|
|
|
|
nextIndex := index + 1
|
|
|
|
if (index < len(str)-wordLength) &&
|
|
|
|
(str[nextIndex:(nextIndex+wordLength)] == word) {
|
|
|
|
return true
|
2018-04-05 14:33:31 +02:00
|
|
|
}
|
2018-02-19 18:01:19 +01:00
|
|
|
}
|
2018-07-16 16:28:18 +02:00
|
|
|
return false
|
|
|
|
}
|
2018-04-05 14:33:31 +02:00
|
|
|
|
2018-07-16 16:28:18 +02:00
|
|
|
for index, char := range oldVersion {
|
|
|
|
charIsSpecial := !(unicode.IsLetter(char) || unicode.IsNumber(char))
|
2018-04-05 14:33:31 +02:00
|
|
|
|
2018-07-16 16:28:18 +02:00
|
|
|
if (index >= len(newVersion)) || (char != rune(newVersion[index])) {
|
|
|
|
if charIsSpecial {
|
|
|
|
diffPosition = index
|
2018-04-05 14:33:31 +02:00
|
|
|
}
|
2018-07-16 16:28:18 +02:00
|
|
|
break
|
|
|
|
}
|
2018-04-05 14:33:31 +02:00
|
|
|
|
2018-07-16 16:28:18 +02:00
|
|
|
if charIsSpecial ||
|
|
|
|
(((index == len(oldVersion)-1) || (index == len(newVersion)-1)) &&
|
|
|
|
((len(oldVersion) != len(newVersion)) ||
|
|
|
|
(oldVersion[index] == newVersion[index]))) ||
|
|
|
|
checkWords(oldVersion, index, "rc", "pre", "alpha", "beta") {
|
|
|
|
diffPosition = index + 1
|
2018-04-05 14:33:31 +02:00
|
|
|
}
|
2018-07-16 16:28:18 +02:00
|
|
|
}
|
2018-04-05 14:33:31 +02:00
|
|
|
|
2018-07-16 16:28:18 +02:00
|
|
|
samePart := oldVersion[0:diffPosition]
|
2018-04-05 14:33:31 +02:00
|
|
|
|
2018-07-16 16:28:18 +02:00
|
|
|
left = samePart + red(oldVersion[diffPosition:])
|
|
|
|
right = samePart + green(newVersion[diffPosition:])
|
2018-02-19 18:01:19 +01:00
|
|
|
|
2020-05-02 16:17:20 +02:00
|
|
|
return left, right
|
2018-02-19 18:01:19 +01:00
|
|
|
}
|
|
|
|
|
2017-10-14 18:11:47 +02:00
|
|
|
// upList returns lists of packages to upgrade from each source.
|
2020-07-10 02:36:45 +02:00
|
|
|
func upList(warnings *query.AURWarnings, alpmHandle *alpm.Handle, enableDowngrade bool) (aurUp, repoUp upSlice, err error) {
|
2020-07-27 01:24:28 +02:00
|
|
|
remote, remoteNames, err := query.GetRemotePackages(alpmHandle)
|
2017-07-14 19:03:54 +02:00
|
|
|
if err != nil {
|
2018-03-20 17:20:09 +01:00
|
|
|
return nil, nil, err
|
2017-07-14 19:03:54 +02:00
|
|
|
}
|
|
|
|
|
2018-03-20 17:20:09 +01:00
|
|
|
var wg sync.WaitGroup
|
|
|
|
var develUp upSlice
|
2019-10-16 23:38:54 +02:00
|
|
|
var errs multierror.MultiError
|
2017-07-14 19:03:54 +02:00
|
|
|
|
2018-07-31 17:58:49 +02:00
|
|
|
aurdata := make(map[string]*rpc.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())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-05 02:45:23 +02:00
|
|
|
if config.Runtime.Mode == settings.ModeAny || config.Runtime.Mode == settings.ModeRepo {
|
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)
|
|
|
|
go func() {
|
2020-07-08 03:22:01 +02:00
|
|
|
repoUp, err = upRepo(alpmHandle, enableDowngrade)
|
2018-08-02 18:14:57 +02:00
|
|
|
errs.Add(err)
|
2018-03-20 17:20:09 +01:00
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2020-07-05 02:45:23 +02:00
|
|
|
if config.Runtime.Mode == settings.ModeAny || config.Runtime.Mode == settings.ModeAUR {
|
2020-05-04 09:24:32 +02:00
|
|
|
text.OperationInfoln(gotext.Get("Searching AUR for updates..."))
|
2018-05-31 17:23:15 +02:00
|
|
|
|
2018-07-31 17:58:49 +02:00
|
|
|
var _aurdata []*rpc.Pkg
|
2020-07-10 02:36:45 +02:00
|
|
|
_aurdata, err = query.AURInfo(remoteNames, warnings, config.RequestSplitN)
|
2018-08-02 18:14:57 +02:00
|
|
|
errs.Add(err)
|
|
|
|
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)
|
|
|
|
go func() {
|
2020-05-02 16:17:20 +02:00
|
|
|
aurUp = upAUR(remote, aurdata)
|
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)
|
|
|
|
go func() {
|
|
|
|
develUp = upDevel(remote, aurdata)
|
|
|
|
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)
|
2018-05-08 08:51:49 +02:00
|
|
|
|
2018-03-20 17:20:09 +01:00
|
|
|
if develUp != nil {
|
2019-10-16 23:25:40 +02:00
|
|
|
names := make(stringset.StringSet)
|
2018-03-21 00:04:28 +01:00
|
|
|
for _, up := range develUp {
|
2019-10-05 19:39:31 +02:00
|
|
|
names.Set(up.Name)
|
2018-03-21 00:04:28 +01:00
|
|
|
}
|
|
|
|
for _, up := range aurUp {
|
2019-10-05 19:39:31 +02:00
|
|
|
if !names.Get(up.Name) {
|
2018-03-21 00:04:28 +01:00
|
|
|
develUp = append(develUp, up)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
aurUp = develUp
|
2018-03-20 17:20:09 +01:00
|
|
|
}
|
|
|
|
|
2018-08-02 18:14:57 +02:00
|
|
|
return aurUp, repoUp, errs.Return()
|
2017-07-14 19:03:54 +02:00
|
|
|
}
|
|
|
|
|
2020-05-02 16:17:20 +02:00
|
|
|
func upDevel(remote []alpm.Package, aurdata map[string]*rpc.Pkg) upSlice {
|
2018-04-27 02:25:40 +02:00
|
|
|
toUpdate := make([]alpm.Package, 0)
|
|
|
|
toRemove := make([]string, 0)
|
2018-03-08 22:34:12 +01:00
|
|
|
|
|
|
|
var mux1 sync.Mutex
|
|
|
|
var mux2 sync.Mutex
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
|
|
|
|
checkUpdate := func(vcsName string, e shaInfos) {
|
|
|
|
defer wg.Done()
|
|
|
|
|
2017-10-18 04:12:16 +02:00
|
|
|
if e.needsUpdate() {
|
2018-07-31 17:58:49 +02:00
|
|
|
if _, ok := aurdata[vcsName]; ok {
|
|
|
|
for _, pkg := range remote {
|
|
|
|
if pkg.Name() == vcsName {
|
|
|
|
mux1.Lock()
|
|
|
|
toUpdate = append(toUpdate, pkg)
|
|
|
|
mux1.Unlock()
|
|
|
|
return
|
|
|
|
}
|
2017-10-18 07:46:21 +02:00
|
|
|
}
|
|
|
|
}
|
2018-03-08 22:34:12 +01:00
|
|
|
|
|
|
|
mux2.Lock()
|
|
|
|
toRemove = append(toRemove, vcsName)
|
|
|
|
mux2.Unlock()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for vcsName, e := range savedInfo {
|
|
|
|
wg.Add(1)
|
|
|
|
go checkUpdate(vcsName, e)
|
|
|
|
}
|
|
|
|
|
|
|
|
wg.Wait()
|
|
|
|
|
2020-05-02 16:17:20 +02:00
|
|
|
toUpgrade := make(upSlice, 0, len(toUpdate))
|
2018-03-08 22:34:12 +01:00
|
|
|
for _, pkg := range toUpdate {
|
|
|
|
if pkg.ShouldIgnore() {
|
2018-05-08 08:51:49 +02:00
|
|
|
printIgnoringPackage(pkg, "latest-commit")
|
2018-03-08 22:34:12 +01:00
|
|
|
} else {
|
2018-03-20 17:20:09 +01:00
|
|
|
toUpgrade = append(toUpgrade, upgrade{pkg.Name(), "devel", pkg.Version(), "latest-commit"})
|
2017-10-18 04:12:16 +02:00
|
|
|
}
|
|
|
|
}
|
2018-03-08 22:34:12 +01:00
|
|
|
|
|
|
|
removeVCSPackage(toRemove)
|
2020-05-02 16:17:20 +02:00
|
|
|
return toUpgrade
|
2017-10-18 04:12:16 +02:00
|
|
|
}
|
|
|
|
|
2017-10-14 18:11:47 +02:00
|
|
|
// upAUR gathers foreign packages and checks if they have new versions.
|
2017-07-14 19:03:54 +02:00
|
|
|
// Output: Upgrade type package list.
|
2020-05-02 16:17:20 +02:00
|
|
|
func upAUR(remote []alpm.Package, aurdata map[string]*rpc.Pkg) upSlice {
|
2018-03-29 04:42:11 +02:00
|
|
|
toUpgrade := make(upSlice, 0)
|
|
|
|
|
2018-03-20 17:20:09 +01:00
|
|
|
for _, pkg := range remote {
|
2018-07-31 17:58:49 +02:00
|
|
|
aurPkg, ok := aurdata[pkg.Name()]
|
2018-03-20 17:20:09 +01:00
|
|
|
if !ok {
|
|
|
|
continue
|
2018-02-19 00:46:25 +01:00
|
|
|
}
|
|
|
|
|
2018-03-20 17:20:09 +01:00
|
|
|
if (config.TimeUpdate && (int64(aurPkg.LastModified) > pkg.BuildDate().Unix())) ||
|
|
|
|
(alpm.VerCmp(pkg.Version(), aurPkg.Version) < 0) {
|
|
|
|
if pkg.ShouldIgnore() {
|
2018-05-08 08:51:49 +02:00
|
|
|
printIgnoringPackage(pkg, aurPkg.Version)
|
2018-03-20 17:20:09 +01:00
|
|
|
} else {
|
|
|
|
toUpgrade = append(toUpgrade, upgrade{aurPkg.Name, "aur", pkg.Version(), aurPkg.Version})
|
2017-07-14 19:03:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-03-20 17:20:09 +01:00
|
|
|
|
2020-05-02 16:17:20 +02:00
|
|
|
return toUpgrade
|
2017-07-14 19:03:54 +02:00
|
|
|
}
|
|
|
|
|
2018-05-08 08:51:49 +02:00
|
|
|
func printIgnoringPackage(pkg alpm.Package, newPkgVersion string) {
|
|
|
|
left, right := getVersionDiff(pkg.Version(), newPkgVersion)
|
|
|
|
|
2020-05-04 09:24:32 +02:00
|
|
|
text.Warnln(gotext.Get("%s: ignoring package upgrade (%s => %s)",
|
2018-07-31 01:19:21 +02:00
|
|
|
cyan(pkg.Name()),
|
|
|
|
left, right,
|
2020-05-04 09:24:32 +02:00
|
|
|
))
|
2018-05-08 08:51:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func printLocalNewerThanAUR(
|
2018-07-31 17:58:49 +02:00
|
|
|
remote []alpm.Package, aurdata map[string]*rpc.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
|
|
|
|
}
|
|
|
|
|
|
|
|
left, right := getVersionDiff(pkg.Version(), aurPkg.Version)
|
|
|
|
|
2020-03-14 21:30:27 +01:00
|
|
|
if !isDevelPackage(pkg) && alpm.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)",
|
2018-08-04 15:22:49 +02:00
|
|
|
cyan(pkg.Name()),
|
|
|
|
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 {
|
|
|
|
for _, suffix := range []string{"git", "svn", "hg", "bzr", "nightly"} {
|
|
|
|
if strings.HasSuffix(name, "-"+suffix) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return strings.Contains(name, "-always-")
|
|
|
|
}
|
|
|
|
|
|
|
|
func isDevelPackage(pkg alpm.Package) bool {
|
|
|
|
return isDevelName(pkg.Name()) || isDevelName(pkg.Base())
|
|
|
|
}
|
|
|
|
|
2017-10-14 18:11:47 +02:00
|
|
|
// upRepo gathers local packages and checks if they have new versions.
|
2017-07-14 19:03:54 +02:00
|
|
|
// Output: Upgrade type package list.
|
2020-07-08 03:22:01 +02:00
|
|
|
func upRepo(alpmHandle *alpm.Handle, enableDowngrade bool) (upSlice, error) {
|
2018-07-25 03:04:17 +02:00
|
|
|
slice := upSlice{}
|
|
|
|
|
2019-02-04 17:56:02 +01:00
|
|
|
localDB, err := alpmHandle.LocalDB()
|
2017-07-14 19:03:54 +02:00
|
|
|
if err != nil {
|
2018-07-25 03:04:17 +02:00
|
|
|
return slice, err
|
2017-07-14 19:03:54 +02:00
|
|
|
}
|
|
|
|
|
2018-07-25 03:04:17 +02:00
|
|
|
err = alpmHandle.TransInit(alpm.TransFlagNoLock)
|
|
|
|
if err != nil {
|
|
|
|
return slice, err
|
|
|
|
}
|
2017-10-18 04:38:19 +02:00
|
|
|
|
2019-10-13 13:15:51 +02:00
|
|
|
defer func() {
|
|
|
|
err = alpmHandle.TransRelease()
|
|
|
|
}()
|
2018-07-25 03:04:17 +02:00
|
|
|
|
2020-07-08 03:22:01 +02:00
|
|
|
err = alpmHandle.SyncSysupgrade(enableDowngrade)
|
2019-10-13 13:15:51 +02:00
|
|
|
if err != nil {
|
|
|
|
return slice, err
|
|
|
|
}
|
|
|
|
_ = alpmHandle.TransGetAdd().ForEach(func(pkg alpm.Package) error {
|
2018-07-25 03:04:17 +02:00
|
|
|
localVer := "-"
|
|
|
|
|
2019-02-14 21:44:39 +01:00
|
|
|
if localPkg := localDB.Pkg(pkg.Name()); localPkg != nil {
|
2018-07-25 03:04:17 +02:00
|
|
|
localVer = localPkg.Version()
|
2017-07-14 19:03:54 +02:00
|
|
|
}
|
2018-07-25 03:04:17 +02:00
|
|
|
|
|
|
|
slice = append(slice, upgrade{
|
|
|
|
pkg.Name(),
|
|
|
|
pkg.DB().Name(),
|
|
|
|
localVer,
|
|
|
|
pkg.Version(),
|
|
|
|
})
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
2017-07-14 19:03:54 +02:00
|
|
|
return slice, nil
|
|
|
|
}
|
2017-08-01 18:43:20 +02:00
|
|
|
|
2017-10-14 18:11:47 +02:00
|
|
|
// upgradePkgs handles updating the cache and installing updates.
|
2020-05-02 16:17:20 +02:00
|
|
|
func upgradePkgs(aurUp, repoUp upSlice) (ignore, aurNames stringset.StringSet, err error) {
|
|
|
|
ignore = make(stringset.StringSet)
|
|
|
|
aurNames = make(stringset.StringSet)
|
2018-02-19 00:46:25 +01:00
|
|
|
|
2018-05-02 17:46:21 +02:00
|
|
|
allUpLen := len(repoUp) + len(aurUp)
|
|
|
|
if allUpLen == 0 {
|
2018-03-29 04:42:11 +02:00
|
|
|
return ignore, aurNames, nil
|
2017-08-01 18:43:20 +02:00
|
|
|
}
|
|
|
|
|
2018-06-11 20:48:20 +02:00
|
|
|
if !config.UpgradeMenu {
|
|
|
|
for _, pkg := range aurUp {
|
2019-10-05 19:39:31 +02:00
|
|
|
aurNames.Set(pkg.Name)
|
2018-06-11 20:48:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return ignore, aurNames, nil
|
|
|
|
}
|
|
|
|
|
2017-08-01 18:43:20 +02:00
|
|
|
sort.Sort(repoUp)
|
2018-03-20 23:34:06 +01:00
|
|
|
sort.Sort(aurUp)
|
2018-05-02 17:46:21 +02:00
|
|
|
allUp := append(repoUp, aurUp...)
|
2020-05-30 00:43:18 +02:00
|
|
|
fmt.Printf("%s"+bold(" %d ")+"%s\n", bold(cyan("::")), allUpLen, bold(gotext.Get("Packages to upgrade.")))
|
2018-05-20 17:17:05 +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
|
|
|
|
2018-04-04 22:26:07 +02:00
|
|
|
numbers, err := getInput(config.AnswerUpgrade)
|
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
|
|
|
|
|
|
|
|
for i, pkg := range repoUp {
|
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
|
|
|
|
2019-10-05 20:23:13 +02:00
|
|
|
if isInclude && !include.Get(len(repoUp)-i+len(aurUp)) {
|
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
|
|
|
|
2019-10-05 20:23:13 +02:00
|
|
|
if !isInclude && (exclude.Get(len(repoUp)-i+len(aurUp)) || otherExclude.Get(pkg.Repository)) {
|
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
|
|
|
}
|
|
|
|
|
2018-03-09 04:41:45 +01:00
|
|
|
for i, pkg := range aurUp {
|
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
|
|
|
}
|
|
|
|
|
2019-10-05 20:23:13 +02:00
|
|
|
if isInclude && !include.Get(len(aurUp)-i) {
|
2019-10-05 19:39:31 +02:00
|
|
|
aurNames.Set(pkg.Name)
|
2018-03-09 04:41:45 +01:00
|
|
|
}
|
|
|
|
|
2019-10-05 20:23:13 +02:00
|
|
|
if !isInclude && (exclude.Get(len(aurUp)-i) || otherExclude.Get(pkg.Repository)) {
|
2019-10-05 19:39:31 +02:00
|
|
|
aurNames.Set(pkg.Name)
|
2017-08-01 18:43:20 +02:00
|
|
|
}
|
|
|
|
}
|
2018-01-20 23:37:10 +01:00
|
|
|
|
2018-03-21 17:30:00 +01:00
|
|
|
return ignore, aurNames, err
|
2017-08-01 18:43:20 +02:00
|
|
|
}
|