osc copypac from project:Apache:Test package:apache-rex revision:26

OBS-URL: https://build.opensuse.org/package/show/Apache/apache-rex?expand=0&rev=1
This commit is contained in:
Petr Gajdos 2017-10-31 06:58:23 +00:00 committed by Git OBS Bridge
commit 3f28751d8a
7 changed files with 915 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

170
apache-rex-check.spec Normal file
View File

@ -0,0 +1,170 @@
#
# spec file for package apache-rex-check
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# 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/
#
Name: apache-rex-check
Version: 20170912
Release: 0
Summary: Apache HTTPD Runnable Examples
License: Apache-2.0
Group: Productivity/Networking/Web/Servers
Url: https://github.com/pgajdos/apache-rex
# in case we would want to drop this dependency:
# needed just for %%{apache_version}
BuildRequires: apache-rpm-macros
BuildRequires: apache-rex
BuildRequires: gdb
BuildRequires: libapr-util1-dbd-sqlite3
%if %{?suse_version} > 1320 || (0%{?is_opensuse} == 1 && 0%{?suse_version} == 1315)
# it should also work for 12sp2, but how I can specify it?
BuildRequires: nghttp2
%endif
%if 0%{?suse_version} > 1110
BuildRequires: perl-FastCGI
%endif
%if 0%{?suse_version} > 1110
BuildRequires: php-fpm
%endif
BuildRequires: ps
BuildRequires: python
%if 0%{?is_opensuse} == 1 || 0%{?suse_version} == 1110
BuildRequires: python-scgi
%endif
%if 0%{?suse_version} > 1110
BuildRequires: python-tornado
%endif
%if 0%{?suse_version} >= 1315 && 0%{?suse_version} != 1320
BuildRequires: python-websocket-client
%endif
BuildRequires: sqlite3
%if 0%{?suse_version} > 1110
BuildRequires: spawn-fcgi
%endif
BuildRequires: vsftpd
%if 0%{?suse_version} > 1320
# for vsftpd; otherwise I get in error_log for mod_proxy_ftp-basic:
# [Mon May 22 14:20:11.099478 2017] [proxy:error] [pid 2194] [client 127.0.0.1:42608] AH00898: OOPS: vsftpd: cannot locate user specified in 'ftp_username':ftp returned by /
# [Mon May 22 14:20:11.151552 2017] [proxy:error] [pid 2195] [client 127.0.0.1:42612] AH00898: OOPS: vsftpd: cannot locate user specified in 'ftp_username':ftp returned by /welcome
Requires(pre): user(ftp)
Requires(pre): group(ftp)
%endif
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%description
Package that checks all runnable examples from apache-rex
run properly.
%prep
%build
%install
%check
exit_code=0
#
# expected failed runs
#
XFAIL_RUNS=""
# on changeroot, currently on tumbleweed, dumping the core does not
# seem to work:
# :/ # cat sigsegv.c
#int main(void)
#{
#char *s = "hello world";
#*s = 'H';
#}
#
#:/ # gcc -o sigsegv sigsegv.c
#:/ # ./sigsegv
#Segmentation fault (core dumped)
#:/ # coredumpctl list
#No coredumps found.
#:/ # cat /proc/sys/kernel/core_pattern
#|/usr/lib/systemd/systemd-coredump %P %u %g %s %t %c %e
#:/ #
%if 0%{?suse_version} > 1320
XFAIL_RUNS="$XFAIL_RUNS debug-coredump"
%endif
# curl seem to have some issues with http2 protocol in 42.2 (12sp2) run
# this way (newer curl works on the same server):
#
# ex. on the same 42.2 (12sp2) server, with
# -> 42.2 (12sp2) curl:
# $ curl -s -v --http2 -k https://localhost:60081/vh1/
# $
#
# -> tumblweed curl:
# $ curl -s -v --http2 -k https://localhost:60081/vh1/ 2>&1 | grep 'Using HTTP2'
# * Using HTTP2, server supports multi-use
# $
%if 0%{?sle_version} == 120200
XFAIL_RUNS="mod_http2-basic"
%endif
%if 0%{apache_version} <= 20420
# mod_proxy_express have a bug https://bz.apache.org/bugzilla/show_bug.cgi?id=59230, fixed in 2.4.20
# not backported
XFAIL_RUNS="$XFAIL_RUNS mod_proxy_express-basic"
%endif
%if 0%{?suse_version} == 1320
# mod_proxy_balancer have a bug https://bz.apache.org/bugzilla/show_bug.cgi?id=56925, fixed in 2.4.13
# will be backported to sle12 trough bsc#951692
XFAIL_RUNS="$XFAIL_RUNS mod_proxy_balancer-abz56925"
%endif
%if 0%{?suse_version} < 1315
# HTTPOXY vulnerability, https://bugzilla.suse.com/show_bug.cgi?id=988488
# SLE11: we do not have updates in obs
XFAIL_RUNS="$XFAIL_RUNS mod_cgi-httpoxy"
%endif
%if 0%{?suse_version} == 1110
# probably CVE-2003-1418 fix is not propagated from 11sp3 to OBS
# on 11sp4 this test would succed, I can not distinguish between
# 11sp4 and 11sp3 though; therefore, this following can be removed
# as soon as 11sp3 build is turned off
XFAIL_RUNS="$XFAIL_RUNS core-FileETag-basic"
%endif
# behaviour of logging to script_log changed in time*), it is debug
# only, so test only for recent versions
# *) e. g. http://svn.apache.org/viewvc?view=revision&revision=1626978
%if 0%{apache_version} < 20416
XFAIL_RUNS="$XFAIL_RUNS mod_cgi-ScriptLog"
%endif
# I guess stderr won't work for 2.2 this way, needs to be investigated
%if 0%{apache_version} < 20300
XFAIL_RUNS="$XFAIL_RUNS mod_cgi-stderr"
%endif
#
echo "Expected FAILURES: $XFAIL_RUNS"
#
# run examples
#
cd %{_docdir}/apache-rex
VERBOSITY=2 run-rex contents | tee run_log
#
# check failed ones against expected failures
#
failed_examples=$(grep 'FAILED RUNS:' run_log | sed 's/^FAILED RUNS://')
for dir in $failed_examples; do
test_name=$(echo $dir | sed 's:^[0-9]*-::')
if [[ ! "$XFAIL_RUNS" =~ "$test_name" ]]; then
echo $test_name SHOULD NOT FAIL
exit_code=1
fi
done
exit $exit_code
%changelog

3
apache-rex-rpmlintrc Normal file
View File

@ -0,0 +1,3 @@
addFilter("apache-rex.noarch: W: files-duplicate")
addFilter("apache-rex.noarch: W: zero-length")
addFilter("apache-rex.noarch: W: wrong-file-end-of-line-encoding")

660
apache-rex.changes Normal file
View File

@ -0,0 +1,660 @@
-------------------------------------------------------------------
Wed Oct 4 09:35:08 UTC 2017 - pgajdos@suse.com
- move running %check to apache-rex-check package
-------------------------------------------------------------------
Tue Sep 12 15:03:51 UTC 2017 - pgajdos@suse.com
- amended mod_http-* to not run with prefork
-------------------------------------------------------------------
Mon Jun 26 12:42:06 UTC 2017 - pgajdos@suse.com
- added
* mod_proxy-ordering-ProxyPass
* mod_proxy-ordering-Location
* mod_proxy-ordering-ProxyPass-Location
* mod_cgi-stderr
* mod_cgi-ScriptLog
- mod_reqtimeout-basic now works with 2.2.32
- mod_ssl-basic: allow SSLv3
-------------------------------------------------------------------
Mon May 22 14:16:30 UTC 2017 - pgajdos@suse.com
- added user(ftp) and group(ftp) to be able to run vsftpd
-------------------------------------------------------------------
Fri Apr 28 11:25:41 UTC 2017 - pgajdos@suse.com
- added
* mod_proxy-exceptions
* mod_sesion-write-read
* mod_session_crypto-write-read
* core-FileETag-basic
-------------------------------------------------------------------
Mon Mar 20 16:00:15 UTC 2017 - pgajdos@suse.com
- do not use %doc */
-------------------------------------------------------------------
Tue Feb 21 07:29:19 UTC 2017 - pgajdos@suse.com
- added
* core-HttpProtocolOptions-basic
- improved several examples along 2.4.25
- turn off debug-coredump as coredumpctl does not report any
coredumps on change root (see *.spec for details)
-------------------------------------------------------------------
Thu Nov 24 09:00:52 UTC 2016 - pgajdos@suse.com
- lowered number of expected failures for sle12 and sle12sp1 as we
link apache2 from :Update now
-------------------------------------------------------------------
Tue Nov 15 11:38:41 UTC 2016 - pgajdos@suse.com
- added
* core-chunked-data
* mod_mime-TypesConfig
-------------------------------------------------------------------
Tue Sep 20 08:30:28 UTC 2016 - pgajdos@suse.com
- added
* mod_proxy-cache
* mod_proxy-cache-poisoning
* mod_cgi-httpoxy
* devel-mod_example_1
* devel-mod_example_2
* mod_auth_digest-Authorization
* devel-mod_example_config_simple
* devel-print-headers
* devel-read-request-body
* devel-form-variables
* mod_filter-AddOutputFilterByType
-------------------------------------------------------------------
Mon Jun 6 13:47:30 UTC 2016 - pgajdos@suse.com
- added
* mod_firehose-proxy
* mod_firehose-connection
* core-KeepAlive-basic
* mod_firehose-pipe
* mod_firehose-demultiplex
* mod_firehose-basic
* mod_allowhandlers-basic
* debug-coredump
* mod_http2-push
-------------------------------------------------------------------
Tue May 24 15:09:09 UTC 2016 - pgajdos@suse.com
- added
* core-Define-basic
* mod_proxy-long-url-abz53218
* mod_proxy-long-url-abz53218-waround
-------------------------------------------------------------------
Fri May 20 09:09:36 UTC 2016 - pgajdos@suse.com
- added
* mod_lua-LuaMapHandler
* mod_lua-LuaHookAuthChecker
* core-ContentDigest-basic
-------------------------------------------------------------------
Wed May 18 09:04:28 UTC 2016 - pgajdos@suse.com
- added
* mod_lua-LuaInputFilter
-------------------------------------------------------------------
Tue May 17 08:14:37 UTC 2016 - pgajdos@suse.com
- added
* mod_lua-LuaHookFixups
* mod_lua-LuaOutputFilter
-------------------------------------------------------------------
Mon May 16 12:55:46 UTC 2016 - pgajdos@suse.com
- added
* core-IfDefine-basic
* core-IfModule-basic
-------------------------------------------------------------------
Fri May 13 09:11:36 UTC 2016 - pgajdos@suse.com
- added
* core-Warning-basic
* core-Error-basic
-------------------------------------------------------------------
Thu May 12 15:27:39 UTC 2016 - pgajdos@suse.com
- AREX_RUN_PORT* variables/expansions renamed to AREX_PORT
-------------------------------------------------------------------
Wed May 11 07:14:44 UTC 2016 - pgajdos@suse.com
- added mod_lua-LuaHookTypeChecker
-------------------------------------------------------------------
Thu May 5 20:08:45 UTC 2016 - pgajdos@suse.com
- fixed several examples for httpd 2.5
-------------------------------------------------------------------
Tue May 3 19:24:07 UTC 2016 - pgajdos@suse.com
- added
* mod_lua-LuaHookLog
-------------------------------------------------------------------
Thu Apr 28 15:17:11 UTC 2016 - pgajdos@suse.com
- added
* core-ServerRoot-basic
-------------------------------------------------------------------
Wed Apr 27 06:43:02 UTC 2016 - pgajdos@suse.com
- added
* mod_proxy_scgi-basic
-------------------------------------------------------------------
Tue Apr 26 09:07:15 UTC 2016 - pgajdos@suse.com
- added
* mod_lua-LuaHookAccessChecker
-------------------------------------------------------------------
Mon Apr 25 10:46:38 UTC 2016 - pgajdos@suse.com
- added
* mod_lua-LuaHookMapToStorage
-------------------------------------------------------------------
Thu Apr 21 07:51:30 UTC 2016 - pgajdos@suse.com
- added
* mod_lua-LuaHookTranslateName
* mod_lua-authz-provider-abz57204
* mod_lua-hooks
-------------------------------------------------------------------
Wed Apr 20 05:51:38 UTC 2016 - pgajdos@suse.com
- added
* mod_lua-LuaQuickHandler
-------------------------------------------------------------------
Tue Apr 19 12:13:00 UTC 2016 - pgajdos@suse.com
- fixed ServerAdmin-basic for older distros (use cgi script instead
of document)
-------------------------------------------------------------------
Fri Apr 15 06:54:39 UTC 2016 - pgajdos@suse.com
- added
* core-DirectoryMatch-basic
* core-DirectoryMatch-env
-------------------------------------------------------------------
Thu Apr 14 07:56:01 UTC 2016 - pgajdos@suse.com
- more git friendly structure: added content-file support,
dropped numbers from example directories names, added content
file, dropped insert-new-rex and delete-rex
- added
* core-ServerAdmin-basic
-------------------------------------------------------------------
Wed Apr 13 14:03:30 UTC 2016 - pgajdos@suse.com
- added
* core-ErrorDocument-basic
-------------------------------------------------------------------
Wed Apr 13 08:17:39 UTC 2016 - pgajdos@suse.com
- fix i586 build
-------------------------------------------------------------------
Tue Apr 12 18:55:28 UTC 2016 - pgajdos@suse.com
- structure reworked, can be used stand alone
- renamed to apache-rex (Apache HTTPD Runnable Examples)
- insert-new-test renamed to insert-new-rex, delete-test renamed
to delete-rex, added run-rex, README.md and LICENSE
- spec file reworked accordingly
-------------------------------------------------------------------
Wed Apr 6 11:09:12 UTC 2016 - pgajdos@suse.com
- added
* mod_proxy_wstunnel-basic
-------------------------------------------------------------------
Mon Apr 4 12:09:27 UTC 2016 - pgajdos@suse.com
- added
* mod_authnz_fcgi-basic
-------------------------------------------------------------------
Fri Apr 1 08:25:58 UTC 2016 - pgajdos@suse.com
- added
* mod_proxy_ftp-basic
* mod_proxy_fcgi-basic
* mod_proxy_fcgi-php-fpm
-------------------------------------------------------------------
Wed Mar 30 14:32:51 UTC 2016 - pgajdos@suse.com
- added
* mod_proxy_connect-basic
-------------------------------------------------------------------
Wed Mar 23 22:42:03 UTC 2016 - pgajdos@suse.com
- added
* mod_proxy_express-basic
-------------------------------------------------------------------
Fri Mar 18 08:51:26 UTC 2016 - pgajdos@suse.com
- added
* mod_lua-authz-provider
-------------------------------------------------------------------
Thu Mar 17 08:19:14 UTC 2016 - pgajdos@suse.cz
- added
* mod_negotiation-basic
* mod_ratelimit-basic
* mod_usertrack-basic
-------------------------------------------------------------------
Wed Mar 16 13:37:50 UTC 2016 - pgajdos@suse.com
- added
* mod_policy-basic
-------------------------------------------------------------------
Tue Mar 15 15:26:13 UTC 2016 - pgajdos@suse.com
- added
* mod_mime_magic-basic
* mod_lua-basic
-------------------------------------------------------------------
Mon Mar 14 15:43:23 UTC 2016 - pgajdos@suse.com
- added
* mod_unique_id-basic
-------------------------------------------------------------------
Wed Mar 9 10:58:44 UTC 2016 - pgajdos@suse.com
- added
* mod_cache-filter
* mod_file_cache-basic
* mod_expires-basic
-------------------------------------------------------------------
Tue Mar 8 12:44:32 UTC 2016 - pgajdos@suse.com
- added
* mod_cache-basic
* mod_cache-disk
-------------------------------------------------------------------
Fri Mar 4 12:38:31 UTC 2016 - pgajdos@suse.com
- added
* mod_session-basic
* mod_session_crypto-basic
-------------------------------------------------------------------
Thu Mar 3 08:32:11 UTC 2016 - pgajdos@suse.com
- added
* mod_data-basic
-------------------------------------------------------------------
Wed Mar 2 12:57:18 UTC 2016 - pgajdos@suse.com
- added
* mod_reqtimeout-basic -> buildrequire python for timeout-test.py
- modified
* mod_dav-basic: for older 2.4 branch it does not return 201,
not checking it
-------------------------------------------------------------------
Mon Feb 29 10:43:43 UTC 2016 - pgajdos@suse.com
- added
* Limit-basic
* LimitExcept-basic
- modified
* mod_dav-basic (use RequireAll)
-------------------------------------------------------------------
Fri Feb 26 11:23:56 UTC 2016 - pgajdos@suse.com
- added
* mod_dav-basic
-------------------------------------------------------------------
Thu Feb 25 10:17:21 UTC 2016 - pgajdos@suse.com
- added
* mod_speling-basic
-------------------------------------------------------------------
Wed Feb 24 09:21:28 UTC 2016 - pgajdos@suse.com
- added
* mod_logio-basic
-------------------------------------------------------------------
Tue Feb 23 13:12:01 UTC 2016 - pgajdos@suse.com
- added
* mod_macro-basic
-------------------------------------------------------------------
Sun Feb 21 16:33:11 UTC 2016 - pgajdos@suse.com
- added
* mod_allowmethods-basic
-------------------------------------------------------------------
Fri Feb 19 13:16:35 UTC 2016 - pgajdos@suse.com
- added
* mod_auth_form-basic
-------------------------------------------------------------------
Thu Feb 18 10:38:43 UTC 2016 - pgajdos@suse.com
- added
* Satisfy-basic
* Require-Any-All-None-basic
* mod_authn_anon-basic
-------------------------------------------------------------------
Wed Feb 17 12:27:02 UTC 2016 - pgajdos@suse.com
- added
* mod_authz_groupfile
* mod_authz_owner
-------------------------------------------------------------------
Fri Feb 12 09:22:56 UTC 2016 - pgajdos@suse.com
- added
* mod_authn_dbd-basic
* mod_authn_dbd-Digest
-------------------------------------------------------------------
Thu Feb 11 11:49:04 UTC 2016 - pgajdos@suse.com
- added
* mod_log_debug-basic
-------------------------------------------------------------------
Wed Feb 10 10:35:25 UTC 2016 - pgajdos@suse.com
- added
* mod_dumpio-basic
* LogLevel-basic
-------------------------------------------------------------------
Tue Feb 9 13:51:19 UTC 2016 - pgajdos@suse.com
- added
* If-basic
-------------------------------------------------------------------
Mon Feb 8 14:20:56 UTC 2016 - pgajdos@suse.com
- modified
* mod_http2-basic: use --http1.1 curl switch instead of relying
on the default
* mod_auth_digest-basic: use DefaultRuntimeDir
- added
* mod_log_forensic-basic
-------------------------------------------------------------------
Sun Feb 7 20:54:38 UTC 2016 - pgajdos@suse.com
- added
* mod_auth_digest
-------------------------------------------------------------------
Fri Feb 5 14:55:33 UTC 2016 - pgajdos@suse.com
- added
* mod_xml2enc-basic
* mod_auth_basic-basic
* mod_authn_dbm-basic
-------------------------------------------------------------------
Thu Feb 4 15:23:04 UTC 2016 - pgajdos@suse.com
- added
* mod_headers-basic
* mod_setenvif-basic
-------------------------------------------------------------------
Wed Feb 3 10:11:13 UTC 2016 - pgajdos@suse.com
- added
* mod_rewrite-proxying
* mod_rewrite-dynamic-vhosts
* mod_rewrite-advanced
-------------------------------------------------------------------
Tue Feb 2 14:12:27 UTC 2016 - pgajdos@suse.com
- added
* mod_rewrite-control-access
* mod_remoteip-basic
-------------------------------------------------------------------
Mon Feb 1 08:39:55 UTC 2016 - pgajdos@suse.com
- added
* ServerAlias-basic
* mod_vhost_alias-basic
-------------------------------------------------------------------
Fri Jan 29 12:12:12 UTC 2016 - pgajdos@suse.com
- added
* UseCanonicalName-basic
-------------------------------------------------------------------
Wed Jan 27 13:10:16 UTC 2016 - pgajdos@suse.com
- added
* mod_rewrite-RewriteMap
* mod_autoindex-basic
-------------------------------------------------------------------
Tue Jan 26 20:33:16 UTC 2016 - pgajdos@suse.com
- added
* mod_rewrite-redirecting
* mod_dir-basic
* mod_dir-FallbackResource
-------------------------------------------------------------------
Mon Jan 25 15:41:12 UTC 2016 - pgajdos@suse.com
- added
* mod_rewrite-RewriteBase
-------------------------------------------------------------------
Thu Jan 21 13:49:21 UTC 2016 - pgajdos@suse.com
- added
* mod_rewrite-basic
* mod_rewrite-RewriteCond
-------------------------------------------------------------------
Wed Jan 20 17:50:40 UTC 2016 - pgajdos@suse.com
- added
* mod_access_compat-basic
-------------------------------------------------------------------
Tue Jan 19 16:20:20 UTC 2016 - pgajdos@suse.com
- added
* mod_proxy_html-basic
-------------------------------------------------------------------
Mon Jan 18 14:37:30 UTC 2016 - pgajdos@suse.com
- added
* mod_ssl-SSLCryptoDevice
-------------------------------------------------------------------
Thu Jan 14 12:26:05 UTC 2016 - pgajdos@suse.com
- added
* VirtualHost-name-based
-------------------------------------------------------------------
Thu Jan 14 10:14:14 UTC 2016 - pgajdos@suse.com
- skip mod_proxy_balancer-failonstatus and mod_proxy_balancer-abz56925
for version < 2.2.17 inside testsuite, not in spec file
-------------------------------------------------------------------
Mon Jan 11 13:19:12 UTC 2016 - pgajdos@suse.com
- added
* mod_http2-basic
-------------------------------------------------------------------
Wed Jan 6 11:28:02 UTC 2016 - pgajdos@suse.com
- added
* mod_actions-basic
* mod_asis-basic
* mod_version
- fixed
* mod_filter-basic for 2.2 branch
* mod_proxy_balancer-basic for 2.4.6
* mod_proxy_balancer-failonstatus for 2.4.6
* mod_proxy_balancer-abz56925 for 2.4.6
-------------------------------------------------------------------
Tue Dec 29 12:32:57 UTC 2015 - pgajdos@suse.com
- added
* mod_includes-basic
* mod_mime-filters-chain
-------------------------------------------------------------------
Wed Dec 23 11:36:57 UTC 2015 - pgajdos@suse.com
- added
* mod_charset_lite-basic
* mod_reflector-basic
-------------------------------------------------------------------
Tue Dec 22 14:57:14 UTC 2015 - pgajdos@suse.com
- added
* mod_sed-basic
* mod_mime-filters
* mod_deflate-basic
-------------------------------------------------------------------
Mon Dec 21 11:37:22 UTC 2015 - pgajdos@suse.com
- added
* mod_ssl-basic
* SetOutputFilter-basic
* SetInputFilter-basic
-------------------------------------------------------------------
Sat Dec 12 20:47:19 UTC 2015 - pgajdos@suse.com
- added
* mod_proxy_balancer-failonstatus
* mod_proxy_balancer-abz56925
-------------------------------------------------------------------
Fri Dec 11 08:42:01 UTC 2015 - pgajdos@suse.com
- added:
* mod_userdir-basic
* mod_proxy-ProxyErrorOverride
-------------------------------------------------------------------
Thu Dec 10 10:31:53 UTC 2015 - pgajdos@suse.com
- added:
* ErrorLogFormat-basic
* mod_log_config-basic
* mod_cgi-basic
* mod_mime-basic
-------------------------------------------------------------------
Wed Dec 9 10:20:26 UTC 2015 - pgajdos@suse.com
- added:
* mod_proxy_balancer-basic
* forward proxy subtest to mod_proxy-basic
* mod_authz_user-basic
-------------------------------------------------------------------
Tue Dec 8 12:49:22 UTC 2015 - pgajdos@suse.com
- added:
* Options-basic
* AllowOverride-basic
* mod_proxy-basic
-------------------------------------------------------------------
Mon Dec 7 14:31:34 UTC 2015 - pgajdos@suse.com
- added:
* VirtualHost-basic
* mod_log_config-basic
* ServerSignature-basic
-------------------------------------------------------------------
Fri Nov 27 13:52:53 UTC 2015 - pgajdos@suse.com
- added:
* mod_alias-basic
-------------------------------------------------------------------
Thu Nov 26 08:30:37 UTC 2015 - pgajdos@suse.com
- added:
* test-framework
* mod_auth_core-basic
* mod_status-basic
* mod_status-ExtendedStatus-basic
* mod_info-basic
-------------------------------------------------------------------
Tue Nov 24 11:48:46 UTC 2015 - pgajdos@suse.com
- package created

55
apache-rex.spec Normal file
View File

@ -0,0 +1,55 @@
#
# spec file for package apache-rex
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# 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/
#
Name: apache-rex
Version: 20170912
Release: 0
Summary: Script for Apache HTTPD Runnable Examples
License: Apache-2.0
Group: Productivity/Networking/Web/Servers
Url: https://github.com/pgajdos/apache-rex
Source0: %{name}.tar.bz2
Requires: apache2-devel
Requires: curl
Requires: lsof
Requires: openssl
Requires: openssl-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%description
Runnable examples for Apache HTTP server. Can be used starting
point for examples, testcases and other inspiration.
%prep
%setup -q -n %{name}
%build
%install
mkdir -p %{buildroot}%{_bindir}
cp run-rex %{buildroot}%{_bindir}
mkdir -p %{buildroot}%{_docdir}/%{name}
cp -r */ LICENSE README.md contents %{buildroot}%{_docdir}/%{name}
%files
%defattr(-,root,root)
%{_bindir}/run-rex
%{_docdir}/%{name}
%changelog

3
apache-rex.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:775f4599d91fc3331aa7b39768f5b210252db2a08340e57cdf8219a094ffd7c9
size 1029501