Blame SPECS/createrepo.spec

164e0b
%{!?python_sitelib: %define python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
164e0b
164e0b
%if ! 0%{?rhel}
164e0b
# we don't have this in rhel yet...
164e0b
BuildRequires: bash-completion
164e0b
%endif
164e0b
164e0b
# disable broken /usr/lib/rpm/brp-python-bytecompile
164e0b
%define __os_install_post %{nil}
164e0b
%define compdir %(pkg-config --variable=completionsdir bash-completion)
164e0b
%if "%{compdir}" == ""
164e0b
%define compdir "/etc/bash_completion.d"
164e0b
%endif
164e0b
164e0b
Summary: Creates a common metadata repository
164e0b
Name: createrepo
164e0b
Version: 0.9.9
164e0b
Release: 28%{?dist}
164e0b
License: GPLv2
164e0b
Group: System Environment/Base
164e0b
Source: %{name}-%{version}.tar.gz
164e0b
Patch0: createrepo-head.patch
164e0b
Patch1: ten-changelog-limit.patch
164e0b
Patch2: BZ-1022028-wrong-package-count.patch
164e0b
Patch3: BZ-1256216-cifs-share-oserror.patch
164e0b
Patch4: BZ-1178763-duplicates.patch
164e0b
Patch5: BZ-1270784-checksum-prefix.patch
164e0b
Patch6: BZ-1083182-traceback-on-nonexisting-pkglist.patch
164e0b
Patch7: BZ-1285761-modifyrepo-mergerepo-options-manpage.patch
164e0b
Patch8: BZ-1406418-cleanup-temporary-files-in-var-tmp-on-exit.patch
164e0b
Patch9: BZ-1404239-fix-update-for-same-nevra.patch
164e0b
Patch10: BZ-1125437-allow-xz-and-bz2-for-xml-files.patch
164e0b
Patch11: BZ-1227782-modifyrepo-fix-already-compressed-input.patch
164e0b
Patch12: BZ-1287685-modifyrepo-handle-empty-file-lzma.patch
164e0b
Patch13: BZ-1287714-modifyrepo-docs-remove-compat.patch
164e0b
URL: http://createrepo.baseurl.org/
164e0b
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
164e0b
BuildArchitectures: noarch
164e0b
Requires: python >= 2.1, rpm-python, rpm >= 4.1.1, libxml2-python
164e0b
Requires: yum-metadata-parser, yum >= 3.4.3-4, python-deltarpm, deltarpm, pyliblzma
164e0b
BuildRequires: python
164e0b
164e0b
%description
164e0b
This utility will generate a common metadata repository from a directory of rpm
164e0b
packages.
164e0b
164e0b
%prep
164e0b
%setup -q
164e0b
%patch0 -p1
164e0b
%patch1 -p0
164e0b
%patch2 -p1
164e0b
%patch3 -p1
164e0b
%patch4 -p1
164e0b
%patch5 -p1
164e0b
%patch6 -p1
164e0b
%patch7 -p1
164e0b
%patch8 -p1
164e0b
%patch9 -p1
164e0b
%patch10 -p1
164e0b
%patch11 -p1
164e0b
%patch12 -p1
164e0b
%patch13 -p1
164e0b
164e0b
164e0b
%build
164e0b
164e0b
%install
164e0b
rm -rf $RPM_BUILD_ROOT
164e0b
make DESTDIR=$RPM_BUILD_ROOT sysconfdir=%{_sysconfdir} install
164e0b
164e0b
%clean
164e0b
rm -rf $RPM_BUILD_ROOT
164e0b
164e0b
164e0b
%files
164e0b
%defattr(-, root, root,-)
164e0b
%doc ChangeLog README COPYING COPYING.lib
164e0b
%(dirname %{compdir})
164e0b
%{_datadir}/%{name}/
164e0b
%{_bindir}/createrepo
164e0b
%{_bindir}/modifyrepo
164e0b
%{_bindir}/mergerepo
164e0b
%{_mandir}/*/*
164e0b
%{python_sitelib}/createrepo
164e0b
164e0b
%changelog
164e0b
* Fri Mar 24 2017 Valentina Mukhamedzhanova <vmukhame@redhat.com> - 0.9.9-28
164e0b
- createrepo: allow xz and bz2 for xml files.
164e0b
- Resolves: bug#1125437
164e0b
- modifyrepo: fix handling of already compressed input.
164e0b
- Resolves: bug#1227782
164e0b
- modifyrepo: handle empty file with LZMA.
164e0b
- Resolves: bug#1287685
164e0b
- modifyrepo: docs: remove compat compress type.
164e0b
- Resolves: bug#1287714
164e0b
164e0b
* Thu Mar 02 2017 Valentina Mukhamedzhanova <vmukhame@redhat.com> - 0.9.9-27
164e0b
- Fix temporary files cleanup.
164e0b
- Resolves: bug#1406418
164e0b
- Fix --update for pkgs with same nevra.
164e0b
- Resolves: bug#1404239
164e0b
164e0b
* Mon Feb 29 2016 Valentina Mukhamedzhanova <vmukhame@redhat.com> - 0.9.9-26
164e0b
- Make sure filename doesn't already contain a checksum.
164e0b
- Resolves: bug#1270784
164e0b
- Catch IOErrors when loading pkglist.
164e0b
- Resolves: bug#1083182
164e0b
- Add missing options to the manpage.
164e0b
- Resolves: bug#1285761
164e0b
164e0b
* Wed Dec 10 2015 Valentina Mukhamedzhanova <vmukhame@redhat.com> - 0.9.9-25
164e0b
- mergerepo: fix getattr() crash.
164e0b
- Related: bug#1178763
164e0b
164e0b
* Tue Dec 08 2015 Valentina Mukhamedzhanova <vmukhame@redhat.com> - 0.9.9-24
164e0b
- mergerepo: merge package versions from multiple repos.
164e0b
- Related: bug#1178763
164e0b
- Close lock file before unlink().
164e0b
- Related: bug#1256216
164e0b
164e0b
* Thu Jan 16 2014 Valentina Mukhamedzhanova <vmukhame@redhat.com> - 0.9.9-23
164e0b
- Make sure the "packages" attribute is always correct.
164e0b
- Resolves: bug#1022028
164e0b
164e0b
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 0.9.9-22
164e0b
- Mass rebuild 2013-12-27
164e0b
164e0b
* Wed Apr 17 2013 Zdenek Pavlas <zpavlas@redhat.com> - 0.9.9-21
164e0b
- update to latest HEAD
164e0b
- don't BuildRequire bash-completion in rhel
164e0b
- Fail for bad compress-type options to modifyrepo, like createrepo. BZ 886589
164e0b
- Fix options documentation. BZ 892657.
164e0b
- modifyrepo: fix --compress option bug. BZ 950724
164e0b
- modifyrepo: add --checksum and --{unique,simple}-md-filenames options
164e0b
164e0b
* Thu Mar 28 2013 Zdenek Pavlas <zpavlas@redhat.com> - 0.9.9-20
164e0b
- package also %{compdir}'s parent
164e0b
164e0b
* Wed Mar 20 2013 Zdenek Pavlas <zpavlas@redhat.com> - 0.9.9-19
164e0b
- add BuildRequires: bash-completion
164e0b
164e0b
* Wed Mar 20 2013 Zdenek Pavlas <zpavlas@redhat.com> - 0.9.9-18
164e0b
- add bash-completion aliases, use pkg-config.
164e0b
164e0b
* Tue Mar 19 2013 Zdenek Pavlas <zpavlas@redhat.com> - 0.9.9-17
164e0b
- move bash-completion scripts to /usr/share/  BZ 923001
164e0b
164e0b
* Wed Mar  6 2013 Zdenek Pavlas <zpavlas at redhat.com> - 0.9.9-16
164e0b
- update to latest HEAD
164e0b
- turn off stdout buffering in worker to prevent a deadlock
164e0b
- modifyrepo: use integer timestamps
164e0b
164e0b
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.9-15
164e0b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
164e0b
164e0b
* Fri Dec 21 2012 Zdenek Pavlas <zpavlas at redhat.com> - 0.9.9-14
164e0b
- update to latest HEAD
164e0b
- Fix the deadlock issue.  BZ 856363
164e0b
- Manually set the permmissions for tempfile created cachefiles. BZ 833350
164e0b
- modifyrepo: use available compression only.  BZ 865845
164e0b
- No baseurl means no baseurl.  BZ 875029
164e0b
- Change the compress-type for modifyrepo to .gz for compat. BZ 874682.
164e0b
- fix the --skip-symlinks option
164e0b
- no repomd.xml && --checkts: skip .rpm timestamp checking.  BZ 877301
164e0b
- new worker piping code (no tempfiles, should be faster)
164e0b
164e0b
* Thu Sep 13 2012 James Antill <james at fedoraproject.org> - 0.9.9-13
164e0b
- update to latest head
164e0b
- Fix for workers that output a lot.
164e0b
164e0b
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.9-12
164e0b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
164e0b
164e0b
* Thu Feb 16 2012 James Antill <james at fedoraproject.org> - 0.9.9-11
164e0b
- update to latest head
164e0b
- fix for lots of workers and not many rpms.
164e0b
164e0b
* Thu Jan  5 2012 Seth Vidal <skvidal at fedoraproject.org> - 0.9.9-10
164e0b
- update to latest head
164e0b
- fix for generating repos for rhel5 on fedora
164e0b
164e0b
* Fri Oct 28 2011 Seth Vidal <skvidal at fedoraproject.org> - 0.9.9-9
164e0b
- 3rd time is the charm
164e0b
- fix it so prestodelta's get made with the right name and don't traceback
164e0b
164e0b
* Wed Oct 26 2011 Seth Vidal <skvidal at fedoraproject.org> - 0.9.9-8
164e0b
- change how compressOpen() defaults so mash doesn't break
164e0b
- add requires for pyliblzma
164e0b
164e0b
* Mon Oct 24 2011 Seth Vidal <skvidal at fedoraproject.org> - 0.9.9-7
164e0b
- latest upstream
164e0b
- --compress-type among other deals.
164e0b
164e0b
* Fri Jul 29 2011 Seth Vidal <skvidal at fedoraproject.org> - 0.9.9-6
164e0b
- latest upstream
164e0b
- fixes bugs: 713747, 581632, 581628
164e0b
164e0b
* Wed Jul 20 2011 Seth Vidal <skvidal at fedoraproject.org> - 0.9.9-5
164e0b
- new patch to fix us breaking certain pungi configs
164e0b
164e0b
* Tue Jul 19 2011 Seth Vidal <skvidal at fedoraproject.org> - 0.9.9-4
164e0b
- latest upstream head
164e0b
- change --update to use sqlite for old repodata
164e0b
164e0b
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.9-3
164e0b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
164e0b
164e0b
* Thu Jan 27 2011 Seth Vidal <skvidal at fedoraproject.org> - 0.9.9-2
164e0b
- make sure when a worker exits with a non-zero returncode we exit, too.
164e0b
164e0b
* Wed Jan 26 2011 Seth Vidal <skvidal at fedoraproject.org> - 0.9.9-1
164e0b
- 0.9.9
164e0b
- change yum requires to 3.2.29
164e0b
164e0b
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.9.8-5
164e0b
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
164e0b
164e0b
* Thu Jan  7 2010 Seth Vidal <skvidal at fedoraproject.org> - 0.9.8-4
164e0b
- latest head with fixes for --update w/o --skipstat
164e0b
164e0b
164e0b
* Tue Dec 22 2009 Seth Vidal <skvidal at fedoraproject.org> - 0.9.8-3
164e0b
- patch to latest HEAD from upstream
164e0b
164e0b
* Thu Sep  3 2009 Seth Vidal <skvidal at fedoraproject.org> - 0.9.8-2
164e0b
- add drpm patch from https://bugzilla.redhat.com/show_bug.cgi?id=518658
164e0b
164e0b
164e0b
* Fri Aug 28 2009 Seth Vidal <skvidal at fedoraproject.org> - 0.9.8-1
164e0b
- bump yum requires version
164e0b
- remove head patch
164e0b
- bump to 0.9.8 upstream
164e0b
164e0b
* Tue Aug 18 2009 Seth Vidal <skvidal at fedoraproject.org> - 0.9.7-15
164e0b
- update HEAD patch to include fix from mbonnet for typo'd PRAGMA in the filelists setup
164e0b
164e0b
* Tue Aug  4 2009 Seth Vidal <skvidal at fedoraproject.org> - 0.9.7-14
164e0b
- minor fix for rh bug 512610
164e0b
164e0b
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.7-13
164e0b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
164e0b
164e0b
* Wed Jun 17 2009 Seth Vidal <skvidal at fedoraproject.org> - 0.9.7-11
164e0b
- more profile output for deltarpms
164e0b
164e0b
* Tue Jun 16 2009 Seth Vidal <skvidal at fedoraproject.org> - 0.9.7-8
164e0b
- more patches from head
164e0b
- speed up generating prestodelta, massively
164e0b
164e0b
* Tue May  5 2009 Seth Vidal <skvidal at fedoraproject.org>
164e0b
- more head fixes - theoretically solving ALL of the sha1/sha silliness
164e0b
164e0b
* Wed Apr 15 2009 Seth Vidal <skvidal at fedoraproject.org> - 0.9.7-2
164e0b
- fix 495845 and other presto issues
164e0b
164e0b
* Tue Mar 24 2009 Seth Vidal <skvidal at fedoraproject.org> - 0.9.7-1
164e0b
- 0.9.7
164e0b
- require yum 3.2.22
164e0b
164e0b
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.6-12
164e0b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
164e0b
164e0b
* Tue Feb 10 2009 Seth Vidal <skvidal at fedoraproject.org> - 0.9.6-11
164e0b
- change the order of deltarpms
164e0b
164e0b
* Wed Feb  4 2009 Seth Vidal <skvidal at fedoraproject.org> - 0.9.6-10
164e0b
- working mergerepo again
164e0b
164e0b
* Tue Feb  3 2009 Seth Vidal <skvidal at fedoraproject.org> - 0.9.6-9
164e0b
- fix normal createrepo'ing w/o the presto patches :(
164e0b
164e0b
* Mon Feb  2 2009 Seth Vidal <skvidal at fedoraproject.org> - 0.9.6-7
164e0b
- add deltarpm requirement for making presto metadata
164e0b
164e0b
* Tue Jan 27 2009 Seth Vidal <skvidal at fedoraproject.org> - 0.9.6-6
164e0b
- one more patch set to make sure modifyrepo works with sha256's, too
164e0b
164e0b
* Mon Jan 26 2009 Seth Vidal <skvidal at fedoraproject.org> - 0.9.6-5
164e0b
- add patch from upstream head for sha256 support
164e0b
164e0b
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.9.6-4
164e0b
- Rebuild for Python 2.6
164e0b
164e0b
* Tue Oct 28 2008 Seth Vidal <skvidal at fedoraproject.org> - 0.9.6-1
164e0b
- 0.9.6-1
164e0b
- add mergerepo
164e0b
164e0b
* Thu Oct  9 2008 James Antill <james@fedoraproject.org> - 0.9.5-5
164e0b
- Do atomic updates to the cachedir, for parallel runs
164e0b
- Fix the patch
164e0b
164e0b
* Fri Feb 22 2008 Seth Vidal <skvidal at fedoraproject.org> - 0.9.5-2
164e0b
- patch for the mistake in the raise for an empty pkgid
164e0b
164e0b
* Tue Feb 19 2008 Seth Vidal <skvidal at fedoraproject.org> - 0.9.5-1
164e0b
- 0.9.5
164e0b
- ten-changelog-limit patch by default in fedora
164e0b
164e0b
* Thu Jan 31 2008 Seth Vidal <skvidal at fedoraproject.org> - 0.9.4-3
164e0b
- skip if no old metadata and --update was called.
164e0b
164e0b
* Wed Jan 30 2008 Seth Vidal <skvidal at fedoraproject.org> - 0.9.4-1
164e0b
- 0.9.4
164e0b
164e0b
* Tue Jan 22 2008 Seth Vidal <skvidal at fedoraproject.org> - 0.9.3
164e0b
- 0.9.3
164e0b
164e0b
* Thu Jan 17 2008 Seth Vidal <skvidal at fedoraproject.org> - 0.9.2-1
164e0b
- remove all other patches - 0.9.2 
164e0b
164e0b
* Tue Jan 15 2008 Seth Vidal <skvidal at fedoraproject.org> 0.9.1-3
164e0b
- more patches - almost 0.9.2 but not quite
164e0b
164e0b
* Thu Jan 10 2008 Seth Vidal <skvidal at fedoraproject.org> 0.9.1-2
164e0b
- patch to fix bug until 0.9.2
164e0b
164e0b
* Wed Jan  9 2008 Seth Vidal <skvidal at fedoraproject.org> 0.9.1-1
164e0b
- 0.9.1 
164e0b
164e0b
* Mon Jan  7 2008 Seth Vidal <skvidal at fedoraproject.org> 0.9-1
164e0b
- 0.9
164e0b
- add yum dep
164e0b
164e0b
164e0b
* Mon Nov 26 2007 Luke Macken <lmacken@redhat.com> - 0.4.11-1
164e0b
- Update to 0.4.11
164e0b
- Include COPYING file and change License to GPLv2
164e0b
164e0b
* Thu Jun 07 2007 Paul Nasrat <pnasrat@redhat.com> - 0.4.10-1
164e0b
- Update to 0.4.10
164e0b
164e0b
* Wed May 16 2007 Paul Nasrat <pnasrat@redhat.com> - 0.4.9-1
164e0b
- Update to 0.4.9
164e0b
164e0b
* Tue May 15 2007 Jeremy Katz <katzj@redhat.com> - 0.4.8-4
164e0b
- fix the last patch
164e0b
164e0b
* Tue May 15 2007 Jeremy Katz <katzj@redhat.com> - 0.4.8-3
164e0b
- use dbversion given by yum-metadata-parser instead of hardcoded 
164e0b
  value (#239938)
164e0b
164e0b
* Wed Mar 14 2007 Paul Nasrat <pnasrat@redhat.com> - 0.4.8-2
164e0b
- Remove requires (#227680)
164e0b
164e0b
* Wed Feb 21 2007 Jeremy Katz <katzj@redhat.com> - 0.4.8-1
164e0b
- update to 0.4.8
164e0b
164e0b
* Mon Feb 12 2007 Jesse Keating <jkeating@redhat.com> - 0.4.7-3
164e0b
- Require yum-metadata-parser.
164e0b
164e0b
* Thu Feb  8 2007 Jeremy Katz <katzj@redhat.com> - 0.4.7-2
164e0b
- add modifyrepo to the file list
164e0b
164e0b
* Thu Feb  8 2007 Jeremy Katz <katzj@redhat.com> - 0.4.7-1
164e0b
- update to 0.4.7
164e0b
164e0b
* Mon Feb 05 2007 Paul Nasrat <pnasrat@redhat.com> - 0.4.6-2
164e0b
- Packaging guidelines (#225661)
164e0b
164e0b
* Thu Nov 09 2006 Paul Nasrat <pnasrat@redhat.com> - 0.4.6-1
164e0b
- Upgrade to latest release
164e0b
- Fix requires (#214388)
164e0b
164e0b
* Wed Jul 19 2006 Paul Nasrat <pnasrat@redhat.com> - 0.4.4-2
164e0b
- Fixup relative paths (#199228)
164e0b
164e0b
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.4.4-1.1
164e0b
- rebuild
164e0b
164e0b
* Mon Apr 17 2006 Paul Nasrat <pnasrat@redhat.com> - 0.4.4-1
164e0b
- Update to latest upstream
164e0b
164e0b
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
164e0b
- rebuilt
164e0b
164e0b
* Fri Nov 18 2005 Paul Nasrat <pnasrat@redhat.com> - 0.4.3-5
164e0b
- Fix split with normalised directories
164e0b
164e0b
* Fri Nov 18 2005 Paul Nasrat <pnasrat@redhat.com> - 0.4.3-4
164e0b
- Another typo fix
164e0b
- Normalise directories
164e0b
164e0b
* Thu Nov 17 2005 Paul Nasrat <pnasrat@redhat.com> - 0.4.3-3.1
164e0b
- really fix them 
164e0b
164e0b
* Thu Nov 17 2005 Paul Nasrat <pnasrat@redhat.com> - 0.4.3-3
164e0b
- Fix regressions for absolute/relative paths
164e0b
164e0b
* Sun Nov 13 2005 Paul Nasrat <pnasrat@redhat.com> - 0.4.3-2
164e0b
- Sync upto HEAD 
164e0b
- Split media support
164e0b
164e0b
* Thu Jul 14 2005 Paul Nasrat <pnasrat@redhat.com> - 0.4.3-1
164e0b
- New upstream version 0.4.3 (cachedir support)
164e0b
164e0b
* Tue Jan 18 2005 Jeremy Katz <katzj@redhat.com> - 0.4.2-2
164e0b
- add the manpage
164e0b
164e0b
* Tue Jan 18 2005 Jeremy Katz <katzj@redhat.com> - 0.4.2-1
164e0b
- 0.4.2
164e0b
164e0b
* Thu Oct 21 2004 Paul Nasrat <pnasrat@redhat.com>
164e0b
- 0.4.1, fixes #136613
164e0b
- matched ghosts not being added into primary.xml files
164e0b
164e0b
* Mon Oct 18 2004 Bill Nottingham <notting@redhat.com>
164e0b
- 0.4.0, fixes #134776
164e0b
164e0b
* Thu Sep 30 2004 Paul Nasrat <pnasrat@redhat.com>
164e0b
- Rebuild new upstream release - 0.3.9
164e0b
164e0b
* Thu Sep 30 2004 Seth Vidal <skvidal@phy.duke.edu>
164e0b
- 0.3.9
164e0b
- fix for groups checksum creation
164e0b
164e0b
* Sat Sep 11 2004 Seth Vidal <skvidal@phy.duke.edu>
164e0b
- 0.3.8
164e0b
164e0b
* Wed Sep  1 2004 Seth Vidal <skvidal@phy.duke.edu>
164e0b
- 0.3.7
164e0b
164e0b
* Fri Jul 23 2004 Seth Vidal <skvidal@phy.duke.edu>
164e0b
- make filelists right <sigh>
164e0b
164e0b
164e0b
* Fri Jul 23 2004 Seth Vidal <skvidal@phy.duke.edu>
164e0b
- fix for broken filelists
164e0b
164e0b
* Mon Jul 19 2004 Seth Vidal <skvidal@phy.duke.edu>
164e0b
- re-enable groups
164e0b
- update num to 0.3.4
164e0b
164e0b
* Tue Jun  8 2004 Seth Vidal <skvidal@phy.duke.edu>
164e0b
- update to the format
164e0b
- versioned deps
164e0b
- package counts
164e0b
- uncompressed checksum in repomd.xml
164e0b
164e0b
164e0b
* Fri Apr 16 2004 Seth Vidal <skvidal@phy.duke.edu>
164e0b
- 0.3.2 - small addition of -p flag
164e0b
164e0b
* Sun Jan 18 2004 Seth Vidal <skvidal@phy.duke.edu>
164e0b
- I'm an idiot
164e0b
164e0b
* Sun Jan 18 2004 Seth Vidal <skvidal@phy.duke.edu>
164e0b
- 0.3
164e0b
164e0b
* Tue Jan 13 2004 Seth Vidal <skvidal@phy.duke.edu>
164e0b
- 0.2 - 
164e0b
164e0b
* Sat Jan 10 2004 Seth Vidal <skvidal@phy.duke.edu>
164e0b
- first packaging
164e0b