mirror of
https://github.com/Jguer/yay.git
synced 2024-11-06 09:07:21 +01:00
New install algorithm
I have replaced the old install and dependancy algorithms with a new design that attemps to be more pacaur like. Mostly in minimizing user input. Ask every thing first then do everything with no need for more user input. It is not yet fully complete but is finished enough so that it works, should not fail in most cases and provides a base for more contributors to help address the existing problems. The new install chain is as follows: Source info about the provided targets Fetch a list of all dependancies needed to install targets I put alot of effort into fetching the dependancy tree while making the least amount of aur requests as possible. I'm actually very happy with how it turned out and yay wil now resolve dependancies noticably faster than pacaur when there are many aur dependancies. Install repo targets by passing to pacman Print dependancy tree and ask to confirm Ask to clean build if directory already exists Download all pkgbuilds Ask to edit all pkgbuilds Ask to continue with the install Download the sources for each packagebuild Build and install every package using -s to get repo deps and -i to install Ask to remove make dependancies There are still a lot of things that need to be done for a fully working system. Here are the problems I found with this system, either new or existing: Formating I am not so good at formatting myself, I thought best to leave it until last so I could get feedback on how it should look and help implementing it. Dependancy tree The dependancy tree is usually correct although I have noticed times where it doesnt detect all the dependancies that it should. I have only noticed this when there are circular dependancies so i think this might be the cause. It's not a big deal currently because makepkg -i installed repo deps for us which handles the repo deps for us and will get the correct ones. So yay might not list all the dependancies. but they will get installed so I consider this a visual bug. I have yet to see any circular dependancies in the AUR so I can not say what will happend but I#m guessing that it will break. Versioned packages/dependencies Targets and dependancies with version constriants such as 'linux>=4.1' will not be checked on the aur side of things but will be checked on the repo side. Ignorepkg/Ignoregroup Currently I do not handle this in any way but it shouldn't be too hard to implement. Conflict checking This is not currently implemented either Split Paclages Split packages are not Handles properly. If we only specify one package so install from a split package makepkg -i ends up installing them all anyway. If we specify more than one (n) package it will actually build the package base n times and reinstall every split package n times. Makepkg To get things working I decided to keep using the makepkg -i method. I plan to eventually replace this with a pacman -U based method. This should allow passing args such as --dbpath and --config to aur packages aswell as help solve some problems such as the split packages. Clean build I plan to improve the clean build choice to be a little more smart and instead of check if the directory exists, check if the package is already build and if so skip the build all together.
This commit is contained in:
parent
61065dc930
commit
3275f8d8ac
14
cmd.go
14
cmd.go
@ -626,16 +626,10 @@ func numberMenu(pkgS []string, flags []string) (err error) {
|
||||
aurI = removeListFromList(aurNI, aurI)
|
||||
repoI = removeListFromList(repoNI, repoI)
|
||||
|
||||
if len(repoI) != 0 {
|
||||
arguments := makeArguments()
|
||||
arguments.addArg("S")
|
||||
arguments.addTarget(repoI...)
|
||||
err = passToPacman(arguments)
|
||||
}
|
||||
|
||||
if len(aurI) != 0 {
|
||||
err = aurInstall(aurI, nil)
|
||||
}
|
||||
arguments := makeArguments()
|
||||
arguments.addTarget(repoI...)
|
||||
arguments.addTarget(aurI...)
|
||||
err = install(arguments)
|
||||
|
||||
return err
|
||||
}
|
||||
|
331
dependencies.go
331
dependencies.go
@ -1,119 +1,290 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
rpc "github.com/mikkeloscar/aur"
|
||||
alpm "github.com/jguer/go-alpm"
|
||||
)
|
||||
|
||||
// BuildDependencies finds packages, on the second run
|
||||
// compares with a baselist and avoids searching those
|
||||
func buildDependencies(baselist []string) func(toCheck []string, isBaseList bool, last bool) (repo []string, notFound []string) {
|
||||
localDb, err := alpmHandle.LocalDb()
|
||||
if err != nil {
|
||||
panic(err)
|
||||
type depTree struct {
|
||||
ToProcess []string
|
||||
Repo map[string]*alpm.Package
|
||||
Aur map[string]*rpc.Pkg
|
||||
Missing stringSet
|
||||
}
|
||||
|
||||
type depCatagories struct {
|
||||
Repo []*alpm.Package
|
||||
RepoMake []*alpm.Package
|
||||
Aur []*rpc.Pkg
|
||||
AurMake []*rpc.Pkg
|
||||
}
|
||||
|
||||
func makeDepTree() *depTree {
|
||||
dt := depTree{
|
||||
make([]string, 0),
|
||||
make(map[string]*alpm.Package),
|
||||
make(map[string]*rpc.Pkg),
|
||||
make(stringSet),
|
||||
}
|
||||
|
||||
dbList, err := alpmHandle.SyncDbs()
|
||||
if err != nil {
|
||||
panic(err)
|
||||
return &dt
|
||||
}
|
||||
|
||||
func makeDependCatagories() *depCatagories {
|
||||
dc := depCatagories{
|
||||
make([]*alpm.Package, 0),
|
||||
make([]*alpm.Package, 0),
|
||||
make([]*rpc.Pkg, 0),
|
||||
make([]*rpc.Pkg, 0),
|
||||
}
|
||||
|
||||
f := func(c rune) bool {
|
||||
return &dc
|
||||
}
|
||||
|
||||
func getNameFromDep(dep string) string {
|
||||
return strings.FieldsFunc(dep, func(c rune) bool {
|
||||
return c == '>' || c == '<' || c == '=' || c == ' '
|
||||
}
|
||||
})[0]
|
||||
}
|
||||
|
||||
return func(toCheck []string, isBaseList bool, close bool) (repo []string, notFound []string) {
|
||||
if close {
|
||||
return
|
||||
func getDepCatagories(pkgs []string, dt *depTree) (*depCatagories, error) {
|
||||
dc := makeDependCatagories()
|
||||
|
||||
for _, pkg := range pkgs {
|
||||
dep := getNameFromDep(pkg)
|
||||
alpmpkg, exists := dt.Repo[dep]
|
||||
if exists {
|
||||
repoDepCatagoriesRecursive(alpmpkg, dc, dt, false)
|
||||
dc.Repo = append(dc.Repo, alpmpkg)
|
||||
delete(dt.Repo, dep)
|
||||
}
|
||||
|
||||
Loop:
|
||||
for _, dep := range toCheck {
|
||||
if !isBaseList {
|
||||
for _, base := range baselist {
|
||||
if base == dep {
|
||||
continue Loop
|
||||
}
|
||||
}
|
||||
}
|
||||
if _, erp := localDb.PkgCache().FindSatisfier(dep); erp == nil {
|
||||
continue
|
||||
} else if pkg, erp := dbList.FindSatisfier(dep); erp == nil {
|
||||
repo = append(repo, pkg.Name())
|
||||
aurpkg, exists := dt.Aur[dep]
|
||||
if exists {
|
||||
depCatagoriesRecursive(aurpkg, dc, dt, false)
|
||||
dc.Aur = append(dc.Aur, aurpkg)
|
||||
delete(dt.Aur, dep)
|
||||
}
|
||||
}
|
||||
|
||||
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)
|
||||
|
||||
if isMake {
|
||||
dc.RepoMake = append(dc.RepoMake, alpmpkg)
|
||||
} else {
|
||||
field := strings.FieldsFunc(dep, f)
|
||||
notFound = append(notFound, field[0])
|
||||
dc.Repo = append(dc.Repo, alpmpkg)
|
||||
}
|
||||
|
||||
}
|
||||
return
|
||||
|
||||
return nil
|
||||
})
|
||||
}
|
||||
|
||||
func depCatagoriesRecursive(pkg *rpc.Pkg, dc *depCatagories, dt *depTree, isMake bool) {
|
||||
for _, deps := range [2][]string{pkg.Depends, pkg.MakeDepends} {
|
||||
for _, _dep := range deps {
|
||||
dep := getNameFromDep(_dep)
|
||||
|
||||
aurpkg, exists := dt.Aur[dep]
|
||||
if exists {
|
||||
delete(dt.Aur, dep)
|
||||
depCatagoriesRecursive(aurpkg, dc, dt, isMake)
|
||||
|
||||
if isMake {
|
||||
dc.AurMake = append(dc.AurMake, aurpkg)
|
||||
} else {
|
||||
dc.Aur = append(dc.Aur, aurpkg)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
alpmpkg, exists := dt.Repo[dep]
|
||||
if exists {
|
||||
delete(dt.Repo, dep)
|
||||
repoDepCatagoriesRecursive(alpmpkg, dc, dt, isMake)
|
||||
|
||||
if isMake {
|
||||
dc.RepoMake = append(dc.RepoMake, alpmpkg)
|
||||
} else {
|
||||
dc.Repo = append(dc.Repo, alpmpkg)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
isMake = true
|
||||
}
|
||||
}
|
||||
|
||||
// DepSatisfier receives a string slice, returns a slice of packages found in
|
||||
// repos and one of packages not found in repos. Leaves out installed packages.
|
||||
func depSatisfier(toCheck []string) (repo []string, notFound []string, err error) {
|
||||
func getDepTree(pkgs []string) (*depTree, error) {
|
||||
dt := makeDepTree()
|
||||
|
||||
localDb, err := alpmHandle.LocalDb()
|
||||
if err != nil {
|
||||
return dt, err
|
||||
}
|
||||
syncDb, err := alpmHandle.SyncDbs()
|
||||
if err != nil {
|
||||
return dt, err
|
||||
}
|
||||
|
||||
for _,pkg := range pkgs {
|
||||
//if they explicitly asked for it still look for installed pkgs
|
||||
/*installedPkg, isInstalled := localDb.PkgCache().FindSatisfier(pkg)
|
||||
if isInstalled == nil {
|
||||
dt.Repo[installedPkg.Name()] = installedPkg
|
||||
continue
|
||||
}//*/
|
||||
|
||||
//check the repos for a matching dep
|
||||
repoPkg, inRepos := syncDb.FindSatisfier(pkg)
|
||||
if inRepos == nil {
|
||||
repoTreeRecursive(repoPkg, dt, localDb, syncDb)
|
||||
continue
|
||||
}
|
||||
|
||||
dt.ToProcess = append(dt.ToProcess, pkg)
|
||||
}
|
||||
|
||||
if len(dt.ToProcess) > 0 {
|
||||
err = depTreeRecursive(dt, localDb, syncDb, false)
|
||||
}
|
||||
|
||||
return dt, err
|
||||
}
|
||||
|
||||
|
||||
|
||||
//takes a repo package
|
||||
//gives all of the non installed deps
|
||||
//does again on each sub dep
|
||||
func repoTreeRecursive(pkg *alpm.Package, dt *depTree, localDb *alpm.Db, syncDb alpm.DbList) (err error){
|
||||
_, exists := dt.Repo[pkg.Name()]
|
||||
if exists {
|
||||
return
|
||||
}
|
||||
dbList, err := alpmHandle.SyncDbs()
|
||||
|
||||
dt.Repo[pkg.Name()] = pkg
|
||||
|
||||
(*pkg).Depends().ForEach(func(dep alpm.Depend) (err error) {
|
||||
_, exists := dt.Repo[dep.Name]
|
||||
if exists {
|
||||
return
|
||||
}
|
||||
|
||||
_, isInstalled := localDb.PkgCache().FindSatisfier(dep.String())
|
||||
if isInstalled == nil {
|
||||
return
|
||||
}
|
||||
|
||||
repoPkg, inRepos := syncDb.FindSatisfier(dep.String())
|
||||
if inRepos == nil {
|
||||
repoTreeRecursive(repoPkg, dt, localDb, syncDb)
|
||||
return
|
||||
} else {
|
||||
dt.Missing.set(dep.String())
|
||||
}
|
||||
|
||||
return
|
||||
})
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
func depTreeRecursive(dt *depTree, localDb *alpm.Db, syncDb alpm.DbList, isMake bool) (err error) {
|
||||
nextProcess := make([]string, 0)
|
||||
currentProcess := make([]string, 0, len(dt.ToProcess))
|
||||
|
||||
//strip version conditions
|
||||
for _, dep := range dt.ToProcess {
|
||||
currentProcess = append(currentProcess, getNameFromDep(dep))
|
||||
}
|
||||
|
||||
//assume toprocess only contains aur stuff we have not seen
|
||||
info, err := rpc.Info(currentProcess)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
f := func(c rune) bool {
|
||||
return c == '>' || c == '<' || c == '=' || c == ' '
|
||||
//cache the results
|
||||
for _, pkg := range info {
|
||||
//copying to p fixes a bug
|
||||
//would rather not copy but cant find another way to fix
|
||||
p := pkg
|
||||
dt.Aur[pkg.Name] = &p
|
||||
|
||||
}
|
||||
|
||||
for _, dep := range toCheck {
|
||||
if _, erp := localDb.PkgCache().FindSatisfier(dep); erp == nil {
|
||||
//loop through to process and check if we now have
|
||||
//each packaged cached
|
||||
//if its not cached we assume its missing
|
||||
for k, pkgName := range currentProcess {
|
||||
pkg, exists := dt.Aur[pkgName]
|
||||
|
||||
//didnt get it in the request
|
||||
if !exists {
|
||||
dt.Missing.set(dt.ToProcess[k])
|
||||
continue
|
||||
} else if pkg, erp := dbList.FindSatisfier(dep); erp == nil {
|
||||
repo = append(repo, pkg.Name())
|
||||
} else {
|
||||
field := strings.FieldsFunc(dep, f)
|
||||
notFound = append(notFound, field[0])
|
||||
}
|
||||
|
||||
//for reach dep and makedep
|
||||
for _, deps := range [2][]string{pkg.Depends, pkg.MakeDepends} {
|
||||
for _, versionedDep := range deps {
|
||||
dep := getNameFromDep(versionedDep)
|
||||
|
||||
_, exists = dt.Aur[dep]
|
||||
//we have it cached so skip
|
||||
if exists {
|
||||
continue
|
||||
}
|
||||
|
||||
_, exists = dt.Repo[dep]
|
||||
//we have it cached so skip
|
||||
if exists {
|
||||
continue
|
||||
}
|
||||
|
||||
_, exists = dt.Missing[dep]
|
||||
//we know it doesnt resolve so skip
|
||||
if exists {
|
||||
continue
|
||||
}
|
||||
|
||||
//check if already installed
|
||||
_, isInstalled := localDb.PkgCache().FindSatisfier(versionedDep)
|
||||
if isInstalled == nil {
|
||||
continue
|
||||
}
|
||||
|
||||
//check the repos for a matching dep
|
||||
repoPkg, inRepos := syncDb.FindSatisfier(versionedDep)
|
||||
if inRepos == nil {
|
||||
repoTreeRecursive(repoPkg, dt, localDb, syncDb)
|
||||
continue
|
||||
}
|
||||
|
||||
|
||||
//if all else failes add it to next search
|
||||
nextProcess = append(nextProcess, versionedDep)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
err = nil
|
||||
dt.ToProcess = nextProcess
|
||||
depTreeRecursive(dt, localDb, syncDb, true)
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
// PkgDependencies returns package dependencies not installed belonging to AUR
|
||||
// 0 is Repo, 1 is Foreign.
|
||||
func pkgDependencies(a *rpc.Pkg) (runDeps [2][]string, makeDeps [2][]string, err error) {
|
||||
var q aurQuery
|
||||
if len(a.Depends) == 0 && len(a.MakeDepends) == 0 {
|
||||
q, err = rpc.Info([]string{a.Name})
|
||||
if len(q) == 0 || err != nil {
|
||||
err = fmt.Errorf("Unable to search dependencies, %s", err)
|
||||
return
|
||||
}
|
||||
} else {
|
||||
q = append(q, *a)
|
||||
}
|
||||
|
||||
depSearch := buildDependencies(a.Depends)
|
||||
if len(a.Depends) != 0 {
|
||||
runDeps[0], runDeps[1] = depSearch(q[0].Depends, true, false)
|
||||
if len(runDeps[0]) != 0 || len(runDeps[1]) != 0 {
|
||||
fmt.Println("\x1b[1;32m=>\x1b[1;33m Run Dependencies: \x1b[0m")
|
||||
printDeps(runDeps[0], runDeps[1])
|
||||
}
|
||||
}
|
||||
|
||||
if len(a.MakeDepends) != 0 {
|
||||
makeDeps[0], makeDeps[1] = depSearch(q[0].MakeDepends, false, false)
|
||||
if len(makeDeps[0]) != 0 || len(makeDeps[1]) != 0 {
|
||||
fmt.Println("\x1b[1;32m=>\x1b[1;33m Make Dependencies: \x1b[0m")
|
||||
printDeps(makeDeps[0], makeDeps[1])
|
||||
}
|
||||
}
|
||||
depSearch(a.MakeDepends, false, true)
|
||||
|
||||
err = nil
|
||||
return
|
||||
}
|
||||
|
338
install.go
338
install.go
@ -1,17 +1,28 @@
|
||||
package main
|
||||
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
"os/exec"
|
||||
"strconv"
|
||||
|
||||
rpc "github.com/mikkeloscar/aur"
|
||||
gopkg "github.com/mikkeloscar/gopkgbuild"
|
||||
alpm "github.com/jguer/go-alpm"
|
||||
)
|
||||
|
||||
// Install handles package installs
|
||||
// Install handles package installs
|
||||
func install(parser *arguments) error {
|
||||
aurs, repos, _ := packageSlices(parser.targets.toSlice())
|
||||
aurs, repos, missing, err := packageSlices(parser.targets.toSlice())
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if len(missing) > 0 {
|
||||
fmt.Println(missing)
|
||||
return fmt.Errorf("Could not find all Targets")
|
||||
}
|
||||
|
||||
arguments := parser.copy()
|
||||
arguments.delArg("u", "sysupgrade")
|
||||
@ -27,147 +38,216 @@ func install(parser *arguments) error {
|
||||
}
|
||||
|
||||
if len(aurs) != 0 {
|
||||
err := aurInstall(aurs, []string{})
|
||||
//todo make pretty
|
||||
fmt.Println("Resolving Dependencies")
|
||||
|
||||
dt, err := getDepTree(aurs)
|
||||
if err != nil {
|
||||
fmt.Println("Error installing aur packages.")
|
||||
return err
|
||||
}
|
||||
|
||||
if len(dt.Missing) > 0 {
|
||||
fmt.Println(dt.Missing)
|
||||
return fmt.Errorf("Could not find all Deps")
|
||||
}
|
||||
|
||||
dc, err := getDepCatagories(aurs, dt)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
for _, pkg := range dc.AurMake {
|
||||
if pkg.Maintainer == "" {
|
||||
fmt.Printf("\x1b[1;31;40m==> Warning:\x1b[0;;40m %s is orphaned.\x1b[0m\n", pkg.Name + "-" + pkg.Version)
|
||||
}
|
||||
}
|
||||
|
||||
for _, pkg := range dc.Aur {
|
||||
if pkg.Maintainer == "" {
|
||||
fmt.Printf("\x1b[1;31;40m==> Warning:\x1b[0;;40m %s is orphaned.\x1b[0m\n", pkg.Name + "-" + pkg.Version)
|
||||
}
|
||||
}
|
||||
|
||||
fmt.Println()
|
||||
|
||||
|
||||
p1 := func(a []*alpm.Package) {
|
||||
for _, v := range a {
|
||||
fmt.Print(" ", v.Name())
|
||||
}
|
||||
}
|
||||
|
||||
p2 := func(a []*rpc.Pkg) {
|
||||
for _, v := range a {
|
||||
fmt.Print(" ", v.Name)
|
||||
}
|
||||
}
|
||||
|
||||
fmt.Print("Repo (" + strconv.Itoa(len(dc.Repo)) + "):")
|
||||
p1(dc.Repo)
|
||||
fmt.Println()
|
||||
|
||||
fmt.Print("Repo Make (" + strconv.Itoa(len(dc.RepoMake)) + "):")
|
||||
p1(dc.RepoMake)
|
||||
fmt.Println()
|
||||
|
||||
fmt.Print("Aur (" + strconv.Itoa(len(dc.Aur)) + "):")
|
||||
p2(dc.Aur)
|
||||
fmt.Println()
|
||||
|
||||
fmt.Print("Aur Make (" + strconv.Itoa(len(dc.AurMake)) + "):")
|
||||
p2(dc.AurMake)
|
||||
fmt.Println()
|
||||
|
||||
fmt.Println()
|
||||
|
||||
askCleanBuilds(dc.AurMake)
|
||||
askCleanBuilds(dc.Aur)
|
||||
|
||||
fmt.Println()
|
||||
|
||||
if !continueTask("Proceed with download?", "nN") {
|
||||
return fmt.Errorf("Aborting due to user")
|
||||
}
|
||||
|
||||
err = dowloadPkgBuilds(dc.AurMake)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
err = dowloadPkgBuilds(dc.Aur)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
askEditPkgBuilds(dc.AurMake)
|
||||
askEditPkgBuilds(dc.Aur)
|
||||
|
||||
if !continueTask("Proceed with install?", "nN") {
|
||||
return fmt.Errorf("Aborting due to user")
|
||||
}
|
||||
|
||||
err = downloadPkgBuildsSources(dc.AurMake)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
err = downloadPkgBuildsSources(dc.Aur)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
err = buildInstallPkgBuilds(dc.AurMake, parser.targets)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
err = buildInstallPkgBuilds(dc.Aur, parser.targets)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if len(dc.RepoMake) + len(dc.AurMake) > 0 {
|
||||
if continueTask("Remove make dependancies?", "yY") {
|
||||
return nil
|
||||
}
|
||||
|
||||
removeArguments := makeArguments()
|
||||
removeArguments.addArg("R")
|
||||
|
||||
for _, pkg := range dc.RepoMake {
|
||||
removeArguments.addTarget(pkg.Name())
|
||||
}
|
||||
|
||||
for _, pkg := range dc.AurMake {
|
||||
removeArguments.addTarget(pkg.Name)
|
||||
}
|
||||
|
||||
passToPacman(removeArguments)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// Install sends system commands to make and install a package from pkgName
|
||||
func aurInstall(pkgName []string, flags []string) (err error) {
|
||||
q, err := rpc.Info(pkgName)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
if len(q) != len(pkgName) {
|
||||
fmt.Printf("Some packages from list\n%+v\n do not exist", pkgName)
|
||||
}
|
||||
|
||||
var finalrm []string
|
||||
for _, i := range q {
|
||||
mrm, err := PkgInstall(&i, flags)
|
||||
if err != nil {
|
||||
fmt.Println("Error installing", i.Name, ":", err)
|
||||
}
|
||||
finalrm = append(finalrm, mrm...)
|
||||
}
|
||||
|
||||
if len(finalrm) != 0 {
|
||||
err = removeMakeDeps(finalrm)
|
||||
}
|
||||
|
||||
return err
|
||||
}
|
||||
|
||||
func setupPackageSpace(a *rpc.Pkg) (dir string, pkgbuild *gopkg.PKGBUILD, err error) {
|
||||
dir = config.BuildDir + a.PackageBase + "/"
|
||||
|
||||
if _, err = os.Stat(dir); !os.IsNotExist(err) {
|
||||
if !continueTask("Directory exists. Clean Build?", "yY") {
|
||||
_ = os.RemoveAll(config.BuildDir + a.PackageBase)
|
||||
}
|
||||
}
|
||||
|
||||
if err = downloadAndUnpack(baseURL+a.URLPath, config.BuildDir, false); err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
if !continueTask("Edit PKGBUILD?", "yY") {
|
||||
editcmd := exec.Command(editor(), dir+"PKGBUILD")
|
||||
editcmd.Stdin, editcmd.Stdout, editcmd.Stderr = os.Stdin, os.Stdout, os.Stderr
|
||||
editcmd.Run()
|
||||
}
|
||||
|
||||
pkgbuild, err = gopkg.ParseSRCINFO(dir + ".SRCINFO")
|
||||
if err == nil {
|
||||
for _, pkgsource := range pkgbuild.Source {
|
||||
owner, repo := parseSource(pkgsource)
|
||||
if owner != "" && repo != "" {
|
||||
err = branchInfo(a.Name, owner, repo)
|
||||
if err != nil {
|
||||
fmt.Println(err)
|
||||
}
|
||||
func askCleanBuilds(pkgs []*rpc.Pkg) {
|
||||
for _, pkg := range pkgs {
|
||||
dir := config.BuildDir + pkg.PackageBase + "/"
|
||||
|
||||
if _, err := os.Stat(dir); !os.IsNotExist(err) {
|
||||
if !continueTask(pkg.Name + " Directory exists. Clean Build?", "yY") {
|
||||
_ = os.RemoveAll(config.BuildDir + pkg.PackageBase)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func askEditPkgBuilds(pkgs []*rpc.Pkg) {
|
||||
for _, pkg := range pkgs {
|
||||
dir := config.BuildDir + pkg.PackageBase + "/"
|
||||
|
||||
if !continueTask(pkg.Name + " Edit PKGBUILD?", "yY") {
|
||||
editcmd := exec.Command(editor(), dir+"PKGBUILD")
|
||||
editcmd.Stdin, editcmd.Stdout, editcmd.Stderr = os.Stdin, os.Stdout, os.Stderr
|
||||
editcmd.Run()
|
||||
}
|
||||
|
||||
pkgbuild, err := gopkg.ParseSRCINFO(dir + ".SRCINFO")
|
||||
if err == nil {
|
||||
for _, pkgsource := range pkgbuild.Source {
|
||||
owner, repo := parseSource(pkgsource)
|
||||
if owner != "" && repo != "" {
|
||||
err = branchInfo(pkg.Name, owner, repo)
|
||||
if err != nil {
|
||||
fmt.Println(err)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
func dowloadPkgBuilds(pkgs []*rpc.Pkg) (err error) {
|
||||
for _, pkg := range pkgs {
|
||||
//todo make pretty
|
||||
fmt.Println("Downloading:", pkg.Name + "-" + pkg.Version)
|
||||
|
||||
err = downloadAndUnpack(baseURL + pkg.URLPath, config.BuildDir, false)
|
||||
if err != nil{
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
// PkgInstall handles install from Info Result.
|
||||
func PkgInstall(a *rpc.Pkg, flags []string) (finalmdeps []string, err error) {
|
||||
fmt.Printf("\x1b[1;32m==> Installing\x1b[33m %s\x1b[0m\n", a.Name)
|
||||
if a.Maintainer == "" {
|
||||
fmt.Println("\x1b[1;31;40m==> Warning:\x1b[0;;40m This package is orphaned.\x1b[0m")
|
||||
}
|
||||
|
||||
dir, _, err := setupPackageSpace(a)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
if specialDBsauce {
|
||||
return
|
||||
}
|
||||
|
||||
runDeps, makeDeps, err := pkgDependencies(a)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
repoDeps := append(runDeps[0], makeDeps[0]...)
|
||||
aurDeps := append(runDeps[1], makeDeps[1]...)
|
||||
finalmdeps = append(finalmdeps, makeDeps[0]...)
|
||||
finalmdeps = append(finalmdeps, makeDeps[1]...)
|
||||
|
||||
if len(aurDeps) != 0 || len(repoDeps) != 0 {
|
||||
if !continueTask("Continue?", "nN") {
|
||||
return finalmdeps, fmt.Errorf("user did not like the dependencies")
|
||||
func downloadPkgBuildsSources(pkgs []*rpc.Pkg) (err error) {
|
||||
for _, pkg := range pkgs {
|
||||
dir := config.BuildDir + pkg.PackageBase + "/"
|
||||
err = passToMakepkg(dir, "-f", "--verifysource")
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
func buildInstallPkgBuilds(pkgs []*rpc.Pkg, targets stringSet) (err error) {
|
||||
//for n := len(pkgs) -1 ; n > 0; n-- {
|
||||
for n := 0; n < len(pkgs); n++ {
|
||||
pkg := pkgs[n]
|
||||
|
||||
dir := config.BuildDir + pkg.PackageBase + "/"
|
||||
if targets.get(pkg.Name) {
|
||||
err = passToMakepkg(dir, "-Cscfi", "--noconfirm")
|
||||
} else {
|
||||
err = passToMakepkg(dir, "-Cscfi", "--noconfirm", "--asdeps")
|
||||
}
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
aurQ, _ := rpc.Info(aurDeps)
|
||||
if len(aurQ) != len(aurDeps) {
|
||||
(aurQuery)(aurQ).missingPackage(aurDeps)
|
||||
if !continueTask("Continue?", "nN") {
|
||||
return finalmdeps, fmt.Errorf("unable to install dependencies")
|
||||
}
|
||||
}
|
||||
|
||||
arguments := makeArguments()
|
||||
arguments.addArg("S", "asdeps", "noconfirm")
|
||||
arguments.addTarget(repoDeps...)
|
||||
|
||||
var depArgs []string
|
||||
if config.NoConfirm {
|
||||
depArgs = []string{"asdeps", "noconfirm"}
|
||||
} else {
|
||||
depArgs = []string{"asdeps"}
|
||||
}
|
||||
|
||||
// Repo dependencies
|
||||
if len(repoDeps) != 0 {
|
||||
errR := passToPacman(arguments)
|
||||
if errR != nil {
|
||||
return finalmdeps, errR
|
||||
}
|
||||
}
|
||||
|
||||
// Handle AUR dependencies
|
||||
for _, dep := range aurQ {
|
||||
finalmdepsR, errA := PkgInstall(&dep, depArgs)
|
||||
finalmdeps = append(finalmdeps, finalmdepsR...)
|
||||
|
||||
if errA != nil {
|
||||
cleanRemove(repoDeps)
|
||||
cleanRemove(aurDeps)
|
||||
return finalmdeps, errA
|
||||
}
|
||||
}
|
||||
|
||||
flags = append(flags, "-sri")
|
||||
err = passToMakepkg(dir, flags...)
|
||||
return
|
||||
}
|
||||
|
15
parser.go
15
parser.go
@ -9,6 +9,19 @@ import (
|
||||
|
||||
type stringSet map[string]struct{}
|
||||
|
||||
func (set stringSet) set(v string) {
|
||||
set[v] = struct{}{}
|
||||
}
|
||||
|
||||
func (set stringSet) get(v string) bool {
|
||||
_, exists := set[v]
|
||||
return exists
|
||||
}
|
||||
|
||||
func (set stringSet) remove(v string) {
|
||||
delete(set, v)
|
||||
}
|
||||
|
||||
func (set stringSet) getAny() string {
|
||||
for v := range set {
|
||||
return v
|
||||
@ -30,7 +43,7 @@ func (set stringSet) toSlice() []string {
|
||||
|
||||
func (set stringSet) removeAny() string {
|
||||
v := set.getAny()
|
||||
delete(set, v)
|
||||
set.remove(v)
|
||||
return v
|
||||
}
|
||||
|
||||
|
9
print.go
9
print.go
@ -254,3 +254,12 @@ func localStatistics() error {
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
//todo make pretty
|
||||
func printMissing(missing stringSet) {
|
||||
fmt.Print("Packages not found in repos or aur:")
|
||||
for pkg := range missing {
|
||||
fmt.Print(" ", pkg)
|
||||
}
|
||||
fmt.Println()
|
||||
}
|
||||
|
62
query.go
62
query.go
@ -153,7 +153,7 @@ func syncSearch(pkgS []string) (err error) {
|
||||
|
||||
// SyncInfo serves as a pacman -Si for repo packages and AUR packages.
|
||||
func syncInfo(pkgS []string, flags []string) (err error) {
|
||||
aurS, repoS, err := packageSlices(pkgS)
|
||||
aurS, repoS, _, err := packageSlices(pkgS)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
@ -180,6 +180,11 @@ func syncInfo(pkgS []string, flags []string) (err error) {
|
||||
PrintInfo(&aurP)
|
||||
}
|
||||
}
|
||||
|
||||
//todo
|
||||
//if len(missing) != 0 {
|
||||
// printMissing(missing)
|
||||
//}
|
||||
|
||||
return
|
||||
}
|
||||
@ -235,38 +240,51 @@ func queryRepo(pkgInputN []string) (s repoQuery, n int, err error) {
|
||||
}
|
||||
|
||||
// PackageSlices separates an input slice into aur and repo slices
|
||||
func packageSlices(toCheck []string) (aur []string, repo []string, err error) {
|
||||
func packageSlices(toCheck []string) (aur []string, repo []string, missing []string, err error) {
|
||||
possibleAur := make([]string, 0)
|
||||
dbList, err := alpmHandle.SyncDbs()
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
for _, pkg := range toCheck {
|
||||
found := false
|
||||
for _, _pkg := range toCheck {
|
||||
pkg := getNameFromDep(_pkg)
|
||||
|
||||
_ = dbList.ForEach(func(db alpm.Db) error {
|
||||
if found {
|
||||
return nil
|
||||
}
|
||||
|
||||
_, err = db.PkgByName(pkg)
|
||||
if err == nil {
|
||||
found = true
|
||||
repo = append(repo, pkg)
|
||||
}
|
||||
return nil
|
||||
})
|
||||
_, errdb := dbList.FindSatisfier(_pkg)
|
||||
found := errdb == nil
|
||||
|
||||
if !found {
|
||||
if _, errdb := dbList.PkgCachebyGroup(pkg); errdb == nil {
|
||||
repo = append(repo, pkg)
|
||||
} else {
|
||||
aur = append(aur, pkg)
|
||||
}
|
||||
_, errdb = dbList.PkgCachebyGroup(_pkg)
|
||||
found = errdb == nil
|
||||
}
|
||||
|
||||
if found {
|
||||
repo = append(repo, pkg)
|
||||
} else {
|
||||
possibleAur = append(possibleAur, pkg)
|
||||
}
|
||||
}
|
||||
|
||||
if len(possibleAur) == 0 {
|
||||
return
|
||||
}
|
||||
|
||||
info, err := rpc.Info(possibleAur)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
outer:
|
||||
for _, pkg := range possibleAur {
|
||||
for _, rpcpkg := range info {
|
||||
if rpcpkg.Name == pkg {
|
||||
aur = append(aur, pkg)
|
||||
continue outer
|
||||
}
|
||||
}
|
||||
missing = append(missing, pkg)
|
||||
}
|
||||
|
||||
err = nil
|
||||
return
|
||||
}
|
||||
|
||||
|
26
upgrade.go
26
upgrade.go
@ -365,8 +365,14 @@ func upgradePkgs(flags []string) error {
|
||||
repoNums = removeIntListFromList(excludeRepo, repoNums)
|
||||
}
|
||||
|
||||
arguments := cmdArgs.copy()
|
||||
arguments.delArg("u", "sysupgrade")
|
||||
arguments.delArg("y", "refresh")
|
||||
|
||||
var repoNames []string
|
||||
var aurNames []string
|
||||
|
||||
if len(repoUp) != 0 {
|
||||
var repoNames []string
|
||||
repoloop:
|
||||
for i, k := range repoUp {
|
||||
for _, j := range repoNums {
|
||||
@ -376,20 +382,9 @@ func upgradePkgs(flags []string) error {
|
||||
}
|
||||
repoNames = append(repoNames, k.Name)
|
||||
}
|
||||
|
||||
arguments := makeArguments()
|
||||
arguments.addArg("S", "noconfirm")
|
||||
arguments.addArg(flags...)
|
||||
arguments.addTarget(repoNames...)
|
||||
|
||||
err := passToPacman(arguments)
|
||||
if err != nil {
|
||||
fmt.Println("Error upgrading repo packages.")
|
||||
}
|
||||
}
|
||||
|
||||
if len(aurUp) != 0 {
|
||||
var aurNames []string
|
||||
aurloop:
|
||||
for i, k := range aurUp {
|
||||
for _, j := range aurNums {
|
||||
@ -399,7 +394,10 @@ func upgradePkgs(flags []string) error {
|
||||
}
|
||||
aurNames = append(aurNames, k.Name)
|
||||
}
|
||||
aurInstall(aurNames, flags)
|
||||
}
|
||||
return nil
|
||||
|
||||
arguments.addTarget(repoNames...)
|
||||
arguments.addTarget(aurNames...)
|
||||
err = install(arguments)
|
||||
return err
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user