-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
toltecctl: Honour dependencies when uninstalling
`toltecctl uninstall` will now try to uninstall packages in the reverse order of their dependencies, so that a package can use binaries it depends on during its removal scripts (see #448). Packages in a dependency cycle are removed in an unspecified order. Test plan: Upgrade `toltec-bootstrap`, install some packages, then run `toltecctl uninstall`. You should see packages removed in reverse dependency order, so for example: * `libc`, `libpthread`, `libgcc` should generally be the last removed packages * graphical apps should get removed before `display` * `toltec-bootstrap` should get removed before `coreutils-tsort`
- Loading branch information
1 parent
b297c1d
commit fdafa6c
Showing
2 changed files
with
41 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,11 +5,12 @@ | |
pkgnames=(toltec-bootstrap) | ||
pkgdesc="Manage your Toltec install" | ||
url=https://toltec-dev.org/ | ||
pkgver=0.2.0-1 | ||
timestamp=2021-09-25T10:36Z | ||
pkgver=0.2.1-1 | ||
timestamp=2021-10-06T07:51Z | ||
section="utils" | ||
maintainer="Eeems <[email protected]>" | ||
license=MIT | ||
installdepends=(coreutils-tsort) | ||
|
||
source=( | ||
toltecctl | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters