<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nx-libs/roll-tarballs.sh, branch update-workflows</title>
<subtitle>NXv3 (redistributed) 
</subtitle>
<id>https://isbjoern.arctica-project.org/nx-libs/atom?h=update-workflows</id>
<link rel='self' href='https://isbjoern.arctica-project.org/nx-libs/atom?h=update-workflows'/>
<link rel='alternate' type='text/html' href='https://isbjoern.arctica-project.org/nx-libs/'/>
<updated>2023-04-28T12:39:16+00:00</updated>
<entry>
<title>Update Copyright years</title>
<updated>2023-04-28T12:39:16+00:00</updated>
<author>
<name>Ulrich Sibiller</name>
<email>uli42@gmx.de</email>
</author>
<published>2022-04-29T19:12:35+00:00</published>
<link rel='alternate' type='text/html' href='https://isbjoern.arctica-project.org/nx-libs/commit/?id=390887b7487e5a769b2fe2a038404ed47e5c8e91'/>
<id>urn:sha1:390887b7487e5a769b2fe2a038404ed47e5c8e91</id>
<content type='text'>
Addresses ArcticaProject/nx-libs#985
</content>
</entry>
<entry>
<title>shellcheck: Fix SC2022 issue</title>
<updated>2021-06-07T11:32:49+00:00</updated>
<author>
<name>Mario Trangoni</name>
<email>mjtrangoni@gmail.com</email>
</author>
<published>2021-02-06T16:58:47+00:00</published>
<link rel='alternate' type='text/html' href='https://isbjoern.arctica-project.org/nx-libs/commit/?id=71ae04011c353b0341b5ab0c16dad12ebefe6a67'/>
<id>urn:sha1:71ae04011c353b0341b5ab0c16dad12ebefe6a67</id>
<content type='text'>
$ 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 &lt;mjtrangoni@gmail.com&gt;
</content>
</entry>
<entry>
<title>shellcheck: Fix SC2064 issues</title>
<updated>2021-06-07T11:32:49+00:00</updated>
<author>
<name>Mario Trangoni</name>
<email>mjtrangoni@gmail.com</email>
</author>
<published>2021-02-06T16:56:53+00:00</published>
<link rel='alternate' type='text/html' href='https://isbjoern.arctica-project.org/nx-libs/commit/?id=dfee5a9886112b29f14f762016c8fe892846bfef'/>
<id>urn:sha1:dfee5a9886112b29f14f762016c8fe892846bfef</id>
<content type='text'>
For more information:
  https://www.shellcheck.net/wiki/SC2064 -- Use single quotes, otherwise this...

Signed-off-by: Mario Trangoni &lt;mjtrangoni@gmail.com&gt;
</content>
</entry>
<entry>
<title>shellcheck: Fix SC2061 issue</title>
<updated>2021-01-31T14:07:18+00:00</updated>
<author>
<name>Mario Trangoni</name>
<email>mjtrangoni@gmail.com</email>
</author>
<published>2021-01-31T14:07:18+00:00</published>
<link rel='alternate' type='text/html' href='https://isbjoern.arctica-project.org/nx-libs/commit/?id=8ce12d613a570710b9e1c7fa179b6d0cafd9de0f'/>
<id>urn:sha1:8ce12d613a570710b9e1c7fa179b6d0cafd9de0f</id>
<content type='text'>
$ 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 &lt;mjtrangoni@gmail.com&gt;
</content>
</entry>
<entry>
<title>shellcheck: Fix SC2196 issues</title>
<updated>2021-01-31T14:00:20+00:00</updated>
<author>
<name>Mario Trangoni</name>
<email>mjtrangoni@gmail.com</email>
</author>
<published>2021-01-31T13:59:40+00:00</published>
<link rel='alternate' type='text/html' href='https://isbjoern.arctica-project.org/nx-libs/commit/?id=afe0c1473a09120bcd3aa9c6bd853529df4d896f'/>
<id>urn:sha1:afe0c1473a09120bcd3aa9c6bd853529df4d896f</id>
<content type='text'>
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 &lt;mjtrangoni@gmail.com&gt;
</content>
</entry>
<entry>
<title>shellcheck: Fix SC2034 issue</title>
<updated>2021-01-31T13:57:29+00:00</updated>
<author>
<name>Mario Trangoni</name>
<email>mjtrangoni@gmail.com</email>
</author>
<published>2021-01-31T13:57:29+00:00</published>
<link rel='alternate' type='text/html' href='https://isbjoern.arctica-project.org/nx-libs/commit/?id=930fbe08bf6e17a953bc3c869a1c6b66e498d76a'/>
<id>urn:sha1:930fbe08bf6e17a953bc3c869a1c6b66e498d76a</id>
<content type='text'>
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 &lt;mjtrangoni@gmail.com&gt;
</content>
</entry>
<entry>
<title>shellcheck: Fix SC2002 issue</title>
<updated>2021-01-31T13:53:37+00:00</updated>
<author>
<name>Mario Trangoni</name>
<email>mjtrangoni@gmail.com</email>
</author>
<published>2021-01-31T13:53:37+00:00</published>
<link rel='alternate' type='text/html' href='https://isbjoern.arctica-project.org/nx-libs/commit/?id=22b40e690ac85ba694b999ecdfbbd91ab923b64c'/>
<id>urn:sha1:22b40e690ac85ba694b999ecdfbbd91ab923b64c</id>
<content type='text'>
See,

$ find . -name "*.sh" | xargs shellcheck -i SC2002

For more information:
  https://www.shellcheck.net/wiki/SC2002 -- Useless cat. Consider 'cmd &lt; file...

Signed-off-by: Mario Trangoni &lt;mjtrangoni@gmail.com&gt;
</content>
</entry>
<entry>
<title>shellcheck: Fix SC2045 issue</title>
<updated>2021-01-31T13:43:47+00:00</updated>
<author>
<name>Mario Trangoni</name>
<email>mjtrangoni@gmail.com</email>
</author>
<published>2021-01-31T13:43:47+00:00</published>
<link rel='alternate' type='text/html' href='https://isbjoern.arctica-project.org/nx-libs/commit/?id=2168bc68987c0d47f5898040ead57484d2671fb7'/>
<id>urn:sha1:2168bc68987c0d47f5898040ead57484d2671fb7</id>
<content type='text'>
See,

$ find . -name "*.sh" | xargs shellcheck -i SC2045

In ./roll-tarballs.sh line 220:
for f in $(ls README* 2&gt;/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 &lt;mjtrangoni@gmail.com&gt;
</content>
</entry>
<entry>
<title>shellcheck: Fix SC2162 issue</title>
<updated>2021-01-31T13:23:59+00:00</updated>
<author>
<name>Mario Trangoni</name>
<email>mjtrangoni@gmail.com</email>
</author>
<published>2021-01-31T13:23:06+00:00</published>
<link rel='alternate' type='text/html' href='https://isbjoern.arctica-project.org/nx-libs/commit/?id=daeb82e33bfeb23d09f7782728f088bdc5d39ce5'/>
<id>urn:sha1:daeb82e33bfeb23d09f7782728f088bdc5d39ce5</id>
<content type='text'>
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 &lt;mjtrangoni@gmail.com&gt;
</content>
</entry>
<entry>
<title>shellcheck: Fix SC2006 issue</title>
<updated>2021-01-31T13:17:39+00:00</updated>
<author>
<name>Mario Trangoni</name>
<email>mjtrangoni@gmail.com</email>
</author>
<published>2021-01-31T13:17:39+00:00</published>
<link rel='alternate' type='text/html' href='https://isbjoern.arctica-project.org/nx-libs/commit/?id=5b628e2d79bce67b255690e0a54a0a488bbb05e0'/>
<id>urn:sha1:5b628e2d79bce67b255690e0a54a0a488bbb05e0</id>
<content type='text'>
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 &lt;mjtrangoni@gmail.com&gt;
</content>
</entry>
</feed>
