aboutsummaryrefslogtreecommitdiff
path: root/roll-tarballs.sh
Commit message (Collapse)AuthorAgeFilesLines
* Update Copyright yearsUlrich Sibiller2023-04-281-1/+1
| | | | Addresses ArcticaProject/nx-libs#985
* shellcheck: Fix SC2022 issueMario Trangoni2021-06-071-1/+1
| | | | | | | | | | | | | $ find . -name "*.sh" | xargs shellcheck -i SC2022 In ./roll-tarballs.sh line 120: ls -d nx-X11/extras/* | grep -v "nx-X11/extras/tmpMesa*" | xargs rm -r ^----------------------^ SC2022: Note that unlike globs, a* here matches 'aaa' but not 'alpha'. For more information: https://www.shellcheck.net/wiki/SC2022 -- Note that unlike globs, a* here m... Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com>
* shellcheck: Fix SC2064 issuesMario Trangoni2021-06-071-1/+1
| | | | | | | For more information: https://www.shellcheck.net/wiki/SC2064 -- Use single quotes, otherwise this... Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com>
* shellcheck: Fix SC2061 issueMario Trangoni2021-01-311-1/+1
| | | | | | | | | | | | | $ find . -name "*.sh" | xargs shellcheck -i SC2061 In ./roll-tarballs.sh line 159: find nx-X11/extras/Mesa/ -name Makefile.* | while read -r file; do rm "$file"; done ^--------^ SC2061: Quote the parameter to -name so the shell won't interpret it. For more information: https://www.shellcheck.net/wiki/SC2061 -- Quote the parameter to -name so t... Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com>
* shellcheck: Fix SC2196 issuesMario Trangoni2021-01-311-2/+2
| | | | | | | | | | | | | | | | | | | See, $ find . -name "*.sh" | xargs shellcheck -i SC2196 In ./roll-tarballs.sh line 163: sort "debian/patches/series" | grep -v '^#' | egrep "([0-9]+(_|-).*\.(full|full\+lite)\.patch)" | while read -r file ^---^ SC2196: egrep is non-standard and deprecated. Use grep -E instead. In ./roll-tarballs.sh line 200: sort "debian/patches/series" | grep -v '^#' | egrep "([0-9]+(_|-).*\.full\+lite\.patch)" | while read -r file ^---^ SC2196: egrep is non-standard and deprecated. Use grep -E instead. For more information: https://www.shellcheck.net/wiki/SC2196 -- egrep is non-standard and depreca... Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com>
* shellcheck: Fix SC2034 issueMario Trangoni2021-01-311-1/+0
| | | | | | | | | | | | | | | See, $ find . -name "*.sh" | xargs shellcheck -i SC2034 In ./roll-tarballs.sh line 34: NULL="" ^--^ SC2034: NULL appears unused. Verify use (or export if used externally). For more information: https://www.shellcheck.net/wiki/SC2034 -- NULL appears unused. Verify use (... Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com>
* shellcheck: Fix SC2002 issueMario Trangoni2021-01-311-2/+2
| | | | | | | | | | | See, $ find . -name "*.sh" | xargs shellcheck -i SC2002 For more information: https://www.shellcheck.net/wiki/SC2002 -- Useless cat. Consider 'cmd < file... Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com>
* shellcheck: Fix SC2045 issueMario Trangoni2021-01-311-2/+3
| | | | | | | | | | | | | | | See, $ find . -name "*.sh" | xargs shellcheck -i SC2045 In ./roll-tarballs.sh line 220: for f in $(ls README* 2>/dev/null); do ^-----------------------^ SC2045: Iterating over ls output is fragile. Use globs. For more information: https://www.shellcheck.net/wiki/SC2045 -- Iterating over ls output is fragi... Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com>
* shellcheck: Fix SC2162 issueMario Trangoni2021-01-311-6/+6
| | | | | | | | | | | | | See, find . -name "*.sh" | xargs shellcheck -i SC2162 [...] For more information: https://www.shellcheck.net/wiki/SC2162 -- read without -r will mangle backs... Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com>
* shellcheck: Fix SC2006 issueMario Trangoni2021-01-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See, $ find . -name "*.sh" | xargs shellcheck -i SC2006 In ./roll-tarballs.sh line 62: echo "HEAD (on branch `git rev-parse --abbrev-ref HEAD`)" ^-- SC2006: Use $(...) notation instead of legacy backticked `...`. Did you mean: echo "HEAD (on branch $(git rev-parse --abbrev-ref HEAD))" In ./nx-X11/x-indent-all.sh line 2: where=`dirname $0` ^----------^ SC2006: Use $(...) notation instead of legacy backticked `...`. Did you mean: where=$(dirname $0) In ./nx-X11/x-indent.sh line 5: INDENT=`which gnuindent || which gindent || which indent` ^-- SC2006: Use $(...) notation instead of legacy backticked `...`. Did you mean: INDENT=$(which gnuindent || which gindent || which indent) For more information: https://www.shellcheck.net/wiki/SC2006 -- Use $(...) notation instead of le... Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com>
* roll-tarballs.sh: Fix script removal from nx-libs-lite tarballs.Mike Gabriel2019-04-171-1/+3
|
* roll-tarballs.sh: Remove nxdialog/* in nx-libs-lite tarballs.Mike Gabriel2019-04-171-0/+1
|
* roll-tarball.sh: Drop m4/nx-xtrans.m4 from nx-libs-lite tarball.Mike Gabriel2017-08-301-0/+1
|
* roll-tarball.sh: Some more .gitignore files to remove.Mike Gabriel2017-08-301-0/+2
|
* roll-tarball.sh: Use -f with rm everywhere, also when tweaking the Mesa/ dir.Mike Gabriel2017-08-301-3/+3
|
* roll-tarballs.sh: Remove even more files from nx-X11/extras/Mesa/. This ↵Mike Gabriel2017-06-301-1/+24
| | | | roll-tarball.sh version has been used for generating the 3.5.99.8 tarball.
* roll-tarball.sh: Fix resolution of symbolic links and removal of useless ↵ftrapero2017-06-271-5/+5
| | | | Mesa versions
* roll-tarball.sh: Fix tarball creation, now that we pull in Mesa as a ↵Mike Gabriel2017-06-191-0/+10
| | | | git-subtree. This basically moves versioned folders around and drops the Mesa/ and Mesa.patches/ symlinks.
* roll-tarball.sh: Drop various unused files from the bundled Mesa version ↵Mike Gabriel2017-06-151-1/+13
| | | | when creating release tarballs.
* roll-tarball.sh: Fix ChangeLog creation, always create ChangeLog for the ↵Mike Gabriel2017-04-051-1/+1
| | | | CHECKOUT, not the currently checked out branch.
* roll-tarballs.sh: Adapt to recent changes in nx-libs, keep legacy support ↵Mike Gabriel2016-12-201-10/+49
| | | | for older 3.6.x and 3.5.x releases.
* nxcompext: Move code into Xserver subtree, as nxcompext requires Xserver ↵Mike Gabriel2016-11-151-1/+0
| | | | | | includes at build time. Fixes ArcticaProject/nx-libs#276.
* nxauth: Drop nxauth tool completely, xauth can be successfully used with ↵Mike Gabriel2016-07-011-1/+1
| | | | nxagent / nxproxy instead.
* roll-tarball.sh: Move out of debian/ folder into project's base folder.Mike Gabriel2016-07-011-0/+157