mirror of
https://github.com/Jguer/yay
synced 2024-10-31 04:12:51 +00:00
Use go-alpm for ignorepkg/ignoregroup
This commit is contained in:
parent
32ecd8b1dd
commit
0fb4b3bab3
1 changed files with 22 additions and 31 deletions
51
upgrade.go
51
upgrade.go
|
@ -141,37 +141,23 @@ loop:
|
|||
return
|
||||
}
|
||||
|
||||
func isIgnored(name string, groups []string, oldVersion string, newVersion string) bool {
|
||||
for _, p := range alpmConf.IgnorePkg {
|
||||
if p == name {
|
||||
fmt.Printf("\x1b[33mwarning:\x1b[0m %s (ignored pkg) ignoring upgrade (%s -> %s)\n", name, oldVersion, newVersion)
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
for _, g := range alpmConf.IgnoreGroup {
|
||||
for _, pg := range groups {
|
||||
if g == pg {
|
||||
fmt.Printf("\x1b[33mwarning:\x1b[0m %s (ignored pkg) ignoring upgrade (%s -> %s)\n", name, oldVersion, newVersion)
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func upDevel(remoteNames []string, packageC chan upgrade, done chan bool) {
|
||||
func upDevel(remote []alpm.Package, packageC chan upgrade, done chan bool) {
|
||||
for _, e := range savedInfo {
|
||||
if e.needsUpdate() {
|
||||
found := false
|
||||
for _, r := range remoteNames {
|
||||
if r == e.Package {
|
||||
var pkg alpm.Package
|
||||
for _, r := range remote {
|
||||
if r.Name() == e.Package {
|
||||
found = true
|
||||
pkg = r
|
||||
}
|
||||
}
|
||||
if found && !isIgnored(e.Package, nil, e.SHA[0:6], "git") {
|
||||
packageC <- upgrade{e.Package, "devel", e.SHA[0:6], "git"}
|
||||
if found {
|
||||
if pkg.ShouldIgnore() {
|
||||
fmt.Printf("\x1b[33mwarning:\x1b[0m %s ignoring package upgrade (%s => %s)\n", pkg.Name(), pkg.Version(), "git")
|
||||
} else {
|
||||
packageC <- upgrade{e.Package, "devel", e.SHA[0:6], "git"}
|
||||
}
|
||||
} else {
|
||||
removeVCSPackage([]string{e.Package})
|
||||
}
|
||||
|
@ -192,7 +178,7 @@ func upAUR(remote []alpm.Package, remoteNames []string) (toUpgrade upSlice, err
|
|||
|
||||
if config.Devel {
|
||||
routines++
|
||||
go upDevel(remoteNames, packageC, done)
|
||||
go upDevel(remote, packageC, done)
|
||||
fmt.Println("\x1b[1;36;1m::\x1b[0m\x1b[1m Checking development packages...\x1b[0m")
|
||||
}
|
||||
|
||||
|
@ -224,7 +210,9 @@ func upAUR(remote []alpm.Package, remoteNames []string) (toUpgrade upSlice, err
|
|||
} else if qtemp[x].Name == local[i].Name() {
|
||||
if (config.TimeUpdate && (int64(qtemp[x].LastModified) > local[i].BuildDate().Unix())) ||
|
||||
(alpm.VerCmp(local[i].Version(), qtemp[x].Version) < 0) {
|
||||
if !isIgnored(local[i].Name(), local[i].Groups().Slice(), local[i].Version(), qtemp[x].Version) {
|
||||
if local[i].ShouldIgnore() {
|
||||
fmt.Printf("\x1b[33mwarning:\x1b[0m %s ignoring package upgrade (%s => %s)\n", local[i].Name(), local[i].Version(), qtemp[x].Version)
|
||||
} else {
|
||||
packageC <- upgrade{qtemp[x].Name, "aur", local[i].Version(), qtemp[x].Version}
|
||||
}
|
||||
}
|
||||
|
@ -268,9 +256,12 @@ func upRepo(local []alpm.Package) (upSlice, error) {
|
|||
|
||||
for _, pkg := range local {
|
||||
newPkg := pkg.NewVersion(dbList)
|
||||
|
||||
if newPkg != nil && !isIgnored(pkg.Name(), pkg.Groups().Slice(), pkg.Version(), newPkg.Version()) {
|
||||
slice = append(slice, upgrade{pkg.Name(), newPkg.DB().Name(), pkg.Version(), newPkg.Version()})
|
||||
if newPkg != nil {
|
||||
if pkg.ShouldIgnore() {
|
||||
fmt.Printf("\x1b[33mwarning:\x1b[0m %s ignoring package upgrade (%s => %s)\n", pkg.Name(), pkg.Version(), newPkg.Version())
|
||||
} else {
|
||||
slice = append(slice, upgrade{pkg.Name(), newPkg.DB().Name(), pkg.Version(), newPkg.Version()})
|
||||
}
|
||||
}
|
||||
}
|
||||
return slice, nil
|
||||
|
|
Loading…
Reference in a new issue