request from: hawk started at: Fri Apr 26 20:41:16 2024 building SRPM using: cd rpm/packages; nice -n 0 ./builder -nu -nm --nodeps --http --define '_tld_builder 1' -bs -r tld/xrdp-0.9.25.1-1 xrdp.spec 2>&1 + set -v if [ -n "$TARGET" ]; then case "$RPMBUILD" in "rpmbuild") TARGET_SWITCH="--target $TARGET" ;; "rpm") TARGET_SWITCH="--target=$TARGET" ;; esac fi + '[' -n i686-linux ']' + TARGET_SWITCH='--target i686-linux' if [ "$SCHEDTOOL" != "no" ]; then NICE_COMMAND="$SCHEDTOOL" else NICE_COMMAND="nice -n ${DEF_NICE_LEVEL}" fi + '[' no '!=' no ']' + NICE_COMMAND='nice -n 19' # see time(1) for output format that could be used TIME_COMMAND="time -p" + TIME_COMMAND='time -p' update_shell_title "$COMMAND" + update_shell_title build-source + '[' -t 2 ']' + return case "$COMMAND" in "show_bconds") init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi get_spec > /dev/null parse_spec set_bconds_values display_bconds ;; "show_bcond_args") init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi get_spec > /dev/null parse_spec set_bconds_values echo "$BCOND" ;; "show_avail_bconds") init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi get_spec > /dev/null parse_spec local bcond_avail=$(find_spec_bcond $SPECFILE) local opt bcond bconds for opt in $bcond_avail; do case "$opt" in without_*) bcond=${opt#without_} bconds="$bconds $bcond" ;; with_*) bcond=${opt#with_} bconds="$bconds $bcond" ;; *) echo >&2 "ERROR: unexpected '$opt' in show_avail_bconds" exit 1 ;; esac done echo $bconds ;; "build" | "build-binary" | "build-source" | "build-prep" | "build-build" | "build-install" | "build-list") init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi # display SMP make flags if set smp_mflags=$(rpm -E %{?_smp_mflags}) if [ "$smp_mflags" ]; then echo "builder: SMP make flags are set to $smp_mflags" fi get_spec parse_spec set_bconds_values display_bconds display_branches if [ "$COMMAND" != "build-source" ]; then check_buildarch fi fetch_build_requires if [ "$INTEGER_RELEASE" = "yes" ]; then echo "Checking release $PACKAGE_RELEASE..." if echo $PACKAGE_RELEASE | grep -q '^[^.]*\.[^.]*$' 2>/dev/null ; then Exit_error err_fract_rel "$PACKAGE_RELEASE" fi fi if [ -n "$NOSOURCE0" ] ; then SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'` fi try_upgrade case $? in 0) get_files $SOURCES $PATCHES check_md5 $SOURCES $PATCHES ;; *) NODIST="yes" get_files $SOURCES $PATCHES update_md5 $SOURCES $PATCHES ;; esac build_package if [ "$UPDATE_POLDEK_INDEXES" = "yes" ] && [ "$COMMAND" = "build" -o "$COMMAND" = "build-binary" ]; then run_poldek --sdir="${POLDEK_INDEX_DIR}" ${UPDATE_POLDEK_INDEXES_OPTS} --mkidxz fi remove_build_requires ;; "branch" ) init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi get_spec parse_spec branch_files $TAG ;; "add_cvs" ) init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi create_git_repo if [ -n "$NEW_REPO" ]; then parse_spec local file for file in $SOURCES $PATCHES; do if [ -z $(src_md5 "$file") ]; then git add $file || Exit_error err_no_source_in_repo $file else cvsignore_df `nourl $file` fi done git add $SPECFILE echo "When you are ready commit your changes and run git push origin master" else echo "You had already git repository. Push chosen branches to remote: ${REMOTE_PLD}" fi ;; "get" ) init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi get_spec parse_spec if [ -n "$NOSOURCE0" ] ; then SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'` fi get_files $SOURCES $PATCHES check_md5 $SOURCES fetch_build_requires ;; "update_md5" ) init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi get_spec parse_spec if [ -n "$NOSOURCE0" ] ; then SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'` fi update_md5 $SOURCES $PATCHES ;; "mr-proper" ) mr_proper ;; "list-sources-files" ) init_builder NOCVSSPEC="yes" DONT_PRINT_REVISION="yes" get_spec parse_spec for SAP in $SOURCES $PATCHES; do echo $SAP | awk '{gsub(/.*\//,"") ; print}' done ;; "list-sources-urls" ) init_builder >&2 NOCVSSPEC="yes" DONT_PRINT_REVISION="yes" get_spec >&2 parse_spec >&2 SAPS="$SOURCES $PATCHES" for SAP in $SAPS; do echo $SAP done ;; "list-sources-local-paths" ) init_builder NOCVSSPEC="yes" DONT_PRINT_REVISION="yes" get_spec parse_spec for SAP in $SOURCES $PATCHES; do echo $PACKAGE_DIR/$(echo $SAP | awk '{gsub(/.*\//,"") ; print }') done ;; "list-sources-distfiles-paths" ) init_builder NOCVSSPEC="yes" DONT_PRINT_REVISION="yes" get_spec parse_spec for SAP in $SOURCES $PATCHES; do if [ -n "$(src_md5 "$SAP")" ]; then distfiles_path "$SAP" fi done ;; "list-sources-distfiles" ) init_builder NOCVSSPEC="yes" DONT_PRINT_REVISION="yes" get_spec parse_spec for SAP in $SOURCES $PATCHES; do if [ -n "$(src_md5 "$SAP")" ]; then distfiles_url "$SAP" fi done ;; "list-sources-cvs" ) init_builder # NOCVSSPEC="yes" DONT_PRINT_REVISION="yes" get_spec parse_spec for SAP in $SOURCES $PATCHES; do if [ -z "$(src_md5 "$SAP")" ]; then echo $SAP | awk '{gsub(/.*\//,"") ; print}' fi done ;; "init_rpm_dir") init_rpm_dir ;; "usage" ) usage ;; "short-version" ) echo "$VERSION" ;; "version" ) echo "$VERSIONSTRING" ;; "list_pkgrev" ) init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi get_spec > /dev/null parse_spec list_pkgrev ;; esac + init_builder + '[' -n yes ']' + set -x + set -v + '[' '' '!=' yes ']' + eval rpm --nodeps --define '"_cvstag' 'tld/xrdp-0.9.25.1-1"' --define '"_tld_builder' '1"' --eval %{_topdir} rpm --nodeps --define "_cvstag tld/xrdp-0.9.25.1-1" --define "_tld_builder 1" --eval %{_topdir} + rpm --nodeps --define '_cvstag tld/xrdp-0.9.25.1-1' --define '_tld_builder 1' --eval %{_topdir} + TOP_DIR=/home/users/builder/rpm/packages + rpm -E '%?rpm_build_macros' + typeset 'macros_ver=2.030' + '[' -z 2.030 ']' + awk 'BEGIN{exit(2.030>=1.534)}' + REPO_DIR=/home/users/builder/rpm/packages + PACKAGE_DIR=/home/users/builder/rpm/packages/xrdp + export 'GIT_WORK_TREE=/home/users/builder/rpm/packages/xrdp' + export 'GIT_DIR=/home/users/builder/rpm/packages/xrdp/.git' + '[' -d /home/users/builder/rpm/packages/xrdp/.git ']' + '[' tld/xrdp-0.9.25.1-1 '=' HEAD ']' + pwd + __PWD=/home/users/builder/rpm/packages + '[' -z xrdp.spec ']' + rpm -E '%{?_smp_mflags}' + smp_mflags=-j2 + '[' -j2 ']' + echo 'builder: SMP make flags are set to -j2' builder: SMP make flags are set to -j2 + get_spec + update_shell_title get_spec + '[' -t 2 ']' + return + '[' -n yes ']' + set -x + set -v + cd /home/users/builder/rpm/packages + basename xrdp.spec + SPECFILE=xrdp.spec + '[' '' '!=' yes ']' + '[' -z '' ']' + '[' -d /home/users/builder/rpm/packages/xrdp/.git ']' + '[' '' '=' yes ']' + unset GIT_WORK_TREE + git clone -o origin git://git.tld-linux.org/packages/xrdp.git Cloning into 'xrdp'... + git config --local --add remote.origin.fetch 'refs/notes/*:refs/notes/*' + git config --local --add remote.origin.push 'refs/notes/*:refs/notes/*' + git config --local --add remote.origin.push HEAD + git config --local push.default current + git remote set-url --push origin ssh://git@git.tld-linux.org:7272/packages/xrdp + git fetch origin 'refs/notes/*:refs/notes/*' + cvsignore_df .gitignore + '[' yes '!=' yes ']' + typeset 'cvsignore=/home/users/builder/rpm/packages/xrdp/.git/info/exclude' + 2>/dev/null + awk '-vf=.gitignore' '-vc=1' '$0 == f { c = 0 } END { exit c }' /home/users/builder/rpm/packages/xrdp/.git/info/exclude + >>/home/users/builder/rpm/packages/xrdp/.git/info/exclude + echo .gitignore + '[' -n '' -a '' '=' '' ']' + '[' yes '!=' no -a -d /home/users/builder/rpm/packages/xrdp ']' + '[' -f dropin ']' + continue + '[' -f md5 ']' + continue + '[' -f builder ']' + '[' -f /home/users/builder/rpm/packages/xrdp/builder ']' + ln -s ../builder /home/users/builder/rpm/packages/xrdp + cvsignore_df builder + '[' yes '!=' yes ']' + typeset 'cvsignore=/home/users/builder/rpm/packages/xrdp/.git/info/exclude' + 2>/dev/null + awk '-vf=builder' '-vc=1' '$0 == f { c = 0 } END { exit c }' /home/users/builder/rpm/packages/xrdp/.git/info/exclude + >>/home/users/builder/rpm/packages/xrdp/.git/info/exclude + echo builder + '[' -f relup.sh ']' + continue + '[' -f compile.sh ']' + continue + '[' -f repackage.sh ']' + continue + '[' -f rsync.sh ']' + continue + '[' -f pearize.sh ']' + continue + '[' -n tld/xrdp-0.9.25.1-1 ']' + get_pkgrev tld/xrdp-0.9.25.1-1 + '[' -z tld/xrdp-0.9.25.1-1 ']' + mktemp /tmp/.builder-XXXX + typeset '_tmp=/tmp/.builder-PlQ4' + 2>/dev/null + rm /tmp/.builder-PlQ4 + >/dev/null + 2>&1 + download_wget /tmp/.builder-PlQ4 http://pkgrevs.tld-linux.org/get/tld/xrdp-0.9.25.1-1 + typeset 'outfile=/tmp/.builder-PlQ4' 'url=http://pkgrevs.tld-linux.org/get/tld/xrdp-0.9.25.1-1' retval wget_help + '[' -z '' ']' + 2>&1 + wget --help + wget_help=$'GNU Wget 1.21.4, a non-interactive network retriever.\nUsage: wget [OPTION]... [URL]...\n\nMandatory arguments to long options are mandatory for short options too.\n\nStartup:\n -V, --version display the version of Wget and exit\n -h, --help print this help\n -b, --background go to background after startup\n -e, --execute=COMMAND execute a `.wgetrc\047-style command\n\nLogging and input file:\n -o, --output-file=FILE log messages to FILE\n -a, --append-output=FILE append messages to FILE\n -d, --debug print lots of debugging information\n -q, --quiet quiet (no output)\n -v, --verbose be verbose (this is the default)\n -nv, --no-verbose turn off verboseness, without being quiet\n --report-speed=TYPE output bandwidth as TYPE. TYPE can be bits\n -i, --input-file=FILE download URLs found in local or external FILE\n --input-metalink=FILE download files covered in local Metalink FILE\n -F, --force-html treat input file as HTML\n -B, --base=URL resolves HTML input-file links (-i -F)\n relative to URL\n --config=FILE specify config file to use\n --no-config do not read any config file\n --rejected-log=FILE log reasons for URL rejection to FILE\n\nDownload:\n -t, --tries=NUMBER set number of retries to NUMBER (0 unlimits)\n --retry-connrefused retry even if connection is refused\n --retry-on-host-error consider host errors as non-fatal, transient errors\n --retry-on-http-error=ERRORS comma-separated list of HTTP errors to retry\n -O, --output-document=FILE write documents to FILE\n -nc, --no-clobber skip downloads that would download to\n existing files (overwriting them)\n --no-netrc don\047t try to obtain credentials from .netrc\n -c, --continue resume getting a partially-downloaded file\n --start-pos=OFFSET start downloading from zero-based position OFFSET\n --progress=TYPE select progress gauge type\n --show-progress display the progress bar in any verbosity mode\n -N, --timestamping don\047t re-retrieve files unless newer than\n local\n --no-if-modified-since don\047t use conditional if-modified-since get\n requests in timestamping mode\n --no-use-server-timestamps don\047t set the local file\047s timestamp by\n the one on the server\n -S, --server-response print server response\n --spider don\047t download anything\n -T, --timeout=SECONDS set all timeout values to SECONDS\n --dns-timeout=SECS set the DNS lookup timeout to SECS\n --connect-timeout=SECS set the connect timeout to SECS\n --read-timeout=SECS set the read timeout to SECS\n -w, --wait=SECONDS wait SECONDS between retrievals\n (applies if more then 1 URL is to be retrieved)\n --waitretry=SECONDS wait 1..SECONDS between retries of a retrieval\n (applies if more then 1 URL is to be retrieved)\n --random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals\n (applies if more then 1 URL is to be retrieved)\n --no-proxy explicitly turn off proxy\n -Q, --quota=NUMBER set retrieval quota to NUMBER\n --bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host\n --limit-rate=RATE limit download rate to RATE\n --no-dns-cache disable caching DNS lookups\n --restrict-file-names=OS restrict chars in file names to ones OS allows\n --ignore-case ignore case when matching files/directories\n -4, --inet4-only connect only to IPv4 addresses\n -6, --inet6-only connect only to IPv6 addresses\n --prefer-family=FAMILY connect first to addresses of specified family,\n one of IPv6, IPv4, or none\n --user=USER set both ftp and http user to USER\n --password=PASS set both ftp and http password to PASS\n --ask-password prompt for passwords\n --use-askpass=COMMAND specify credential handler for requesting \n username and password. If no COMMAND is \n specified the WGET_ASKPASS or the SSH_ASKPASS \n environment variable is used.\n --no-iri turn off IRI support\n --local-encoding=ENC use ENC as the local encoding for IRIs\n --remote-encoding=ENC use ENC as the default remote encoding\n --unlink remove file before clobber\n --keep-badhash keep files with checksum mismatch (append .badhash)\n --metalink-index=NUMBER Metalink application/metalink4+xml metaurl ordinal NUMBER\n --metalink-over-http use Metalink metadata from HTTP response headers\n --preferred-location preferred location for Metalink resources\n --xattr turn on storage of metadata in extended file attributes\n\nDirectories:\n -nd, --no-directories don\047t create directories\n -x, --force-directories force creation of directories\n -nH, --no-host-directories don\047t create host directories\n --protocol-directories use protocol name in directories\n -P, --directory-prefix=PREFIX save files to PREFIX/..\n --cut-dirs=NUMBER ignore NUMBER remote directory components\n\nHTTP options:\n --http-user=USER set http user to USER\n --http-password=PASS set http password to PASS\n --no-cache disallow server-cached data\n --default-page=NAME change the default page name (normally\n this is \047index.html\047.)\n -E, --adjust-extension save HTML/CSS documents with proper extensions\n --ignore-length ignore \047Content-Length\047 header field\n --header=STRING insert STRING among the headers\n --compression=TYPE choose compression, one of auto, gzip and none. (default: none)\n --max-redirect maximum redirections allowed per page\n --proxy-user=USER set USER as proxy username\n --proxy-password=PASS set PASS as proxy password\n --referer=URL include \047Referer: URL\047 header in HTTP request\n --save-headers save the HTTP headers to file\n -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION\n --no-http-keep-alive disable HTTP keep-alive (persistent connections)\n --no-cookies don\047t use cookies\n --load-cookies=FILE load cookies from FILE before session\n --save-cookies=FILE save cookies to FILE after session\n --keep-session-cookies load and save session (non-permanent) cookies\n --post-data=STRING use the POST method; send STRING as the data\n --post-file=FILE use the POST method; send contents of FILE\n --method=HTTPMethod use method "HTTPMethod" in the request\n --body-data=STRING send STRING as data. --method MUST be set\n --body-file=FILE send contents of FILE. --method MUST be set\n --content-disposition honor the Content-Disposition header when\n choosing local file names (EXPERIMENTAL)\n --content-on-error output the received content on server errors\n --auth-no-challenge send Basic HTTP authentication information\n without first waiting for the server\047s\n challenge\n\nHTTPS (SSL/TLS) options:\n --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n SSLv3, TLSv1, TLSv1_1, TLSv1_2, TLSv1_3 and PFS\n --https-only only follow secure HTTPS links\n --no-check-certificate don\047t validate the server\047s certificate\n --certificate=FILE client certificate file\n --certificate-type=TYPE client certificate type, PEM or DER\n --private-key=FILE private key file\n --private-key-type=TYPE private key type, PEM or DER\n --ca-certificate=FILE file with the bundle of CAs\n --ca-directory=DIR directory where hash list of CAs is stored\n --crl-file=FILE file with bundle of CRLs\n --pinnedpubkey=FILE/HASHES Public key (PEM/DER) file, or any number\n of base64 encoded sha256 hashes preceded by\n \047sha256//\047 and separated by \047;\047, to verify\n peer against\n --random-file=FILE file with random data for seeding the SSL PRNG\n\n --ciphers=STR Set the priority string (GnuTLS) or cipher list string (OpenSSL) directly.\n Use with care. This option overrides --secure-protocol.\n The format and syntax of this string depend on the specific SSL/TLS engine.\nHSTS options:\n --no-hsts disable HSTS\n --hsts-file path of HSTS database (will override default)\n\nFTP options:\n --ftp-user=USER set ftp user to USER\n --ftp-password=PASS set ftp password to PASS\n --no-remove-listing don\047t remove \047.listing\047 files\n --no-glob turn off FTP file name globbing\n --no-passive-ftp disable the "passive" transfer mode\n --preserve-permissions preserve remote file permissions\n --retr-symlinks when recursing, get linked-to files (not dir)\n\nFTPS options:\n --ftps-implicit use implicit FTPS (default port is 990)\n --ftps-resume-ssl resume the SSL/TLS session started in the control connection when\n opening a data connection\n --ftps-clear-data-connection cipher the control channel only; all the data will be in plaintext\n --ftps-fallback-to-ftp fall back to FTP if FTPS is not supported in the target server\nWARC options:\n --warc-file=FILENAME save request/response data to a .warc.gz file\n --warc-header=STRING insert STRING into the warcinfo record\n --warc-max-size=NUMBER set maximum size of WARC files to NUMBER\n --warc-cdx write CDX index files\n --warc-dedup=FILENAME do not store records listed in this CDX file\n --no-warc-compression do not compress WARC files with GZIP\n --no-warc-digests do not calculate SHA1 digests\n --no-warc-keep-log do not store the log file in a WARC record\n --warc-tempdir=DIRECTORY location for temporary files created by the\n WARC writer\n\nRecursive download:\n -r, --recursive specify recursive download\n -l, --level=NUMBER maximum recursion depth (inf or 0 for infinite)\n --delete-after delete files locally after downloading them\n -k, --convert-links make links in downloaded HTML or CSS point to\n local files\n --convert-file-only convert the file part of the URLs only (usually known as the basename)\n --backups=N before writing file X, rotate up to N backup files\n -K, --backup-converted before converting file X, back up as X.orig\n -m, --mirror shortcut for -N -r -l inf --no-remove-listing\n -p, --page-requisites get all images, etc. needed to display HTML page\n --strict-comments turn on strict (SGML) handling of HTML comments\n\nRecursive accept/reject:\n -A, --accept=LIST comma-separated list of accepted extensions\n -R, --reject=LIST comma-separated list of rejected extensions\n --accept-regex=REGEX regex matching accepted URLs\n --reject-regex=REGEX regex matching rejected URLs\n --regex-type=TYPE regex type (posix|pcre)\n -D, --domains=LIST comma-separated list of accepted domains\n --exclude-domains=LIST comma-separated list of rejected domains\n --follow-ftp follow FTP links from HTML documents\n --follow-tags=LIST comma-separated list of followed HTML tags\n --ignore-tags=LIST comma-separated list of ignored HTML tags\n -H, --span-hosts go to foreign hosts when recursive\n -L, --relative follow relative links only\n -I, --include-directories=LIST list of allowed directories\n --trust-server-names use the name specified by the redirection\n URL\047s last component\n -X, --exclude-directories=LIST list of excluded directories\n -np, --no-parent don\047t ascend to the parent directory\n\nEmail bug reports, questions, discussions to \nand/or open issues at https://savannah.gnu.org/bugs/?func=additem&group=wget.' + echo $'GNU Wget 1.21.4, a non-interactive network retriever.\nUsage: wget [OPTION]... [URL]...\n\nMandatory arguments to long options are mandatory for short options too.\n\nStartup:\n -V, --version display the version of Wget and exit\n -h, --help print this help\n -b, --background go to background after startup\n -e, --execute=COMMAND execute a `.wgetrc\047-style command\n\nLogging and input file:\n -o, --output-file=FILE + grep -q -- ' --no-check-certificate ' log messages to FILE\n -a, --append-output=FILE append messages to FILE\n -d, --debug print lots of debugging information\n -q, --quiet quiet (no output)\n -v, --verbose be verbose (this is the default)\n -nv, --no-verbose turn off verboseness, without being quiet\n --report-speed=TYPE output bandwidth as TYPE. TYPE can be bits\n -i, --input-file=FILE download URLs found in local or external FILE\n --input-metalink=FILE download files covered in local Metalink FILE\n -F, --force-html treat input file as HTML\n -B, --base=URL resolves HTML input-file links (-i -F)\n relative to URL\n --config=FILE specify config file to use\n --no-config do not read any config file\n --rejected-log=FILE log reasons for URL rejection to FILE\n\nDownload:\n -t, --tries=NUMBER set number of retries to NUMBER (0 unlimits)\n --retry-connrefused retry even if connection is refused\n --retry-on-host-error consider host errors as non-fatal, transient errors\n --retry-on-http-error=ERRORS comma-separated list of HTTP errors to retry\n -O, --output-document=FILE write documents to FILE\n -nc, --no-clobber skip downloads that would download to\n existing files (overwriting them)\n --no-netrc don\047t try to obtain credentials from .netrc\n -c, --continue resume getting a partially-downloaded file\n --start-pos=OFFSET start downloading from zero-based position OFFSET\n --progress=TYPE select progress gauge type\n --show-progress display the progress bar in any verbosity mode\n -N, --timestamping don\047t re-retrieve files unless newer than\n local\n --no-if-modified-since don\047t use conditional if-modified-since get\n requests in timestamping mode\n --no-use-server-timestamps don\047t set the local file\047s timestamp by\n the one on the server\n -S, --server-response print server response\n --spider don\047t download anything\n -T, --timeout=SECONDS set all timeout values to SECONDS\n --dns-timeout=SECS set the DNS lookup timeout to SECS\n --connect-timeout=SECS set the connect timeout to SECS\n --read-timeout=SECS set the read timeout to SECS\n -w, --wait=SECONDS wait SECONDS between retrievals\n (applies if more then 1 URL is to be retrieved)\n --waitretry=SECONDS wait 1..SECONDS between retries of a retrieval\n (applies if more then 1 URL is to be retrieved)\n --random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals\n (applies if more then 1 URL is to be retrieved)\n --no-proxy explicitly turn off proxy\n -Q, --quota=NUMBER set retrieval quota to NUMBER\n --bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host\n --limit-rate=RATE limit download rate to RATE\n --no-dns-cache disable caching DNS lookups\n --restrict-file-names=OS restrict chars in file names to ones OS allows\n --ignore-case ignore case when matching files/directories\n -4, --inet4-only connect only to IPv4 addresses\n -6, --inet6-only connect only to IPv6 addresses\n --prefer-family=FAMILY connect first to addresses of specified family,\n one of IPv6, IPv4, or none\n --user=USER set both ftp and http user to USER\n --password=PASS set both ftp and http password to PASS\n --ask-password prompt for passwords\n --use-askpass=COMMAND specify credential handler for requesting \n username and password. If no COMMAND is \n specified the WGET_ASKPASS or the SSH_ASKPASS \n environment variable is used.\n --no-iri turn off IRI support\n --local-encoding=ENC use ENC as the local encoding for IRIs\n --remote-encoding=ENC use ENC as the default remote encoding\n --unlink remove file before clobber\n --keep-badhash keep files with checksum mismatch (append .badhash)\n --metalink-index=NUMBER Metalink application/metalink4+xml metaurl ordinal NUMBER\n --metalink-over-http use Metalink metadata from HTTP response headers\n --preferred-location preferred location for Metalink resources\n --xattr turn on storage of metadata in extended file attributes\n\nDirectories:\n -nd, --no-directories don\047t create directories\n -x, --force-directories force creation of directories\n -nH, --no-host-directories don\047t create host directories\n --protocol-directories use protocol name in directories\n -P, --directory-prefix=PREFIX save files to PREFIX/..\n --cut-dirs=NUMBER ignore NUMBER remote directory components\n\nHTTP options:\n --http-user=USER set http user to USER\n --http-password=PASS set http password to PASS\n --no-cache disallow server-cached data\n --default-page=NAME change the default page name (normally\n this is \047index.html\047.)\n -E, --adjust-extension save HTML/CSS documents with proper extensions\n --ignore-length ignore \047Content-Length\047 header field\n --header=STRING insert STRING among the headers\n --compression=TYPE choose compression, one of auto, gzip and none. (default: none)\n --max-redirect maximum redirections allowed per page\n --proxy-user=USER set USER as proxy username\n --proxy-password=PASS set PASS as proxy password\n --referer=URL include \047Referer: URL\047 header in HTTP request\n --save-headers save the HTTP headers to file\n -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION\n --no-http-keep-alive disable HTTP keep-alive (persistent connections)\n --no-cookies don\047t use cookies\n --load-cookies=FILE load cookies from FILE before session\n --save-cookies=FILE save cookies to FILE after session\n --keep-session-cookies load and save session (non-permanent) cookies\n --post-data=STRING use the POST method; send STRING as the data\n --post-file=FILE use the POST method; send contents of FILE\n --method=HTTPMethod use method "HTTPMethod" in the request\n --body-data=STRING send STRING as data. --method MUST be set\n --body-file=FILE send contents of FILE. --method MUST be set\n --content-disposition honor the Content-Disposition header when\n choosing local file names (EXPERIMENTAL)\n --content-on-error output the received content on server errors\n --auth-no-challenge send Basic HTTP authentication information\n without first waiting for the server\047s\n challenge\n\nHTTPS (SSL/TLS) options:\n --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n SSLv3, TLSv1, TLSv1_1, TLSv1_2, TLSv1_3 and PFS\n --https-only only follow secure HTTPS links\n --no-check-certificate don\047t validate the server\047s certificate\n --certificate=FILE client certificate file\n --certificate-type=TYPE client certificate type, PEM or DER\n --private-key=FILE private key file\n --private-key-type=TYPE private key type, PEM or DER\n --ca-certificate=FILE file with the bundle of CAs\n --ca-directory=DIR directory where hash list of CAs is stored\n --crl-file=FILE file with bundle of CRLs\n --pinnedpubkey=FILE/HASHES Public key (PEM/DER) file, or any number\n of base64 encoded sha256 hashes preceded by\n \047sha256//\047 and separated by \047;\047, to verify\n peer against\n --random-file=FILE file with random data for seeding the SSL PRNG\n\n --ciphers=STR Set the priority string (GnuTLS) or cipher list string (OpenSSL) directly.\n Use with care. This option overrides --secure-protocol.\n The format and syntax of this string depend on the specific SSL/TLS engine.\nHSTS options:\n --no-hsts disable HSTS\n --hsts-file path of HSTS database (will override default)\n\nFTP options:\n --ftp-user=USER set ftp user to USER\n --ftp-password=PASS set ftp password to PASS\n --no-remove-listing don\047t remove \047.listing\047 files\n --no-glob turn off FTP file name globbing\n --no-passive-ftp disable the "passive" transfer mode\n --preserve-permissions preserve remote file permissions\n --retr-symlinks when recursing, get linked-to files (not dir)\n\nFTPS options:\n --ftps-implicit use implicit FTPS (default port is 990)\n --ftps-resume-ssl resume the SSL/TLS session started in the control connection when\n opening a data connection\n --ftps-clear-data-connection cipher the control channel only; all the data will be in plaintext\n --ftps-fallback-to-ftp fall back to FTP if FTPS is not supported in the target server\nWARC options:\n --warc-file=FILENAME save request/response data to a .warc.gz file\n --warc-header=STRING insert STRING into the warcinfo record\n --warc-max-size=NUMBER set maximum size of WARC files to NUMBER\n --warc-cdx write CDX index files\n --warc-dedup=FILENAME do not store records listed in this CDX file\n --no-warc-compression do not compress WARC files with GZIP\n --no-warc-digests do not calculate SHA1 digests\n --no-warc-keep-log do not store the log file in a WARC record\n --warc-tempdir=DIRECTORY location for temporary files created by the\n WARC writer\n\nRecursive download:\n -r, --recursive specify recursive download\n -l, --level=NUMBER maximum recursion depth (inf or 0 for infinite)\n --delete-after delete files locally after downloading them\n -k, --convert-links make links in downloaded HTML or CSS point to\n local files\n --convert-file-only convert the file part of the URLs only (usually known as the basename)\n --backups=N before writing file X, rotate up to N backup files\n -K, --backup-converted before converting file X, back up as X.orig\n -m, --mirror shortcut for -N -r -l inf --no-remove-listing\n -p, --page-requisites get all images, etc. needed to display HTML page\n --strict-comments turn on strict (SGML) handling of HTML comments\n\nRecursive accept/reject:\n -A, --accept=LIST comma-separated list of accepted extensions\n -R, --reject=LIST comma-separated list of rejected extensions\n --accept-regex=REGEX regex matching accepted URLs\n --reject-regex=REGEX regex matching rejected URLs\n --regex-type=TYPE regex type (posix|pcre)\n -D, --domains=LIST comma-separated list of accepted domains\n --exclude-domains=LIST comma-separated list of rejected domains\n --follow-ftp follow FTP links from HTML documents\n --follow-tags=LIST comma-separated list of followed HTML tags\n --ignore-tags=LIST comma-separated list of ignored HTML tags\n -H, --span-hosts go to foreign hosts when recursive\n -L, --relative follow relative links only\n -I, --include-directories=LIST list of allowed directories\n --trust-server-names use the name specified by the redirection\n URL\047s last component\n -X, --exclude-directories=LIST list of excluded directories\n -np, --no-parent don\047t ascend to the parent directory\n\nEmail bug reports, questions, discussions to \nand/or open issues at https://savannah.gnu.org/bugs/?func=additem&group=wget.' + WGET_OPTS=' --no-check-certificate' + echo $'GNU Wget 1.21.4, a non-interactive network retriever.\nUsage: wget [OPTION]... [URL]...\n\nMandatory arguments to long options are mandatory for short options too.\n\nStartup:\n -V, --version display the version of Wget and exit\n -h, --help print this help\n -b, --background go to background after startup\n -e, --execute=COMMAND execute a `.wgetrc\047-style command\n\nLogging and input file:\n -o, --output-file=FILE log messages to FILE\n -a, --append-output=FILE append messages to FILE\n -d, --debug print lots of debugging information\n -q, --quiet quiet (no output)\n -v, --verbose be verbose (this is the default)\n -nv, --no-verbose turn off verboseness, without being quiet\n --report-speed=TYPE output bandwidth as TYPE. TYPE can be bits\n -i, --input-file=FILE download URLs found in local or external FILE\n --input-metalink=FILE download files covered in local Metalink FILE\n -F, --force-html treat input file as HTML\n -B, --base=URL resolves HTML input-file links (-i -F)\n relative to URL\n --config=FILE specify config file to use\n --no-config do not read any config file\n --rejected-log=FILE log reasons for URL rejection to FILE\n\nDownload:\n -t, --tries=NUMBER set number of retries to NUMBER (0 unlimits)\n --retry-connrefused retry even if connection is refused\n --retry-on-host-error consider host errors as non-fatal, transient errors\n --retry-on-http-error=ERRORS comma-separated list of HTTP errors to retry\n -O, --output-document=FILE write documents to FILE\n -nc, --no-clobber skip downloads that would download to\n existing files (overwriting them)\n --no-netrc don\047t try to obtain credentials from .netrc\n -c, --continue resume getting a partially-downloaded file\n --start-pos=OFFSET start downloading from zero-based position OFFSET\n --progress=TYPE select progress gauge type\n --show-progress display the progress bar in any verbosity mode\n -N, --timestamping don\047t re-retrieve files unless newer than\n local\n --no-if-modified-since don\047t use conditional if-modified-since get\n requests in timestamping mode\n --no-use-server-timestamps don\047t set the local file\047s timestamp by\n the one on the server\n -S, --server-response print server response\n --spider don\047t download anything\n -T, --timeout=SECONDS set all timeout values to SECONDS\n --dns-timeout=SECS set the DNS lookup timeout to SECS\n --connect-timeout=SECS set the connect timeout to SECS\n --read-timeout=SECS set the read timeout to SECS\n -w, --wait=SECONDS wait SECONDS between retrievals\n (applies if more then 1 URL is to be retrieved)\n --waitretry=SECONDS wait 1..SECONDS between retries of a retrieval\n (applies if more then 1 URL is to be retrieved)\n --random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals\n (applies if more then 1 URL is to be retrieved)\n --no-proxy explicitly turn off proxy\n -Q, --quota=NUMBER set retrieval quota to NUMBER\n --bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host\n --limit-rate=RATE limit download rate to RATE\n --no-dns-cache disable caching DNS lookups\n --restrict-file-names=OS restrict chars in file names to ones OS allows\n --ignore-case ignore case when matching files/directories\n -4, --inet4-only connect only to IPv4 addresses\n -6, --inet6-only connect only to IPv6 addresses\n --prefer-family=FAMILY connect first to addresses of specified family,\n one of IPv6, IPv4, or none\n --user=USER set both ftp and http user to USER+ grep -q -- ' --inet ' \n --password=PASS set both ftp and http password to PASS\n --ask-password prompt for passwords\n --use-askpass=COMMAND specify credential handler for requesting \n username and password. If no COMMAND is \n specified the WGET_ASKPASS or the SSH_ASKPASS \n environment variable is used.\n --no-iri turn off IRI support\n --local-encoding=ENC use ENC as the local encoding for IRIs\n --remote-encoding=ENC use ENC as the default remote encoding\n --unlink remove file before clobber\n --keep-badhash keep files with checksum mismatch (append .badhash)\n --metalink-index=NUMBER Metalink application/metalink4+xml metaurl ordinal NUMBER\n --metalink-over-http use Metalink metadata from HTTP response headers\n --preferred-location preferred location for Metalink resources\n --xattr turn on storage of metadata in extended file attributes\n\nDirectories:\n -nd, --no-directories don\047t create directories\n -x, --force-directories force creation of directories\n -nH, --no-host-directories don\047t create host directories\n --protocol-directories use protocol name in directories\n -P, --directory-prefix=PREFIX save files to PREFIX/..\n --cut-dirs=NUMBER ignore NUMBER remote directory components\n\nHTTP options:\n --http-user=USER set http user to USER\n --http-password=PASS set http password to PASS\n --no-cache disallow server-cached data\n --default-page=NAME change the default page name (normally\n this is \047index.html\047.)\n -E, --adjust-extension save HTML/CSS documents with proper extensions\n --ignore-length ignore \047Content-Length\047 header field\n --header=STRING insert STRING among the headers\n --compression=TYPE choose compression, one of auto, gzip and none. (default: none)\n --max-redirect maximum redirections allowed per page\n --proxy-user=USER set USER as proxy username\n --proxy-password=PASS set PASS as proxy password\n --referer=URL include \047Referer: URL\047 header in HTTP request\n --save-headers save the HTTP headers to file\n -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION\n --no-http-keep-alive disable HTTP keep-alive (persistent connections)\n --no-cookies don\047t use cookies\n --load-cookies=FILE load cookies from FILE before session\n --save-cookies=FILE save cookies to FILE after session\n --keep-session-cookies load and save session (non-permanent) cookies\n --post-data=STRING use the POST method; send STRING as the data\n --post-file=FILE use the POST method; send contents of FILE\n --method=HTTPMethod use method "HTTPMethod" in the request\n --body-data=STRING send STRING as data. --method MUST be set\n --body-file=FILE send contents of FILE. --method MUST be set\n --content-disposition honor the Content-Disposition header when\n choosing local file names (EXPERIMENTAL)\n --content-on-error output the received content on server errors\n --auth-no-challenge send Basic HTTP authentication information\n without first waiting for the server\047s\n challenge\n\nHTTPS (SSL/TLS) options:\n --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n SSLv3, TLSv1, TLSv1_1, TLSv1_2, TLSv1_3 and PFS\n --https-only only follow secure HTTPS links\n --no-check-certificate don\047t validate the server\047s certificate\n --certificate=FILE client certificate file\n --certificate-type=TYPE client certificate type, PEM or DER\n --private-key=FILE private key file\n --private-key-type=TYPE private key type, PEM or DER\n --ca-certificate=FILE file with the bundle of CAs\n --ca-directory=DIR directory where hash list of CAs is stored\n --crl-file=FILE file with bundle of CRLs\n --pinnedpubkey=FILE/HASHES Public key (PEM/DER) file, or any number\n of base64 encoded sha256 hashes preceded by\n \047sha256//\047 and separated by \047;\047, to verify\n peer against\n --random-file=FILE file with random data for seeding the SSL PRNG\n\n --ciphers=STR Set the priority string (GnuTLS) or cipher list string (OpenSSL) directly.\n Use with care. This option overrides --secure-protocol.\n The format and syntax of this string depend on the specific SSL/TLS engine.\nHSTS options:\n --no-hsts disable HSTS\n --hsts-file path of HSTS database (will override default)\n\nFTP options:\n --ftp-user=USER set ftp user to USER\n --ftp-password=PASS set ftp password to PASS\n --no-remove-listing don\047t remove \047.listing\047 files\n --no-glob turn off FTP file name globbing\n --no-passive-ftp disable the "passive" transfer mode\n --preserve-permissions preserve remote file permissions\n --retr-symlinks when recursing, get linked-to files (not dir)\n\nFTPS options:\n --ftps-implicit use implicit FTPS (default port is 990)\n --ftps-resume-ssl resume the SSL/TLS session started in the control connection when\n opening a data connection\n --ftps-clear-data-connection cipher the control channel only; all the data will be in plaintext\n --ftps-fallback-to-ftp fall back to FTP if FTPS is not supported in the target server\nWARC options:\n --warc-file=FILENAME save request/response data to a .warc.gz file\n --warc-header=STRING insert STRING into the warcinfo record\n --warc-max-size=NUMBER set maximum size of WARC files to NUMBER\n --warc-cdx write CDX index files\n --warc-dedup=FILENAME do not store records listed in this CDX file\n --no-warc-compression do not compress WARC files with GZIP\n --no-warc-digests do not calculate SHA1 digests\n --no-warc-keep-log do not store the log file in a WARC record\n --warc-tempdir=DIRECTORY location for temporary files created by the\n WARC writer\n\nRecursive download:\n -r, --recursive specify recursive download\n -l, --level=NUMBER maximum recursion depth (inf or 0 for infinite)\n --delete-after delete files locally after downloading them\n -k, --convert-links make links in downloaded HTML or CSS point to\n local files\n --convert-file-only convert the file part of the URLs only (usually known as the basename)\n --backups=N before writing file X, rotate up to N backup files\n -K, --backup-converted before converting file X, back up as X.orig\n -m, --mirror shortcut for -N -r -l inf --no-remove-listing\n -p, --page-requisites get all images, etc. needed to display HTML page\n --strict-comments turn on strict (SGML) handling of HTML comments\n\nRecursive accept/reject:\n -A, --accept=LIST comma-separated list of accepted extensions\n -R, --reject=LIST comma-separated list of rejected extensions\n --accept-regex=REGEX regex matching accepted URLs\n --reject-regex=REGEX regex matching rejected URLs\n --regex-type=TYPE regex type (posix|pcre)\n -D, --domains=LIST comma-separated list of accepted domains\n --exclude-domains=LIST comma-separated list of rejected domains\n --follow-ftp follow FTP links from HTML documents\n --follow-tags=LIST comma-separated list of followed HTML tags\n --ignore-tags=LIST comma-separated list of ignored HTML tags\n -H, --span-hosts go to foreign hosts when recursive\n -L, --relative follow relative links only\n -I, --include-directories=LIST list of allowed directories\n --trust-server-names use the name specified by the redirection\n URL\047s last component\n -X, --exclude-directories=LIST list of excluded directories\n -np, --no-parent don\047t ascend to the parent directory\n\nEmail bug reports, questions, discussions to \nand/or open issues at https://savannah.gnu.org/bugs/?func=additem&group=wget.' + echo $'GNU Wget 1.21.4, a non-interactive network retriever.\nUsage: wget [OPTION]... [URL]...\n\nMandatory arguments to long options are mandatory for short options too.\n\nStartup:\n -V, --version display the version of Wget and exit\n -h, --help print this help\n -b, --background go to background after startup\n -e, --execute=COMMAND execute a `.wgetrc\047-style command\n\nLogging and input file:\n -o, --output-file=FILE log messages to FILE\n -a, --append-output=FILE append messages to FILE\n -d, --debug print lots of debugging information\n -q, --quiet quiet (no output)\n -v, --verbose be verbose (this is the default)\n -nv, --no-verbose turn off verboseness, without being quiet\n --report-speed=TYPE output bandwidth as TYPE. TYPE can be bits\n -i, --input-file=FILE download URLs found in local or external FILE\n --input-metalink=FILE download files covered in local Metalink FILE\n -F, --force-html treat input file as HTML\n -B, --base=URL resolves HTML input-file links (-i -F)\n relative to URL\n --config=FILE specify config file to use\n --no-config do not read any config file\n --rejected-log=FILE log reasons for URL rejection to FILE\n\nDownload:\n -t, --tries=NUMBER set number of retries to NUMBER (0 unlimits)\n --retry-connrefused retry even if connection is refused\n --retry-on-host-error consider host errors as non-fatal, transient errors\n --retry-on-http-error=ERRORS comma-separated list of HTTP errors to retry\n -O, --output-document=FILE write documents to FILE\n -nc, --no-clobber skip downloads that would download to\n existing files (overwriting them)\n --no-netrc don\047t try to obtain credentials from .netrc\n -c, --continue resume getting a partially-downloaded file\n --start-pos=OFFSET start downloading from zero-based position OFFSET\n --progress=TYPE select progress gauge type\n --show-progress display the progress bar in any verbosity mode\n -N, --timestamping don\047t re-retrieve files unless newer than\n local\n --no-if-modified-since don\047t use conditional if-modified-since get\n requests in timestamping mode\n --no-use-server-timestamps don\047t set the local file\047s timestamp by\n the one on the server\n -S, --server-response print server response\n --spider don\047t download anything\n -T, --timeout=SECONDS set all timeout values to SECONDS\n --dns-timeout=SECS set the DNS lookup timeout to SECS\n --connect-timeout=SECS set the connect timeout to SECS\n --read-timeout=SECS set the read timeout to SECS\n -w, --wait=SECONDS wait SECONDS between retrievals\n (applies if more then 1 URL is to be retrieved)\n --waitretry=SECONDS wait 1..SECONDS between retries of a retrieval\n (applies if more then 1 URL is to be retrieved)\n --random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals\n (applies if more then 1 URL is to be retrieved)\n --no-proxy explicitly turn off proxy\n -Q, --quota=NUMBER set retrieval quota to NUMBER\n --bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host\n --limit-rate=RATE limit download rate to RATE\n --no-dns-cache disable caching DNS lookups\n --restrict-file-names=OS restrict chars in file names to ones OS allows\n --ignore-case ignore case when matching files/directories\n -4, --inet4-only connect only to IPv4 addresses\n -6, --inet6-only connect only to IPv6 addresses\n --prefer-family=FAMILY connect first to addresses of specified family,\n one of IPv6, IPv4, or none\n --user=USER set both ftp and http user to USER+ grep -q -- ' --retry-connrefused ' \n --password=PASS set both ftp and http password to PASS\n --ask-password prompt for passwords\n --use-askpass=COMMAND specify credential handler for requesting \n username and password. If no COMMAND is \n specified the WGET_ASKPASS or the SSH_ASKPASS \n environment variable is used.\n --no-iri turn off IRI support\n --local-encoding=ENC use ENC as the local encoding for IRIs\n --remote-encoding=ENC use ENC as the default remote encoding\n --unlink remove file before clobber\n --keep-badhash keep files with checksum mismatch (append .badhash)\n --metalink-index=NUMBER Metalink application/metalink4+xml metaurl ordinal NUMBER\n --metalink-over-http use Metalink metadata from HTTP response headers\n --preferred-location preferred location for Metalink resources\n --xattr turn on storage of metadata in extended file attributes\n\nDirectories:\n -nd, --no-directories don\047t create directories\n -x, --force-directories force creation of directories\n -nH, --no-host-directories don\047t create host directories\n --protocol-directories use protocol name in directories\n -P, --directory-prefix=PREFIX save files to PREFIX/..\n --cut-dirs=NUMBER ignore NUMBER remote directory components\n\nHTTP options:\n --http-user=USER set http user to USER\n --http-password=PASS set http password to PASS\n --no-cache disallow server-cached data\n --default-page=NAME change the default page name (normally\n this is \047index.html\047.)\n -E, --adjust-extension save HTML/CSS documents with proper extensions\n --ignore-length ignore \047Content-Length\047 header field\n --header=STRING insert STRING among the headers\n --compression=TYPE choose compression, one of auto, gzip and none. (default: none)\n --max-redirect maximum redirections allowed per page\n --proxy-user=USER set USER as proxy username\n --proxy-password=PASS set PASS as proxy password\n --referer=URL include \047Referer: URL\047 header in HTTP request\n --save-headers save the HTTP headers to file\n -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION\n --no-http-keep-alive disable HTTP keep-alive (persistent connections)\n --no-cookies don\047t use cookies\n --load-cookies=FILE load cookies from FILE before session\n --save-cookies=FILE save cookies to FILE after session\n --keep-session-cookies load and save session (non-permanent) cookies\n --post-data=STRING use the POST method; send STRING as the data\n --post-file=FILE use the POST method; send contents of FILE\n --method=HTTPMethod use method "HTTPMethod" in the request\n --body-data=STRING send STRING as data. --method MUST be set\n --body-file=FILE send contents of FILE. --method MUST be set\n --content-disposition honor the Content-Disposition header when\n choosing local file names (EXPERIMENTAL)\n --content-on-error output the received content on server errors\n --auth-no-challenge send Basic HTTP authentication information\n without first waiting for the server\047s\n challenge\n\nHTTPS (SSL/TLS) options:\n --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n SSLv3, TLSv1, TLSv1_1, TLSv1_2, TLSv1_3 and PFS\n --https-only only follow secure HTTPS links\n --no-check-certificate don\047t validate the server\047s certificate\n --certificate=FILE client certificate file\n --certificate-type=TYPE client certificate type, PEM or DER\n --private-key=FILE private key file\n --private-key-type=TYPE private key type, PEM or DER\n --ca-certificate=FILE file with the bundle of CAs\n --ca-directory=DIR directory where hash list of CAs is stored\n --crl-file=FILE file with bundle of CRLs\n --pinnedpubkey=FILE/HASHES Public key (PEM/DER) file, or any number\n of base64 encoded sha256 hashes preceded by\n \047sha256//\047 and separated by \047;\047, to verify\n peer against\n --random-file=FILE file with random data for seeding the SSL PRNG\n\n --ciphers=STR Set the priority string (GnuTLS) or cipher list string (OpenSSL) directly.\n Use with care. This option overrides --secure-protocol.\n The format and syntax of this string depend on the specific SSL/TLS engine.\nHSTS options:\n --no-hsts disable HSTS\n --hsts-file path of HSTS database (will override default)\n\nFTP options:\n --ftp-user=USER set ftp user to USER\n --ftp-password=PASS set ftp password to PASS\n --no-remove-listing don\047t remove \047.listing\047 files\n --no-glob turn off FTP file name globbing\n --no-passive-ftp disable the "passive" transfer mode\n --preserve-permissions preserve remote file permissions\n --retr-symlinks when recursing, get linked-to files (not dir)\n\nFTPS options:\n --ftps-implicit use implicit FTPS (default port is 990)\n --ftps-resume-ssl resume the SSL/TLS session started in the control connection when\n opening a data connection\n --ftps-clear-data-connection cipher the control channel only; all the data will be in plaintext\n --ftps-fallback-to-ftp fall back to FTP if FTPS is not supported in the target server\nWARC options:\n --warc-file=FILENAME save request/response data to a .warc.gz file\n --warc-header=STRING insert STRING into the warcinfo record\n --warc-max-size=NUMBER set maximum size of WARC files to NUMBER\n --warc-cdx write CDX index files\n --warc-dedup=FILENAME do not store records listed in this CDX file\n --no-warc-compression do not compress WARC files with GZIP\n --no-warc-digests do not calculate SHA1 digests\n --no-warc-keep-log do not store the log file in a WARC record\n --warc-tempdir=DIRECTORY location for temporary files created by the\n WARC writer\n\nRecursive download:\n -r, --recursive specify recursive download\n -l, --level=NUMBER maximum recursion depth (inf or 0 for infinite)\n --delete-after delete files locally after downloading them\n -k, --convert-links make links in downloaded HTML or CSS point to\n local files\n --convert-file-only convert the file part of the URLs only (usually known as the basename)\n --backups=N before writing file X, rotate up to N backup files\n -K, --backup-converted before converting file X, back up as X.orig\n -m, --mirror shortcut for -N -r -l inf --no-remove-listing\n -p, --page-requisites get all images, etc. needed to display HTML page\n --strict-comments turn on strict (SGML) handling of HTML comments\n\nRecursive accept/reject:\n -A, --accept=LIST comma-separated list of accepted extensions\n -R, --reject=LIST comma-separated list of rejected extensions\n --accept-regex=REGEX regex matching accepted URLs\n --reject-regex=REGEX regex matching rejected URLs\n --regex-type=TYPE regex type (posix|pcre)\n -D, --domains=LIST comma-separated list of accepted domains\n --exclude-domains=LIST comma-separated list of rejected domains\n --follow-ftp follow FTP links from HTML documents\n --follow-tags=LIST comma-separated list of followed HTML tags\n --ignore-tags=LIST comma-separated list of ignored HTML tags\n -H, --span-hosts go to foreign hosts when recursive\n -L, --relative follow relative links only\n -I, --include-directories=LIST list of allowed directories\n --trust-server-names use the name specified by the redirection\n URL\047s last component\n -X, --exclude-directories=LIST list of excluded directories\n -np, --no-parent don\047t ascend to the parent directory\n\nEmail bug reports, questions, discussions to \nand/or open issues at https://savannah.gnu.org/bugs/?func=additem&group=wget.' + WGET_OPTS=' --no-check-certificate --retry-connrefused' + echo $'GNU Wget 1.21.4, a non-interactive network retriever.\nUsage: wget [OPTION]... [URL]...\n\nMandatory arguments to long options are mandatory for short options too.\n\nStartup:\n -V, --version display the version of Wget and exit\n -h, --help print this help\n -b, --background go to background after startup\n -e, --execute=COMMAND execute a `.wgetrc\047-style command\n\nLogging and input file:\n -o, --output-file=FILE log messages to FILE\n -a, --append-output=FILE append messages to FILE\n -d, --debug print lots of debugging information\n -q, --quiet quiet (no output)\n -v, --verbose be verbose (this is the default)\n -nv, --no-verbose turn off verboseness, without being quiet\n --report-speed=TYPE output bandwidth as TYPE. TYPE can be bits\n -i, --input-file=FILE download URLs found in local or external FILE\n --input-metalink=FILE download files covered in local Metalink FILE\n -F, --force-html treat input file as HTML\n -B, --base=URL resolves HTML input-file links (-i -F)\n relative to URL\n --config=FILE specify config file to use\n --no-config do not read any config file\n --rejected-log=FILE log reasons for URL rejection to FILE\n\nDownload:\n -t, --tries=NUMBER set number of retries to NUMBER (0 unlimits)\n --retry-connrefused retry even if connection is refused\n --retry-on-host-error consider host errors as non-fatal, transient errors\n --retry-on-http-error=ERRORS comma-separated list of HTTP errors to retry\n -O, --output-document=FILE write documents to FILE\n -nc, --no-clobber skip downloads that would download to\n existing files (overwriting them)\n --no-netrc don\047t try to obtain credentials from .netrc\n -c, --continue resume getting a partially-downloaded file\n --start-pos=OFFSET start downloading from zero-based position OFFSET\n --progress=TYPE select progress gauge type\n --show-progress display the progress bar in any verbosity mode\n -N, --timestamping don\047t re-retrieve files unless newer than\n local\n --no-if-modified-since don\047t use conditional if-modified-since get\n requests in timestamping mode\n --no-use-server-timestamps don\047t set the local file\047s timestamp by\n the one on the server\n -S, --server-response print server response\n --spider don\047t download anything\n -T, --timeout=SECONDS set all timeout values to SECONDS\n --dns-timeout=SECS set the DNS lookup timeout to SECS\n --connect-timeout=SECS set the connect timeout to SECS\n --read-timeout=SECS set the read timeout to SECS\n -w, --wait=SECONDS wait SECONDS between retrievals\n (applies if more then 1 URL is to be retrieved)\n --waitretry=SECONDS wait 1..SECONDS between retries of a retrieval\n (applies if more then 1 URL is to be retrieved)\n + grep -q -- ' --no-iri ' --random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals\n (applies if more then 1 URL is to be retrieved)\n --no-proxy explicitly turn off proxy\n -Q, --quota=NUMBER set retrieval quota to NUMBER\n --bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host\n --limit-rate=RATE limit download rate to RATE\n --no-dns-cache disable caching DNS lookups\n --restrict-file-names=OS restrict chars in file names to ones OS allows\n --ignore-case ignore case when matching files/directories\n -4, --inet4-only connect only to IPv4 addresses\n -6, --inet6-only connect only to IPv6 addresses\n --prefer-family=FAMILY connect first to addresses of specified family,\n one of IPv6, IPv4, or none\n --user=USER set both ftp and http user to USER\n --password=PASS set both ftp and http password to PASS\n --ask-password prompt for passwords\n --use-askpass=COMMAND specify credential handler for requesting \n username and password. If no COMMAND is \n specified the WGET_ASKPASS or the SSH_ASKPASS \n environment variable is used.\n --no-iri turn off IRI support\n --local-encoding=ENC use ENC as the local encoding for IRIs\n --remote-encoding=ENC use ENC as the default remote encoding\n --unlink remove file before clobber\n --keep-badhash keep files with checksum mismatch (append .badhash)\n --metalink-index=NUMBER Metalink application/metalink4+xml metaurl ordinal NUMBER\n --metalink-over-http use Metalink metadata from HTTP response headers\n --preferred-location preferred location for Metalink resources\n --xattr turn on storage of metadata in extended file attributes\n\nDirectories:\n -nd, --no-directories don\047t create directories\n -x, --force-directories force creation of directories\n -nH, --no-host-directories don\047t create host directories\n --protocol-directories use protocol name in directories\n -P, --directory-prefix=PREFIX save files to PREFIX/..\n --cut-dirs=NUMBER ignore NUMBER remote directory components\n\nHTTP options:\n --http-user=USER set http user to USER\n --http-password=PASS set http password to PASS\n --no-cache disallow server-cached data\n --default-page=NAME change the default page name (normally\n this is \047index.html\047.)\n -E, --adjust-extension save HTML/CSS documents with proper extensions\n --ignore-length ignore \047Content-Length\047 header field\n --header=STRING insert STRING among the headers\n --compression=TYPE choose compression, one of auto, gzip and none. (default: none)\n --max-redirect maximum redirections allowed per page\n --proxy-user=USER set USER as proxy username\n --proxy-password=PASS set PASS as proxy password\n --referer=URL include \047Referer: URL\047 header in HTTP request\n --save-headers save the HTTP headers to file\n -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION\n --no-http-keep-alive disable HTTP keep-alive (persistent connections)\n --no-cookies don\047t use cookies\n --load-cookies=FILE load cookies from FILE before session\n --save-cookies=FILE save cookies to FILE after session\n --keep-session-cookies load and save session (non-permanent) cookies\n --post-data=STRING use the POST method; send STRING as the data\n --post-file=FILE use the POST method; send contents of FILE\n --method=HTTPMethod use method "HTTPMethod" in the request\n --body-data=STRING send STRING as data. --method MUST be set\n --body-file=FILE send contents of FILE. --method MUST be set\n --content-disposition honor the Content-Disposition header when\n choosing local file names (EXPERIMENTAL)\n --content-on-error output the received content on server errors\n --auth-no-challenge send Basic HTTP authentication information\n without first waiting for the server\047s\n challenge\n\nHTTPS (SSL/TLS) options:\n --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n SSLv3, TLSv1, TLSv1_1, TLSv1_2, TLSv1_3 and PFS\n --https-only only follow secure HTTPS links\n --no-check-certificate don\047t validate the server\047s certificate\n --certificate=FILE client certificate file\n --certificate-type=TYPE client certificate type, PEM or DER\n --private-key=FILE private key file\n --private-key-type=TYPE private key type, PEM or DER\n --ca-certificate=FILE file with the bundle of CAs\n --ca-directory=DIR directory where hash list of CAs is stored\n --crl-file=FILE file with bundle of CRLs\n --pinnedpubkey=FILE/HASHES Public key (PEM/DER) file, or any number\n of base64 encoded sha256 hashes preceded by\n \047sha256//\047 and separated by \047;\047, to verify\n peer against\n --random-file=FILE file with random data for seeding the SSL PRNG\n\n --ciphers=STR Set the priority string (GnuTLS) or cipher list string (OpenSSL) directly.\n Use with care. This option overrides --secure-protocol.\n The format and syntax of this string depend on the specific SSL/TLS engine.\nHSTS options:\n --no-hsts disable HSTS\n --hsts-file path of HSTS database (will override default)\n\nFTP options:\n --ftp-user=USER set ftp user to USER\n --ftp-password=PASS set ftp password to PASS\n --no-remove-listing don\047t remove \047.listing\047 files\n --no-glob turn off FTP file name globbing\n --no-passive-ftp disable the "passive" transfer mode\n --preserve-permissions preserve remote file permissions\n --retr-symlinks when recursing, get linked-to files (not dir)\n\nFTPS options:\n --ftps-implicit use implicit FTPS (default port is 990)\n --ftps-resume-ssl resume the SSL/TLS session started in the control connection when\n opening a data connection\n --ftps-clear-data-connection cipher the control channel only; all the data will be in plaintext\n --ftps-fallback-to-ftp fall back to FTP if FTPS is not supported in the target server\nWARC options:\n --warc-file=FILENAME save request/response data to a .warc.gz file\n --warc-header=STRING insert STRING into the warcinfo record\n --warc-max-size=NUMBER set maximum size of WARC files to NUMBER\n --warc-cdx write CDX index files\n --warc-dedup=FILENAME do not store records listed in this CDX file\n --no-warc-compression do not compress WARC files with GZIP\n --no-warc-digests do not calculate SHA1 digests\n --no-warc-keep-log do not store the log file in a WARC record\n --warc-tempdir=DIRECTORY location for temporary files created by the\n WARC writer\n\nRecursive download:\n -r, --recursive specify recursive download\n -l, --level=NUMBER maximum recursion depth (inf or 0 for infinite)\n --delete-after delete files locally after downloading them\n -k, --convert-links make links in downloaded HTML or CSS point to\n local files\n --convert-file-only convert the file part of the URLs only (usually known as the basename)\n --backups=N before writing file X, rotate up to N backup files\n -K, --backup-converted before converting file X, back up as X.orig\n -m, --mirror shortcut for -N -r -l inf --no-remove-listing\n -p, --page-requisites get all images, etc. needed to display HTML page\n --strict-comments turn on strict (SGML) handling of HTML comments\n\nRecursive accept/reject:\n -A, --accept=LIST comma-separated list of accepted extensions\n -R, --reject=LIST comma-separated list of rejected extensions\n --accept-regex=REGEX regex matching accepted URLs\n --reject-regex=REGEX regex matching rejected URLs\n --regex-type=TYPE regex type (posix|pcre)\n -D, --domains=LIST comma-separated list of accepted domains\n --exclude-domains=LIST comma-separated list of rejected domains\n --follow-ftp follow FTP links from HTML documents\n --follow-tags=LIST comma-separated list of followed HTML tags\n --ignore-tags=LIST comma-separated list of ignored HTML tags\n -H, --span-hosts go to foreign hosts when recursive\n -L, --relative follow relative links only\n -I, --include-directories=LIST list of allowed directories\n --trust-server-names use the name specified by the redirection\n URL\047s last component\n -X, --exclude-directories=LIST list of excluded directories\n -np, --no-parent don\047t ascend to the parent directory\n\nEmail bug reports, questions, discussions to \nand/or open issues at https://savannah.gnu.org/bugs/?func=additem&group=wget.' + WGET_OPTS=' --no-check-certificate --retry-connrefused --no-iri' + WGET_OPTS='-c -nd -t0 --no-check-certificate --retry-connrefused --no-iri --user-agent=TLD/Builder(v0.35) --passive-ftp' + WGET_OPTS_SET=1 + wget -c -nd -t0 --no-check-certificate --retry-connrefused --no-iri '--user-agent=TLD/Builder(v0.35)' --passive-ftp -O /tmp/.builder-PlQ4 http://pkgrevs.tld-linux.org/get/tld/xrdp-0.9.25.1-1 + retval=0 + '[' 0 -ne 0 ']' + return 0 + cat /tmp/.builder-PlQ4 + typeset 'result=6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74' + 2>/dev/null + rm /tmp/.builder-PlQ4 + echo -n 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 + typeset '_rev=6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74' + echo 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 + grep -q -E '^ERROR$' + CVSTAG=6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 + >/dev/null + git rev-parse --verify -q 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 + git rev-parse 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 + git rev-parse HEAD + '[' 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 '!=' 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 ']' + git rev-parse 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 + git rev-parse HEAD + '[' 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 '!=' 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 ']' + git merge --ff-only @{u} Already up to date. + >/dev/null + git symbolic-ref -q HEAD + '[' '' '!=' yes ']' + '[' -n '' ']' + '[' ! -f /home/users/builder/rpm/packages/xrdp/xrdp.spec ']' + '[' no '=' yes -a -n xrdp.spec ']' + unset OPTIONS + '[' -n '' ']' + grep -E -m 1 '^#.*Revision:.*Date' /home/users/builder/rpm/packages/xrdp/xrdp.spec + set_spec_target + '[' -n xrdp.spec ']' + '[' -z i686-linux ']' + parse_spec + update_shell_title 'parsing specfile' + '[' -t 2 ']' + return + '[' -n yes ']' + set -x + set -v + get_icons + update_shell_title 'get icons' + '[' -t 2 ']' + return + awk '/^Icon:/ {print $2}' /home/users/builder/rpm/packages/xrdp/xrdp.spec + ICONS='' + '[' -z '' ']' + return + cd /home/users/builder/rpm/packages/xrdp + cache_rpm_dump '' + typeset SPEC_PATH + '[' -n yes ']' + set -x + set -v + '[' ! -z '' ']' + SPEC_PATH=/home/users/builder/rpm/packages/xrdp/xrdp.spec + '[' -x /usr/bin/rpm-specdump ']' + update_shell_title 'cache_rpm_dump using rpm-specdump command' + '[' -t 2 ']' + return + eval rpm-specdump --target i686-linux --define '"_tld_builder' '1"' --define \''_specdir' '/home/users/builder/rpm/packages/xrdp'\' --define \''_sourcedir' '/home/users/builder/rpm/packages/xrdp'\' /home/users/builder/rpm/packages/xrdp/xrdp.spec rpm-specdump --target i686-linux --define "_tld_builder 1" --define '_specdir /home/users/builder/rpm/packages/xrdp' --define '_sourcedir /home/users/builder/rpm/packages/xrdp' /home/users/builder/rpm/packages/xrdp/xrdp.spec + rpm-specdump --target i686-linux --define '_tld_builder 1' --define '_specdir /home/users/builder/rpm/packages/xrdp' --define '_sourcedir /home/users/builder/rpm/packages/xrdp' /home/users/builder/rpm/packages/xrdp/xrdp.spec + rpm_dump_cache=$'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + update_shell_title 'cache_rpm_dump: OK!' + '[' -t 2 ']' + return + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -qEi ':.*nosource.*1' + '[' '' '!=' yes ']' + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + awk '$2 ~ /^SOURCEURL[0-9]+/ {print substr($2, length("SOURCEURL") + 1), $3}' + LC_ALL=C sort -n + awk '{print $2}' + SOURCES=$'https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nxrdp.init\nxrdp.pamd\nxrdp.README.TLD\nxrdp.README.TLD.pl\nstartwm.sh' + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + awk '$2 ~ /^PATCHURL[0-9]+/ {print substr($2, length("PATCHURL") + 1), $3}' + LC_ALL=C sort -n + awk '{print $2}' + PATCHES=$'config.patch\nquiet.patch\nx32.patch' + awk '/^Icon:/ {print $2}' xrdp.spec + ICONS='' + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + awk '$2 == "PACKAGE_NAME" { print $3; exit}' + PACKAGE_NAME=xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + awk '$2 == "PACKAGE_VERSION" { print $3; exit}' + PACKAGE_VERSION=0.9.25.1 + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + awk '$2 == "PACKAGE_RELEASE" { print $3; exit}' + PACKAGE_RELEASE=1 + '[' xrdp '!=' xrdp ']' + '[' -n 1 ']' + nourl https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz xrdp.init xrdp.pamd xrdp.README.TLD xrdp.README.TLD.pl startwm.sh + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz xrdp.init xrdp.pamd xrdp.README.TLD xrdp.README.TLD.pl startwm.sh + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + echo '- Sources : xrdp-0.9.25.1.tar.gz xrdp.init xrdp.pamd xrdp.README.TLD xrdp.README.TLD.pl startwm.sh' - Sources : xrdp-0.9.25.1.tar.gz xrdp.init xrdp.pamd xrdp.README.TLD xrdp.README.TLD.pl startwm.sh + '[' -n $'config.patch\nquiet.patch\nx32.patch' ']' + nourl config.patch quiet.patch x32.patch + echo config.patch quiet.patch x32.patch + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + echo '- Patches : config.patch quiet.patch x32.patch' - Patches : config.patch quiet.patch x32.patch + '[' -n '' ']' + echo '- Icon : *no package icon*' - Icon : *no package icon* + echo '- Name : xrdp' - Name : xrdp + echo '- Version : 0.9.25.1' - Version : 0.9.25.1 + echo '- Release : 1' - Release : 1 + update_shell_title 'parse_spec: OK!' + '[' -t 2 ']' + return + set_bconds_values + update_shell_title 'set bcond values' + '[' -t 2 ']' + return + AVAIL_BCONDS_WITHOUT='' + AVAIL_BCONDS_WITH='' + grep -Eq '^# *_with' xrdp.spec + grep -q ^%bcond xrdp.spec + return + display_bconds + '[' '' -o '' ']' + display_branches + echo -n 'Available branches: ' Available branches: + 2>/dev/null + git branch -r + grep '^ origin' + grep -v origin/HEAD + sed 's#^ *origin/##' + xargs master + '[' build-source '!=' build-source ']' + fetch_build_requires + '[' '' '!=' yes ']' + return + '[' '' '=' yes ']' + '[' -n '' ']' + try_upgrade + '[' -z '' ']' + return 0 + get_files https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz xrdp.init xrdp.pamd xrdp.README.TLD xrdp.README.TLD.pl startwm.sh config.patch quiet.patch x32.patch + update_shell_title get_files + '[' -t 2 ']' + return + '[' -n yes ']' + set -x + set -v + '[' 9 -gt 0 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset 'nc=0' + typeset 'get_files_cvs=' + nc=1 + typeset 'cvsup=0' + SHELL_TITLE_PREFIX='get_files[1/9]' + update_shell_title https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + '[' -t 2 ']' + return + nourl https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + typeset 'fp=xrdp-0.9.25.1.tar.gz' + '[' no '=' yes ']' + FROM_DISTFILES=0 + src_md5 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + '[' '' '=' yes ']' + src_no https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + typeset 'file=https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz' + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='https://github\.com/neutrinolabs/xrdp/releases/download/v0\.9\.25\.1/xrdp-0\.9\.25\.1\.tar\.gz' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*https://github\\.com/neutrinolabs/xrdp/releases/download/v0\\.9\\.25\\.1/xrdp-0\\.9\\.25\\.1\\.tar\\.gz[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Source0 + '[' -z Source0 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source0-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5=$'\tf30ad85ce78c8542d4f7b03c28c8815f' + '[' -n $'\tf30ad85ce78c8542d4f7b03c28c8815f' ']' + echo f30ad85ce78c8542d4f7b03c28c8815f + typeset 'srcmd5=f30ad85ce78c8542d4f7b03c28c8815f' + '[' ! -f xrdp-0.9.25.1.tar.gz ']' + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + grep -vE '(http|ftp|https|cvs|svn)://' + grep -qE '\.(gz|bz2)$]' + target=xrdp-0.9.25.1.tar.gz + '[' -z '' ']' + '[' -n f30ad85ce78c8542d4f7b03c28c8815f ']' + good_md5 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + src_md5 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + '[' '' '=' yes ']' + src_no https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + typeset 'file=https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz' + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='https://github\.com/neutrinolabs/xrdp/releases/download/v0\.9\.25\.1/xrdp-0\.9\.25\.1\.tar\.gz' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*https://github\\.com/neutrinolabs/xrdp/releases/download/v0\\.9\\.25\\.1/xrdp-0\\.9\\.25\\.1\\.tar\\.gz[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Source0 + '[' -z Source0 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source0-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5=$'\tf30ad85ce78c8542d4f7b03c28c8815f' + '[' -n $'\tf30ad85ce78c8542d4f7b03c28c8815f' ']' + echo f30ad85ce78c8542d4f7b03c28c8815f + md5=f30ad85ce78c8542d4f7b03c28c8815f + '[' f30ad85ce78c8542d4f7b03c28c8815f '=' '' ']' + sed -e 's/ .*//' + nourl https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + md5sum xrdp-0.9.25.1.tar.gz + '[' f30ad85ce78c8542d4f7b03c28c8815f '=' '' ']' + '[' -n '' ']' + distfiles_url https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + distfiles_path https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + src_md5 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + '[' '' '=' yes ']' + sed -e 's|^\(.\)\(.\)|\1/\2/&|' + src_no https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + typeset 'file=https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz' + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='https://github\.com/neutrinolabs/xrdp/releases/download/v0\.9\.25\.1/xrdp-0\.9\.25\.1\.tar\.gz' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*https://github\\.com/neutrinolabs/xrdp/releases/download/v0\\.9\\.25\\.1/xrdp-0\\.9\\.25\\.1\\.tar\\.gz[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Source0 + '[' -z Source0 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source0-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5=$'\tf30ad85ce78c8542d4f7b03c28c8815f' + '[' -n $'\tf30ad85ce78c8542d4f7b03c28c8815f' ']' + echo f30ad85ce78c8542d4f7b03c28c8815f + basename https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + echo by-md5/f/3/f30ad85ce78c8542d4f7b03c28c8815f/xrdp-0.9.25.1.tar.gz + echo http://df.tld-linux.org/by-md5/f/3/f30ad85ce78c8542d4f7b03c28c8815f/xrdp-0.9.25.1.tar.gz + url=http://df.tld-linux.org/by-md5/f/3/f30ad85ce78c8542d4f7b03c28c8815f/xrdp-0.9.25.1.tar.gz + FROM_DISTFILES=1 + typeset 'uri=http://df.tld-linux.org/by-md5/f/3/f30ad85ce78c8542d4f7b03c28c8815f/xrdp-0.9.25.1.tar.gz' + uri=xrdp-0.9.25.1.tar.gz + uri='df: xrdp-0.9.25.1.tar.gz' + update_shell_title 'download_wget: df: xrdp-0.9.25.1.tar.gz' + '[' -t 2 ']' + return + download_wget xrdp-0.9.25.1.tar.gz http://df.tld-linux.org/by-md5/f/3/f30ad85ce78c8542d4f7b03c28c8815f/xrdp-0.9.25.1.tar.gz + typeset 'outfile=xrdp-0.9.25.1.tar.gz' 'url=http://df.tld-linux.org/by-md5/f/3/f30ad85ce78c8542d4f7b03c28c8815f/xrdp-0.9.25.1.tar.gz' retval wget_help + '[' -z '' ']' + 2>&1 + wget --help + wget_help=$'GNU Wget 1.21.4, a non-interactive network retriever.\nUsage: wget [OPTION]... [URL]...\n\nMandatory arguments to long options are mandatory for short options too.\n\nStartup:\n -V, --version display the version of Wget and exit\n -h, --help print this help\n -b, --background go to background after startup\n -e, --execute=COMMAND execute a `.wgetrc\047-style command\n\nLogging and input file:\n -o, --output-file=FILE log messages to FILE\n -a, --append-output=FILE append messages to FILE\n -d, --debug print lots of debugging information\n -q, --quiet quiet (no output)\n -v, --verbose be verbose (this is the default)\n -nv, --no-verbose turn off verboseness, without being quiet\n --report-speed=TYPE output bandwidth as TYPE. TYPE can be bits\n -i, --input-file=FILE download URLs found in local or external FILE\n --input-metalink=FILE download files covered in local Metalink FILE\n -F, --force-html treat input file as HTML\n -B, --base=URL resolves HTML input-file links (-i -F)\n relative to URL\n --config=FILE specify config file to use\n --no-config do not read any config file\n --rejected-log=FILE log reasons for URL rejection to FILE\n\nDownload:\n -t, --tries=NUMBER set number of retries to NUMBER (0 unlimits)\n --retry-connrefused retry even if connection is refused\n --retry-on-host-error consider host errors as non-fatal, transient errors\n --retry-on-http-error=ERRORS comma-separated list of HTTP errors to retry\n -O, --output-document=FILE write documents to FILE\n -nc, --no-clobber skip downloads that would download to\n existing files (overwriting them)\n --no-netrc don\047t try to obtain credentials from .netrc\n -c, --continue resume getting a partially-downloaded file\n --start-pos=OFFSET start downloading from zero-based position OFFSET\n --progress=TYPE select progress gauge type\n --show-progress display the progress bar in any verbosity mode\n -N, --timestamping don\047t re-retrieve files unless newer than\n local\n --no-if-modified-since don\047t use conditional if-modified-since get\n requests in timestamping mode\n --no-use-server-timestamps don\047t set the local file\047s timestamp by\n the one on the server\n -S, --server-response print server response\n --spider don\047t download anything\n -T, --timeout=SECONDS set all timeout values to SECONDS\n --dns-timeout=SECS set the DNS lookup timeout to SECS\n --connect-timeout=SECS set the connect timeout to SECS\n --read-timeout=SECS set the read timeout to SECS\n -w, --wait=SECONDS wait SECONDS between retrievals\n (applies if more then 1 URL is to be retrieved)\n --waitretry=SECONDS wait 1..SECONDS between retries of a retrieval\n (applies if more then 1 URL is to be retrieved)\n --random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals\n (applies if more then 1 URL is to be retrieved)\n --no-proxy explicitly turn off proxy\n -Q, --quota=NUMBER set retrieval quota to NUMBER\n --bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host\n --limit-rate=RATE limit download rate to RATE\n --no-dns-cache disable caching DNS lookups\n --restrict-file-names=OS restrict chars in file names to ones OS allows\n --ignore-case ignore case when matching files/directories\n -4, --inet4-only connect only to IPv4 addresses\n -6, --inet6-only connect only to IPv6 addresses\n --prefer-family=FAMILY connect first to addresses of specified family,\n one of IPv6, IPv4, or none\n --user=USER set both ftp and http user to USER\n --password=PASS set both ftp and http password to PASS\n --ask-password prompt for passwords\n --use-askpass=COMMAND specify credential handler for requesting \n username and password. If no COMMAND is \n specified the WGET_ASKPASS or the SSH_ASKPASS \n environment variable is used.\n --no-iri turn off IRI support\n --local-encoding=ENC use ENC as the local encoding for IRIs\n --remote-encoding=ENC use ENC as the default remote encoding\n --unlink remove file before clobber\n --keep-badhash keep files with checksum mismatch (append .badhash)\n --metalink-index=NUMBER Metalink application/metalink4+xml metaurl ordinal NUMBER\n --metalink-over-http use Metalink metadata from HTTP response headers\n --preferred-location preferred location for Metalink resources\n --xattr turn on storage of metadata in extended file attributes\n\nDirectories:\n -nd, --no-directories don\047t create directories\n -x, --force-directories force creation of directories\n -nH, --no-host-directories don\047t create host directories\n --protocol-directories use protocol name in directories\n -P, --directory-prefix=PREFIX save files to PREFIX/..\n --cut-dirs=NUMBER ignore NUMBER remote directory components\n\nHTTP options:\n --http-user=USER set http user to USER\n --http-password=PASS set http password to PASS\n --no-cache disallow server-cached data\n --default-page=NAME change the default page name (normally\n this is \047index.html\047.)\n -E, --adjust-extension save HTML/CSS documents with proper extensions\n --ignore-length ignore \047Content-Length\047 header field\n --header=STRING insert STRING among the headers\n --compression=TYPE choose compression, one of auto, gzip and none. (default: none)\n --max-redirect maximum redirections allowed per page\n --proxy-user=USER set USER as proxy username\n --proxy-password=PASS set PASS as proxy password\n --referer=URL include \047Referer: URL\047 header in HTTP request\n --save-headers save the HTTP headers to file\n -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION\n --no-http-keep-alive disable HTTP keep-alive (persistent connections)\n --no-cookies don\047t use cookies\n --load-cookies=FILE load cookies from FILE before session\n --save-cookies=FILE save cookies to FILE after session\n --keep-session-cookies load and save session (non-permanent) cookies\n --post-data=STRING use the POST method; send STRING as the data\n --post-file=FILE use the POST method; send contents of FILE\n --method=HTTPMethod use method "HTTPMethod" in the request\n --body-data=STRING send STRING as data. --method MUST be set\n --body-file=FILE send contents of FILE. --method MUST be set\n --content-disposition honor the Content-Disposition header when\n choosing local file names (EXPERIMENTAL)\n --content-on-error output the received content on server errors\n --auth-no-challenge send Basic HTTP authentication information\n without first waiting for the server\047s\n challenge\n\nHTTPS (SSL/TLS) options:\n --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n SSLv3, TLSv1, TLSv1_1, TLSv1_2, TLSv1_3 and PFS\n --https-only only follow secure HTTPS links\n --no-check-certificate don\047t validate the server\047s certificate\n --certificate=FILE client certificate file\n --certificate-type=TYPE client certificate type, PEM or DER\n --private-key=FILE private key file\n --private-key-type=TYPE private key type, PEM or DER\n --ca-certificate=FILE file with the bundle of CAs\n --ca-directory=DIR directory where hash list of CAs is stored\n --crl-file=FILE file with bundle of CRLs\n --pinnedpubkey=FILE/HASHES Public key (PEM/DER) file, or any number\n of base64 encoded sha256 hashes preceded by\n \047sha256//\047 and separated by \047;\047, to verify\n peer against\n --random-file=FILE file with random data for seeding the SSL PRNG\n\n --ciphers=STR Set the priority string (GnuTLS) or cipher list string (OpenSSL) directly.\n Use with care. This option overrides --secure-protocol.\n The format and syntax of this string depend on the specific SSL/TLS engine.\nHSTS options:\n --no-hsts disable HSTS\n --hsts-file path of HSTS database (will override default)\n\nFTP options:\n --ftp-user=USER set ftp user to USER\n --ftp-password=PASS set ftp password to PASS\n --no-remove-listing don\047t remove \047.listing\047 files\n --no-glob turn off FTP file name globbing\n --no-passive-ftp disable the "passive" transfer mode\n --preserve-permissions preserve remote file permissions\n --retr-symlinks when recursing, get linked-to files (not dir)\n\nFTPS options:\n --ftps-implicit use implicit FTPS (default port is 990)\n --ftps-resume-ssl resume the SSL/TLS session started in the control connection when\n opening a data connection\n --ftps-clear-data-connection cipher the control channel only; all the data will be in plaintext\n --ftps-fallback-to-ftp fall back to FTP if FTPS is not supported in the target server\nWARC options:\n --warc-file=FILENAME save request/response data to a .warc.gz file\n --warc-header=STRING insert STRING into the warcinfo record\n --warc-max-size=NUMBER set maximum size of WARC files to NUMBER\n --warc-cdx write CDX index files\n --warc-dedup=FILENAME do not store records listed in this CDX file\n --no-warc-compression do not compress WARC files with GZIP\n --no-warc-digests do not calculate SHA1 digests\n --no-warc-keep-log do not store the log file in a WARC record\n --warc-tempdir=DIRECTORY location for temporary files created by the\n WARC writer\n\nRecursive download:\n -r, --recursive specify recursive download\n -l, --level=NUMBER maximum recursion depth (inf or 0 for infinite)\n --delete-after delete files locally after downloading them\n -k, --convert-links make links in downloaded HTML or CSS point to\n local files\n --convert-file-only convert the file part of the URLs only (usually known as the basename)\n --backups=N before writing file X, rotate up to N backup files\n -K, --backup-converted before converting file X, back up as X.orig\n -m, --mirror shortcut for -N -r -l inf --no-remove-listing\n -p, --page-requisites get all images, etc. needed to display HTML page\n --strict-comments turn on strict (SGML) handling of HTML comments\n\nRecursive accept/reject:\n -A, --accept=LIST comma-separated list of accepted extensions\n -R, --reject=LIST comma-separated list of rejected extensions\n --accept-regex=REGEX regex matching accepted URLs\n --reject-regex=REGEX regex matching rejected URLs\n --regex-type=TYPE regex type (posix|pcre)\n -D, --domains=LIST comma-separated list of accepted domains\n --exclude-domains=LIST comma-separated list of rejected domains\n --follow-ftp follow FTP links from HTML documents\n --follow-tags=LIST comma-separated list of followed HTML tags\n --ignore-tags=LIST comma-separated list of ignored HTML tags\n -H, --span-hosts go to foreign hosts when recursive\n -L, --relative follow relative links only\n -I, --include-directories=LIST list of allowed directories\n --trust-server-names use the name specified by the redirection\n URL\047s last component\n -X, --exclude-directories=LIST list of excluded directories\n -np, --no-parent don\047t ascend to the parent directory\n\nEmail bug reports, questions, discussions to \nand/or open issues at https://savannah.gnu.org/bugs/?func=additem&group=wget.' + echo $'GNU Wget 1.21.4, a non-interactive network retriever.\nUsage: wget [OPTION]... [URL]...\n\nMandatory arguments to long options are mandatory for short options too.\n\nStartup:\n -V, --version display the version of Wget and exit\n -h, --help print this help\n -b, --background go to background after startup\n -e, --execute=COMMAND execute a `.wgetrc\047-style command\n\nLogging and input file:\n -o, --output-file=FILE log messages to FILE\n -a, --append-output=FILE append messages to FILE\n -d, --debug print lots of debugging information\n -q, --quiet quiet (no output)\n -v, --verbose be verbose (this is the default)\n -nv, --no-verbose turn off verboseness, without being quiet\n --report-speed=TYPE output bandwidth as TYPE. TYPE can be bits\n -i, --input-file=FILE download URLs found in local or external + grep -q -- ' --no-check-certificate ' FILE\n --input-metalink=FILE download files covered in local Metalink FILE\n -F, --force-html treat input file as HTML\n -B, --base=URL resolves HTML input-file links (-i -F)\n relative to URL\n --config=FILE specify config file to use\n --no-config do not read any config file\n --rejected-log=FILE log reasons for URL rejection to FILE\n\nDownload:\n -t, --tries=NUMBER set number of retries to NUMBER (0 unlimits)\n --retry-connrefused retry even if connection is refused\n --retry-on-host-error consider host errors as non-fatal, transient errors\n --retry-on-http-error=ERRORS comma-separated list of HTTP errors to retry\n -O, --output-document=FILE write documents to FILE\n -nc, --no-clobber skip downloads that would download to\n existing files (overwriting them)\n --no-netrc don\047t try to obtain credentials from .netrc\n -c, --continue resume getting a partially-downloaded file\n --start-pos=OFFSET start downloading from zero-based position OFFSET\n --progress=TYPE select progress gauge type\n --show-progress display the progress bar in any verbosity mode\n -N, --timestamping don\047t re-retrieve files unless newer than\n local\n --no-if-modified-since don\047t use conditional if-modified-since get\n requests in timestamping mode\n --no-use-server-timestamps don\047t set the local file\047s timestamp by\n the one on the server\n -S, --server-response print server response\n --spider don\047t download anything\n -T, --timeout=SECONDS set all timeout values to SECONDS\n --dns-timeout=SECS set the DNS lookup timeout to SECS\n --connect-timeout=SECS set the connect timeout to SECS\n --read-timeout=SECS set the read timeout to SECS\n -w, --wait=SECONDS wait SECONDS between retrievals\n (applies if more then 1 URL is to be retrieved)\n --waitretry=SECONDS wait 1..SECONDS between retries of a retrieval\n (applies if more then 1 URL is to be retrieved)\n --random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals\n (applies if more then 1 URL is to be retrieved)\n --no-proxy explicitly turn off proxy\n -Q, --quota=NUMBER set retrieval quota to NUMBER\n --bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host\n --limit-rate=RATE limit download rate to RATE\n --no-dns-cache disable caching DNS lookups\n --restrict-file-names=OS restrict chars in file names to ones OS allows\n --ignore-case ignore case when matching files/directories\n -4, --inet4-only connect only to IPv4 addresses\n -6, --inet6-only connect only to IPv6 addresses\n --prefer-family=FAMILY connect first to addresses of specified family,\n one of IPv6, IPv4, or none\n --user=USER set both ftp and http user to USER\n --password=PASS set both ftp and http password to PASS\n --ask-password prompt for passwords\n --use-askpass=COMMAND specify credential handler for requesting \n username and password. If no COMMAND is \n specified the WGET_ASKPASS or the SSH_ASKPASS \n environment variable is used.\n --no-iri turn off IRI support\n --local-encoding=ENC use ENC as the local encoding for IRIs\n --remote-encoding=ENC use ENC as the default remote encoding\n --unlink remove file before clobber\n --keep-badhash keep files with checksum mismatch (append .badhash)\n --metalink-index=NUMBER Metalink application/metalink4+xml metaurl ordinal NUMBER\n --metalink-over-http use Metalink metadata from HTTP response headers\n --preferred-location preferred location for Metalink resources\n --xattr turn on storage of metadata in extended file attributes\n\nDirectories:\n -nd, --no-directories don\047t create directories\n -x, --force-directories force creation of directories\n -nH, --no-host-directories don\047t create host directories\n --protocol-directories use protocol name in directories\n -P, --directory-prefix=PREFIX save files to PREFIX/..\n --cut-dirs=NUMBER ignore NUMBER remote directory components\n\nHTTP options:\n --http-user=USER set http user to USER\n --http-password=PASS set http password to PASS\n --no-cache disallow server-cached data\n --default-page=NAME change the default page name (normally\n this is \047index.html\047.)\n -E, --adjust-extension save HTML/CSS documents with proper extensions\n --ignore-length ignore \047Content-Length\047 header field\n --header=STRING insert STRING among the headers\n --compression=TYPE choose compression, one of auto, gzip and none. (default: none)\n --max-redirect maximum redirections allowed per page\n --proxy-user=USER set USER as proxy username\n --proxy-password=PASS set PASS as proxy password\n --referer=URL include \047Referer: URL\047 header in HTTP request\n --save-headers save the HTTP headers to file\n -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION\n --no-http-keep-alive disable HTTP keep-alive (persistent connections)\n --no-cookies don\047t use cookies\n --load-cookies=FILE load cookies from FILE before session\n --save-cookies=FILE save cookies to FILE after session\n --keep-session-cookies load and save session (non-permanent) cookies\n --post-data=STRING use the POST method; send STRING as the data\n --post-file=FILE use the POST method; send contents of FILE\n --method=HTTPMethod use method "HTTPMethod" in the request\n --body-data=STRING send STRING as data. --method MUST be set\n --body-file=FILE send contents of FILE. --method MUST be set\n --content-disposition honor the Content-Disposition header when\n choosing local file names (EXPERIMENTAL)\n --content-on-error output the received content on server errors\n --auth-no-challenge send Basic HTTP authentication information\n without first waiting for the server\047s\n challenge\n\nHTTPS (SSL/TLS) options:\n --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n SSLv3, TLSv1, TLSv1_1, TLSv1_2, TLSv1_3 and PFS\n --https-only only follow secure HTTPS links\n --no-check-certificate don\047t validate the server\047s certificate\n --certificate=FILE client certificate file\n --certificate-type=TYPE client certificate type, PEM or DER\n --private-key=FILE private key file\n --private-key-type=TYPE private key type, PEM or DER\n --ca-certificate=FILE file with the bundle of CAs\n --ca-directory=DIR directory where hash list of CAs is stored\n --crl-file=FILE file with bundle of CRLs\n --pinnedpubkey=FILE/HASHES Public key (PEM/DER) file, or any number\n of base64 encoded sha256 hashes preceded by\n \047sha256//\047 and separated by \047;\047, to verify\n peer against\n --random-file=FILE file with random data for seeding the SSL PRNG\n\n --ciphers=STR Set the priority string (GnuTLS) or cipher list string (OpenSSL) directly.\n Use with care. This option overrides --secure-protocol.\n The format and syntax of this string depend on the specific SSL/TLS engine.\nHSTS options:\n --no-hsts disable HSTS\n --hsts-file path of HSTS database (will override default)\n\nFTP options:\n --ftp-user=USER set ftp user to USER\n --ftp-password=PASS set ftp password to PASS\n --no-remove-listing don\047t remove \047.listing\047 files\n --no-glob turn off FTP file name globbing\n --no-passive-ftp disable the "passive" transfer mode\n --preserve-permissions preserve remote file permissions\n --retr-symlinks when recursing, get linked-to files (not dir)\n\nFTPS options:\n --ftps-implicit use implicit FTPS (default port is 990)\n --ftps-resume-ssl resume the SSL/TLS session started in the control connection when\n opening a data connection\n --ftps-clear-data-connection cipher the control channel only; all the data will be in plaintext\n --ftps-fallback-to-ftp fall back to FTP if FTPS is not supported in the target server\nWARC options:\n --warc-file=FILENAME save request/response data to a .warc.gz file\n --warc-header=STRING insert STRING into the warcinfo record\n --warc-max-size=NUMBER set maximum size of WARC files to NUMBER\n --warc-cdx write CDX index files\n --warc-dedup=FILENAME do not store records listed in this CDX file\n --no-warc-compression do not compress WARC files with GZIP\n --no-warc-digests do not calculate SHA1 digests\n --no-warc-keep-log do not store the log file in a WARC record\n --warc-tempdir=DIRECTORY location for temporary files created by the\n WARC writer\n\nRecursive download:\n -r, --recursive specify recursive download\n -l, --level=NUMBER maximum recursion depth (inf or 0 for infinite)\n --delete-after delete files locally after downloading them\n -k, --convert-links make links in downloaded HTML or CSS point to\n local files\n --convert-file-only convert the file part of the URLs only (usually known as the basename)\n --backups=N before writing file X, rotate up to N backup files\n -K, --backup-converted before converting file X, back up as X.orig\n -m, --mirror shortcut for -N -r -l inf --no-remove-listing\n -p, --page-requisites get all images, etc. needed to display HTML page\n --strict-comments turn on strict (SGML) handling of HTML comments\n\nRecursive accept/reject:\n -A, --accept=LIST comma-separated list of accepted extensions\n -R, --reject=LIST comma-separated list of rejected extensions\n --accept-regex=REGEX regex matching accepted URLs\n --reject-regex=REGEX regex matching rejected URLs\n --regex-type=TYPE regex type (posix|pcre)\n -D, --domains=LIST comma-separated list of accepted domains\n --exclude-domains=LIST comma-separated list of rejected domains\n --follow-ftp follow FTP links from HTML documents\n --follow-tags=LIST comma-separated list of followed HTML tags\n --ignore-tags=LIST comma-separated list of ignored HTML tags\n -H, --span-hosts go to foreign hosts when recursive\n -L, --relative follow relative links only\n -I, --include-directories=LIST list of allowed directories\n --trust-server-names use the name specified by the redirection\n URL\047s last component\n -X, --exclude-directories=LIST list of excluded directories\n -np, --no-parent don\047t ascend to the parent directory\n\nEmail bug reports, questions, discussions to \nand/or open issues at https://savannah.gnu.org/bugs/?func=additem&group=wget.' + WGET_OPTS=' --no-check-certificate' + grep -q -- ' --inet ' + echo $'GNU Wget 1.21.4, a non-interactive network retriever.\nUsage: wget [OPTION]... [URL]...\n\nMandatory arguments to long options are mandatory for short options too.\n\nStartup:\n -V, --version display the version of Wget and exit\n -h, --help print this help\n -b, --background go to background after startup\n -e, --execute=COMMAND execute a `.wgetrc\047-style command\n\nLogging and input file:\n -o, --output-file=FILE log messages to FILE\n -a, --append-output=FILE append messages to FILE\n -d, --debug print lots of debugging information\n -q, --quiet quiet (no output)\n -v, --verbose be verbose (this is the default)\n -nv, --no-verbose turn off verboseness, without being quiet\n --report-speed=TYPE output bandwidth as TYPE. TYPE can be bits\n -i, --input-file=FILE download URLs found in local or external FILE\n --input-metalink=FILE download files covered in local Metalink FILE\n -F, --force-html treat input file as HTML\n -B, --base=URL resolves HTML input-file links (-i -F)\n relative to URL\n --config=FILE specify config file to use\n --no-config do not read any config file\n --rejected-log=FILE log reasons for URL rejection to FILE\n\nDownload:\n -t, --tries=NUMBER set number of retries to NUMBER (0 unlimits)\n --retry-connrefused retry even if connection is refused\n --retry-on-host-error consider host errors as non-fatal, transient errors\n --retry-on-http-error=ERRORS comma-separated list of HTTP errors to retry\n -O, --output-document=FILE write documents to FILE\n -nc, --no-clobber skip downloads that would download to\n existing files (overwriting them)\n --no-netrc don\047t try to obtain credentials from .netrc\n -c, --continue resume getting a partially-downloaded file\n --start-pos=OFFSET start downloading from zero-based position OFFSET\n --progress=TYPE select progress gauge type\n --show-progress display the progress bar in any verbosity mode\n -N, --timestamping don\047t re-retrieve files unless newer than\n local\n --no-if-modified-since don\047t use conditional if-modified-since get\n requests in timestamping mode\n --no-use-server-timestamps don\047t set the local file\047s timestamp by\n the one on the server\n -S, --server-response print server response\n --spider don\047t download anything\n -T, --timeout=SECONDS set all timeout values to SECONDS\n --dns-timeout=SECS set the DNS lookup timeout to SECS\n --connect-timeout=SECS set the connect timeout to SECS\n --read-timeout=SECS set the read timeout to SECS\n -w, --wait=SECONDS wait SECONDS between retrievals\n (applies if more then 1 URL is to be retrieved)\n --waitretry=SECONDS wait 1..SECONDS between retries of a retrieval\n (applies if more then 1 URL is to be retrieved)\n --random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals\n (applies if more then 1 URL is to be retrieved)\n --no-proxy explicitly turn off proxy\n -Q, --quota=NUMBER set retrieval quota to NUMBER\n --bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host\n --limit-rate=RATE limit download rate to RATE\n --no-dns-cache disable caching DNS lookups\n --restrict-file-names=OS restrict chars in file names to ones OS allows\n --ignore-case ignore case when matching files/directories\n -4, --inet4-only connect only to IPv4 addresses\n -6, --inet6-only connect only to IPv6 addresses\n --prefer-family=FAMILY connect first to addresses of specified family,\n one of IPv6, IPv4, or none\n --user=USER set both ftp and http user to USER\n --password=PASS set both ftp and http password to PASS\n --ask-password prompt for passwords\n --use-askpass=COMMAND specify credential handler for requesting \n username and password. If no COMMAND is \n specified the WGET_ASKPASS or the SSH_ASKPASS \n environment variable is used.\n --no-iri turn off IRI support\n --local-encoding=ENC use ENC as the local encoding for IRIs\n --remote-encoding=ENC use ENC as the default remote encoding\n --unlink remove file before clobber\n --keep-badhash keep files with checksum mismatch (append .badhash)\n --metalink-index=NUMBER Metalink application/metalink4+xml metaurl ordinal NUMBER\n --metalink-over-http use Metalink metadata from HTTP response headers\n --preferred-location preferred location for Metalink resources\n --xattr turn on storage of metadata in extended file attributes\n\nDirectories:\n -nd, --no-directories don\047t create directories\n -x, --force-directories force creation of directories\n -nH, --no-host-directories don\047t create host directories\n --protocol-directories use protocol name in directories\n -P, --directory-prefix=PREFIX save files to PREFIX/..\n --cut-dirs=NUMBER ignore NUMBER remote directory components\n\nHTTP options:\n --http-user=USER set http user to USER\n --http-password=PASS set http password to PASS\n --no-cache disallow server-cached data\n --default-page=NAME change the default page name (normally\n this is \047index.html\047.)\n -E, --adjust-extension save HTML/CSS documents with proper extensions\n --ignore-length ignore \047Content-Length\047 header field\n --header=STRING insert STRING among the headers\n --compression=TYPE choose compression, one of auto, gzip and none. (default: none)\n --max-redirect maximum redirections allowed per page\n --proxy-user=USER set USER as proxy username\n --proxy-password=PASS set PASS as proxy password\n --referer=URL include \047Referer: URL\047 header in HTTP request\n --save-headers save the HTTP headers to file\n -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION\n --no-http-keep-alive disable HTTP keep-alive (persistent connections)\n --no-cookies don\047t use cookies\n --load-cookies=FILE load cookies from FILE before session\n --save-cookies=FILE save cookies to FILE after session\n --keep-session-cookies load and save session (non-permanent) cookies\n --post-data=STRING use the POST method; send STRING as the data\n --post-file=FILE use the POST method; send contents of FILE\n --method=HTTPMethod use method "HTTPMethod" in the request\n --body-data=STRING send STRING as data. --method MUST be set\n --body-file=FILE send contents of FILE. --method MUST be set\n --content-disposition honor the Content-Disposition header when\n choosing local file names (EXPERIMENTAL)\n --content-on-error output the received content on server errors\n --auth-no-challenge send Basic HTTP authentication information\n without first waiting for the server\047s\n challenge\n\nHTTPS (SSL/TLS) options:\n --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n SSLv3, TLSv1, TLSv1_1, TLSv1_2, TLSv1_3 and PFS\n --https-only only follow secure HTTPS links\n --no-check-certificate don\047t validate the server\047s certificate\n --certificate=FILE client certificate file\n --certificate-type=TYPE client certificate type, PEM or DER\n --private-key=FILE private key file\n --private-key-type=TYPE private key type, PEM or DER\n --ca-certificate=FILE file with the bundle of CAs\n --ca-directory=DIR directory where hash list of CAs is stored\n --crl-file=FILE file with bundle of CRLs\n --pinnedpubkey=FILE/HASHES Public key (PEM/DER) file, or any number\n of base64 encoded sha256 hashes preceded by\n \047sha256//\047 and separated by \047;\047, to verify\n peer against\n --random-file=FILE file with random data for seeding the SSL PRNG\n\n --ciphers=STR Set the priority string (GnuTLS) or cipher list string (OpenSSL) directly.\n Use with care. This option overrides --secure-protocol.\n The format and syntax of this string depend on the specific SSL/TLS engine.\nHSTS options:\n --no-hsts disable HSTS\n --hsts-file path of HSTS database (will override default)\n\nFTP options:\n --ftp-user=USER set ftp user to USER\n --ftp-password=PASS set ftp password to PASS\n --no-remove-listing don\047t remove \047.listing\047 files\n --no-glob turn off FTP file name globbing\n --no-passive-ftp disable the "passive" transfer mode\n --preserve-permissions preserve remote file permissions\n --retr-symlinks when recursing, get linked-to files (not dir)\n\nFTPS options:\n --ftps-implicit use implicit FTPS (default port is 990)\n --ftps-resume-ssl resume the SSL/TLS session started in the control connection when\n opening a data connection\n --ftps-clear-data-connection cipher the control channel only; all the data will be in plaintext\n --ftps-fallback-to-ftp fall back to FTP if FTPS is not supported in the target server\nWARC options:\n --warc-file=FILENAME save request/response data to a .warc.gz file\n --warc-header=STRING insert STRING into the warcinfo record\n --warc-max-size=NUMBER set maximum size of WARC files to NUMBER\n --warc-cdx write CDX index files\n --warc-dedup=FILENAME do not store records listed in this CDX file\n --no-warc-compression do not compress WARC files with GZIP\n --no-warc-digests do not calculate SHA1 digests\n --no-warc-keep-log do not store the log file in a WARC record\n --warc-tempdir=DIRECTORY location for temporary files created by the\n WARC writer\n\nRecursive download:\n -r, --recursive specify recursive download\n -l, --level=NUMBER maximum recursion depth (inf or 0 for infinite)\n --delete-after delete files locally after downloading them\n -k, --convert-links make links in downloaded HTML or CSS point to\n local files\n --convert-file-only convert the file part of the URLs only (usually known as the basename)\n --backups=N before writing file X, rotate up to N backup files\n -K, --backup-converted before converting file X, back up as X.orig\n -m, --mirror shortcut for -N -r -l inf --no-remove-listing\n -p, --page-requisites get all images, etc. needed to display HTML page\n --strict-comments turn on strict (SGML) handling of HTML comments\n\nRecursive accept/reject:\n -A, --accept=LIST comma-separated list of accepted extensions\n -R, --reject=LIST comma-separated list of rejected extensions\n --accept-regex=REGEX regex matching accepted URLs\n --reject-regex=REGEX regex matching rejected URLs\n --regex-type=TYPE regex type (posix|pcre)\n -D, --domains=LIST comma-separated list of accepted domains\n --exclude-domains=LIST comma-separated list of rejected domains\n --follow-ftp follow FTP links from HTML documents\n --follow-tags=LIST comma-separated list of followed HTML tags\n --ignore-tags=LIST comma-separated list of ignored HTML tags\n -H, --span-hosts go to foreign hosts when recursive\n -L, --relative follow relative links only\n -I, --include-directories=LIST list of allowed directories\n --trust-server-names use the name specified by the redirection\n URL\047s last component\n -X, --exclude-directories=LIST list of excluded directories\n -np, --no-parent don\047t ascend to the parent directory\n\nEmail bug reports, questions, discussions to \nand/or open issues at https://savannah.gnu.org/bugs/?func=additem&group=wget.' + echo $'GNU Wget 1.21.4, a non-interactive network retriever.\nUsage: wget [OPTION]... [URL]...\n\nMandatory arguments to long options are mandatory for short options too.\n\nStartup:\n -V, --version display the version of Wget and exit\n -h, --help print this help\n -b, --background go to background after startup\n -e, --execute=COMMAND execute a `.wgetrc\047-style command\n\nLogging and input file:\n -o, --output-file=FILE log messages to FILE\n -a, --append-output=FILE append messages to FILE\n -d, --debug print lots of debugging information\n -q, --quiet quiet (no output)\n -v, --verbose be verbose (this is the default)\n -nv, --no-verbose turn off verboseness, without being quiet\n --report-speed=TYPE output bandwidth as TYPE. TYPE can be bits\n -i, --input-file=FILE download URLs found in local or external FILE\n --input-metalink=FILE download files covered in local Metalink FILE\n -F, --force-html treat input file as HTML\n -B, --base=URL resolves HTML input-file links (-i -F)\n relative to URL\n --config=FILE specify config file to use\n --no-config do not read any config file\n --rejected-log=FILE log reasons for URL rejection to FILE\n\nDownload:\n -t, --tries=NUMBER set number of retries to NUMBER (0 unlimits)\n --retry-connrefused retry even if connection is refused\n --retry-on-host-error consider host errors as non-fatal, transient errors\n --retry-on-http-error=ERRORS comma-separated list of HTTP errors to retry\n -O, --output-document=FILE write documents to FILE\n -nc, --no-clobber skip downloads that would download to\n existing files (overwriting them)\n --no-netrc don\047t try to obtain credentials from .netrc\n -c, --continue resume getting a partially-downloaded file\n --start-pos=OFFSET start downloading from zero-based position OFFSET\n --progress=TYPE select progress gauge type\n --show-progress display the progress bar in any verbosity mode\n -N, --timestamping don\047t re-retrieve files unless newer than\n local\n --no-if-modified-since don\047t use conditional if-modified-since get\n requests in timestamping mode\n --no-use-server-timestamps don\047t set the local file\047s timestamp by\n the one on the server\n -S, --server-response print server response\n --spider don\047t download anything\n -T, --timeout=SECONDS set all timeout values to SECONDS\n --dns-timeout=SECS set the DNS lookup timeout to SECS\n --connect-timeout=SECS set the connect timeout to SECS\n --read-timeout=SECS set the read timeout to SECS\n -w, --wait=SECONDS wait SECONDS between retrievals\n (applies if more then 1 URL is to be retrieved)\n --waitretry=SECONDS wait 1..SECONDS between retries of a retrieval\n (applies if more then 1 URL is to be retrieved)\n --random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals\n (applies if more then 1 URL is to be retrieved)\n --no-proxy explicitly turn off proxy\n -Q, --quota=NUMBER set retrieval quota to NUMBER\n --bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host\n --limit-rate=RATE limit download rate to RATE\n --no-dns-cache disable caching DNS lookups\n --restrict-file-names=OS restrict chars in file names to ones OS allows\n --ignore-case ignore case when matching files/directories\n -4, --inet4-only connect only to IPv4 addresses\n -6, --inet6-only connect only to IPv6 addresses\n --prefer-family=FAMILY connect first to addresses of specified family,\n one of IPv6, IPv4, or none\n --user=USER set both ftp and http user to USER\n --password=PASS set both ftp and http password to PASS\n --ask-password prompt for passwords\n --use-askpass=COMMAND specify credential handler for requesting \n username and password. If no COMMAND is \n specified the WGET_ASKPASS or the SSH_ASKPASS \n environment variable is used.\n --no-iri turn off IRI support\n --local-encoding=ENC use ENC as the local encoding for IRIs\n --remote-encoding=ENC use ENC as the default remote encoding\n --unlink remove file before clobber\n --keep-badhash keep files with checksum mismatch (append .badhash)\n --metalink-index=NUMBER Metalink application/metalink4+xml metaurl ordinal NUMBER\n --metalink-over-http use Metalink metadata from HTTP response headers\n --preferred-location preferred location for Metalink resources\n --xattr turn on storage of metadata in extended file attributes\n\nDirectories:\n -nd, --no-directories don\047t create directories\n -x, --force-directories force creation of directories\n -nH, --no-host-directories don\047t create host directories\n --protocol-directories use protocol name in directories\n -P, --directory-prefix=PREFIX save files to PREFIX/..\n --cut-dirs=NUMBER ignore NUMBER remote directory components\n\nHTTP options:\n --http-user=USER set http user to USER\n --http-password=PASS set http password to PASS\n --no-cache disallow server-cached data\n --default-page=NAME change the default page name (normally\n this is \047index.html\047.)\n -E, --adjust-extension save HTML/CSS documents with proper extensions\n --ignore-length ignore \047Content-Length\047 header field\n --header=STRING insert STRING among the headers\n --compression=TYPE choose compression, one of auto, gzip and none. (default: none)\n --max-redirect maximum redirections allowed per page\n --proxy-user=USER set USER as proxy username\n --proxy-password=PASS set PASS as proxy password\n --referer=URL include \047Referer: URL\047 header in HTTP request\n --save-headers save the HTTP headers to file\n -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION\n --no-http-keep-alive disable HTTP keep-alive (persistent connections)\n --no-cookies don\047t use cookies\n --load-cookies=FILE load cookies from FILE before session\n --save-cookies=FILE save cookies to FILE after session\n --keep-session-cookies load and save session (non-permanent) cookies\n --post-data=STRI+ grep -q -- ' --retry-connrefused ' NG use the POST method; send STRING as the data\n --post-file=FILE use the POST method; send contents of FILE\n --method=HTTPMethod use method "HTTPMethod" in the request\n --body-data=STRING send STRING as data. --method MUST be set\n --body-file=FILE send contents of FILE. --method MUST be set\n --content-disposition honor the Content-Disposition header when\n choosing local file names (EXPERIMENTAL)\n --content-on-error output the received content on server errors\n --auth-no-challenge send Basic HTTP authentication information\n without first waiting for the server\047s\n challenge\n\nHTTPS (SSL/TLS) options:\n --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n SSLv3, TLSv1, TLSv1_1, TLSv1_2, TLSv1_3 and PFS\n --https-only only follow secure HTTPS links\n --no-check-certificate don\047t validate the server\047s certificate\n --certificate=FILE client certificate file\n --certificate-type=TYPE client certificate type, PEM or DER\n --private-key=FILE private key file\n --private-key-type=TYPE private key type, PEM or DER\n --ca-certificate=FILE file with the bundle of CAs\n --ca-directory=DIR directory where hash list of CAs is stored\n --crl-file=FILE file with bundle of CRLs\n --pinnedpubkey=FILE/HASHES Public key (PEM/DER) file, or any number\n of base64 encoded sha256 hashes preceded by\n \047sha256//\047 and separated by \047;\047, to verify\n peer against\n --random-file=FILE file with random data for seeding the SSL PRNG\n\n --ciphers=STR Set the priority string (GnuTLS) or cipher list string (OpenSSL) directly.\n Use with care. This option overrides --secure-protocol.\n The format and syntax of this string depend on the specific SSL/TLS engine.\nHSTS options:\n --no-hsts disable HSTS\n --hsts-file path of HSTS database (will override default)\n\nFTP options:\n --ftp-user=USER set ftp user to USER\n --ftp-password=PASS set ftp password to PASS\n --no-remove-listing don\047t remove \047.listing\047 files\n --no-glob turn off FTP file name globbing\n --no-passive-ftp disable the "passive" transfer mode\n --preserve-permissions preserve remote file permissions\n --retr-symlinks when recursing, get linked-to files (not dir)\n\nFTPS options:\n --ftps-implicit use implicit FTPS (default port is 990)\n --ftps-resume-ssl resume the SSL/TLS session started in the control connection when\n opening a data connection\n --ftps-clear-data-connection cipher the control channel only; all the data will be in plaintext\n --ftps-fallback-to-ftp fall back to FTP if FTPS is not supported in the target server\nWARC options:\n --warc-file=FILENAME save request/response data to a .warc.gz file\n --warc-header=STRING insert STRING into the warcinfo record\n --warc-max-size=NUMBER set maximum size of WARC files to NUMBER\n --warc-cdx write CDX index files\n --warc-dedup=FILENAME do not store records listed in this CDX file\n --no-warc-compression do not compress WARC files with GZIP\n --no-warc-digests do not calculate SHA1 digests\n --no-warc-keep-log do not store the log file in a WARC record\n --warc-tempdir=DIRECTORY location for temporary files created by the\n WARC writer\n\nRecursive download:\n -r, --recursive specify recursive download\n -l, --level=NUMBER maximum recursion depth (inf or 0 for infinite)\n --delete-after delete files locally after downloading them\n -k, --convert-links make links in downloaded HTML or CSS point to\n local files\n --convert-file-only convert the file part of the URLs only (usually known as the basename)\n --backups=N before writing file X, rotate up to N backup files\n -K, --backup-converted before converting file X, back up as X.orig\n -m, --mirror shortcut for -N -r -l inf --no-remove-listing\n -p, --page-requisites get all images, etc. needed to display HTML page\n --strict-comments turn on strict (SGML) handling of HTML comments\n\nRecursive accept/reject:\n -A, --accept=LIST comma-separated list of accepted extensions\n -R, --reject=LIST comma-separated list of rejected extensions\n --accept-regex=REGEX regex matching accepted URLs\n --reject-regex=REGEX regex matching rejected URLs\n --regex-type=TYPE regex type (posix|pcre)\n -D, --domains=LIST comma-separated list of accepted domains\n --exclude-domains=LIST comma-separated list of rejected domains\n --follow-ftp follow FTP links from HTML documents\n --follow-tags=LIST comma-separated list of followed HTML tags\n --ignore-tags=LIST comma-separated list of ignored HTML tags\n -H, --span-hosts go to foreign hosts when recursive\n -L, --relative follow relative links only\n -I, --include-directories=LIST list of allowed directories\n --trust-server-names use the name specified by the redirection\n URL\047s last component\n -X, --exclude-directories=LIST list of excluded directories\n -np, --no-parent don\047t ascend to the parent directory\n\nEmail bug reports, questions, discussions to \nand/or open issues at https://savannah.gnu.org/bugs/?func=additem&group=wget.' + WGET_OPTS=' --no-check-certificate --retry-connrefused' + echo $'GNU Wget 1.21.4, a non-interactive network retriever.\nUsage: wget [OPTION]... [URL]...\n\nMandatory arguments to long options are mandatory for short options too.\n\nStartup:\n -V, --version display the version of Wget and exit\n -h, --help print this help\n -b, --background go to background after startup\n -e, --execute=COMMAND execute a `.wgetrc\047-style command\n\nLogging and input file:\n -o, --output-file=FILE log messages to FILE\n -a, --append-output=FILE append messages to FILE\n -d, --debug print lots of debugging information\n -q, --quiet quiet (no output)\n -v, --verbose be verbose (this is the default)\n -nv, --no-verbose turn off verboseness, without being quiet\n --report-speed=TYPE output bandwidth as TYPE. TYPE can be bits\n -i, --input-file=FILE download URLs found in local or external FILE\n --input-metalink=FILE download files covered in local Metalink FILE\n -F, --force-html treat input file as HTML\n -B, --base=URL resolves HTML input-file links (-i -F)\n relative to URL\n --config=FILE specify config file to use\n --no-config do not read any config file\n --rejected-log=FILE log reasons for URL rejection to FILE\n\nDownload:\n -t, --tries=NUMBER set number of retries to NUMBER (0 unlimits)\n --retry-connrefused retry even if connection is refused\n --retry-on-host-error consider host errors as non-fatal, transient errors\n --retry-on-http-error=ERRORS comma-separated list of HTTP errors to retry\n -O, --output-document=FILE write documents to FILE\n -nc, --no-clobber skip downloads that would download to\n existing files (overwriting them)\n --no-netrc don\047t try to obtain credentials from .netrc\n -c, --continue resume getting a partially-downloaded file\n --start-pos=OFFSET start downloading from zero-based position OFFSET\n --progress=TYPE select progress gauge type\n --show-progress display the progress bar in any verbosity mode\n -N, --timestamping don\047t re-retrieve files unless newer than\n local\n --no-if-modified-since don\047t use conditional if-modified-since get\n requests in timestamping mode\n --no-use-server-timestamps don\047t set the local file\047s timestamp by\n the one on the server\n -S, --server-response print server response\n --spider don\047t download anything\n -T, --timeout=SECONDS set all timeout values to SECONDS\n --dns-timeout=SECS set the DNS lookup timeout to SECS\n --connect-timeout=SECS set the connect timeout to SECS\n --read-timeout=SECS set the read timeout to SECS\n -w, --wait=SECONDS wait SECONDS between retrievals\n (applies if more then 1 URL is to be retrieved)\n --waitretry=SECONDS wait 1..SECONDS between retries of a retrieval\n (applies if more then 1 URL is to be retrieved)\n --random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals\n (applies if more then 1 URL is to be retrieved)\n --no-proxy explicitly turn off proxy\n -Q, --quota=NUMBER set retrieval quota to NUMBER\n --bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host\n --limit-rate=RATE limit download rate to RATE\n --no-dns-cache disable caching DNS lookups\n --restrict-file-names=OS restrict chars in file names to ones OS allows\n --ignore-case ignore case when matching files/directories\n -4, --inet4-only connect only to IPv4 addresses\n -6, --inet6-only connect only to IPv6 addresses\n --prefer-family=FAMILY connect first to addresses of specified family,\n one of IPv6, IPv4, or none\n --user=USER set both ftp and http user to USER+ grep -q -- ' --no-iri ' \n --password=PASS set both ftp and http password to PASS\n --ask-password prompt for passwords\n --use-askpass=COMMAND specify credential handler for requesting \n username and password. If no COMMAND is \n specified the WGET_ASKPASS or the SSH_ASKPASS \n environment variable is used.\n --no-iri turn off IRI support\n --local-encoding=ENC use ENC as the local encoding for IRIs\n --remote-encoding=ENC use ENC as the default remote encoding\n --unlink remove file before clobber\n --keep-badhash keep files with checksum mismatch (append .badhash)\n --metalink-index=NUMBER Metalink application/metalink4+xml metaurl ordinal NUMBER\n --metalink-over-http use Metalink metadata from HTTP response headers\n --preferred-location preferred location for Metalink resources\n --xattr turn on storage of metadata in extended file attributes\n\nDirectories:\n -nd, --no-directories don\047t create directories\n -x, --force-directories force creation of directories\n -nH, --no-host-directories don\047t create host directories\n --protocol-directories use protocol name in directories\n -P, --directory-prefix=PREFIX save files to PREFIX/..\n --cut-dirs=NUMBER ignore NUMBER remote directory components\n\nHTTP options:\n --http-user=USER set http user to USER\n --http-password=PASS set http password to PASS\n --no-cache disallow server-cached data\n --default-page=NAME change the default page name (normally\n this is \047index.html\047.)\n -E, --adjust-extension save HTML/CSS documents with proper extensions\n --ignore-length ignore \047Content-Length\047 header field\n --header=STRING insert STRING among the headers\n --compression=TYPE choose compression, one of auto, gzip and none. (default: none)\n --max-redirect maximum redirections allowed per page\n --proxy-user=USER set USER as proxy username\n --proxy-password=PASS set PASS as proxy password\n --referer=URL include \047Referer: URL\047 header in HTTP request\n --save-headers save the HTTP headers to file\n -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION\n --no-http-keep-alive disable HTTP keep-alive (persistent connections)\n --no-cookies don\047t use cookies\n --load-cookies=FILE load cookies from FILE before session\n --save-cookies=FILE save cookies to FILE after session\n --keep-session-cookies load and save session (non-permanent) cookies\n --post-data=STRING use the POST method; send STRING as the data\n --post-file=FILE use the POST method; send contents of FILE\n --method=HTTPMethod use method "HTTPMethod" in the request\n --body-data=STRING send STRING as data. --method MUST be set\n --body-file=FILE send contents of FILE. --method MUST be set\n --content-disposition honor the Content-Disposition header when\n choosing local file names (EXPERIMENTAL)\n --content-on-error output the received content on server errors\n --auth-no-challenge send Basic HTTP authentication information\n without first waiting for the server\047s\n challenge\n\nHTTPS (SSL/TLS) options:\n --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n SSLv3, TLSv1, TLSv1_1, TLSv1_2, TLSv1_3 and PFS\n --https-only only follow secure HTTPS links\n --no-check-certificate don\047t validate the server\047s certificate\n --certificate=FILE client certificate file\n --certificate-type=TYPE client certificate type, PEM or DER\n --private-key=FILE private key file\n --private-key-type=TYPE private key type, PEM or DER\n --ca-certificate=FILE file with the bundle of CAs\n --ca-directory=DIR directory where hash list of CAs is stored\n --crl-file=FILE file with bundle of CRLs\n --pinnedpubkey=FILE/HASHES Public key (PEM/DER) file, or any number\n of base64 encoded sha256 hashes preceded by\n \047sha256//\047 and separated by \047;\047, to verify\n peer against\n --random-file=FILE file with random data for seeding the SSL PRNG\n\n --ciphers=STR Set the priority string (GnuTLS) or cipher list string (OpenSSL) directly.\n Use with care. This option overrides --secure-protocol.\n The format and syntax of this string depend on the specific SSL/TLS engine.\nHSTS options:\n --no-hsts disable HSTS\n --hsts-file path of HSTS database (will override default)\n\nFTP options:\n --ftp-user=USER set ftp user to USER\n --ftp-password=PASS set ftp password to PASS\n --no-remove-listing don\047t remove \047.listing\047 files\n --no-glob turn off FTP file name globbing\n --no-passive-ftp disable the "passive" transfer mode\n --preserve-permissions preserve remote file permissions\n --retr-symlinks when recursing, get linked-to files (not dir)\n\nFTPS options:\n --ftps-implicit use implicit FTPS (default port is 990)\n --ftps-resume-ssl resume the SSL/TLS session started in the control connection when\n opening a data connection\n --ftps-clear-data-connection cipher the control channel only; all the data will be in plaintext\n --ftps-fallback-to-ftp fall back to FTP if FTPS is not supported in the target server\nWARC options:\n --warc-file=FILENAME save request/response data to a .warc.gz file\n --warc-header=STRING insert STRING into the warcinfo record\n --warc-max-size=NUMBER set maximum size of WARC files to NUMBER\n --warc-cdx write CDX index files\n --warc-dedup=FILENAME do not store records listed in this CDX file\n --no-warc-compression do not compress WARC files with GZIP\n --no-warc-digests do not calculate SHA1 digests\n --no-warc-keep-log do not store the log file in a WARC record\n --warc-tempdir=DIRECTORY location for temporary files created by the\n WARC writer\n\nRecursive download:\n -r, --recursive specify recursive download\n -l, --level=NUMBER maximum recursion depth (inf or 0 for infinite)\n --delete-after delete files locally after downloading them\n -k, --convert-links make links in downloaded HTML or CSS point to\n local files\n --convert-file-only convert the file part of the URLs only (usually known as the basename)\n --backups=N before writing file X, rotate up to N backup files\n -K, --backup-converted before converting file X, back up as X.orig\n -m, --mirror shortcut for -N -r -l inf --no-remove-listing\n -p, --page-requisites get all images, etc. needed to display HTML page\n --strict-comments turn on strict (SGML) handling of HTML comments\n\nRecursive accept/reject:\n -A, --accept=LIST comma-separated list of accepted extensions\n -R, --reject=LIST comma-separated list of rejected extensions\n --accept-regex=REGEX regex matching accepted URLs\n --reject-regex=REGEX regex matching rejected URLs\n --regex-type=TYPE regex type (posix|pcre)\n -D, --domains=LIST comma-separated list of accepted domains\n --exclude-domains=LIST comma-separated list of rejected domains\n --follow-ftp follow FTP links from HTML documents\n --follow-tags=LIST comma-separated list of followed HTML tags\n --ignore-tags=LIST comma-separated list of ignored HTML tags\n -H, --span-hosts go to foreign hosts when recursive\n -L, --relative follow relative links only\n -I, --include-directories=LIST list of allowed directories\n --trust-server-names use the name specified by the redirection\n URL\047s last component\n -X, --exclude-directories=LIST list of excluded directories\n -np, --no-parent don\047t ascend to the parent directory\n\nEmail bug reports, questions, discussions to \nand/or open issues at https://savannah.gnu.org/bugs/?func=additem&group=wget.' + WGET_OPTS=' --no-check-certificate --retry-connrefused --no-iri' + WGET_OPTS='-c -nd -t0 --no-check-certificate --retry-connrefused --no-iri --user-agent=TLD/Builder(v0.35) --passive-ftp' + WGET_OPTS_SET=1 + wget -c -nd -t0 --no-check-certificate --retry-connrefused --no-iri '--user-agent=TLD/Builder(v0.35)' --passive-ftp -O xrdp-0.9.25.1.tar.gz http://df.tld-linux.org/by-md5/f/3/f30ad85ce78c8542d4f7b03c28c8815f/xrdp-0.9.25.1.tar.gz URL transformed to HTTPS due to an HSTS policy --2024-04-26 18:41:17-- https://df.tld-linux.org/by-md5/f/3/f30ad85ce78c8542d4f7b03c28c8815f/xrdp-0.9.25.1.tar.gz Resolving df.tld-linux.org... 104.21.50.44, 172.67.200.190, 2606:4700:3036::6815:322c, ... Connecting to df.tld-linux.org|104.21.50.44|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 2048677 (2.0M) [application/x-gzip] Saving to: 'xrdp-0.9.25.1.tar.gz' 0K .......... .......... .......... .......... .......... 2% 4.70M 0s 50K .......... .......... .......... .......... .......... 4% 8.26M 0s 100K .......... .......... .......... .......... .......... 7% 178M 0s 150K .......... .......... .......... .......... .......... 9% 8.65M 0s 200K .......... .......... .......... .......... .......... 12% 124M 0s 250K .......... .......... .......... .......... .......... 14% 116M 0s 300K .......... .......... .......... .......... .......... 17% 93.5M 0s 350K .......... .......... .......... .......... .......... 19% 8.75M 0s 400K .......... .......... .......... .......... .......... 22% 82.7M 0s 450K .......... .......... .......... .......... .......... 24% 127M 0s 500K .......... .......... .......... .......... .......... 27% 87.0M 0s 550K .......... .......... .......... .......... .......... 29% 126M 0s 600K .......... .......... .......... .......... .......... 32% 118M 0s 650K .......... .......... .......... .......... .......... 34% 137M 0s 700K .......... .......... .......... .......... .......... 37% 119M 0s 750K .......... .......... .......... .......... .......... 39% 96.3M 0s 800K .......... .......... .......... .......... .......... 42% 85.0M 0s 850K .......... .......... .......... .......... .......... 44% 119M 0s 900K .......... .......... .......... .......... .......... 47% 109M 0s 950K .......... .......... .......... .......... .......... 49% 13.6M 0s 1000K .......... .......... .......... .......... .......... 52% 79.9M 0s 1050K .......... .......... .......... .......... .......... 54% 113M 0s 1100K .......... .......... .......... .......... .......... 57% 86.4M 0s 1150K .......... .......... .......... .......... .......... 59% 136M 0s 1200K .......... .......... .......... .......... .......... 62% 130M 0s 1250K .......... .......... .......... .......... .......... 64% 122M 0s 1300K .......... .......... .......... .......... .......... 67% 91.9M 0s 1350K .......... .......... .......... .......... .......... 69% 86.2M 0s 1400K .......... .......... .......... .......... .......... 72% 137M 0s 1450K .......... .......... .......... .......... .......... 74% 116M 0s 1500K .......... .......... .......... .......... .......... 77% 139M 0s 1550K .......... .......... .......... .......... .......... 79% 92.4M 0s 1600K .......... .......... .......... .......... .......... 82% 113M 0s 1650K .......... .......... .......... .......... .......... 84% 131M 0s 1700K .......... .......... .......... .......... .......... 87% 101M 0s 1750K .......... .......... .......... .......... .......... 89% 89.5M 0s 1800K .......... .......... .......... .......... .......... 92% 132M 0s 1850K .......... .......... .......... .......... .......... 94% 119M 0s 1900K .......... .......... .......... .......... .......... 97% 11.9M 0s 1950K .......... .......... .......... .......... .......... 99% 140M 0s 2000K 100% 1.23T=0.05s 2024-04-26 18:41:17 (38.8 MB/s) - 'xrdp-0.9.25.1.tar.gz' saved [2048677/2048677] + retval=0 + '[' 0 -ne 0 ']' + return 0 + '[' -s xrdp-0.9.25.1.tar.gz ']' + cvsignore_df xrdp-0.9.25.1.tar.gz + '[' yes '!=' yes ']' + typeset 'cvsignore=/home/users/builder/rpm/packages/xrdp/.git/info/exclude' + 2>/dev/null + awk '-vf=xrdp-0.9.25.1.tar.gz' '-vc=1' '$0 == f { c = 0 } END { exit c }' /home/users/builder/rpm/packages/xrdp/.git/info/exclude + >>/home/users/builder/rpm/packages/xrdp/.git/info/exclude + echo xrdp-0.9.25.1.tar.gz + '[' -z yes ']' + '[' 0 '=' 1 ']' + '[' ! -f xrdp-0.9.25.1.tar.gz -a yes '!=' no ']' + good_md5 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + src_md5 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + '[' '' '=' yes ']' + src_no https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + typeset 'file=https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz' + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='https://github\.com/neutrinolabs/xrdp/releases/download/v0\.9\.25\.1/xrdp-0\.9\.25\.1\.tar\.gz' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*https://github\\.com/neutrinolabs/xrdp/releases/download/v0\\.9\\.25\\.1/xrdp-0\\.9\\.25\\.1\\.tar\\.gz[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Source0 + '[' -z Source0 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source0-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5=$'\tf30ad85ce78c8542d4f7b03c28c8815f' + '[' -n $'\tf30ad85ce78c8542d4f7b03c28c8815f' ']' + echo f30ad85ce78c8542d4f7b03c28c8815f + md5=f30ad85ce78c8542d4f7b03c28c8815f + '[' f30ad85ce78c8542d4f7b03c28c8815f '=' '' ']' + sed -e 's/ .*//' + nourl https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + md5sum xrdp-0.9.25.1.tar.gz + '[' f30ad85ce78c8542d4f7b03c28c8815f '=' f30ad85ce78c8542d4f7b03c28c8815f ']' + good_size https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + nourl https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find xrdp-0.9.25.1.tar.gz -printf %s + size=2048677 + '[' -n 2048677 -a 2048677 -gt 0 ']' + : + nc=2 + typeset 'cvsup=0' + SHELL_TITLE_PREFIX='get_files[2/9]' + update_shell_title xrdp.init + '[' -t 2 ']' + return + nourl xrdp.init + echo xrdp.init + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + typeset 'fp=xrdp.init' + '[' no '=' yes ']' + FROM_DISTFILES=0 + src_md5 xrdp.init + '[' '' '=' yes ']' + src_no xrdp.init + typeset 'file=xrdp.init' + echo xrdp.init + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.init' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.init[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Source1 + '[' -z Source1 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source1-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource1)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource1-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source1$' xrdp.spec + '[' -n '' -a -n '' ']' + typeset 'srcmd5=' + '[' ! -f xrdp.init ']' + '[' yes '=' yes ']' + echo xrdp.init + grep -vE '(http|ftp|https|cvs|svn)://' + grep -qE '\.(gz|bz2)$]' + target=xrdp.init + '[' -z '' ']' + '[' -n '' ']' + '[' -z yes ']' + '[' 0 '=' 1 ']' + '[' ! -f xrdp.init -a yes '!=' no ']' + good_md5 xrdp.init + src_md5 xrdp.init + '[' '' '=' yes ']' + src_no xrdp.init + typeset 'file=xrdp.init' + echo xrdp.init + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.init' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.init[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Source1 + '[' -z Source1 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source1-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource1)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource1-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source1$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size xrdp.init + nourl xrdp.init + echo xrdp.init + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find xrdp.init -printf %s + size=1739 + '[' -n 1739 -a 1739 -gt 0 ']' + : + nc=3 + typeset 'cvsup=0' + SHELL_TITLE_PREFIX='get_files[3/9]' + update_shell_title xrdp.pamd + '[' -t 2 ']' + return + nourl xrdp.pamd + echo xrdp.pamd + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + typeset 'fp=xrdp.pamd' + '[' no '=' yes ']' + FROM_DISTFILES=0 + src_md5 xrdp.pamd + '[' '' '=' yes ']' + src_no xrdp.pamd + typeset 'file=xrdp.pamd' + echo xrdp.pamd + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.pamd' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.pamd[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Source2 + '[' -z Source2 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source2-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource2)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource2-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source2$' xrdp.spec + '[' -n '' -a -n '' ']' + typeset 'srcmd5=' + '[' ! -f xrdp.pamd ']' + '[' yes '=' yes ']' + echo xrdp.pamd + grep -vE '(http|ftp|https|cvs|svn)://' + grep -qE '\.(gz|bz2)$]' + target=xrdp.pamd + '[' -z '' ']' + '[' -n '' ']' + '[' -z yes ']' + '[' 0 '=' 1 ']' + '[' ! -f xrdp.pamd -a yes '!=' no ']' + good_md5 xrdp.pamd + src_md5 xrdp.pamd + '[' '' '=' yes ']' + src_no xrdp.pamd + typeset 'file=xrdp.pamd' + echo xrdp.pamd + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.pamd' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.pamd[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Source2 + '[' -z Source2 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source2-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource2)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource2-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source2$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size xrdp.pamd + nourl xrdp.pamd + echo xrdp.pamd + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find xrdp.pamd -printf %s + size=305 + '[' -n 305 -a 305 -gt 0 ']' + : + nc=4 + typeset 'cvsup=0' + SHELL_TITLE_PREFIX='get_files[4/9]' + update_shell_title xrdp.README.TLD + '[' -t 2 ']' + return + nourl xrdp.README.TLD + echo xrdp.README.TLD + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + typeset 'fp=xrdp.README.TLD' + '[' no '=' yes ']' + FROM_DISTFILES=0 + src_md5 xrdp.README.TLD + '[' '' '=' yes ']' + src_no xrdp.README.TLD + typeset 'file=xrdp.README.TLD' + echo xrdp.README.TLD + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.README\.TLD' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.README\\.TLD[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Source3 + '[' -z Source3 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source3-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource3)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource3-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source3$' xrdp.spec + '[' -n '' -a -n '' ']' + typeset 'srcmd5=' + '[' ! -f xrdp.README.TLD ']' + '[' yes '=' yes ']' + echo xrdp.README.TLD + grep -vE '(http|ftp|https|cvs|svn)://' + grep -qE '\.(gz|bz2)$]' + target=xrdp.README.TLD + '[' -z '' ']' + '[' -n '' ']' + '[' -z yes ']' + '[' 0 '=' 1 ']' + '[' ! -f xrdp.README.TLD -a yes '!=' no ']' + good_md5 xrdp.README.TLD + src_md5 xrdp.README.TLD + '[' '' '=' yes ']' + src_no xrdp.README.TLD + typeset 'file=xrdp.README.TLD' + echo xrdp.README.TLD + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.README\.TLD' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.README\\.TLD[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Source3 + '[' -z Source3 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source3-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource3)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource3-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source3$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size xrdp.README.TLD + nourl xrdp.README.TLD + echo xrdp.README.TLD + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find xrdp.README.TLD -printf %s + size=454 + '[' -n 454 -a 454 -gt 0 ']' + : + nc=5 + typeset 'cvsup=0' + SHELL_TITLE_PREFIX='get_files[5/9]' + update_shell_title xrdp.README.TLD.pl + '[' -t 2 ']' + return + nourl xrdp.README.TLD.pl + echo xrdp.README.TLD.pl + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + typeset 'fp=xrdp.README.TLD.pl' + '[' no '=' yes ']' + FROM_DISTFILES=0 + src_md5 xrdp.README.TLD.pl + '[' '' '=' yes ']' + src_no xrdp.README.TLD.pl + typeset 'file=xrdp.README.TLD.pl' + echo xrdp.README.TLD.pl + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.README\.TLD\.pl' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.README\\.TLD\\.pl[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Source4 + '[' -z Source4 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source4-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource4)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource4-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source4$' xrdp.spec + '[' -n '' -a -n '' ']' + typeset 'srcmd5=' + '[' ! -f xrdp.README.TLD.pl ']' + '[' yes '=' yes ']' + echo xrdp.README.TLD.pl + grep -vE '(http|ftp|https|cvs|svn)://' + grep -qE '\.(gz|bz2)$]' + target=xrdp.README.TLD.pl + '[' -z '' ']' + '[' -n '' ']' + '[' -z yes ']' + '[' 0 '=' 1 ']' + '[' ! -f xrdp.README.TLD.pl -a yes '!=' no ']' + good_md5 xrdp.README.TLD.pl + src_md5 xrdp.README.TLD.pl + '[' '' '=' yes ']' + src_no xrdp.README.TLD.pl + typeset 'file=xrdp.README.TLD.pl' + echo xrdp.README.TLD.pl + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.README\.TLD\.pl' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.README\\.TLD\\.pl[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Source4 + '[' -z Source4 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source4-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource4)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource4-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source4$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size xrdp.README.TLD.pl + nourl xrdp.README.TLD.pl + echo xrdp.README.TLD.pl + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find xrdp.README.TLD.pl -printf %s + size=508 + '[' -n 508 -a 508 -gt 0 ']' + : + nc=6 + typeset 'cvsup=0' + SHELL_TITLE_PREFIX='get_files[6/9]' + update_shell_title startwm.sh + '[' -t 2 ']' + return + nourl startwm.sh + echo startwm.sh + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + typeset 'fp=startwm.sh' + '[' no '=' yes ']' + FROM_DISTFILES=0 + src_md5 startwm.sh + '[' '' '=' yes ']' + src_no startwm.sh + typeset 'file=startwm.sh' + echo startwm.sh + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='startwm\.sh' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*startwm\\.sh[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Source5 + '[' -z Source5 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source5-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource5)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource5-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source5$' xrdp.spec + '[' -n '' -a -n '' ']' + typeset 'srcmd5=' + '[' ! -f startwm.sh ']' + '[' yes '=' yes ']' + echo startwm.sh + grep -vE '(http|ftp|https|cvs|svn)://' + grep -qE '\.(gz|bz2)$]' + target=startwm.sh + '[' -z '' ']' + '[' -n '' ']' + '[' -z yes ']' + '[' 0 '=' 1 ']' + '[' ! -f startwm.sh -a yes '!=' no ']' + good_md5 startwm.sh + src_md5 startwm.sh + '[' '' '=' yes ']' + src_no startwm.sh + typeset 'file=startwm.sh' + echo startwm.sh + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='startwm\.sh' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*startwm\\.sh[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Source5 + '[' -z Source5 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source5-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource5)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource5-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source5$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size startwm.sh + nourl startwm.sh + echo startwm.sh + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find startwm.sh -printf %s + size=37 + '[' -n 37 -a 37 -gt 0 ']' + : + nc=7 + typeset 'cvsup=0' + SHELL_TITLE_PREFIX='get_files[7/9]' + update_shell_title config.patch + '[' -t 2 ']' + return + nourl config.patch + echo config.patch + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + typeset 'fp=config.patch' + '[' no '=' yes ']' + FROM_DISTFILES=0 + src_md5 config.patch + '[' '' '=' yes ']' + src_no config.patch + typeset 'file=config.patch' + echo config.patch + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='config\.patch' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*config\\.patch[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Patch0 + '[' -z Patch0 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Patch0-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCEPatch0)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoPatch0-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Patch0$' xrdp.spec + '[' -n '' -a -n '' ']' + typeset 'srcmd5=' + '[' ! -f config.patch ']' + '[' yes '=' yes ']' + echo config.patch + grep -vE '(http|ftp|https|cvs|svn)://' + grep -qE '\.(gz|bz2)$]' + target=config.patch + '[' -z '' ']' + '[' -n '' ']' + '[' -z yes ']' + '[' 0 '=' 1 ']' + '[' ! -f config.patch -a yes '!=' no ']' + good_md5 config.patch + src_md5 config.patch + '[' '' '=' yes ']' + src_no config.patch + typeset 'file=config.patch' + echo config.patch + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='config\.patch' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*config\\.patch[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Patch0 + '[' -z Patch0 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Patch0-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCEPatch0)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoPatch0-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Patch0$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size config.patch + nourl config.patch + echo config.patch + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find config.patch -printf %s + size=3759 + '[' -n 3759 -a 3759 -gt 0 ']' + : + nc=8 + typeset 'cvsup=0' + SHELL_TITLE_PREFIX='get_files[8/9]' + update_shell_title quiet.patch + '[' -t 2 ']' + return + nourl quiet.patch + echo quiet.patch + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + typeset 'fp=quiet.patch' + '[' no '=' yes ']' + FROM_DISTFILES=0 + src_md5 quiet.patch + '[' '' '=' yes ']' + src_no quiet.patch + typeset 'file=quiet.patch' + echo quiet.patch + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='quiet\.patch' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*quiet\\.patch[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + tr OURCEATH ourceath + xargs + head -n 1 + no=Patch1 + '[' -z Patch1 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Patch1-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCEPatch1)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoPatch1-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Patch1$' xrdp.spec + '[' -n '' -a -n '' ']' + typeset 'srcmd5=' + '[' ! -f quiet.patch ']' + '[' yes '=' yes ']' + echo quiet.patch + grep -vE '(http|ftp|https|cvs|svn)://' + grep -qE '\.(gz|bz2)$]' + target=quiet.patch + '[' -z '' ']' + '[' -n '' ']' + '[' -z yes ']' + '[' 0 '=' 1 ']' + '[' ! -f quiet.patch -a yes '!=' no ']' + good_md5 quiet.patch + src_md5 quiet.patch + '[' '' '=' yes ']' + src_no quiet.patch + typeset 'file=quiet.patch' + echo quiet.patch + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='quiet\.patch' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*quiet\\.patch[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Patch1 + '[' -z Patch1 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Patch1-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCEPatch1)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoPatch1-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Patch1$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size quiet.patch + nourl quiet.patch + echo quiet.patch + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find quiet.patch -printf %s + size=676 + '[' -n 676 -a 676 -gt 0 ']' + : + nc=9 + typeset 'cvsup=0' + SHELL_TITLE_PREFIX='get_files[9/9]' + update_shell_title x32.patch + '[' -t 2 ']' + return + nourl x32.patch + echo x32.patch + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + typeset 'fp=x32.patch' + '[' no '=' yes ']' + FROM_DISTFILES=0 + src_md5 x32.patch + '[' '' '=' yes ']' + src_no x32.patch + typeset 'file=x32.patch' + echo x32.patch + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='x32\.patch' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*x32\\.patch[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Patch2 + '[' -z Patch2 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Patch2-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCEPatch2)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoPatch2-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Patch2$' xrdp.spec + '[' -n '' -a -n '' ']' + typeset 'srcmd5=' + '[' ! -f x32.patch ']' + '[' yes '=' yes ']' + echo x32.patch + grep -vE '(http|ftp|https|cvs|svn)://' + grep -qE '\.(gz|bz2)$]' + target=x32.patch + '[' -z '' ']' + '[' -n '' ']' + '[' -z yes ']' + '[' 0 '=' 1 ']' + '[' ! -f x32.patch -a yes '!=' no ']' + good_md5 x32.patch + src_md5 x32.patch + '[' '' '=' yes ']' + src_no x32.patch + typeset 'file=x32.patch' + echo x32.patch + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='x32\.patch' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*x32\\.patch[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Patch2 + '[' -z Patch2 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Patch2-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCEPatch2)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoPatch2-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Patch2$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size x32.patch + nourl x32.patch + echo x32.patch + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find x32.patch -printf %s + size=1515 + '[' -n 1515 -a 1515 -gt 0 ']' + : + SHELL_TITLE_PREFIX='' + '[' no '=' yes ']' + check_md5 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz xrdp.init xrdp.pamd xrdp.README.TLD xrdp.README.TLD.pl startwm.sh config.patch quiet.patch x32.patch + typeset bad + '[' '' '=' yes ']' + update_shell_title 'check md5' + '[' -t 2 ']' + return + bad=0 + good_md5 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + src_md5 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + '[' '' '=' yes ']' + src_no https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + typeset 'file=https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz' + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='https://github\.com/neutrinolabs/xrdp/releases/download/v0\.9\.25\.1/xrdp-0\.9\.25\.1\.tar\.gz' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*https://github\\.com/neutrinolabs/xrdp/releases/download/v0\\.9\\.25\\.1/xrdp-0\\.9\\.25\\.1\\.tar\\.gz[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Source0 + '[' -z Source0 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source0-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5=$'\tf30ad85ce78c8542d4f7b03c28c8815f' + '[' -n $'\tf30ad85ce78c8542d4f7b03c28c8815f' ']' + echo f30ad85ce78c8542d4f7b03c28c8815f + md5=f30ad85ce78c8542d4f7b03c28c8815f + '[' f30ad85ce78c8542d4f7b03c28c8815f '=' '' ']' + sed -e 's/ .*//' + nourl https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + md5sum xrdp-0.9.25.1.tar.gz + '[' f30ad85ce78c8542d4f7b03c28c8815f '=' f30ad85ce78c8542d4f7b03c28c8815f ']' + good_size https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + nourl https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find xrdp-0.9.25.1.tar.gz -printf %s + size=2048677 + '[' -n 2048677 -a 2048677 -gt 0 ']' + '[' 0 -eq 1 ']' + bad=0 + good_md5 xrdp.init + src_md5 xrdp.init + '[' '' '=' yes ']' + src_no xrdp.init + typeset 'file=xrdp.init' + echo xrdp.init + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.init' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.init[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Source1 + '[' -z Source1 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source1-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource1)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource1-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source1$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size xrdp.init + nourl xrdp.init + echo xrdp.init + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find xrdp.init -printf %s + size=1739 + '[' -n 1739 -a 1739 -gt 0 ']' + '[' 0 -eq 1 ']' + bad=0 + good_md5 xrdp.pamd + src_md5 xrdp.pamd + '[' '' '=' yes ']' + src_no xrdp.pamd + typeset 'file=xrdp.pamd' + echo xrdp.pamd + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.pamd' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.pamd[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Source2 + '[' -z Source2 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source2-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource2)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource2-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source2$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size xrdp.pamd + nourl xrdp.pamd + echo xrdp.pamd + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find xrdp.pamd -printf %s + size=305 + '[' -n 305 -a 305 -gt 0 ']' + '[' 0 -eq 1 ']' + bad=0 + good_md5 xrdp.README.TLD + src_md5 xrdp.README.TLD + '[' '' '=' yes ']' + src_no xrdp.README.TLD + typeset 'file=xrdp.README.TLD' + echo xrdp.README.TLD + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.README\.TLD' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.README\\.TLD[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Source3 + '[' -z Source3 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source3-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource3)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource3-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source3$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size xrdp.README.TLD + nourl xrdp.README.TLD + echo xrdp.README.TLD + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find xrdp.README.TLD -printf %s + size=454 + '[' -n 454 -a 454 -gt 0 ']' + '[' 0 -eq 1 ']' + bad=0 + good_md5 xrdp.README.TLD.pl + src_md5 xrdp.README.TLD.pl + '[' '' '=' yes ']' + src_no xrdp.README.TLD.pl + typeset 'file=xrdp.README.TLD.pl' + echo xrdp.README.TLD.pl + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.README\.TLD\.pl' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.README\\.TLD\\.pl[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Source4 + '[' -z Source4 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source4-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource4)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource4-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source4$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size xrdp.README.TLD.pl + nourl xrdp.README.TLD.pl + echo xrdp.README.TLD.pl + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find xrdp.README.TLD.pl -printf %s + size=508 + '[' -n 508 -a 508 -gt 0 ']' + '[' 0 -eq 1 ']' + bad=0 + good_md5 startwm.sh + src_md5 startwm.sh + '[' '' '=' yes ']' + src_no startwm.sh + typeset 'file=startwm.sh' + echo startwm.sh + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='startwm\.sh' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*startwm\\.sh[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Source5 + '[' -z Source5 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source5-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource5)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource5-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source5$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size startwm.sh + nourl startwm.sh + echo startwm.sh + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find startwm.sh -printf %s + size=37 + '[' -n 37 -a 37 -gt 0 ']' + '[' 0 -eq 1 ']' + bad=0 + good_md5 config.patch + src_md5 config.patch + '[' '' '=' yes ']' + src_no config.patch + typeset 'file=config.patch' + echo config.patch + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='config\.patch' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*config\\.patch[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Patch0 + '[' -z Patch0 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Patch0-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCEPatch0)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoPatch0-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Patch0$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size config.patch + nourl config.patch + echo config.patch + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find config.patch -printf %s + size=3759 + '[' -n 3759 -a 3759 -gt 0 ']' + '[' 0 -eq 1 ']' + bad=0 + good_md5 quiet.patch + src_md5 quiet.patch + '[' '' '=' yes ']' + src_no quiet.patch + typeset 'file=quiet.patch' + echo quiet.patch + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='quiet\.patch' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*quiet\\.patch[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Patch1 + '[' -z Patch1 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Patch1-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCEPatch1)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoPatch1-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Patch1$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size quiet.patch + nourl quiet.patch + echo quiet.patch + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find quiet.patch -printf %s + size=676 + '[' -n 676 -a 676 -gt 0 ']' + '[' 0 -eq 1 ']' + bad=0 + good_md5 x32.patch + src_md5 x32.patch + '[' '' '=' yes ']' + src_no x32.patch + typeset 'file=x32.patch' + echo x32.patch + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='x32\.patch' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*x32\\.patch[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Patch2 + '[' -z Patch2 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Patch2-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCEPatch2)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoPatch2-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Patch2$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size x32.patch + nourl x32.patch + echo x32.patch + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find x32.patch -printf %s + size=1515 + '[' -n 1515 -a 1515 -gt 0 ']' + '[' 0 -eq 1 ']' + build_package + update_shell_title build_package + '[' -t 2 ']' + return + '[' -n yes ']' + set -x + set -v + cd /home/users/builder/rpm/packages/xrdp + BUILD_SWITCH='-bs --nodeps' + update_shell_title 'build_package: build-source' + '[' -t 2 ']' + return + typeset logfile retval + '[' -n '' ']' + unset GIT_WORK_TREE GIT_DIR + unset GIT_PREVIOUS_COMMIT GIT_URL GIT_PREVIOUS_SUCCESSFUL_COMMIT GIT_BRANCH GIT_COMMIT + unset GIT_SSH + unset GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_TESTING_PORCELAIN_COMMAND_LIST + env + grep ^GIT_ + insert_gitlog xrdp.spec + tempdir + typeset 'prefix=builder.xrdp' + mktemp --tmpdir -d builder.xrdp.XXXXXX + tempfile + typeset 'prefix=builder.xrdp' + mktemp --tmpdir -t builder.xrdp.XXXXXX + tempfile + typeset 'prefix=builder.xrdp' + mktemp --tmpdir -t builder.xrdp.XXXXXX + typeset 'SPECFILE=xrdp.spec' 'specdir=/home/users/builder/tmp/builder.xrdp.SDH2GQ' 'gitlog=/home/users/builder/tmp/builder.xrdp.4LNkMe' 'speclog=/home/users/builder/tmp/builder.xrdp.4cEdec' + rpm -E '%{?_buildchangelogtruncate}' + typeset 'log_entries=20' + 2>/dev/null + git rev-list --date-order -20 HEAD + >/home/users/builder/tmp/builder.xrdp.4LNkMe + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 + git log -n 1 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list b0d9f242e0102edb3d7e090291be9357df7e17b3 + git log -n 1 b0d9f242e0102edb3d7e090291be9357df7e17b3 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list b64cfbf6bc73d317ee1473f98476b4254fdab02f + git log -n 1 b64cfbf6bc73d317ee1473f98476b4254fdab02f '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 276e977598afa6dd44f4e44d107b98785beddb31 + git log -n 1 276e977598afa6dd44f4e44d107b98785beddb31 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 9f2133fba15428b4a7ac09d48def33ae6a8f6464 + git log -n 1 9f2133fba15428b4a7ac09d48def33ae6a8f6464 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list febe8bf9692782f1b88e58cb3e1b273b591b2b54 + git log -n 1 febe8bf9692782f1b88e58cb3e1b273b591b2b54 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list ebcd383e3657a751e668364685041611b54076ab + git log -n 1 ebcd383e3657a751e668364685041611b54076ab '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list be08a91e41b194fc1a614af8ab2ce5c3f213ba97 + git log -n 1 be08a91e41b194fc1a614af8ab2ce5c3f213ba97 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 6201d303f14c5255073aa23f4b4e34c87c04baf7 + git log -n 1 6201d303f14c5255073aa23f4b4e34c87c04baf7 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list c1ce194b640288fb6c5c6d201154637d1293efa2 + git log -n 1 c1ce194b640288fb6c5c6d201154637d1293efa2 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list bf524922b592ede951bacfb56ea09c3dca93b462 + git log -n 1 bf524922b592ede951bacfb56ea09c3dca93b462 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 8c34e42728f06a58d10aa579028e27d6f5f7ea75 + git log -n 1 8c34e42728f06a58d10aa579028e27d6f5f7ea75 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 98c0c55bc4aa046b870e942a99dac55d77e357d7 + git log -n 1 98c0c55bc4aa046b870e942a99dac55d77e357d7 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 8eb133194bbea4dfe96124c19f620dabd6ae1a60 + git log -n 1 8eb133194bbea4dfe96124c19f620dabd6ae1a60 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 1d30b4bb24ffd53bff22a61f3fae51d08e7ce42c + git log -n 1 1d30b4bb24ffd53bff22a61f3fae51d08e7ce42c '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 9f57dfdbb9f2adb8610089373566bc8246d632d6 + git log -n 1 9f57dfdbb9f2adb8610089373566bc8246d632d6 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 242b5728c78c9f6846cce9de4af1d2fe32479bcd + git log -n 1 242b5728c78c9f6846cce9de4af1d2fe32479bcd '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list beb5c301567f67f96633c8c5a67340c3b57bbf0f + git log -n 1 beb5c301567f67f96633c8c5a67340c3b57bbf0f '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list ff65cdbbd6ea4ce34c1381ea3c6d5da88db8ac35 + git log -n 1 ff65cdbbd6ea4ce34c1381ea3c6d5da88db8ac35 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 64b912db915190fd50443dd67f200ccebd2a683d + git log -n 1 64b912db915190fd50443dd67f200ccebd2a683d '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'giturl=http://git.tld-linux.org/?p=packages/xrdp.git;a=log' + '[' -n 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 ']' + giturl='http://git.tld-linux.org/?p=packages/xrdp.git;a=log;h=6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74' + typeset 'gitauthor=TLD Linux ' + >/home/users/builder/tmp/builder.xrdp.4cEdec + LC_ALL=C gawk '-vgiturl=http://git.tld-linux.org/?p=packages/xrdp.git;a=log;h=6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74' '-vgitauthor=TLD Linux ' '-vpackage=xrdp' $'BEGIN{\n\t\tprintf("* %s %s\\n- For complete changelog see: %s\\n", strftime("%a %b %d %Y"), gitauthor, giturl);\n\t\tprint;\n\t\texit\n\t}' + >>/home/users/builder/tmp/builder.xrdp.4cEdec + LC_ALL=C gawk '/^\* /{printf("* %s %s\n", strftime("%a %b %d %Y", $2), substr($0, length($1)+length($2)+length($3)+4)); next}{print}' /home/users/builder/tmp/builder.xrdp.4LNkMe + sed '/^%changelog/,$d' xrdp.spec + >/home/users/builder/tmp/builder.xrdp.SDH2GQ/xrdp.spec + sed -e $'${\n\t\t\ta%changelog\n\t\t\tr /home/users/builder/tmp/builder.xrdp.4cEdec\n\t\t}\n\t' + rm -f /home/users/builder/tmp/builder.xrdp.4LNkMe /home/users/builder/tmp/builder.xrdp.4cEdec + echo /home/users/builder/tmp/builder.xrdp.SDH2GQ + typeset 'specdir=/home/users/builder/tmp/builder.xrdp.SDH2GQ' + ulimit -c unlimited ./builder[2756]: ulimit: unlimited exceeds allowable coredump(blocks) limit + grep -q -E '(lib/(systemd|binfmt.d|sysctl.d|sysusers.d|tmpfiles.d)|systemd(unitdir|userunitdir|tmpfilesdir))' /home/users/builder/tmp/builder.xrdp.SDH2GQ/xrdp.spec + process_distbcond /home/users/builder/tmp/builder.xrdp.SDH2GQ/xrdp.spec + '[' -f /home/users/builder/.distbcond ']' + : + SN=xrdp + typeset 'distbcond=/home/users/builder/.distbcond' + '[' -n ']' + '[' -f /.distbcond ']' + find_spec_bcond xrdp.spec + typeset 'SPEC=xrdp.spec' + awk '-F\n' $'\n\t/^%changelog/ { exit }\n\t/^%bcond_with/{\n\t\tmatch($0, /bcond_with(out)?[ \\t]+[_a-zA-Z0-9]+/);\n\t\tbcond = substr($0, RSTART + 6, RLENGTH - 6);\n\t\tgsub(/[ \\t]+/, "_", bcond);\n\t\tprint bcond\n\t}' xrdp.spec + LC_ALL=C sort -u + typeset 'bcond_avail=' + /dev/null parse_spec set_bconds_values display_bconds ;; "show_bcond_args") init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi get_spec > /dev/null parse_spec set_bconds_values echo "$BCOND" ;; "show_avail_bconds") init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi get_spec > /dev/null parse_spec local bcond_avail=$(find_spec_bcond $SPECFILE) local opt bcond bconds for opt in $bcond_avail; do case "$opt" in without_*) bcond=${opt#without_} bconds="$bconds $bcond" ;; with_*) bcond=${opt#with_} bconds="$bconds $bcond" ;; *) echo >&2 "ERROR: unexpected '$opt' in show_avail_bconds" exit 1 ;; esac done echo $bconds ;; "build" | "build-binary" | "build-source" | "build-prep" | "build-build" | "build-install" | "build-list") init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi # display SMP make flags if set smp_mflags=$(rpm -E %{?_smp_mflags}) if [ "$smp_mflags" ]; then echo "builder: SMP make flags are set to $smp_mflags" fi get_spec parse_spec set_bconds_values display_bconds display_branches if [ "$COMMAND" != "build-source" ]; then check_buildarch fi fetch_build_requires if [ "$INTEGER_RELEASE" = "yes" ]; then echo "Checking release $PACKAGE_RELEASE..." if echo $PACKAGE_RELEASE | grep -q '^[^.]*\.[^.]*$' 2>/dev/null ; then Exit_error err_fract_rel "$PACKAGE_RELEASE" fi fi if [ -n "$NOSOURCE0" ] ; then SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'` fi try_upgrade case $? in 0) get_files $SOURCES $PATCHES check_md5 $SOURCES $PATCHES ;; *) NODIST="yes" get_files $SOURCES $PATCHES update_md5 $SOURCES $PATCHES ;; esac build_package if [ "$UPDATE_POLDEK_INDEXES" = "yes" ] && [ "$COMMAND" = "build" -o "$COMMAND" = "build-binary" ]; then run_poldek --sdir="${POLDEK_INDEX_DIR}" ${UPDATE_POLDEK_INDEXES_OPTS} --mkidxz fi remove_build_requires ;; "branch" ) init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi get_spec parse_spec branch_files $TAG ;; "add_cvs" ) init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi create_git_repo if [ -n "$NEW_REPO" ]; then parse_spec local file for file in $SOURCES $PATCHES; do if [ -z $(src_md5 "$file") ]; then git add $file || Exit_error err_no_source_in_repo $file else cvsignore_df `nourl $file` fi done git add $SPECFILE echo "When you are ready commit your changes and run git push origin master" else echo "You had already git repository. Push chosen branches to remote: ${REMOTE_PLD}" fi ;; "get" ) init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi get_spec parse_spec if [ -n "$NOSOURCE0" ] ; then SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'` fi get_files $SOURCES $PATCHES check_md5 $SOURCES fetch_build_requires ;; "update_md5" ) init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi get_spec parse_spec if [ -n "$NOSOURCE0" ] ; then SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'` fi update_md5 $SOURCES $PATCHES ;; "mr-proper" ) mr_proper ;; "list-sources-files" ) init_builder NOCVSSPEC="yes" DONT_PRINT_REVISION="yes" get_spec parse_spec for SAP in $SOURCES $PATCHES; do echo $SAP | awk '{gsub(/.*\//,"") ; print}' done ;; "list-sources-urls" ) init_builder >&2 NOCVSSPEC="yes" DONT_PRINT_REVISION="yes" get_spec >&2 parse_spec >&2 SAPS="$SOURCES $PATCHES" for SAP in $SAPS; do echo $SAP done ;; "list-sources-local-paths" ) init_builder NOCVSSPEC="yes" DONT_PRINT_REVISION="yes" get_spec parse_spec for SAP in $SOURCES $PATCHES; do echo $PACKAGE_DIR/$(echo $SAP | awk '{gsub(/.*\//,"") ; print }') done ;; "list-sources-distfiles-paths" ) init_builder NOCVSSPEC="yes" DONT_PRINT_REVISION="yes" get_spec parse_spec for SAP in $SOURCES $PATCHES; do if [ -n "$(src_md5 "$SAP")" ]; then distfiles_path "$SAP" fi done ;; "list-sources-distfiles" ) init_builder NOCVSSPEC="yes" DONT_PRINT_REVISION="yes" get_spec parse_spec for SAP in $SOURCES $PATCHES; do if [ -n "$(src_md5 "$SAP")" ]; then distfiles_url "$SAP" fi done ;; "list-sources-cvs" ) init_builder # NOCVSSPEC="yes" DONT_PRINT_REVISION="yes" get_spec parse_spec for SAP in $SOURCES $PATCHES; do if [ -z "$(src_md5 "$SAP")" ]; then echo $SAP | awk '{gsub(/.*\//,"") ; print}' fi done ;; "init_rpm_dir") init_rpm_dir ;; "usage" ) usage ;; "short-version" ) echo "$VERSION" ;; "version" ) echo "$VERSIONSTRING" ;; "list_pkgrev" ) init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi get_spec > /dev/null parse_spec list_pkgrev ;; esac + init_builder + '[' -n yes ']' + set -x + set -v + '[' '' '!=' yes ']' + eval rpm --define '"_cvstag' 'tld/xrdp-0.9.25.1-1"' --eval %{_topdir} rpm --define "_cvstag tld/xrdp-0.9.25.1-1" --eval %{_topdir} + rpm --define '_cvstag tld/xrdp-0.9.25.1-1' --eval %{_topdir} + TOP_DIR=/home/users/builder/rpm/packages + rpm -E '%?rpm_build_macros' + typeset 'macros_ver=2.030' + '[' -z 2.030 ']' + awk 'BEGIN{exit(2.030>=1.534)}' + REPO_DIR=/home/users/builder/rpm/packages + PACKAGE_DIR=/home/users/builder/rpm/packages/xrdp + export 'GIT_WORK_TREE=/home/users/builder/rpm/packages/xrdp' + export 'GIT_DIR=/home/users/builder/rpm/packages/xrdp/.git' + '[' -d /home/users/builder/rpm/packages/xrdp/.git ']' + '[' -z tld/xrdp-0.9.25.1-1 ']' + '[' tld/xrdp-0.9.25.1-1 '=' HEAD ']' + pwd + __PWD=/home/users/builder/rpm/packages + '[' -z xrdp.spec ']' + rpm -E '%{?_smp_mflags}' + smp_mflags=-j2 + '[' -j2 ']' + echo 'builder: SMP make flags are set to -j2' builder: SMP make flags are set to -j2 + get_spec + update_shell_title get_spec + '[' -t 2 ']' + return + '[' -n yes ']' + set -x + set -v + cd /home/users/builder/rpm/packages + basename xrdp.spec + SPECFILE=xrdp.spec + '[' '' '!=' yes ']' + '[' -z '' ']' + '[' -d /home/users/builder/rpm/packages/xrdp/.git ']' + git fetch origin + git fetch origin 'refs/notes/*:refs/notes/*' + cvsignore_df .gitignore + '[' yes '!=' yes ']' + typeset 'cvsignore=/home/users/builder/rpm/packages/xrdp/.git/info/exclude' + 2>/dev/null + awk '-vf=.gitignore' '-vc=1' '$0 == f { c = 0 } END { exit c }' /home/users/builder/rpm/packages/xrdp/.git/info/exclude + '[' -n '' -a '' '=' '' ']' + '[' yes '!=' no -a -d /home/users/builder/rpm/packages/xrdp ']' + '[' -f dropin ']' + continue + '[' -f md5 ']' + continue + '[' -f builder ']' + '[' -f /home/users/builder/rpm/packages/xrdp/builder ']' + continue + '[' -f relup.sh ']' + continue + '[' -f compile.sh ']' + continue + '[' -f repackage.sh ']' + continue + '[' -f rsync.sh ']' + continue + '[' -f pearize.sh ']' + continue + '[' -n tld/xrdp-0.9.25.1-1 ']' + get_pkgrev tld/xrdp-0.9.25.1-1 + '[' -z tld/xrdp-0.9.25.1-1 ']' + mktemp /tmp/.builder-XXXX + typeset '_tmp=/tmp/.builder-tIcL' + 2>/dev/null + rm /tmp/.builder-tIcL + >/dev/null + 2>&1 + download_wget /tmp/.builder-tIcL http://pkgrevs.tld-linux.org/get/tld/xrdp-0.9.25.1-1 + typeset 'outfile=/tmp/.builder-tIcL' 'url=http://pkgrevs.tld-linux.org/get/tld/xrdp-0.9.25.1-1' retval wget_help + '[' -z '' ']' + 2>&1 + wget --help + wget_help=$'GNU Wget 1.21.4, a non-interactive network retriever.\nUsage: wget [OPTION]... [URL]...\n\nMandatory arguments to long options are mandatory for short options too.\n\nStartup:\n -V, --version display the version of Wget and exit\n -h, --help print this help\n -b, --background go to background after startup\n -e, --execute=COMMAND execute a `.wgetrc\047-style command\n\nLogging and input file:\n -o, --output-file=FILE log messages to FILE\n -a, --append-output=FILE append messages to FILE\n -d, --debug print lots of debugging information\n -q, --quiet quiet (no output)\n -v, --verbose be verbose (this is the default)\n -nv, --no-verbose turn off verboseness, without being quiet\n --report-speed=TYPE output bandwidth as TYPE. TYPE can be bits\n -i, --input-file=FILE download URLs found in local or external FILE\n --input-metalink=FILE download files covered in local Metalink FILE\n -F, --force-html treat input file as HTML\n -B, --base=URL resolves HTML input-file links (-i -F)\n relative to URL\n --config=FILE specify config file to use\n --no-config do not read any config file\n --rejected-log=FILE log reasons for URL rejection to FILE\n\nDownload:\n -t, --tries=NUMBER set number of retries to NUMBER (0 unlimits)\n --retry-connrefused retry even if connection is refused\n --retry-on-host-error consider host errors as non-fatal, transient errors\n --retry-on-http-error=ERRORS comma-separated list of HTTP errors to retry\n -O, --output-document=FILE write documents to FILE\n -nc, --no-clobber skip downloads that would download to\n existing files (overwriting them)\n --no-netrc don\047t try to obtain credentials from .netrc\n -c, --continue resume getting a partially-downloaded file\n --start-pos=OFFSET start downloading from zero-based position OFFSET\n --progress=TYPE select progress gauge type\n --show-progress display the progress bar in any verbosity mode\n -N, --timestamping don\047t re-retrieve files unless newer than\n local\n --no-if-modified-since don\047t use conditional if-modified-since get\n requests in timestamping mode\n --no-use-server-timestamps don\047t set the local file\047s timestamp by\n the one on the server\n -S, --server-response print server response\n --spider don\047t download anything\n -T, --timeout=SECONDS set all timeout values to SECONDS\n --dns-timeout=SECS set the DNS lookup timeout to SECS\n --connect-timeout=SECS set the connect timeout to SECS\n --read-timeout=SECS set the read timeout to SECS\n -w, --wait=SECONDS wait SECONDS between retrievals\n (applies if more then 1 URL is to be retrieved)\n --waitretry=SECONDS wait 1..SECONDS between retries of a retrieval\n (applies if more then 1 URL is to be retrieved)\n --random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals\n (applies if more then 1 URL is to be retrieved)\n --no-proxy explicitly turn off proxy\n -Q, --quota=NUMBER set retrieval quota to NUMBER\n --bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host\n --limit-rate=RATE limit download rate to RATE\n --no-dns-cache disable caching DNS lookups\n --restrict-file-names=OS restrict chars in file names to ones OS allows\n --ignore-case ignore case when matching files/directories\n -4, --inet4-only connect only to IPv4 addresses\n -6, --inet6-only connect only to IPv6 addresses\n --prefer-family=FAMILY connect first to addresses of specified family,\n one of IPv6, IPv4, or none\n --user=USER set both ftp and http user to USER\n --password=PASS set both ftp and http password to PASS\n --ask-password prompt for passwords\n --use-askpass=COMMAND specify credential handler for requesting \n username and password. If no COMMAND is \n specified the WGET_ASKPASS or the SSH_ASKPASS \n environment variable is used.\n --no-iri turn off IRI support\n --local-encoding=ENC use ENC as the local encoding for IRIs\n --remote-encoding=ENC use ENC as the default remote encoding\n --unlink remove file before clobber\n --keep-badhash keep files with checksum mismatch (append .badhash)\n --metalink-index=NUMBER Metalink application/metalink4+xml metaurl ordinal NUMBER\n --metalink-over-http use Metalink metadata from HTTP response headers\n --preferred-location preferred location for Metalink resources\n --xattr turn on storage of metadata in extended file attributes\n\nDirectories:\n -nd, --no-directories don\047t create directories\n -x, --force-directories force creation of directories\n -nH, --no-host-directories don\047t create host directories\n --protocol-directories use protocol name in directories\n -P, --directory-prefix=PREFIX save files to PREFIX/..\n --cut-dirs=NUMBER ignore NUMBER remote directory components\n\nHTTP options:\n --http-user=USER set http user to USER\n --http-password=PASS set http password to PASS\n --no-cache disallow server-cached data\n --default-page=NAME change the default page name (normally\n this is \047index.html\047.)\n -E, --adjust-extension save HTML/CSS documents with proper extensions\n --ignore-length ignore \047Content-Length\047 header field\n --header=STRING insert STRING among the headers\n --compression=TYPE choose compression, one of auto, gzip and none. (default: none)\n --max-redirect maximum redirections allowed per page\n --proxy-user=USER set USER as proxy username\n --proxy-password=PASS set PASS as proxy password\n --referer=URL include \047Referer: URL\047 header in HTTP request\n --save-headers save the HTTP headers to file\n -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION\n --no-http-keep-alive disable HTTP keep-alive (persistent connections)\n --no-cookies don\047t use cookies\n --load-cookies=FILE load cookies from FILE before session\n --save-cookies=FILE save cookies to FILE after session\n --keep-session-cookies load and save session (non-permanent) cookies\n --post-data=STRING use the POST method; send STRING as the data\n --post-file=FILE use the POST method; send contents of FILE\n --method=HTTPMethod use method "HTTPMethod" in the request\n --body-data=STRING send STRING as data. --method MUST be set\n --body-file=FILE send contents of FILE. --method MUST be set\n --content-disposition honor the Content-Disposition header when\n choosing local file names (EXPERIMENTAL)\n --content-on-error output the received content on server errors\n --auth-no-challenge send Basic HTTP authentication information\n without first waiting for the server\047s\n challenge\n\nHTTPS (SSL/TLS) options:\n --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n SSLv3, TLSv1, TLSv1_1, TLSv1_2, TLSv1_3 and PFS\n --https-only only follow secure HTTPS links\n --no-check-certificate don\047t validate the server\047s certificate\n --certificate=FILE client certificate file\n --certificate-type=TYPE client certificate type, PEM or DER\n --private-key=FILE private key file\n --private-key-type=TYPE private key type, PEM or DER\n --ca-certificate=FILE file with the bundle of CAs\n --ca-directory=DIR directory where hash list of CAs is stored\n --crl-file=FILE file with bundle of CRLs\n --pinnedpubkey=FILE/HASHES Public key (PEM/DER) file, or any number\n of base64 encoded sha256 hashes preceded by\n \047sha256//\047 and separated by \047;\047, to verify\n peer against\n --random-file=FILE file with random data for seeding the SSL PRNG\n\n --ciphers=STR Set the priority string (GnuTLS) or cipher list string (OpenSSL) directly.\n Use with care. This option overrides --secure-protocol.\n The format and syntax of this string depend on the specific SSL/TLS engine.\nHSTS options:\n --no-hsts disable HSTS\n --hsts-file path of HSTS database (will override default)\n\nFTP options:\n --ftp-user=USER set ftp user to USER\n --ftp-password=PASS set ftp password to PASS\n --no-remove-listing don\047t remove \047.listing\047 files\n --no-glob turn off FTP file name globbing\n --no-passive-ftp disable the "passive" transfer mode\n --preserve-permissions preserve remote file permissions\n --retr-symlinks when recursing, get linked-to files (not dir)\n\nFTPS options:\n --ftps-implicit use implicit FTPS (default port is 990)\n --ftps-resume-ssl resume the SSL/TLS session started in the control connection when\n opening a data connection\n --ftps-clear-data-connection cipher the control channel only; all the data will be in plaintext\n --ftps-fallback-to-ftp fall back to FTP if FTPS is not supported in the target server\nWARC options:\n --warc-file=FILENAME save request/response data to a .warc.gz file\n --warc-header=STRING insert STRING into the warcinfo record\n --warc-max-size=NUMBER set maximum size of WARC files to NUMBER\n --warc-cdx write CDX index files\n --warc-dedup=FILENAME do not store records listed in this CDX file\n --no-warc-compression do not compress WARC files with GZIP\n --no-warc-digests do not calculate SHA1 digests\n --no-warc-keep-log do not store the log file in a WARC record\n --warc-tempdir=DIRECTORY location for temporary files created by the\n WARC writer\n\nRecursive download:\n -r, --recursive specify recursive download\n -l, --level=NUMBER maximum recursion depth (inf or 0 for infinite)\n --delete-after delete files locally after downloading them\n -k, --convert-links make links in downloaded HTML or CSS point to\n local files\n --convert-file-only convert the file part of the URLs only (usually known as the basename)\n --backups=N before writing file X, rotate up to N backup files\n -K, --backup-converted before converting file X, back up as X.orig\n -m, --mirror shortcut for -N -r -l inf --no-remove-listing\n -p, --page-requisites get all images, etc. needed to display HTML page\n --strict-comments turn on strict (SGML) handling of HTML comments\n\nRecursive accept/reject:\n -A, --accept=LIST comma-separated list of accepted extensions\n -R, --reject=LIST comma-separated list of rejected extensions\n --accept-regex=REGEX regex matching accepted URLs\n --reject-regex=REGEX regex matching rejected URLs\n --regex-type=TYPE regex type (posix|pcre)\n -D, --domains=LIST comma-separated list of accepted domains\n --exclude-domains=LIST comma-separated list of rejected domains\n --follow-ftp follow FTP links from HTML documents\n --follow-tags=LIST comma-separated list of followed HTML tags\n --ignore-tags=LIST comma-separated list of ignored HTML tags\n -H, --span-hosts go to foreign hosts when recursive\n -L, --relative follow relative links only\n -I, --include-directories=LIST list of allowed directories\n --trust-server-names use the name specified by the redirection\n URL\047s last component\n -X, --exclude-directories=LIST list of excluded directories\n -np, --no-parent don\047t ascend to the parent directory\n\nEmail bug reports, questions, discussions to \nand/or open issues at https://savannah.gnu.org/bugs/?func=additem&group=wget.' + echo $'GNU Wget 1.21.4, a non-interactive network retriever.\nUsage: wget [OPTION]... [URL]...\n\nMandatory arguments to long options are mandatory for short options too.\n\nStartup:\n -V, --version display the version of Wget and exit\n -h, --help print this help\n -b, --background go to background after startup\n -e, --execute=COMMAND execute a `.wgetrc\047-style command\n\nLogging and input file:\n -o, --output-file=FILE log messages to FILE\n -a, --append-output=FILE append messages to FILE\n -d, --debug print lots of debugging information\n -q, --quiet quiet (no output)\n -v, --verbose be verbose (this is the default)\n -nv, --no-verbose turn off verboseness, without being quiet\n --report-speed=TYPE output bandwidth as TYPE. TYPE can be bits\n -i, --input-file=FILE download URLs found in local or external FILE\n --input-metalink=FILE download files covered in local Metalink FILE\n -F, --force-html treat input file as HTML\n -B, --base=URL resolves HTML input-file links (-i -F)\n relative to URL\n --config=FILE specify config file to use\n --no-config do not read any config file\n --rejected-log=FILE log reasons for URL rejection to FILE\n\nDownload:\n -t, --tries=NUMBER set number of retries to NUMBER (0 unlimits)\n --retry-connrefused retry even if connection is refused\n --retry-on-host-error consider host errors as non-fatal, transient errors\n --retry-on-http-error=ERRORS comma-separated list of HTTP errors to retry\n -O, --output-document=FILE write documents to FILE\n -nc, --no-clobber skip downloads that would download to\n existing files (overwriting them)\n --no-netrc don\047t try to obtain credentials from .netrc\n -c, --continue resume getting a partially-downloaded file\n --start-pos=OFFSET start downloading from zero-based position OFFSET\n --progress=TYPE select progress gauge type\n --show-progress display the progress bar in any verbosity mode\n -N, --timestamping don\047t re-retrieve files unless newer than\n local\n --no-if-modified-since don\047t use conditional if-modified-since get\n requests in timestamping mode\n --no-use-server-timestamps don\047t set the local file\047s timestamp by\n the one on the server\n -S, --server-response print server response\n --spider don\047t download anything\n -T, --timeout=SECONDS set all timeout values to SECONDS\n --dns-timeout=SECS set the DNS lookup timeout to SECS\n --connect-timeout=SECS set the connect timeout to SECS\n --read-timeout=SECS set the read timeout to SECS\n -w, --wait=SECONDS wait SECONDS between retrievals\n (applies if more then 1 URL is to be retrieved)\n --waitretry=SECONDS wait 1..SECONDS between retries of a retrieval\n (applies if more then 1 URL is to be retrieved)\n --random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals\n (applies if more then 1 URL is to be retrieved)\n --no-proxy explicitly turn off proxy\n -Q, --quota=NUMBER set retrieval quota to NUMBER\n --bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host\n --limit-rate=RATE limit download rate to RATE\n --no-dns-cache disable caching DNS lookups\n --restrict-file-names=OS restrict chars in file names to ones OS allows\n --ignore-case ignore case when matching files/directories\n -4, --inet4-only connect only to IPv4 addresses\n -6, --inet6-only connect only to IPv6 addresses\n --prefer-family=FAMILY connect first to addresses of specified family,\n one of IPv6, IPv4, or none\n --user=USER set both ftp and http user to USER\n --password=PASS set both ftp and http password to PASS\n --ask-password prompt for passwords\n --use-askpass=COMMAND specify credential handler for requesting \n username and password. If no COMMAND is \n specified the WGET_ASKPASS or the SSH_ASKPASS \n environment variable is used.\n --no-iri turn off IRI support\n --local-encoding=ENC use ENC as the local encoding for IRIs\n --remote-encoding=ENC use ENC as the default remote encoding\n --unlink remove file before clobber\n --keep-badhash keep files with checksum mismatch (append .badhash)\n --metalink-index=NUMBER Metalink application/metalink4+xml metaurl ordinal NUMBER\n --metalink-over-http use Metalink metadata from HTTP response headers\n --preferred-location preferred location for Metalink resources\n --xattr turn on storage of metadata in extended file attributes\n\nDirectories:\n -nd, --no-directories don\047t create directories\n -x, --force-directories force creation of directories\n -nH, --no-host-directories don\047t create host directories\n --protocol-directories use protocol name in directories\n -P, --directory-prefix=PREFIX save files to PREFIX/..\n --cut-dirs=NUMBER ignore NUMBER remote directory components\n\nHTTP options:\n --http-user=USER set http user to USER\n --http-password=PASS set http password to PASS\n --no-cache disallow server-cached data\n --default-page=NAME change the default page name (normally\n this is \047index.html\047.)\n -E, --adjust-extension save HTML/CSS documents with proper extensions\n --ignore-length ignore \047Content-Length\047 header field\n --header=STRING insert STRING among the headers\n --compression=TYPE choose compression, one of auto, gzip and none. (default: none)\n --max-redirect maximum redirections allowed per page\n --proxy-user=USER set USER as proxy username\n --proxy-password=PASS set PASS as proxy password\n --referer=URL include \047Referer: URL\047 header in HTTP request\n --save-headers + grep -q -- ' --no-check-certificate ' save the HTTP headers to file\n -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION\n --no-http-keep-alive disable HTTP keep-alive (persistent connections)\n --no-cookies don\047t use cookies\n --load-cookies=FILE load cookies from FILE before session\n --save-cookies=FILE save cookies to FILE after session\n --keep-session-cookies load and save session (non-permanent) cookies\n --post-data=STRING use the POST method; send STRING as the data\n --post-file=FILE use the POST method; send contents of FILE\n --method=HTTPMethod use method "HTTPMethod" in the request\n --body-data=STRING send STRING as data. --method MUST be set\n --body-file=FILE send contents of FILE. --method MUST be set\n --content-disposition honor the Content-Disposition header when\n choosing local file names (EXPERIMENTAL)\n --content-on-error output the received content on server errors\n --auth-no-challenge send Basic HTTP authentication information\n without first waiting for the server\047s\n challenge\n\nHTTPS (SSL/TLS) options:\n --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n SSLv3, TLSv1, TLSv1_1, TLSv1_2, TLSv1_3 and PFS\n --https-only only follow secure HTTPS links\n --no-check-certificate don\047t validate the server\047s certificate\n --certificate=FILE client certificate file\n --certificate-type=TYPE client certificate type, PEM or DER\n --private-key=FILE private key file\n --private-key-type=TYPE private key type, PEM or DER\n --ca-certificate=FILE file with the bundle of CAs\n --ca-directory=DIR directory where hash list of CAs is stored\n --crl-file=FILE file with bundle of CRLs\n --pinnedpubkey=FILE/HASHES Public key (PEM/DER) file, or any number\n of base64 encoded sha256 hashes preceded by\n \047sha256//\047 and separated by \047;\047, to verify\n peer against\n --random-file=FILE file with random data for seeding the SSL PRNG\n\n --ciphers=STR Set the priority string (GnuTLS) or cipher list string (OpenSSL) directly.\n Use with care. This option overrides --secure-protocol.\n The format and syntax of this string depend on the specific SSL/TLS engine.\nHSTS options:\n --no-hsts disable HSTS\n --hsts-file path of HSTS database (will override default)\n\nFTP options:\n --ftp-user=USER set ftp user to USER\n --ftp-password=PASS set ftp password to PASS\n --no-remove-listing don\047t remove \047.listing\047 files\n --no-glob turn off FTP file name globbing\n --no-passive-ftp disable the "passive" transfer mode\n --preserve-permissions preserve remote file permissions\n --retr-symlinks when recursing, get linked-to files (not dir)\n\nFTPS options:\n --ftps-implicit use implicit FTPS (default port is 990)\n --ftps-resume-ssl resume the SSL/TLS session started in the control connection when\n opening a data connection\n --ftps-clear-data-connection cipher the control channel only; all the data will be in plaintext\n --ftps-fallback-to-ftp fall back to FTP if FTPS is not supported in the target server\nWARC options:\n --warc-file=FILENAME save request/response data to a .warc.gz file\n --warc-header=STRING insert STRING into the warcinfo record\n --warc-max-size=NUMBER set maximum size of WARC files to NUMBER\n --warc-cdx write CDX index files\n --warc-dedup=FILENAME do not store records listed in this CDX file\n --no-warc-compression do not compress WARC files with GZIP\n --no-warc-digests do not calculate SHA1 digests\n --no-warc-keep-log do not store the log file in a WARC record\n --warc-tempdir=DIRECTORY location for temporary files created by the\n WARC writer\n\nRecursive download:\n -r, --recursive specify recursive download\n -l, --level=NUMBER maximum recursion depth (inf or 0 for infinite)\n --delete-after delete files locally after downloading them\n -k, --convert-links make links in downloaded HTML or CSS point to\n local files\n --convert-file-only convert the file part of the URLs only (usually known as the basename)\n --backups=N before writing file X, rotate up to N backup files\n -K, --backup-converted before converting file X, back up as X.orig\n -m, --mirror shortcut for -N -r -l inf --no-remove-listing\n -p, --page-requisites get all images, etc. needed to display HTML page\n --strict-comments turn on strict (SGML) handling of HTML comments\n\nRecursive accept/reject:\n -A, --accept=LIST comma-separated list of accepted extensions\n -R, --reject=LIST comma-separated list of rejected extensions\n --accept-regex=REGEX regex matching accepted URLs\n --reject-regex=REGEX regex matching rejected URLs\n --regex-type=TYPE regex type (posix|pcre)\n -D, --domains=LIST comma-separated list of accepted domains\n --exclude-domains=LIST comma-separated list of rejected domains\n --follow-ftp follow FTP links from HTML documents\n --follow-tags=LIST comma-separated list of followed HTML tags\n --ignore-tags=LIST comma-separated list of ignored HTML tags\n -H, --span-hosts go to foreign hosts when recursive\n -L, --relative follow relative links only\n -I, --include-directories=LIST list of allowed directories\n --trust-server-names use the name specified by the redirection\n URL\047s last component\n -X, --exclude-directories=LIST list of excluded directories\n -np, --no-parent don\047t ascend to the parent directory\n\nEmail bug reports, questions, discussions to \nand/or open issues at https://savannah.gnu.org/bugs/?func=additem&group=wget.' + WGET_OPTS=' --no-check-certificate' + echo $'GNU Wget 1.21.4, a non-interactive network retriever.\nUsage: wget [OPTION]... [URL]...\n\nMandatory arguments to long options are mandatory for short options too.\n\nStartup:\n -V, --version display the version of Wget and exit\n -h, --help print this help\n -b, --background go to background after startup\n -e, --execute=COMMAND execute a `.wgetrc\047-style command\n\nLogging and input file:\n -o, --output-file=FILE log messages to FILE\n -a, --append-output=FILE append messages to FILE\n -d, --debug print lots of debugging information\n -q, --quiet quiet (no output)\n -v, --verbose be verbose (this is the default)\n -nv, --no-verbose turn off verboseness, without being quiet\n --report-speed=TYPE output bandwidth as TYPE. TYPE can be bits\n -i, --input-file=FILE download URLs found in local or external FILE\n --input-metalink=FILE download files covered in local Metalink FILE\n -F, --force-html treat input file as HTML\n -B, --base=URL resolves HTML input-file links (-i -F)\n relative to URL\n --config=FILE specify config file to use\n --no-config do not read any config file\n --rejected-log=FILE log reasons for URL rejection to FILE\n\nDownload:\n -t, --tries=NUMBER set number of retries to NUMBER (0 unlimits)\n --retry-connrefused retry even if connection is refused\n --retry-on-host-error consider host errors as non-fatal, transient errors\n --retry-on-http-error=ERRORS comma-separated list of HTTP errors to retry\n -O, --output-document=FILE write documents to FILE\n -nc, --no-clobber skip downloads that would download to\n existing files (overwriting them)\n --no-netrc don\047t try to obtain credentials from .netrc\n -c, --continue resume getting a partially-downloaded file\n --start-pos=OFFSET start downloading from zero-based position OFFSET\n --progress=TYPE select progress gauge type\n --show-progress display the progress bar in any verbosity mode\n -N, --timestamping don\047t re-retrieve files unless newer than\n local\n --no-if-modified-since don\047t use conditional if-modified-since get\n requests in timestamping mode\n --no-use-server-timestamps don\047t set the local file\047s timestamp by\n the one on the server\n -S, --server-response print server response\n --spider don\047t download anything\n -T, --timeout=SECONDS set all timeout values to SECONDS\n --dns-timeout=SECS set the DNS lookup timeout to SECS\n --connect-timeout=SECS set the connect timeout to SECS\n --read-timeout=SECS set the read timeout to SECS\n -w, --wait=SECONDS wait SECONDS between retrievals\n (applies if more then 1 URL is to be retrieved)\n --waitretry=SECONDS wait 1..SECONDS between retries of a retrieval\n (applies if more then 1 URL is to be retrieved)\n --random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals\n (applies if more then 1 URL is to be retrieved)\n --no-proxy explicitly turn off proxy\n -Q, --quota=NUMBER set retrieval quota to NUMBER\n --bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host\n --limit-rate=RATE limit download rate to RATE\n --no-dns-cache disable caching DNS lookups\n --restrict-file-names=OS restrict chars in file names to ones OS allows\n --ignore-case ignore case when matching files/directories\n -4, --inet4-only connect only to IPv4 addresses\n -6, --inet6-only connect only to IPv6 addresses\n --prefer-family=FAMILY connect first to addresses of specified family,\n one of IPv6, IPv4, or none\n --user=USER set both ftp and http user to USER+ grep -q -- ' --inet ' \n --password=PASS set both ftp and http password to PASS\n --ask-password prompt for passwords\n --use-askpass=COMMAND specify credential handler for requesting \n username and password. If no COMMAND is \n specified the WGET_ASKPASS or the SSH_ASKPASS \n environment variable is used.\n --no-iri turn off IRI support\n --local-encoding=ENC use ENC as the local encoding for IRIs\n --remote-encoding=ENC use ENC as the default remote encoding\n --unlink remove file before clobber\n --keep-badhash keep files with checksum mismatch (append .badhash)\n --metalink-index=NUMBER Metalink application/metalink4+xml metaurl ordinal NUMBER\n --metalink-over-http use Metalink metadata from HTTP response headers\n --preferred-location preferred location for Metalink resources\n --xattr turn on storage of metadata in extended file attributes\n\nDirectories:\n -nd, --no-directories don\047t create directories\n -x, --force-directories force creation of directories\n -nH, --no-host-directories don\047t create host directories\n --protocol-directories use protocol name in directories\n -P, --directory-prefix=PREFIX save files to PREFIX/..\n --cut-dirs=NUMBER ignore NUMBER remote directory components\n\nHTTP options:\n --http-user=USER set http user to USER\n --http-password=PASS set http password to PASS\n --no-cache disallow server-cached data\n --default-page=NAME change the default page name (normally\n this is \047index.html\047.)\n -E, --adjust-extension save HTML/CSS documents with proper extensions\n --ignore-length ignore \047Content-Length\047 header field\n --header=STRING insert STRING among the headers\n --compression=TYPE choose compression, one of auto, gzip and none. (default: none)\n --max-redirect maximum redirections allowed per page\n --proxy-user=USER set USER as proxy username\n --proxy-password=PASS set PASS as proxy password\n --referer=URL include \047Referer: URL\047 header in HTTP request\n --save-headers save the HTTP headers to file\n -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION\n --no-http-keep-alive disable HTTP keep-alive (persistent connections)\n --no-cookies don\047t use cookies\n --load-cookies=FILE load cookies from FILE before session\n --save-cookies=FILE save cookies to FILE after session\n --keep-session-cookies load and save session (non-permanent) cookies\n --post-data=STRING use the POST method; send STRING as the data\n --post-file=FILE use the POST method; send contents of FILE\n --method=HTTPMethod use method "HTTPMethod" in the request\n --body-data=STRING send STRING as data. --method MUST be set\n --body-file=FILE send contents of FILE. --method MUST be set\n --content-disposition honor the Content-Disposition header when\n choosing local file names (EXPERIMENTAL)\n --content-on-error output the received content on server errors\n --auth-no-challenge send Basic HTTP authentication information\n without first waiting for the server\047s\n challenge\n\nHTTPS (SSL/TLS) options:\n --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n SSLv3, TLSv1, TLSv1_1, TLSv1_2, TLSv1_3 and PFS\n --https-only only follow secure HTTPS links\n --no-check-certificate don\047t validate the server\047s certificate\n --certificate=FILE client certificate file\n --certificate-type=TYPE client certificate type, PEM or DER\n --private-key=FILE private key file\n --private-key-type=TYPE private key type, PEM or DER\n --ca-certificate=FILE file with the bundle of CAs\n --ca-directory=DIR directory where hash list of CAs is stored\n --crl-file=FILE file with bundle of CRLs\n --pinnedpubkey=FILE/HASHES Public key (PEM/DER) file, or any number\n of base64 encoded sha256 hashes preceded by\n \047sha256//\047 and separated by \047;\047, to verify\n peer against\n --random-file=FILE file with random data for seeding the SSL PRNG\n\n --ciphers=STR Set the priority string (GnuTLS) or cipher list string (OpenSSL) directly.\n Use with care. This option overrides --secure-protocol.\n The format and syntax of this string depend on the specific SSL/TLS engine.\nHSTS options:\n --no-hsts disable HSTS\n --hsts-file path of HSTS database (will override default)\n\nFTP options:\n --ftp-user=USER set ftp user to USER\n --ftp-password=PASS set ftp password to PASS\n --no-remove-listing don\047t remove \047.listing\047 files\n --no-glob turn off FTP file name globbing\n --no-passive-ftp disable the "passive" transfer mode\n --preserve-permissions preserve remote file permissions\n --retr-symlinks when recursing, get linked-to files (not dir)\n\nFTPS options:\n --ftps-implicit use implicit FTPS (default port is 990)\n --ftps-resume-ssl resume the SSL/TLS session started in the control connection when\n opening a data connection\n --ftps-clear-data-connection cipher the control channel only; all the data will be in plaintext\n --ftps-fallback-to-ftp fall back to FTP if FTPS is not supported in the target server\nWARC options:\n --warc-file=FILENAME save request/response data to a .warc.gz file\n --warc-header=STRING insert STRING into the warcinfo record\n --warc-max-size=NUMBER set maximum size of WARC files to NUMBER\n --warc-cdx write CDX index files\n --warc-dedup=FILENAME do not store records listed in this CDX file\n --no-warc-compression do not compress WARC files with GZIP\n --no-warc-digests do not calculate SHA1 digests\n --no-warc-keep-log do not store the log file in a WARC record\n --warc-tempdir=DIRECTORY location for temporary files created by the\n WARC writer\n\nRecursive download:\n -r, --recursive specify recursive download\n -l, --level=NUMBER maximum recursion depth (inf or 0 for infinite)\n --delete-after delete files locally after downloading them\n -k, --convert-links make links in downloaded HTML or CSS point to\n local files\n --convert-file-only convert the file part of the URLs only (usually known as the basename)\n --backups=N before writing file X, rotate up to N backup files\n -K, --backup-converted before converting file X, back up as X.orig\n -m, --mirror shortcut for -N -r -l inf --no-remove-listing\n -p, --page-requisites get all images, etc. needed to display HTML page\n --strict-comments turn on strict (SGML) handling of HTML comments\n\nRecursive accept/reject:\n -A, --accept=LIST comma-separated list of accepted extensions\n -R, --reject=LIST comma-separated list of rejected extensions\n --accept-regex=REGEX regex matching accepted URLs\n --reject-regex=REGEX regex matching rejected URLs\n --regex-type=TYPE regex type (posix|pcre)\n -D, --domains=LIST comma-separated list of accepted domains\n --exclude-domains=LIST comma-separated list of rejected domains\n --follow-ftp follow FTP links from HTML documents\n --follow-tags=LIST comma-separated list of followed HTML tags\n --ignore-tags=LIST comma-separated list of ignored HTML tags\n -H, --span-hosts go to foreign hosts when recursive\n -L, --relative follow relative links only\n -I, --include-directories=LIST list of allowed directories\n --trust-server-names use the name specified by the redirection\n URL\047s last component\n -X, --exclude-directories=LIST list of excluded directories\n -np, --no-parent don\047t ascend to the parent directory\n\nEmail bug reports, questions, discussions to \nand/or open issues at https://savannah.gnu.org/bugs/?func=additem&group=wget.' + echo $'GNU Wget 1.21.4, a non-interactive network retriever.\nUsage: wget [OPTION]... [URL]...\n\nMandatory arguments to long options are mandatory for short options too.\n\nStartup:\n -V, --version display the version of Wget and exit\n -h, --help print this help\n -b, --background go to background after startup\n -e, --execute=COMMAND execute a `.wgetrc\047-style command\n\nLogging and input file:\n -o, --output-file=FILE log messages to FILE\n -a, --append-output=FILE append messages to FILE\n -d, --debug print lots of debugging information\n -q, --quiet quiet (no output)\n -v, --verbose be verbose (this is the default)\n -nv, --no-verbose turn off verboseness, without being quiet\n --report-speed=TYPE output bandwidth as TYPE. TYPE can be bits\n -i, --input-file=FILE download URLs found in local or external FILE\n --input-metalink=FILE download files covered in local Metalink FILE\n -F, --force-html treat input file as HTML\n -B, --base=URL resolves HTML input-file links (-i -F)\n relative to URL\n --config=FILE specify config file to use\n --no-config do not read any config file\n --rejected-log=FILE log reasons for URL rejection to FILE\n\nDownload:\n -t, --tries=NUMBER set number of retries to NUMBER (0 unlimits)\n --retry-connrefused retry even if connection is refused\n --retry-on-host-error consider host errors as non-fatal, transient errors\n --retry-on-http-error=ERRORS comma-separated list of HTTP errors to retry\n -O, --output-document=FILE write documents to FILE\n -nc, --no-clobber skip downloads that would download to\n existing files (overwriting them)\n --no-netrc don\047t try to obtain credentials from .netrc\n -c, --continue resume getting a partially-downloaded file\n --start-pos=OFFSET start downloading from zero-based position OFFSET\n --progress=TYPE select progress gauge type\n --show-progress display the progress bar in any verbosity mode\n -N, --timestamping don\047t re-retrieve files unless newer than\n local\n --no-if-modified-since don\047t use conditional if-modified-since get\n requests in timestamping mode\n --no-use-server-timestamps don\047t set the local file\047s timestamp by\n the one on the server\n -S, --server-response print server response\n --spider don\047t download anything\n -T, --timeout=SECONDS set all timeout values to SECONDS\n --dns-timeout=SECS set the DNS lookup timeout to SECS\n --connect-timeout=SECS set the connect timeout to SECS\n --read-timeout=SECS set the read timeout to SECS\n -w, --wait=SECONDS wait SECONDS between retrievals\n (applies if more then 1 URL is to be retrieved)\n --waitretry=SECONDS wait 1..SECONDS between retries of a retrieval\n (applies if more then 1 URL is to be retrieved)\n --random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals\n (applies if more then 1 URL is to be retrieved)\n --no-proxy explicitly turn off proxy\n -Q, --quota=NUMBER set retrieval quota to NUMBER\n --bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host\n --limit-rate=RATE limit download rate to RATE\n --no-dns-cache disable caching DNS lookups\n --restrict-file-names=OS restrict chars in file names to ones OS allows\n --ignore-case ignore case when matching files/directories\n -4, --inet4-only connect only to IPv4 addresses\n -6, --inet6-only connect only to IPv6 addresses\n --prefer-family=FAMILY connect first to addresses of specified family,\n one of IPv6, IPv4, or none\n --user=USER set both ftp and http user to USER\n --password=PASS set both ftp and http password to PASS\n --ask-password prompt for passwords\n --use-askpass=COMMAND specify credential handler for requesting \n username and password. If no COMMAND is \n specified the WGET_ASKPASS or the SSH_ASKPASS \n environment variable is used.\n --no-iri turn off IRI support\n --local-encoding=ENC use ENC as the local encoding for IRIs\n --remote-encoding=ENC use ENC as the default remote encoding\n --unlink remove file before clobber\n --keep-badhash keep files with checksum mismatch (append .badhash)\n --metalink-index=NUMBER Metalink application/metalink4+xml metaurl ordinal NUMBER\n --metalink-over-http use Metalink metadata from HTTP response headers\n --preferred-location prefer+ grep -q -- ' --retry-connrefused ' red location for Metalink resources\n --xattr turn on storage of metadata in extended file attributes\n\nDirectories:\n -nd, --no-directories don\047t create directories\n -x, --force-directories force creation of directories\n -nH, --no-host-directories don\047t create host directories\n --protocol-directories use protocol name in directories\n -P, --directory-prefix=PREFIX save files to PREFIX/..\n --cut-dirs=NUMBER ignore NUMBER remote directory components\n\nHTTP options:\n --http-user=USER set http user to USER\n --http-password=PASS set http password to PASS\n --no-cache disallow server-cached data\n --default-page=NAME change the default page name (normally\n this is \047index.html\047.)\n -E, --adjust-extension save HTML/CSS documents with proper extensions\n --ignore-length ignore \047Content-Length\047 header field\n --header=STRING insert STRING among the headers\n --compression=TYPE choose compression, one of auto, gzip and none. (default: none)\n --max-redirect maximum redirections allowed per page\n --proxy-user=USER set USER as proxy username\n --proxy-password=PASS set PASS as proxy password\n --referer=URL include \047Referer: URL\047 header in HTTP request\n --save-headers save the HTTP headers to file\n -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION\n --no-http-keep-alive disable HTTP keep-alive (persistent connections)\n --no-cookies don\047t use cookies\n --load-cookies=FILE load cookies from FILE before session\n --save-cookies=FILE save cookies to FILE after session\n --keep-session-cookies load and save session (non-permanent) cookies\n --post-data=STRING use the POST method; send STRING as the data\n --post-file=FILE use the POST method; send contents of FILE\n --method=HTTPMethod use method "HTTPMethod" in the request\n --body-data=STRING send STRING as data. --method MUST be set\n --body-file=FILE send contents of FILE. --method MUST be set\n --content-disposition honor the Content-Disposition header when\n choosing local file names (EXPERIMENTAL)\n --content-on-error output the received content on server errors\n --auth-no-challenge send Basic HTTP authentication information\n without first waiting for the server\047s\n challenge\n\nHTTPS (SSL/TLS) options:\n --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n SSLv3, TLSv1, TLSv1_1, TLSv1_2, TLSv1_3 and PFS\n --https-only only follow secure HTTPS links\n --no-check-certificate don\047t validate the server\047s certificate\n --certificate=FILE client certificate file\n --certificate-type=TYPE client certificate type, PEM or DER\n --private-key=FILE private key file\n --private-key-type=TYPE private key type, PEM or DER\n --ca-certificate=FILE file with the bundle of CAs\n --ca-directory=DIR directory where hash list of CAs is stored\n --crl-file=FILE file with bundle of CRLs\n --pinnedpubkey=FILE/HASHES Public key (PEM/DER) file, or any number\n of base64 encoded sha256 hashes preceded by\n \047sha256//\047 and separated by \047;\047, to verify\n peer against\n --random-file=FILE file with random data for seeding the SSL PRNG\n\n --ciphers=STR Set the priority string (GnuTLS) or cipher list string (OpenSSL) directly.\n Use with care. This option overrides --secure-protocol.\n The format and syntax of this string depend on the specific SSL/TLS engine.\nHSTS options:\n --no-hsts disable HSTS\n --hsts-file path of HSTS database (will override default)\n\nFTP options:\n --ftp-user=USER set ftp user to USER\n --ftp-password=PASS set ftp password to PASS\n --no-remove-listing don\047t remove \047.listing\047 files\n --no-glob turn off FTP file name globbing\n --no-passive-ftp disable the "passive" transfer mode\n --preserve-permissions preserve remote file permissions\n --retr-symlinks when recursing, get linked-to files (not dir)\n\nFTPS options:\n --ftps-implicit use implicit FTPS (default port is 990)\n --ftps-resume-ssl resume the SSL/TLS session started in the control connection when\n opening a data connection\n --ftps-clear-data-connection cipher the control channel only; all the data will be in plaintext\n --ftps-fallback-to-ftp fall back to FTP if FTPS is not supported in the target server\nWARC options:\n --warc-file=FILENAME save request/response data to a .warc.gz file\n --warc-header=STRING insert STRING into the warcinfo record\n --warc-max-size=NUMBER set maximum size of WARC files to NUMBER\n --warc-cdx write CDX index files\n --warc-dedup=FILENAME do not store records listed in this CDX file\n --no-warc-compression do not compress WARC files with GZIP\n --no-warc-digests do not calculate SHA1 digests\n --no-warc-keep-log do not store the log file in a WARC record\n --warc-tempdir=DIRECTORY location for temporary files created by the\n WARC writer\n\nRecursive download:\n -r, --recursive specify recursive download\n -l, --level=NUMBER maximum recursion depth (inf or 0 for infinite)\n --delete-after delete files locally after downloading them\n -k, --convert-links make links in downloaded HTML or CSS point to\n local files\n --convert-file-only convert the file part of the URLs only (usually known as the basename)\n --backups=N before writing file X, rotate up to N backup files\n -K, --backup-converted before converting file X, back up as X.orig\n -m, --mirror shortcut for -N -r -l inf --no-remove-listing\n -p, --page-requisites get all images, etc. needed to display HTML page\n --strict-comments turn on strict (SGML) handling of HTML comments\n\nRecursive accept/reject:\n -A, --accept=LIST comma-separated list of accepted extensions\n -R, --reject=LIST comma-separated list of rejected extensions\n --accept-regex=REGEX regex matching accepted URLs\n --reject-regex=REGEX regex matching rejected URLs\n --regex-type=TYPE regex type (posix|pcre)\n -D, --domains=LIST comma-separated list of accepted domains\n --exclude-domains=LIST comma-separated list of rejected domains\n --follow-ftp follow FTP links from HTML documents\n --follow-tags=LIST comma-separated list of followed HTML tags\n --ignore-tags=LIST comma-separated list of ignored HTML tags\n -H, --span-hosts go to foreign hosts when recursive\n -L, --relative follow relative links only\n -I, --include-directories=LIST list of allowed directories\n --trust-server-names use the name specified by the redirection\n URL\047s last component\n -X, --exclude-directories=LIST list of excluded directories\n -np, --no-parent don\047t ascend to the parent directory\n\nEmail bug reports, questions, discussions to \nand/or open issues at https://savannah.gnu.org/bugs/?func=additem&group=wget.' + WGET_OPTS=' --no-check-certificate --retry-connrefused' + echo $'GNU Wget 1.21.4, a non-interactive network retriever.\nUsage: wget [OPTION]... [URL]...\n\nMandatory arguments to long options are mandatory for short options too.\n\nStartup:\n -V, --version display the version of Wget and exit\n -h, --help print this help\n -b, --background go to background after startup\n -e, --execute=COMMAND execute a `.wgetrc\047-style command\n\nLogging and input file:\n -o, --output-file=FILE log messages to FILE\n -a, --append-output=FILE append messages to FILE\n -d, --debug print lots of debugging information\n -q, --quiet quiet (no output)\n -v, --verbose be verbose (this is the default)\n -nv, --no-verbose turn off verboseness, without being quiet\n --report-speed=TYPE output bandwidth as TYPE. TYPE can be bits\n -i, --input-file=FILE download URLs found in local or external FILE\n --input-metalink=FILE download files covered in local Metalink FILE\n -F, --force-html treat input file as HTML\n -B, --base=URL resolves HTML input-file links (-i -F)\n relative to URL\n --config=FILE specify config file to use\n --no-config do not read any config file\n --rejected-log=FILE log reasons for URL rejection to FILE\n\nDownload:\n -t, --tries=NUMBER set number of retries to NUMBER (0 unlimits)\n --retry-connrefused retry even if connection is refused\n --retry-on-host-error consider host errors as non-fatal, transient errors\n --retry-on-http-error=ERRORS comma-separated list of HTTP errors to retry\n -O, --output-document=FILE write documents to FILE\n -nc, --no-clobber skip downloads that would download to\n existing files (overwriting them)\n --no-netrc don\047t try to obtain credentials from .netrc\n -c, --continue resume getting a partially-downloaded file\n --start-pos=OFFSET start downloading from zero-based position OFFSET\n --progress=TYPE select progress gauge type\n --show-progress display the progress bar in any verbosity mode\n -N, --timestamping don\047t re-retrieve files unless newer than\n local\n --no-if-modified-since don\047t use conditional if-modified-since get\n requests in timestamping mode\n --no-use-server-timestamps don\047t set the local file\047s timestamp by\n the one on the server\n -S, --server-response print server response\n --spider don\047t download anything\n -T, --timeout=SECONDS set all timeout values to SECONDS\n --dns-timeout=SECS set the DNS lookup timeout to SECS\n --connect-timeout=SECS set the connect timeout to SECS\n --read-timeout=SECS set the read timeout to SECS\n -w, --wait=SECONDS wait SECONDS between retrievals\n (applies if more then 1 URL is to be retrieved)\n --waitretry=SECONDS wait 1..SECONDS between retries of a retrieval\n (applies if more then 1 URL is to be retrieved)\n --random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals\n (applies if more then 1 URL is to be retrieved)\n --no-proxy explicitly turn off proxy\n -Q, --quota=NUMBER set retrieval quota to NUMBER\n --bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host\n --limit-rate=RATE limit download rate to RATE\n --no-dns-cache disable caching DNS lookups\n --restrict-file-names=OS restrict chars in file names to ones OS allows\n --ignore-case ignore case when matching files/directories\n -4, --inet4-only connect only to IPv4 addresses\n -6, --inet6-only connect only to IPv6 addresses\n --prefer-family=FAMILY connect first to addresses of specified family,\n one of IPv6, IPv4, or none\n --user=USER set both ftp and http user to USER\n --password=PASS set both ftp and http password to PASS\n --ask-password prompt for passwords\n --use-askpass=COMMAND specify credential handler for requesting \n username and password. If no COMMAND is \n specified the WGET_ASKPASS or the SSH_ASKPASS \n environment variable is used.\n --no-iri turn off IRI support\n --local-encoding=ENC use ENC as the local encoding for IRIs\n --remote-encoding=ENC use ENC as the default remote encoding\n --unlink remove file before clobber\n --keep-badhash keep files with checksum mismatch (append .badhash)\n --metalink-index=NUMBER Metalink application/metalink4+xml metaurl ordinal NUMBER\n --metalink-over-http use Metalink metadata from HTTP response headers\n --preferred-location preferred location for Metalink resources\n --xattr turn on storage of metadata in extended file attributes\n\nDirectories:\n -nd, --no-directories don\047t create directories\n -x, --force-directories force creation of directories\n -nH, --no-host-directories don\047t create host directories\n --protocol-directories use protocol name in directories\n -P, --directory-prefix=PREFIX save files to PREFIX/..\n --cut-dirs=NUMBER igno+ grep -q -- ' --no-iri ' re NUMBER remote directory components\n\nHTTP options:\n --http-user=USER set http user to USER\n --http-password=PASS set http password to PASS\n --no-cache disallow server-cached data\n --default-page=NAME change the default page name (normally\n this is \047index.html\047.)\n -E, --adjust-extension save HTML/CSS documents with proper extensions\n --ignore-length ignore \047Content-Length\047 header field\n --header=STRING insert STRING among the headers\n --compression=TYPE choose compression, one of auto, gzip and none. (default: none)\n --max-redirect maximum redirections allowed per page\n --proxy-user=USER set USER as proxy username\n --proxy-password=PASS set PASS as proxy password\n --referer=URL include \047Referer: URL\047 header in HTTP request\n --save-headers save the HTTP headers to file\n -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION\n --no-http-keep-alive disable HTTP keep-alive (persistent connections)\n --no-cookies don\047t use cookies\n --load-cookies=FILE load cookies from FILE before session\n --save-cookies=FILE save cookies to FILE after session\n --keep-session-cookies load and save session (non-permanent) cookies\n --post-data=STRING use the POST method; send STRING as the data\n --post-file=FILE use the POST method; send contents of FILE\n --method=HTTPMethod use method "HTTPMethod" in the request\n --body-data=STRING send STRING as data. --method MUST be set\n --body-file=FILE send contents of FILE. --method MUST be set\n --content-disposition honor the Content-Disposition header when\n choosing local file names (EXPERIMENTAL)\n --content-on-error output the received content on server errors\n --auth-no-challenge send Basic HTTP authentication information\n without first waiting for the server\047s\n challenge\n\nHTTPS (SSL/TLS) options:\n --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n SSLv3, TLSv1, TLSv1_1, TLSv1_2, TLSv1_3 and PFS\n --https-only only follow secure HTTPS links\n --no-check-certificate don\047t validate the server\047s certificate\n --certificate=FILE client certificate file\n --certificate-type=TYPE client certificate type, PEM or DER\n --private-key=FILE private key file\n --private-key-type=TYPE private key type, PEM or DER\n --ca-certificate=FILE file with the bundle of CAs\n --ca-directory=DIR directory where hash list of CAs is stored\n --crl-file=FILE file with bundle of CRLs\n --pinnedpubkey=FILE/HASHES Public key (PEM/DER) file, or any number\n of base64 encoded sha256 hashes preceded by\n \047sha256//\047 and separated by \047;\047, to verify\n peer against\n --random-file=FILE file with random data for seeding the SSL PRNG\n\n --ciphers=STR Set the priority string (GnuTLS) or cipher list string (OpenSSL) directly.\n Use with care. This option overrides --secure-protocol.\n The format and syntax of this string depend on the specific SSL/TLS engine.\nHSTS options:\n --no-hsts disable HSTS\n --hsts-file path of HSTS database (will override default)\n\nFTP options:\n --ftp-user=USER set ftp user to USER\n --ftp-password=PASS set ftp password to PASS\n --no-remove-listing don\047t remove \047.listing\047 files\n --no-glob turn off FTP file name globbing\n --no-passive-ftp disable the "passive" transfer mode\n --preserve-permissions preserve remote file permissions\n --retr-symlinks when recursing, get linked-to files (not dir)\n\nFTPS options:\n --ftps-implicit use implicit FTPS (default port is 990)\n --ftps-resume-ssl resume the SSL/TLS session started in the control connection when\n opening a data connection\n --ftps-clear-data-connection cipher the control channel only; all the data will be in plaintext\n --ftps-fallback-to-ftp fall back to FTP if FTPS is not supported in the target server\nWARC options:\n --warc-file=FILENAME save request/response data to a .warc.gz file\n --warc-header=STRING insert STRING into the warcinfo record\n --warc-max-size=NUMBER set maximum size of WARC files to NUMBER\n --warc-cdx write CDX index files\n --warc-dedup=FILENAME do not store records listed in this CDX file\n --no-warc-compression do not compress WARC files with GZIP\n --no-warc-digests do not calculate SHA1 digests\n --no-warc-keep-log do not store the log file in a WARC record\n --warc-tempdir=DIRECTORY location for temporary files created by the\n WARC writer\n\nRecursive download:\n -r, --recursive specify recursive download\n -l, --level=NUMBER maximum recursion depth (inf or 0 for infinite)\n --delete-after delete files locally after downloading them\n -k, --convert-links make links in downloaded HTML or CSS point to\n local files\n --convert-file-only convert the file part of the URLs only (usually known as the basename)\n --backups=N before writing file X, rotate up to N backup files\n -K, --backup-converted before converting file X, back up as X.orig\n -m, --mirror shortcut for -N -r -l inf --no-remove-listing\n -p, --page-requisites get all images, etc. needed to display HTML page\n --strict-comments turn on strict (SGML) handling of HTML comments\n\nRecursive accept/reject:\n -A, --accept=LIST comma-separated list of accepted extensions\n -R, --reject=LIST comma-separated list of rejected extensions\n --accept-regex=REGEX regex matching accepted URLs\n --reject-regex=REGEX regex matching rejected URLs\n --regex-type=TYPE regex type (posix|pcre)\n -D, --domains=LIST comma-separated list of accepted domains\n --exclude-domains=LIST comma-separated list of rejected domains\n --follow-ftp follow FTP links from HTML documents\n --follow-tags=LIST comma-separated list of followed HTML tags\n --ignore-tags=LIST comma-separated list of ignored HTML tags\n -H, --span-hosts go to foreign hosts when recursive\n -L, --relative follow relative links only\n -I, --include-directories=LIST list of allowed directories\n --trust-server-names use the name specified by the redirection\n URL\047s last component\n -X, --exclude-directories=LIST list of excluded directories\n -np, --no-parent don\047t ascend to the parent directory\n\nEmail bug reports, questions, discussions to \nand/or open issues at https://savannah.gnu.org/bugs/?func=additem&group=wget.' + WGET_OPTS=' --no-check-certificate --retry-connrefused --no-iri' + WGET_OPTS='-c -nd -t0 --no-check-certificate --retry-connrefused --no-iri --user-agent=TLD/Builder(v0.35) --passive-ftp' + WGET_OPTS_SET=1 + wget -c -nd -t0 --no-check-certificate --retry-connrefused --no-iri '--user-agent=TLD/Builder(v0.35)' --passive-ftp -O /tmp/.builder-tIcL http://pkgrevs.tld-linux.org/get/tld/xrdp-0.9.25.1-1 + retval=0 + '[' 0 -ne 0 ']' + return 0 + cat /tmp/.builder-tIcL + typeset 'result=6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74' + 2>/dev/null + rm /tmp/.builder-tIcL + echo -n 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 + typeset '_rev=6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74' + echo 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 + grep -q -E '^ERROR$' + CVSTAG=6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 + >/dev/null + git rev-parse --verify -q 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 + git rev-parse 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 + git rev-parse HEAD + '[' 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 '!=' 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 ']' + git rev-parse 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 + git rev-parse HEAD + '[' 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 '!=' 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 ']' + git merge --ff-only @{u} Already up to date. + >/dev/null + git symbolic-ref -q HEAD + '[' '' '!=' yes ']' + '[' -n '' ']' + '[' ! -f /home/users/builder/rpm/packages/xrdp/xrdp.spec ']' + '[' no '=' yes -a -n xrdp.spec ']' + unset OPTIONS + '[' -n '' ']' + grep -E -m 1 '^#.*Revision:.*Date' /home/users/builder/rpm/packages/xrdp/xrdp.spec + set_spec_target + '[' -n xrdp.spec ']' + '[' -z i686-linux ']' + parse_spec + update_shell_title 'parsing specfile' + '[' -t 2 ']' + return + '[' -n yes ']' + set -x + set -v + get_icons + update_shell_title 'get icons' + '[' -t 2 ']' + return + awk '/^Icon:/ {print $2}' /home/users/builder/rpm/packages/xrdp/xrdp.spec + ICONS='' + '[' -z '' ']' + return + cd /home/users/builder/rpm/packages/xrdp + cache_rpm_dump '' + typeset SPEC_PATH + '[' -n yes ']' + set -x + set -v + '[' ! -z '' ']' + SPEC_PATH=/home/users/builder/rpm/packages/xrdp/xrdp.spec + '[' -x /usr/bin/rpm-specdump ']' + update_shell_title 'cache_rpm_dump using rpm-specdump command' + '[' -t 2 ']' + return + eval rpm-specdump --target i686-linux --define \''_specdir' '/home/users/builder/rpm/packages/xrdp'\' --define \''_sourcedir' '/home/users/builder/rpm/packages/xrdp'\' /home/users/builder/rpm/packages/xrdp/xrdp.spec rpm-specdump --target i686-linux --define '_specdir /home/users/builder/rpm/packages/xrdp' --define '_sourcedir /home/users/builder/rpm/packages/xrdp' /home/users/builder/rpm/packages/xrdp/xrdp.spec + rpm-specdump --target i686-linux --define '_specdir /home/users/builder/rpm/packages/xrdp' --define '_sourcedir /home/users/builder/rpm/packages/xrdp' /home/users/builder/rpm/packages/xrdp/xrdp.spec + rpm_dump_cache=$'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + update_shell_title 'cache_rpm_dump: OK!' + '[' -t 2 ']' + return + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -qEi ':.*nosource.*1' + '[' '' '!=' yes ']' + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + awk '$2 ~ /^SOURCEURL[0-9]+/ {print substr($2, length("SOURCEURL") + 1), $3}' + LC_ALL=C sort -n + awk '{print $2}' + SOURCES=$'https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nxrdp.init\nxrdp.pamd\nxrdp.README.TLD\nxrdp.README.TLD.pl\nstartwm.sh' + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + awk '$2 ~ /^PATCHURL[0-9]+/ {print substr($2, length("PATCHURL") + 1), $3}' + LC_ALL=C sort -n + awk '{print $2}' + PATCHES=$'config.patch\nquiet.patch\nx32.patch' + awk '/^Icon:/ {print $2}' xrdp.spec + ICONS='' + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + awk '$2 == "PACKAGE_NAME" { print $3; exit}' + PACKAGE_NAME=xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + awk '$2 == "PACKAGE_VERSION" { print $3; exit}' + PACKAGE_VERSION=0.9.25.1 + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + awk '$2 == "PACKAGE_RELEASE" { print $3; exit}' + PACKAGE_RELEASE=1 + '[' xrdp '!=' xrdp ']' + '[' -n 1 ']' + nourl https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz xrdp.init xrdp.pamd xrdp.README.TLD xrdp.README.TLD.pl startwm.sh + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz xrdp.init xrdp.pamd xrdp.README.TLD xrdp.README.TLD.pl startwm.sh + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + echo '- Sources : xrdp-0.9.25.1.tar.gz xrdp.init xrdp.pamd xrdp.README.TLD xrdp.README.TLD.pl startwm.sh' - Sources : xrdp-0.9.25.1.tar.gz xrdp.init xrdp.pamd xrdp.README.TLD xrdp.README.TLD.pl startwm.sh + '[' -n $'config.patch\nquiet.patch\nx32.patch' ']' + nourl config.patch quiet.patch x32.patch + echo config.patch quiet.patch x32.patch + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + echo '- Patches : config.patch quiet.patch x32.patch' - Patches : config.patch quiet.patch x32.patch + '[' -n '' ']' + echo '- Icon : *no package icon*' - Icon : *no package icon* + echo '- Name : xrdp' - Name : xrdp + echo '- Version : 0.9.25.1' - Version : 0.9.25.1 + echo '- Release : 1' - Release : 1 + update_shell_title 'parse_spec: OK!' + '[' -t 2 ']' + return + set_bconds_values + update_shell_title 'set bcond values' + '[' -t 2 ']' + return + AVAIL_BCONDS_WITHOUT='' + AVAIL_BCONDS_WITH='' + grep -Eq '^# *_with' xrdp.spec + grep -q ^%bcond xrdp.spec + return + display_bconds + '[' '' -o '' ']' + display_branches + echo -n 'Available branches: ' Available branches: + 2>/dev/null + git branch -r + grep '^ origin' + grep -v origin/HEAD + sed 's#^ *origin/##' + xargs master + '[' build-source '!=' build-source ']' + fetch_build_requires + '[' '' '!=' yes ']' + return + '[' '' '=' yes ']' + '[' -n '' ']' + try_upgrade + '[' -z '' ']' + return 0 + get_files https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz xrdp.init xrdp.pamd xrdp.README.TLD xrdp.README.TLD.pl startwm.sh config.patch quiet.patch x32.patch + update_shell_title get_files + '[' -t 2 ']' + return + '[' -n yes ']' + set -x + set -v + '[' 9 -gt 0 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset 'nc=0' + typeset 'get_files_cvs=' + nc=1 + typeset 'cvsup=0' + SHELL_TITLE_PREFIX='get_files[1/9]' + update_shell_title https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + '[' -t 2 ']' + return + nourl https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + typeset 'fp=xrdp-0.9.25.1.tar.gz' + '[' no '=' yes ']' + FROM_DISTFILES=0 + src_md5 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + '[' '' '=' yes ']' + src_no https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + typeset 'file=https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz' + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='https://github\.com/neutrinolabs/xrdp/releases/download/v0\.9\.25\.1/xrdp-0\.9\.25\.1\.tar\.gz' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*https://github\\.com/neutrinolabs/xrdp/releases/download/v0\\.9\\.25\\.1/xrdp-0\\.9\\.25\\.1\\.tar\\.gz[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Source0 + '[' -z Source0 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source0-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5=$'\tf30ad85ce78c8542d4f7b03c28c8815f' + '[' -n $'\tf30ad85ce78c8542d4f7b03c28c8815f' ']' + echo f30ad85ce78c8542d4f7b03c28c8815f + typeset 'srcmd5=f30ad85ce78c8542d4f7b03c28c8815f' + '[' ! -f xrdp-0.9.25.1.tar.gz ']' + '[' yes '=' yes ']' + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + grep -vE '(http|ftp|https|cvs|svn)://' + grep -qE '\.(gz|bz2)$]' + target=xrdp-0.9.25.1.tar.gz + '[' -z '' ']' + '[' -n f30ad85ce78c8542d4f7b03c28c8815f ']' + good_md5 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + src_md5 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + '[' '' '=' yes ']' + src_no https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + typeset 'file=https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz' + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='https://github\.com/neutrinolabs/xrdp/releases/download/v0\.9\.25\.1/xrdp-0\.9\.25\.1\.tar\.gz' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*https://github\\.com/neutrinolabs/xrdp/releases/download/v0\\.9\\.25\\.1/xrdp-0\\.9\\.25\\.1\\.tar\\.gz[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Source0 + '[' -z Source0 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source0-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5=$'\tf30ad85ce78c8542d4f7b03c28c8815f' + '[' -n $'\tf30ad85ce78c8542d4f7b03c28c8815f' ']' + echo f30ad85ce78c8542d4f7b03c28c8815f + md5=f30ad85ce78c8542d4f7b03c28c8815f + '[' f30ad85ce78c8542d4f7b03c28c8815f '=' '' ']' + sed -e 's/ .*//' + nourl https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + md5sum xrdp-0.9.25.1.tar.gz + '[' f30ad85ce78c8542d4f7b03c28c8815f '=' f30ad85ce78c8542d4f7b03c28c8815f ']' + good_size https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + nourl https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find xrdp-0.9.25.1.tar.gz -printf %s + size=2048677 + '[' -n 2048677 -a 2048677 -gt 0 ']' + echo 'xrdp-0.9.25.1.tar.gz having proper md5sum already exists' xrdp-0.9.25.1.tar.gz having proper md5sum already exists + continue + nc=2 + typeset 'cvsup=0' + SHELL_TITLE_PREFIX='get_files[2/9]' + update_shell_title xrdp.init + '[' -t 2 ']' + return + nourl xrdp.init + echo xrdp.init + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + typeset 'fp=xrdp.init' + '[' no '=' yes ']' + FROM_DISTFILES=0 + src_md5 xrdp.init + '[' '' '=' yes ']' + src_no xrdp.init + typeset 'file=xrdp.init' + echo xrdp.init + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.init' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.init[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Source1 + '[' -z Source1 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source1-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource1)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource1-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source1$' xrdp.spec + '[' -n '' -a -n '' ']' + typeset 'srcmd5=' + '[' ! -f xrdp.init ']' + '[' yes '=' yes ']' + echo xrdp.init + grep -vE '(http|ftp|https|cvs|svn)://' + grep -qE '\.(gz|bz2)$]' + target=xrdp.init + '[' -z '' ']' + '[' -n '' ']' + '[' -z '' ']' + '[' ! -f xrdp.init -o -n '' ']' + '[' 0 '=' 1 ']' + '[' ! -f xrdp.init -a yes '!=' no ']' + good_md5 xrdp.init + src_md5 xrdp.init + '[' '' '=' yes ']' + src_no xrdp.init + typeset 'file=xrdp.init' + echo xrdp.init + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.init' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.init[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Source1 + '[' -z Source1 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source1-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource1)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource1-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source1$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size xrdp.init + nourl xrdp.init + echo xrdp.init + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find xrdp.init -printf %s + size=1739 + '[' -n 1739 -a 1739 -gt 0 ']' + : + nc=3 + typeset 'cvsup=0' + SHELL_TITLE_PREFIX='get_files[3/9]' + update_shell_title xrdp.pamd + '[' -t 2 ']' + return + nourl xrdp.pamd + echo xrdp.pamd + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + typeset 'fp=xrdp.pamd' + '[' no '=' yes ']' + FROM_DISTFILES=0 + src_md5 xrdp.pamd + '[' '' '=' yes ']' + src_no xrdp.pamd + typeset 'file=xrdp.pamd' + echo xrdp.pamd + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.pamd' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.pamd[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Source2 + '[' -z Source2 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source2-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource2)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource2-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source2$' xrdp.spec + '[' -n '' -a -n '' ']' + typeset 'srcmd5=' + '[' ! -f xrdp.pamd ']' + '[' yes '=' yes ']' + echo xrdp.pamd + grep -vE '(http|ftp|https|cvs|svn)://' + grep -qE '\.(gz|bz2)$]' + target=xrdp.pamd + '[' -z '' ']' + '[' -n '' ']' + '[' -z '' ']' + '[' ! -f xrdp.pamd -o -n '' ']' + '[' 0 '=' 1 ']' + '[' ! -f xrdp.pamd -a yes '!=' no ']' + good_md5 xrdp.pamd + src_md5 xrdp.pamd + '[' '' '=' yes ']' + src_no xrdp.pamd + typeset 'file=xrdp.pamd' + echo xrdp.pamd + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.pamd' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.pamd[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Source2 + '[' -z Source2 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source2-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource2)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource2-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source2$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size xrdp.pamd + nourl xrdp.pamd + echo xrdp.pamd + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find xrdp.pamd -printf %s + size=305 + '[' -n 305 -a 305 -gt 0 ']' + : + nc=4 + typeset 'cvsup=0' + SHELL_TITLE_PREFIX='get_files[4/9]' + update_shell_title xrdp.README.TLD + '[' -t 2 ']' + return + nourl xrdp.README.TLD + echo xrdp.README.TLD + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + typeset 'fp=xrdp.README.TLD' + '[' no '=' yes ']' + FROM_DISTFILES=0 + src_md5 xrdp.README.TLD + '[' '' '=' yes ']' + src_no xrdp.README.TLD + typeset 'file=xrdp.README.TLD' + echo xrdp.README.TLD + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.README\.TLD' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.README\\.TLD[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Source3 + '[' -z Source3 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source3-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource3)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource3-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source3$' xrdp.spec + '[' -n '' -a -n '' ']' + typeset 'srcmd5=' + '[' ! -f xrdp.README.TLD ']' + '[' yes '=' yes ']' + echo xrdp.README.TLD + grep -vE '(http|ftp|https|cvs|svn)://' + grep -qE '\.(gz|bz2)$]' + target=xrdp.README.TLD + '[' -z '' ']' + '[' -n '' ']' + '[' -z '' ']' + '[' ! -f xrdp.README.TLD -o -n '' ']' + '[' 0 '=' 1 ']' + '[' ! -f xrdp.README.TLD -a yes '!=' no ']' + good_md5 xrdp.README.TLD + src_md5 xrdp.README.TLD + '[' '' '=' yes ']' + src_no xrdp.README.TLD + typeset 'file=xrdp.README.TLD' + echo xrdp.README.TLD + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.README\.TLD' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.README\\.TLD[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Source3 + '[' -z Source3 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source3-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource3)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource3-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source3$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size xrdp.README.TLD + nourl xrdp.README.TLD + echo xrdp.README.TLD + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find xrdp.README.TLD -printf %s + size=454 + '[' -n 454 -a 454 -gt 0 ']' + : + nc=5 + typeset 'cvsup=0' + SHELL_TITLE_PREFIX='get_files[5/9]' + update_shell_title xrdp.README.TLD.pl + '[' -t 2 ']' + return + nourl xrdp.README.TLD.pl + echo xrdp.README.TLD.pl + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + typeset 'fp=xrdp.README.TLD.pl' + '[' no '=' yes ']' + FROM_DISTFILES=0 + src_md5 xrdp.README.TLD.pl + '[' '' '=' yes ']' + src_no xrdp.README.TLD.pl + typeset 'file=xrdp.README.TLD.pl' + echo xrdp.README.TLD.pl + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.README\.TLD\.pl' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.README\\.TLD\\.pl[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Source4 + '[' -z Source4 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source4-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource4)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource4-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source4$' xrdp.spec + '[' -n '' -a -n '' ']' + typeset 'srcmd5=' + '[' ! -f xrdp.README.TLD.pl ']' + '[' yes '=' yes ']' + echo xrdp.README.TLD.pl + grep -qE '\.(gz|bz2)$]' + grep -vE '(http|ftp|https|cvs|svn)://' + target=xrdp.README.TLD.pl + '[' -z '' ']' + '[' -n '' ']' + '[' -z '' ']' + '[' ! -f xrdp.README.TLD.pl -o -n '' ']' + '[' 0 '=' 1 ']' + '[' ! -f xrdp.README.TLD.pl -a yes '!=' no ']' + good_md5 xrdp.README.TLD.pl + src_md5 xrdp.README.TLD.pl + '[' '' '=' yes ']' + src_no xrdp.README.TLD.pl + typeset 'file=xrdp.README.TLD.pl' + echo xrdp.README.TLD.pl + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.README\.TLD\.pl' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.README\\.TLD\\.pl[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Source4 + '[' -z Source4 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source4-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource4)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource4-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source4$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size xrdp.README.TLD.pl + nourl xrdp.README.TLD.pl + echo xrdp.README.TLD.pl + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find xrdp.README.TLD.pl -printf %s + size=508 + '[' -n 508 -a 508 -gt 0 ']' + : + nc=6 + typeset 'cvsup=0' + SHELL_TITLE_PREFIX='get_files[6/9]' + update_shell_title startwm.sh + '[' -t 2 ']' + return + nourl startwm.sh + echo startwm.sh + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + typeset 'fp=startwm.sh' + '[' no '=' yes ']' + FROM_DISTFILES=0 + src_md5 startwm.sh + '[' '' '=' yes ']' + src_no startwm.sh + typeset 'file=startwm.sh' + echo startwm.sh + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='startwm\.sh' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*startwm\\.sh[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Source5 + '[' -z Source5 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source5-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource5)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource5-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source5$' xrdp.spec + '[' -n '' -a -n '' ']' + typeset 'srcmd5=' + '[' ! -f startwm.sh ']' + '[' yes '=' yes ']' + echo startwm.sh + grep -vE '(http|ftp|https|cvs|svn)://' + grep -qE '\.(gz|bz2)$]' + target=startwm.sh + '[' -z '' ']' + '[' -n '' ']' + '[' -z '' ']' + '[' ! -f startwm.sh -o -n '' ']' + '[' 0 '=' 1 ']' + '[' ! -f startwm.sh -a yes '!=' no ']' + good_md5 startwm.sh + src_md5 startwm.sh + '[' '' '=' yes ']' + src_no startwm.sh + typeset 'file=startwm.sh' + echo startwm.sh + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='startwm\.sh' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*startwm\\.sh[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Source5 + '[' -z Source5 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source5-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource5)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource5-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source5$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size startwm.sh + nourl startwm.sh + echo startwm.sh + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find startwm.sh -printf %s + size=37 + '[' -n 37 -a 37 -gt 0 ']' + : + nc=7 + typeset 'cvsup=0' + SHELL_TITLE_PREFIX='get_files[7/9]' + update_shell_title config.patch + '[' -t 2 ']' + return + nourl config.patch + echo config.patch + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + typeset 'fp=config.patch' + '[' no '=' yes ']' + FROM_DISTFILES=0 + src_md5 config.patch + '[' '' '=' yes ']' + src_no config.patch + typeset 'file=config.patch' + echo config.patch + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='config\.patch' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*config\\.patch[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Patch0 + '[' -z Patch0 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Patch0-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCEPatch0)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoPatch0-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Patch0$' xrdp.spec + '[' -n '' -a -n '' ']' + typeset 'srcmd5=' + '[' ! -f config.patch ']' + '[' yes '=' yes ']' + echo config.patch + grep -vE '(http|ftp|https|cvs|svn)://' + grep -qE '\.(gz|bz2)$]' + target=config.patch + '[' -z '' ']' + '[' -n '' ']' + '[' -z '' ']' + '[' ! -f config.patch -o -n '' ']' + '[' 0 '=' 1 ']' + '[' ! -f config.patch -a yes '!=' no ']' + good_md5 config.patch + src_md5 config.patch + '[' '' '=' yes ']' + src_no config.patch + typeset 'file=config.patch' + echo config.patch + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='config\.patch' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*config\\.patch[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Patch0 + '[' -z Patch0 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Patch0-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCEPatch0)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoPatch0-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Patch0$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size config.patch + nourl config.patch + echo config.patch + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find config.patch -printf %s + size=3759 + '[' -n 3759 -a 3759 -gt 0 ']' + : + nc=8 + typeset 'cvsup=0' + SHELL_TITLE_PREFIX='get_files[8/9]' + update_shell_title quiet.patch + '[' -t 2 ']' + return + nourl quiet.patch + echo quiet.patch + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + typeset 'fp=quiet.patch' + '[' no '=' yes ']' + FROM_DISTFILES=0 + src_md5 quiet.patch + '[' '' '=' yes ']' + src_no quiet.patch + typeset 'file=quiet.patch' + echo quiet.patch + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='quiet\.patch' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*quiet\\.patch[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Patch1 + '[' -z Patch1 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Patch1-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCEPatch1)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoPatch1-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Patch1$' xrdp.spec + '[' -n '' -a -n '' ']' + typeset 'srcmd5=' + '[' ! -f quiet.patch ']' + '[' yes '=' yes ']' + echo quiet.patch + grep -vE '(http|ftp|https|cvs|svn)://' + grep -qE '\.(gz|bz2)$]' + target=quiet.patch + '[' -z '' ']' + '[' -n '' ']' + '[' -z '' ']' + '[' ! -f quiet.patch -o -n '' ']' + '[' 0 '=' 1 ']' + '[' ! -f quiet.patch -a yes '!=' no ']' + good_md5 quiet.patch + src_md5 quiet.patch + '[' '' '=' yes ']' + src_no quiet.patch + typeset 'file=quiet.patch' + echo quiet.patch + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='quiet\.patch' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*quiet\\.patch[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Patch1 + '[' -z Patch1 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Patch1-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCEPatch1)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoPatch1-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Patch1$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size quiet.patch + nourl quiet.patch + echo quiet.patch + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find quiet.patch -printf %s + size=676 + '[' -n 676 -a 676 -gt 0 ']' + : + nc=9 + typeset 'cvsup=0' + SHELL_TITLE_PREFIX='get_files[9/9]' + update_shell_title x32.patch + '[' -t 2 ']' + return + nourl x32.patch + echo x32.patch + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + typeset 'fp=x32.patch' + '[' no '=' yes ']' + FROM_DISTFILES=0 + src_md5 x32.patch + '[' '' '=' yes ']' + src_no x32.patch + typeset 'file=x32.patch' + echo x32.patch + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='x32\.patch' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*x32\\.patch[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Patch2 + '[' -z Patch2 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Patch2-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCEPatch2)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoPatch2-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Patch2$' xrdp.spec + '[' -n '' -a -n '' ']' + typeset 'srcmd5=' + '[' ! -f x32.patch ']' + '[' yes '=' yes ']' + echo x32.patch + grep -vE '(http|ftp|https|cvs|svn)://' + grep -qE '\.(gz|bz2)$]' + target=x32.patch + '[' -z '' ']' + '[' -n '' ']' + '[' -z '' ']' + '[' ! -f x32.patch -o -n '' ']' + '[' 0 '=' 1 ']' + '[' ! -f x32.patch -a yes '!=' no ']' + good_md5 x32.patch + src_md5 x32.patch + '[' '' '=' yes ']' + src_no x32.patch + typeset 'file=x32.patch' + echo x32.patch + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='x32\.patch' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*x32\\.patch[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Patch2 + '[' -z Patch2 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Patch2-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCEPatch2)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoPatch2-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Patch2$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size x32.patch + nourl x32.patch + echo x32.patch + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find x32.patch -printf %s + size=1515 + '[' -n 1515 -a 1515 -gt 0 ']' + : + SHELL_TITLE_PREFIX='' + '[' no '=' yes ']' + check_md5 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz xrdp.init xrdp.pamd xrdp.README.TLD xrdp.README.TLD.pl startwm.sh config.patch quiet.patch x32.patch + typeset bad + '[' '' '=' yes ']' + update_shell_title 'check md5' + '[' -t 2 ']' + return + bad=0 + good_md5 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + src_md5 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + '[' '' '=' yes ']' + src_no https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + typeset 'file=https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz' + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='https://github\.com/neutrinolabs/xrdp/releases/download/v0\.9\.25\.1/xrdp-0\.9\.25\.1\.tar\.gz' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*https://github\\.com/neutrinolabs/xrdp/releases/download/v0\\.9\\.25\\.1/xrdp-0\\.9\\.25\\.1\\.tar\\.gz[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Source0 + '[' -z Source0 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source0-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5=$'\tf30ad85ce78c8542d4f7b03c28c8815f' + '[' -n $'\tf30ad85ce78c8542d4f7b03c28c8815f' ']' + echo f30ad85ce78c8542d4f7b03c28c8815f + md5=f30ad85ce78c8542d4f7b03c28c8815f + '[' f30ad85ce78c8542d4f7b03c28c8815f '=' '' ']' + sed -e 's/ .*//' + nourl https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + md5sum xrdp-0.9.25.1.tar.gz + '[' f30ad85ce78c8542d4f7b03c28c8815f '=' f30ad85ce78c8542d4f7b03c28c8815f ']' + good_size https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + nourl https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + echo https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find xrdp-0.9.25.1.tar.gz -printf %s + size=2048677 + '[' -n 2048677 -a 2048677 -gt 0 ']' + '[' 0 -eq 1 ']' + bad=0 + good_md5 xrdp.init + src_md5 xrdp.init + '[' '' '=' yes ']' + src_no xrdp.init + typeset 'file=xrdp.init' + echo xrdp.init + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.init' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.init[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Source1 + '[' -z Source1 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source1-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource1)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource1-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source1$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size xrdp.init + nourl xrdp.init + echo xrdp.init + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find xrdp.init -printf %s + size=1739 + '[' -n 1739 -a 1739 -gt 0 ']' + '[' 0 -eq 1 ']' + bad=0 + good_md5 xrdp.pamd + src_md5 xrdp.pamd + '[' '' '=' yes ']' + src_no xrdp.pamd + typeset 'file=xrdp.pamd' + echo xrdp.pamd + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.pamd' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.pamd[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Source2 + '[' -z Source2 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source2-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource2)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource2-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source2$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size xrdp.pamd + nourl xrdp.pamd + echo xrdp.pamd + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find xrdp.pamd -printf %s + size=305 + '[' -n 305 -a 305 -gt 0 ']' + '[' 0 -eq 1 ']' + bad=0 + good_md5 xrdp.README.TLD + src_md5 xrdp.README.TLD + '[' '' '=' yes ']' + src_no xrdp.README.TLD + typeset 'file=xrdp.README.TLD' + echo xrdp.README.TLD + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.README\.TLD' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.README\\.TLD[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + xargs + head -n 1 + tr OURCEATH ourceath + no=Source3 + '[' -z Source3 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source3-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource3)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource3-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source3$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size xrdp.README.TLD + nourl xrdp.README.TLD + echo xrdp.README.TLD + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find xrdp.README.TLD -printf %s + size=454 + '[' -n 454 -a 454 -gt 0 ']' + '[' 0 -eq 1 ']' + bad=0 + good_md5 xrdp.README.TLD.pl + src_md5 xrdp.README.TLD.pl + '[' '' '=' yes ']' + src_no xrdp.README.TLD.pl + typeset 'file=xrdp.README.TLD.pl' + echo xrdp.README.TLD.pl + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='xrdp\.README\.TLD\.pl' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*xrdp\\.README\\.TLD\\.pl[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Source4 + '[' -z Source4 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source4-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource4)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource4-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source4$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size xrdp.README.TLD.pl + nourl xrdp.README.TLD.pl + echo xrdp.README.TLD.pl + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find xrdp.README.TLD.pl -printf %s + size=508 + '[' -n 508 -a 508 -gt 0 ']' + '[' 0 -eq 1 ']' + bad=0 + good_md5 startwm.sh + src_md5 startwm.sh + '[' '' '=' yes ']' + src_no startwm.sh + typeset 'file=startwm.sh' + echo startwm.sh + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='startwm\.sh' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*startwm\\.sh[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Source5 + '[' -z Source5 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Source5-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCESource5)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoSource5-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Source5$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size startwm.sh + nourl startwm.sh + echo startwm.sh + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find startwm.sh -printf %s + size=37 + '[' -n 37 -a 37 -gt 0 ']' + '[' 0 -eq 1 ']' + bad=0 + good_md5 config.patch + src_md5 config.patch + '[' '' '=' yes ']' + src_no config.patch + typeset 'file=config.patch' + echo config.patch + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='config\.patch' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*config\\.patch[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Patch0 + '[' -z Patch0 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Patch0-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCEPatch0)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoPatch0-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Patch0$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size config.patch + nourl config.patch + echo config.patch + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find config.patch -printf %s + size=3759 + '[' -n 3759 -a 3759 -gt 0 ']' + '[' 0 -eq 1 ']' + bad=0 + good_md5 quiet.patch + src_md5 quiet.patch + '[' '' '=' yes ']' + src_no quiet.patch + typeset 'file=quiet.patch' + echo quiet.patch + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='quiet\.patch' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*quiet\\.patch[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + tr OURCEATH ourceath + xargs + no=Patch1 + '[' -z Patch1 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Patch1-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCEPatch1)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoPatch1-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Patch1$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size quiet.patch + nourl quiet.patch + echo quiet.patch + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find quiet.patch -printf %s + size=676 + '[' -n 676 -a 676 -gt 0 ']' + '[' 0 -eq 1 ']' + bad=0 + good_md5 x32.patch + src_md5 x32.patch + '[' '' '=' yes ']' + src_no x32.patch + typeset 'file=x32.patch' + echo x32.patch + sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g' + file='x32\.patch' + cd /home/users/builder/rpm/packages/xrdp + rpm_dump + '[' -z $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' ']' + echo $'h PACKAGE_NAME xrdp\nh PACKAGE_VERSION 0.9.25.1\nh PACKAGE_RELEASE 1\nh PACKAGE_SUMMARY Remote desktop server\nh url http://xrdp.org/\ns PATCHURL2 x32.patch\ns PATCHURL1 quiet.patch\ns PATCHURL0 config.patch\ns SOURCEURL5 startwm.sh\ns SOURCEURL4 xrdp.README.TLD.pl\ns SOURCEURL3 xrdp.README.TLD\ns SOURCEURL2 xrdp.pamd\ns SOURCEURL1 xrdp.init\ns SOURCEURL0 https://github.com/neutrinolabs/xrdp/releases/download/v0.9.25.1/xrdp-0.9.25.1.tar.gz\nm _target_cpu i686' + grep -E $'(SOURCE|PATCH)URL[0-9]*[ \t]*x32\\.patch[ \t]*$' + sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' + head -n 1 + xargs + tr OURCEATH ourceath + no=Patch2 + '[' -z Patch2 ']' + cd /home/users/builder/rpm/packages/xrdp + typeset md5 + '[' -f sources ']' + grep -iE $'^#[ \t]*(No)?Patch2-md5[ \t]*:' xrdp.spec + sed -e 's/.*://' + source_md5='' + '[' -n '' ']' + grep -i $'BuildRequires:[ \t]*digest(%SOURCEPatch2)[ \t]*=' xrdp.spec + sed -e 's/.*=//' + source_md5='' + '[' -n '' ']' + grep -i $'^#[\t ]*NoPatch2-md5[\t ]*:' xrdp.spec + sed -e 's/.*://' + nosource_md5='' + grep -i $'^NoSource:[\t ]*Patch2$' xrdp.spec + '[' -n '' -a -n '' ']' + md5='' + '[' '' '=' '' ']' + good_size x32.patch + nourl x32.patch + echo x32.patch + sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g' + 2>/dev/null + find x32.patch -printf %s + size=1515 + '[' -n 1515 -a 1515 -gt 0 ']' + '[' 0 -eq 1 ']' + build_package + update_shell_title build_package + '[' -t 2 ']' + return + '[' -n yes ']' + set -x + set -v + cd /home/users/builder/rpm/packages/xrdp + BUILD_SWITCH='-bs --nodeps' + update_shell_title 'build_package: build-source' + '[' -t 2 ']' + return + typeset logfile retval + '[' -n '' ']' + unset GIT_WORK_TREE GIT_DIR + unset GIT_PREVIOUS_COMMIT GIT_URL GIT_PREVIOUS_SUCCESSFUL_COMMIT GIT_BRANCH GIT_COMMIT + unset GIT_SSH + unset GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_TESTING_PORCELAIN_COMMAND_LIST + env + grep ^GIT_ + insert_gitlog xrdp.spec + tempdir + typeset 'prefix=builder.xrdp' + mktemp --tmpdir -d builder.xrdp.XXXXXX + tempfile + typeset 'prefix=builder.xrdp' + mktemp --tmpdir -t builder.xrdp.XXXXXX + tempfile + typeset 'prefix=builder.xrdp' + mktemp --tmpdir -t builder.xrdp.XXXXXX + typeset 'SPECFILE=xrdp.spec' 'specdir=/home/users/builder/tmp/builder.xrdp.pDB4B4' 'gitlog=/home/users/builder/tmp/builder.xrdp.L0dVHf' 'speclog=/home/users/builder/tmp/builder.xrdp.4ov6PE' + rpm -E '%{?_buildchangelogtruncate}' + typeset 'log_entries=20' + 2>/dev/null + git rev-list --date-order -20 HEAD + >/home/users/builder/tmp/builder.xrdp.L0dVHf + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 + git log -n 1 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list b0d9f242e0102edb3d7e090291be9357df7e17b3 + git log -n 1 b0d9f242e0102edb3d7e090291be9357df7e17b3 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list b64cfbf6bc73d317ee1473f98476b4254fdab02f + git log -n 1 b64cfbf6bc73d317ee1473f98476b4254fdab02f '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 276e977598afa6dd44f4e44d107b98785beddb31 + git log -n 1 276e977598afa6dd44f4e44d107b98785beddb31 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 9f2133fba15428b4a7ac09d48def33ae6a8f6464 + git log -n 1 9f2133fba15428b4a7ac09d48def33ae6a8f6464 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list febe8bf9692782f1b88e58cb3e1b273b591b2b54 + git log -n 1 febe8bf9692782f1b88e58cb3e1b273b591b2b54 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list ebcd383e3657a751e668364685041611b54076ab + git log -n 1 ebcd383e3657a751e668364685041611b54076ab '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list be08a91e41b194fc1a614af8ab2ce5c3f213ba97 + git log -n 1 be08a91e41b194fc1a614af8ab2ce5c3f213ba97 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 6201d303f14c5255073aa23f4b4e34c87c04baf7 + git log -n 1 6201d303f14c5255073aa23f4b4e34c87c04baf7 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list c1ce194b640288fb6c5c6d201154637d1293efa2 + git log -n 1 c1ce194b640288fb6c5c6d201154637d1293efa2 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list bf524922b592ede951bacfb56ea09c3dca93b462 + git log -n 1 bf524922b592ede951bacfb56ea09c3dca93b462 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 8c34e42728f06a58d10aa579028e27d6f5f7ea75 + sed -re 's/^- +- */- /' + git log -n 1 8c34e42728f06a58d10aa579028e27d6f5f7ea75 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 98c0c55bc4aa046b870e942a99dac55d77e357d7 + git log -n 1 98c0c55bc4aa046b870e942a99dac55d77e357d7 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 8eb133194bbea4dfe96124c19f620dabd6ae1a60 + git log -n 1 8eb133194bbea4dfe96124c19f620dabd6ae1a60 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 1d30b4bb24ffd53bff22a61f3fae51d08e7ce42c + git log -n 1 1d30b4bb24ffd53bff22a61f3fae51d08e7ce42c '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 9f57dfdbb9f2adb8610089373566bc8246d632d6 + git log -n 1 9f57dfdbb9f2adb8610089373566bc8246d632d6 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 242b5728c78c9f6846cce9de4af1d2fe32479bcd + git log -n 1 242b5728c78c9f6846cce9de4af1d2fe32479bcd '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list beb5c301567f67f96633c8c5a67340c3b57bbf0f + git log -n 1 beb5c301567f67f96633c8c5a67340c3b57bbf0f '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list ff65cdbbd6ea4ce34c1381ea3c6d5da88db8ac35 + git log -n 1 ff65cdbbd6ea4ce34c1381ea3c6d5da88db8ac35 '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'logfmt=%B%n' + >/dev/null + 2>&1 + git notes list 64b912db915190fd50443dd67f200ccebd2a683d + git log -n 1 64b912db915190fd50443dd67f200ccebd2a683d '--format=format:* %ad %an <%ae> %h%n- %B%n%n' '--date=raw' + sed -re 's/^- +- */- /' + sed '/^$/q' + read sha1 + typeset 'giturl=http://git.tld-linux.org/?p=packages/xrdp.git;a=log' + '[' -n 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 ']' + giturl='http://git.tld-linux.org/?p=packages/xrdp.git;a=log;h=6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74' + typeset 'gitauthor=TLD Linux ' + >/home/users/builder/tmp/builder.xrdp.4ov6PE + LC_ALL=C gawk '-vgiturl=http://git.tld-linux.org/?p=packages/xrdp.git;a=log;h=6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74' '-vgitauthor=TLD Linux ' '-vpackage=xrdp' $'BEGIN{\n\t\tprintf("* %s %s\\n- For complete changelog see: %s\\n", strftime("%a %b %d %Y"), gitauthor, giturl);\n\t\tprint;\n\t\texit\n\t}' + >>/home/users/builder/tmp/builder.xrdp.4ov6PE + LC_ALL=C gawk '/^\* /{printf("* %s %s\n", strftime("%a %b %d %Y", $2), substr($0, length($1)+length($2)+length($3)+4)); next}{print}' /home/users/builder/tmp/builder.xrdp.L0dVHf + sed '/^%changelog/,$d' xrdp.spec + >/home/users/builder/tmp/builder.xrdp.pDB4B4/xrdp.spec + sed -e $'${\n\t\t\ta%changelog\n\t\t\tr /home/users/builder/tmp/builder.xrdp.4ov6PE\n\t\t}\n\t' + rm -f /home/users/builder/tmp/builder.xrdp.L0dVHf /home/users/builder/tmp/builder.xrdp.4ov6PE + echo /home/users/builder/tmp/builder.xrdp.pDB4B4 + typeset 'specdir=/home/users/builder/tmp/builder.xrdp.pDB4B4' + ulimit -c unlimited ./builder[2756]: ulimit: unlimited exceeds allowable coredump(blocks) limit + grep -q -E '(lib/(systemd|binfmt.d|sysctl.d|sysusers.d|tmpfiles.d)|systemd(unitdir|userunitdir|tmpfilesdir))' /home/users/builder/tmp/builder.xrdp.pDB4B4/xrdp.spec + process_distbcond /home/users/builder/tmp/builder.xrdp.pDB4B4/xrdp.spec + '[' -f /home/users/builder/.distbcond ']' + : + SN=xrdp + typeset 'distbcond=/home/users/builder/.distbcond' + '[' -n ']' + '[' -f /.distbcond ']' + find_spec_bcond xrdp.spec + typeset 'SPEC=xrdp.spec' + awk '-F\n' $'\n\t/^%changelog/ { exit }\n\t/^%bcond_with/{\n\t\tmatch($0, /bcond_with(out)?[ \\t]+[_a-zA-Z0-9]+/);\n\t\tbcond = substr($0, RSTART + 6, RLENGTH - 6);\n\t\tgsub(/[ \\t]+/, "_", bcond);\n\t\tprint bcond\n\t}' xrdp.spec + LC_ALL=C sort -u + typeset 'bcond_avail=' + /dev/null + rm /tmp/.builder-2pZm + git rev-parse HEAD + typeset '_rev=6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74' + >/dev/null + 2>&1 + download_wget /tmp/.builder-2pZm http://pkgrevs.tld-linux.org/set/6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74/tld/xrdp-0.9.25.1-1 + typeset 'outfile=/tmp/.builder-2pZm' 'url=http://pkgrevs.tld-linux.org/set/6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74/tld/xrdp-0.9.25.1-1' retval wget_help + '[' -z '' ']' + 2>&1 + wget --help + wget_help=$'GNU Wget 1.21.4, a non-interactive network retriever.\nUsage: wget [OPTION]... [URL]...\n\nMandatory arguments to long options are mandatory for short options too.\n\nStartup:\n -V, --version display the version of Wget and exit\n -h, --help print this help\n -b, --background go to background after startup\n -e, --execute=COMMAND execute a `.wgetrc\047-style command\n\nLogging and input file:\n -o, --output-file=FILE log messages to FILE\n -a, --append-output=FILE append messages to FILE\n -d, --debug print lots of debugging information\n -q, --quiet quiet (no output)\n -v, --verbose be verbose (this is the default)\n -nv, --no-verbose turn off verboseness, without being quiet\n --report-speed=TYPE output bandwidth as TYPE. TYPE can be bits\n -i, --input-file=FILE download URLs found in local or external FILE\n --input-metalink=FILE download files covered in local Metalink FILE\n -F, --force-html treat input file as HTML\n -B, --base=URL resolves HTML input-file links (-i -F)\n relative to URL\n --config=FILE specify config file to use\n --no-config do not read any config file\n --rejected-log=FILE log reasons for URL rejection to FILE\n\nDownload:\n -t, --tries=NUMBER set number of retries to NUMBER (0 unlimits)\n --retry-connrefused retry even if connection is refused\n --retry-on-host-error consider host errors as non-fatal, transient errors\n --retry-on-http-error=ERRORS comma-separated list of HTTP errors to retry\n -O, --output-document=FILE write documents to FILE\n -nc, --no-clobber skip downloads that would download to\n existing files (overwriting them)\n --no-netrc don\047t try to obtain credentials from .netrc\n -c, --continue resume getting a partially-downloaded file\n --start-pos=OFFSET start downloading from zero-based position OFFSET\n --progress=TYPE select progress gauge type\n --show-progress display the progress bar in any verbosity mode\n -N, --timestamping don\047t re-retrieve files unless newer than\n local\n --no-if-modified-since don\047t use conditional if-modified-since get\n requests in timestamping mode\n --no-use-server-timestamps don\047t set the local file\047s timestamp by\n the one on the server\n -S, --server-response print server response\n --spider don\047t download anything\n -T, --timeout=SECONDS set all timeout values to SECONDS\n --dns-timeout=SECS set the DNS lookup timeout to SECS\n --connect-timeout=SECS set the connect timeout to SECS\n --read-timeout=SECS set the read timeout to SECS\n -w, --wait=SECONDS wait SECONDS between retrievals\n (applies if more then 1 URL is to be retrieved)\n --waitretry=SECONDS wait 1..SECONDS between retries of a retrieval\n (applies if more then 1 URL is to be retrieved)\n --random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals\n (applies if more then 1 URL is to be retrieved)\n --no-proxy explicitly turn off proxy\n -Q, --quota=NUMBER set retrieval quota to NUMBER\n --bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host\n --limit-rate=RATE limit download rate to RATE\n --no-dns-cache disable caching DNS lookups\n --restrict-file-names=OS restrict chars in file names to ones OS allows\n --ignore-case ignore case when matching files/directories\n -4, --inet4-only connect only to IPv4 addresses\n -6, --inet6-only connect only to IPv6 addresses\n --prefer-family=FAMILY connect first to addresses of specified family,\n one of IPv6, IPv4, or none\n --user=USER set both ftp and http user to USER\n --password=PASS set both ftp and http password to PASS\n --ask-password prompt for passwords\n --use-askpass=COMMAND specify credential handler for requesting \n username and password. If no COMMAND is \n specified the WGET_ASKPASS or the SSH_ASKPASS \n environment variable is used.\n --no-iri turn off IRI support\n --local-encoding=ENC use ENC as the local encoding for IRIs\n --remote-encoding=ENC use ENC as the default remote encoding\n --unlink remove file before clobber\n --keep-badhash keep files with checksum mismatch (append .badhash)\n --metalink-index=NUMBER Metalink application/metalink4+xml metaurl ordinal NUMBER\n --metalink-over-http use Metalink metadata from HTTP response headers\n --preferred-location preferred location for Metalink resources\n --xattr turn on storage of metadata in extended file attributes\n\nDirectories:\n -nd, --no-directories don\047t create directories\n -x, --force-directories force creation of directories\n -nH, --no-host-directories don\047t create host directories\n --protocol-directories use protocol name in directories\n -P, --directory-prefix=PREFIX save files to PREFIX/..\n --cut-dirs=NUMBER ignore NUMBER remote directory components\n\nHTTP options:\n --http-user=USER set http user to USER\n --http-password=PASS set http password to PASS\n --no-cache disallow server-cached data\n --default-page=NAME change the default page name (normally\n this is \047index.html\047.)\n -E, --adjust-extension save HTML/CSS documents with proper extensions\n --ignore-length ignore \047Content-Length\047 header field\n --header=STRING insert STRING among the headers\n --compression=TYPE choose compression, one of auto, gzip and none. (default: none)\n --max-redirect maximum redirections allowed per page\n --proxy-user=USER set USER as proxy username\n --proxy-password=PASS set PASS as proxy password\n --referer=URL include \047Referer: URL\047 header in HTTP request\n --save-headers save the HTTP headers to file\n -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION\n --no-http-keep-alive disable HTTP keep-alive (persistent connections)\n --no-cookies don\047t use cookies\n --load-cookies=FILE load cookies from FILE before session\n --save-cookies=FILE save cookies to FILE after session\n --keep-session-cookies load and save session (non-permanent) cookies\n --post-data=STRING use the POST method; send STRING as the data\n --post-file=FILE use the POST method; send contents of FILE\n --method=HTTPMethod use method "HTTPMethod" in the request\n --body-data=STRING send STRING as data. --method MUST be set\n --body-file=FILE send contents of FILE. --method MUST be set\n --content-disposition honor the Content-Disposition header when\n choosing local file names (EXPERIMENTAL)\n --content-on-error output the received content on server errors\n --auth-no-challenge send Basic HTTP authentication information\n without first waiting for the server\047s\n challenge\n\nHTTPS (SSL/TLS) options:\n --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n SSLv3, TLSv1, TLSv1_1, TLSv1_2, TLSv1_3 and PFS\n --https-only only follow secure HTTPS links\n --no-check-certificate don\047t validate the server\047s certificate\n --certificate=FILE client certificate file\n --certificate-type=TYPE client certificate type, PEM or DER\n --private-key=FILE private key file\n --private-key-type=TYPE private key type, PEM or DER\n --ca-certificate=FILE file with the bundle of CAs\n --ca-directory=DIR directory where hash list of CAs is stored\n --crl-file=FILE file with bundle of CRLs\n --pinnedpubkey=FILE/HASHES Public key (PEM/DER) file, or any number\n of base64 encoded sha256 hashes preceded by\n \047sha256//\047 and separated by \047;\047, to verify\n peer against\n --random-file=FILE file with random data for seeding the SSL PRNG\n\n --ciphers=STR Set the priority string (GnuTLS) or cipher list string (OpenSSL) directly.\n Use with care. This option overrides --secure-protocol.\n The format and syntax of this string depend on the specific SSL/TLS engine.\nHSTS options:\n --no-hsts disable HSTS\n --hsts-file path of HSTS database (will override default)\n\nFTP options:\n --ftp-user=USER set ftp user to USER\n --ftp-password=PASS set ftp password to PASS\n --no-remove-listing don\047t remove \047.listing\047 files\n --no-glob turn off FTP file name globbing\n --no-passive-ftp disable the "passive" transfer mode\n --preserve-permissions preserve remote file permissions\n --retr-symlinks when recursing, get linked-to files (not dir)\n\nFTPS options:\n --ftps-implicit use implicit FTPS (default port is 990)\n --ftps-resume-ssl resume the SSL/TLS session started in the control connection when\n opening a data connection\n --ftps-clear-data-connection cipher the control channel only; all the data will be in plaintext\n --ftps-fallback-to-ftp fall back to FTP if FTPS is not supported in the target server\nWARC options:\n --warc-file=FILENAME save request/response data to a .warc.gz file\n --warc-header=STRING insert STRING into the warcinfo record\n --warc-max-size=NUMBER set maximum size of WARC files to NUMBER\n --warc-cdx write CDX index files\n --warc-dedup=FILENAME do not store records listed in this CDX file\n --no-warc-compression do not compress WARC files with GZIP\n --no-warc-digests do not calculate SHA1 digests\n --no-warc-keep-log do not store the log file in a WARC record\n --warc-tempdir=DIRECTORY location for temporary files created by the\n WARC writer\n\nRecursive download:\n -r, --recursive specify recursive download\n -l, --level=NUMBER maximum recursion depth (inf or 0 for infinite)\n --delete-after delete files locally after downloading them\n -k, --convert-links make links in downloaded HTML or CSS point to\n local files\n --convert-file-only convert the file part of the URLs only (usually known as the basename)\n --backups=N before writing file X, rotate up to N backup files\n -K, --backup-converted before converting file X, back up as X.orig\n -m, --mirror shortcut for -N -r -l inf --no-remove-listing\n -p, --page-requisites get all images, etc. needed to display HTML page\n --strict-comments turn on strict (SGML) handling of HTML comments\n\nRecursive accept/reject:\n -A, --accept=LIST comma-separated list of accepted extensions\n -R, --reject=LIST comma-separated list of rejected extensions\n --accept-regex=REGEX regex matching accepted URLs\n --reject-regex=REGEX regex matching rejected URLs\n --regex-type=TYPE regex type (posix|pcre)\n -D, --domains=LIST comma-separated list of accepted domains\n --exclude-domains=LIST comma-separated list of rejected domains\n --follow-ftp follow FTP links from HTML documents\n --follow-tags=LIST comma-separated list of followed HTML tags\n --ignore-tags=LIST comma-separated list of ignored HTML tags\n -H, --span-hosts go to foreign hosts when recursive\n -L, --relative follow relative links only\n -I, --include-directories=LIST list of allowed directories\n --trust-server-names use the name specified by the redirection\n URL\047s last component\n -X, --exclude-directories=LIST list of excluded directories\n -np, --no-parent don\047t ascend to the parent directory\n\nEmail bug reports, questions, discussions to \nand/or open issues at https://savannah.gnu.org/bugs/?func=additem&group=wget.' + echo $'GNU Wget 1.21.4, a non-interactive network retriever.\nUsage: wget [OPTION]... [URL]...\n\nMandatory arguments to long options are mandatory for short options too.\n\nStartup:\n -V, --version display the version of Wget and exit\n -h, --help print this help\n -b, --background go to background after startup\n -e, --execute=COMMAND execute a `.wgetrc\047-style command\n\nLogging and input file:\n -o, --output-file=FILE log messages to FILE\n -a, --append-output=FILE append messages to FILE\n -d, --debug print lots of debugging information\n -q, --quiet quiet (no output)\n -v, --verbose be verbose (this is the default)\n -nv, --no-verbose turn off verboseness, without being quiet\n --report-speed=TYPE output bandwidth as TYPE. TYPE can be bits\n -i, --input-file=FILE download URLs found in local or external FILE\n --input-metalink=FILE download files covered in local Metalink FILE\n -F, --force-html treat input file as HTML\n -B, --base=URL resolves HTML input-file links (-i -F)\n relative to URL\n --config=FILE specify config file to use\n --no-config do not read any config file\n --rejected-log=FILE log reasons for URL rejection to FILE\n\nDownload:\n -t, --tries=NUMBER set number of retries to NUMBER (0 unlimits)\n --retry-connrefused retry even if connection is refused\n --retry-on-host-error consider host errors as non-fatal, transient errors\n --retry-on-http-error=ERRORS comma-separated list of HTTP errors to retry\n -O, --output-document=FILE write documents to FILE\n -nc, --no-clobber skip downloads that would download to\n existing files (overwriting them)\n --no-netrc don\047t try to obtain credentials from .netrc\n -c, --continue resume getting a partially-downloaded file\n --start-pos=OFFSET start downloading from zero-based position OFFSET\n --progress=TYPE select progress gauge type\n --show-progress display the progress bar in any verbosity mode\n -N, --timestamping don\047t re-retrieve files unless newer than\n local\n --no-if-modified-since don\047t use conditional if-modified-since get\n requests in timestamping mode\n --no-use-server-timestamps don\047t set the local file\047s timestamp by\n the one on the server\n -S, --server-response print server response\n --spider don\047t download anything\n -T, --timeout=SECONDS set all timeout values to SECONDS\n --dns-timeout=SECS set the DNS lookup timeout to SECS\n --connect-timeout=SECS set the connect timeout to SECS\n --read-timeout=SECS set the read timeout to SECS\n -w, --wait=SECONDS wait SECONDS between retrievals\n (applies if more then 1 URL is to be retrieved)\n --waitretry=SECONDS wait 1..SECONDS between retries of a retrieval\n (applies if more then 1 URL is to be retrieved)\n --random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals\n (applies if more then 1 URL is to be retrieved)\n --no-proxy explicitly turn off proxy\n -Q, --quota=NUMBER set retrieval quota to NUMBER\n --bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host\n --limit-rate=RATE limit download rate to RATE\n --no-dns-cache disable caching DNS lookups\n --restrict-file-names=OS restrict chars in file names to ones OS allows\n --ignore-case ignore case when matching files/directories\n -4, --inet4-only connect only to IPv4 addresses\n -6, --inet6-only connect only to IPv6 addresses\n --prefer-family=FAMILY connect first to addresses of specified family,\n one of IPv6, IPv4, or none\n --user=USER set both ftp and http user to USER\n --password=PASS set both ftp and http password to PASS\n --ask-password prompt for passwords\n --use-askpass=COMMAND specify credential handler for requesting \n username and password. If no COMMAND is \n specified the WGET_ASKPASS or the SSH_ASKPASS \n environment variable is used.\n --no-iri turn off IRI support\n --local-encoding=ENC use ENC as the local encoding for IRIs\n --remote-encoding=ENC use ENC as the default remote encoding\n --unlink remove file before clobber\n --keep-badhash keep files with checksum mismatch (append .badhash)\n --metalink-index=NUMBER Metalink application/metalink4+xml metaurl ordinal NUMBER\n --metalink-over-http use Metalink metadata from HTTP response headers\n --preferred-location preferred location for Metalink resources\n --xattr turn on storage of metadata in extended file attributes\n\nDirectories:\n -nd, --no-directories don\047t create directories\n -x, --force-directories force creation of directories\n -nH, --no-host-directories don\047t create host directories\n --protocol-directories use protocol name in directories\n -P, --directory-prefix=PREFIX save files to PREFIX/..\n --cut-dirs=NUMBER ignore NUMBER remote directory components\n\nHTTP options:\n --http-user=USER set http user to USER\n --http-password=PASS set http password to PASS\n --no-cache disallow server-cached data\n --default-page=NAME change the default page name (normally\n this is \047index.html\047.)\n -E, --adjust-extension save HTML/CSS documents with proper extensions\n --ignore-length ignore \047Content-Length\047 header field\n --header=STRING insert STRING among the headers\n --compression=TYPE choose compression, one of auto, gzip and none. (default: none)\n --max-redirect maximum redirections allowed per page\n --proxy-user=USER set USER as proxy username\n --proxy-password=PASS set PASS as proxy password\n --referer=URL include \047Referer: URL\047 header in HTTP request\n --save-headers save the HTTP headers to file\n -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION\n --no-http-keep-alive disable HTTP keep-alive (persistent connections)\n --no-cookies don\047t use cookies\n --load-cookies=FILE load cookies from FILE before session\n --save-cookies=FILE save cookies to FILE after session\n --keep-session-cookies load and save session (non-permanent) cookies\n --post-data=STRING use the POST method; send STRING as the data\n --post-file=FILE use the POST method; send contents of FILE\n --method=HTTPMethod use method "HTTPMethod" in the request\n --body-data=STRING send STRING as data. --method MUST be set\n --body-file=FILE send contents of FILE. --method MUST be set\n --content-disposition honor the Content-Disposition header when\n choosing local file names (EXPERIMENTAL)\n --content-on-error output the received content on server errors\n --auth-no-challenge send Basic HTTP authentication information\n without first waiting for the server\047s\n challenge\n\nHTTPS (SSL/TLS) options:\n --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n SSLv3, TLSv1, TLSv1_1, TLSv1_2, TLSv1_3 and PFS\n --https-only only follow secure HTTPS links\n --no-check-certificate don\047t validate the server\047s certificate\n --certificate=FILE client certificate file\n --certificate-type=TYPE client certificate type, PEM or DER\n --private-key=FILE private key file\n --private-key-type=TYPE private key type, PEM or DER\n --ca-certificate=FILE file with the bundle of CAs\n --ca-directory=DIR directory where hash list of CAs is stored\n --crl-file=FILE file with bundle of CRLs\n --pinnedpubkey=FILE/HASHES Public key (PEM/DER) file, or any number\n of base64 encoded sha256 hashes preceded by\n \047sha256//\047 and separated by \047;\047, to verify\n peer against\n --random-file=FILE file with random data for seeding the SSL PRNG\n\n --ciphers=STR Set the priority string (GnuTLS) or cipher list string (OpenSSL) directly.\n Use with care. This option overrides --secure-protocol.\n The format and syntax of this string depend on the specific SSL/TLS engine.\nHSTS options:\n --no-hsts disable HSTS\n --hsts-file path of HSTS database (will override default)\n\nFTP options:\n --ftp-user=USER set ftp user to USER\n --ftp-password=PASS s+ grep -q -- ' --no-check-certificate ' et ftp password to PASS\n --no-remove-listing don\047t remove \047.listing\047 files\n --no-glob turn off FTP file name globbing\n --no-passive-ftp disable the "passive" transfer mode\n --preserve-permissions preserve remote file permissions\n --retr-symlinks when recursing, get linked-to files (not dir)\n\nFTPS options:\n --ftps-implicit use implicit FTPS (default port is 990)\n --ftps-resume-ssl resume the SSL/TLS session started in the control connection when\n opening a data connection\n --ftps-clear-data-connection cipher the control channel only; all the data will be in plaintext\n --ftps-fallback-to-ftp fall back to FTP if FTPS is not supported in the target server\nWARC options:\n --warc-file=FILENAME save request/response data to a .warc.gz file\n --warc-header=STRING insert STRING into the warcinfo record\n --warc-max-size=NUMBER set maximum size of WARC files to NUMBER\n --warc-cdx write CDX index files\n --warc-dedup=FILENAME do not store records listed in this CDX file\n --no-warc-compression do not compress WARC files with GZIP\n --no-warc-digests do not calculate SHA1 digests\n --no-warc-keep-log do not store the log file in a WARC record\n --warc-tempdir=DIRECTORY location for temporary files created by the\n WARC writer\n\nRecursive download:\n -r, --recursive specify recursive download\n -l, --level=NUMBER maximum recursion depth (inf or 0 for infinite)\n --delete-after delete files locally after downloading them\n -k, --convert-links make links in downloaded HTML or CSS point to\n local files\n --convert-file-only convert the file part of the URLs only (usually known as the basename)\n --backups=N before writing file X, rotate up to N backup files\n -K, --backup-converted before converting file X, back up as X.orig\n -m, --mirror shortcut for -N -r -l inf --no-remove-listing\n -p, --page-requisites get all images, etc. needed to display HTML page\n --strict-comments turn on strict (SGML) handling of HTML comments\n\nRecursive accept/reject:\n -A, --accept=LIST comma-separated list of accepted extensions\n -R, --reject=LIST comma-separated list of rejected extensions\n --accept-regex=REGEX regex matching accepted URLs\n --reject-regex=REGEX regex matching rejected URLs\n --regex-type=TYPE regex type (posix|pcre)\n -D, --domains=LIST comma-separated list of accepted domains\n --exclude-domains=LIST comma-separated list of rejected domains\n --follow-ftp follow FTP links from HTML documents\n --follow-tags=LIST comma-separated list of followed HTML tags\n --ignore-tags=LIST comma-separated list of ignored HTML tags\n -H, --span-hosts go to foreign hosts when recursive\n -L, --relative follow relative links only\n -I, --include-directories=LIST list of allowed directories\n --trust-server-names use the name specified by the redirection\n URL\047s last component\n -X, --exclude-directories=LIST list of excluded directories\n -np, --no-parent don\047t ascend to the parent directory\n\nEmail bug reports, questions, discussions to \nand/or open issues at https://savannah.gnu.org/bugs/?func=additem&group=wget.' + WGET_OPTS=' --no-check-certificate' + grep -q -- ' --inet ' + echo $'GNU Wget 1.21.4, a non-interactive network retriever.\nUsage: wget [OPTION]... [URL]...\n\nMandatory arguments to long options are mandatory for short options too.\n\nStartup:\n -V, --version display the version of Wget and exit\n -h, --help print this help\n -b, --background go to background after startup\n -e, --execute=COMMAND execute a `.wgetrc\047-style command\n\nLogging and input file:\n -o, --output-file=FILE log messages to FILE\n -a, --append-output=FILE append messages to FILE\n -d, --debug print lots of debugging information\n -q, --quiet quiet (no output)\n -v, --verbose be verbose (this is the default)\n -nv, --no-verbose turn off verboseness, without being quiet\n --report-speed=TYPE output bandwidth as TYPE. TYPE can be bits\n -i, --input-file=FILE download URLs found in local or external FILE\n --input-metalink=FILE download files covered in local Metalink FILE\n -F, --force-html treat input file as HTML\n -B, --base=URL resolves HTML input-file links (-i -F)\n relative to URL\n --config=FILE specify config file to use\n --no-config do not read any config file\n --rejected-log=FILE log reasons for URL rejection to FILE\n\nDownload:\n -t, --tries=NUMBER set number of retries to NUMBER (0 unlimits)\n --retry-connrefused retry even if connection is refused\n --retry-on-host-error consider host errors as non-fatal, transient errors\n --retry-on-http-error=ERRORS comma-separated list of HTTP errors to retry\n -O, --output-document=FILE write documents to FILE\n -nc, --no-clobber skip downloads that would download to\n existing files (overwriting them)\n --no-netrc don\047t try to obtain credentials from .netrc\n -c, --continue resume getting a partially-downloaded file\n --start-pos=OFFSET start downloading from zero-based position OFFSET\n --progress=TYPE select progress gauge type\n --show-progress display the progress bar in any verbosity mode\n -N, --timestamping don\047t re-retrieve files unless newer than\n local\n --no-if-modified-since don\047t use conditional if-modified-since get\n requests in timestamping mode\n --no-use-server-timestamps don\047t set the local file\047s timestamp by\n the one on the server\n -S, --server-response print server response\n --spider don\047t download anything\n -T, --timeout=SECONDS set all timeout values to SECONDS\n --dns-timeout=SECS set the DNS lookup timeout to SECS\n --connect-timeout=SECS set the connect timeout to SECS\n --read-timeout=SECS set the read timeout to SECS\n -w, --wait=SECONDS wait SECONDS between retrievals\n (applies if more then 1 URL is to be retrieved)\n --waitretry=SECONDS wait 1..SECONDS between retries of a retrieval\n (applies if more then 1 URL is to be retrieved)\n --random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals\n (applies if more then 1 URL is to be retrieved)\n --no-proxy explicitly turn off proxy\n -Q, --quota=NUMBER set retrieval quota to NUMBER\n --bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host\n --limit-rate=RATE limit download rate to RATE\n --no-dns-cache disable caching DNS lookups\n --restrict-file-names=OS restrict chars in file names to ones OS allows\n --ignore-case ignore case when matching files/directories\n -4, --inet4-only connect only to IPv4 addresses\n -6, --inet6-only connect only to IPv6 addresses\n --prefer-family=FAMILY connect first to addresses of specified family,\n one of IPv6, IPv4, or none\n --user=USER set both ftp and http user to USER\n --password=PASS set both ftp and http password to PASS\n --ask-password prompt for passwords\n --use-askpass=COMMAND specify credential handler for requesting \n username and password. If no COMMAND is \n specified the WGET_ASKPASS or the SSH_ASKPASS \n environment variable is used.\n --no-iri turn off IRI support\n --local-encoding=ENC use ENC as the local encoding for IRIs\n --remote-encoding=ENC use ENC as the default remote encoding\n --unlink remove file before clobber\n --keep-badhash keep files with checksum mismatch (append .badhash)\n --metalink-index=NUMBER Metalink application/metalink4+xml metaurl ordinal NUMBER\n --metalink-over-http use Metalink metadata from HTTP response headers\n --preferred-location preferred location for Metalink resources\n --xattr turn on storage of metadata in extended file attributes\n\nDirectories:\n -nd, --no-directories don\047t create directories\n -x, --force-directories force creation of directories\n -nH, --no-host-directories don\047t create host directories\n --protocol-directories use protocol name in directories\n -P, --directory-prefix=PREFIX save files to PREFIX/..\n --cut-dirs=NUMBER ignore NUMBER remote directory components\n\nHTTP options:\n --http-user=USER set http user to USER\n --http-password=PASS set http password to PASS\n --no-cache disallow server-cached data\n --default-page=NAME change the default page name (normally\n this is \047index.html\047.)\n -E, --adjust-extension save HTML/CSS documents with proper extensions\n --ignore-length ignore \047Content-Length\047 header field\n --header=STRING insert STRING among the headers\n --compression=TYPE choose compression, one of auto, gzip and none. (default: none)\n --max-redirect maximum redirections allowed per page\n --proxy-user=USER set USER as proxy username\n --proxy-password=PASS set PASS as proxy password\n --referer=URL include \047Referer: URL\047 header in HTTP request\n --save-headers save the HTTP headers to file\n -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION\n --no-http-keep-alive disable HTTP keep-alive (persistent connections)\n --no-cookies don\047t use cookies\n --load-cookies=FILE load cookies from FILE before session\n --save-cookies=FILE save cookies to FILE after session\n --keep-session-cookies load and save session (non-permanent) cookies\n --post-data=STRING use the POST method; send STRING as the data\n --post-file=FILE use the POST method; send contents of FILE\n --method=HTTPMethod use method "HTTPMethod" in the request\n --body-data=STRING send STRING as data. --method MUST be set\n --body-file=FILE send contents of FILE. --method MUST be set\n --content-disposition honor the Content-Disposition header when\n choosing local file names (EXPERIMENTAL)\n --content-on-error output the received content on server errors\n --auth-no-challenge send Basic HTTP authentication information\n without first waiting for the server\047s\n challenge\n\nHTTPS (SSL/TLS) options:\n --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n SSLv3, TLSv1, TLSv1_1, TLSv1_2, TLSv1_3 and PFS\n --https-only only follow secure HTTPS links\n --no-check-certificate don\047t validate the server\047s certificate\n --certificate=FILE client certificate file\n --certificate-type=TYPE client certificate type, PEM or DER\n --private-key=FILE private key file\n --private-key-type=TYPE private key type, PEM or DER\n --ca-certificate=FILE file with the bundle of CAs\n --ca-directory=DIR directory where hash list of CAs is stored\n --crl-file=FILE file with bundle of CRLs\n --pinnedpubkey=FILE/HASHES Public key (PEM/DER) file, or any number\n of base64 encoded sha256 hashes preceded by\n \047sha256//\047 and separated by \047;\047, to verify\n peer against\n --random-file=FILE file with random data for seeding the SSL PRNG\n\n --ciphers=STR Set the priority string (GnuTLS) or cipher list string (OpenSSL) directly.\n Use with care. This option overrides --secure-protocol.\n The format and syntax of this string depend on the specific SSL/TLS engine.\nHSTS options:\n --no-hsts disable HSTS\n --hsts-file path of HSTS database (will override default)\n\nFTP options:\n --ftp-user=USER set ftp user to USER\n --ftp-password=PASS set ftp password to PASS\n --no-remove-listing don\047t remove \047.listing\047 files\n --no-glob turn off FTP file name globbing\n --no-passive-ftp disable the "passive" transfer mode\n --preserve-permissions preserve remote file permissions\n --retr-symlinks when recursing, get linked-to files (not dir)\n\nFTPS options:\n --ftps-implicit use implicit FTPS (default port is 990)\n --ftps-resume-ssl resume the SSL/TLS session started in the control connection when\n opening a data connection\n --ftps-clear-data-connection cipher the control channel only; all the data will be in plaintext\n --ftps-fallback-to-ftp fall back to FTP if FTPS is not supported in the target server\nWARC options:\n --warc-file=FILENAME save request/response data to a .warc.gz file\n --warc-header=STRING insert STRING into the warcinfo record\n --warc-max-size=NUMBER set maximum size of WARC files to NUMBER\n --warc-cdx write CDX index files\n --warc-dedup=FILENAME do not store records listed in this CDX file\n --no-warc-compression do not compress WARC files with GZIP\n --no-warc-digests do not calculate SHA1 digests\n --no-warc-keep-log do not store the log file in a WARC record\n --warc-tempdir=DIRECTORY location for temporary files created by the\n WARC writer\n\nRecursive download:\n -r, --recursive specify recursive download\n -l, --level=NUMBER maximum recursion depth (inf or 0 for infinite)\n --delete-after delete files locally after downloading them\n -k, --convert-links make links in downloaded HTML or CSS point to\n local files\n --convert-file-only convert the file part of the URLs only (usually known as the basename)\n --backups=N before writing file X, rotate up to N backup files\n -K, --backup-converted before converting file X, back up as X.orig\n -m, --mirror shortcut for -N -r -l inf --no-remove-listing\n -p, --page-requisites get all images, etc. needed to display HTML page\n --strict-comments turn on strict (SGML) handling of HTML comments\n\nRecursive accept/reject:\n -A, --accept=LIST comma-separated list of accepted extensions\n -R, --reject=LIST comma-separated list of rejected extensions\n --accept-regex=REGEX regex matching accepted URLs\n --reject-regex=REGEX regex matching rejected URLs\n --regex-type=TYPE regex type (posix|pcre)\n -D, --domains=LIST comma-separated list of accepted domains\n --exclude-domains=LIST comma-separated list of rejected domains\n --follow-ftp follow FTP links from HTML documents\n --follow-tags=LIST comma-separated list of followed HTML tags\n --ignore-tags=LIST comma-separated list of ignored HTML tags\n -H, --span-hosts go to foreign hosts when recursive\n -L, --relative follow relative links only\n -I, --include-directories=LIST list of allowed directories\n --trust-server-names use the name specified by the redirection\n URL\047s last component\n -X, --exclude-directories=LIST list of excluded directories\n -np, --no-parent don\047t ascend to the parent directory\n\nEmail bug reports, questions, discussions to \nand/or open issues at https://savannah.gnu.org/bugs/?func=additem&group=wget.' + echo $'GNU Wget 1.21.4, a non-interactive network retriever.\nUsage: wget [OPTION]... [URL]...\n\nMandatory arguments to long options are mandatory for short options too.\n\nStartup:\n -V, --version display the version of Wget and exit\n -h, --help print this help\n -b, --background go to background after startup\n -e, --execute=COMMAND execute a `.wgetrc\047-style command\n\nLogging and input file:\n -o, --output-file=FILE log messages to FILE\n -a, --append-output=FILE append messages to FILE\n -d, --debug print lots of debugging information\n -q, --quiet quiet (no output)\n -v, --verbose be verbose (this is the default)\n -nv, --no-verbose turn off verboseness, without being quiet\n --report-speed=TYPE output bandwidth as TYPE. TYPE can be bits\n -i, --input-file=FILE download URLs found in local or external FILE\n --input-metalink=FILE download files covered in local Metalink FILE\n -F, --force-html treat input file as HTML\n -B, --base=URL resolves HTML input-file links (-i -F)\n relative to URL\n --config=FILE specify config file to use\n --no-config do not read any config file\n --rejected-log=FILE log reasons for URL rejection to FILE\n\nDownload:\n -t, --tries=NUMBER set number of retries to NUMBER (0 unlimits)\n --retry-connrefused retry even if connection is refused\n --retry-on-host-error consider host errors as non-fatal, transient errors\n --retry-on-http-error=ERRORS comma-separated list of HTTP errors to retry\n -O, --output-document=FILE write documents to FILE\n -nc, --no-clobber skip downloads that would download to\n existing files (overwriting them)\n --no-netrc don\047t try to obtain credentials from .netrc\n -c, --continue resume getting a partially-downloaded file\n --start-pos=OFFSET start downloading from zero-based position OFFSET\n --progress=TYPE select progress gauge type\n --show-progress display the progress bar in any verbosity mode\n -N, --timestamping don\047t re-retrieve files unless newer than\n local\n --no-if-modified-since don\047t use conditional if-modified-since get\n requests in timestamping mode\n --no-use-server-timestamps don\047t set the local file\047s timestamp by\n the one on the server\n -S, --server-response print server response\n --spider don\047t download anything\n -T, --timeout=SECONDS set all timeout values to SECONDS\n --dns-timeout=SECS set the DNS lookup timeout to SECS\n --connect-timeout=SECS set the connect timeout to SECS\n --read-timeout=SECS set the read timeout to SECS\n -w, --wait=SECONDS wait SECONDS between retrievals\n (applies if more then 1 URL is to be retrieved)\n --waitretry=SECONDS wait 1..SECONDS between retries of a retrieval\n (applies if more then 1 URL is to be retrieved)\n --random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals\n (applies if more then 1 URL is to be retrieved)\n --no-proxy explicitly turn off proxy\n -Q, --quota=NUMBER set retrieval quota to NUMBER\n --bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host\n --limit-rate=RATE limit download rate to RATE\n --no-dns-cache disable caching DNS lookups\n --restrict-file-names=OS restrict chars in file names to ones OS allows\n --ignore-case ignore case when matching files/directories\n -4, --inet4-only connect only to IPv4 addresses\n -6, --inet6-only connect only to IPv6 addresses\n --prefer-family=FAMILY connect first to addresses of specified family,\n one of IPv6, IPv4, or none\n --user=USER set both ftp and http user to USER\n --password=PASS set both ftp and http password to PASS\n --ask-password prompt for passwords\n --use-askpass=COMMAND specify credential handler for requesting \n username and password. If no COMMAND is \n specified the WGET_ASKPASS or the SSH_ASKPASS \n environment variable is used.\n --no-iri turn off IRI support\n --local-encoding=ENC use ENC as the local encoding for IRIs\n --remote-encoding=ENC use ENC as the default remote encoding\n --unlink remove file before clobber\n --keep-badhash keep files with checksum mismatch (append .badhash)\n --metalink-index=NUMBER Metalink application/metalink4+xml metaurl ordinal NUMBER\n --metalink-over-http use Metalink metadata from HTTP response headers\n --preferred-location preferred location for Metalink resources\n --xattr turn on storage of metadata in extended file attributes\n\nDirectories:\n -nd, --no-directories don\047t create directories\n -x, --force-directories force creation of directories\n -nH, --no-host-directories don\047t create host directories\n --protocol-directories use protocol name in directories\n -P, --directory-prefix=PREFIX save files to PREFIX/..\n --cut-dirs=NUMBER ignore NUMBER remote directory components\n\nHTTP options:\n --http-user=USER set http user to USER\n --http-password=PASS set http password to PASS\n --no-cache disallow server-cached data\n --default-page=NAME change the default page name (normally\n this is \047index.html\047.)\n -E, --adjust-extension save HTML/CSS documents with proper extensions\n --ignore-length ignore \047C+ grep -q -- ' --retry-connrefused ' ontent-Length\047 header field\n --header=STRING insert STRING among the headers\n --compression=TYPE choose compression, one of auto, gzip and none. (default: none)\n --max-redirect maximum redirections allowed per page\n --proxy-user=USER set USER as proxy username\n --proxy-password=PASS set PASS as proxy password\n --referer=URL include \047Referer: URL\047 header in HTTP request\n --save-headers save the HTTP headers to file\n -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION\n --no-http-keep-alive disable HTTP keep-alive (persistent connections)\n --no-cookies don\047t use cookies\n --load-cookies=FILE load cookies from FILE before session\n --save-cookies=FILE save cookies to FILE after session\n --keep-session-cookies load and save session (non-permanent) cookies\n --post-data=STRING use the POST method; send STRING as the data\n --post-file=FILE use the POST method; send contents of FILE\n --method=HTTPMethod use method "HTTPMethod" in the request\n --body-data=STRING send STRING as data. --method MUST be set\n --body-file=FILE send contents of FILE. --method MUST be set\n --content-disposition honor the Content-Disposition header when\n choosing local file names (EXPERIMENTAL)\n --content-on-error output the received content on server errors\n --auth-no-challenge send Basic HTTP authentication information\n without first waiting for the server\047s\n challenge\n\nHTTPS (SSL/TLS) options:\n --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n SSLv3, TLSv1, TLSv1_1, TLSv1_2, TLSv1_3 and PFS\n --https-only only follow secure HTTPS links\n --no-check-certificate don\047t validate the server\047s certificate\n --certificate=FILE client certificate file\n --certificate-type=TYPE client certificate type, PEM or DER\n --private-key=FILE private key file\n --private-key-type=TYPE private key type, PEM or DER\n --ca-certificate=FILE file with the bundle of CAs\n --ca-directory=DIR directory where hash list of CAs is stored\n --crl-file=FILE file with bundle of CRLs\n --pinnedpubkey=FILE/HASHES Public key (PEM/DER) file, or any number\n of base64 encoded sha256 hashes preceded by\n \047sha256//\047 and separated by \047;\047, to verify\n peer against\n --random-file=FILE file with random data for seeding the SSL PRNG\n\n --ciphers=STR Set the priority string (GnuTLS) or cipher list string (OpenSSL) directly.\n Use with care. This option overrides --secure-protocol.\n The format and syntax of this string depend on the specific SSL/TLS engine.\nHSTS options:\n --no-hsts disable HSTS\n --hsts-file path of HSTS database (will override default)\n\nFTP options:\n --ftp-user=USER set ftp user to USER\n --ftp-password=PASS set ftp password to PASS\n --no-remove-listing don\047t remove \047.listing\047 files\n --no-glob turn off FTP file name globbing\n --no-passive-ftp disable the "passive" transfer mode\n --preserve-permissions preserve remote file permissions\n --retr-symlinks when recursing, get linked-to files (not dir)\n\nFTPS options:\n --ftps-implicit use implicit FTPS (default port is 990)\n --ftps-resume-ssl resume the SSL/TLS session started in the control connection when\n opening a data connection\n --ftps-clear-data-connection cipher the control channel only; all the data will be in plaintext\n --ftps-fallback-to-ftp fall back to FTP if FTPS is not supported in the target server\nWARC options:\n --warc-file=FILENAME save request/response data to a .warc.gz file\n --warc-header=STRING insert STRING into the warcinfo record\n --warc-max-size=NUMBER set maximum size of WARC files to NUMBER\n --warc-cdx write CDX index files\n --warc-dedup=FILENAME do not store records listed in this CDX file\n --no-warc-compression do not compress WARC files with GZIP\n --no-warc-digests do not calculate SHA1 digests\n --no-warc-keep-log do not store the log file in a WARC record\n --warc-tempdir=DIRECTORY location for temporary files created by the\n WARC writer\n\nRecursive download:\n -r, --recursive specify recursive download\n -l, --level=NUMBER maximum recursion depth (inf or 0 for infinite)\n --delete-after delete files locally after downloading them\n -k, --convert-links make links in downloaded HTML or CSS point to\n local files\n --convert-file-only convert the file part of the URLs only (usually known as the basename)\n --backups=N before writing file X, rotate up to N backup files\n -K, --backup-converted before converting file X, back up as X.orig\n -m, --mirror shortcut for -N -r -l inf --no-remove-listing\n -p, --page-requisites get all images, etc. needed to display HTML page\n --strict-comments turn on strict (SGML) handling of HTML comments\n\nRecursive accept/reject:\n -A, --accept=LIST comma-separated list of accepted extensions\n -R, --reject=LIST comma-separated list of rejected extensions\n --accept-regex=REGEX regex matching accepted URLs\n --reject-regex=REGEX regex matching rejected URLs\n --regex-type=TYPE regex type (posix|pcre)\n -D, --domains=LIST comma-separated list of accepted domains\n --exclude-domains=LIST comma-separated list of rejected domains\n --follow-ftp follow FTP links from HTML documents\n --follow-tags=LIST comma-separated list of followed HTML tags\n --ignore-tags=LIST comma-separated list of ignored HTML tags\n -H, --span-hosts go to foreign hosts when recursive\n -L, --relative follow relative links only\n -I, --include-directories=LIST list of allowed directories\n --trust-server-names use the name specified by the redirection\n URL\047s last component\n -X, --exclude-directories=LIST list of excluded directories\n -np, --no-parent don\047t ascend to the parent directory\n\nEmail bug reports, questions, discussions to \nand/or open issues at https://savannah.gnu.org/bugs/?func=additem&group=wget.' + WGET_OPTS=' --no-check-certificate --retry-connrefused' + echo $'GNU Wget 1.21.4, a non-interactive network retriever.\nUsage: wget [OPTION]... [URL]...\n\nMandatory arguments to long options are mandatory for short options too.\n\nStartup:\n -V, --version display the version of Wget and exit\n -h, --help print this help\n -b, --background go to background after startup\n -e, --execute=COMMAND execute a `.wgetrc\047-style command\n\nLogging and input file:\n -o, --output-file=FILE log messages to FILE\n -a, --append-output=FILE append messages to FILE\n -d, --debug print lots of debugging information\n -q, --quiet quiet (no output)\n -v, --verbose be verbose (this is the default)\n -nv, --no-verbose turn off verboseness, without being quiet\n --report-speed=TYPE output bandwidth as TYPE. TYPE can be bits\n -i, --input-file=FILE download URLs found in local or external + grep -q -- ' --no-iri ' FILE\n --input-metalink=FILE download files covered in local Metalink FILE\n -F, --force-html treat input file as HTML\n -B, --base=URL resolves HTML input-file links (-i -F)\n relative to URL\n --config=FILE specify config file to use\n --no-config do not read any config file\n --rejected-log=FILE log reasons for URL rejection to FILE\n\nDownload:\n -t, --tries=NUMBER set number of retries to NUMBER (0 unlimits)\n --retry-connrefused retry even if connection is refused\n --retry-on-host-error consider host errors as non-fatal, transient errors\n --retry-on-http-error=ERRORS comma-separated list of HTTP errors to retry\n -O, --output-document=FILE write documents to FILE\n -nc, --no-clobber skip downloads that would download to\n existing files (overwriting them)\n --no-netrc don\047t try to obtain credentials from .netrc\n -c, --continue resume getting a partially-downloaded file\n --start-pos=OFFSET start downloading from zero-based position OFFSET\n --progress=TYPE select progress gauge type\n --show-progress display the progress bar in any verbosity mode\n -N, --timestamping don\047t re-retrieve files unless newer than\n local\n --no-if-modified-since don\047t use conditional if-modified-since get\n requests in timestamping mode\n --no-use-server-timestamps don\047t set the local file\047s timestamp by\n the one on the server\n -S, --server-response print server response\n --spider don\047t download anything\n -T, --timeout=SECONDS set all timeout values to SECONDS\n --dns-timeout=SECS set the DNS lookup timeout to SECS\n --connect-timeout=SECS set the connect timeout to SECS\n --read-timeout=SECS set the read timeout to SECS\n -w, --wait=SECONDS wait SECONDS between retrievals\n (applies if more then 1 URL is to be retrieved)\n --waitretry=SECONDS wait 1..SECONDS between retries of a retrieval\n (applies if more then 1 URL is to be retrieved)\n --random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals\n (applies if more then 1 URL is to be retrieved)\n --no-proxy explicitly turn off proxy\n -Q, --quota=NUMBER set retrieval quota to NUMBER\n --bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host\n --limit-rate=RATE limit download rate to RATE\n --no-dns-cache disable caching DNS lookups\n --restrict-file-names=OS restrict chars in file names to ones OS allows\n --ignore-case ignore case when matching files/directories\n -4, --inet4-only connect only to IPv4 addresses\n -6, --inet6-only connect only to IPv6 addresses\n --prefer-family=FAMILY connect first to addresses of specified family,\n one of IPv6, IPv4, or none\n --user=USER set both ftp and http user to USER\n --password=PASS set both ftp and http password to PASS\n --ask-password prompt for passwords\n --use-askpass=COMMAND specify credential handler for requesting \n username and password. If no COMMAND is \n specified the WGET_ASKPASS or the SSH_ASKPASS \n environment variable is used.\n --no-iri turn off IRI support\n --local-encoding=ENC use ENC as the local encoding for IRIs\n --remote-encoding=ENC use ENC as the default remote encoding\n --unlink remove file before clobber\n --keep-badhash keep files with checksum mismatch (append .badhash)\n --metalink-index=NUMBER Metalink application/metalink4+xml metaurl ordinal NUMBER\n --metalink-over-http use Metalink metadata from HTTP response headers\n --preferred-location preferred location for Metalink resources\n --xattr turn on storage of metadata in extended file attributes\n\nDirectories:\n -nd, --no-directories don\047t create directories\n -x, --force-directories force creation of directories\n -nH, --no-host-directories don\047t create host directories\n --protocol-directories use protocol name in directories\n -P, --directory-prefix=PREFIX save files to PREFIX/..\n --cut-dirs=NUMBER ignore NUMBER remote directory components\n\nHTTP options:\n --http-user=USER set http user to USER\n --http-password=PASS set http password to PASS\n --no-cache disallow server-cached data\n --default-page=NAME change the default page name (normally\n this is \047index.html\047.)\n -E, --adjust-extension save HTML/CSS documents with proper extensions\n --ignore-length ignore \047Content-Length\047 header field\n --header=STRING insert STRING among the headers\n --compression=TYPE choose compression, one of auto, gzip and none. (default: none)\n --max-redirect maximum redirections allowed per page\n --proxy-user=USER set USER as proxy username\n --proxy-password=PASS set PASS as proxy password\n --referer=URL include \047Referer: URL\047 header in HTTP request\n --save-headers save the HTTP headers to file\n -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION\n --no-http-keep-alive disable HTTP keep-alive (persistent connections)\n --no-cookies don\047t use cookies\n --load-cookies=FILE load cookies from FILE before session\n --save-cookies=FILE save cookies to FILE after session\n --keep-session-cookies load and save session (non-permanent) cookies\n --post-data=STRING use the POST method; send STRING as the data\n --post-file=FILE use the POST method; send contents of FILE\n --method=HTTPMethod use method "HTTPMethod" in the request\n --body-data=STRING send STRING as data. --method MUST be set\n --body-file=FILE send contents of FILE. --method MUST be set\n --content-disposition honor the Content-Disposition header when\n choosing local file names (EXPERIMENTAL)\n --content-on-error output the received content on server errors\n --auth-no-challenge send Basic HTTP authentication information\n without first waiting for the server\047s\n challenge\n\nHTTPS (SSL/TLS) options:\n --secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n SSLv3, TLSv1, TLSv1_1, TLSv1_2, TLSv1_3 and PFS\n --https-only only follow secure HTTPS links\n --no-check-certificate don\047t validate the server\047s certificate\n --certificate=FILE client certificate file\n --certificate-type=TYPE client certificate type, PEM or DER\n --private-key=FILE private key file\n --private-key-type=TYPE private key type, PEM or DER\n --ca-certificate=FILE file with the bundle of CAs\n --ca-directory=DIR directory where hash list of CAs is stored\n --crl-file=FILE file with bundle of CRLs\n --pinnedpubkey=FILE/HASHES Public key (PEM/DER) file, or any number\n of base64 encoded sha256 hashes preceded by\n \047sha256//\047 and separated by \047;\047, to verify\n peer against\n --random-file=FILE file with random data for seeding the SSL PRNG\n\n --ciphers=STR Set the priority string (GnuTLS) or cipher list string (OpenSSL) directly.\n Use with care. This option overrides --secure-protocol.\n The format and syntax of this string depend on the specific SSL/TLS engine.\nHSTS options:\n --no-hsts disable HSTS\n --hsts-file path of HSTS database (will override default)\n\nFTP options:\n --ftp-user=USER set ftp user to USER\n --ftp-password=PASS set ftp password to PASS\n --no-remove-listing don\047t remove \047.listing\047 files\n --no-glob turn off FTP file name globbing\n --no-passive-ftp disable the "passive" transfer mode\n --preserve-permissions preserve remote file permissions\n --retr-symlinks when recursing, get linked-to files (not dir)\n\nFTPS options:\n --ftps-implicit use implicit FTPS (default port is 990)\n --ftps-resume-ssl resume the SSL/TLS session started in the control connection when\n opening a data connection\n --ftps-clear-data-connection cipher the control channel only; all the data will be in plaintext\n --ftps-fallback-to-ftp fall back to FTP if FTPS is not supported in the target server\nWARC options:\n --warc-file=FILENAME save request/response data to a .warc.gz file\n --warc-header=STRING insert STRING into the warcinfo record\n --warc-max-size=NUMBER set maximum size of WARC files to NUMBER\n --warc-cdx write CDX index files\n --warc-dedup=FILENAME do not store records listed in this CDX file\n --no-warc-compression do not compress WARC files with GZIP\n --no-warc-digests do not calculate SHA1 digests\n --no-warc-keep-log do not store the log file in a WARC record\n --warc-tempdir=DIRECTORY location for temporary files created by the\n WARC writer\n\nRecursive download:\n -r, --recursive specify recursive download\n -l, --level=NUMBER maximum recursion depth (inf or 0 for infinite)\n --delete-after delete files locally after downloading them\n -k, --convert-links make links in downloaded HTML or CSS point to\n local files\n --convert-file-only convert the file part of the URLs only (usually known as the basename)\n --backups=N before writing file X, rotate up to N backup files\n -K, --backup-converted before converting file X, back up as X.orig\n -m, --mirror shortcut for -N -r -l inf --no-remove-listing\n -p, --page-requisites get all images, etc. needed to display HTML page\n --strict-comments turn on strict (SGML) handling of HTML comments\n\nRecursive accept/reject:\n -A, --accept=LIST comma-separated list of accepted extensions\n -R, --reject=LIST comma-separated list of rejected extensions\n --accept-regex=REGEX regex matching accepted URLs\n --reject-regex=REGEX regex matching rejected URLs\n --regex-type=TYPE regex type (posix|pcre)\n -D, --domains=LIST comma-separated list of accepted domains\n --exclude-domains=LIST comma-separated list of rejected domains\n --follow-ftp follow FTP links from HTML documents\n --follow-tags=LIST comma-separated list of followed HTML tags\n --ignore-tags=LIST comma-separated list of ignored HTML tags\n -H, --span-hosts go to foreign hosts when recursive\n -L, --relative follow relative links only\n -I, --include-directories=LIST list of allowed directories\n --trust-server-names use the name specified by the redirection\n URL\047s last component\n -X, --exclude-directories=LIST list of excluded directories\n -np, --no-parent don\047t ascend to the parent directory\n\nEmail bug reports, questions, discussions to \nand/or open issues at https://savannah.gnu.org/bugs/?func=additem&group=wget.' + WGET_OPTS=' --no-check-certificate --retry-connrefused --no-iri' + WGET_OPTS='-c -nd -t0 --no-check-certificate --retry-connrefused --no-iri --user-agent=TLD/Builder(v0.35) --passive-ftp' + WGET_OPTS_SET=1 + wget -c -nd -t0 --no-check-certificate --retry-connrefused --no-iri '--user-agent=TLD/Builder(v0.35)' --passive-ftp -O /tmp/.builder-2pZm http://pkgrevs.tld-linux.org/set/6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74/tld/xrdp-0.9.25.1-1 + retval=0 + '[' 0 -ne 0 ']' + return 0 + cat /tmp/.builder-2pZm + typeset 'result=EXISTS' + 2>/dev/null + rm /tmp/.builder-2pZm + get_pkgrev tld/xrdp-0.9.25.1-1 + '[' -z tld/xrdp-0.9.25.1-1 ']' + mktemp /tmp/.builder-XXXX + typeset '_tmp=/tmp/.builder-rZhW' + 2>/dev/null + rm /tmp/.builder-rZhW + >/dev/null + 2>&1 + download_wget /tmp/.builder-rZhW http://pkgrevs.tld-linux.org/get/tld/xrdp-0.9.25.1-1 + typeset 'outfile=/tmp/.builder-rZhW' 'url=http://pkgrevs.tld-linux.org/get/tld/xrdp-0.9.25.1-1' retval wget_help + '[' -z x ']' + wget -c -nd -t0 --no-check-certificate --retry-connrefused --no-iri '--user-agent=TLD/Builder(v0.35)' --passive-ftp -O /tmp/.builder-rZhW http://pkgrevs.tld-linux.org/get/tld/xrdp-0.9.25.1-1 + retval=0 + '[' 0 -ne 0 ']' + return 0 + cat /tmp/.builder-rZhW + typeset 'result=6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74' + 2>/dev/null + rm /tmp/.builder-rZhW + echo -n 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 + '[' 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 '=' 6c4a4bed8900ad0b97915d81afd8d5c9cda7fa74 ']' + return 0 + rm -r /home/users/builder/tmp/builder.xrdp.pDB4B4 + '[' -n '' ']' + '[' 0 -ne 0 ']' + unset BUILD_SWITCH + '[' '' '=' yes ']' + remove_build_requires + '[' '' '!=' '' ']' if [ -f "`pwd`/.${SPECFILE}_INSTALLED_PACKAGES" -a "$REMOVE_BUILD_REQUIRES" != "" ]; then rm "`pwd`/.${SPECFILE}_INSTALLED_PACKAGES" fi + pwd + '[' -f /home/users/builder/rpm/packages/xrdp/.xrdp.spec_INSTALLED_PACKAGES -a '' '!=' '' ']' cd "$__PWD" + cd /home/users/builder/rpm/packages # vi:syntax=sh:ts=4:sw=4:noet + set -v if [ -n "$TARGET" ]; then case "$RPMBUILD" in "rpmbuild") TARGET_SWITCH="--target $TARGET" ;; "rpm") TARGET_SWITCH="--target=$TARGET" ;; esac fi + '[' -n i686-linux ']' + TARGET_SWITCH='--target i686-linux' if [ "$SCHEDTOOL" != "no" ]; then NICE_COMMAND="$SCHEDTOOL" else NICE_COMMAND="nice -n ${DEF_NICE_LEVEL}" fi + '[' no '!=' no ']' + NICE_COMMAND='nice -n 19' # see time(1) for output format that could be used TIME_COMMAND="time -p" + TIME_COMMAND='time -p' update_shell_title "$COMMAND" + update_shell_title mr-proper + '[' -t 2 ']' + return case "$COMMAND" in "show_bconds") init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi get_spec > /dev/null parse_spec set_bconds_values display_bconds ;; "show_bcond_args") init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi get_spec > /dev/null parse_spec set_bconds_values echo "$BCOND" ;; "show_avail_bconds") init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi get_spec > /dev/null parse_spec local bcond_avail=$(find_spec_bcond $SPECFILE) local opt bcond bconds for opt in $bcond_avail; do case "$opt" in without_*) bcond=${opt#without_} bconds="$bconds $bcond" ;; with_*) bcond=${opt#with_} bconds="$bconds $bcond" ;; *) echo >&2 "ERROR: unexpected '$opt' in show_avail_bconds" exit 1 ;; esac done echo $bconds ;; "build" | "build-binary" | "build-source" | "build-prep" | "build-build" | "build-install" | "build-list") init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi # display SMP make flags if set smp_mflags=$(rpm -E %{?_smp_mflags}) if [ "$smp_mflags" ]; then echo "builder: SMP make flags are set to $smp_mflags" fi get_spec parse_spec set_bconds_values display_bconds display_branches if [ "$COMMAND" != "build-source" ]; then check_buildarch fi fetch_build_requires if [ "$INTEGER_RELEASE" = "yes" ]; then echo "Checking release $PACKAGE_RELEASE..." if echo $PACKAGE_RELEASE | grep -q '^[^.]*\.[^.]*$' 2>/dev/null ; then Exit_error err_fract_rel "$PACKAGE_RELEASE" fi fi if [ -n "$NOSOURCE0" ] ; then SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'` fi try_upgrade case $? in 0) get_files $SOURCES $PATCHES check_md5 $SOURCES $PATCHES ;; *) NODIST="yes" get_files $SOURCES $PATCHES update_md5 $SOURCES $PATCHES ;; esac build_package if [ "$UPDATE_POLDEK_INDEXES" = "yes" ] && [ "$COMMAND" = "build" -o "$COMMAND" = "build-binary" ]; then run_poldek --sdir="${POLDEK_INDEX_DIR}" ${UPDATE_POLDEK_INDEXES_OPTS} --mkidxz fi remove_build_requires ;; "branch" ) init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi get_spec parse_spec branch_files $TAG ;; "add_cvs" ) init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi create_git_repo if [ -n "$NEW_REPO" ]; then parse_spec local file for file in $SOURCES $PATCHES; do if [ -z $(src_md5 "$file") ]; then git add $file || Exit_error err_no_source_in_repo $file else cvsignore_df `nourl $file` fi done git add $SPECFILE echo "When you are ready commit your changes and run git push origin master" else echo "You had already git repository. Push chosen branches to remote: ${REMOTE_PLD}" fi ;; "get" ) init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi get_spec parse_spec if [ -n "$NOSOURCE0" ] ; then SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'` fi get_files $SOURCES $PATCHES check_md5 $SOURCES fetch_build_requires ;; "update_md5" ) init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi get_spec parse_spec if [ -n "$NOSOURCE0" ] ; then SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'` fi update_md5 $SOURCES $PATCHES ;; "mr-proper" ) mr_proper ;; "list-sources-files" ) init_builder NOCVSSPEC="yes" DONT_PRINT_REVISION="yes" get_spec parse_spec for SAP in $SOURCES $PATCHES; do echo $SAP | awk '{gsub(/.*\//,"") ; print}' done ;; "list-sources-urls" ) init_builder >&2 NOCVSSPEC="yes" DONT_PRINT_REVISION="yes" get_spec >&2 parse_spec >&2 SAPS="$SOURCES $PATCHES" for SAP in $SAPS; do echo $SAP done ;; "list-sources-local-paths" ) init_builder NOCVSSPEC="yes" DONT_PRINT_REVISION="yes" get_spec parse_spec for SAP in $SOURCES $PATCHES; do echo $PACKAGE_DIR/$(echo $SAP | awk '{gsub(/.*\//,"") ; print }') done ;; "list-sources-distfiles-paths" ) init_builder NOCVSSPEC="yes" DONT_PRINT_REVISION="yes" get_spec parse_spec for SAP in $SOURCES $PATCHES; do if [ -n "$(src_md5 "$SAP")" ]; then distfiles_path "$SAP" fi done ;; "list-sources-distfiles" ) init_builder NOCVSSPEC="yes" DONT_PRINT_REVISION="yes" get_spec parse_spec for SAP in $SOURCES $PATCHES; do if [ -n "$(src_md5 "$SAP")" ]; then distfiles_url "$SAP" fi done ;; "list-sources-cvs" ) init_builder # NOCVSSPEC="yes" DONT_PRINT_REVISION="yes" get_spec parse_spec for SAP in $SOURCES $PATCHES; do if [ -z "$(src_md5 "$SAP")" ]; then echo $SAP | awk '{gsub(/.*\//,"") ; print}' fi done ;; "init_rpm_dir") init_rpm_dir ;; "usage" ) usage ;; "short-version" ) echo "$VERSION" ;; "version" ) echo "$VERSIONSTRING" ;; "list_pkgrev" ) init_builder if [ -z "$SPECFILE" ]; then Exit_error err_no_spec_in_cmdl fi get_spec > /dev/null parse_spec list_pkgrev ;; esac + mr_proper + init_builder + '[' -n yes ']' + set -x + set -v + '[' '' '!=' yes ']' + eval rpm --eval %{_topdir} rpm --eval %{_topdir} + rpm --eval %{_topdir} + TOP_DIR=/home/users/builder/rpm/packages + rpm -E '%?rpm_build_macros' + typeset 'macros_ver=2.030' + '[' -z 2.030 ']' + awk 'BEGIN{exit(2.030>=1.534)}' + REPO_DIR=/home/users/builder/rpm/packages + PACKAGE_DIR=/home/users/builder/rpm/packages/xrdp + export 'GIT_WORK_TREE=/home/users/builder/rpm/packages/xrdp' + export 'GIT_DIR=/home/users/builder/rpm/packages/xrdp/.git' + '[' -d /home/users/builder/rpm/packages/xrdp/.git ']' + '[' -z '' ']' + >/dev/null + git rev-parse --verify -q HEAD + 2>/dev/null + GIT_DIR=/home/users/builder/rpm/packages/xrdp/.git git symbolic-ref HEAD + CVSTAG=refs/heads/master + CVSTAG=master + '[' master '!=' master ']' + pwd + __PWD=/home/users/builder + NOCVSSPEC=yes + DONT_PRINT_REVISION=yes + PATH=/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin rpmbuild --clean --rmsource --rmspec --nodeps --define '__urlgetfile() %nil' --define '_specdir /home/users/builder/rpm/packages/xrdp' --define '_sourcedir /home/users/builder/rpm/packages/xrdp' --define '_builddir ' /home/users/builder/rpm/packages/xrdp/xrdp.spec error: Macro %_builddir has empty body + rm -rf /home/users/builder/rpm/packages/xrdp/.git /home/users/builder/rpm/packages/xrdp/.gitignore + rmdir --ignore-fail-on-non-empty /home/users/builder/rpm/packages/xrdp if [ -f "`pwd`/.${SPECFILE}_INSTALLED_PACKAGES" -a "$REMOVE_BUILD_REQUIRES" != "" ]; then rm "`pwd`/.${SPECFILE}_INSTALLED_PACKAGES" fi + pwd + '[' -f /home/users/builder/.xrdp.spec_INSTALLED_PACKAGES -a '' '!=' '' ']' cd "$__PWD" + cd /home/users/builder # vi:syntax=sh:ts=4:sw=4:noet Begin-TLD-Builder-Info Build-Time: user:1.67s sys:0.49s real:3.96s (faults io:7 non-io:308186) Files queued for ftp: 2060558 xrdp-0.9.25.1-1.src.rpm 185 xrdp-0.9.25.1-1.src.rpm.uploadinfo End-TLD-Builder-Info