Hello community, here is the log from the commit of package apache-rex for openSUSE:Factory checked in at 2020-12-09 22:12:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/apache-rex (Old) and /work/SRC/openSUSE:Factory/.apache-rex.new.2328 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "apache-rex" Wed Dec 9 22:12:05 2020 rev:23 rq:853756 version:20201125 Changes: -------- --- /work/SRC/openSUSE:Factory/apache-rex/apache-rex.changes 2020-09-14 12:00:50.311472332 +0200 +++ /work/SRC/openSUSE:Factory/.apache-rex.new.2328/apache-rex.changes 2020-12-09 22:12:08.699111053 +0100 @@ -1,0 +2,6 @@ +Wed Nov 25 13:27:00 UTC 2020 - [email protected] + +- version update to 20201125 + * curl changed --help behavior + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ apache-rex.spec ++++++ --- /var/tmp/diff_new_pack.xgkJLf/_old 2020-12-09 22:12:09.243111605 +0100 +++ /var/tmp/diff_new_pack.xgkJLf/_new 2020-12-09 22:12:09.247111609 +0100 @@ -25,7 +25,7 @@ %define macros_file macros.apache-rex Name: apache-rex -Version: 20200901 +Version: 20201125 Release: 0 Summary: Script for Apache HTTPD Runnable Examples License: Apache-2.0 ++++++ apache-rex.tar.bz2 ++++++ Binary files old/apache-rex/mod_proxy_express-basic-gdbm/emap.db and new/apache-rex/mod_proxy_express-basic-gdbm/emap.db differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/run-rex new/apache-rex/run-rex --- old/apache-rex/run-rex 2020-09-01 18:09:39.845993532 +0200 +++ new/apache-rex/run-rex 2020-11-25 14:25:39.416665839 +0100 @@ -221,12 +221,12 @@ function curl_have_resolve() { - curl -h | grep -q '\--resolve' && echo -n 1 || echo -n 0 + { curl --manual || curl --help; } | grep -q '\--resolve' && echo -n 1 || echo -n 0 } function curl_have_cert_status() { - curl -h | grep -q '\--cert-status' && echo -n 1 || echo -n 0 + { curl --manual || curl --help; } | grep -q '\--cert-status' && echo -n 1 || echo -n 0 } function curl_have_http2() @@ -396,7 +396,8 @@ { # check whether: 1. system is configured to dump coredumps into systemd-coredump # 2. coredumpctl command exists and user have enough privileges to gather dumps - if sysctl kernel.core_pattern | grep -q 'systemd-coredump' && coredumpctl list | grep -q 'TIME\|No coredumps found.'; then + if sysctl kernel.core_pattern | grep -q 'systemd-coredump' && \ + coredumpctl list 2>&1 | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" | grep -q 'TIME\|No coredumps found.'; then echo '1' else echo '0' _______________________________________________ openSUSE Commits mailing list -- [email protected] To unsubscribe, email [email protected] List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette List Archives: https://lists.opensuse.org/archives/list/[email protected]
