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

Annotation of /rpms/smeserver-mock/sme10/smeserver-mock.spec

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


Revision 1.5 - (hide annotations) (download)
Sun Mar 18 04:37:03 2018 UTC (6 years, 2 months ago) by jpp
Branch: MAIN
CVS Tags: smeserver-mock-1_0-4_el7_sme
Changes since 1.4: +7 -2 lines
* Sun Mar 18 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.0-4.sme
- update include package values according to buildsys

1 jpp 1.5 # $Id: smeserver-mock.spec,v 1.4 2018/03/18 03:35:10 jpp Exp $
2 jpp 1.1
3     Summary: smeserver-mock tools for building RPMs
4 jpp 1.2 %define name smeserver-mock
5 jpp 1.1 Name: %{name}
6     %define version 1.0
7 jpp 1.5 %define release 4
8 jpp 1.1 Version: %{version}
9     Release: %{release}%{?dist}
10     License: GPL
11     Group: Networking/Daemons
12     Source: %{name}-%{version}.tgz
13 jpp 1.5 Patch0: smeserver-mock-1.0-updates_values.patch
14 jpp 1.1 BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
15     BuildArchitectures: noarch
16     Requires: e-smith-devtools
17     Requires: mock
18     Requires: python-ctypes
19     Requires: glances
20     Requires: make rpm-build rpm-sign wget
21     Requires: cmake automake libtool
22     Buildrequires: e-smith-devtools
23     # needed for scl
24     Requires: scl-utils scl-utils-build centos-release-scl centos-release-scl-rh
25 jpp 1.3 Requires: python27-build
26 jpp 1.1 AutoReqProv: no
27    
28     %changelog
29 jpp 1.5 * Sun Mar 18 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.0-4.sme
30     - update include package values according to buildsys
31    
32 jpp 1.4 * Sat Mar 17 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.0-3.sme
33     - set %config on mock config files
34     - a rpmsave of the previous version will be created if modified.
35     - fix typo in filename
36    
37 jpp 1.3 * Sun Mar 11 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.0-2.sme
38     - update of site-default.cfg via post script [SME: 10537]
39     - removed e-smith-devtools of requirements
40     - added Requires python27-build
41    
42 jpp 1.1 * Sat Mar 10 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.0-1.sme
43 jpp 1.2 - Initial release with SME iServer mock config files [SME: 10537]
44 jpp 1.1 - tools added : BogusDateBot.sh change-log clog createBuildDir prepa tagbuild
45    
46     %description
47     Tools for use in building RPMs for the Koozali SME server and gateway.
48    
49     Few tools are also provided to help you with package building.
50    
51     %prep
52     %setup
53 jpp 1.5 %patch0 -p1
54 jpp 1.1
55     %build
56    
57     %install
58     rm -rf $RPM_BUILD_ROOT
59     (cd root ; /usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT)
60     /bin/rm -f %{name}-%{version}-filelist
61     /sbin/e-smith/genfilelist $RPM_BUILD_ROOT \
62     --file /usr/bin/BogusDateBot.sh '%attr(0755,root,root)' \
63     --file /usr/bin/change-log '%attr(0755,root,root)' \
64     --file /usr/bin/clog '%attr(0755,root,root)' \
65     --file /usr/bin/createBuildDir '%attr(0755,root,root)' \
66     --file /usr/bin/prepa '%attr(0755,root,root)' \
67     --file /usr/bin/tagbuild '%attr(0755,root,root)' \
68 jpp 1.2 | grep -v /etc/mock/ \
69 jpp 1.1 > %{name}-%{version}-filelist
70    
71     %clean
72     rm -rf $RPM_BUILD_ROOT
73    
74     %pre
75     %preun
76     %post
77 jpp 1.3
78     # updates sme site defaults
79     main=/etc/mock/site-defaults.cfg
80     tmp=/tmp/site-defaults.cfg
81     gen=/etc/mock/sme-site-defaults.cfg
82    
83     # position of the tags
84     BEGIN_GEN=$(cat $main | grep -n '### KOOZALI SME SERVER BEGIN GENERATED CONTENT' | sed 's/\(.*\):.*/\1/g' )
85     END_GEN=$(cat $main | grep -n '### KOOZALI SME SERVER END GENERATED CONTENT' | sed 's/\(.*\):.*/\1/g' )
86     #if tag is absent set first to 0
87     if [[ "$BEGIN_GEN" -eq "" ]]; then BEGIN_GEN=0; fi
88     if [[ "$END_GEN" -eq "" ]]; then
89     # if second tag is absent just concatenate
90     cat <(head -n $(expr $BEGIN_GEN - 1) $main) $gen >$tmp;
91    
92     else
93     # if both tags are present replace content
94     cat <(head -n $(expr $BEGIN_GEN - 1) $main) $gen <(tail -n +$(expr $END_GEN + 1) $main) >$tmp;
95    
96     fi
97     # mv tmp file to main file
98     mv $tmp $main
99    
100    
101 jpp 1.1 %postun
102    
103 jpp 1.2 %files -f %{name}-%{version}-filelist
104 jpp 1.1 %defattr(-,root,root,-)
105 jpp 1.4 /etc/mock/* %config %attr(0755,root,mock)

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