Accepting request 940925 from home:david.anes:branches:Apache
Update to 20211102 OBS-URL: https://build.opensuse.org/request/show/940925 OBS-URL: https://build.opensuse.org/package/show/Apache/apache-rex?expand=0&rev=103
This commit is contained in:
parent
caebc9d0f0
commit
630848488f
@ -1,3 +1,4 @@
|
||||
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")
|
||||
addFilter("apache-rex.noarch: E: zero-length")
|
||||
addFilter("apache-rex.noarch: W: wrong-file-end-of-line-encoding")
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 16 14:41:42 UTC 2021 - David Anes <david.anes@suse.com>
|
||||
|
||||
- version update to 20211102
|
||||
* add mod_php-ssl
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 12 08:48:46 UTC 2021 - pgajdos@suse.com
|
||||
|
||||
|
@ -16,16 +16,11 @@
|
||||
#
|
||||
|
||||
|
||||
#
|
||||
%if 0%{?suse_version} > 1230
|
||||
%define macros_dir %{_rpmconfigdir}/macros.d
|
||||
%else
|
||||
%define macros_dir %{_sysconfdir}/rpm
|
||||
%endif
|
||||
%define macros_file macros.apache-rex
|
||||
|
||||
Name: apache-rex
|
||||
Version: 20210108
|
||||
Version: 20211102
|
||||
Release: 0
|
||||
Summary: Script for Apache HTTPD Runnable Examples
|
||||
License: Apache-2.0
|
||||
@ -34,6 +29,8 @@ URL: https://github.com/pgajdos/apache-rex
|
||||
Source0: %{name}.tar.bz2
|
||||
Source1: apache-rex-rpmlintrc
|
||||
Source2: %{macros_file}
|
||||
# simple script to generate the tarball from a commit id
|
||||
Source1000: generate_tarball.sh
|
||||
Requires: apache2-devel
|
||||
Requires: apache2-utils
|
||||
Requires: curl
|
||||
|
BIN
apache-rex.tar.bz2
(Stored with Git LFS)
BIN
apache-rex.tar.bz2
(Stored with Git LFS)
Binary file not shown.
13
generate_tarball.sh
Normal file
13
generate_tarball.sh
Normal file
@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -n "$1" ]; then
|
||||
rm -rf apache_rex
|
||||
git clone https://github.com/pgajdos/apache-rex __repo
|
||||
cd __repo
|
||||
git checkout -b $1
|
||||
git archive --format=tar --prefix="apache-rex/" $1 | bzip2 > ../apache-rex.tar.bz2
|
||||
cd ..
|
||||
rm -rf __repo
|
||||
else
|
||||
echo "Usage: generate.tarball.sh COMMIT_ID"
|
||||
fi
|
Loading…
Reference in New Issue
Block a user