commit apache-rex for openSUSE:Factory
bingvOxUDlavl.bin Description: Binary data
commit apache-rex for openSUSE:Factory
Hello community, here is the log from the commit of package apache-rex for openSUSE:Factory checked in at 2020-05-07 15:04:54 Comparing /work/SRC/openSUSE:Factory/apache-rex (Old) and /work/SRC/openSUSE:Factory/.apache-rex.new.2738 (New) Package is "apache-rex" Thu May 7 15:04:54 2020 rev:21 rq:799986 version:20200407 Changes: --- /work/SRC/openSUSE:Factory/apache-rex/apache-rex.changes2020-04-19 21:35:15.502366513 +0200 +++ /work/SRC/openSUSE:Factory/.apache-rex.new.2738/apache-rex.changes 2020-05-07 15:05:20.815684867 +0200 @@ -1,0 +2,5 @@ +Sun May 3 14:37:06 UTC 2020 - Neal Gompa + +- Replace incorrect usage of %_libexecdir/rpm with %_rpmconfigdir + +--- Other differences: -- ++ apache-rex.spec ++ --- /var/tmp/diff_new_pack.cXtXf9/_old 2020-05-07 15:05:21.683686787 +0200 +++ /var/tmp/diff_new_pack.cXtXf9/_new 2020-05-07 15:05:21.683686787 +0200 @@ -18,7 +18,7 @@ # %if 0%{?suse_version} > 1230 -%define macros_dir%{_libexecdir}/rpm/macros.d +%define macros_dir%{_rpmconfigdir}/macros.d %else %define macros_dir%{_sysconfdir}/rpm %endif
commit apache-rex for openSUSE:Factory
binPjopdwYhiG.bin Description: Binary data
commit apache-rex for openSUSE:Factory
Hello community, here is the log from the commit of package apache-rex for openSUSE:Factory checked in at 2020-03-11 18:32:23 Comparing /work/SRC/openSUSE:Factory/apache-rex (Old) and /work/SRC/openSUSE:Factory/.apache-rex.new.3160 (New) Package is "apache-rex" Wed Mar 11 18:32:23 2020 rev:19 rq:782217 version:20200228 Changes: --- /work/SRC/openSUSE:Factory/apache-rex/apache-rex.changes2020-02-22 18:59:43.393556185 +0100 +++ /work/SRC/openSUSE:Factory/.apache-rex.new.3160/apache-rex.changes 2020-03-11 18:32:33.426906427 +0100 @@ -1,0 +2,7 @@ +Fri Feb 28 17:27:46 UTC 2020 - pgaj...@suse.com + +- version update to 20200228 + * refactor mod_authn_dbd-mysql, create lib/mysql + * new mod_php-mysql + +--- Other differences: -- ++ apache-rex.spec ++ --- /var/tmp/diff_new_pack.44KGGz/_old 2020-03-11 18:32:34.906907335 +0100 +++ /var/tmp/diff_new_pack.44KGGz/_new 2020-03-11 18:32:34.910907338 +0100 @@ -25,7 +25,7 @@ %define macros_file macros.apache-rex Name: apache-rex -Version:20200210 +Version:20200228 Release:0 Summary:Script for Apache HTTPD Runnable Examples License:Apache-2.0 ++ apache-rex.tar.bz2 ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/.gitignore new/apache-rex/.gitignore --- old/apache-rex/.gitignore 2020-02-10 17:09:07.343896984 +0100 +++ new/apache-rex/.gitignore 1970-01-01 01:00:00.0 +0100 @@ -1 +0,0 @@ -*.swp diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/README.md new/apache-rex/README.md --- old/apache-rex/README.md2020-02-10 17:09:07.339896960 +0100 +++ new/apache-rex/README.md2020-02-28 18:25:01.993612197 +0100 @@ -81,6 +81,8 @@ * `VERBOSITY` Amount of information written by `run-rex` to the stdout. Possible values are 0 (normal), 1 (verbose) and 2 (debug). +* `MYSQL_ADMIN` + Admin of the mysql server (mysqladmin, create table). Example Structure - Binary files old/apache-rex/apache-rex.tar.bz2 and new/apache-rex/apache-rex.tar.bz2 differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/contents new/apache-rex/contents --- old/apache-rex/contents 2020-02-10 17:09:07.351897036 +0100 +++ new/apache-rex/contents 2020-02-28 18:25:02.157613074 +0100 @@ -88,6 +88,7 @@ mod_wsgi-basic mod_proxy_uwsgi-basic mod_php-basic +mod_php-mysql mod_proxy_fcgi-php-fpm mod_proxy_fcgi-php-fpm-CGIPassAuth mod_proxy_fcgi-php-fpm-auth-RewriteRule diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/lib/mysql new/apache-rex/lib/mysql --- old/apache-rex/lib/mysql1970-01-01 01:00:00.0 +0100 +++ new/apache-rex/lib/mysql2020-02-28 18:25:02.157613074 +0100 @@ -0,0 +1,77 @@ +#!/bin/bash + +# $AREX_USER is invoking mysqld and is admin of the db + +function mysql_socket_path() +{ + echo -n "$mysql_dir/mysql.sock" +} + +function mysql_create_config() +{ + mysql_dir=$1 + + echo '>>> Create mysql configuration' + mkdir $mysql_dir/datadir $mysql_dir/datadir-private + cat << EOF > $mysql_dir/my.cnf +[client] +socket = $(mysql_socket_path) + +[mysqld] +log-error= $mysql_dir/mysqld.log +secure_file_priv = $mysql_dir/datadir-private +datadir = $mysql_dir/datadir +server-id= 1 +socket = $(mysql_socket_path) +EOF +} + +function mysql_initialize_db() +{ + mysql_dir=$1 + echo '>>> Initializing databases' + # --force is required by at least 10.0.38 on SLE 12 changeroot + mysql_install_db --defaults-file=$mysql_dir/my.cnf --force +} + +function mysql_invoke_mysqld() +{ + mysql_dir=$1 + mysqld --defaults-file=$mysql_dir/my.cnf& + sleep 2 +} + +function mysql_create_database +{ + mysql_dir=$1 + db_name=$2 + echo '>>> Creating database' + mysqladmin --defaults-file=$mysql_dir/my.cnf --user=$AREX_MYSQL_ADMIN password 'strong_secret' + mysqladmin --defaults-file=$mysql_dir/my.cnf --user=$AREX_MYSQL_ADMIN --password='strong_secret' create $db_name +} + +function mysql_invoke_script +{ + mysql_dir=$1 + mysql_script=$2 + user=$3 + pass=$4 + if [ -z "$user" ]; then +user=$AREX_MYSQL_ADMIN +pass='strong_secret' + fi + mysql--defaults-file=$mysql_dir/my.cnf --user=$user --password=$pass < $mysql_script +} + +function mysql_shutdown_server() +{ + mysql_dir=$1 + + echo + echo '>>> Shutting the mysql server down' + cat << EOF > $mysql_dir/shutdown.sql +SHUTDOWN; +EOF + mysql_invoke_script $mysql_dir $mysql_dir/shutdown.sql + sleep
commit apache-rex for openSUSE:Factory
Hello community, here is the log from the commit of package apache-rex for openSUSE:Factory checked in at 2020-02-22 18:59:40 Comparing /work/SRC/openSUSE:Factory/apache-rex (Old) and /work/SRC/openSUSE:Factory/.apache-rex.new.26092 (New) Package is "apache-rex" Sat Feb 22 18:59:40 2020 rev:18 rq:774970 version:20200210 Changes: --- /work/SRC/openSUSE:Factory/apache-rex/apache-rex.changes2019-12-29 15:48:20.787139264 +0100 +++ /work/SRC/openSUSE:Factory/.apache-rex.new.26092/apache-rex.changes 2020-02-22 18:59:43.393556185 +0100 @@ -1,0 +2,6 @@ +Mon Feb 10 16:10:10 UTC 2020 - pgaj...@suse.com + +- version update to 20200210 + * add debug-wku + +--- Other differences: -- ++ apache-rex.spec ++ --- /var/tmp/diff_new_pack.Ikaxxc/_old 2020-02-22 18:59:44.005557371 +0100 +++ /var/tmp/diff_new_pack.Ikaxxc/_new 2020-02-22 18:59:44.005557371 +0100 @@ -1,7 +1,7 @@ # # spec file for package apache-rex # -# Copyright (c) 2019 SUSE LLC +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -25,7 +25,7 @@ %define macros_file macros.apache-rex Name: apache-rex -Version:20191219 +Version:20200210 Release:0 Summary:Script for Apache HTTPD Runnable Examples License:Apache-2.0 ++ apache-rex.tar.bz2 ++ 2987 lines of diff (skipped)
commit apache-rex for openSUSE:Factory
Hello community, here is the log from the commit of package apache-rex for openSUSE:Factory checked in at 2019-12-29 15:48:12 Comparing /work/SRC/openSUSE:Factory/apache-rex (Old) and /work/SRC/openSUSE:Factory/.apache-rex.new.6675 (New) Package is "apache-rex" Sun Dec 29 15:48:12 2019 rev:17 rq:759214 version:20191219 Changes: --- /work/SRC/openSUSE:Factory/apache-rex/apache-rex.changes2019-12-07 15:15:45.703792668 +0100 +++ /work/SRC/openSUSE:Factory/.apache-rex.new.6675/apache-rex.changes 2019-12-29 15:48:20.787139264 +0100 @@ -1,0 +2,7 @@ +Wed Dec 18 10:29:45 UTC 2019 - pgaj...@suse.com + +- version update to 20191219 + * modify: mod_authn_dbd-pgsql: control ipc + * new:mod_authz_unixgroup + +--- Other differences: -- ++ apache-rex.spec ++ --- /var/tmp/diff_new_pack.tCy9xn/_old 2019-12-29 15:48:21.999139817 +0100 +++ /var/tmp/diff_new_pack.tCy9xn/_new 2019-12-29 15:48:22.003139819 +0100 @@ -25,7 +25,7 @@ %define macros_file macros.apache-rex Name: apache-rex -Version:20191203 +Version:20191219 Release:0 Summary:Script for Apache HTTPD Runnable Examples License:Apache-2.0 ++ apache-rex.tar.bz2 ++ 3038 lines of diff (skipped)
commit apache-rex for openSUSE:Factory
Hello community, here is the log from the commit of package apache-rex for openSUSE:Factory checked in at 2019-12-07 15:15:08 Comparing /work/SRC/openSUSE:Factory/apache-rex (Old) and /work/SRC/openSUSE:Factory/.apache-rex.new.4691 (New) Package is "apache-rex" Sat Dec 7 15:15:08 2019 rev:16 rq:753282 version:20191203 Changes: --- /work/SRC/openSUSE:Factory/apache-rex/apache-rex.changes2019-11-03 10:30:55.489018900 +0100 +++ /work/SRC/openSUSE:Factory/.apache-rex.new.4691/apache-rex.changes 2019-12-07 15:15:45.703792668 +0100 @@ -1,0 +2,9 @@ +Tue Dec 3 13:34:14 UTC 2019 - pgaj...@suse.com + +- version update to 20191203 + * add uwsgi support + * new +. mod_proxy_uwsgi-basic +. mod_wsgi-basic + +--- Other differences: -- ++ apache-rex.spec ++ --- /var/tmp/diff_new_pack.MKMo9Z/_old 2019-12-07 15:15:49.843792082 +0100 +++ /var/tmp/diff_new_pack.MKMo9Z/_new 2019-12-07 15:15:49.855792080 +0100 @@ -1,7 +1,7 @@ # # spec file for package apache-rex # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -25,12 +25,12 @@ %define macros_file macros.apache-rex Name: apache-rex -Version:20191022 +Version:20191203 Release:0 Summary:Script for Apache HTTPD Runnable Examples License:Apache-2.0 Group: Documentation/Howto -Url:https://github.com/pgajdos/apache-rex +URL:https://github.com/pgajdos/apache-rex Source0:%{name}.tar.bz2 Source1:apache-rex-rpmlintrc Source2:%{macros_file} ++ apache-rex.tar.bz2 ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/.gitignore new/apache-rex/.gitignore --- old/apache-rex/.gitignore 1970-01-01 01:00:00.0 +0100 +++ new/apache-rex/.gitignore 2019-12-03 15:07:08.553824848 +0100 @@ -0,0 +1 @@ +*.swp diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/README.md new/apache-rex/README.md --- old/apache-rex/README.md2019-10-22 08:18:35.629562689 +0200 +++ new/apache-rex/README.md2019-12-03 15:07:08.565824914 +0100 @@ -154,5 +154,5 @@ Full path to `sed` command (required for some Filter example definitions). * `AREX_ROTATELOGS_COMMAND` Full path to `rotatelogs` or `rotatelogs2` command (required e. g. in piped logs). -* `AREX_SOFTHSM2_SO` - mailny used in lib/softhsm, it is softhsm shared library module +* `AREX_SOFTHSM2_SO` + Mainly used in lib/softhsm, it is softhsm shared library module. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/contents new/apache-rex/contents --- old/apache-rex/contents 2019-10-22 08:18:35.613562599 +0200 +++ new/apache-rex/contents 2019-12-03 15:07:08.565824914 +0100 @@ -84,6 +84,8 @@ mod_proxy_ftp-basic mod_proxy_fcgi-basic mod_proxy_fcgi-sock +mod_wsgi-basic +mod_proxy_uwsgi-basic mod_php-basic mod_proxy_fcgi-php-fpm mod_proxy_fcgi-php-fpm-CGIPassAuth diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/mod_proxy_uwsgi-basic/BINARIES new/apache-rex/mod_proxy_uwsgi-basic/BINARIES --- old/apache-rex/mod_proxy_uwsgi-basic/BINARIES 1970-01-01 01:00:00.0 +0100 +++ new/apache-rex/mod_proxy_uwsgi-basic/BINARIES 2019-12-03 15:07:08.565824914 +0100 @@ -0,0 +1 @@ +uwsgi diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/mod_proxy_uwsgi-basic/DESCRIPTION new/apache-rex/mod_proxy_uwsgi-basic/DESCRIPTION --- old/apache-rex/mod_proxy_uwsgi-basic/DESCRIPTION1970-01-01 01:00:00.0 +0100 +++ new/apache-rex/mod_proxy_uwsgi-basic/DESCRIPTION2019-12-03 15:07:08.565824914 +0100 @@ -0,0 +1 @@ +How to connect via proxy module to uwsgi server. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/mod_proxy_uwsgi-basic/MODULES new/apache-rex/mod_proxy_uwsgi-basic/MODULES --- old/apache-rex/mod_proxy_uwsgi-basic/MODULES1970-01-01 01:00:00.0 +0100 +++ new/apache-rex/mod_proxy_uwsgi-basic/MODULES2019-12-03 15:07:08.565824914 +0100 @@ -0,0 +1 @@ +proxy proxy_uwsgi proxy_http diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/mod_proxy_uwsgi-basic/example.conf.in new/apache-rex/mod_proxy_uwsgi-basic/example.conf.in --- old/apache-rex/mod_pro
commit apache-rex for openSUSE:Factory
Hello community, here is the log from the commit of package apache-rex for openSUSE:Factory checked in at 2019-11-03 10:30:50 Comparing /work/SRC/openSUSE:Factory/apache-rex (Old) and /work/SRC/openSUSE:Factory/.apache-rex.new.2990 (New) Package is "apache-rex" Sun Nov 3 10:30:50 2019 rev:15 rq:743665 version:20191022 Changes: --- /work/SRC/openSUSE:Factory/apache-rex/apache-rex.changes2019-09-17 13:36:37.533850355 +0200 +++ /work/SRC/openSUSE:Factory/.apache-rex.new.2990/apache-rex.changes 2019-11-03 10:30:55.489018900 +0100 @@ -1,0 +2,19 @@ +Tue Oct 22 06:19:52 UTC 2019 - pgaj...@suse.com + +- version update to 20191022 + * add softshm support + * new +. mod_whatkilledus-basic +. mod_diagnostics-basic +. mod_ssl-pkcs11 + * expand +. core-ErrorLogFormat-basic +. mod_ssl-basic +. core-KeepAlive-basic +. mod_log_config-basic +. mod_log_debug-basic +. mod_dumpio-basic +. mod_log_forensic-basic +. mod_unique_id-basic + +--- Other differences: -- ++ apache-rex.spec ++ --- /var/tmp/diff_new_pack.X7U6yf/_old 2019-11-03 10:30:56.645020283 +0100 +++ /var/tmp/diff_new_pack.X7U6yf/_new 2019-11-03 10:30:56.649020287 +0100 @@ -25,7 +25,7 @@ %define macros_file macros.apache-rex Name: apache-rex -Version:20190906 +Version:20191022 Release:0 Summary:Script for Apache HTTPD Runnable Examples License:Apache-2.0 ++ apache-rex.tar.bz2 ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/README.md new/apache-rex/README.md --- old/apache-rex/README.md2019-09-06 11:45:01.183616776 +0200 +++ new/apache-rex/README.md2019-10-22 08:18:35.629562689 +0200 @@ -101,6 +101,8 @@ * `pre-run.sh` (optional) Shows what has to be done before apache start (e. g. place test ssl certificate on correct place). `pre-run.sh` return value is not checked. + It can write `$AREX_RUN_DIR/server_environment`, which will be sourced + into httpd environment. * `run.sh` (required) Determines an example flow. Script exits `0` in case whole example passed or number of failed subexample. If there are more subexamples failing, @@ -152,4 +154,5 @@ Full path to `sed` command (required for some Filter example definitions). * `AREX_ROTATELOGS_COMMAND` Full path to `rotatelogs` or `rotatelogs2` command (required e. g. in piped logs). - +* `AREX_SOFTHSM2_SO` + mailny used in lib/softhsm, it is softhsm shared library module diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/contents new/apache-rex/contents --- old/apache-rex/contents 2019-09-06 11:45:01.227617040 +0200 +++ new/apache-rex/contents 2019-10-22 08:18:35.613562599 +0200 @@ -155,7 +155,7 @@ mod_cache-filter mod_file_cache-basic mod_expires-basic -mod_unique-id-basic +mod_unique_id-basic mod_lua-basic mod_lua-authz-provider mod_lua-authz-provider-abz57204 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/core-ErrorLogFormat-basic/example.conf new/apache-rex/core-ErrorLogFormat-basic/example.conf --- old/apache-rex/core-ErrorLogFormat-basic/example.conf 2019-09-06 11:45:03.447630371 +0200 +++ new/apache-rex/core-ErrorLogFormat-basic/example.conf 2019-10-22 08:18:35.669562914 +0200 @@ -1,2 +1,2 @@ -ErrorLogFormat "[MYLOGFORMAT] %M [MYLOGFORMAT]" +ErrorLogFormat "[MYLOGFORMAT] [DATE]%t[DATE] [MESSAGE]%M[MESSAGE] [MYLOGFORMAT]" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/core-ErrorLogFormat-basic/run.sh new/apache-rex/core-ErrorLogFormat-basic/run.sh --- old/apache-rex/core-ErrorLogFormat-basic/run.sh 2019-09-06 11:45:03.447630371 +0200 +++ new/apache-rex/core-ErrorLogFormat-basic/run.sh 2019-10-22 08:18:35.669562914 +0200 @@ -3,4 +3,11 @@ echo "[1] error_log contains specified format" cat $AREX_RUN_DIR/error_log | grep "[MYLOGFORMAT].*[MYLOGFORMAT]" || exit_code=1 +echo "[2] server time (time in an error_log) timezone matches system one" +servertimesec=$(tail -n 1 $AREX_RUN_DIR/error_log | sed 's:.*[DATE]\(.*\)[DATE].*::' | date +%s) +systemtimesec=$(date +%s) +difference=$((systemtimesec-servertimesec)) +echo $servertimesec - $systemtimesec = $difference +[ $difference -lt 5 ] || exit_code=2 + exit $exit_code diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/core-KeepAlive-basic/MODULES new/apache-rex/core-KeepAlive-basic/MODULES --- old/apache-rex/core-KeepAlive-basic/MODULES 2019-09-06 11
commit apache-rex for openSUSE:Factory
Hello community, here is the log from the commit of package apache-rex for openSUSE:Factory checked in at 2019-09-17 13:36:36 Comparing /work/SRC/openSUSE:Factory/apache-rex (Old) and /work/SRC/openSUSE:Factory/.apache-rex.new.7948 (New) Package is "apache-rex" Tue Sep 17 13:36:36 2019 rev:14 rq:730662 version:20190906 Changes: --- /work/SRC/openSUSE:Factory/apache-rex/apache-rex.changes2019-07-01 10:43:37.461403954 +0200 +++ /work/SRC/openSUSE:Factory/.apache-rex.new.7948/apache-rex.changes 2019-09-17 13:36:37.533850355 +0200 @@ -1,0 +2,15 @@ +Fri Sep 6 09:47:56 UTC 2019 - Petr Gajdos + +- version update to 20191006 + * mod_ssl-basic: show SSL protocol used by default + +--- +Wed Sep 4 11:22:16 UTC 2019 - pgaj...@suse.com + +- version update to 20191005 + * extended core-ranges-basic + * fix openssl_ocsp_responder_stop() + * more generic ssl error checking + * mysql_install_db --force required by older distros + +--- Other differences: -- ++ apache-rex.spec ++ --- /var/tmp/diff_new_pack.kAwLR1/_old 2019-09-17 13:36:38.329850228 +0200 +++ /var/tmp/diff_new_pack.kAwLR1/_new 2019-09-17 13:36:38.329850228 +0200 @@ -25,7 +25,7 @@ %define macros_file macros.apache-rex Name: apache-rex -Version:20190628 +Version:20190906 Release:0 Summary:Script for Apache HTTPD Runnable Examples License:Apache-2.0 ++ apache-rex.tar.bz2 ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/.gitignore new/apache-rex/.gitignore --- old/apache-rex/.gitignore 2019-06-28 13:14:21.329924585 +0200 +++ new/apache-rex/.gitignore 1970-01-01 01:00:00.0 +0100 @@ -1 +0,0 @@ -*.swp diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/core-ranges-basic/DESCRIPTION new/apache-rex/core-ranges-basic/DESCRIPTION --- old/apache-rex/core-ranges-basic/DESCRIPTION2019-06-28 13:14:21.329924585 +0200 +++ new/apache-rex/core-ranges-basic/DESCRIPTION2019-09-06 11:45:01.111616344 +0200 @@ -1 +1 @@ -Demonstrate basic VirtualHost functionality. +Show Range: header usage. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/core-ranges-basic/MODULES new/apache-rex/core-ranges-basic/MODULES --- old/apache-rex/core-ranges-basic/MODULES2019-06-28 13:14:21.329924585 +0200 +++ new/apache-rex/core-ranges-basic/MODULES2019-09-06 11:45:01.111616344 +0200 @@ -0,0 +1 @@ +setenvif version diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/core-ranges-basic/example.conf.in new/apache-rex/core-ranges-basic/example.conf.in --- old/apache-rex/core-ranges-basic/example.conf.in2019-06-28 13:14:21.329924585 +0200 +++ new/apache-rex/core-ranges-basic/example.conf.in2019-09-06 11:45:01.111616344 +0200 @@ -6,3 +6,19 @@ MaxRanges none +MaxRanges 1 +SetEnvIf Range "-$" unlimited_ranges + + + Order Allow,Deny + Allow from all + Deny from env=unlimited_ranges + + = 2.3.0> + + Require all granted + Require not env unlimited_ranges + + + + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/core-ranges-basic/run.sh new/apache-rex/core-ranges-basic/run.sh --- old/apache-rex/core-ranges-basic/run.sh 2019-06-28 13:14:21.329924585 +0200 +++ new/apache-rex/core-ranges-basic/run.sh 2019-09-06 11:45:00.699613871 +0200 @@ -2,10 +2,12 @@ msg='Today, there will be raining whole day.' note='Otherwise the weather will be different.' -error='416 Requested Range Not Satisfiable' +error_416='416 Requested Range Not Satisfiable' echo $msg > $AREX_DOCUMENT_ROOT/weather-data.bufr mkdir -p $AREX_DOCUMENT_ROOT/no-ranges/ echo "$note" > $AREX_DOCUMENT_ROOT/no-ranges/note.txt +mkdir -p $AREX_DOCUMENT_ROOT/no-unlimited-ranges/ +echo "$msg $note" > $AREX_DOCUMENT_ROOT/no-unlimited-ranges/data.txt echo "[1] get document in 10-byte chunks" lbound=0 @@ -23,7 +25,7 @@ curl -s -r '5-15' http://localhost:$AREX_PORT/no-ranges/note.txt | grep "$note" || exit_code=2 echo "[3] the range not found as the document is shorter than lower bound" -curl -s -r '50-100' http://localhost:$AREX_PORT/weather-data.bufr | grep "$error" || exit_code=3 +curl -s -r '50-100' http://localhost:$AREX_PORT/weather-data.bufr | grep "$error_416" || exit_code=3 echo "[4] as demonstrated in [1] already, 16- and 16- have the same result" part= @@ -31,7 +33,7 @@ curl -s -r '18
commit apache-rex for openSUSE:Factory
Hello community, here is the log from the commit of package apache-rex for openSUSE:Factory checked in at 2019-07-01 10:43:36 Comparing /work/SRC/openSUSE:Factory/apache-rex (Old) and /work/SRC/openSUSE:Factory/.apache-rex.new.4615 (New) Package is "apache-rex" Mon Jul 1 10:43:36 2019 rev:13 rq:712394 version:20190628 Changes: --- /work/SRC/openSUSE:Factory/apache-rex/apache-rex.changes2019-06-24 21:45:04.435728286 +0200 +++ /work/SRC/openSUSE:Factory/.apache-rex.new.4615/apache-rex.changes 2019-07-01 10:43:37.461403954 +0200 @@ -1,0 +2,35 @@ +Fri Jun 28 09:00:12 UTC 2019 - pgaj...@suse.com + +- version update to 20190628 + * new example mod_authnz_external-basic + * nex example mod_nss-basic + +--- +Thu Jun 27 09:31:36 UTC 2019 - pgaj...@suse.com + +- version update to 20190627 + * new example mod_bw-basic + * new example mod_auth_token-basic + * new example mod_rivet-basic + +--- +Wed Jun 26 09:17:01 UTC 2019 - pgaj...@suse.com + +- version update to 20190626 + * new example mod_authn_otp-basic + * new example mod_gnutls-basic + +--- +Tue Jun 25 13:47:39 UTC 2019 - pgaj...@suse.com + +- version update to 20190625 + * new example mod_fcgid-basic + +--- +Mon Jun 24 19:50:45 UTC 2019 - pgaj...@suse.com + +- version update to 20190624 + * new example mod_bmx-basic + * new rpm macro %apache_rex_deps + +--- Other differences: -- ++ apache-rex.spec ++ --- /var/tmp/diff_new_pack.5Bofqz/_old 2019-07-01 10:43:38.645405886 +0200 +++ /var/tmp/diff_new_pack.5Bofqz/_new 2019-07-01 10:43:38.677405939 +0200 @@ -25,7 +25,7 @@ %define macros_file macros.apache-rex Name: apache-rex -Version:20190529 +Version:20190628 Release:0 Summary:Script for Apache HTTPD Runnable Examples License:Apache-2.0 @@ -50,7 +50,6 @@ %setup -q -n %{name} %build -sed -i 's:sleep 1:sleep 3:g' mod_proxy_ftp-basic/run.sh %install mkdir -p %{buildroot}%{_bindir} ++ apache-rex.tar.bz2 ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/mod_auth_token-basic/DESCRIPTION new/apache-rex/mod_auth_token-basic/DESCRIPTION --- old/apache-rex/mod_auth_token-basic/DESCRIPTION 1970-01-01 01:00:00.0 +0100 +++ new/apache-rex/mod_auth_token-basic/DESCRIPTION 2019-06-28 13:14:22.025928398 +0200 @@ -0,0 +1 @@ +Token based access with mod_auth_token. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/mod_auth_token-basic/MODULES new/apache-rex/mod_auth_token-basic/MODULES --- old/apache-rex/mod_auth_token-basic/MODULES 1970-01-01 01:00:00.0 +0100 +++ new/apache-rex/mod_auth_token-basic/MODULES 2019-06-28 13:14:22.025928398 +0200 @@ -0,0 +1 @@ +auth_token diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/mod_auth_token-basic/example.conf.in new/apache-rex/mod_auth_token-basic/example.conf.in --- old/apache-rex/mod_auth_token-basic/example.conf.in 1970-01-01 01:00:00.0 +0100 +++ new/apache-rex/mod_auth_token-basic/example.conf.in 2019-06-28 13:14:22.025928398 +0200 @@ -0,0 +1,9 @@ + + AuthTokenSecret "secret" + AuthTokenPrefix /protected/ + AuthTokenTimeout 60 + + + @AREX_ALLOW_FROM_LOCALHOST@ + + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/mod_auth_token-basic/run.sh new/apache-rex/mod_auth_token-basic/run.sh --- old/apache-rex/mod_auth_token-basic/run.sh 1970-01-01 01:00:00.0 +0100 +++ new/apache-rex/mod_auth_token-basic/run.sh 2019-06-28 13:14:22.025928398 +0200 @@ -0,0 +1,19 @@ +exit_code=0 +LogLevel debug + +# secret token +SECRET='secret' + +mkdir -p $AREX_DOCUMENT_ROOT/protected +echo 'HOLA' > $AREX_DOCUMENT_ROOT/protected/file.txt + +echo "[1] direct acces to /protected/ is forbidden" +curl -s http://localhost:$AREX_PORT/protected/file.txt | grep '.*401.*' || exit_code=1 + +now_hex=$(printf "%x" $(date +%s)); +token=$(echo -n "$SECRET/file.txt$now_hex" | md5sum | cut -c -32) + +echo "[2] access to /protected/$token/$now_hex/ allowed" +curl -s http://localhost:$AREX_PORT/protected/$token/$now_hex/file.txt | grep 'HOLA' || exit_code=2 + +exit $exit_code diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/mod_authn_otp-basic/BINARIES new/apache-rex/m
commit apache-rex for openSUSE:Factory
Hello community, here is the log from the commit of package apache-rex for openSUSE:Factory checked in at 2019-06-24 21:45:03 Comparing /work/SRC/openSUSE:Factory/apache-rex (Old) and /work/SRC/openSUSE:Factory/.apache-rex.new.4615 (New) Package is "apache-rex" Mon Jun 24 21:45:03 2019 rev:12 rq:710506 version:20190529 Changes: --- /work/SRC/openSUSE:Factory/apache-rex/apache-rex.changes2019-06-01 09:55:15.235206418 +0200 +++ /work/SRC/openSUSE:Factory/.apache-rex.new.4615/apache-rex.changes 2019-06-24 21:45:04.435728286 +0200 @@ -1,0 +2,8 @@ +Mon Jun 10 06:38:19 UTC 2019 - pgaj...@suse.com + +- version update to 20190610 + * run-rex: slight reactorization + * new: mod_auth_core-env + * fixed mod_proxy_ftp-basic (seccomp_sandbox=NO) + +--- Other differences: -- ++ apache-rex.tar.bz2 ++ 2042 lines of diff (skipped)
commit apache-rex for openSUSE:Factory
binwXZ9QJHe9b.bin Description: Binary data
commit apache-rex for openSUSE:Factory
bin_DndmzAhxz.bin Description: Binary data
commit apache-rex for openSUSE:Factory
Hello community, here is the log from the commit of package apache-rex for openSUSE:Factory checked in at 2018-11-28 11:15:09 Comparing /work/SRC/openSUSE:Factory/apache-rex (Old) and /work/SRC/openSUSE:Factory/.apache-rex.new.19453 (New) Package is "apache-rex" Wed Nov 28 11:15:09 2018 rev:9 rq:652195 version:20181127 Changes: --- /work/SRC/openSUSE:Factory/apache-rex/apache-rex.changes2018-09-24 13:12:35.101777908 +0200 +++ /work/SRC/openSUSE:Factory/.apache-rex.new.19453/apache-rex.changes 2018-11-28 11:15:11.874747643 +0100 @@ -1,0 +2,28 @@ +Tue Nov 27 11:13:49 UTC 2018 - Petr Gajdos + +- added mod_php-basic +- modules can be given as a regular expression, e. g. 'mod_php[5,7]' + +--- +Fri Nov 9 15:22:02 UTC 2018 - Petr Gajdos + +- do not run mod_ssl-verify-server-OCSPStapling when curl does + not support --cert-status + +--- +Fri Nov 2 20:13:20 UTC 2018 - Petr Gajdos + +- ssl refactoring +- amended: + * mod_ssl-basic + * mod_ssl-SSLCryptoDevice + * mod_ssl-verify-client +- moved: + * mod_ssl-CRL to mod_ssl-verify-client-CRL +- new: + * mod_ssl-verify-client-OCSP + * mod_ssl-verify-server-CRL + * mod_ssl-verify-server-OCSP + * mod_ssl-verify-server-OCSPStapling + +--- Other differences: -- ++ apache-rex.spec ++ --- /var/tmp/diff_new_pack.1YGKv5/_old 2018-11-28 11:15:12.698746492 +0100 +++ /var/tmp/diff_new_pack.1YGKv5/_new 2018-11-28 11:15:12.702746486 +0100 @@ -12,7 +12,7 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # @@ -25,7 +25,7 @@ %define macros_file macros.apache-rex Name: apache-rex -Version:20180913 +Version:20181127 Release:0 Summary:Script for Apache HTTPD Runnable Examples License:Apache-2.0 ++ apache-rex.tar.bz2 ++ 3260 lines of diff (skipped)
commit apache-rex for openSUSE:Factory
Hello community, here is the log from the commit of package apache-rex for openSUSE:Factory checked in at 2018-09-24 13:12:34 Comparing /work/SRC/openSUSE:Factory/apache-rex (Old) and /work/SRC/openSUSE:Factory/.apache-rex.new (New) Package is "apache-rex" Mon Sep 24 13:12:34 2018 rev:8 rq:636942 version:20180913 Changes: --- /work/SRC/openSUSE:Factory/apache-rex/apache-rex.changes2018-09-07 15:41:41.666388855 +0200 +++ /work/SRC/openSUSE:Factory/.apache-rex.new/apache-rex.changes 2018-09-24 13:12:35.101777908 +0200 @@ -1,0 +2,7 @@ +Thu Sep 13 20:21:18 UTC 2018 - Petr Gajdos + +- core-HttpProtocolOptions-basic: fix for sle11 (nc had not wait + for response) +- mod_perl-basic: fix for sle11 (was hardcoded 2.4 access control) + +--- Other differences: -- ++ apache-rex.spec ++ --- /var/tmp/diff_new_pack.37OSdf/_old 2018-09-24 13:12:35.705776848 +0200 +++ /var/tmp/diff_new_pack.37OSdf/_new 2018-09-24 13:12:35.709776840 +0200 @@ -25,7 +25,7 @@ %define macros_file macros.apache-rex Name: apache-rex -Version:20180830 +Version:20180913 Release:0 Summary:Script for Apache HTTPD Runnable Examples License:Apache-2.0 ++ apache-rex.tar.bz2 ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/.git/COMMIT_EDITMSG new/apache-rex/.git/COMMIT_EDITMSG --- old/apache-rex/.git/COMMIT_EDITMSG 2018-08-30 12:01:50.834177343 +0200 +++ new/apache-rex/.git/COMMIT_EDITMSG 2018-09-13 22:19:41.334468659 +0200 @@ -1 +1 @@ -quiet check +after EOF on stdin, wait forever (default in newer, but not in the older distros) Binary files old/apache-rex/.git/index and new/apache-rex/.git/index differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/.git/logs/HEAD new/apache-rex/.git/logs/HEAD --- old/apache-rex/.git/logs/HEAD 2018-08-30 12:01:50.834177343 +0200 +++ new/apache-rex/.git/logs/HEAD 2018-09-13 22:19:41.334468659 +0200 @@ -22,3 +22,5 @@ c4558147c38708f698a444ee15b9314e945f8deb 134ab93a583d9d1e6a0e54b27441a4e9caab7a32 pgajdos 1535622989 +0200 reset: moving to HEAD^ 134ab93a583d9d1e6a0e54b27441a4e9caab7a32 541acf69fcc2433efe8268a9614a03974d0251e0 pgajdos 1535623154 +0200 commit: core-Satisfy-basic works in 2.4 541acf69fcc2433efe8268a9614a03974d0251e0 968357db06835b48c433e758afa5747f20052abe pgajdos 1535623310 +0200 commit: quiet check +968357db06835b48c433e758afa5747f20052abe bea89485ecbffbacaf7287ec06ee69baf1864acd pgajdos 1536844506 +0200 commit: fix for 2.2 -- do not hardcode access control +bea89485ecbffbacaf7287ec06ee69baf1864acd 690f39fecd8b45eaee277dd21a46e4dfdcf49470 pgajdos 1536869981 +0200 commit: after EOF on stdin, wait forever (default in newer, but not in the older distros) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/.git/logs/refs/heads/master new/apache-rex/.git/logs/refs/heads/master --- old/apache-rex/.git/logs/refs/heads/master 2018-08-30 12:01:50.834177343 +0200 +++ new/apache-rex/.git/logs/refs/heads/master 2018-09-13 22:19:41.334468659 +0200 @@ -22,3 +22,5 @@ c4558147c38708f698a444ee15b9314e945f8deb 134ab93a583d9d1e6a0e54b27441a4e9caab7a32 pgajdos 1535622989 +0200 reset: moving to HEAD^ 134ab93a583d9d1e6a0e54b27441a4e9caab7a32 541acf69fcc2433efe8268a9614a03974d0251e0 pgajdos 1535623154 +0200 commit: core-Satisfy-basic works in 2.4 541acf69fcc2433efe8268a9614a03974d0251e0 968357db06835b48c433e758afa5747f20052abe pgajdos 1535623310 +0200 commit: quiet check +968357db06835b48c433e758afa5747f20052abe bea89485ecbffbacaf7287ec06ee69baf1864acd pgajdos 1536844506 +0200 commit: fix for 2.2 -- do not hardcode access control +bea89485ecbffbacaf7287ec06ee69baf1864acd 690f39fecd8b45eaee277dd21a46e4dfdcf49470 pgajdos 1536869981 +0200 commit: after EOF on stdin, wait forever (default in newer, but not in the older distros) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/apache-rex/.git/logs/refs/remotes/origin/master new/apache-rex/.git/logs/refs/remotes/origin/master --- old/apache-rex/.git/logs/refs/remotes/origin/master 2018-08-30 12:01:55.686201662 +0200 +++ new/apache-rex/.git/logs/refs/remotes/origin/master 2018-09-13 22:19:56.446545112 +0200 @@ -15,3 +15,5 @@ c273ee3e69ac976c2947392b544db60b58b5be5a 134ab93a583d9d1e6a0e54b27441a4e9caab7a32 pgajdos 1535131513 +0200 update by push 134ab93a583d9d1e6a0e54b27441a4e9caab7a32 541acf69fcc2433efe8268a9614a03974d0251e0 pgajdos 1535623172 +0200 update by push 541a
commit apache-rex for openSUSE:Factory
binG0VUf6xft2.bin Description: Binary data
commit apache-rex for openSUSE:Factory
binX_vnitqgpr.bin Description: Binary data
commit apache-rex for openSUSE:Factory
bin1Ufv4EXlap.bin Description: Binary data
commit apache-rex for openSUSE:Factory
binnKZEgLpAux.bin Description: Binary data
commit apache-rex for openSUSE:Factory
bin2RWVMcUMhV.bin Description: Binary data
commit apache-rex for openSUSE:Factory
binODnJRUhwLR.bin Description: Binary data