You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This update is a quality of life update focusing on important bug fixes and adding requested features. Users can update from Pacstall 3.0.0 or higher with pacstall -U pacstall master, or reinstall using the deb file.
From now on, depends, build_depends, breaks and replace should be written as arrays. The old variable way is still supported, but encouraged to use the array syntax.
# Old
depends="foo bar"
build_depends="baz bizzle"
breaks="fooplus barplus"
replace="foo bar"# New
depends=("foo""bar")
build_depends=("baz""bizzle")
breaks=("fooplus""barplus")
replace=("foo""bar")
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Pacstall v3.12.0 Lily
This update is a quality of life update focusing on important bug fixes and adding requested features. Users can update from Pacstall 3.0.0 or higher with
pacstall -U pacstall master
, or reinstall using the deb file.Developers, Developers, Developers...
Features
depends
,build_depends
,breaks
andreplace
into arrays by @henryws (feat(pacscript): change needed variables to arrays #876, feat(pacscript): change replace to array #882)Bug fixes
Changes
[[ -eq ]]
to(( ))
by @henryws (refactor(*): use(())
instead of[[ -eq ]]
#879)Performance changes
awk
withsort -u
in completions by @henryws (rm(completions): awk #880, 73034dd)How to use new features
Variables to Arrays
From now on,
depends
,build_depends
,breaks
andreplace
should be written as arrays. The old variable way is still supported, but encouraged to use the array syntax.Pacscript for this releases Deb
This discussion was created from the release 3.12.0 Lily.
Beta Was this translation helpful? Give feedback.
All reactions