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

Changes of Revision 2

[+] Deleted php5-ioncube.changes
[-] Added php7-ioncube.changes ^
x
 
1
@@ -0,0 +1,40 @@
2
+-------------------------------------------------------------------
3
+Wed Oct 12 15:22:50 UTC 2016 - cs@linux-administrator.com
4
+
5
+- update to release 20161007 (6.0.5)
6
+
7
+-------------------------------------------------------------------
8
+Mon Jun 29 07:16:57 UTC 2015 - cs@linux-administrator.com
9
+
10
+- update to release 20150628 (5.0.11)
11
+
12
+-------------------------------------------------------------------
13
+Tue Jun 16 14:40:05 UTC 2015 - cs@linux-administrator.com
14
+
15
+- update to release 20150616 (5.0.8)
16
+
17
+-------------------------------------------------------------------
18
+Fri Jan 23 13:46:38 UTC 2015 - cs@linux-administrator.com
19
+
20
+- update to release 20141215 
21
+
22
+-------------------------------------------------------------------
23
+Sun Nov 10 20:51:47 UTC 2013 - cs@linux-administrator.com
24
+
25
+- update to release 20131014
26
+
27
+-------------------------------------------------------------------
28
+Wed Oct  3 09:33:58 UTC 2012 - cs@linux-administrator.com
29
+
30
+- update to release 20120626 
31
+
32
+-------------------------------------------------------------------
33
+Tue Mar 20 09:22:24 UTC 2012 - cs@linux-administrator.com
34
+
35
+- update to release 20120309 
36
+
37
+-------------------------------------------------------------------
38
+Mon Feb  6 12:21:57 UTC 2012 - cs@linux-administrator.com
39
+
40
+- update to release 20111230
41
+
42
[+] Deleted php5-ioncube.spec ^
[-] Added php7-ioncube.spec ^
51
 
1
@@ -0,0 +1,49 @@
2
+# norootforbuild
3
+%define pkg_name    ioncube_loaders_lin
4
+%define ion_version %(php-config --version | awk -F. '{print $1"."$2 }' 2>/dev/null || echo PHPCONFIG_NOT_FOUND)
5
+%define php_version %(php-config --version 2>/dev/null || echo PHPCONFIG_NOT_FOUND)
6
+#
7
+BuildRequires: awk
8
+Name:      php7-ioncube
9
+Version:   %{ion_version}
10
+Release:   20161007.<CI_CNT>.<B_CNT>
11
+License:   PHP
12
+Group:     Productivity/Networking/Web/Servers
13
+BuildRoot: %{_tmppath}/%{pkg_name}-%{version}-build
14
+BuildRequires: php7-devel
15
+Requires:  php7 = %{php_version}
16
+URL:       http://www.ioncube.com/loaders.php
17
+%ifarch x86_64
18
+Source:        %{pkg_name}_x86-64.tar.bz2
19
+%else
20
+Source:        %{pkg_name}_x86.tar.bz2
21
+%endif
22
+Summary:   PHP ionCube loader
23
+%description
24
+Loader for ionCube encoded files
25
+
26
+%prep
27
+%setup -q -n ioncube
28
+
29
+%build
30
+
31
+%install
32
+%{__mkdir} -p %{buildroot}%{_libdir}/php7/extensions
33
+%__install -m 0755 ioncube_loader_lin_%{ion_version}.so %{buildroot}%{_libdir}/php7/extensions/
34
+%__install -m 0755 ioncube_loader_lin_%{ion_version}_ts.so %{buildroot}%{_libdir}/php7/extensions/
35
+%{__mkdir} -p %{buildroot}%{_sysconfdir}/php7/conf.d
36
+echo "; comment out next line to disable ioncube extension in php" > %{buildroot}%{_sysconfdir}/php7/conf.d/ioncube.ini
37
+echo ";zend_extension = %{_libdir}/php7/extensions/ioncube_loader_lin_%{ion_version}.so" >> %{buildroot}%{_sysconfdir}/php7/conf.d/ioncube.ini
38
+
39
+
40
+%clean
41
+%{__rm} -rf %{buildroot}
42
+
43
+%files
44
+%defattr(-,root,root,-)
45
+%{_libdir}/php7/extensions/ioncube_loader_lin_%{ion_version}.so
46
+%{_libdir}/php7/extensions/ioncube_loader_lin_%{ion_version}_ts.so
47
+%config(noreplace) %{_sysconfdir}/php7/conf.d/ioncube.ini
48
+
49
+
50
+%changelog
51