Ensure devel packages exist when updating

This commit is contained in:
morganamilo 2018-07-31 16:58:49 +01:00
parent 892d9cc752
commit 95bcea8f40
No known key found for this signature in database
GPG key ID: 6FE9E7996B0B082E

View file

@ -121,7 +121,7 @@ func upList(warnings *aurWarnings) (aurUp upSlice, repoUp upSlice, err error) {
var repoErr error var repoErr error
var aurErr error var aurErr error
pkgdata := make(map[string]*rpc.Pkg) aurdata := make(map[string]*rpc.Pkg)
if mode == ModeAny || mode == ModeRepo { if mode == ModeAny || mode == ModeRepo {
fmt.Println(bold(cyan("::") + bold(" Searching databases for updates..."))) fmt.Println(bold(cyan("::") + bold(" Searching databases for updates...")))
@ -134,25 +134,34 @@ func upList(warnings *aurWarnings) (aurUp upSlice, repoUp upSlice, err error) {
if mode == ModeAny || mode == ModeAUR { if mode == ModeAny || mode == ModeAUR {
fmt.Println(bold(cyan("::") + bold(" Searching AUR for updates..."))) fmt.Println(bold(cyan("::") + bold(" Searching AUR for updates...")))
wg.Add(1)
go func() {
aurUp, aurErr = upAUR(remote, remoteNames, pkgdata, warnings)
wg.Done()
}()
if config.Devel { var _aurdata []*rpc.Pkg
fmt.Println(bold(cyan("::") + bold(" Checking development packages..."))) _aurdata, aurErr = aurInfo(remoteNames, warnings)
if aurErr == nil {
for _, pkg := range _aurdata {
aurdata[pkg.Name] = pkg
}
wg.Add(1) wg.Add(1)
go func() { go func() {
develUp = upDevel(remote) aurUp, aurErr = upAUR(remote, aurdata)
wg.Done() wg.Done()
}() }()
if config.Devel {
fmt.Println(bold(cyan("::") + bold(" Checking development packages...")))
wg.Add(1)
go func() {
develUp = upDevel(remote, aurdata)
wg.Done()
}()
}
} }
} }
wg.Wait() wg.Wait()
printLocalNewerThanAUR(remote, pkgdata) printLocalNewerThanAUR(remote, aurdata)
errs := make([]string, 0) errs := make([]string, 0)
for _, e := range []error{repoErr, aurErr} { for _, e := range []error{repoErr, aurErr} {
@ -183,7 +192,7 @@ func upList(warnings *aurWarnings) (aurUp upSlice, repoUp upSlice, err error) {
return aurUp, repoUp, err return aurUp, repoUp, err
} }
func upDevel(remote []alpm.Package) (toUpgrade upSlice) { func upDevel(remote []alpm.Package, aurdata map[string]*rpc.Pkg) (toUpgrade upSlice) {
toUpdate := make([]alpm.Package, 0) toUpdate := make([]alpm.Package, 0)
toRemove := make([]string, 0) toRemove := make([]string, 0)
@ -195,12 +204,14 @@ func upDevel(remote []alpm.Package) (toUpgrade upSlice) {
defer wg.Done() defer wg.Done()
if e.needsUpdate() { if e.needsUpdate() {
for _, pkg := range remote { if _, ok := aurdata[vcsName]; ok {
if pkg.Name() == vcsName { for _, pkg := range remote {
mux1.Lock() if pkg.Name() == vcsName {
toUpdate = append(toUpdate, pkg) mux1.Lock()
mux1.Unlock() toUpdate = append(toUpdate, pkg)
return mux1.Unlock()
return
}
} }
} }
@ -231,22 +242,11 @@ func upDevel(remote []alpm.Package) (toUpgrade upSlice) {
// upAUR gathers foreign packages and checks if they have new versions. // upAUR gathers foreign packages and checks if they have new versions.
// Output: Upgrade type package list. // Output: Upgrade type package list.
func upAUR( func upAUR(remote []alpm.Package, aurdata map[string]*rpc.Pkg) (upSlice, error) {
remote []alpm.Package, remoteNames []string,
pkgdata map[string]*rpc.Pkg, warnings *aurWarnings) (upSlice, error) {
toUpgrade := make(upSlice, 0) toUpgrade := make(upSlice, 0)
_pkgdata, err := aurInfo(remoteNames, warnings)
if err != nil {
return nil, err
}
for _, pkg := range _pkgdata {
pkgdata[pkg.Name] = pkg
}
for _, pkg := range remote { for _, pkg := range remote {
aurPkg, ok := pkgdata[pkg.Name()] aurPkg, ok := aurdata[pkg.Name()]
if !ok { if !ok {
continue continue
} }
@ -274,9 +274,9 @@ func printIgnoringPackage(pkg alpm.Package, newPkgVersion string) {
} }
func printLocalNewerThanAUR( func printLocalNewerThanAUR(
remote []alpm.Package, pkgdata map[string]*rpc.Pkg) { remote []alpm.Package, aurdata map[string]*rpc.Pkg) {
for _, pkg := range remote { for _, pkg := range remote {
aurPkg, ok := pkgdata[pkg.Name()] aurPkg, ok := aurdata[pkg.Name()]
if !ok { if !ok {
continue continue
} }