-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathnginx-module-ndk-lua.spec.template
186 lines (146 loc) · 6.59 KB
/
nginx-module-ndk-lua.spec.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
#
%define dist %(sh /usr/lib/rpm/redhat/dist.sh)
%define nginx_user nginx
%define nginx_group nginx
%if (0%{?rhel} || 0%{?amzn} || 0%{?fedora} >= 18)
%define _group System Environment/Daemons
%if 0%{?fedora} >= 26
BuildRequires: compat-openssl10-devel
%else
BuildRequires: openssl-devel
%endif
%endif
%if 0%{?suse_version} == 1315
%define _group Productivity/Networking/Web/Servers
BuildRequires: libopenssl-devel
%endif
%if (0%{?rhel} == 7 || 0%{?fedora} >= 18)
%define epoch 1
Epoch: %{epoch}
%endif
%define main_version ${NGINX_VERSION}
%define main_release ${NGINX_RELEASE}%{dist}.ngx
%define lua_version ${LUA_VERSION}
%define module_lua_version %{main_version}.%{lua_version}
%define module_lua_release ${LUA_RELEASE}%{?dist}
%define ndk_version ${NDK_VERSION}
%define module_ndk_version %{main_version}.%{ndk_version}
%define module_ndk_release ${NDK_RELEASE}%{?dist}
%define bdir %{_builddir}/%{name}-%{main_version}
Summary: nginx dynamic modules
Name: nginx
Version: %{main_version}
Release: 1%{?dist}.ngx
URL: http://nginx.org/
Group: %{_group}
Source0: http://nginx.org/download/nginx-%{main_version}.tar.gz
Source100: lua-nginx-module-%{lua_version}.tar.gz
Source101: ngx_devel_kit-%{ndk_version}.tar.gz
License: 2-clause BSD-like license
BuildRoot: %{_tmppath}/%{name}-%{main_version}-%{main_release}-root
BuildRequires: zlib-devel
BuildRequires: pcre-devel
Requires: nginx == %{?epoch:%{epoch}:}%{main_version}
%description
nginx dynamic modules.
%package module-lua
Summary: nginx lua dynamic modules
Version: %{main_version}.%{lua_version}
Release: %{module_lua_release}
URL: https://github.com/openresty/lua-nginx-module
Group: %{_group}
License: BSD license
BuildRequires: luajit-devel
Requires: luajit
Requires: nginx-module-ndk
Requires: nginx == %{?epoch:%{epoch}:}%{main_version}
%description module-lua
nginx lua dynamic modules.
%package module-ndk
Summary: nginx ndk dynamic modules
Version: %{main_version}.%{ndk_version}
Release: %{module_ndk_release}
URL: https://github.com/simpl/ngx_devel_kit
Group: %{_group}
License: The BSD 3-Clause License
Requires: nginx == %{?epoch:%{epoch}:}%{main_version}
%description module-ndk
nginx ndk dynamic modules.
%if 0%{?suse_version} || 0%{?amzn}
%debug_package
%endif
%define WITH_CC_OPT $(echo %{optflags} $(pcre-config --cflags))
%define WITH_LD_OPT -Wl,-z,relro -Wl,-z,now
%define BASE_CONFIGURE_ARGS $(echo "--prefix=%{_sysconfdir}/nginx --sbin-path=%{_sbindir}/nginx --modules-path=%{_libdir}/nginx/modules --conf-path=%{_sysconfdir}/nginx/nginx.conf --error-log-path=%{_localstatedir}/log/nginx/error.log --http-log-path=%{_localstatedir}/log/nginx/access.log --pid-path=%{_localstatedir}/run/nginx.pid --lock-path=%{_localstatedir}/run/nginx.lock --http-client-body-temp-path=%{_localstatedir}/cache/nginx/client_temp --http-proxy-temp-path=%{_localstatedir}/cache/nginx/proxy_temp --http-fastcgi-temp-path=%{_localstatedir}/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=%{_localstatedir}/cache/nginx/uwsgi_temp --http-scgi-temp-path=%{_localstatedir}/cache/nginx/scgi_temp --user=%{nginx_user} --group=%{nginx_group} --with-compat --with-file-aio --with-threads --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_mp4_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-mail --with-mail_ssl_module --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module")
%define MODULE_CONFIGURE_ARGS $(echo "--add-dynamic-module=lua-nginx-module-%{lua_version} --add-dynamic-module=ngx_devel_kit-%{ndk_version}")
%prep
%setup -qcTn %{name}-%{main_version}
tar --strip-components=1 -zxf %{SOURCE0}
tar zxf %{SOURCE100}
tar zxf %{SOURCE101}
%build
cd %{bdir}
%if 0%{?fedora} >= 26
export LUAJIT_LIB="/usr/lib64"
export LUAJIT_INC="/usr/include/luajit-2.1"
export CFLAGS="-Wno-error"
%endif
./configure %{BASE_CONFIGURE_ARGS} %{MODULE_CONFIGURE_ARGS} \
--with-cc-opt="%{WITH_CC_OPT}" \
--with-ld-opt="%{WITH_LD_OPT}" \
--with-debug
make %{?_smp_mflags} modules
for so in `find %{bdir}/objs/ -type f -name "*.so"`; do
debugso=`echo $so | sed -e "s|.so|-debug.so|"`
mv $so $debugso
done
./configure %{BASE_CONFIGURE_ARGS} %{MODULE_CONFIGURE_ARGS} \
--with-cc-opt="%{WITH_CC_OPT}" \
--with-ld-opt="%{WITH_LD_OPT}"
make %{?_smp_mflags} modules
%install
cd %{bdir}
%{__rm} -rf $RPM_BUILD_ROOT
%{__mkdir} -p $RPM_BUILD_ROOT%{_datadir}/doc/nginx-module-lua
%{__mkdir} -p $RPM_BUILD_ROOT%{_datadir}/doc/nginx-module-ndk
%{__install} -m644 %{bdir}/lua-nginx-module-%{lua_version}/README.markdown $RPM_BUILD_ROOT%{_datadir}/doc/nginx-module-lua/
%{__install} -m644 %{bdir}/ngx_devel_kit-%{ndk_version}/README.md $RPM_BUILD_ROOT%{_datadir}/doc/nginx-module-ndk/
%{__install} -m644 %{bdir}/ngx_devel_kit-%{ndk_version}/README_AUTO_LIB $RPM_BUILD_ROOT%{_datadir}/doc/nginx-module-ndk/
%{__install} -m644 %{bdir}/ngx_devel_kit-%{ndk_version}/LICENSE $RPM_BUILD_ROOT%{_datadir}/doc/nginx-module-ndk/
%{__mkdir} -p $RPM_BUILD_ROOT%{_libdir}/nginx/modules
for so in `find %{bdir}/objs/ -maxdepth 1 -type f -name "*.so"`; do
%{__install} -m755 $so \
$RPM_BUILD_ROOT%{_libdir}/nginx/modules/
done
%clean
%{__rm} -rf $RPM_BUILD_ROOT
%files module-lua
%defattr(-,root,root)
%{_libdir}/nginx/modules/*lua*
%dir %{_datadir}/doc/nginx-module-lua
%{_datadir}/doc/nginx-module-lua/*
%files module-ndk
%defattr(-,root,root)
%{_libdir}/nginx/modules/ndk*
%dir %{_datadir}/doc/nginx-module-ndk
%{_datadir}/doc/nginx-module-ndk/*
%post module-lua
if [ $1 -eq 1 ]; then
cat <<BANNER
----------------------------------------------------------------------
The lua dynamic modules for nginx have been installed.
To enable these modules, add the following to /etc/nginx/nginx.conf
and reload nginx:
load_module modules/ndk_http_module.so;
load_module modules/ngx_http_lua_module.so;
Please refer to the modules documentation for further details:
/usr/share/doc/nginx-module-lua/README.markdown
https://www.nginx.com/resources/wiki/modules/lua/
----------------------------------------------------------------------
BANNER
fi
%changelog
* ${TODAY} ${MAINTAINER}
- nginx: ${NGINX_VERSION}
- lua : ${LUA_VERSION}
- ndk : ${NDK_VERSION}