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

Annotation of /rpms/smeserver-phpki-ng/contribs10/smeserver-phpki-ng.spec

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


Revision 1.7 - (hide annotations) (download)
Sun Mar 7 19:01:46 2021 UTC (3 years, 3 months ago) by jcrisp
Branch: MAIN
CVS Tags: smeserver-phpki-ng-0_3-5_el7_sme
Changes since 1.6: +7 -3 lines
* Sun Mar 07 2021 John Crisp <jcrisp@safeandsoundit.co.uk> 0.3-5.sme
- modify dirs in spec file

1 jcrisp 1.1 # $Id: smeserver-phpki.spec,v 1.6 2017/05/03 21:08:27 unnilennium Exp $
2     # Authority: vip-ire
3     # Name: Daniel Berteaud
4    
5     Name: smeserver-phpki-ng
6     Version: 0.3
7 jcrisp 1.7 Release: 5%{?dist}
8 jcrisp 1.1 Summary: php integration into SME server
9    
10     Group: Applications/System
11     License: GPL
12     URL: http://phpki.sourceforge.net/
13     Source: %{name}-%{version}.tar.xz
14 brianr 1.2
15 jcrisp 1.1 #Patch0: smeserver-phpki-0.2-fix_redirect_with_user-manager_and_sso.patch
16     #Patch1: smeserver-phpki-0.2.bz10267.updatetktauth.patch
17    
18 brianr 1.2 Patch0: smeserver-phpki-ng-0.3-Add-extra-Loadmodules-to-httpd-conf.patch
19 brianr 1.3 Patch1: smeserver-phpki-ng-0.3-Add-in-systemd-startup.patch
20 jpp 1.5 Patch2: smeserver-phpki-ng-0.3-php73pool.patch
21 brianr 1.2
22 jcrisp 1.1 BuildRoot: %{_tmppath}/%{name}-%{version}
23     BuildArch: noarch
24    
25     BuildRequires: e-smith-devtools
26    
27     Requires: mod_auth_tkt
28     Requires: e-smith-base
29     Requires: phpki-ng
30     Requires: php-process
31     Requires: e-smith-manager >= 2.6.0-22
32     Obsoletes: smeserver-phpki
33    
34     %description
35     PHPki is an Open Source Web application for managing a multi-agency PKI for HIPAA compliance.
36     With it, you may create and centrally manage X.509 certificates for use with S/MIME enabled
37     e-mail clients, SSL servers, and VPN applications.
38     This package contains specific configuration for SME server
39    
40    
41     %changelog
42 jcrisp 1.7 * Sun Mar 07 2021 John Crisp <jcrisp@safeandsoundit.co.uk> 0.3-5.sme
43     - modify dirs in spec file
44    
45 jpp 1.5 * Thu Feb 25 2021 Jean-Philipe Pialasse <tests@pialasse.com> 0.3-4.sme
46     - configure php73 pool [SME: 11207]
47     tidy httpd.conf file
48     reuse phpki user and group
49    
50 brianr 1.4 * Sat Feb 13 2021 Brian Read <brianr@bjsystems.co.uk> 0.3-3.sme
51     - Set execution bit on /opt/phpki/html/ca in spec file[SME: 11207]
52    
53 brianr 1.3 * Tue Feb 09 2021 Brian Read <brianr@bjsystems.co.uk> 0.3-3.sme
54     - Add-in-systemd-startup [SME: 11207]
55    
56 brianr 1.2 * Thu Nov 26 2020 Brian Read <brianr@bjsystems.co.uk> 0.3-2.sme
57     - Add in Loadmodules needed to pki-conf/httpd.conf [SME: 11207]
58    
59 jcrisp 1.1 * Fri Apr 03 2020 John Crisp <jcrisp@safeandsoundit.co.uk> 0.3-1.sme
60     - New release for phpki-ng-0.84 based on phpki-0.83
61    
62     * Wed May 03 2017 Jean-Philipe Pialasse <tests@pialasse.com> 0.2-3.sme
63     - update TKT auth parameter for SME 9.2 update [SME: 10267]
64    
65     * Mon Nov 18 2013 Daniel B. <daniel@firewall-services.com> - 0.2-2.sme
66     - Fix a redirect issue with user-manager and LemonLDAP::NG as SSO
67    
68     * Mon Nov 11 2013 Daniel B. <daniel@firewall-services.com> - 0.2-1.sme
69     - Rebuild for SME9
70     - Do not disable httpd-pki service on uninstall
71    
72     * Fri May 24 2013 JP Pialasse <tests@pialasse.com> - 0.1-6.sme
73     - added php-process as dependency [SME: 7439]
74    
75     * Thu Oct 13 2011 Daniel B. <daniel@firewall-services.com> - 0.1-5.sme
76     - Change session path [SME: 6661]
77    
78     * Wed Jul 20 2011 Daniel B. <daniel@firewall-services.com> - 0.1-5.sme
79     - Protect by location (so we can set another location protected by LemonLDAP::NG)
80    
81     * Mon Feb 23 2009 Daniel B. <daniel@firewall-services.com> [0.1-4]
82     - Fix logrotate issue (send a sigusr1 signal to httpd-pki)
83    
84     * Mon Dec 15 2008 Daniel B. <daniel@firewall-services.com> [0.1-3]
85     - Move server-manager panel to "security" section
86    
87     * Wed Dec 10 2008 Daniel B. <daniel@firewall-services.com> [0.1-2]
88     - expand-templates in bootstrap-console-save instead of post-upgrade
89     - Disable authentication for the public part (so CRL can be updated automatically)
90     - Change the name of the menue in server-manager to certificate Management
91    
92     * Tue Dec 02 2008 Daniel B. <daniel@firewall-services.com> [0.1-1]
93     - Restrict access to /phpki/ca for admin, ask for a valid user for /phpki
94     - expand-templates on signal events conf-userpanels and domain-modify
95    
96     * Thu Nov 27 2008 Daniel B. <daniel@firewall-services.com> [0.1-0]
97     - initial release
98    
99    
100     %prep
101     %setup -q -n %{name}-%{version}
102 brianr 1.2 %patch0 -p1
103 brianr 1.3 %patch1 -p1
104 jcrisp 1.7 %patch2 -p1
105     mkdir -p root/var/lib/php/phpki/{tmp,session,opcache}
106 jpp 1.5 rm -rf root/var/lib/php/pki-session
107     mkdir -p root/var/log/phpki
108 jcrisp 1.7
109 jcrisp 1.1
110     %build
111     perl createlinks
112    
113     %install
114    
115     %{__mkdir_p} $RPM_BUILD_ROOT/var/service/httpd-pki/supervise
116     %{__mkdir_p} $RPM_BUILD_ROOT/var/service/httpd-pki/log/supervise
117     %{__mkdir_p} $RPM_BUILD_ROOT/var/log/httpd-pki
118     %{__mkdir_p} $RPM_BUILD_ROOT/var/lib/php/pki-session
119    
120    
121     (cd root ; /usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT)
122 brianr 1.3
123     chmod +x $RPM_BUILD_ROOT/usr/sbin/systemd/httpd-pki
124    
125 jcrisp 1.1 /bin/rm -f %{name}-%{version}-filelist
126     /sbin/e-smith/genfilelist $RPM_BUILD_ROOT \
127     --dir /var/service/httpd-pki 'attr(01755,root,root)' \
128     --file /var/service/httpd-pki/run 'attr(0700,root,root)' \
129     --dir /var/service/httpd-pki/supervise 'attr(0700,root,root)' \
130     --dir /var/service/httpd-pki/log 'attr(0755,root,root)' \
131     --file /var/service/httpd-pki/log/run 'attr(0755,root,root)' \
132     --dir /var/service/httpd-pki/log/supervise 'attr(0700,root,root)' \
133     --dir /var/log/httpd-pki 'attr(0750,smelog,smelog)' \
134 jpp 1.5 --dir /var/lib/php/phpki 'attr(0770,root,phpki)' \
135     --dir /var/lib/php/phpki/session 'attr(0770,root,phpki)' \
136     --dir /var/lib/php/phpki/opcache 'attr(0770,root,phpki)' \
137     --dir /var/lib/php/phpki/tmp 'attr(0770,root,phpki)' \
138     --dir /var/log/phpki/tmp 'attr(0770,root,phpki)' \
139 jcrisp 1.1 > %{name}-%{version}-filelist
140    
141 brianr 1.3 %post
142     chmod +x /opt/phpki/html/
143 brianr 1.4 chmod +x /opt/phpki/html/ca
144 jcrisp 1.1
145     %clean
146     rm -rf $RPM_BUILD_ROOT
147    
148     %files -f %{name}-%{version}-filelist
149     %defattr(-,root,root)
150    
151     %pre
152     #/sbin/e-smith/create-system-user phpki 455 'Phpki User' /opt/phpki /bin/false >& /dev/null || :
153    
154     %preun
155    
156    

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