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

Diff of /rpms/smeserver-roundcube/contribs10/smeserver-roundcube.spec

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

Revision 1.12 by jpp, Sat Dec 10 06:38:45 2022 UTC Revision 1.22 by jpp, Mon Mar 25 15:25:50 2024 UTC
# Line 1  Line 1 
1  %define name smeserver-roundcube  %define name smeserver-roundcube
2  %define version 1.2  %define version 1.2
3  %define release 16  %define release 24
4    
5  Summary: smserver rpm to setup roundcube, an IMAP mail client  Summary: smserver rpm to setup roundcube, an IMAP mail client
6  Name: %{name}  Name: %{name}
# Line 17  BuildArchitectures: noarch Line 17  BuildArchitectures: noarch
17  BuildRequires: e-smith-devtools  BuildRequires: e-smith-devtools
18  Requires: e-smith-release >= 10.0  Requires: e-smith-release >= 10.0
19  Requires: e-smith-apache >= 2.6.0-19  Requires: e-smith-apache >= 2.6.0-19
20  Requires: roundcubemail >= 1.5.3  Requires: roundcubemail >= 1.6
21  Requires: git  Requires: git
22  Requires: smeserver-dovecot-extras  Requires: smeserver-dovecot-extras
23  Requires: jq  Requires: jq
# Line 30  Patch1: smeserver-roundcube-1.2-Add-upda Line 30  Patch1: smeserver-roundcube-1.2-Add-upda
30  Patch2:  smeserver-roundcube-1.2-bz12059-24syntax.patch  Patch2:  smeserver-roundcube-1.2-bz12059-24syntax.patch
31  Patch3: smeserver-roundcube-1.2-bz11430-login.patch  Patch3: smeserver-roundcube-1.2-bz11430-login.patch
32  Patch4: smeserver-roundcube-1.2-bz11430-plugins.patch  Patch4: smeserver-roundcube-1.2-bz11430-plugins.patch
33    Patch5: smeserver-roundcube-1.2-Update-params-forv1_6-roundcube.patch
34    Patch6: smeserver-roundcube-1.2-bz12489-bz12263.patch
35    Patch7: smeserver-roundcube-1.2-useSSL.patch
36    Patch8: smeserver-roundcube-1.2-rcplugin_update.patch
37    
38  %description  %description
39  smserver rpm to setup the roundcube IMAP mail client.  smeserver rpm to setup the roundcube IMAP mail client.
40    
41  %changelog  %changelog
42  * Sat Dec 10 2022 Jean-Philippe Pialasse <tests@pialasse.com> 1.2-16.sme  * Mon Mar 25 2024 Jean-Philippe Pialasse <jpp@koozali.org> 1.2-24.sme
43    - fix temp event not ending because of interactive install of plugin [SME: 12530]
44    - stop altering php81 ini file [SME: 12529]
45    - workaround Composer could not detect the root package [SME: 12531]
46    - workaround roundcube/plugin-installer is also a root requirement [SME: 12532]
47    
48    * Fri Mar 22 2024 Jean-Philippe Pialasse <jpp@koozali.org> 1.2-23.sme
49    - fix roundcube unable to send mail after smeserver-qpsmtpd disabling auth on port 25
50    
51    * Sat Feb 24 2024 Jean-Philippe Pialasse <tests@pialasse.com> 1.2-21.sme
52    - add nextcloud_attachements plugin support [SME: 12489]
53    - simplify access setting using access(private,public)/status [SME: 12263]
54    - Requires roundcube >= 1.6
55      up to php81,   add dedicated php pool
56      using update event to config plugins
57    
58    * Tue Oct 31 2023 Brian Read <brianr@koozali.org> 1.2-19.sme
59    - Update params for changes from v1.6 roundcube [SME: 12415]
60    
61    * Sun Dec 11 2022 Jean-Philippe Pialasse <tests@pialasse.com> 1.2-18.sme
62    - fix previous patch [SME: 11430]
63    
64    * Sat Dec 10 2022 Jean-Philippe Pialasse <tests@pialasse.com> 1.2-17.sme
65  - remove sieverules [SME: 11430]  - remove sieverules [SME: 11430]
66    change skin on availability for 1.6    change skin on availability for 1.6
67    
# Line 185  smserver rpm to setup the roundcube IMAP Line 211  smserver rpm to setup the roundcube IMAP
211  %patch2 -p1  %patch2 -p1
212  %patch3 -p1  %patch3 -p1
213  %patch4 -p1  %patch4 -p1
214    %patch5 -p1
215    %patch6 -p1
216  rm -rf root/etc/e-smith/templates/usr/share/roundcubemail/plugins/sieverules  rm -rf root/etc/e-smith/templates/usr/share/roundcubemail/plugins/sieverules
217  cp %{source1} root/usr/local/bin/composer  mkdir -p root/usr/local/bin/
218    cp %{SOURCE1} root/usr/local/bin/composer
219    mkdir -p root/var/lib/php/roundcube/{session,tmp,opcache}
220    mkdir -p root/var/log/php/roundcube
221    %patch7 -p1
222    %patch8 -p1
223    
224  %build  %build
225  perl createlinks  perl createlinks
# Line 197  rm -rf $RPM_BUILD_ROOT Line 230  rm -rf $RPM_BUILD_ROOT
230  rm -f %{name}-%{version}-filelist  rm -f %{name}-%{version}-filelist
231  /sbin/e-smith/genfilelist $RPM_BUILD_ROOT \  /sbin/e-smith/genfilelist $RPM_BUILD_ROOT \
232     --file /usr/local/bin/composer  'attr(0755,root,www)' \     --file /usr/local/bin/composer  'attr(0755,root,www)' \
233       --dir /var/log/php/roundcube  'attr(0755,www,www)' \
234       --dir /var/lib/php/roundcube  'attr(0755,www,www)' \
235       --dir /var/lib/php/roundcube/tmp 'attr(0755,www,www)' \
236       --dir /var/lib/php/roundcube/opcache 'attr(0755,www,www)' \
237       --dir /var/lib/php/roundcube/session 'attr(0755,www,www)' \
238    > %{name}-%{version}-filelist    > %{name}-%{version}-filelist
239  echo "%doc COPYING"  >> %{name}-%{version}-filelist  echo "%doc COPYING"  >> %{name}-%{version}-filelist
240    
# Line 209  rm -rf %{name}-%{version} Line 247  rm -rf %{name}-%{version}
247    
248  %post  %post
249  #Update the plugins  #Update the plugins
250  echo ""  # now in smeserver-roundcube-update event
251  echo "Update the Roundcube Plugins, please wait"  #echo ""
252  echo ""  #echo "Update the Roundcube Plugins, please wait"
253  /usr/bin/rcplugin_update.sh  #echo ""
254  echo ""  #/usr/bin/rcplugin_update.sh
255    #echo ""
256    
257  %postun  %postun
258  #uninstall  #uninstall
259  if [ $1 = 0 ] ; then  if [ $1 = 0 ] ; then
260   /sbin/e-smith/expand-template /etc/httpd/conf/httpd.conf   /usr/bin/systemctl restart httpd-e-smith
  /usr/local/bin/svc -h /service/httpd-e-smith  
261  fi  fi
262    
263  %files -f %{name}-%{version}-filelist  %files -f %{name}-%{version}-filelist


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

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