1 |
%define name smeserver-bandwidthd |
2 |
%define version 2.0.1.2 |
3 |
%define release 2 |
4 |
Summary: bandwidthd is a helpdesk system |
5 |
Name: %{name} |
6 |
Version: %{version} |
7 |
Release: %{release}%{?dist} |
8 |
Distribution: SME Server |
9 |
License: GNU GPL version 2 |
10 |
Group: SMEserver/addon |
11 |
Source: smeserver-bandwidthd-%{version}.tar.gz |
12 |
Patch0: smeserver-bandwidthd-2.0.1.2.cronmysql.patch |
13 |
BuildArchitectures: noarch |
14 |
BuildRoot: /var/tmp/%{name}-%{version}-buildroot |
15 |
BuildRequires: e-smith-devtools |
16 |
Requires: e-smith-release >= 9.0 |
17 |
Requires: bandwidthd |
18 |
AutoReqProv: no |
19 |
|
20 |
%description |
21 |
bandwidthd is an application adapted as a contrib for SMEserver |
22 |
|
23 |
%changelog |
24 |
* Sat Sep 26 2015 stephane de Labrusse <stephdl@de-labrusse.fr> 2.0.1.2-2.sme |
25 |
- removed typo [SME: 8116] |
26 |
- Added smeserver-bandwidthd-2.0.1.2.cronmysql.patch |
27 |
|
28 |
* Mon Jun 16 2014 JP Pialasse <tests@pialasse.com> 2.0.1.2-1.sme |
29 |
- initial import to SME9 contribs |
30 |
|
31 |
* Mon Dec 30 2013 JP Pialasse <tests@pialasse.com> 2.0.1.1-6.sme |
32 |
- add require SSL [SME: 8099] |
33 |
|
34 |
* Sun Dec 29 2013 JP Pialasse <tests@pialasse.com> 2.0.1.1-4.sme |
35 |
- fix missing mysql.init |
36 |
- fix http auth error |
37 |
|
38 |
* Fri Dec 27 2013 JP Pialasse <tests@pialasse.com> 2.0.1.1-2.sme |
39 |
- few enhancement and bug fixing |
40 |
- added link in manager |
41 |
|
42 |
* Thu Dec 26 2013 CONTRIB MAKER <tests@pialasse.com> 2.0.1.1-1.sme |
43 |
- initial release |
44 |
- builds from unchanged .tar.gz |
45 |
|
46 |
%prep |
47 |
%setup |
48 |
%patch0 -p1 |
49 |
|
50 |
%build |
51 |
perl createlinks |
52 |
|
53 |
%install |
54 |
rm -rf $RPM_BUILD_ROOT |
55 |
(cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT) |
56 |
rm -f %{name}-%{version}-filelist |
57 |
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT \ |
58 |
> %{name}-%{version}-filelist |
59 |
|
60 |
%clean |
61 |
rm -rf $RPM_BUILD_ROOT |
62 |
|
63 |
%files -f %{name}-%{version}-filelist |
64 |
%defattr(-,root,root) |
65 |
|
66 |
|