mirror of
https://github.com/sbopkg/sbopkg
synced 2024-11-16 07:47:55 +01:00
836c067774
Fixes shellcheck parsing errors by using safer quoting practices with eval. Line 217: for FILE in $SBOPKG_REPOS_D/*.repo; do ^-- SC1009: The mentioned syntax error was in this for loop. Line 219: while read LINE; do ^-- SC1073: Couldn't parse this while loop. Fix to allow more checks. ^-- SC1061: Couldn't find 'done' for this 'do'. Line 221: eval TMPARRAY=( "$LINE" ) ^-- SC1036: '(' is invalid here. Did you forget to escape it? ^-- SC1062: Expected 'done' matching previously mentioned 'do'. ^-- SC1072: Expected 'done'. Fix any mentioned problems and try again. ^-- SC1098: Quote/escape special characters when using eval, e.g. eval "a=(b)". Line 3054: for i in ${!MD5SUM[@]}; do ^-- SC1009: The mentioned syntax error was in this for loop. Line 3056: while :; do ^-- SC1073: Couldn't parse this while loop. Fix to allow more checks. ^-- SC1061: Couldn't find 'done' for this 'do'. Line 3065: eval SRCNAME=( $( ^-- SC1036: '(' is invalid here. Did you forget to escape it? ^-- SC1062: Expected 'done' matching previously mentioned 'do'. ^-- SC1072: Expected 'done'. Fix any mentioned problems and try again. ^-- SC1098: Quote/escape special characters when using eval, e.g. eval "a=(b)". Signed-off-by: Willy Sudiarto Raharjo <willysr@sbopkg.org>
90 lines
3.1 KiB
Text
90 lines
3.1 KiB
Text
SBOPKG NEWS
|
|
|
|
sbopkg-dev (2018-04-27 15:36:23 UTC)
|
|
FEATURES
|
|
* sqg: Parallelize building of single and all packages by option -j.
|
|
Patch by Marcel Saegebarth.
|
|
* sqg: Introduced new simple filesystem cache.
|
|
This will reduce queue generation time significantly when
|
|
invoked with -j N+1 (N: Number of cores)
|
|
Patch by Marcel Saegebarth.
|
|
* sqg: Generate one queue file for multiple programs by option -o.
|
|
The output queue filename is user-defined.
|
|
You can then run sbopkg -i <queue-name> to install all packages+deps.
|
|
Feature Request by Jeremy/bassmadrigal (Fixed #13).
|
|
Implement contributions from Marcel Saegebarth.
|
|
* sqg: Added manual page for sqg.
|
|
* sbopkg: No need to do complete check for old sources if no sources available
|
|
Initial patch by Loki Harfagr
|
|
* sbopkg: Added support for Slackware 15.0
|
|
* sbopkg: Added new option in sbopkg.conf: BLACKLISTFILE
|
|
This is used to define blacklisted package(s)
|
|
Feature Request by khronosschoty
|
|
|
|
|
|
MODIFICATIONS
|
|
* bash-completion: Complete -i and -b when git repo is used
|
|
Patch by Sergey V.
|
|
* move sqg functions to /usr/libexec
|
|
Patch by Marcel Saegebarth
|
|
* use exit 1 when rsync failed instead of 0
|
|
* Fix 90-SBo-master.repo to accomodate SBo's new server
|
|
Patch by Matteo Bernardini
|
|
* Remove SKIP_EMPTY option.
|
|
* Fix wrong glob expansion
|
|
Patch by Alan
|
|
* Use correct SlackBuild file name to build package
|
|
Patch by Erich Ritz
|
|
* Fix bug in updates_compare_versions()
|
|
Patch by arcctgx (#41)
|
|
* Fix parsing errors with shellcheck.
|
|
Patch by orbea (#42)
|
|
|
|
sbopkg 0.38.1 (2016-09-01 13:42 UTC)
|
|
FEATURES
|
|
* Added option to download from third party source repository
|
|
in case the one mentioned in .info failed or having bad checksums.
|
|
* Added new option in sbopkg.conf: SRC_REPO
|
|
This is used to define third party source repository
|
|
sbopkg: Added option to download from third party source.
|
|
|
|
MODIFICATIONS
|
|
* Do not use wildcard for GPG checking (Fix #19)
|
|
|
|
sbopkg-0.38.0 (2016-07-01 16:52:27 UTC)
|
|
FEATURES
|
|
* Add --no-group to rsync so files are owned by root:root
|
|
Patch by pyllyukko
|
|
* Updated es translations (Dhaby Xiloj)
|
|
* Moved sqg to /usr/sbin
|
|
* Added support for Slackware 14.2.
|
|
* Update queue sample files
|
|
|
|
sbopkg-0.37.1 (2015-10-27 03:02:59 UTC)
|
|
|
|
FEATURES
|
|
* Add --visit-items option in certain part of dialog to help
|
|
disabled people
|
|
* Added SBo master branch repo (git)
|
|
|
|
MODIFICATIONS
|
|
|
|
* Move PIDFILE to global variable
|
|
* Update copyright
|
|
* Transitions from code.google.com to github.com
|
|
* Remove SVN-stuff
|
|
* Fix sqg branch to 14.1 by default.
|
|
|
|
sbopkg 0.37.0 (2013-12-09 15:10 UTC)
|
|
|
|
FEATURES
|
|
|
|
* This release of sbopkg is Slackware 14.1-ready. Congrats to
|
|
the entire Slackware team for another great release!
|
|
* Sbopkg now has a -B flag which will allow the user to
|
|
process the queue from the command line in 'bulk' without
|
|
confirmation first.
|
|
|
|
MODIFICATIONS
|
|
|
|
* No other modifications have been made.
|