1 |
%define phpversion 74 |
2 |
|
3 |
Summary: sme server integration of dokuwiki |
4 |
Name: smeserver-dokuwiki |
5 |
Version: 0.3.0 |
6 |
Release: 2%{?dist} |
7 |
License: GNU GPL |
8 |
URL: http://www.splitbrain.org/projects/dokuwiki |
9 |
Group: SMEserver/addon |
10 |
Source: %{name}-%{version}.tar.gz |
11 |
|
12 |
BuildArchitectures: noarch |
13 |
BuildRequires: e-smith-devtools |
14 |
BuildRoot: /var/tmp/%{name}-%{version} |
15 |
Requires: e-smith-base >= 5.8.0 |
16 |
Requires: dokuwiki |
17 |
Requires: smeserver-webapps-common |
18 |
Patch0:smeserver-dokuwiki-0.3.0-Add-Update-Event.patch |
19 |
AutoReqProv: no |
20 |
|
21 |
%description |
22 |
smserver integration of dokuwiki |
23 |
DokuWiki is a simple to use Wiki aimed at the documentation needs of a small company |
24 |
|
25 |
%changelog |
26 |
* Tue Oct 05 2021 Brian Read <brianr@bjsystems.co.uk> 0.3.0-2.sme |
27 |
- Add update event [SME: 11703] |
28 |
|
29 |
* Mon Oct 04 2021 John Crisp <jcrisp@safeandsoundit.co.uk> 0.3.0-1 |
30 |
- First import to SME Contribs [SME: 11703] |
31 |
- Update to PHP 74 |
32 |
|
33 |
* Mon Jan 22 2018 Daniel Berteaud <daniel@firewall-services.com> 0.2.2-1 |
34 |
- Fix permissions on plugin dir (daniel@firewall-services.com) |
35 |
|
36 |
* Sun Nov 19 2017 Daniel Berteaud <daniel@firewall-services.com> 0.2.1-1 |
37 |
- new package built with tito |
38 |
|
39 |
* Fri Jul 14 2017 Daniel Berteaud <daniel@firewall-services.com> 0.2.0-1 |
40 |
- Switch to php 71 using FastCGI and FPM is available |
41 |
|
42 |
* Wed Mar 15 2017 Daniel Berteaud <daniel@firewall-services.com> 0.1.7-1 |
43 |
- Add /dev/urandom to open_basedir, needed since 2017-02-19 |
44 |
|
45 |
* Wed Oct 29 2014 Daniel B. <daniel@firewall-services.com> 0.1.6-1 |
46 |
- Fix SSL redirection |
47 |
|
48 |
* Sat Jul 5 2014 Daniel B. <daniel@firewall-services.com> 0.1.5-1 |
49 |
- Small fixes in authhttpldap plugin |
50 |
|
51 |
* Tue May 6 2014 Daniel B. <daniel@firewall-services.com> 0.1.4-1 |
52 |
- Add missing plugin.info.txt file for the authhttpldap plugin |
53 |
|
54 |
* Thu Dec 5 2013 Daniel B. <daniel@firewall-services.com> 0.1.3-1 |
55 |
- Push php memory limit to 128M |
56 |
|
57 |
* Fri Nov 22 2013 Daniel B. <daniel@firewall-services.com> 0.1.2-1 |
58 |
- Fix a typo which prevent transparent SSL redirection |
59 |
|
60 |
* Wed May 15 2013 Daniel B. <daniel@firewall-services.com> 0.1.1-1 |
61 |
- Use the new auth plugins to be compatible with dokuwiki 2013-05-10 |
62 |
|
63 |
* Wed May 15 2013 Daniel B. <daniel@firewall-services.com> 0.1.0-1 |
64 |
- Import in GIT |
65 |
|
66 |
* Mon Dec 19 2011 Daniel B. <daniel@firewall-services.com> 0.1-2 |
67 |
- Follow symlinks so fck media browser works |
68 |
|
69 |
* Fri Jul 08 2011 Daniel B. <daniel@firewall-services.com> 0.1-1 |
70 |
- initial release |
71 |
|
72 |
%prep |
73 |
%setup |
74 |
%patch0 -p1 |
75 |
|
76 |
%build |
77 |
perl ./createlinks |
78 |
find root/ -type f | xargs grep -l __PHP_VERSION__ | xargs sed -i -e "s/__PHP_VERSION__/%{phpversion}/g" |
79 |
%{__mkdir_p} root/var/log/php/dokuwiki |
80 |
%{__mkdir_p} root/var/lib/php/dokuwiki/{tmp,session,opcache} |
81 |
|
82 |
%install |
83 |
rm -rf $RPM_BUILD_ROOT |
84 |
(cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT) |
85 |
rm -f %{name}-%{version}-filelist |
86 |
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT \ |
87 |
--dir /var/log/php/dokuwiki 'attr(0770,root,www)' \ |
88 |
--dir /var/lib/php/dokuwiki 'attr(0770,root,www)' \ |
89 |
--dir /var/lib/php/dokuwiki/tmp 'attr(0770,root,www)' \ |
90 |
--dir /var/lib/php/dokuwiki/opcache 'attr(0770,root,www)' \ |
91 |
--dir /var/lib/php/dokuwiki/session 'attr(0770,root,www)' \ |
92 |
--dir /usr/share/dokuwiki/lib/plugins 'attr(0755,www,www)' \ |
93 |
> %{name}-%{version}-filelist |
94 |
|
95 |
%files -f %{name}-%{version}-filelist |
96 |
%defattr(-,root,root) |
97 |
|
98 |
%clean |
99 |
rm -rf $RPM_BUILD_ROOT |
100 |
|
101 |
|
102 |
%postun |
103 |
|