source: projects/specs/trunk/g/gnutls/gnutls-vl.spec @ 10871

Revision 10871, 17.2 KB checked in by iwaim, 7 years ago (diff)

gnutls 3.4.14-3

Line 
1%define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
2
3Summary:        GNU TLS Library
4Summary(ja):    GNU TLS ライブラリ
5Name:           gnutls
6Version:        3.4.14
7Release:        3%{?_dist_release}
8License:        GPLv3+ and LGPLv2+
9# The libgnutls library is LGPLv2+, utilities and remaining libraries are GPLv3+
10Group:          System Environment/Libraries
11URL:            http://www.gnutls.org/
12Source0:        %{name}-%{version}.tar.xz
13Source1:        libgnutls-config
14
15#patches from fedora development
16Patch1: gnutls-3.2.7-rpath.patch
17Patch3: gnutls-3.1.11-nosrp.patch
18
19# Vine Patches
20# Nothing...
21
22# Security fixes
23# CVE-2016-7444/GNUTLS-SA-2016-3
24Patch2001: https://gitlab.com/gnutls/gnutls/commit/964632f37dfdfb914ebc5e49db4fa29af35b1de9.patch
25# from Fedora
26# CVE-2017-5337, CVE-2017-5334, CVE-2017-5336, CVE-2017-5335
27Patch3001: gnutls-3.4.17-various-flaws1.patch
28
29BuildRoot:      %{_tmppath}/%{name}-%{version}-root
30BuildRequires:  libtasn1-devel >= 4.3
31BuildRequires:  datefudge
32BuildRequires:  gmp-devel
33BuildRequires:  gettext readline-devel libtool
34BuildRequires:  guile-devel >= 1.8.6
35BuildRequires:  p11-kit-devel >= 0.21.3
36BuildRequires:  nettle-devel >= 3.1.1
37BuildRequires:  texinfo, autogen
38BuildRequires:  zlib-devel
39Requires:      zlib
40# for tests
41BuildRequires:  net-tools
42
43Requires(post):   ldconfig
44Requires(postun): ldconfig
45
46Vendor:         Project Vine
47Distribution:   Vine Linux
48
49%description
50GnuTLS is a project that aims to develop a library which provides a secure
51layer, over a reliable transport layer. Currently the GnuTLS library implements
52the proposed standards by the IETF's TLS working group.
53#'
54
55%package devel
56Summary:        Development files for the GnuTLS package.
57Summary(ja):    GnuTLS の開発用ファイル
58Group:          Development/Libraries
59Requires:       %{name} = %{version}-%{release}
60Requires:       libgcrypt-devel, zlib-devel, pkgconfig
61Requires:       libtasn1-devel, nettle-devel
62Requires(post,preun): /sbin/install-info
63
64%description devel
65GnuTLS is a project that aims to develop a library which provides a secure
66layer, over a reliable transport layer. Currently the GnuTLS library implements
67the proposed standards by the IETF's TLS working group.
68
69This package contains files needed for developing applications with the GnuTLS
70library.
71#'
72
73%package utils
74Summary:        Command line tools for TLS protocol.
75Summary(ja):    GnuTLS のコマンドラインツール
76Group:          Applications/System
77Requires:       %{name} = %{version}-%{release}
78
79%description utils
80GnuTLS is a project that aims to develop a library which provides a secure
81layer, over a reliable transport layer. Currently the GnuTLS library implements
82the proposed standards by the IETF's TLS working group.
83
84This package contains command line TLS client and server and certificate
85manipulation tools.
86#'
87
88%package guile
89Summary: Guile bindings for the GNUTLS library
90Group: Development/Libraries
91Requires: %{name} = %{version}-%{release}
92Requires: guile
93
94%description guile
95GnuTLS is a project that aims to develop a library which provides a secure
96layer, over a reliable transport layer. Currently the GnuTLS library implements
97the proposed standards by the IETF's TLS working group.
98This package contains Guile bindings for the library.
99#'
100
101%package c++
102Summary: The C++ interface to GnuTLS
103Group: System Environment/Libraries
104Requires: %{name} = %{version}-%{release}
105
106%description c++
107GnuTLS is a project that aims to develop a library which provides a secure
108layer, over a reliable transport layer. Currently the GnuTLS library implements
109the proposed standards by the IETF's TLS working group.
110This package contains the C++ interface for the GnuTLS library.
111#'
112
113%package -n compat32-%{name}
114Summary:        GNU TLS Library
115Summary(ja):    GNU TLS ライブラリ
116Group:          System Environment/Libraries
117Requires:       %{name} = %{version}-%{release}
118
119%description -n compat32-%{name}
120GnuTLS is a project that aims to develop a library which provides a secure
121layer, over a reliable transport layer. Currently the GnuTLS library implements
122the proposed standards by the IETF's TLS working group.
123#'
124
125%package -n compat32-%{name}-devel
126Summary:        Development files for the GnuTLS package.
127Summary(ja):    GnuTLS の開発用ファイル
128Group:          Development/Libraries
129Requires:       compat32-%{name} = %{version}-%{release}
130Requires:       %{name}-devel = %{version}-%{release}
131Requires:       compat32-libgcrypt-devel, compat32-zlib-devel
132Requires(post,preun): /sbin/install-info
133
134%description -n compat32-%{name}-devel
135GnuTLS is a project that aims to develop a library which provides a secure
136layer, over a reliable transport layer. Currently the GnuTLS library implements
137the proposed standards by the IETF's TLS working group.
138
139This package contains files needed for developing applications with the GnuTLS
140library.
141#'
142
143%package -n compat32-%{name}-guile
144Summary: Guile bindings for the GNUTLS library
145Group: Development/Libraries
146Requires: compat32-%{name} = %{version}-%{release}
147Requires: %{name}-guile = %{version}-%{release}
148
149%description -n compat32-%{name}-guile
150GnuTLS is a project that aims to develop a library which provides a secure
151layer, over a reliable transport layer. Currently the GnuTLS library implements
152the proposed standards by the IETF's TLS working group.
153This package contains Guile bindings for the library.
154#'
155
156%prep
157%setup -q
158
159%patch1 -p1 -b .rpath
160%patch3 -p1 -b .nosrp
161%patch2001 -p1
162%patch3001 -p1
163
164%build
165export LDFLAGS="-Wl,--no-add-needed"
166# autoreconf -fi
167%configure \
168        --disable-openssl-compatibility \
169        --disable-srp-authentication \
170        --disable-static \
171        --disable-srp-authentication \
172        --disable-non-suiteb-curves \
173        --disable-rpath \
174        --enable-guile
175#       --with-libgcrypt
176#       --with-lzo \
177#       --with-included-libcfg \
178#       --with-libtasn1-prefix=%{_prefix} \
179#       --with-included-libtasn1 \
180#       --with-included-opencdk \
181#       --with-included-lzo \
182make %{?_smp_mflags}
183# cp lib/COPYING COPYING.LIB
184
185%install
186%__rm -rf %{buildroot}
187# makeinstall macro causes build error, why?
188make install DESTDIR=%{buildroot}
189
190rm -f $RPM_BUILD_ROOT%{_bindir}/srptool
191rm -f $RPM_BUILD_ROOT%{_bindir}/danetool
192rm -f $RPM_BUILD_ROOT%{_bindir}/gnutls-srpcrypt
193# replace libgnutls*-config
194%__install -d %{buildroot}%{_bindir}
195%__install -p -m755 %{SOURCE1} %{buildroot}%{_bindir}/libgnutls-config
196# %__install -p -m755 %{SOURCE1} %{buildroot}%{_bindir}/libgnutls-extra-config
197
198rm -f $RPM_BUILD_ROOT%{_mandir}/man1/srptool.1
199rm -f $RPM_BUILD_ROOT%{_mandir}/man3/*srp*
200rm -f $RPM_BUILD_ROOT%{_infodir}/dir
201rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
202rm -f $RPM_BUILD_ROOT%{_libdir}/libguile*.a
203rm -f $RPM_BUILD_ROOT%{_libdir}/pkgconfig/gnutls-dane.pc
204
205# remove unneeded files
206%__rm -f %{buildroot}%{_libdir}/*.la
207%__rm -f %{buildroot}%{_libdir}/guile/2.0/*.la
208
209%find_lang gnutls
210
211%check
212make check
213
214%clean
215rm -rf %{buildroot}
216
217%post -p /sbin/ldconfig
218
219%postun -p /sbin/ldconfig
220
221%post devel
222if [ -f %{_infodir}/gnutls.info.gz ]; then
223    /sbin/install-info %{_infodir}/gnutls.info.gz %{_infodir}/dir || :
224fi
225
226%preun devel
227if [ $1 = 0 -a -f %{_infodir}/gnutls.info.gz ]; then
228   /sbin/install-info --delete %{_infodir}/gnutls.info.gz %{_infodir}/dir || :
229fi
230
231%post guile -p /sbin/ldconfig
232
233%postun guile -p /sbin/ldconfig
234
235%post -n compat32-%{name} -p /sbin/ldconfig
236
237%postun -n compat32-%{name} -p /sbin/ldconfig
238
239%post -n compat32-%{name}-guile -p /sbin/ldconfig
240
241%postun -n compat32-%{name}-guile -p /sbin/ldconfig
242
243%files -f gnutls.lang
244%defattr(-,root,root,-)
245%{_libdir}/libgnutls.so.30*
246# %{_libdir}/libgnutls-xssl.so.0*
247%doc README AUTHORS NEWS THANKS
248
249%files devel
250%defattr(-,root,root,-)
251%{_bindir}/libgnutls*-config
252%{_includedir}/*
253%{_libdir}/libgnutls*.so
254%{_libdir}/pkgconfig/*.pc
255%{_mandir}/man3/*
256%{_infodir}/gnutls*
257%{_infodir}/pkcs11-vision.png.gz
258
259%files utils
260%defattr(-,root,root,-)
261%{_bindir}/certtool
262%{_bindir}/psktool
263%{_bindir}/p11tool
264%{_bindir}/ocsptool
265%{_bindir}/gnutls*
266%{_mandir}/man1/*
267%doc doc/certtool.cfg
268
269%files guile
270%defattr(-,root,root,-)
271%{_libdir}/guile/2.0/guile*.so*
272%{_datadir}/guile/site/gnutls
273%{_datadir}/guile/site/gnutls.scm
274
275%files c++
276%{_libdir}/libgnutlsxx.so.*
277
278%if %{build_compat32}
279%files -n compat32-%{name}
280%defattr(-,root,root,-)
281%{_libdir}/libgnutls.so.30*
282# %{_libdir}/libgnutls-xssl.so.0*
283
284%files -n compat32-%{name}-devel
285%defattr(-,root,root,-)
286#%{_libdir}/libgnutls*.a
287%{_libdir}/libgnutls*.so
288%{_libdir}/pkgconfig/*.pc
289
290%files -n compat32-%{name}-guile
291%defattr(-,root,root,-)
292%{_libdir}/guile/2.0/guile*.so*
293%endif
294
295%changelog
296* Sat Jan 28 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 3.4.14-3
297- fix CVE-2017-5337, CVE-2017-5334, CVE-2017-5336, CVE-2017-5335
298 - add Patch3001 from Fedora 24 gnutls-3.4.17-2.fc24
299
300* Thu Jan 12 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 3.4.14-2
301- fix CVE-2016-7444; OCSP validation issue
302 - add Patch2001
303- add BR: net-tools; for test
304
305* Thu Jul  7 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.4.14-1
306- new upstream release 3.4.14.
307- dropped Patch100.
308- added BR: datefudge.
309
310* Mon Jul  4 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.4.13-1
311- new upstream release 3.4.13.
312- added Patch100: workaround of failing cert-test (The certificate was expired).
313
314* Sun Feb 14 2016 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.9-1
315- new upstream release 3.4.9
316
317* Fri Jan  1 2016 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.7-2
318- rebuilt to marge changelog
319
320* Tue Dec 29 2015 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.7-1
321- new upstream release 3.4.7
322
323* Tue Dec 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.3.17-3
324- rebuild with nettls-3.1.1
325
326* Fri Aug 28 2015 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.3.17-2
327- BR: libtasn1-devel >= 3.9
328
329* Fri Aug 28 2015 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.3.17-1
330- built for release
331
332* Tue Aug 18 2015 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.3.17-0.2
333- rm libgnutls-xssl.so.0* in files list
334
335* Mon Aug 17 2015 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.3.17-0.1
336- for test
337
338* Mon Aug 17 2015 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.2.20-3
339- add patch1000 for fix SA-2015-3
340
341* Sun Jan 25 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 3.2.20-2
342- rebuilt with guile 2.0.11
343
344* Tue Nov 18 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.2.20-1
345- new upstream release with security fix   
346
347* Thu Jun  5 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.2.15-1
348- new upstream release with security fix 
349
350* Tue Mar 11 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.2.12.1-1
351- new upstream release with security fix
352
353* Wed Feb 19 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.2.11-1
354- new upstream release with security fix
355
356* Sun Feb  9 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.2.10-3
357- fix R: in compat32
358
359* Wed Feb  5 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.2.10-2
360- fix BR:, R: (drop unneeded dependency)
361
362* Mon Feb  3 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.2.10-1
363- new upstream release 3.2.10
364- update patches / drop old patches
365- add BR: nettle
366
367* Fri Jun 07 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.23-2
368- added Patch100 from upstream to fix CVE-2013-2116
369
370* Fri Feb 08 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.23-1
371- new upstream release
372- fixed a day of the week in %%changelog
373
374* Sat Jan 26 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.22-1
375- new upstream release
376
377* Sun Nov 11 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.21-1
378- new upstream release
379
380* Sun Jun 10 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.20-1
381- new upstream release
382
383* Tue May 08 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.19-1
384- new upstream release
385
386* Sun Mar 18 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.18-1
387- new upstream release
388- changed BuildRequires: p11-kit-devel >= 0.11
389
390* Fri Mar 16 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.17-1
391- new upstream release
392
393* Sat Jan 14 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.16-1
394- new upstream release
395
396* Mon Dec 05 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.14-3
397- added BuildRequires: p11-kit-devel
398
399* Sun Dec 04 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.14-2
400- deleted BuildRequires: nettle-devel
401  - mistake.. fixed.
402
403* Sun Dec 04 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.14-1
404- new upstream release
405- synced Fedora development package
406- add new sub-package: c++
407
408* Sun Apr 10 2011 IWAI, Masaharu <iwai@alib.jp> 2.10.5-2
409- add Requires: libtasn1-devel for devel subpackage
410
411* Sun Apr  3 2011 IWAI, Masaharu <iwai@alib.jp> 2.10.5-1
412- new upstream release
413
414* Sun Dec 12 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.10.4-1
415- new upstream release
416
417* Tue Nov 23 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.10.3-1
418- new upstream release
419- dropt patch1
420
421* Sat Oct 9 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.10.2-1
422- new upstream release
423- added patch1,2,3,4 from Fedora development
424- added BuildRequires: gettext readline-devel libtool
425- added configure option
426  --disable-static,--disable-srp-authentication
427  - dropt *.a files from -devel package again
428
429* Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> 2.8.6-2
430- build with rpm-4.8.1-1 for pkg-config file
431
432* Mon Mar 22 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.8.6-1
433- new upstream release
434- applied new naming policy to spec
435
436* Thu Nov 19 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.8.5-1
437- new upstream release
438
439* Sat Sep 19 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.8.4-1
440- new upstream release
441
442* Wed Aug 19 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.8.3-1
443- new upstream release
444
445* Thu Aug 13 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.8.2-1
446- new upstream release with security fix (handling X.509 CN or SAN fields)
447
448* Sat Jun 27 2009 NAKAMURA Kenta <kenta@vinelinux.org> 2.8.1-2vl5
449- added compat32 package for x86_64 arch support
450
451* Thu Jun 11 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.8.1-1vl5
452- new upstream release
453- added autoreconf
454- deleted libguile*.a
455- dropt Patch3
456- added %post guile, %postun guile
457
458* Sun May 03 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.6-2
459- drop *.a files from -devel package
460- build with system lzo
461
462* Sun May 03 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.6-1
463- new upstream release with security fixes (CVE-2009-1415,1416,1417)
464
465* Wed Apr 15 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.6.5-1vl5
466- update to 2.6.5
467
468* Wed Mar 25 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.4-2
469- spec in UTF-8
470
471* Sun Feb 8 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.6.4-1vl5
472- update to 2.6.4
473- modifeid Source0
474
475* Mon Jan 19 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.3-2vl5
476- add BuildRequires: guile-devel >= 1.8.6
477
478* Tue Jan 13 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.6.3-1vl5
479- update to 2.6.3
480- import from fedora developing's 2.6.3
481  - License tag fixed
482- dropped patch0, patch1, patch2
483- added patch3
484- added BuildRequires: gmp-devel
485- add new sub-package: guile
486  - added %package guile, %description guile, %files guile
487
488* Sat Mar 22 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.6.3-2vl5
489- used %%{?_dist_release} macro
490
491* Mon Mar 17 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.6.3-2vl1
492- update to 1.6.3 (use no-SRP source)
493- import from fedora core's 1.6.3-2
494  - nosrc.tar.bz2 (source0)
495  - license tag fix
496- build with system libtasn1
497
498* Fri Mar 09 2007 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.4.5-0vl1
499- update to 1.4.5 (use no-SRP source)
500- import from fedora core's 1.4.5-1
501  - nosrc.tar.bz2 (source0)
502- drop obsolete cve-2006-4790.patch (patch3)
503
504* Tue Oct 24 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.4.1-2vl1
505- [SECURITY] update to 1.4.1 (use no-SRP source)
506- import from fedora core's 1.4.1-2
507  - nosrp.tar.bz2 (source0)
508  - libgnutls-config (source1)
509  - nosrc.patch (patch0)
510  - enable-psk.patch (patch1)
511  - cve-2006-4790.patch (patch3)
512- update required version of libgcrypt (>= 1.2.2)
513- add Requires: pkgconfig to -devel package
514- add %%check section
515- update %%files
516- add new sub-package: utils
517
518* Sat May 14 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.0.25-0vl1
519- [SECURITY FIX] upstream release
520  - record packet parsing denial of service (CAN-2005-1431)
521
522* Mon Mar 28 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.0.24-0vl1
523- initial build for Vine Linux
524- upstream release
525
526* Wed Mar  2 2005 Warren Togami <wtogami@redhat.com> 1.0.20-6
527- gcc4 rebuild
528
529* Tue Jan  4 2005 Ivana Varekova <varekova@redhat.com> 1.0.20-5
530- add gnutls Requires zlib-devel (#144069)
531
532* Mon Nov 08 2004 Colin Walters <walters@redhat.com> 1.0.20-4
533- Make gnutls-devel Require libgcrypt-devel
534
535* Tue Sep 21 2004 Jeff Johnson <jbj@redhat.com> 1.0.20-3
536- rebuild with release++, otherwise unchanged.
537
538* Tue Sep  7 2004 Jeff Johnson <jbj@redhat.com> 1.0.20-2
539- patent tainted SRP code removed.
540
541* Sun Sep  5 2004 Jeff Johnson <jbj@redhat.com> 1.0.20-1
542- update to 1.0.20.
543- add --with-included-opencdk --with-included-libtasn1
544- add --with-included-libcfg --with-included-lzo
545- add --disable-srp-authentication.
546- do "make check" after build.
547
548* Fri Mar 21 2003 Jeff Johnson <jbj@redhat.com> 0.9.2-1
549- upgrade to 0.9.2
550
551* Tue Jun 25 2002 Jeff Johnson <jbj@redhat.com> 0.4.4-1
552- update to 0.4.4.
553
554* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
555- automated rebuild
556
557* Sat May 25 2002 Jeff Johnson <jbj@redhat.com> 0.4.3-1
558- update to 0.4.3.
559
560* Tue May 21 2002 Jeff Johnson <jbj@redhat.com> 0.4.2-1
561- update to 0.4.2.
562- change license to LGPL.
563- include splint annotations patch.
564
565* Tue Apr  2 2002 Nalin Dahyabhai <nalin@redhat.com> 0.4.0-1
566- update to 0.4.0
567
568* Thu Jan 17 2002 Nalin Dahyabhai <nalin@redhat.com> 0.3.2-1
569- update to 0.3.2
570
571* Thu Jan 10 2002 Nalin Dahyabhai <nalin@redhat.com> 0.3.0-1
572- add a URL
573
574* Thu Dec 20 2001 Nalin Dahyabhai <nalin@redhat.com>
575- initial package
Note: See TracBrowser for help on using the repository browser.