/[smeserver]/rpms/e-smith-apache/sme10/e-smith-apache.spec
ViewVC logotype

Diff of /rpms/e-smith-apache/sme10/e-smith-apache.spec

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

Revision 1.4 by vip-ire, Sun Feb 7 10:54:50 2016 UTC Revision 1.15 by jpp, Fri Dec 11 02:44:25 2020 UTC
# Line 1  Line 1 
1  # $Id: e-smith-apache.spec,v 1.1 2016/02/04 18:31:20 vip-ire Exp $  # $Id: e-smith-apache.spec,v 1.14 2020/06/27 20:46:34 jpp Exp $
2    
3  Summary: e-smith server and gateway - apache module  Summary: e-smith server and gateway - apache module
4  %define name e-smith-apache  %define name e-smith-apache
5  Name: %{name}  Name: %{name}
6  %define version 2.6.0  %define version 2.6.0
7  %define release 1  %define release 12
8  Version: %{version}  Version: %{version}
9  Release: %{release}%{?dist}  Release: %{release}%{?dist}
10  License: GPL  License: GPL
11  Group: Networking/Daemons  Group: Networking/Daemons
12  Source: %{name}-%{version}.tar.xz  Source: %{name}-%{version}.tar.xz
13    Patch0: e-smith-apache-2.6.0-httpd24.patch
14    Patch1: e-smith-apache-2.6.0-bz9591-iconspath.patch
15    Patch2: e-smith-apache-2.6.0-bz10916-SSLHonorCipherOrder.patch
16    Patch3: e-smith-apache-2.6.0-bz10459-Ciphers-and-TLS.patch
17    Patch4: e-smith-apache-2.6.0-bz10867-remove-php3-refs.patch
18    Patch5: e-smith-apache-2.6.0-bz10966-remove-hardcoded-ports.patch
19    Patch6: e-smith-apache-2.6.0-bz8693-SNI.patch
20    Patch7: e-smith-apache-2.6.0-bz11123-bz11111-systemd-update.patch
21    
22  BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot  BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
23  BuildArchitectures: noarch  BuildArchitectures: noarch
24  Requires: e-smith-base >= 4.15.1  Requires: e-smith-base >= 4.15.1
# Line 28  BuildRequires: e-smith-devtools >= 1.11. Line 37  BuildRequires: e-smith-devtools >= 1.11.
37  %description  %description
38  e-smith server and gateway software - apache module.  e-smith server and gateway software - apache module.
39    
40    %prep
41    %setup
42    %patch0 -p1
43    %patch1 -p1
44    %patch2 -p1
45    %patch3 -p1
46    %patch4 -p1
47    %patch5 -p1
48    %patch6 -p1
49    %patch7 -p1
50    rm -rf  root/var/service/ root/service/ root/etc/rc.d/init.d/httpd-e-smith
51    
52    %build
53    perl createlinks
54    
55    %install
56    rm -rf $RPM_BUILD_ROOT
57    (cd root   ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT)
58    
59    /sbin/e-smith/genfilelist $RPM_BUILD_ROOT \
60        --file /sbin/e-smith/systemd/httpd-e-smith-prepare 'attr(0554,root,root)' \
61        --dir /var/service/httpd-e-smith 'attr(01755,root,root)' \
62        --file /var/service/httpd-e-smith/down 'attr(0644,root,root)' \
63        --file /var/service/httpd-e-smith/run 'attr(0755,root,root)' \
64        > e-smith-%{version}-filelist
65    
66    echo "%doc COPYING"          >> e-smith-%{version}-filelist
67    
68    %clean
69    rm -rf $RPM_BUILD_ROOT
70    
71    %files -f e-smith-%{version}-filelist
72    %defattr(-,root,root)
73    
74    %pre
75    # ease the transition between runit and systemd
76    if [ $1 -gt 1 ] ; then
77      if [ -e /var/service/httpd-e-smith/run ] ; then
78           /usr/bin/sv d httpd-e-smith
79      fi
80    fi
81    
82  %changelog  %changelog
83    * Wed Dec 09 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-12.sme
84    - create-update event [SME: 11123]
85    - move httpd-e-smith to systemd [SME: 11111]
86      changed sigusr1 used in events to reload as defined in the unit file
87    - give a logger to httpd-e-smith : journald [SME: 1416]
88    
89    * Sat Jun 27 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-11.sme
90    - set default SSLStrictSNIVHostCheck to off [SME: 8693]
91    
92    * Sat Jun 27 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-10.sme
93    - add SNI support for individual certificates per VirtualHosts [SME: 8693]
94    
95    * Sat Jun 27 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-9.sme
96    - port 80 and 443 should not be hardcoded [SME: 9192]
97    - e-smith-apache removing hardcoded ports [SME: 10966]
98    
99    * Tue Jun 23 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-8.sme
100    - remove php3 and php4 refs [SME: 10867]
101    
102    * Fri May 01 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-7.sme
103    - disable TLSv1 TLSv1.1 by default [SME: 10459]
104      * put strong ciphers first in default string
105      * cipher order and properties with periods
106    
107    * Fri May 01 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-4.sme
108    - add SSLHonorCipherOrder Directive  [SME: 10916]
109    
110    * Tue Dec 10 2019 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-3.sme
111    - update apache icon path [SME: 9591]
112    
113    * Wed Mar 23 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-2.sme
114    - fix syntax preventing httpd to launch [SME: 9364]
115    - moved changelog at end of file
116    
117  * Thu Feb 4 2016 Daniel Berteaud <daniel@firewall-services.com> 2.6.0-1.sme  * Thu Feb 4 2016 Daniel Berteaud <daniel@firewall-services.com> 2.6.0-1.sme
118  - Roll new stream for sme10  - Roll new stream for sme10
119    
# Line 595  e-smith server and gateway software - ap Line 680  e-smith server and gateway software - ap
680  - [0.1.0-01]  - [0.1.0-01]
681  - Initial release, split out from e-smith-base [markk 6428]  - Initial release, split out from e-smith-base [markk 6428]
682    
 %prep  
 %setup  
   
 %build  
 perl createlinks  
   
 %install  
 rm -rf $RPM_BUILD_ROOT  
 (cd root   ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT)  
   
 /sbin/e-smith/genfilelist $RPM_BUILD_ROOT \  
     --dir /var/service/httpd-e-smith 'attr(01755,root,root)' \  
     --file /var/service/httpd-e-smith/down 'attr(0644,root,root)' \  
     --file /var/service/httpd-e-smith/run 'attr(0755,root,root)' \  
     > e-smith-%{version}-filelist  
   
 echo "%doc COPYING"          >> e-smith-%{version}-filelist  
   
 %clean  
 rm -rf $RPM_BUILD_ROOT  
   
 %files -f e-smith-%{version}-filelist  
 %defattr(-,root,root)  


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