1 |
# $Id: smeserver-durep.spec,v 1.4 2021/03/04 10:17:00 michel Exp $ |
2 |
# Authority: unnilennnium |
3 |
# Name: JP Pialasse |
4 |
|
5 |
%define name smeserver-durep |
6 |
Name: %{name} |
7 |
%define version 1.5.0 |
8 |
Version: %{version} |
9 |
%define release 8 |
10 |
Release: %{release}%{?dist} |
11 |
License: GPL |
12 |
Source: %{name}-%{version}.tar.gz |
13 |
|
14 |
Patch0: smeserver-durep-1.5.0-bz10118-more_paths.patch |
15 |
Patch1: smeserver-durep-1.5.0-dfposix.patch |
16 |
Patch2: smeserver-durep-1.5.0-Add-creatlinks-to-alter-link-to-wrapper.patch |
17 |
Patch3: smeserver-durep-1.5.0-bz10893-noreboot.patch |
18 |
Patch4: smeserver-durep-1.5.0-permissions.patch |
19 |
|
20 |
BuildRoot: /var/tmp/%{name}-%{version}-buildroot |
21 |
BuildRequires: e-smith-devtools |
22 |
BuildArch: noarch |
23 |
Group: Networking/Daemons |
24 |
Summary: DUREP - Graphic Report for Disk Usage |
25 |
Requires: perl(Data::Dumper) |
26 |
Requires: perl(MLDBM) >= 1.21-4 |
27 |
Obsoletes: smeserver-durep-saco |
28 |
Obsoletes: e-smith-durep |
29 |
|
30 |
|
31 |
%changelog |
32 |
* Thu Mar 04 2021 Jean-Philipe Pialasse <tests@pialasse.com> 1.5.0-8.sme |
33 |
- fix permissions of cgi inside spec file too |
34 |
|
35 |
* Thu Mar 04 2021 Michel Begue <mab974@gmail.com> 1.5.0-7.sme |
36 |
- fix permissions of cgi and data files |
37 |
|
38 |
* Mon Feb 22 2021 Jean-Philipe Pialasse <tests@pialasse.com> 1.5.0-6.sme |
39 |
- add smeserver-durep-update event [SME: 10893] |
40 |
make up spec file |
41 |
|
42 |
* Fri Oct 23 2020 Brian Read <brianr@bjsystems.co.uk> 1.5.0-5.sme |
43 |
- Initial import to SME10 tree [SME: 10893] |
44 |
- Add in link to wrapper in createlinks |
45 |
|
46 |
* Sat Dec 28 2019 Jean-Philipe Pialasse <tests@pialasse.com> 1.5.0-4.sme |
47 |
- output all mounted points with df on one line using Posix |
48 |
|
49 |
* Sat Feb 10 2018 Jean-Philipe Pialasse <tests@pialasse.com> 1.5.0-3.sme |
50 |
- add hability to stat more directories [SME: 10118] |
51 |
- add status enabled or disabled |
52 |
|
53 |
* Sat Aug 22 2015 stephane de Labrusse <stephdl@de-labrusse.fr> 1.5.0-2.sme |
54 |
- Initial release to contribs9 |
55 |
|
56 |
* Sat Jun 21 2014 stephane de Labrusse <stephdl@de-labrusse.fr> 1.5.0-1.sme |
57 |
- Initial release to sme9 |
58 |
|
59 |
* Thu Sep 13 2012 JP Pialasse <test@pialasse.com> 1.3.0-6.sme |
60 |
- add Obsoletes smeserver-durep-saco e-smith-durep [SME 7108] |
61 |
- TODO cleaning spec file post and filelist chmod |
62 |
|
63 |
* Mon Sep 10 2012 JP Pialasse <test@pialasse.com> 1.3.0-5.sme |
64 |
- fix do not copy files and filelist [SME 7098] |
65 |
- patch df of plugged disk |
66 |
|
67 |
* Sun Sep 09 2012 JP Pialasse <test@pialasse.com> 1.3.0-4.sme |
68 |
- dependencies resolution |
69 |
|
70 |
* Fri Aug 31 2012 JP Pialasse <test@pialasse.com> 1.3.0-3.sme |
71 |
- build error fix : prep setup |
72 |
|
73 |
* Wed Aug 15 2012 JP Pialasse <test@pialasse.com> 1.3.0-1.sme |
74 |
- update from 1.03-02sn to comply with SME8 and SME7 |
75 |
- moved archives to /var/lib/durep |
76 |
- moved web files to manager/html |
77 |
- cleaned spec |
78 |
|
79 |
%description |
80 |
DUREP is a Report Generator that creates graphical Output for the "du" command |
81 |
|
82 |
%prep |
83 |
%setup |
84 |
%patch0 -p1 |
85 |
%patch1 -p1 |
86 |
%patch2 -p1 |
87 |
%patch3 -p1 |
88 |
%patch4 -p1 |
89 |
|
90 |
%build |
91 |
perl createlinks |
92 |
|
93 |
%install |
94 |
/bin/rm -rf $RPM_BUILD_ROOT |
95 |
(cd root; /usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT) |
96 |
/bin/rm -f %{name}-%{version}-filelist |
97 |
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT \ |
98 |
--file "/usr/local/bin/durep" 'attr(0755,root,root)' \ |
99 |
--file "/usr/sbin/durep.daily" 'attr(0755,root,root)' \ |
100 |
--file '/etc/e-smith/web/panels/manager/html/durep/durep.cgi' 'attr(0750,root,admin)' \ |
101 |
> %{name}-%{version}-filelist |
102 |
|
103 |
|
104 |
%clean |
105 |
/bin/rm -rf $RPM_BUILD_ROOT |
106 |
|
107 |
%files -f %{name}-%{version}-filelist |
108 |
%defattr(-,root,root) |
109 |
|
110 |
%pre -p /bin/sh |
111 |
|
112 |
%post -p /bin/sh |
113 |
|
114 |
%preun -p /bin/sh |
115 |
|
116 |
%postun -p /bin/sh |
117 |
|