2017-08-02 19:24:03 +02:00
|
|
|
package main
|
|
|
|
|
2017-08-07 15:43:25 +02:00
|
|
|
import (
|
2018-03-16 20:30:14 +01:00
|
|
|
"fmt"
|
2018-03-02 12:32:35 +01:00
|
|
|
"strings"
|
|
|
|
|
2018-01-17 22:48:23 +01:00
|
|
|
alpm "github.com/jguer/go-alpm"
|
2018-01-20 23:37:10 +01:00
|
|
|
rpc "github.com/mikkeloscar/aur"
|
2018-03-15 14:51:37 +01:00
|
|
|
gopkg "github.com/mikkeloscar/gopkgbuild"
|
2017-08-07 15:43:25 +02:00
|
|
|
)
|
2017-08-04 11:26:53 +02:00
|
|
|
|
2018-01-17 22:48:23 +01:00
|
|
|
type depTree struct {
|
2018-02-18 00:35:54 +01:00
|
|
|
ToProcess stringSet
|
2018-01-20 23:37:10 +01:00
|
|
|
Repo map[string]*alpm.Package
|
|
|
|
Aur map[string]*rpc.Pkg
|
|
|
|
Missing stringSet
|
2018-03-16 20:30:14 +01:00
|
|
|
Groups stringSet
|
2018-01-17 22:48:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type depCatagories struct {
|
2018-01-20 23:37:10 +01:00
|
|
|
Repo []*alpm.Package
|
2018-02-16 18:18:59 +01:00
|
|
|
Aur []*rpc.Pkg
|
2018-02-15 22:23:34 +01:00
|
|
|
MakeOnly stringSet
|
2018-02-16 18:18:59 +01:00
|
|
|
Bases map[string][]*rpc.Pkg
|
2018-01-17 22:48:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func makeDepTree() *depTree {
|
|
|
|
dt := depTree{
|
2018-02-18 00:35:54 +01:00
|
|
|
make(stringSet),
|
2018-01-17 22:48:23 +01:00
|
|
|
make(map[string]*alpm.Package),
|
|
|
|
make(map[string]*rpc.Pkg),
|
|
|
|
make(stringSet),
|
2018-03-16 20:30:14 +01:00
|
|
|
make(stringSet),
|
2017-08-02 19:24:03 +02:00
|
|
|
}
|
|
|
|
|
2018-01-17 22:48:23 +01:00
|
|
|
return &dt
|
|
|
|
}
|
|
|
|
|
|
|
|
func makeDependCatagories() *depCatagories {
|
|
|
|
dc := depCatagories{
|
|
|
|
make([]*alpm.Package, 0),
|
|
|
|
make([]*rpc.Pkg, 0),
|
2018-02-15 22:23:34 +01:00
|
|
|
make(stringSet),
|
|
|
|
make(map[string][]*rpc.Pkg),
|
2017-08-02 19:24:03 +02:00
|
|
|
}
|
|
|
|
|
2018-01-17 22:48:23 +01:00
|
|
|
return &dc
|
|
|
|
}
|
|
|
|
|
2018-03-03 03:45:16 +01:00
|
|
|
// Cut the version requirement from a dependency leaving just the name.
|
2018-03-15 15:21:08 +01:00
|
|
|
func splitNameFromDep(dep string) (string, string) {
|
2018-03-17 03:05:16 +01:00
|
|
|
split := strings.FieldsFunc(dep, func(c rune) bool {
|
2018-02-22 22:05:39 +01:00
|
|
|
return c == '>' || c == '<' || c == '='
|
2018-03-15 15:21:08 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
if len(split) == 1 {
|
|
|
|
return split[0], ""
|
|
|
|
}
|
|
|
|
|
|
|
|
return split[0], split[1]
|
2018-01-17 22:48:23 +01:00
|
|
|
}
|
|
|
|
|
2018-03-10 20:14:37 +01:00
|
|
|
//split apart db/package to db and package
|
|
|
|
func splitDbFromName(pkg string) (string, string) {
|
|
|
|
split := strings.SplitN(pkg, "/", 2)
|
|
|
|
|
|
|
|
if len(split) == 2 {
|
|
|
|
return split[0], split[1]
|
|
|
|
}
|
2018-03-19 16:30:44 +01:00
|
|
|
return "", split[0]
|
2018-03-10 20:14:37 +01:00
|
|
|
}
|
|
|
|
|
2018-03-03 03:45:16 +01:00
|
|
|
// Step two of dependency resolving. We already have all the information on the
|
|
|
|
// packages we need, now it's just about ordering them correctly.
|
|
|
|
// pkgs is a list of targets, the packages we want to install. Dependencies are
|
|
|
|
// not included.
|
|
|
|
// For each package we want we iterate down the tree until we hit the bottom.
|
|
|
|
// This is done recursively for each branch.
|
|
|
|
// The start of the tree is defined as the package we want.
|
|
|
|
// When we hit the bottom of the branch we know thats the first package
|
|
|
|
// we need to install so we add it to the start of the to install
|
|
|
|
// list (dc.Aur and dc.Repo).
|
|
|
|
// We work our way up until there is another branch to go down and do it all
|
|
|
|
// again.
|
2018-03-03 02:11:16 +01:00
|
|
|
//
|
2018-03-03 03:45:16 +01:00
|
|
|
// Here is a visual example:
|
2018-03-03 02:11:16 +01:00
|
|
|
//
|
2018-03-03 03:45:16 +01:00
|
|
|
// a
|
|
|
|
// / \
|
|
|
|
// b c
|
2018-03-03 02:11:16 +01:00
|
|
|
// / \
|
2018-03-03 03:45:16 +01:00
|
|
|
// d e
|
2018-03-03 02:11:16 +01:00
|
|
|
//
|
2018-03-03 03:45:16 +01:00
|
|
|
// We see a and it needs b and c
|
|
|
|
// We see b and it needs d and e
|
|
|
|
// We see d - it needs nothing so we add d to our list and move up
|
|
|
|
// We see e - it needs nothing so we add e to our list and move up
|
|
|
|
// We see c - it needs nothing so we add c to our list and move up
|
2018-03-03 02:11:16 +01:00
|
|
|
//
|
2018-03-03 03:45:16 +01:00
|
|
|
// The final install order would come out as debca
|
2018-03-03 02:11:16 +01:00
|
|
|
//
|
2018-03-03 03:45:16 +01:00
|
|
|
// There is a little more to this, handling provides, multiple packages wanting the
|
|
|
|
// same dependencies, etc. This is just the basic premise.
|
2018-01-17 22:48:23 +01:00
|
|
|
func getDepCatagories(pkgs []string, dt *depTree) (*depCatagories, error) {
|
|
|
|
dc := makeDependCatagories()
|
2018-02-15 22:23:34 +01:00
|
|
|
seen := make(stringSet)
|
2018-01-17 22:48:23 +01:00
|
|
|
|
2018-02-27 21:57:11 +01:00
|
|
|
for _, pkg := range dt.Aur {
|
|
|
|
_, ok := dc.Bases[pkg.PackageBase]
|
|
|
|
if !ok {
|
|
|
|
dc.Bases[pkg.PackageBase] = make([]*rpc.Pkg, 0)
|
|
|
|
}
|
|
|
|
dc.Bases[pkg.PackageBase] = append(dc.Bases[pkg.PackageBase], pkg)
|
|
|
|
}
|
|
|
|
|
2018-01-17 22:48:23 +01:00
|
|
|
for _, pkg := range pkgs {
|
2018-03-10 20:14:37 +01:00
|
|
|
_, name := splitDbFromName(pkg)
|
2018-03-15 15:21:08 +01:00
|
|
|
dep, _ := splitNameFromDep(name)
|
2018-01-17 22:48:23 +01:00
|
|
|
alpmpkg, exists := dt.Repo[dep]
|
|
|
|
if exists {
|
|
|
|
repoDepCatagoriesRecursive(alpmpkg, dc, dt, false)
|
|
|
|
dc.Repo = append(dc.Repo, alpmpkg)
|
|
|
|
delete(dt.Repo, dep)
|
|
|
|
}
|
|
|
|
|
|
|
|
aurpkg, exists := dt.Aur[dep]
|
|
|
|
if exists {
|
2018-02-15 22:23:34 +01:00
|
|
|
depCatagoriesRecursive(aurpkg, dc, dt, false, seen)
|
|
|
|
if !seen.get(aurpkg.PackageBase) {
|
|
|
|
dc.Aur = append(dc.Aur, aurpkg)
|
|
|
|
seen.set(aurpkg.PackageBase)
|
|
|
|
}
|
|
|
|
|
2018-01-17 22:48:23 +01:00
|
|
|
delete(dt.Aur, dep)
|
|
|
|
}
|
2017-08-02 19:24:03 +02:00
|
|
|
}
|
|
|
|
|
2018-02-16 17:27:53 +01:00
|
|
|
for _, base := range dc.Bases {
|
|
|
|
for _, pkg := range base {
|
|
|
|
for _, dep := range pkg.Depends {
|
|
|
|
dc.MakeOnly.remove(dep)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, pkg := range dc.Repo {
|
|
|
|
pkg.Depends().ForEach(func(_dep alpm.Depend) error {
|
|
|
|
dep := _dep.Name
|
|
|
|
dc.MakeOnly.remove(dep)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
2018-02-15 22:23:34 +01:00
|
|
|
|
2018-03-12 19:49:03 +01:00
|
|
|
for _, pkg := range pkgs {
|
|
|
|
dc.MakeOnly.remove(pkg)
|
|
|
|
}
|
|
|
|
|
2018-03-01 15:52:57 +01:00
|
|
|
dupes := make(map[*alpm.Package]struct{})
|
|
|
|
filteredRepo := make([]*alpm.Package, 0)
|
|
|
|
|
|
|
|
for _, pkg := range dc.Repo {
|
|
|
|
_, ok := dupes[pkg]
|
|
|
|
if ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
dupes[pkg] = struct{}{}
|
|
|
|
filteredRepo = append(filteredRepo, pkg)
|
|
|
|
}
|
|
|
|
|
|
|
|
dc.Repo = filteredRepo
|
|
|
|
|
2018-01-17 22:48:23 +01:00
|
|
|
return dc, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func repoDepCatagoriesRecursive(pkg *alpm.Package, dc *depCatagories, dt *depTree, isMake bool) {
|
|
|
|
pkg.Depends().ForEach(func(_dep alpm.Depend) error {
|
|
|
|
dep := _dep.Name
|
|
|
|
alpmpkg, exists := dt.Repo[dep]
|
|
|
|
if exists {
|
|
|
|
delete(dt.Repo, dep)
|
|
|
|
repoDepCatagoriesRecursive(alpmpkg, dc, dt, isMake)
|
2018-01-20 23:37:10 +01:00
|
|
|
|
2018-01-17 22:48:23 +01:00
|
|
|
if isMake {
|
2018-02-15 22:23:34 +01:00
|
|
|
dc.MakeOnly.set(alpmpkg.Name())
|
2018-01-17 22:48:23 +01:00
|
|
|
}
|
|
|
|
|
2018-02-15 22:23:34 +01:00
|
|
|
dc.Repo = append(dc.Repo, alpmpkg)
|
2017-08-02 19:24:03 +02:00
|
|
|
}
|
|
|
|
|
2018-01-17 22:48:23 +01:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-02-27 21:57:11 +01:00
|
|
|
func depCatagoriesRecursive(_pkg *rpc.Pkg, dc *depCatagories, dt *depTree, isMake bool, seen stringSet) {
|
|
|
|
for _, pkg := range dc.Bases[_pkg.PackageBase] {
|
|
|
|
for _, deps := range [3][]string{pkg.Depends, pkg.MakeDepends, pkg.CheckDepends} {
|
|
|
|
for _, _dep := range deps {
|
2018-03-15 15:21:08 +01:00
|
|
|
dep, _ := splitNameFromDep(_dep)
|
2018-02-27 21:57:11 +01:00
|
|
|
|
|
|
|
aurpkg, exists := dt.Aur[dep]
|
|
|
|
if exists {
|
|
|
|
delete(dt.Aur, dep)
|
|
|
|
depCatagoriesRecursive(aurpkg, dc, dt, isMake, seen)
|
|
|
|
|
|
|
|
if !seen.get(aurpkg.PackageBase) {
|
|
|
|
dc.Aur = append(dc.Aur, aurpkg)
|
|
|
|
seen.set(aurpkg.PackageBase)
|
|
|
|
}
|
|
|
|
|
|
|
|
if isMake {
|
|
|
|
dc.MakeOnly.set(aurpkg.Name)
|
|
|
|
}
|
2018-02-15 22:23:34 +01:00
|
|
|
}
|
|
|
|
|
2018-02-27 21:57:11 +01:00
|
|
|
alpmpkg, exists := dt.Repo[dep]
|
|
|
|
if exists {
|
|
|
|
delete(dt.Repo, dep)
|
|
|
|
repoDepCatagoriesRecursive(alpmpkg, dc, dt, isMake)
|
2018-01-17 22:48:23 +01:00
|
|
|
|
2018-02-27 21:57:11 +01:00
|
|
|
if isMake {
|
|
|
|
dc.MakeOnly.set(alpmpkg.Name())
|
|
|
|
}
|
2018-01-17 22:48:23 +01:00
|
|
|
|
2018-02-27 21:57:11 +01:00
|
|
|
dc.Repo = append(dc.Repo, alpmpkg)
|
2018-01-17 22:48:23 +01:00
|
|
|
}
|
|
|
|
|
2017-08-02 19:24:03 +02:00
|
|
|
}
|
2018-02-27 21:57:11 +01:00
|
|
|
isMake = true
|
2017-08-02 19:24:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-03 03:45:16 +01:00
|
|
|
// This is step one for dependency resolving. pkgs is a slice of the packages you
|
|
|
|
// want to resolve the dependencies for. They can be a mix of aur and repo
|
|
|
|
// dependencies. All unmet dependencies will be resolved.
|
|
|
|
//
|
|
|
|
// For Aur dependencies depends, makedepends and checkdepends are resolved but
|
|
|
|
// for repo packages only depends are resolved as they are prebuilt.
|
|
|
|
// The return will be split into three catagories: Repo, Aur and Missing.
|
|
|
|
// The return is in no way ordered. This step is is just aimed at gathering the
|
|
|
|
// packages we need.
|
|
|
|
//
|
|
|
|
// This has been designed to make the least amount of rpc requests as possible.
|
|
|
|
// Web requests are probably going to be the bottleneck here so minimizing them
|
|
|
|
// provides a nice speed boost.
|
2018-03-03 02:11:16 +01:00
|
|
|
//
|
2018-03-03 03:45:16 +01:00
|
|
|
// Here is a visual expample of the request system.
|
|
|
|
// Remember only unsatisfied packages are requested, if a package is already
|
|
|
|
// installed we dont bother.
|
2018-03-03 02:11:16 +01:00
|
|
|
//
|
|
|
|
// a
|
|
|
|
// / \
|
|
|
|
// b c
|
|
|
|
// / \
|
|
|
|
// d e
|
|
|
|
//
|
2018-03-03 03:45:16 +01:00
|
|
|
// We see a so we send a request for a
|
|
|
|
// We see a wants b and c so we send a request for b and c
|
|
|
|
// We see d and e so we send a request for d and e
|
2018-03-03 02:11:16 +01:00
|
|
|
//
|
2018-03-03 03:45:16 +01:00
|
|
|
// Thats 5 packages in 3 requests. The amount of requests needed should always be
|
|
|
|
// the same as the height of the tree.
|
|
|
|
// The example does not really do this justice, In the real world where packages
|
|
|
|
// have 10+ dependencies each this is a very nice optimization.
|
2018-01-17 22:48:23 +01:00
|
|
|
func getDepTree(pkgs []string) (*depTree, error) {
|
|
|
|
dt := makeDepTree()
|
|
|
|
|
2017-10-18 04:38:19 +02:00
|
|
|
localDb, err := alpmHandle.LocalDb()
|
2017-08-02 19:24:03 +02:00
|
|
|
if err != nil {
|
2018-01-17 22:48:23 +01:00
|
|
|
return dt, err
|
2017-08-02 19:24:03 +02:00
|
|
|
}
|
2018-01-17 22:48:23 +01:00
|
|
|
syncDb, err := alpmHandle.SyncDbs()
|
2017-08-02 19:24:03 +02:00
|
|
|
if err != nil {
|
2018-01-17 22:48:23 +01:00
|
|
|
return dt, err
|
2017-08-02 19:24:03 +02:00
|
|
|
}
|
|
|
|
|
2018-01-20 23:37:10 +01:00
|
|
|
for _, pkg := range pkgs {
|
2018-03-10 20:14:37 +01:00
|
|
|
db, name := splitDbFromName(pkg)
|
2018-03-16 20:30:14 +01:00
|
|
|
var foundPkg *alpm.Package
|
|
|
|
var singleDb *alpm.Db
|
2018-03-10 20:14:37 +01:00
|
|
|
|
2018-03-13 22:36:42 +01:00
|
|
|
if db == "aur" {
|
|
|
|
dt.ToProcess.set(name)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2018-03-03 03:45:16 +01:00
|
|
|
// Check the repos for a matching dep
|
2018-03-16 20:30:14 +01:00
|
|
|
if db != "" {
|
|
|
|
singleDb, err = alpmHandle.SyncDbByName(db)
|
|
|
|
if err != nil {
|
|
|
|
return dt, err
|
|
|
|
}
|
|
|
|
foundPkg, err = singleDb.PkgCache().FindSatisfier(name)
|
|
|
|
} else {
|
|
|
|
foundPkg, err = syncDb.FindSatisfier(name)
|
2017-08-02 19:24:03 +02:00
|
|
|
}
|
2018-01-20 23:37:10 +01:00
|
|
|
|
2018-03-16 20:30:14 +01:00
|
|
|
if err == nil {
|
|
|
|
repoTreeRecursive(foundPkg, dt, localDb, syncDb)
|
2018-02-27 21:37:52 +01:00
|
|
|
continue
|
2018-03-16 20:30:14 +01:00
|
|
|
} else {
|
|
|
|
//would be better to check the groups from singleDb if
|
|
|
|
//the user specified a db but theres no easy way to do
|
|
|
|
//it without making alpm_lists so dont bother for now
|
|
|
|
//db/group is probably a rare use case
|
|
|
|
_, err := syncDb.PkgCachebyGroup(name)
|
|
|
|
|
|
|
|
if err == nil {
|
|
|
|
dt.Groups.set(pkg)
|
|
|
|
continue
|
|
|
|
}
|
2018-02-27 21:37:52 +01:00
|
|
|
}
|
|
|
|
|
2018-03-13 22:36:42 +01:00
|
|
|
if db == "" {
|
2018-03-10 20:14:37 +01:00
|
|
|
dt.ToProcess.set(name)
|
|
|
|
} else {
|
|
|
|
dt.Missing.set(pkg)
|
|
|
|
}
|
2017-08-02 19:24:03 +02:00
|
|
|
}
|
|
|
|
|
2018-03-16 20:30:14 +01:00
|
|
|
if len(dt.ToProcess) > 0 {
|
|
|
|
fmt.Println(bold(cyan("::") + " Querying AUR..."))
|
|
|
|
}
|
|
|
|
|
2018-02-18 00:35:54 +01:00
|
|
|
err = depTreeRecursive(dt, localDb, syncDb, false)
|
2018-03-15 14:51:37 +01:00
|
|
|
if err != nil {
|
|
|
|
return dt, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !cmdArgs.existsArg("d", "nodeps") {
|
|
|
|
err = checkVersions(dt)
|
|
|
|
}
|
2018-01-17 22:48:23 +01:00
|
|
|
|
|
|
|
return dt, err
|
2017-08-02 19:24:03 +02:00
|
|
|
}
|
2017-08-07 15:43:25 +02:00
|
|
|
|
2018-03-03 03:45:16 +01:00
|
|
|
// Takes a repo package,
|
|
|
|
// gives all of the non installed deps,
|
|
|
|
// repeats on each sub dep.
|
2018-01-20 23:37:10 +01:00
|
|
|
func repoTreeRecursive(pkg *alpm.Package, dt *depTree, localDb *alpm.Db, syncDb alpm.DbList) (err error) {
|
2018-01-17 22:48:23 +01:00
|
|
|
_, exists := dt.Repo[pkg.Name()]
|
|
|
|
if exists {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
dt.Repo[pkg.Name()] = pkg
|
2018-03-01 15:30:16 +01:00
|
|
|
(*pkg).Provides().ForEach(func(dep alpm.Depend) (err error) {
|
2018-01-22 11:59:15 +01:00
|
|
|
dt.Repo[dep.Name] = pkg
|
|
|
|
return nil
|
2018-03-01 15:30:16 +01:00
|
|
|
})
|
2018-01-17 22:48:23 +01:00
|
|
|
|
|
|
|
(*pkg).Depends().ForEach(func(dep alpm.Depend) (err error) {
|
|
|
|
_, exists := dt.Repo[dep.Name]
|
|
|
|
if exists {
|
2017-08-07 15:43:25 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-01-17 22:48:23 +01:00
|
|
|
_, isInstalled := localDb.PkgCache().FindSatisfier(dep.String())
|
|
|
|
if isInstalled == nil {
|
|
|
|
return
|
2018-01-20 23:37:10 +01:00
|
|
|
}
|
|
|
|
|
2018-01-17 22:48:23 +01:00
|
|
|
repoPkg, inRepos := syncDb.FindSatisfier(dep.String())
|
|
|
|
if inRepos == nil {
|
|
|
|
repoTreeRecursive(repoPkg, dt, localDb, syncDb)
|
|
|
|
return
|
2017-08-07 15:43:25 +02:00
|
|
|
}
|
2018-01-17 22:48:23 +01:00
|
|
|
|
2018-02-13 18:52:33 +01:00
|
|
|
dt.Missing.set(dep.String())
|
|
|
|
|
2018-01-17 22:48:23 +01:00
|
|
|
return
|
|
|
|
})
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func depTreeRecursive(dt *depTree, localDb *alpm.Db, syncDb alpm.DbList, isMake bool) (err error) {
|
2018-02-18 00:35:54 +01:00
|
|
|
if len(dt.ToProcess) == 0 {
|
|
|
|
return
|
|
|
|
}
|
2018-01-17 22:48:23 +01:00
|
|
|
|
2018-02-18 00:35:54 +01:00
|
|
|
nextProcess := make(stringSet)
|
|
|
|
currentProcess := make(stringSet)
|
2018-03-03 03:45:16 +01:00
|
|
|
// Strip version conditions
|
2018-03-15 15:21:08 +01:00
|
|
|
for _dep := range dt.ToProcess {
|
|
|
|
dep, _ := splitNameFromDep(_dep)
|
|
|
|
currentProcess.set(dep)
|
2018-01-17 22:48:23 +01:00
|
|
|
}
|
|
|
|
|
2018-03-03 03:45:16 +01:00
|
|
|
// Assume toprocess only contains aur stuff we have not seen
|
2018-02-18 00:35:54 +01:00
|
|
|
info, err := aurInfo(currentProcess.toSlice())
|
|
|
|
|
2018-01-17 22:48:23 +01:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-03-03 03:45:16 +01:00
|
|
|
// Cache the results
|
2018-01-17 22:48:23 +01:00
|
|
|
for _, pkg := range info {
|
2018-03-03 03:45:16 +01:00
|
|
|
// Copying to p fixes a bug.
|
|
|
|
// Would rather not copy but cant find another way to fix.
|
2018-01-17 22:48:23 +01:00
|
|
|
p := pkg
|
|
|
|
dt.Aur[pkg.Name] = &p
|
|
|
|
|
2017-08-07 15:43:25 +02:00
|
|
|
}
|
|
|
|
|
2018-03-03 03:45:16 +01:00
|
|
|
// Loop through to process and check if we now have
|
|
|
|
// each packaged cached.
|
|
|
|
// If not cached, we assume it is missing.
|
2018-02-18 00:35:54 +01:00
|
|
|
for pkgName := range currentProcess {
|
2018-01-17 22:48:23 +01:00
|
|
|
pkg, exists := dt.Aur[pkgName]
|
|
|
|
|
2018-03-03 03:45:16 +01:00
|
|
|
// Did not get it in the request.
|
2018-01-17 22:48:23 +01:00
|
|
|
if !exists {
|
2018-02-18 00:35:54 +01:00
|
|
|
dt.Missing.set(pkgName)
|
2018-01-17 22:48:23 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2018-03-03 03:45:16 +01:00
|
|
|
// for each dep and makedep
|
2018-02-19 18:53:03 +01:00
|
|
|
for _, deps := range [3][]string{pkg.Depends, pkg.MakeDepends, pkg.CheckDepends} {
|
2018-01-17 22:48:23 +01:00
|
|
|
for _, versionedDep := range deps {
|
2018-03-15 15:21:08 +01:00
|
|
|
dep, _ := splitNameFromDep(versionedDep)
|
2018-01-17 22:48:23 +01:00
|
|
|
|
|
|
|
_, exists = dt.Aur[dep]
|
2018-03-03 03:45:16 +01:00
|
|
|
// We have it cached so skip.
|
2018-01-17 22:48:23 +01:00
|
|
|
if exists {
|
|
|
|
continue
|
|
|
|
}
|
2018-01-20 23:37:10 +01:00
|
|
|
|
2018-01-17 22:48:23 +01:00
|
|
|
_, exists = dt.Repo[dep]
|
2018-03-03 03:45:16 +01:00
|
|
|
// We have it cached so skip.
|
2018-01-17 22:48:23 +01:00
|
|
|
if exists {
|
|
|
|
continue
|
|
|
|
}
|
2018-01-20 23:37:10 +01:00
|
|
|
|
2018-01-17 22:48:23 +01:00
|
|
|
_, exists = dt.Missing[dep]
|
2018-03-03 03:45:16 +01:00
|
|
|
// We know it does not resolve so skip.
|
2018-01-17 22:48:23 +01:00
|
|
|
if exists {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2018-03-03 03:45:16 +01:00
|
|
|
// Check if already installed.
|
2018-01-17 22:48:23 +01:00
|
|
|
_, isInstalled := localDb.PkgCache().FindSatisfier(versionedDep)
|
2018-03-14 02:48:33 +01:00
|
|
|
if isInstalled == nil && config.ReBuild != "tree" {
|
2018-01-17 22:48:23 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2018-03-03 03:45:16 +01:00
|
|
|
// Check the repos for a matching dep.
|
2018-01-17 22:48:23 +01:00
|
|
|
repoPkg, inRepos := syncDb.FindSatisfier(versionedDep)
|
|
|
|
if inRepos == nil {
|
2018-03-14 02:48:33 +01:00
|
|
|
if isInstalled == nil && config.ReBuild == "tree" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2018-01-17 22:48:23 +01:00
|
|
|
repoTreeRecursive(repoPkg, dt, localDb, syncDb)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2018-03-03 03:45:16 +01:00
|
|
|
// If all else fails add it to next search.
|
2018-02-18 00:35:54 +01:00
|
|
|
nextProcess.set(versionedDep)
|
2018-01-17 22:48:23 +01:00
|
|
|
}
|
2017-08-07 15:43:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-17 22:48:23 +01:00
|
|
|
dt.ToProcess = nextProcess
|
|
|
|
depTreeRecursive(dt, localDb, syncDb, true)
|
2018-01-20 23:37:10 +01:00
|
|
|
|
2017-08-07 15:43:25 +02:00
|
|
|
return
|
|
|
|
}
|
2018-03-15 14:51:37 +01:00
|
|
|
|
|
|
|
func checkVersions(dt *depTree) error {
|
|
|
|
depStrings := make([]string, 0)
|
2018-03-17 03:05:16 +01:00
|
|
|
has := make(map[string][]string)
|
2018-03-22 17:39:27 +01:00
|
|
|
|
2018-03-15 14:51:37 +01:00
|
|
|
for _, pkg := range dt.Aur {
|
|
|
|
for _, deps := range [3][]string{pkg.Depends, pkg.MakeDepends, pkg.CheckDepends} {
|
|
|
|
for _, dep := range deps {
|
2018-03-17 03:05:16 +01:00
|
|
|
_, _dep := splitNameFromDep(dep)
|
|
|
|
if _dep != "" {
|
|
|
|
depStrings = append(depStrings, dep)
|
|
|
|
}
|
2018-03-15 14:51:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-22 16:40:33 +01:00
|
|
|
addMapStringSlice(has, pkg.Name, pkg.Version)
|
2018-03-15 14:51:37 +01:00
|
|
|
|
|
|
|
for _, name := range pkg.Provides {
|
|
|
|
_name, _ver := splitNameFromDep(name)
|
|
|
|
if _ver != "" {
|
2018-03-22 16:40:33 +01:00
|
|
|
addMapStringSlice(has, _name, _ver)
|
2018-03-17 03:05:16 +01:00
|
|
|
} else {
|
|
|
|
delete(has, _name)
|
2018-03-15 14:51:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, pkg := range dt.Repo {
|
|
|
|
pkg.Depends().ForEach(func(dep alpm.Depend) error {
|
|
|
|
if dep.Mod != alpm.DepModAny {
|
2018-03-17 03:05:16 +01:00
|
|
|
depStrings = append(depStrings, dep.String())
|
2018-03-15 14:51:37 +01:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
2018-03-22 16:40:33 +01:00
|
|
|
addMapStringSlice(has, pkg.Name(), pkg.Version())
|
2018-03-15 14:51:37 +01:00
|
|
|
|
|
|
|
pkg.Provides().ForEach(func(dep alpm.Depend) error {
|
|
|
|
if dep.Mod != alpm.DepModAny {
|
2018-03-22 16:40:33 +01:00
|
|
|
addMapStringSlice(has, dep.Name, dep.Version)
|
2018-03-17 03:05:16 +01:00
|
|
|
} else {
|
|
|
|
delete(has, dep.Name)
|
2018-03-15 14:51:37 +01:00
|
|
|
}
|
2018-03-17 03:05:16 +01:00
|
|
|
|
2018-03-15 14:51:37 +01:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
deps, _ := gopkg.ParseDeps(depStrings)
|
|
|
|
|
|
|
|
for _, dep := range deps {
|
2018-03-17 03:05:16 +01:00
|
|
|
satisfied := false
|
|
|
|
verStrs, ok := has[dep.Name]
|
2018-03-15 14:51:37 +01:00
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2018-03-17 03:05:16 +01:00
|
|
|
for _, verStr := range verStrs {
|
|
|
|
version, err := gopkg.NewCompleteVersion(verStr)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if version.Satisfies(dep) {
|
|
|
|
satisfied = true
|
|
|
|
break
|
|
|
|
}
|
2018-03-15 14:51:37 +01:00
|
|
|
}
|
|
|
|
|
2018-03-17 03:05:16 +01:00
|
|
|
if !satisfied {
|
2018-03-15 14:51:37 +01:00
|
|
|
dt.Missing.set(dep.String())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|