1 |
# $Id: smeserver-devtools.spec,v 1.7 2017/05/25 15:48:49 unnilennium Exp $ |
# $Id: smeserver-mock.spec,v 1.5 2018/03/18 04:37:03 jpp Exp $ |
2 |
|
|
3 |
Summary: smeserver-mock tools for building RPMs |
Summary: smeserver-mock tools for building RPMs |
4 |
%define name e-smith-devtools |
%define name smeserver-mock |
5 |
Name: %{name} |
Name: %{name} |
6 |
%define version 1.0 |
%define version 1.0 |
7 |
%define release 1 |
%define release 5 |
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}.tgz |
Source: %{name}-%{version}.tgz |
13 |
|
Patch0: smeserver-mock-1.0-updates_values.patch |
14 |
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
15 |
BuildArchitectures: noarch |
BuildArchitectures: noarch |
16 |
Requires: e-smith-devtools |
Requires: e-smith-devtools |
22 |
Buildrequires: e-smith-devtools |
Buildrequires: e-smith-devtools |
23 |
# needed for scl |
# needed for scl |
24 |
Requires: scl-utils scl-utils-build centos-release-scl centos-release-scl-rh |
Requires: scl-utils scl-utils-build centos-release-scl centos-release-scl-rh |
25 |
|
Requires: python27-build |
26 |
AutoReqProv: no |
AutoReqProv: no |
27 |
|
|
28 |
%changelog |
%changelog |
29 |
* Sat Mar 10 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.0-1.sme |
* Tue Jun 19 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.0-5.sme |
30 |
- Initial release with SME Server mock config files |
- update dependencies to build spamassassin [SME: 10599] |
|
- tools added : BogusDateBot.sh change-log clog createBuildDir prepa tagbuild |
|
31 |
|
|
32 |
|
* Sun Mar 18 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.0-4.sme |
33 |
|
- update include package values according to buildsys |
34 |
|
|
35 |
|
* Sat Mar 17 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.0-3.sme |
36 |
|
- set %config on mock config files |
37 |
|
- a rpmsave of the previous version will be created if modified. |
38 |
|
- fix typo in filename |
39 |
|
|
40 |
|
* Sun Mar 11 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.0-2.sme |
41 |
|
- update of site-default.cfg via post script [SME: 10537] |
42 |
|
- removed e-smith-devtools of requirements |
43 |
|
- added Requires python27-build |
44 |
|
|
45 |
|
* Sat Mar 10 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.0-1.sme |
46 |
|
- Initial release with SME iServer mock config files [SME: 10537] |
47 |
|
- tools added : BogusDateBot.sh change-log clog createBuildDir prepa tagbuild |
48 |
|
|
49 |
%description |
%description |
50 |
Tools for use in building RPMs for the Koozali SME server and gateway. |
Tools for use in building RPMs for the Koozali SME server and gateway. |
53 |
|
|
54 |
%prep |
%prep |
55 |
%setup |
%setup |
56 |
|
%patch0 -p1 |
57 |
|
|
58 |
%build |
%build |
59 |
|
|
68 |
--file /usr/bin/createBuildDir '%attr(0755,root,root)' \ |
--file /usr/bin/createBuildDir '%attr(0755,root,root)' \ |
69 |
--file /usr/bin/prepa '%attr(0755,root,root)' \ |
--file /usr/bin/prepa '%attr(0755,root,root)' \ |
70 |
--file /usr/bin/tagbuild '%attr(0755,root,root)' \ |
--file /usr/bin/tagbuild '%attr(0755,root,root)' \ |
71 |
--file /etc/mock/* '%attr(0754,root,mock)' \ |
| grep -v /etc/mock/ \ |
72 |
> %{name}-%{version}-filelist |
> %{name}-%{version}-filelist |
73 |
|
|
74 |
%clean |
%clean |
77 |
%pre |
%pre |
78 |
%preun |
%preun |
79 |
%post |
%post |
80 |
|
|
81 |
|
# updates sme site defaults |
82 |
|
main=/etc/mock/site-defaults.cfg |
83 |
|
tmp=/tmp/site-defaults.cfg |
84 |
|
gen=/etc/mock/sme-site-defaults.cfg |
85 |
|
|
86 |
|
# position of the tags |
87 |
|
BEGIN_GEN=$(cat $main | grep -n '### KOOZALI SME SERVER BEGIN GENERATED CONTENT' | sed 's/\(.*\):.*/\1/g' ) |
88 |
|
END_GEN=$(cat $main | grep -n '### KOOZALI SME SERVER END GENERATED CONTENT' | sed 's/\(.*\):.*/\1/g' ) |
89 |
|
#if tag is absent set first to 0 |
90 |
|
if [[ "$BEGIN_GEN" -eq "" ]]; then BEGIN_GEN=0; fi |
91 |
|
if [[ "$END_GEN" -eq "" ]]; then |
92 |
|
# if second tag is absent just concatenate |
93 |
|
cat <(head -n $(expr $BEGIN_GEN - 1) $main) $gen >$tmp; |
94 |
|
|
95 |
|
else |
96 |
|
# if both tags are present replace content |
97 |
|
cat <(head -n $(expr $BEGIN_GEN - 1) $main) $gen <(tail -n +$(expr $END_GEN + 1) $main) >$tmp; |
98 |
|
|
99 |
|
fi |
100 |
|
# mv tmp file to main file |
101 |
|
mv $tmp $main |
102 |
|
|
103 |
|
|
104 |
%postun |
%postun |
105 |
|
|
106 |
%files-f %{name}-%{version}-filelist |
%files -f %{name}-%{version}-filelist |
107 |
%defattr(-,root,root,-) |
%defattr(-,root,root,-) |
108 |
|
/etc/mock/* %config %attr(0755,root,mock) |