/[smeserver]/rpms/smolt/sme8/smolt.spec
ViewVC logotype

Diff of /rpms/smolt/sme8/smolt.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

Revision 1.2 by slords, Sun Jul 1 22:01:32 2007 UTC Revision 1.10 by slords, Sat Mar 6 17:24:22 2010 UTC
# Line 1  Line 1 
1    # $Id: smolt.spec,v 1.9 2010/03/06 16:53:30 slords Exp $
2    
3  Name: smolt  Name: smolt
4  Summary: Fedora hardware profiler  
5  Version: 0.9.8.1  Summary: SME Server hardware profiler
6    Version: 1.4.3
7  Release: 4%{?dist}  Release: 4%{?dist}
8  License: GPL  License: GPLv2+
9  Group: Applications/Internet  Group: Applications/Internet
10  URL: http://hosted.fedoraproject.org/projects/smolt  URL: http://fedorahosted.org/smolt
11    Source: https://fedorahosted.org/releases/s/m/%{name}/%{name}-%{version}.tar.gz
12  # Note: This is a link to the gzip, you can't download it directly  Patch0: smolt-1.4.3-ddl.patch
13  # This will get fixed as soon as hosted can create attachments directly  Patch1: smolt-1.4.3-el5.patch
14    Patch2: smolt-1.4.3-sme.patch
 Source: https://hosted.fedoraproject.org/projects/smolt/attachment/wiki/WikiStart/%{name}-%{version}.tar.gz  
 Patch0: smolt-0.9.8.1-sme.patch  
 Patch1: smolt-0.9.8.1-sme.patch2  
 Patch2: smolt-0.9.8.1-sme.patch3  
15  BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)  BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
16    
17    Requires: dbus-python, python-urlgrabber, gawk, python-paste, hal, python-ctypes
18  BuildArch: noarch  BuildArch: noarch
 Requires: dbus-python  
19  BuildRequires: gettext  BuildRequires: gettext
 BuildRequires: /usr/bin/msgfmt.py  
20  BuildRequires: desktop-file-utils  BuildRequires: desktop-file-utils
21    
22    Requires(pre): %{_sbindir}/groupadd
23    Requires(pre): %{_sbindir}/useradd
24  Requires(post): /sbin/chkconfig  Requires(post): /sbin/chkconfig
25  Requires(preun): /sbin/chkconfig  Requires(preun): /sbin/chkconfig
26  Requires(preun): /sbin/service  Requires(preun): /sbin/service
27  Requires(postun): /sbin/service  Requires(postun): /sbin/service
28    Requires: python-simplejson
29    
30  %description  %description
31  The Fedora hardware profiler is a server-client system that does a hardware  The SME Server hardware profiler is a server-client system that does a hardware
32  scan against a machine and sends the results to a public Fedora Project  scan against a machine and sends the results to a public SME Server Project
33  turbogears server.  The sends are anonymous and should not contain any private  turbogears server.  The sends are anonymous and should not contain any private
34  information other than the physical hardware information and basic OS info.  information other than the physical hardware information and basic OS info.
35    
36  This package contains the client  This package contains the client
37    
38  %package server  %package server
39  Summary: Fedora hardware profiler server  Summary: SME Server hardware profiler server
40  Group: Applications/Internet  Group: Applications/Internet
41  Requires: smolt = %{version}-%{release}  Requires: smolt = %{version}-%{release}
42  Requires: TurboGears  Requires: python-genshi
43    Requires: python-crypto
44    Requires: TurboGears mx
45    Requires: python-turboflot
46    
47  %description server  %description server
48  The Fedora hardware profiler is a server-client system that does a hardware  The SME Server hardware profiler is a server-client system that does a hardware
49  scan against a machine and sends the results to a public Fedora Project  scan against a machine and sends the results to a public SME Server Project
50  turbogears server.  The sends are anonymous and should not contain any private  turbogears server.  The sends are anonymous and should not contain any private
51  information other than the physical hardware information and basic OS info.  information other than the physical hardware information and basic OS info.
52    
53  This package contains the server portion  This package contains the server portion
54    
55  %package firstboot  %package firstboot
56  Summary: Fedora hardware profile firstboot  Summary: SME Server hardware profile firstboot
57  Group: Applications/Internet  Group: Applications/Internet
58  Requires: smolt = %{version}-%{release}  Requires: smolt = %{version}-%{release}
59    
# Line 58  This provides firstboot integration for Line 62  This provides firstboot integration for
62  separate package so firstboot isn't a requisite to use smolt.  separate package so firstboot isn't a requisite to use smolt.
63    
64  %package gui  %package gui
65  Summary: Fedora hardware profiler gui  Summary: SME Server hardware profiler gui
66  Group: Applications/Internet  Group: Applications/Internet
67  Requires: smolt = %{version}-%{release}  Requires: smolt = %{version}-%{release}
68    Requires: PyQt4
69    
70  %description gui  %description gui
71  Provides smolt's gui functionality.  Not included in the default package to  Provides smolt's gui functionality.  Not included in the default package to
# Line 78  make Line 83  make
83    
84  %install  %install
85  %{__rm} -rf %{buildroot}  %{__rm} -rf %{buildroot}
86    cd client
87    DESTDIR=%{buildroot} make install
88    cd ..
89  %{__install} -d -m 0755 smoon/ %{buildroot}/%{_datadir}/%{name}/smoon/  %{__install} -d -m 0755 smoon/ %{buildroot}/%{_datadir}/%{name}/smoon/
90    %{__mkdir} -p %{buildroot}/%{_mandir}/man1/
91  %{__cp} -adv smoon/* %{buildroot}/%{_datadir}/%{name}/smoon/  %{__cp} -adv smoon/* %{buildroot}/%{_datadir}/%{name}/smoon/
92    %{__cp} client/scan.py %{buildroot}/%{_datadir}/%{name}/client/
93    %{__cp} client/gate.py %{buildroot}/%{_datadir}/%{name}/client/
94    %{__cp} client/os_detect.py %{buildroot}/%{_datadir}/%{name}/client/
95    %{__cp} client/fs_util.py %{buildroot}/%{_datadir}/%{name}/client/
96    %{__cp} client/man/* %{buildroot}/%{_mandir}/man1/
97    
98  %{__mkdir} -p %{buildroot}/%{_sysconfdir}/sysconfig/  %{__mkdir} -p %{buildroot}/%{_sysconfdir}/sysconfig/
 %{__mkdir} -p %{buildroot}/%{_sysconfdir}/cron.d/  
 %{__mkdir} -p %{buildroot}/%{_bindir}  
99  %{__mkdir} -p %{buildroot}/%{_datadir}/firstboot/modules/  %{__mkdir} -p %{buildroot}/%{_datadir}/firstboot/modules/
100  %{__mkdir} -p %{buildroot}/%{_initrddir}  %{__mkdir} -p %{buildroot}/%{_initrddir}
101  %{__mkdir} -p %{buildroot}/%{_datadir}/locale/  
102  %{__mv} client/smoltFirstBoot.py %{buildroot}/%{_datadir}/firstboot/modules/smolt.py  %{__mv} client/smoltFirstBoot.py %{buildroot}/%{_datadir}/firstboot/modules/smolt.py
103  %{__mv} client/smolt-init %{buildroot}/%{_initrddir}/smolt  %{__mv} client/smolt-init %{buildroot}/%{_initrddir}/smolt
 %{__mv} client/smolt.cron.monthly %{buildroot}/%{_sysconfdir}/cron.d/smolt  
 %{__cp} -adv client/po/* %{buildroot}/%{_datadir}/locale/  
   
 find %{buildroot} -name \*.po\* -exec rm {} \;  
104    
105  touch %{buildroot}/%{_sysconfdir}/sysconfig/hw-uuid  touch %{buildroot}/%{_sysconfdir}/sysconfig/hw-uuid
106    
 %{__install} -d -m 0755 client/ %{buildroot}/%{_datadir}/%{name}/client/  
 %{__install} -d -m 0755 client/icons/ %{buildroot}/%{_datadir}/%{name}/client/icons/  
 %{__cp} -adv client/*.py %{buildroot}/%{_datadir}/%{name}/client/  
   
107  # Icons  # Icons
108  %{__mkdir} -p %{buildroot}/%{_datadir}/icons/hicolor/16x16/apps/  %{__mkdir} -p %{buildroot}/%{_datadir}/icons/hicolor/16x16/apps/
109  %{__mkdir} -p %{buildroot}/%{_datadir}/icons/hicolor/22x22/apps/  %{__mkdir} -p %{buildroot}/%{_datadir}/icons/hicolor/22x22/apps/
110  %{__mkdir} -p %{buildroot}/%{_datadir}/icons/hicolor/24x24/apps/  %{__mkdir} -p %{buildroot}/%{_datadir}/icons/hicolor/24x24/apps/
111  %{__mkdir} -p %{buildroot}/%{_datadir}/icons/hicolor/32x32/apps/  %{__mkdir} -p %{buildroot}/%{_datadir}/icons/hicolor/32x32/apps/
112    
113  %{__mkdir} -p %{buildroot}/%{_datadir}/firstboot/pixmaps/  %{__mkdir} -p %{buildroot}/%{_datadir}/firstboot/pixmaps/
114    %{__mkdir} -p %{buildroot}/%{_datadir}/firstboot/themes/default/
115    
116  %{__mv} client/icons/smolt-icon-16.png %{buildroot}/%{_datadir}/icons/hicolor/16x16/apps/smolt.png  %{__mv} client/icons/smolt-icon-16.png %{buildroot}/%{_datadir}/icons/hicolor/16x16/apps/smolt.png
117  %{__mv} client/icons/smolt-icon-22.png %{buildroot}/%{_datadir}/icons/hicolor/22x22/apps/smolt.png  %{__mv} client/icons/smolt-icon-22.png %{buildroot}/%{_datadir}/icons/hicolor/22x22/apps/smolt.png
118  %{__mv} client/icons/smolt-icon-24.png %{buildroot}/%{_datadir}/icons/hicolor/24x24/apps/smolt.png  %{__mv} client/icons/smolt-icon-24.png %{buildroot}/%{_datadir}/icons/hicolor/24x24/apps/smolt.png
119  %{__mv} client/icons/smolt-icon-32.png %{buildroot}/%{_datadir}/icons/hicolor/32x32/apps/smolt.png  %{__mv} client/icons/smolt-icon-32.png %{buildroot}/%{_datadir}/icons/hicolor/32x32/apps/smolt.png
120  %{__cp} -adv client/icons/* %{buildroot}/%{_datadir}/%{name}/client/icons/  %{__cp} -adv client/icons/* %{buildroot}/%{_datadir}/%{name}/client/icons/
121  %{__cp} -adv client/icons/smolt-icon-48.png %{buildroot}/%{_datadir}/firstboot/pixmaps/smolt.png  %{__cp} -adv client/icons/smolt-icon-48.png %{buildroot}/%{_datadir}/firstboot/themes/default/smolt.png
122    
123  %{__mkdir} -p %{buildroot}/%{_datadir}/%{name}/doc  %{__rm} -f %{buildroot}/%{_bindir}/smoltSendProfile %{buildroot}/%{_bindir}/smoltDeleteProfile %{buildroot}/%{_bindir}/smoltGui
124  %{__install} -p -m 0644 doc/PrivacyPolicy %{buildroot}/%{_datadir}/%{name}/doc  %{__rm} -f %{buildroot}/%{_datadir}/%{name}/client/config.py
125    
126  ln -s %{_datadir}/%{name}/client/sendProfile.py %{buildroot}/%{_bindir}/smoltSendProfile  ln -s %{_datadir}/%{name}/client/sendProfile.py %{buildroot}/%{_bindir}/smoltSendProfile
127  ln -s %{_datadir}/%{name}/client/deleteProfile.py %{buildroot}/%{_bindir}/smoltDeleteProfile  ln -s %{_datadir}/%{name}/client/deleteProfile.py %{buildroot}/%{_bindir}/smoltDeleteProfile
128  ln -s %{_datadir}/%{name}/client/smoltGui.py %{buildroot}/%{_bindir}/smoltGui  ln -s %{_datadir}/%{name}/client/smoltGui.py %{buildroot}/%{_bindir}/smoltGui
129    ln -s %{_sysconfdir}/%{name}/config.py %{buildroot}/%{_datadir}/%{name}/client/config.py
130    
 %{__chmod} +x %{buildroot}/%{_datadir}/%{name}/client/*Profile.py  
 %{__chmod} +x %{buildroot}/%{_datadir}/%{name}/client/smoltGui.py  
 %{__chmod} +x %{buildroot}/%{_initrddir}/smolt  
131    
132  desktop-file-install --vendor='fedora' --dir=%{buildroot}/%{_datadir}/applications client/smolt.desktop  desktop-file-install --vendor='fedora' --dir=%{buildroot}/%{_datadir}/applications client/smolt.desktop
133    %{__rm} -f %{buildroot}/%{_datadir}/applications/smolt.desktop
134  %find_lang %{name}  %find_lang %{name}
135    
136    # Cleanup from the Makefile (will be cleaned up when it is finalized)
137    %{__rm} -f %{buildroot}/etc/init.d/smolt
138    %{__rm} -f %{buildroot}/etc/smolt/hw-uuid
139    
140  %clean  %clean
141  rm -rf %{buildroot}  rm -rf %{buildroot}
142    
143    %pre
144    %{_sbindir}/groupadd -r %{name} &>/dev/null || :
145    %{_sbindir}/useradd  -r -s /sbin/nologin -d %{_datadir}/%{name} -M \
146                                   -c 'Smolt' -g %{name} %{name} &>/dev/null || :
147    
148  %post  %post
149  /sbin/chkconfig --add smolt  /sbin/chkconfig --add smolt
150  if ! [ -f %{_sysconfdir}/sysconfig/hw-uuid ]  
151  then  #Randomize checkin times.
152      /bin/cat /proc/sys/kernel/random/uuid > %{_sysconfdir}/sysconfig/hw-uuid  TMPFILE=$(/bin/mktemp /tmp/smolt.XXXXX)
153      /bin/chmod 0644 %{_sysconfdir}/sysconfig/hw-uuid  /bin/awk '{ srand(); if($2 == 1 && $3 == 1) print $1,int((rand() * 100) % 22 + 1),int((rand() * 100) % 27 + 1),substr($0,index($0,$4)); else print $0}' /etc/cron.d/smolt > $TMPFILE
154      /bin/chown root:root %{_sysconfdir}/sysconfig/hw-uuid  /bin/cp $TMPFILE /etc/cron.d/smolt
155  fi  /bin/rm -f $TMPFILE
156    
157  %preun  %preun
158  if [ $1 = 0 ]; then  if [ $1 = 0 ]; then
# Line 146  if [ $1 = 0 ]; then Line 160  if [ $1 = 0 ]; then
160          /sbin/chkconfig --del smolt          /sbin/chkconfig --del smolt
161  fi  fi
162    
163    %post server
164    #Fail, will fix later
165    for f in delete.html deviceclass.html device.html devices.html error.html \
166             link.html login.html master.html myHosts.html notLoaded.html \
167             pub_uuid.html raw.html report_device_ratings.html \
168             report_host_ratings.html report_recent.html report_search_devices.html\
169             report_search.html report_search_profiles.html report_view_device.html\
170             report_view_devices.html report_view.html report_view_profile.html \
171             report_view_profiles.html showall.html show.html stats.html token.html\
172             welcome.html
173    do
174        touch %{_datadir}/%{name}/smoon/hardware/static/stats/$f
175    done
176    
177    %post gui
178    touch --no-create %{_datadir}/icons/hicolor || :
179    %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
180    
181    %postun gui
182    touch --no-create %{_datadir}/icons/hicolor || :
183    %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
184    
185  %files -f %{name}.lang  %files -f %{name}.lang
186  %defattr(-,root,root,-)  %defattr(-,root,root,-)
187  %doc README GPL doc/*  %doc README GPL doc/*
188  %dir %{_datadir}/%{name}  %dir %{_datadir}/%{name}
189    %dir %{_sysconfdir}/%{name}/
190  %{_datadir}/%{name}/client  %{_datadir}/%{name}/client
191    #%ghost %{_datadir}/%{name}/client/scan.pyc
192    #%ghost %{_datadir}/%{name}/client/scan.pyo
193  %{_datadir}/%{name}/doc  %{_datadir}/%{name}/doc
194  %{_bindir}/smoltSendProfile  %{_bindir}/smoltSendProfile
195  %{_bindir}/smoltDeleteProfile  %{_bindir}/smoltDeleteProfile
196    %config(noreplace) /%{_sysconfdir}/%{name}/config*
197  %{_sysconfdir}/cron.d/%{name}  %{_sysconfdir}/cron.d/%{name}
198    %{_mandir}/man1/*gz
199  %{_initrddir}/%{name}  %{_initrddir}/%{name}
200  %ghost %config(noreplace) %{_sysconfdir}/sysconfig/hw-uuid  %ghost %config(noreplace) %{_sysconfdir}/sysconfig/hw-uuid
201    
# Line 165  fi Line 206  fi
206  %files firstboot  %files firstboot
207  %defattr(-,root,root,-)  %defattr(-,root,root,-)
208  %{_datadir}/firstboot/modules/smolt.py*  %{_datadir}/firstboot/modules/smolt.py*
209  %{_datadir}/firstboot/pixmaps/smolt.png  %{_datadir}/firstboot/themes/default/smolt.png
210    
211  %files gui  %files gui
212  %defattr(-,root,root,-)  %defattr(-,root,root,-)
# Line 174  fi Line 215  fi
215  %{_bindir}/smoltGui  %{_bindir}/smoltGui
216    
217  %changelog  %changelog
218  * Sun Jul 1 2007 Shad L. Lords <slords@lordsfam.net> - 0.9.8.1-4  * Sat Feb 6 2010 Shad L. Lords <slords@mail.com> 1.4.2-4.sme
219  - Specify full paths so commands will run.  - Make cronjob run as root so we can get machine type
220    
221    * Sat Feb 6 2010 Shad L. Lords <slords@mail.com> 1.4.2-3.sme
222    - Make cronjob run as admin so we can get system type
223    
224  * Thu Jun 7 2007 Shad L. Lords <slords@lordsfam.net> - 0.9.8.1-3  * Mon Feb 3 2010 Shad L. Lords <slords@mail.com> 1.4.2-2.sme
225  - More patches for both el4 and sme.  - Apply patches so smolt will run under el5
226    - Apply sme specific patches
227    
228    * Mon Jan 25 2010 Mike McGrath <mmcgrath@redhat.com> 1.4.2-1
229    - Upstream released new version
230    - Added hal requires
231    
232    * Tue Oct 13 2009 Mike McGrath <mmcgrath@redhat.com> 1.4-4
233    - Fixing firstboot for F-12
234    
235    * Mon Sep 21 2009 Mike McGrath <mmcgrath@redhat.com> 1.4-2
236    - Patched issue with translations (already upstream)
237    
238    * Mon Sep 14 2009 Mike McGrath <mmcgrath@redhat.com> 1.4-1
239    - Upstream released new version
240    
241    * Thu Sep 10 2009 Mike McGrath <mmcgrath@redhat.com> - 1.3.2-2
242    - Added requires for PyQt4 on smolt gui
243    
244    * Thu Sep 03 2009 Mike McGrath <mmcgrath@redhat.com> - 1.3.2-1
245    - Upstream released new version
246    - Changed some link and copy info
247    
248    * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-2
249    - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
250    
251    * Thu Jul 02 2009 Mike McGrath <mmcgrath@redhat.com> - 1.3-1
252    - Added touch for generated stats
253    - Upstream released new version
254    
255    * Tue Apr 14 2009 Mike McGrath <mmcgrath@redhat.com> - 1.2-4.2
256    - Removed fake attack
257    
258    * Fri Mar 13 2009 Mike McGrath <mmcgrath@redhat.com> - 1.2-4.1
259    - Fixed some formatting in the spec file
260    - Added note to %post
261    
262    * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-4
263    - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
264    
265    * Wed Jan 21 2009 Mike McGrath <mmcgrath@redhat.com> - 1.2-3
266    - Added os_detect.py as it is now required.
267    
268    * Mon Dec 01 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.2-2
269    - Rebuild for Python 2.6
270    
271    * Sun Nov 30 2008 Mike McGrath <mmcgrath@redhat.com> 1.2-1
272    - Upstream released new version
273    
274  * Wed Jun 6 2007 Shad L. Lords <slords@lordsfam.net> - 0.9.8.1-2  * Fri Nov 21 2008 Mike McGrath <mmcgrath@redhat.com> 1.1.1.1-10
275  - Patch to work with el4 and point at sme smolt server.  - Fix for bug 472101
276    
277    * Wed Nov 12 2008 Mike McGrath <mmcgrath@redhat.com> 1.1.1.1-9
278    - Fix for bug 470829
279    
280    * Tue Nov 11 2008 Mike McGrath <mmcgrath@redhat.com> 1.1.1.1-8
281    - Added patch for fixed scanner
282    
283    * Wed Oct 1 2008 Mike McGrath <mmcgrath@redhat.com> 1.1.1.1-7
284    - Fix for 439496
285    
286    * Sun Sep  7 2008 Mike McGrath <mmcgrath@redhat.com> 1.1.1.1-6
287    - Added turboflot to server, removed from firstboot
288    
289    * Thu Sep  4 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.1.1.1-5
290    - fix license tag
291    
292    * Thu Apr 03 2008 Mike McGrath <mmcgrath@redhat.com> - 1.1.1.1-4
293    - One revert for rawhide
294    
295    * Sat Mar 08 2008 Mike McGrath <mmcgrath@redhat.com> - 1.1.1.1-3
296    - Fixing firstboot again for 437708, 437765
297    
298    * Sat Mar 08 2008 Mike McGrath <mmcgrath@redhat.com> - 1.1.1.1-2
299    - Fix firstboot for 437708, 437765
300    
301    * Sat Mar 08 2008 Mike McGrath <mmcgrath@redhat.com> - 1.1.1.1-1
302    - Upstream released new version
303    
304    * Wed Mar 05 2008 Mike McGrath <mmcgrath@redhat.com> - 1.1.1-1
305    - Upstream released new version
306    - Manfiles added
307    - Source location updated
308    
309    * Wed Feb 27 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1-3
310    - Copy instead of move cron file so that selinux contexts are set
311      properly. (BZ#435050)
312    
313    * Wed Feb 27 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1-2
314    - Create smolt user. (BZ#435136)
315    
316    * Fri Feb 01 2008 Mike McGrath <mmcgrath@redhat.com> 1.0-5
317    - Added a req for mx on smoon
318    
319    * Thu Jan 08 2008 Mike McGrath <mmcgrath@redhat.com> 1.0-4
320    - Fixed firstboot
321    
322    * Thu Jan 08 2008 Mike McGrath <mmcgrath@redhat.com> 1.0-3
323    - Added python-urlgrabber as a requires - 427969
324    
325    * Thu Nov 22 2007 Mike McGrath <mmcgrath@redhat.com> 1.0-2
326    - Installed scanner - #395901
327    
328    * Tue Nov 20 2007 Mike McGrath <mmcgrath@redhat.com> 1.0-1
329    - Upstream released new version
330    
331    * Tue Oct 25 2007 Mike McGrath <mmcgrath@redhat.com> 0.9.9.2-1
332    - Upstream released new version
333    
334    * Tue Oct 23 2007 Mike McGrath <mmcgrath@redhat.com> 0.9.9.1-4
335    - Upstream released new version
336    
337    * Thu Oct 18 2007 Mike McGrath <mmcgrath@redhat.com> 0.9.9-2
338    - Fixed /etc/smolt/ ownership issue
339    
340    * Tue Oct 16 2007 Mike McGrath <mmcgrath@redhat.com> 0.9.9-1
341    - Upstream released new version
342    
343    * Fri Sep 28 2007 Mike McGrath <mmcgrath@redhat.com> 0.9.8.4-8
344    - Fixed Selinux
345    
346    * Thu Sep 27 2007 Mike McGrath <mmcgrath@redhat.com> 0.9.8.4-6
347    - Added translations
348    
349    * Fri Sep 21 2007 Mike McGrath <mmcgrath@redhat.com> 0.9.8.4-5
350    - Fixed firstboot issues
351    
352    * Mon Aug 13 2007 Mike McGrath <mmcgrath@redhat.com> 0.9.8.4-4
353    - Rebuild to clean up 'config.py' compilations
354    
355    * Mon Aug 13 2007 Mike McGrath <mmcgrath@redhat.com> 0.9.8.4-1
356    - Upstream released new version (major changes)
357    - New config file
358    - New Makefile
359    - Added deps
360    
361    * Fri Jun 22 2007 Mike McGrath <mmcgrath@redhat.com> 0.9.8.3
362    - Upstream released new version
363    
364  * Thu May 24 2007 Mike McGrath <mmcgrath@redhat.com> - 0.9.8.1  * Thu May 24 2007 Mike McGrath <mmcgrath@redhat.com> - 0.9.8.1
365  - Upstream released new version  - Upstream released new version


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed