Build order with dependencies #182
Labels
No labels
Roadmap
V
bug
docs
duplicate
enhancement
good first issue
help wanted
idea
invalid
question
wontfix
Idea
Roadmap
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Due date
No due date set.
Dependencies
No dependencies set.
Reference: vieter-v/vieter#182
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
An interesting problem arises when packages depend on other packages in the Vieter repository. The dependencies' builds should run before the package that it's dependent on to ensure they're both up to date. This would require us to know the order of the builds.
One idea would be to enforce having a .SRCINFO in the Git repo containing the PKGBUILD; the AUR does this as well. The cron server could then use this information to schedule the repositories accordingely. It would however require the cron server to clone all the repositories beforehand instead of during the build. I'm not also not sure what would need to happen if the dependency isn't scheduled for a rebuild yet.
Very interesting, in the compiler source code there's a dependency graph resolver that we could import.