1 |
Name: gt5 |
2 |
Summary: A diff-capable 'du-browser' |
3 |
Version: 1.5.0 |
4 |
Release: 1%{?dist} |
5 |
License: GPL+ |
6 |
Group: Applications/File |
7 |
URL: http://gt5.sourceforge.net/ |
8 |
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz |
9 |
#patch is not needed by direct using "install -p" |
10 |
#Patch0: gt5-1.4.0-chmod.diff |
11 |
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) |
12 |
BuildArch: noarch |
13 |
#something else is required in runtime? |
14 |
Requires: gawk |
15 |
#sed is not needed to mention only in BuildRequires |
16 |
Requires: sed |
17 |
#Some console web browser is required (e.g. links links2 elinks lynx w3m) |
18 |
#text-www-browser virtual provider was introduced in F-8 |
19 |
#it was initially proposed by Till Maas at: |
20 |
#http://fedoraproject.org/wiki/VilleSkytt%C3%A4/VirtualProvides |
21 |
%if 0%{?fedora} > 7 |
22 |
Requires: text-www-browser |
23 |
%endif |
24 |
|
25 |
%description |
26 |
Allows to check what takes the most of your hard disk space and track |
27 |
its changes. |
28 |
Note: It requires some console web browser installed in the system |
29 |
(e.g. links, links2, elinks, lynx, w3m). |
30 |
|
31 |
https://launchpad.net/ubuntu/+source/gt5/ |
32 |
|
33 |
%prep |
34 |
%setup -q |
35 |
|
36 |
%build |
37 |
#it's a shell-script, nothing to do |
38 |
|
39 |
%install |
40 |
rm -fr %{buildroot} |
41 |
#make install requires a patch to drop out chown root:root, |
42 |
#it was suggested to use install -p instead of |
43 |
install -d %{buildroot}%{_bindir} |
44 |
install -d %{buildroot}%{_mandir}/man1 |
45 |
install -p gt5 %{buildroot}%{_bindir}/ |
46 |
install -p gt5.1 %{buildroot}%{_mandir}/man1/ |
47 |
#make install DESTDIR=%{buildroot} PREFIX=%{_prefix} |
48 |
|
49 |
%clean |
50 |
rm -fr %{buildroot} |
51 |
|
52 |
%files |
53 |
%defattr(0644,root,root,0755) |
54 |
%attr(0755,root,root) %{_bindir}/gt5 |
55 |
#INSTALL is not needed |
56 |
%doc README LICENSE ChangeLog |
57 |
%{_mandir}/man1/gt5.1* |
58 |
|
59 |
%changelog |
60 |
* Wed Sep 29 2021 John Crisp <jcrisp@safeandsoundit.co.uk> - 1.5.0.1.sme |
61 |
- Older version does not work. Added revised version from Ubuntu |
62 |
- 1.5.0~20111220+bzr29-4 |
63 |
- https://launchpad.net/ubuntu/+source/gt5/ |
64 |
|
65 |
* Wed Sep 29 2021 John Crisp <jcrisp@safeandsoundit.co.uk> - 1.4.0-15.sme |
66 |
- Add the bug number [SME: 10337] |
67 |
|
68 |
* Wed Sep 29 2021 John Crisp <jcrisp@safeandsoundit.co.uk> - 1.4.0-14.sme |
69 |
- First import to SME Contribs [SME: 10337] |
70 |
- Fixed the versions below - we had two -12 |
71 |
|
72 |
* Mon Feb 24 2014 Bryan Seitz <seitz@ghettoforge.org> - 1.4.0-13 |
73 |
- Initial build for GhettoForge |
74 |
|
75 |
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.0-12 |
76 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild |
77 |
|
78 |
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.0-11 |
79 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild |
80 |
|
81 |
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.0-10 |
82 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
83 |
|
84 |
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.0-9 |
85 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
86 |
|
87 |
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.0-8 |
88 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
89 |
|
90 |
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.0-7 |
91 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
92 |
|
93 |
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.0-6 |
94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
95 |
|
96 |
* Mon Jul 7 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.4.0-5 |
97 |
- fix conditional comparison |
98 |
|
99 |
* Sat Oct 27 2007 Marcin Zajaczkowski <mszpak ATT wp DOTT pl> - 1.4.0-4 |
100 |
- applied suggestions by Mamoru Tasaka (all below) |
101 |
- removed a chown patch by a direct use of an 'install' command |
102 |
- removed INSTALL from a documentation set |
103 |
- added using "text-www-browser" virtial Provides for F-8+ |
104 |
|
105 |
* Tue Sep 18 2007 Marcin Zajaczkowski <mszpak ATT wp DOTT pl> - 1.4.0-3 |
106 |
- {name} variable used in a source URL (thanks to Parag AN) |
107 |
|
108 |
* Tue Sep 11 2007 Marcin Zajaczkowski <mszpak ATT wp DOTT pl> - 1.4.0-2 |
109 |
- sed restored in Requires section |
110 |
- added info about required console web browser (thanks to Till Maas) |
111 |
|
112 |
* Tue Sep 04 2007 Marcin Zajaczkowski <mszpak ATT wp DOTT pl> - 1.4.0-1 |
113 |
- updated to 1.4.0 |
114 |
- removed DESTDIR patch (merged with an upstream version) |
115 |
|
116 |
* Tue Sep 04 2007 Marcin Zajaczkowski <mszpak ATT wp DOTT pl> - 1.3d-3 |
117 |
- added missing DESTDIR in a patch (thanks to Thomas Sattler) |
118 |
- specified licence type (due to a new Licensing Guidelines) |
119 |
|
120 |
* Tue May 29 2007 Marcin Zajaczkowski <mszpak ATT wp DOTT pl> - 1.3d-2 |
121 |
- BuildArch changed to noarch |
122 |
|
123 |
* Sat May 12 2007 Marcin Zajaczkowski <mszpak ATT wp DOTT pl> - 1.3d-1 |
124 |
- initial release |
125 |
|