bootstrap: Split packages into stable and testing lists
Split the lists into two, with testing getting automatically updated on packages added (and removed, but only if the package to be removed is *not* in stable packages already). This way, I can always be sure that I have my stable setup in the repository, but packages that I am temporarily testing have a place without being forgotten and I can more easily change them around until they find a place in stable or get thrown out.
This commit is contained in:
parent
d56d0148f6
commit
1a05ea8445
4 changed files with 43 additions and 27 deletions
|
|
@ -4,7 +4,7 @@ COMMIT_MSG_FILE="$1"
|
|||
COMMIT_SOURCE="$2"
|
||||
|
||||
BOOTSTRAPDIR="bootstrap"
|
||||
pkg_committed="$(cat $(git rev-parse --show-toplevel)/$BOOTSTRAPDIR/packages.tsv | tail +2 | cut -f1 | sort)"
|
||||
pkg_committed="$(cat "$(git rev-parse --show-toplevel)"/$BOOTSTRAPDIR/packages*.tsv | grep -v -e '^Name Description Source Target' | cut -f1 | sort)"
|
||||
pkg_onsystem=$(pacman -Qqett | grep -v "$(pacman -Qqg base-devel)" | sort)
|
||||
|
||||
# get files only in repo, and only on machine
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue