source ~/venv/bin/activate
scripts/cmakelint.sh
+ - name: 'perlcheck'
+ run: |
+ scripts/perlcheck.sh
+
- name: 'pytype'
run: |
source ~/venv/bin/activate
EXTRA_DIST = coverage.sh completion.pl firefox-db2pem.sh checksrc.pl checksrc-all.pl \
mk-ca-bundle.pl mk-unity.pl schemetable.c cd2nroff nroff2cd cdall cd2cd managen \
dmaketgz maketgz release-tools.sh verify-release cmakelint.sh mdlinkcheck \
- CMakeLists.txt pythonlint.sh randdisable wcurl top-complexity extract-unit-protos
+ CMakeLists.txt perlcheck.sh pythonlint.sh randdisable wcurl top-complexity \
+ extract-unit-protos
dist_bin_SCRIPTS = wcurl
--- /dev/null
+#!/bin/sh
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Dan Fandrich, <dan@coneharvesters.com>, Viktor Szakats, et al.
+#
+# This software is licensed as described in the file COPYING, which
+# you should have received as part of this distribution. The terms
+# are also available at https://curl.se/docs/copyright.html.
+#
+# You may opt to use, copy, modify, merge, publish, distribute and/or sell
+# copies of the Software, and permit persons to whom the Software is
+# furnished to do so, under the terms of the COPYING file.
+#
+# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
+# KIND, either express or implied.
+#
+# SPDX-License-Identifier: curl
+#
+###########################################################################
+
+# The xargs invocation is portable, but does not preserve spaces in file names.
+# If such a file is ever added, then this can be portably fixed by switching to
+# "xargs -I{}" and appending {} to the end of the xargs arguments (which will
+# call cmakelint once per file) or by using the GNU extension "xargs -d'\n'".
+
+set -eu
+
+cd "$(dirname "$0")"/..
+
+{
+ if [ -n "${1:-}" ]; then
+ for A in "$@"; do printf "%s\n" "$A"; done
+ elif git rev-parse --is-inside-work-tree >/dev/null 2>&1; then
+ {
+ git ls-files | grep -E '\.(pl|pm)$'
+ git grep -l -E '^#!/usr/bin/env perl'
+ } | sort -u
+ else
+ # strip off the leading ./ to make the grep regexes work properly
+ find . -type f \( -name '*.pl' -o -name '*.pm' \) | sed 's@^\./@@'
+ fi
+} | xargs -n 1 perl -c -Itests
use pathhelp qw(
exe_ext
dirsepadd
- );
-use Cwd qw(getcwd);
-use testutil qw(
shell_quote
);
+use Cwd qw(getcwd);
use File::Spec;
os_is_win
exe_ext
dirsepadd
+ shell_quote
sys_native_abs_path
sys_native_current_path
build_sys_abs_path
return $dir . '/';
}
+#######################################################################
+# Quote an argument for passing safely to a Bourne shell
+# This does the same thing as String::ShellQuote but doesn't need a package.
+#
+sub shell_quote {
+ my ($s)=@_;
+ if($^O eq 'MSWin32') {
+ $s = '"' . $s . '"';
+ }
+ else {
+ if($s !~ m/^[-+=.,_\/:a-zA-Z0-9]+$/) {
+ # string contains a "dangerous" character--quote it
+ $s =~ s/'/'"'"'/g;
+ $s = "'" . $s . "'";
+ }
+ }
+ return $s;
+}
+
1; # End of module
use pathhelp qw(
exe_ext
+ shell_quote
);
use servers qw(
checkcmd
logmsg
runclient
exerunner
- shell_quote
subbase64
subsha256base64file
substrippemfile
use pathhelp qw(
exe_ext
sys_native_current_path
+ shell_quote
);
use appveyor;
os_is_win
build_sys_abs_path
sys_native_abs_path
+ shell_quote
);
use processhelp;
runclient
runclientoutput
exerunner
- shell_quote
);
}
sub getinclude {
- open(my $f, "<", "$root/include/curl/curl.h")
+ my $f;
+ open($f, "<", "$root/include/curl/curl.h")
|| die "no curl.h";
while(<$f>) {
if($_ =~ /\((CURLOPT[^,]*), (CURLOPTTYPE_[^,]*)/) {
$enum{"CURLOPT_CONV_TO_NETWORK_FUNCTION"}++;
close($f);
- open(my $f, "<", "$root/include/curl/multi.h")
+ open($f, "<", "$root/include/curl/multi.h")
|| die "no curl.h";
while(<$f>) {
if($_ =~ /\((CURLMOPT[^,]*), (CURLOPTTYPE_[^,]*)/) {
}
}
+my $f;
+
logit_spaced "display lib/$confheader";
-open(my $f, "<", "lib/$confheader") or die "lib/$confheader: $!";
+open($f, "<", "lib/$confheader") or die "lib/$confheader: $!";
while(<$f>) {
print if /^ *#/;
}
my $mkcmd = "$make -i" . ($targetos && !$configurebuild ? " $targetos" : "");
logit "$mkcmd";
-open(my $f, "-|", "$mkcmd 2>&1") or die;
+open($f, "-|", "$mkcmd 2>&1") or die;
while(<$f>) {
s/$pwd//g;
print;
runclientoutput
setlogfunc
exerunner
- shell_quote
subbase64
subnewlines
subsha256base64file
return '';
}
-#######################################################################
-# Quote an argument for passing safely to a Bourne shell
-# This does the same thing as String::ShellQuote but doesn't need a package.
-#
-sub shell_quote {
- my ($s)=@_;
- if($^O eq 'MSWin32') {
- $s = '"' . $s . '"';
- }
- else {
- if($s !~ m/^[-+=.,_\/:a-zA-Z0-9]+$/) {
- # string contains a "dangerous" character--quote it
- $s =~ s/'/'"'"'/g;
- $s = "'" . $s . "'";
- }
- }
- return $s;
-}
-
sub get_sha256_base64 {
my ($file_path) = @_;
return encode_base64(sha256(do { local $/; open my $fh, '<:raw', $file_path or die $!; <$fh> }), "");