Changes of Revision 2
[-] | Added | php5-mysqlnd_ms.spec |
x 1
2 +# norootforbuild 3 +%define pkg_name mysqlnd_ms 4 +%define pkg_version 1.0.1 5 +%define php_version %(php-config --version 2>/dev/null) 6 +# 7 +Name: php5-mysqlnd_ms 8 +Version: %{pkg_version} 9 +Release: 0 10 +# 11 +License: PHP 12 +Group: Productivity/Networking/Web/Servers 13 +# 14 +BuildRoot: %{_tmppath}/%{pkg_name}-%{version}-build 15 +BuildRequires: gcc gcc-c++ 16 +BuildRequires: php5-devel >= 5.3.0 17 +#BuildRequires: mysql-devel 18 +Requires: php5 = %{php_version} 19 +# 20 +URL: http://pecl.php.net/ 21 +Source: http://pecl.php.net/package/%{pkg_name}/%{pkg_name}-%{version}.tgz 22 +Summary: A replication and load balancing plugin for mysqlnd 23 + 24 +%description 25 +The replication and load balancing plugin is a plugin for the mysqlnd library. 26 +It can be used with PHP MySQL extensions (ext/mysql, ext/mysqli, PDO_MySQL). 27 +if they are compiled to use mysqlnd. The plugin inspects queries to do read-write splitting. 28 +Read-only queries are send to configured MySQL replication slave servers all other 29 +queries are redirected to the MySQL replication master server. 30 +Very little, if any, application changes required, dependent on the usage scenario required. 31 + 32 +Authors: 33 +--------- 34 + 35 + Andrey Hristov 36 + Ulf Wendel 37 + 38 +%debug_package 39 + 40 +%prep 41 +%setup -n %{pkg_name}-%{version} 42 + 43 +%{__mkdir} %{name} 44 + 45 +%build 46 +/usr/bin/phpize 47 +pushd %{name} 48 + 49 +CFLAGS="%{optflags} -fno-strict-aliasing" 50 +CXXFLAGS="%{optflags} -fno-strict-aliasing" 51 +%if 0%{?suse_version} > 1000 52 +CFLAGS="$CFLAGS -fstack-protector" 53 +CXXFLAGS="$CXXFLAGS -fstack-protector" 54 +%endif 55 + 56 +export CFLAGS 57 +export CXXFLAGS 58 + 59 +../configure --with-libdir=%{_lib} \ 60 + --enable-mysqlnd-ms 61 + 62 +%{__make} %{?jobs:-j%jobs} 63 +popd 64 + 65 +%install 66 +%makeinstall -C %{name} INSTALL_ROOT=%{buildroot} 67 +%{__mkdir} -p %{buildroot}%{_sysconfdir}/php5/conf.d 68 +echo "; comment out next line to disable mysqlnd_ms extension in php" > %{buildroot}%{_sysconfdir}/php5/conf.d/mysqlnd_ms.ini 69 +echo "extension = mysqlnd_ms.so" >> %{buildroot}%{_sysconfdir}/php5/conf.d/mysqlnd_ms.ini 70 + 71 + 72 +%clean 73 +%{__rm} -rf %{buildroot} 74 + 75 +%files 76 +%defattr(-,root,root,-) 77 +%{_libdir}/php5/extensions/mysqlnd_ms.so 78 +%config(noreplace) %{_sysconfdir}/php5/conf.d/mysqlnd_ms.ini 79 + 80 +%changelog 81 +* Sun May 01 2011 Carsten Schoene <cs@linux-administrator.com> - 1.0.1-1 82 +- initial build version 1.0.1 alpha 83 |
||
[+] | Deleted | php5-mysqlnd_qc.spec ^ |
@@ -1,87 +0,0 @@ -# norootforbuild -%define pkg_name mysqlnd_qc -%define pkg_version 1.0.1 -%define php_version %(php-config --version 2>/dev/null) -# -Name: php5-mysqlnd_qc -Version: %{pkg_version} -Release: 0 -# -License: PHP -Group: Productivity/Networking/Web/Servers -# -BuildRoot: %{_tmppath}/%{pkg_name}-%{version}-build -BuildRequires: gcc gcc-c++ -BuildRequires: php5-devel >= 5.3.0 -BuildRequires: libmemcached-devel -#BuildRequires: mysql-devel -BuildRequires: sqlite-devel >= 3.0 -Requires: php5 = %{php_version} -# -URL: http://pecl.php.net/ -Source: http://pecl.php.net/package/%{pkg_name}/%{pkg_name}-%{version}.tgz -Summary: A query cache plugin for mysqlnd - -%description -The mysqlnd query result cache plugin is a mysqlnd plugin. It adds basic client side -result set caching to all PHP MySQL extensions (ext/mysql, ext/mysqli, PDO_MySQL), -if they are compiled to use mysqlnd. It does not change the API of the MySQL extensions -and thus it operates virtually transparent for applications." - -Authors: ---------- - - Andrey Hristov - Ulf Wendel - -%debug_package - -%prep -%setup -n %{pkg_name}-%{version} - -%{__mkdir} %{name} - -%build -/usr/bin/phpize -pushd %{name} - -CFLAGS="%{optflags} -fno-strict-aliasing" -CXXFLAGS="%{optflags} -fno-strict-aliasing" -%if 0%{?suse_version} > 1000 -CFLAGS="$CFLAGS -fstack-protector" -CXXFLAGS="$CXXFLAGS -fstack-protector" -%endif - -export CFLAGS -export CXXFLAGS - -../configure --with-libdir=%{_lib} \ - --enable-mysqlnd-qc \ - --enable-mysqlnd-qc-memcache \ - --enable-mysqlnd-qc-sqlite \ - --with-sqlite-dir=%{_prefix} - -%{__make} %{?jobs:-j%jobs} -popd - -%install -%makeinstall -C %{name} INSTALL_ROOT=%{buildroot} -%{__mkdir} -p %{buildroot}%{_sysconfdir}/php5/conf.d -echo "; comment out next line to disable mysqlnd_qc extension in php" > %{buildroot}%{_sysconfdir}/php5/conf.d/mysqlnd_qc.ini -echo "extension = mysqlnd_qc.so" >> %{buildroot}%{_sysconfdir}/php5/conf.d/mysqlnd_qc.ini - - -%clean -%{__rm} -rf %{buildroot} - -%files -%defattr(-,root,root,-) -%{_libdir}/php5/extensions/mysqlnd_qc.so -%config(noreplace) %{_sysconfdir}/php5/conf.d/mysqlnd_qc.ini - -%changelog -* Mon Dec 06 2010 Carsten Schoene <cs@linux-administrator.com> - 1.0.1-1 -- update to version 1.0.1 stable - -* Fri Oct 15 2010 Carsten Schoene <cs@linux-administrator.com> - 1.0.0-1 -- initial build version 1.0.0 beta | ||
Added | mysqlnd_ms-1.0.1.tgz ^ | |
Deleted | mysqlnd_qc-1.0.0.tgz ^ | |
Deleted | mysqlnd_qc-1.0.1.tgz ^ |