/[smeserver]/rpms/smeserver-manager/sme10/smeserver-manager.spec
ViewVC logotype

Diff of /rpms/smeserver-manager/sme10/smeserver-manager.spec

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

Revision 1.2 by jpp, Sun Feb 4 17:52:58 2018 UTC Revision 1.54 by brianr, Sun Dec 26 15:33:49 2021 UTC
# Line 1  Line 1 
1  # $Id: smeserver-manager.spec,v 1.1 2018/02/04 17:51:12 jpp Exp $  # $Id: smeserver-manager.spec,v 1.53 2021/12/26 12:35:52 brianr Exp $
2    
3  Summary: smeserver manager 2 navigation module  Summary: Sme server  navigation module : manager 2
4  %define name smeserver-manager  %define name smeserver-manager
5  Name: %{name}  Name: %{name}
6  %define version 0.1.0  %define version 0.1.4
7  %define release 1  %define release 7
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: %{name}-%{version}-list_access_csrf.patch
14    Patch1: %{name}-%{version}-review_csrf_url.patch
15    Patch2: smeserver-manager-0.1.4-Add-dummy-classes-to-ep-files.patch
16    Patch3: smeserver-manager-0.1.4-Add-span-to-group-member-checkbox-list.patch
17    Patch4: smeserver-manager-0.1.4-Review-configuration-Virtual-domains-re-format-html.patch
18    Patch5: smeserver-manager-0.1.4-Sort-out-responsive-table-in-user-and-host-lists.patch
19    
20  BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot  BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
21    BuildArchitectures: noarch
22  BuildRequires: e-smith-devtools  BuildRequires: e-smith-devtools
23  BuildRequires: gettext  #<Build tests>
24  BuildRequires: gcc  #BuildRequires:  perl >= 0:5.016
25    #BuildRequires:  perl(Test::More)
26    #BuildRequires:  perl(Test::Mojo)
27    #BuildRequires:  perl(Mojolicious) >= 7.56
28    #BuildRequires:  perl(Mojolicious::Plugin::I18N) >= 1.6
29    #BuildRequires:  perl(Net::Netmask) >= 1.9
30    #</Build tests>
31    
32  Requires: e-smith-lib >= 1.18.0-26  Requires: e-smith-lib >= 1.18.0-26
33  Requires: e-smith-manager >= 2.4.0-22  Requires: e-smith-manager >= 2.4.0-22
34  Requires: perl-Mojolicious >= 6.44  Requires:  perl(Mojolicious) >= 7.56
35  Requires: pwauth  Requires:  perl(Mojolicious::Plugin::I18N) >= 1.6
36  Requires: perl(Apache::AuthTkt)  Requires:  perl(Mojolicious::Plugin::RenderFile) >= 0.12
37  Provides: server-manager2  Requires:  perl(Mojolicious::Plugin::CSRFDefender) >= 0.0.8
38    Requires:  perl(Net::Netmask) >= 1.9
39    #Requires: js-jquery > 2.2.4-3 (optional)
40    
41    Provides: server-manager
42  AutoReqProv: no  AutoReqProv: no
43    
44    %define dir_mngr /usr/share/smanager
45    
46    %description
47    This RPM contributes the navigation bars for the smeserver-manager. New Mojolicious version.
48    
49    %prep
50    %setup
51    %patch0 -p1
52    %patch1 -p1
53    %patch2 -p1
54    %patch3 -p1
55    %patch4 -p1
56    %patch5 -p1
57    
58    %build
59    perl createlinks
60    
61    # Force creation of potentially empty directories
62    mkdir -p root/etc/e-smith/db/routes
63    mkdir -p root/home/e-smith/db/navigation2
64    mkdir -p root%{dir_mngr}/themes/default/public/css
65    
66    %install
67    rm -rf $RPM_BUILD_ROOT
68    (cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT)
69    rm -f %{name}-%{version}-%{release}-filelist
70    /sbin/e-smith/genfilelist $RPM_BUILD_ROOT \
71    --dir %{dir_mngr} 'attr(0755,root,root)' \
72    --file %{dir_mngr}/log/development.log 'attr(0660,root,admin)' \
73    --file %{dir_mngr}/log/production.log 'attr(0660,root,admin)' \
74    --file %{dir_mngr}/script/daily.sh 'attr(0770,root,root)' \
75    --file %{dir_mngr}/script/routes.pl 'attr(0770,root,root)' \
76    --file %{dir_mngr}/script/secrets.pl 'attr(0770,root,root)' \
77    > %{name}-%{version}-%{release}-filelist
78    
79    echo "%doc COPYING f2b/*" >> %{name}-%{version}-%{release}-filelist
80    
81    %check
82    #cd $RPM_BUILD_ROOT/%{dir_mngr} && QUICK_TEST=1 /usr/bin/prove -q -l -r
83    
84    %clean
85    rm -rf $RPM_BUILD_ROOT
86    
87    %pre
88    
89    %preun
90    if [ -h %{dir_mngr}/themes/default/public/js/jquery.min.js ]
91    then
92        unlink %{dir_mngr}/themes/default/public/js/jquery.min.js
93    fi
94    true
95    
96    %post
97    if [ -f /usr/share/javascript/jquery/latest/jquery.min.js ]
98    then
99        [ -d %{dir_mngr}/themes/default/public/js ] ||
100            mkdir %{dir_mngr}/themes/default/public/js
101        [ -h %{dir_mngr}/themes/default/public/js/jquery.min.js ] ||
102            ln -s /usr/share/javascript/jquery/latest/jquery.min.js %{dir_mngr}/themes/default/public/js/jquery.min.js
103    fi
104    true
105    
106    %postun
107    
108    %files -f %{name}-%{version}-%{release}-filelist
109    %defattr(-,root,root)
110    
111  %changelog  %changelog
112    * Sun Dec 26 2021 Brian Read <brianr@bjsystems.co.uk> 0.1.4-7.sme
113    - Sort-out-responsive-table-in-user-and-host-lists [SME: 11824]
114    
115    * Sun Dec 26 2021 Brian Read <brianr@bjsystems.co.uk> 0.1.4-6.sme
116    - e-format html for Vistual domains inReview config to be compatible with email format list [SME 11822]
117    
118    * Mon Dec 20 2021 Brian Read <brianr@bjsystems.co.uk> 0.1.4-5.sme
119    - Add-span-to-group-member-checkbox-list [SME: 11815]
120    
121    * Mon Nov 29 2021 Brian Read <brianr@bjsystems.co.uk> 0.1.4-4.sme
122    - Add-dummy-classes-to-ep-files.patch [SME: 11780]
123    
124    * Mon Nov 15 2021 Michel Begue <mab974@misouk.com> 0.1.4-3.sme
125    - Fix error message when linking, unlinking jquery in spec
126    - Correct the 'review' panel presentation
127    - Modify CSRFDefender plugin to take into account GET method
128    - Add TOKEN param where the GET method is used in templates
129    - Remove smanager from local url address
130    
131    * Mon Oct 11 2021 Michel Begue <mab974@protonmail.com> 0.1.4-2.sme
132    - Fix incorrect list order (users, ibays, ...)
133    - Add external private access (remote management)
134    - Change CSRF error message
135    
136    * Mon Jun 21 2021 Michel Begue <mab974@gmail.com> 0.1.4-1.sme
137    - New version: smeserver-manager-0.1.4-1 (= 0.1.2-13)
138    
139    * Sat Jun 19 2021 Michel Begue <mab974@gmail.com> 0.1.2-13.sme
140    - Remove non english locale files (move to smeserver-manager-locale)
141    - Fix error in 'locale2-conf' action
142    
143    * Tue Jun 15 2021 Michel Begue <mab974@gmail.com> 0.1.2-12.sme
144    - Fix errors in daily script
145    - Fix url and routes for 'hostentries' panel
146    - Change GET to POST method for CSRF plugin (routes and templates)
147    - Fix some translations
148    
149    * Tue Jun 08 2021 Michel Begue <mab974@gmail.com> 0.1.2-11.sme
150    - Add cron job for secrets and routes purge
151    - Add CSRFDefender plugin against CSRF attacks
152    - Add optional fail2ban configuration files in doc
153    - Fix zh-tw locale file name
154    - Fix missing links in 'Bugreport'
155    - Fix copyright in footer
156    - Fix translations
157    
158    * Thu Jun 03 2021 Michel Begue <mab974@gmail.com> 0.1.2-10.sme
159    - Add header for contrib in layout
160    - fix emailsettings error 'webmail is only SSL' [SME: 11443]
161    - fix locale files
162    - clean up template files
163    
164    * Wed Apr 21 2021 Michel Begue <mab974@gmail.com> 0.1.2-9.sme
165    - Add access attribute in configuration base
166    - Verify modes and access compatibility
167    - Display theme_switch button to logged in users only [SME: 11571]
168    
169    * Tue Apr 20 2021 Michel Begue <mab974@gmail.com> 0.1.2-8.sme
170    - Fix 'theme switch' [SME: 11571]
171    
172    * Mon Apr 12 2021 Michel Begue <mab974@gmail.com> 0.1.2-7.sme
173    - Fix server-mode in bugreport [SME: 10448]
174    - Add systemd-default for smanager type (service) [SME: 11544]
175    - Fix smanager type and status in db
176    - Move initial security notification to central place
177    - Render 'Manual' output in template
178    - Add a link to koozali.org on Sme logo
179    
180    * Mon Jan 25 2021 Michel Begue <mab974@gmail.com> 0.1.2-6.sme
181    - Fix missing backup functions
182    - background mode for halt and reboot
183    - Store debug mode in ENV
184    - Add a warning mode notification
185    - Fix some translations needing to be escaped
186    
187    * Wed Jan 13 2021 Michel Begue <mab974@gmail.com> 0.1.2-5.sme
188    - Fix menu items not translated [SME: 11322]
189    - Add other locales files
190    
191    * Thu Jan 07 2021 Michel Begue <mab974@gmail.com> 0.1.2-4.sme
192    - Fix 404 error when trailing slash is missing
193    - Fix missing translations for ibay and quota panels
194    - Comment out pptp settings in remoteaccess panel
195    - Fix 'sigusr1' exec for httpd  [SME: 11185]
196    
197    * Tue Dec 01 2020 Michel Begue <mab974@gmail.com> 0.1.2-3.sme
198    - Fix download error on 'viewlogfiles' panel [SME: 11217]
199    - Fix duplicate entries in log files to be chosen
200    - Fix duplicate translation terms in 'General' lexicon
201    
202    * Fri Nov 20 2020 Michel Begue <mab974@gmail.com> 0.1.2-2.sme
203    - Fix smanager-update event name
204    - Move smanager service to /usr/lib/systemd
205    - Fix Bugreport file download
206    - Fix translations missing in 'viewlogfiles'
207    - Remove Admin auth in httpd configuration
208    - Add an optional alias for admin sign in.
209    - Remove systemctl from .spec file
210    
211    * Thu Nov 19 2020 Michel Begue <mab974@gmail.com> 0.1.2-1.sme
212    - Create new version smeserver-manager-0.1.2-1 (= 0.1.0-31)
213    
214    * Wed Oct 07 2020 Michel Begue <mab974@gmail.com> 0.1.0-31.sme
215    - smanager-refresh event come back
216    - add smanager version in footer
217    - add optional refresh in layout
218    - fix yum logfile displaying
219    
220    * Mon Oct 05 2020 Michel Begue <mab974@gmail.com> 0.1.0-30.sme
221    - fix I18N Namespace change for keeping Language
222    - clean up emailsettings code
223    - remove old global lexicon files
224    - add first simple tests
225    - add smanager-update event
226    
227    * Mon Aug 17 2020 Michel Begue <mab974@gmail.com> 0.1.0-29.sme
228    - validate lexicon file before install
229    - fix route url construction (+)
230    - add authentication messages to locales
231    
232    * Fri Aug 07 2020 Michel Begue <mab974@gmail.com> 0.1.0-28.sme
233    - validate netmask in LocalNetworks [SME: 10976]
234    - validate netmask in RemoteAccess [SME: 10977]
235    - prettier action button
236    - accept undescore in lexicon name
237    - change route urls for LocalNetworks and Portforwarding
238    - add rendering to LocalNetworks notification
239    
240    * Mon Jul 06 2020 Michel Begue <mab974@gmail.com> 0.1.0-27.sme
241    - Fix typo in %post here
242    - Complete 'datetime' panel
243    - Fix notification in 'quota' panel
244    
245    * Wed Jul 01 2020 Michel Begue <mab974@gmail.com> 0.1.0-26.sme
246    - Fix first start error
247    - Fix incorrect messages and various typos in modules
248    - Add possibility to hide menu(s) (requires jquery)
249    
250    * Sat Jun 13 2020 Michel Begue <mab974@gmail.com> 0.1.0-25.sme
251    - Remove 'Starterwebsite' panel [SME: 8903]
252    - Add choice for creating Pseudonyms [SME: 9457]
253    - Change URL in 'useraccounts' templates
254    - Change app to smanager in controller 'Swttheme'
255    
256    * Wed Jun 10 2020 Michel Begue <mab974@gmail.com> 0.1.0-24.sme
257    - Fix missing translations for some panels
258    
259    * Mon Jun 08 2020 Michel Begue <mab974@gmail.com> 0.1.0-23.sme
260    - Transform to Mojo application (apache/mod_proxy mode)
261    - Add internal login and multi mode menus
262    - Add userpassword panel
263    
264    * Fri May 08 2020 Michel Begue <mab974@gmail.com> 0.1.0-22.sme
265    - Fix translation in 'useraccounts' panel
266    - Restore theme switcher route
267    - Fix theme switcher redirection
268    - fix lexicon file not found [SME: 10927]
269    
270    * Mon Apr 27 2020 Michel Begue <mab974@gmail.com> 0.1.0-21.sme
271    - Fix error and success management
272    - Optimize Routes (number)
273    - Delete share_dir variable
274    - Attach Locale lexicon to Panel and Panel?
275    - Fix lack of translation of first page
276    
277    * Wed Apr 15 2020 Michel Begue <mab974@gmail.com> 0.1.0-20.sme
278    - Patch the I18N plugin to accept namespace changes
279    - Split global locales files to module level
280    - Consider additional contrib locales files
281    - Consider additional contrib routes and navigation item
282    - fix colour button in portforwarding panel
283    - fix missing esmith::util in starterwebsite panel
284    
285    * Tue Apr 14 2020 Michel Begue <mab974@gmail.com> 0.1.0-19.sme
286    - Remove tests : useraccounts, wbl
287    
288    * Sat Apr 11 2020 Michel Begue <mab974@gmail.com> 0.1.0-18.sme
289    - Add panels : emailaccess, yum, backup
290    - Fix Rendering comments in portforwarding & localnetworks panels
291    - Css and images files added (from manager).
292    - Initial javascript in navigation added (jQuery) -optional-
293    - Add 'Heading...'  navigation informations in controllers
294    - Show Themes_switch if there is more than one theme
295    
296    * Tue Apr 07 2020 Brian Read <brianr@bjsystems.co.uk> 0.1.0-15.sme
297    - Sort out rule comment in portforwarding add panel
298    
299    * Tue Apr 07 2020 Brian Read <brianr@bjsystems.co.uk> 0.1.0-14.sme
300    - Add in portforwarding panel
301    - Clean up localnetwork panel code
302    
303    * Sun Mar 29 2020 Brian Read <brianr@bjsystems.co.uk> 0.1.0-13.sme
304    - Remove Db call in LN_del template
305    - Use Sme-error css class and make sure parameters applied to error message
306    - Remove creation of AdminLTE directories on install
307    
308    * Fri Mar 20 2020 Brian Read <brianr@bjsystems.co.uk> 0.1.0-12.sme
309    - Add panels : localnetworks
310    - Delete AdminLTE code  - will get added into new rpm
311    
312    * Sat Feb 29 2020 Michel Begue <mab974@gmail.com> 0.1.0-11.sme
313    - Add panels : remoteaccess, useraccounts and viewlogfiles
314    - Fix 'bugreport' download
315    - css enhancement in default theme
316    - Fix warnings and typos
317    
318    * Wed Feb 19 2020 Michel Begue <mab974@gmail.com> 0.1.0-10.sme
319    - add panels : domains, hostentries and pseudonyms
320    - remove old navigation menu
321    
322    * Mon Jan 27 2020 Michel Begue <mab974@gmail.com> 0.1.0-9.sme
323    - Fix messages without variables expansion
324    - add a theme switcher
325    - split navigation menu between controller and template
326    - template + event for .conf file
327    
328    * Thu Jan 23 2020 Michel Begue <mab974@gmail.com> 0.1.0-8.sme
329    - Fix errors in Navigation
330    
331    * Wed Jan 22 2020 Michel Begue <mab974@gmail.com> 0.1.0-7.sme
332    - Fix link between Navigation and Theme
333    - Add System and Domain names to available data (header)
334    - Move some data lists from template to controller (select_field)
335    - Integrate last Brian's changes in server-manager2.css (AdminLTE)
336    - Fix some warnings and typos
337    
338    * Fri Jan 17 2020 Brian Read <brianr@bjsystems.co.uk> 0.1.0-6.sme
339    - Add in theme based on AdminLTE html template
340    - Fixes Server name in header (Needs Template expansion - added to Console-Save
341    
342    * Sun Jan 12 2020 Michel Begue <mab974@gmail.com> 0.1.0-5.sme
343    - new theme to come
344    - css enhancement (thanks to B. Read)
345    - panels: reboot and ibays
346    
347    * Wed Jan 01 2020 Michel Begue <mab974@gmail.com> 0.1.0-4.sme
348    - fix setuid with wrapper (remove sudo)
349    - panels quota and groups
350    
351    * Mon Dec 16 2019 Michel Begue <mab974@gmail.com> 0.1.0-3.sme
352    - simple architecture : basic mojolicious app running
353    - some panels
354    - requires perl-Mojolicious-Plugin-I18N
355    
356    * Tue Feb 06 2018 John Crisp <jcrisp@safeandsoundit.co.uk> 0.1.0-2.sme
357    - Start adding some template files
358    
359  * Sun Feb 04 2018 Jean-Philipe Pialasse <tests@pialasse.com> 0.1.0-1.sme  * Sun Feb 04 2018 Jean-Philipe Pialasse <tests@pialasse.com> 0.1.0-1.sme
360  - first smeserver-manager package [SME: 10506]  - first smeserver-manager package [SME: 10506]
361    this is a sandbox to dev the next server-manager based on mojolicious    this is a sandbox to dev the next server-manager based on mojolicious
# Line 740  AutoReqProv: no Line 1073  AutoReqProv: no
1073  * Tue Mar 14 2000 Charlie Brady <charlieb@e-smith.com>  * Tue Mar 14 2000 Charlie Brady <charlieb@e-smith.com>
1074    Wed Mar 14 2000 --> Wed Mar 08 2000 or Tue Mar 14 2000 or Wed Mar 15 2000 or ....    Wed Mar 14 2000 --> Wed Mar 08 2000 or Tue Mar 14 2000 or Wed Mar 15 2000 or ....
1075  - initial release  - initial release
   
 %description  
 This RPM contributes the navigation bars for the smeserver-manager.  
   
 %prep  
 %setup  
   
 %build  
 perl createlinks  
 #gcc -o root/etc/e-smith/web/functions/wrapper manager.c  
 #mkdir -p root/home/e-smith/db/navigation  
 #mkdir -p root/etc/e-smith/web/common/css  
   
 #mkdir -p root/usr/share/locale/en_US/LC_MESSAGES/  
 #xgettext -o root/usr/share/locale/en_US/LC_MESSAGES/foot.tmpl.po root/etc/e-smith/templates/etc/e-smith/web/common/foot.tmpl/25Copyright  
 ## make header/footer symlinks  
 #ln -s head.tmpl root/etc/e-smith/web/common/userpassword_head.tmpl  
 #ln -s head.tmpl root/etc/e-smith/web/common/noframes_head.tmpl  
 #ln -s foot.tmpl root/etc/e-smith/web/common/noframes_foot.tmpl  
   
 #mkdir -p  root/etc/e-smith/web/panels/manager/html  
 #for file in index initial  
 #do  
 #    ln -s ../../../functions/wrapper root/etc/e-smith/web/panels/manager/html/${file}.cgi  
 #done  
   
 # Force creation of potentially empty directories  
 #mkdir -p root/etc/e-smith/web/{common,functions}  
 #mkdir -p root/etc/e-smith/web/panels/manager/{cgi-bin,html}  
 #mkdir -p root/etc/e-smith/web/panels/password/{cgi-bin,html}  
 #mkdir -p root/etc/httpd/admin-conf  
 mkdir -p root/etc/e-smith/web/panels/manager2/{cgi-bin,html}  
   
 #mkdir -p root/service  
 #mkdir -p root/etc/rc.d/init.d/supervise  
 #for service in httpd-admin  
 #do  
 #  ln -s /var/service/$service root/service/$service  
 #  mkdir -p root/var/service/$service/supervise  
 #  touch root/var/service/$service/down  
 #  if [ -d root/var/service/$service/log ]  
 #  then  
 #    mkdir -p root/var/service/$service/log/supervise  
 #    mkdir -p root/var/log/$service  
 #  fi  
 #  ln -s ../daemontools root/etc/rc.d/init.d/supervise/$service  
 #done  
   
 %install  
 rm -rf $RPM_BUILD_ROOT  
 (cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT)  
 rm -f %{name}-%{version}-%{release}-filelist  
 /sbin/e-smith/genfilelist $RPM_BUILD_ROOT \  
 > %{name}-%{version}-%{release}-filelist  
 #    --file /etc/e-smith/web/common/cgi-bin/login 'attr(0755,root,root)' \  
 #    --file /etc/e-smith/web/common/cgi-bin/logout 'attr(0755,root,root)' \  
 #    --file /etc/e-smith/web/functions/wrapper 'attr(4750,root,admin)' \  
 #    --dir /var/service/httpd-admin 'attr(01755,root,root)' \  
 #    --file /var/service/httpd-admin/down 'attr(0644,root,root)' \  
 #    --file /var/service/httpd-admin/run 'attr(0755,root,root)' \  
 #    --dir /var/service/httpd-admin/log 'attr(0755,root,root)' \  
 #    --dir /var/service/httpd-admin/log/supervise 'attr(0700,root,root)' \  
 #    --dir /var/service/httpd-admin/supervise 'attr(0700,root,root)' \  
 #    --file /var/service/httpd-admin/log/run 'attr(0755,root,root)' \  
 #    --dir /var/log/httpd-admin 'attr(0750,smelog,smelog)' \  
 #    > %{name}-%{version}-%{release}-filelist  
 echo "%doc COPYING" >> %{name}-%{version}-%{release}-filelist  
   
 %clean  
 rm -rf $RPM_BUILD_ROOT  
   
 %pre  
 %preun  
 %post  
 #find /etc/e-smith/web/panels/manager/cgi-bin/ -type f | \  
 #    sed -n '/\/[0-9a-z]\{32\}$/p' | \  
 #    xargs grep -l Persisten | \  
 #    xargs rm -f  
   
 %postun  
   
 %files -f %{name}-%{version}-%{release}-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