Logoj0ke.net Open Build Service > Projects > internetx:php5:extensions > php5-mysqlnd_ms > Changes
Sign Up | Log In

Changes of Revision 2

[-] Added php5-mysqlnd_ms.spec
x
 
1
@@ -0,0 +1,81 @@
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 ^
Added mysqlnd_ms-1.0.1.tgz ^
Deleted mysqlnd_qc-1.0.0.tgz ^
Deleted mysqlnd_qc-1.0.1.tgz ^