/[smecontribs]/rpms/smeserver-nextcloud/contribs10/smeserver-nextcloud.spec
ViewVC logotype

Annotation of /rpms/smeserver-nextcloud/contribs10/smeserver-nextcloud.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.14 - (hide annotations) (download)
Thu May 19 03:22:22 2022 UTC (23 months, 4 weeks ago) by jpp
Branch: MAIN
CVS Tags: smeserver-nextcloud-1_2_0-12_el7_sme
Changes since 1.13: +10 -1 lines
* Wed May 18 2022 Jean-Philippe Pialasse <tests@pialasse.com> 1.2.0-12.sme
- use php_pecl-apcu for cli [SME: 11920]
- db update of keys and indexes [SME: 11854]
- few nextcloud-occ-conf fixes [SME: 11973]
  make occ used in scripts rather than OCC

1 jpp 1.14 %define release 12
2 jpp 1.2 %define version 1.2.0
3 jpp 1.1
4     Summary: Koozali SME Server Nextcloud configuration
5     Name: smeserver-nextcloud
6     Version: %{version}
7     Release: %{release}%{?dist}
8     License: GPL
9     Source: %{name}-%{version}.tar.gz
10 jpp 1.4 Patch0: smeserver-nextcloud-1.2.0-bz10876-username-for-ldap.patch
11 jcrisp 1.5 Patch1: smeserver-nextcloud-1.2.0.bz11086-db-phpver-typo.patch
12 jcrisp 1.6 Patch2: smeserver-nextcloud-1.2.0.bz11086-add-missing-conf-details.patch
13 jcrisp 1.7 Patch3: smeserver-nextcloud-1.2.0.bz11171-template-min-max-start-servers.patch
14 jcrisp 1.8 Patch4: smeserver-nextcloud-1.2.0.bz11171-check-min-max-start-servers.patch
15 jcrisp 1.9 Patch5: smeserver-nextcloud-1.2.0.bz11268-fix-typo-php-pool-template.patch
16 jpp 1.10 Patch6: smeserver-nextcloud-1.2.0-bz11086.patch
17 jpp 1.11 Patch7: smeserver-nextcloud-1.2.0-bz11086-dav-externalfs.patch
18 jpp 1.12 Patch8: smeserver-nextcloud-1.2.0-bz11172-logrotate.patch
19 jpp 1.14 Patch9: smeserver-nextcloud-1.2.0-bz11920-bz11854-bz11973.patch
20 jpp 1.1
21     BuildArch: noarch
22     URL: https://www.nextcloud.com
23    
24     BuildRequires: e-smith-devtools
25    
26 jpp 1.3 Requires: nextcloud >= 20.0.1
27 jpp 1.1 Requires: e-smith-apache
28     Requires: e-smith-mysql
29     Requires: smeserver-webapps-common
30 jpp 1.3 Requires: smeserver-php >= 3.0.0-15
31 jpp 1.1 Requires: samba-client
32     Requires: perl-JSON
33 jcrisp 1.5 Requires: perl-Exporter-Tiny
34     Requires: perl-Sub-Quote
35 jpp 1.2 Requires: php74-php-smbclient
36     Requires: php74-php-opcache
37     Requires: php74-php-pecl-apcu
38     Requires: php74-php-pecl-inotify
39     Requires: php74-php-pecl-zip
40     Requires: php74-php-pecl-imagick
41     Requires: php74-php-gmp
42 jpp 1.1
43    
44     %description
45     Koozali SME Server Nextcloud files and configuration.
46    
47    
48     %prep
49     %setup
50 jpp 1.4 %patch0 -p1
51 jcrisp 1.5 %patch1 -p1
52 jcrisp 1.6 %patch2 -p1
53 jcrisp 1.7 %patch3 -p1
54 jcrisp 1.8 %patch4 -p1
55 jcrisp 1.9 %patch5 -p1
56 jpp 1.10 %patch6 -p1
57 jpp 1.11 %patch7 -p1
58 jpp 1.12 %patch8 -p1
59 jpp 1.14 %patch9 -p1
60 jpp 1.1
61     %build
62     perl createlinks
63    
64     %install
65     rm -rf %{buildroot}
66     mkdir -p root/var/log/php/nextcloud
67     (cd root; find . -depth -print | cpio -dump %{buildroot})
68     /sbin/e-smith/genfilelist %{buildroot} \
69     --dir /var/log/php/nextcloud 'attr(0755,www,www)' \
70     --dir /var/lib/php/nextcloud 'attr(0755,www,www)' \
71     --dir /var/lib/php/nextcloud/tmp 'attr(0755,www,www)' \
72     --dir /var/lib/php/nextcloud/opcache 'attr(0755,www,www)' \
73     --dir /var/lib/php/nextcloud/session 'attr(0755,www,www)' \
74     --dir /home/e-smith/files/nextcloud 'attr(0755,www,www)' \
75     --dir /home/e-smith/files/nextcloud/data 'attr(0755,www,www)' \
76 jcrisp 1.5 --ignoredir "/etc/sudoers.d" \
77     --file "/etc/sudoers.d/90_nextcloud" "attr(0440,root,root)" \
78 jpp 1.1 --file /usr/bin/OCC 'attr(0755,root,root)'\
79 jpp 1.10 --file /usr/bin/occ 'attr(0755,root,root)'\
80 jpp 1.14 --file /usr/bin/nc_dbupdate 'attr(0755,root,root)'\
81 jpp 1.1 > %{name}-%{version}-filelist
82    
83     cat %{name}-%{version}-filelist
84     %files -f %{name}-%{version}-filelist
85     %defattr(-,root,root)
86     %doc COPYING
87    
88    
89     %changelog
90 jpp 1.14 * Wed May 18 2022 Jean-Philippe Pialasse <tests@pialasse.com> 1.2.0-12.sme
91     - use php_pecl-apcu for cli [SME: 11920]
92     - db update of keys and indexes [SME: 11854]
93     - few nextcloud-occ-conf fixes [SME: 11973]
94     make occ used in scripts rather than OCC
95    
96 jpp 1.13 * Sun Jun 06 2021 Jean-Philippe Pialasse <tests@pialasse.com> 1.2.0-11.sme
97 jpp 1.12 - fix logrotate error [SME: 11172]
98 jpp 1.13 - fix noise in error log
99 jpp 1.12
100 jpp 1.11 * Sun Jun 06 2021 Jean-Philippe Pialasse <tests@pialasse.com> 1.2.0-9.sme
101     - fix dav redirections for domain use and subdir [SME: 11086]
102     - refresh externalfs on loading, best for ibays
103     - tidying
104    
105 jpp 1.10 * Sun Jun 06 2021 Jean-Philippe Pialasse <tests@pialasse.com> 1.2.0-8.sme
106     - add update event [SME: 11086]
107     - add occ as hard link of OCC
108    
109 jcrisp 1.9 * Fri Dec 18 2020 John Crisp <jcrisp@safeandsoundit.co.uk> 1.2.0-7.sme
110     - Fix typo in php pool template [SME: 11268]
111    
112 jcrisp 1.8 * Tue Dec 01 2020 John Crisp <jcrisp@safeandsoundit.co.uk> 1.2.0-6.sme
113     - Add a check for the Min/Max/Start servers [SME: 11171]
114     - https://bugs.contribs.org/show_bug.cgi?id=11171#c4
115    
116 jcrisp 1.7 * Mon Nov 16 2020 John Crisp <jcrisp@safeandsoundit.co.uk> 1.2.0-5.sme
117     - Template missing Min/Start/Max Servers and Children [SME: 11171]
118    
119 jcrisp 1.6 * Thu Nov 12 2020 John Crisp <jcrisp@safeandsoundit.co.uk> 1.2.0-4.sme
120     - Add missing SMB configuration details including domain/workgroup
121    
122 jcrisp 1.5 * Mon Nov 09 2020 John Crisp <jcrisp@safeandsoundit.co.uk> 1.2.0-3.sme
123     - Fix sudoer file permissions in file list
124     - Fix some install bugs
125     - typo in httpd.conf
126     - switch db from mysql to maria db
127     - update php version
128     - add Requires
129    
130 jpp 1.3 * Sun Nov 08 2020 Jean-Philipe Pialasse <tests@pialasse.com> 1.2.0-2.sme
131 jpp 1.4 - use username as id in place of ldap uuid [SME: 10876]
132 jpp 1.3
133 jpp 1.2 * Sun Nov 08 2020 Jean-Philipe Pialasse <tests@pialasse.com> 1.2.0-1.sme
134     - initial SME10 import [SME: 11086]
135    
136 jpp 1.1 * Sun Nov 08 2020 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-19.sme
137     - use php73-fpm [SME: 11003]
138     - Require php-gmp for Nextcloud 19 and newer [SME: 11004]
139     - add phpbasedir support so you can add individual access to dir or files [SME: 11083]
140     simply use nextcloud PHPBaseDir property
141     - increase FastCgiExternalServer php pool timeout to 300 [SME: 11084]
142     - ease use of a dedicated domaine with https [SME: 10885]
143    
144     * Mon Jan 27 2020 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-16.sme
145     - fix missing Requirement and template-begins [SME: 10852]
146    
147     * Mon Dec 16 2019 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-15.sme
148     - use php72-fpm instead of php71-fpm [SME: 10852]
149    
150     * Sun Feb 17 2019 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-14.sme
151     - fix 512MB error on events [SME: 10728]
152     - add requirement for inotify support [SME: 10733]
153    
154     * Wed Jan 16 2019 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-13.sme
155     - fix /.well-known check [SME: 10709]
156     - created a OCC command you can call as root as if you were the right user. [SME: 10711]
157     - night cron to fix db [SME: 10710 ]
158    
159     * Mon Jan 07 2019 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-11.sme
160     - increase memory limit to new default from 128M to 512M [SME: 10695]
161     add property to nextcloud db key MemoryLimit to set to local value if needed.
162    
163     * Thu Dec 20 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-10.sme
164     - fix /var/log/php/nextcloud/ is missing [SME: 10601]
165    
166     * Wed Dec 19 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-9.sme
167     - fix timeout on update [SME: 10596]
168    
169     * Wed Jul 04 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-8.sme
170     - fix wrong filter name for fail2ban jail.conf [SME: 10608]
171    
172     * Wed Apr 11 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-7.sme
173     - fix long update [SME: 10564]
174     - fix IncludeIbay not working.
175    
176     * Wed Apr 11 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-6.sme
177     - fix shares not correctly handled [SME: 10564]
178     - improve shares support
179     - reload file cache after creation of ibays folder, so it displays to users.
180     - improve output to message log
181    
182     * Mon Apr 09 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-5.sme
183     - fix signal-event nextcloud-update hang [SME: 10560]
184    
185     * Sun Apr 08 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-4.sme
186     - fix wrong logrotate option [SME: 10560]
187     - change password storage mode for smb share to allow access from portable devices [SME: 10558]
188     - create the "ibays" main folder to mount all ibays in every user nextcloud space [SME: 10557]
189     - add Shared folders in nextcloud under the ibays folder [SME: 10559]
190    
191     * Sat Apr 07 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-3.sme
192     - tidying templates, set cron update
193     - fix bad folder name for ibays [SME: 10556]
194    
195     * Fri Mar 30 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-1.sme
196     - initial release
197    

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed