Logoj0ke.net Open Build Service > Projects > home:jg > smokeping > Changes
Sign Up | Log In

Changes of Revision 3

[-] Added smokeping.spec
x
 
1
@@ -0,0 +1,229 @@
2
+%define _use_internal_dependency_generator 0
3
+
4
+%define __find_requires sh -c "/usr/lib/rpm/find-requires | %{__sed} -r -e '/Authen::(Radius|Tacas)*/d;  /Smokeping/d; '"
5
+
6
+%define __find_provides sh -c "sed -e '\\#/usr/share/smokeping#d' | /usr/lib/rpm/find-provides"
7
+
8
+Summary:          Latency Logging and Graphing System
9
+Name:             smokeping
10
+Version:          2.4.2
11
+Release:          6%{?dist}
12
+License:          GPLv2+
13
+Group:            Applications/Internet
14
+URL:              http://oss.oetiker.ch/smokeping/
15
+Source0:          %{url}/pub/%{name}-%{version}.tar.gz
16
+Source1:          smokeping.init
17
+Source2:          smokeping-httpd.conf.d
18
+Source3:          http://oss.oetiker.ch/smokeping-demo/img/smokeping.png
19
+Source4:          http://oss.oetiker.ch/smokeping-demo/img/rrdtool.png
20
+Source5:          README.fedora
21
+Patch0:           smokeping-2.4.2-path.patch
22
+Patch1:           smokeping-2.4.2-config.patch
23
+Patch2:           smokeping-2.4.2-tr.patch
24
+Patch3:           smokeping-2.3.5-silence.patch
25
+Patch4:           smokeping-2.4.2-jsonrpc-strict.patch
26
+BuildRequires:    glibc-common
27
+Requires:         perl >= 5.6.1 rrdtool >= 1.0.33 fping >= 2.4b2 traceroute
28
+# Not picked up for some reason
29
+Requires:         perl(Config::Grammar)
30
+Requires:         webserver net-tools
31
+Requires(post):   chkconfig
32
+Requires(preun):  chkconfig initscripts
33
+Requires(postun): initscripts
34
+BuildArch:        noarch
35
+BuildRoot:        %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
36
+
37
+%description
38
+SmokePing is a latency logging and graphing system. It consists of a
39
+daemon process which organizes the latency measurements and a CGI
40
+which presents the graphs.
41
+
42
+%prep
43
+%setup -q
44
+%patch0 -p1
45
+%patch1 -p1
46
+%patch2 -p1
47
+%patch3 -p1
48
+%patch4 -p1
49
+
50
+%{__install} -p -m 0644 %{SOURCE5} . 
51
+iconv -f ISO-8859-1 -t utf-8 -o CHANGES.utf8 CHANGES
52
+touch -r CHANGES CHANGES.utf8 
53
+%{__mv} CHANGES.utf8 CHANGES
54
+
55
+# ship only html docs
56
+find doc -name *.pod -delete
57
+find doc -name *.txt -delete
58
+find doc -name *.[1-9] -delete
59
+
60
+# remove some external modules
61
+%{__rm} -rf lib/{CGI,Config,Digest,JSON}
62
+%{__rm} -rf lib/{SNMP_Session,SNMP_util,BER,JSON}.pm
63
+%{__rm} -f  lib/Qooxdoo/JSONRPC.pm
64
+
65
+%build
66
+# nothing to build
67
+
68
+%install
69
+%{__rm} -rf %{buildroot}
70
+
71
+%{__install} -d %{buildroot}%{_sysconfdir}/%{name} \
72
+                %{buildroot}%{_datadir}/%{name}/{lib,cgi,htdocs} \
73
+                %{buildroot}%{_localstatedir}/lib/%{name}/{rrd,images} \
74
+                %{buildroot}%{_localstatedir}/run/%{name}
75
+
76
+%{__install} -Dp -m 0755 %{SOURCE1} %{buildroot}%{_initrddir}/%{name}
77
+%{__install} -Dp -m 0644 %{SOURCE2} %{buildroot}%{_sysconfdir}/httpd/conf.d/%{name}.conf
78
+
79
+%{__install}  -p -m 0644 %{SOURCE3} %{SOURCE4} %{buildroot}%{_datadir}/%{name}/htdocs
80
+
81
+for f in config basepage.html smokemail tmail smokeping_secrets ; do
82
+    %{__install} -p -m 0644 etc/$f.dist %{buildroot}%{_sysconfdir}/%{name}/$f
83
+done
84
+%{__chmod} 0640 %{buildroot}%{_sysconfdir}/%{name}/smokeping_secrets
85
+
86
+%{__install} -Dp -m 0755 bin/smokeping.dist %{buildroot}%{_sbindir}/smokeping
87
+%{__install} -Dp -m 0755 bin/tSmoke.dist %{buildroot}%{_bindir}/tSmoke
88
+
89
+%{__install} -Dp -m 0755 htdocs/%{name}.cgi.dist \
90
+    %{buildroot}%{_datadir}/%{name}/cgi/%{name}.cgi
91
+
92
+%{__install} -Dp -m 0755 htdocs/tr.cgi.dist \
93
+    %{buildroot}%{_datadir}/%{name}/cgi/tr.cgi
94
+
95
+%{__cp} -rp htdocs/{cropper,resource,script,tr.html} %{buildroot}%{_datadir}/%{name}/htdocs
96
+
97
+%{__cp} -rp lib/* %{buildroot}/%{_datadir}/%{name}/lib
98
+
99
+find %{buildroot}%{_datadir}/%{name} -name *.pm | xargs chmod 0644
100
+
101
+%clean
102
+%{__rm} -rf %{buildroot}
103
+
104
+%post
105
+if [ $1 = 1 ] ; then
106
+    /sbin/chkconfig --add %{name}
107
+fi
108
+
109
+%preun
110
+if [ $1 = 0 ] ; then
111
+    /sbin/service %{name} stop >/dev/null 2>&1 || :
112
+    /sbin/chkconfig --del %{name}
113
+fi
114
+
115
+%postun
116
+if [ $1 -ge 1 ] ; then
117
+    /sbin/service %{name} condrestart >/dev/null 2>&1 || :
118
+fi
119
+
120
+%files
121
+%defattr(-, root, root, -)
122
+%doc doc CHANGES CONTRIBUTORS COPYRIGHT COPYING README TODO README.fedora
123
+%{_sbindir}/smokeping
124
+%{_bindir}/tSmoke
125
+%{_initrddir}/%{name}
126
+%dir %{_sysconfdir}/%{name}
127
+%config(noreplace) %{_sysconfdir}/%{name}/*
128
+%config(noreplace) %{_sysconfdir}/httpd/conf.d/%{name}.conf
129
+%{_datadir}/%{name}
130
+%dir %{_localstatedir}/lib/%{name}
131
+%{_localstatedir}/lib/%{name}/rrd
132
+%{_localstatedir}/run/%{name}
133
+%attr(0755, apache, root) %{_localstatedir}/lib/%{name}/images
134
+
135
+%changelog
136
+* Sat Oct 18 2008 Terje Rosten <terje.rosten@ntnu.no> - 2.4.2-6
137
+- Fix README.fedora
138
+
139
+* Sun Oct  5 2008 Terje Rosten <terje.rosten@ntnu.no> - 2.4.2-5
140
+- move Qooxdoo::JSONRPC to separate package
141
+
142
+* Tue Sep 16 2008 Terje Rosten <terje.rosten@ntnu.no> - 2.4.2-4
143
+- use mv macro
144
+- fix cut-n-paste error in rm lines
145
+- remove perl as buildreq
146
+
147
+* Mon Sep 15 2008 Terje Rosten <terje.rosten@ntnu.no> - 2.4.2-3
148
+- Fix perms on writeable dir for apache
149
+- More sane handling of external perl modules
150
+- Add smoketrace instructions and patches
151
+
152
+* Sat Aug 23 2008 Terje Rosten <terje.rosten@ntnu.no> - 2.4.2-2
153
+- Fix README.fedora
154
+- New rpm is picky, fixed
155
+
156
+* Sat Aug 23 2008 Terje Rosten <terje.rosten@ntnu.no> - 2.4.2-1
157
+- 2.4.2
158
+
159
+* Thu Jul  3 2008 Terje Rosten <terje.rosten@ntnu.no> - 2.4.1-1
160
+- 2.4.1
161
+
162
+* Mon Apr  7 2008 Terje Rosten <terje.rosten@ntnu.no> - 2.3.5-1
163
+- 2.3.5
164
+- More or less a complete rewrite
165
+
166
+* Sun Jan 14 2007 Wil Cooley <wcooley@nakedape.cc> - 2.0.9-2
167
+- Disable internal dependency generator; I was doing this in my ~/.rpmmacros,
168
+  which probably isn't a good idea.
169
+
170
+* Tue Dec 05 2006 Wil Cooley <wcooley@nakedape.cc> - 2.0.9-1
171
+- Updated to 2.0.9.
172
+- Use 'dist' variable like Fedora Extras instead of vendor_tag and dist_tag.
173
+- Do chkconfig/service in the correct places with appropriate checks.
174
+
175
+* Wed Nov 09 2005 Wil Cooley <wcooley@nakedape.cc> - 2.0.4-0.0
176
+- Updated to 2.0.4.
177
+- Filter requirements for some internally-provided or optional modules.
178
+
179
+* Tue Jun 21 2005 Wil Cooley <wcooley@nakedape.cc> - 2.0-0.2rc5
180
+- Added chkconfig in post and preun sections.
181
+- Changed some permissions to make rpmlint less unhappy.
182
+
183
+* Thu Jun 16 2005 Wil Cooley <wcooley@nakedape.cc> - 2.0-2.nac.0.5
184
+- Updated for 2.0rc5.
185
+
186
+* Wed Mar 17 2004 Wil Cooley <wcooley@nakedape.cc> 1.28-2.nac
187
+- Rebuilt for 1.28.
188
+- Removed unnecessary stuff for setting up Apache.
189
+
190
+* Fri Mar 12 2004 Curtis Doty <Curtis@GreenKey.net>
191
+- [1.27] rebuilt without issue
192
+
193
+* Sun Jan 25 2004 Curtis Doty <Curtis@GreenKey.net>
194
+- [1.25] merge with upstream and hanecak
195
+- add dependency on new perl-PersistentPerl (SpeedyCGI)
196
+- use working config in the right location
197
+- more rabid decrufting of hard-coded references to rrdtool
198
+
199
+* Mon Oct 06 2003 Curtis Doty <Curtis@GreenKey.net>
200
+- [1.24] merge with upstream
201
[+] Added smokeping-2.3.5-silence.patch ^
[+] Added smokeping-2.4.2-config.patch ^
[+] Added smokeping-2.4.2-jsonrpc-strict.patch ^
[+] Added smokeping-2.4.2-path.patch ^
[+] Added smokeping-2.4.2-tr.patch ^
[+] Added README.fedora ^
Added rrdtool.png ^
Added smokeping-2.4.2-6.fc9.src.rpm ^
Added smokeping-2.4.2.tar.gz ^
[+] Added smokeping-httpd.conf.d ^
[+] Added smokeping.init ^
Added smokeping.png ^