-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphp-pecl-igbinary.spec
More file actions
209 lines (159 loc) · 5.2 KB
/
php-pecl-igbinary.spec
File metadata and controls
209 lines (159 loc) · 5.2 KB
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
%{!?__pecl: %{expand: %%global __pecl %{_bindir}/pecl}}
%global basepkg %{?basepkg}%{!?basepkg:php}
%global extname igbinary
%global with_zts 0%{?__ztsphp:1}
Summary: Replacement for the standard PHP serializer
Name: %{basepkg}-pecl-igbinary
Version: 2.0.8
Release: 1%{?dist}
License: BSD
Group: System Environment/Libraries
URL: http://pecl.php.net/package/igbinary
Source0: http://pecl.php.net/get/%{extname}-%{version}.tgz
BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n)
BuildRequires: %{basepkg}-devel >= 5.2.0
BuildRequires: %{basepkg}-pecl-apcu-devel >= 3.1.7
Requires(post): %{__pecl}
Requires(postun): %{__pecl}
Requires: php(zend-abi) = %{php_zend_api}
Requires: php(api) = %{php_core_api}
Provides: php-pecl(%{extname}) = %{version}
Provides: php-pecl-igbinary = %{version}
Provides: php-pecl-igbinary%{?_isa} = %{version}
%if 0%{?fedora} < 20 && 0%{?rhel} < 7
# Filter private shared
%{?filter_provides_in: %filter_provides_in %{_libdir}/.*\.so$}
%{?filter_setup}
%endif
%description
Igbinary is a drop in replacement for the standard PHP serializer.
Instead of time and space consuming textual representation,
igbinary stores PHP data structures in a compact binary form.
Savings are significant when using memcached or similar memory
based storages for serialized data.
%package devel
Summary: Igbinary developer files (header)
Group: Development/Libraries
Requires: %{basepkg}-pecl-%{extname}%{?_isa} = %{version}-%{release}
Requires: php-devel
Provides: php-pecl-igbinary-devel = %{version}
Provides: php-pecl-igbinary-devel%{?_isa} = %{version}
%description devel
These are the files needed to compile programs using Igbinary
%prep
%setup -q -c
cat <<EOF | tee %{extname}.ini
; Enable %{extname} extension module
extension=%{extname}.so
; Enable or disable compacting of duplicate strings
; The default is On.
;igbinary.compact_strings=On
; Use igbinary as session serializer
;session.serialize_handler=igbinary
; Use igbinary as APC serializer
;apc.serializer=igbinary
EOF
%if %{with_zts}
cp -r %{extname}-%{version} %{extname}-%{version}-zts
%endif
%build
pushd %{extname}-%{version}
%{_bindir}/phpize
%configure --with-php-config=%{_bindir}/php-config
make %{?_smp_mflags}
popd
%if %{with_zts}
pushd %{extname}-%{version}-zts
%{_bindir}/zts-phpize
%configure --with-php-config=%{_bindir}/zts-php-config
make %{?_smp_mflags}
popd
%endif
%install
rm -rf %{buildroot}
make install -C %{extname}-%{version} \
INSTALL_ROOT=%{buildroot}
install -D -m 644 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml
%{__mkdir_p} %{buildroot}%{php_inidir}
install -D -m 644 %{extname}.ini %{buildroot}%{php_inidir}/%{extname}.ini
%if %{with_zts}
make install -C %{extname}-%{version}-zts \
INSTALL_ROOT=%{buildroot}
%{__mkdir_p} %{buildroot}%{php_ztsinidir}
install -D -m 644 %{extname}.ini %{buildroot}%{php_ztsinidir}/%{extname}.ini
%endif
%check
pushd %{extname}-%{version}
# simple module load test
# without APC to ensure than can run without
%{__php} --no-php-ini \
--define extension_dir=modules \
--define extension=%{extname}.so \
--modules | grep %{extname}
# APCu required for test 045
ln -s %{php_extdir}/apcu.so modules/
TEST_PHP_EXECUTABLE=%{__php} \
TEST_PHP_ARGS="-n -d extension=$PWD/modules/%{extname}.so" \
NO_INTERACTION=1 \
REPORT_EXIT_STATUS=1 \
%{_bindir}/php -n run-tests.php
popd
%if %{with_zts}
pushd %{extname}-%{version}-zts
# simple module load test
# without APC to ensure than can run without
%{__ztsphp} --no-php-ini \
--define extension_dir=modules \
--define extension=%{extname}.so \
--modules | grep %{extname}
# APCu required for test 045
ln -s %{php_ztsextdir}/apcu.so modules/
TEST_PHP_EXECUTABLE=%{__ztsphp} \
TEST_PHP_ARGS="-n -d extension=$PWD/modules/%{extname}.so" \
NO_INTERACTION=1 \
REPORT_EXIT_STATUS=1 \
%{_bindir}/php -n run-tests.php
popd
%endif
%clean
rm -rf %{buildroot}
%post
%{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || :
%postun
if [ $1 -eq 0 ] ; then
%{pecl_uninstall} %{extname} >/dev/null || :
fi
%files
%defattr(-,root,root,-)
%doc %{extname}-%{version}/COPYING
%doc %{extname}-%{version}/CREDITS
%doc %{extname}-%{version}/NEWS
%doc %{extname}-%{version}/README.md
%config(noreplace) %{php_inidir}/%{extname}.ini
%{php_extdir}/%{extname}.so
%{pecl_xmldir}/%{name}.xml
%if %{with_zts}
%config(noreplace) %{php_ztsinidir}/%{extname}.ini
%{php_ztsextdir}/%{extname}.so
%endif
%files devel
%defattr(-,root,root,-)
%{php_incldir}/ext/%{extname}
%if %{with_zts}
%{php_ztsincldir}/ext/%{extname}
%endif
%changelog
* Sat Dec 15 2018 Andy Thompson <andy@webtatic.com> - 2.0.8-1
- update to 2.0.8
* Sat Nov 25 2017 Andy Thompson <andy@webtatic.com> - 2.0.5-1
- update to 2.0.5
* Thu Dec 22 2016 Andy Thompson <andy@webtatic.com> - 2.0.1-1
- update to 2.0.1
- remove explicit loading of apcu module in tests
* Sat Sep 13 2014 Andy Thompson <andy@webtatic.com> - 1.2.1-2
- Add provides for original packages, require basepkg
* Sat Sep 13 2014 Andy Thompson <andy@webtatic.com> - 1.2.1-1
- Import EPEL php-pecl-igbinary-1.1.1-3 RPM
- Remove obsolete withapc
- update to 1.2.1
- Add ZTS extension compilation