--- rpms/smeserver-freepbx/contribs10/smeserver-freepbx.spec 2022/04/17 01:46:29 1.7 +++ rpms/smeserver-freepbx/contribs10/smeserver-freepbx.spec 2022/07/22 06:54:14 1.13 @@ -1,10 +1,10 @@ -# $Id: smeserver-freepbx.spec,v 1.6 2022/03/28 03:56:02 jpp Exp $ +# $Id: smeserver-freepbx.spec,v 1.12 2022/07/22 06:47:36 jpp Exp $ # Authority: vip-ire # Name: Daniel Berteaud #%define fpbxversion 2.5.0 %define version 14 -%define release 2 +%define release 4 %define name smeserver-freepbx Summary: Asterisk web GUI @@ -15,6 +15,10 @@ License: GPL Group: System/Servers Source: %{name}-%{version}.tar.gz Patch0: smeserver-freepbx-14-bz11940-bz9756-cron.patch +Patch1: smeserver-freepbx-14-bz11924-sounds.patch +Patch2: smeserver-freepbx-14-bz11986-service-fwconsole.patch +Patch3: smeserver-freepbx-14-bz12009-backup.patch +Patch4: smeserver-freepbx-14-bz12046-httpd24.patch BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot URL: http://www.freepbx.org/ @@ -60,7 +64,8 @@ Requires: asterisk-sounds-core-en-alaw a # Requires: asterisk-sounds-core-fr-alaw asterisk-sounds-core-fr-g722 asterisk-sounds-core-fr-g729 asterisk-sounds-core-fr-gsm asterisk-sounds-core-fr-siren14 asterisk-sounds-core-fr-siren7 asterisk-sounds-core-fr-sln16 asterisk-sounds-core-fr-ulaw asterisk-sounds-core-fr-wav # Requires: asterisk-sounds-core-it-alaw asterisk-sounds-core-it-g722 asterisk-sounds-core-it-g729 asterisk-sounds-core-it-gsm asterisk-sounds-core-it-siren14 asterisk-sounds-core-it-siren7 asterisk-sounds-core-it-sln16 asterisk-sounds-core-it-ulaw asterisk-sounds-core-it-wav # Requires: asterisk-sounds-core-es-alaw asterisk-sounds-core-es-g722 asterisk-sounds-core-es-g729 asterisk-sounds-core-es-gsm asterisk-sounds-core-es-siren14 asterisk-sounds-core-es-siren7 asterisk-sounds-core-es-sln16 asterisk-sounds-core-es-ulaw asterisk-sounds-core-es-wav - +Requires: e-smith-apache >= 2.6.0-19 +Requires: smeserver-php >= 3.0.0-43 #Buildarch: noarch AutoReqProv: no @@ -71,9 +76,18 @@ This package provide the integration of %changelog -* Sat Apr 16 2022 Jean-Philippe Pialasse %{version}-2.sme +* Fri Jul 22 2022 Jean-Philippe Pialasse 14-4.sme +- add to core backup [SME: 12009] +- httpd 2.4 syntax [SME: 12046] + +* Tue May 31 2022 Jean-Philippe Pialasse 14-3.sme +- fix service file fwconsole path [SME: 11986] + +* Sat Apr 16 2022 Jean-Philippe Pialasse 14-2.sme - fix huge amount of error if asterisk disabled [SME: 9756] - fix multiple email sent because of asterisk cron php path [SME: 11940] +- on uninstall remove asterisk crontab to avoid noise [SME: 10131] +- allow access to sounds folder for gui [SME: 11924] * Sun Mar 27 2022 Jean-Philippe Pialasse 14-1.sme - first version 14 [SME: 11613] @@ -97,6 +111,7 @@ This package provide the integration of * Mon Jan 20 2020 Jean-Philipe Pialasse 13-16.sme - add required modules to enable cel and cdr logging and search [SME: 10620] - add requires lame [SME: 9859] +- fix sounds ownership so they can be handled via gui [SME: 11924] * Mon Jan 29 2018 Jean-Philipe Pialasse 13-15.sme - fix warning tampered files in GUI [SME: 10496] @@ -333,6 +348,10 @@ This package provide the integration of %prep %setup -q -n %{name}-%{version} %patch0 -p1 +%patch1 -p1 +%patch2 -p1 +%patch3 -p1 +%patch4 -p1 %build # Build symlinks @@ -380,8 +399,15 @@ fi %preun if [ $1 = 0 ] ; then - /etc/rc.d/init.d/freepbx stop >& /dev/null || : + /usr/bin/systemctl stop freepbx >& /dev/null || : fi - true +%postun +if [ $1 = 0 ] ; then + #remove cron for asterisk on uninstallation to avoid noise + /usr/bin/crontab -u asterisk -r >& /dev/null || : +fi +true + +