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

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

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


Revision 1.15 - (hide annotations) (download)
Thu Jan 17 03:42:59 2019 UTC (5 years, 4 months ago) by jpp
Branch: MAIN
CVS Tags: smeserver-nextcloud-1_1_0-13_el6_sme
Changes since 1.14: +2 -2 lines
* Wed Jan 16 2019 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-13.sme
- fix /.well-known check [SME: 10709]
- created a OCC command you can call as root as if you were the right user. [SME: 10711]
- night cron to fix db [SME: 10710 ]

1 jpp 1.15 %define release 13
2 jpp 1.1 %define version 1.1.0
3    
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.3 Patch0: smeserver-nextcloud-1.1.0.patch0.patch
11     Patch1: smeserver-nextcloud-1.1.0.bz10556.patch
12 jpp 1.4 Patch2: smeserver-nextcloud-1.1.0-bz10560-logrotate.patch
13     Patch3: smeserver-nextcloud-1.1.0-bz10558-logincredentials.patch
14     Patch4: smeserver-nextcloud-1.1.0-bz10559-shares.patch
15     Patch5: smeserver-nextcloud-1.1.0-bz10557-ibays_folder.patch
16 jpp 1.5 Patch6: smeserver-nextcloud-1.1.0-bz10560-signal-event-hang.patch
17 jpp 1.8 Patch7: smeserver-nextcloud-1.1.0-bz10564-improve-shares.patch
18 jpp 1.7 Patch8: smeserver-nextcloud-1.1.0-bz10564-fixIncludes-longUpdate.patch
19 jpp 1.9 Patch9: smeserver-nextcloud-1.1.0-bz10608-fail2ban.patch
20 jpp 1.10 Patch10: smeserver-nextcloud-1.1.0-bz10596-fix-update.patch
21 jpp 1.12 Patch11: smeserver-nextcloud-1.1.0-bz10695-memory-limit.patch
22 jpp 1.13 Patch12: smeserver-nextcloud-1.1.0-bz10709-well-known.patch
23     Patch13: smeserver-nextcloud-1.1.0-bz10711-occ-command.patch
24     Patch14: smeserver-nextcloud-1.1.0-bz10710-dbcolumnupdate.patch
25 jpp 1.1 BuildArch: noarch
26 jpp 1.4 URL: https://www.nextcloud.com
27 jpp 1.1
28     BuildRequires: e-smith-devtools
29    
30     Requires: nextcloud >= 13.0.1
31     Requires: e-smith-apache
32     Requires: e-smith-mysql
33     Requires: smeserver-webapps-common
34     Requires: smeserver-php-fpm
35     Requires: samba-client
36     Requires: php71-php-smbclient
37     Requires: php71-php-opcache
38     Requires: php71-php-pecl-apcu
39     Requires: perl-JSON
40    
41     %description
42     Koozali SME Server Nextcloud files and configuration.
43    
44    
45     %prep
46     %setup
47 jpp 1.3 %patch0 -p1
48     %patch1 -p1
49 jpp 1.4 %patch2 -p1
50     %patch3 -p1
51     %patch4 -p1
52     %patch5 -p1
53 jpp 1.5 %patch6 -p1
54 jpp 1.6 %patch7 -p1
55 jpp 1.7 %patch8 -p1
56 jpp 1.9 %patch9 -p1
57 jpp 1.10 %patch10 -p1
58 jpp 1.12 %patch11 -p1
59 jpp 1.13 %patch12 -p1
60     %patch13 -p1
61     %patch14 -p1
62    
63 jpp 1.1
64     %build
65     perl createlinks
66    
67     %install
68     rm -rf %{buildroot}
69 jpp 1.11 mkdir -p root/var/log/php/nextcloud
70 jpp 1.1 (cd root; find . -depth -print | cpio -dump %{buildroot})
71     /sbin/e-smith/genfilelist %{buildroot} \
72 jpp 1.11 --dir /var/log/php/nextcloud 'attr(0755,www,www)' \
73 jpp 1.1 --dir /var/lib/php/nextcloud 'attr(0755,www,www)' \
74     --dir /var/lib/php/nextcloud/tmp 'attr(0755,www,www)' \
75     --dir /var/lib/php/nextcloud/opcache 'attr(0755,www,www)' \
76     --dir /var/lib/php/nextcloud/session 'attr(0755,www,www)' \
77     --dir /home/e-smith/files/nextcloud 'attr(0755,www,www)' \
78     --dir /home/e-smith/files/nextcloud/data 'attr(0755,www,www)' \
79 jpp 1.14 --file /usr/bin/OCC 'attr(0755,root,root)'\
80 jpp 1.1 > %{name}-%{version}-filelist
81    
82     cat %{name}-%{version}-filelist
83     %files -f %{name}-%{version}-filelist
84     %defattr(-,root,root)
85     %doc COPYING
86    
87    
88     %changelog
89 jpp 1.15 * Wed Jan 16 2019 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-13.sme
90 jpp 1.13 - fix /.well-known check [SME: 10709]
91     - created a OCC command you can call as root as if you were the right user. [SME: 10711]
92     - night cron to fix db [SME: 10710 ]
93    
94 jpp 1.12 * Mon Jan 07 2019 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-11.sme
95     - increase memory limit to new default from 128M to 512M [SME: 10695]
96     add property to nextcloud db key MemoryLimit to set to local value if needed.
97    
98 jpp 1.11 * Thu Dec 20 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-10.sme
99     - fix /var/log/php/nextcloud/ is missing [SME: 10601]
100    
101 jpp 1.10 * Wed Dec 19 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-9.sme
102     - fix timeout on update [SME: 10596]
103    
104 jpp 1.9 * Wed Jul 04 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-8.sme
105     - fix wrong filter name for fail2ban jail.conf [SME: 10608]
106    
107 jpp 1.7 * Wed Apr 11 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-7.sme
108     - fix long update [SME: 10564]
109     - fix IncludeIbay not working.
110    
111 jpp 1.6 * Wed Apr 11 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-6.sme
112     - fix shares not correctly handled [SME: 10564]
113     - improve shares support
114     - reload file cache after creation of ibays folder, so it displays to users.
115     - improve output to message log
116    
117 jpp 1.5 * Mon Apr 09 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-5.sme
118     - fix signal-event nextcloud-update hang [SME: 10560]
119    
120 jpp 1.4 * Sun Apr 08 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-4.sme
121     - fix wrong logrotate option [SME: 10560]
122     - change password storage mode for smb share to allow access from portable devices [SME: 10558]
123     - create the "ibays" main folder to mount all ibays in every user nextcloud space [SME: 10557]
124     - add Shared folders in nextcloud under the ibays folder [SME: 10559]
125    
126 jpp 1.3 * Sat Apr 07 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-3.sme
127 jpp 1.2 - tidying templates, set cron update
128 jpp 1.3 - fix bad folder name for ibays [SME: 10556]
129 jpp 1.2
130 jpp 1.1 * Fri Mar 30 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.1.0-1.sme
131     - initial release
132    

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