689774
# It's not strictly necessary to conditionalize this but it's a reminder of
689774
# when it can go away
689774
%if 0%{?rhel} && 0%{?rhel} < 6
689774
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
689774
%endif
689774
689774
# All package versioning is found here:
689774
# the actual version is composed from these below, including leading 0 for release candidates
689774
#   bzrmajor:  main bzr version
689774
#   Version: bzr version, add subrelease version here
689774
#   bzrrc: release candidate version, if any, line starts with % for rc, # for stable releas (no %).
689774
#   release: rpm subrelease (0.N for rc candidates, N for stable releases)
689774
%global bzrmajor 2.5
689774
%global bzrminor .1
689774
#global bzrrc b6
15ecb4
%global release 14
689774
689774
Name:           bzr
689774
Version:        %{bzrmajor}%{?bzrminor}
689774
Release:        %{release}%{?bzrrc:.}%{?bzrrc}%{?dist}
689774
Summary:        Friendly distributed version control system
689774
689774
Group:          Development/Tools
689774
License:        GPLv2+
689774
URL:            http://www.bazaar-vcs.org/
689774
Source0:        https://launchpad.net/%{name}/%{bzrmajor}/%{version}%{?bzrrc}/+download/%{name}-%{version}%{?bzrrc}.tar.gz
689774
Source1:        https://launchpad.net/%{name}/%{bzrmajor}/%{version}%{?bzrrc}/+download/%{name}-%{version}%{?bzrrc}.tar.gz.sig
689774
Source2:        bzr-icon-64.png
689774
# Fixed upstream here: https://bugs.launchpad.net/bzr/+bug/1182124
689774
Patch0:         bzr-cve2013-2099.patch
689774
# Fix for gpg signing when no gpg agent is present:
689774
# https://bugs.launchpad.net/ubuntu/+source/bzr/+bug/1014570
689774
Patch1: bzr-gpg-no-agent-error.patch
689774
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
689774
689774
BuildRequires:  python2-devel zlib-devel
689774
# For building documents
689774
BuildRequires:  python-sphinx
689774
BuildRequires:  gettext
689774
BuildRequires: Cython
689774
%if 0%{?fedora} || (0%{?rhel} && 0%{?rhel} <= 6)
689774
Requires:   python-paramiko
689774
%endif
689774
# Workaround Bug #230223 otherwise this would be a soft dependency
689774
Requires:   python-pycurl
689774
# ElementTree is part of python2.5 so only needed for EL-5
689774
%if 0%{?rhel} && 0%{?rhel} <= 5
689774
BuildRequires:   python-elementtree
689774
Requires:   python-elementtree
689774
%endif
689774
689774
%description
689774
Bazaar is a distributed revision control system that is powerful, friendly,
689774
and scalable.  It is the successor of Baz-1.x which, in turn, was
689774
a user-friendly reimplementation of GNU Arch.
689774
689774
%package doc
689774
Summary:        Documentation for Bazaar
689774
Group:          Documentation
689774
%if 0%{?fedora} > 9
689774
BuildArch:      noarch
689774
%endif
689774
Requires:       %{name} = %{version}-%{release}
689774
689774
%description doc
689774
This package contains the documentation for the Bazaar version control system.
689774
689774
%prep
689774
%setup -q -n %{name}-%{version}%{?bzrrc}
689774
%patch0 -p1
689774
%patch1 -p1
689774
689774
689774
sed -i '1{/#![[:space:]]*\/usr\/bin\/\(python\|env\)/d}' bzrlib/_patiencediff_py.py
689774
sed -i '1{/#![[:space:]]*\/usr\/bin\/\(python\|env\)/d}' bzrlib/weave.py
689774
689774
# Remove Cython generated .c files
689774
find . -name '*_pyx.c' -exec rm \{\} \;
689774
689774
%build
689774
# RHEL and Fedora < 19 have a distutils bug that doesn't add this
689774
# automatically: https://bugzilla.redhat.com/show_bug.cgi?id=849994
689774
%if (0%{?fedora} && 0%{?fedora} < 19) || (0%{?rhel} && 0%{?rhel} < 8)
689774
export RPM_OPT_FLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
689774
%endif
689774
CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
689774
689774
chmod a-x contrib/bash/bzrbashprompt.sh
689774
689774
# Build documents
689774
make docs-sphinx
689774
689774
%install
689774
rm -rf $RPM_BUILD_ROOT
689774
%{__python} setup.py install --skip-build --install-data %{_datadir} --root $RPM_BUILD_ROOT
689774
chmod -R a+rX contrib
689774
chmod 0644 contrib/debian/init.d
689774
chmod 0644 contrib/bzr_ssh_path_limiter
689774
chmod 0644 contrib/bzr_access
689774
chmod 0755 $RPM_BUILD_ROOT%{python_sitearch}/bzrlib/*.so
689774
689774
install -d $RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d/
689774
install -m 0644 contrib/bash/bzr $RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d/
689774
rm contrib/bash/bzr
689774
689774
# This is included in %doc, remove redundancy here
689774
#rm -rf $RPM_BUILD_ROOT%{python_sitearch}/bzrlib/doc/
689774
689774
# Use independently packaged python-elementtree instead
689774
rm -rf $RPM_BUILD_ROOT%{python_sitearch}/bzrlib/util/elementtree/
689774
689774
# Install documents
689774
install -d $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}-doc-%{version}/
689774
install -d $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}-doc-%{version}/pdf
689774
cd doc
689774
for dir in *; do
689774
    if [ -d $dir/_build/html ]; then
689774
        cp -R $dir/_build/html $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}-doc-%{version}/$dir
689774
        rm -f $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}-doc-%{version}/$dir/.buildinfo 
689774
        rm -f $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}-doc-%{version}/$dir/_static/$dir/Makefile
689774
        find $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}-doc-%{version}/$dir -name '*.pdf' | while read pdf; do
689774
            ln $pdf $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}-doc-%{version}/pdf/
689774
        done
689774
    fi
689774
done
689774
cd ..
689774
689774
install -d $RPM_BUILD_ROOT%{_datadir}/pixmaps
689774
install -m 0644 %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/pixmaps/bzr.png
689774
689774
%find_lang bzr
689774
689774
%clean
689774
rm -rf $RPM_BUILD_ROOT
689774
689774
689774
%files -f bzr.lang
689774
%defattr(-,root,root,-)
689774
%doc NEWS README TODO COPYING.txt contrib/
689774
%{_bindir}/bzr
689774
%{_mandir}/man1/*
689774
%{python_sitearch}/bzrlib/
689774
%{_sysconfdir}/bash_completion.d/
689774
%{_datadir}/pixmaps/bzr.png
689774
%if 0%{?fedora} || 0%{?rhel} > 5
689774
%{python_sitearch}/*.egg-info
689774
%endif
689774
689774
%files doc
689774
%defattr(-,root,root,-)
689774
%doc %{_defaultdocdir}/%{name}-doc-%{version}/*
689774
689774
%changelog
15ecb4
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2.5.1-14
15ecb4
- Mass rebuild 2014-01-24
15ecb4
15ecb4
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.5.1-13
15ecb4
- Mass rebuild 2013-12-27
15ecb4
689774
* Tue May 28 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 2.5.1-12
689774
- Patch for failure to gpg sign commits with no gpg-agent 
689774
  https://bugzilla.redhat.com/show_bug.cgi?id=905087
689774
689774
* Tue May 28 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 2.5.1-11
689774
- BuildRequires Cython so that the C extensions are built from their original sources.
689774
689774
* Tue May 28 2013 Ondrej Oprala 
689774
- Conditionally add -fno-strict-aliasing to CFLAGS
689774
689774
* Tue May 28 2013 Ondrej Oprala 
689774
- Add gettext to BuildRequires
689774
689774
* Mon May 27 2013 Ondrej Oprala <ooprala@redhat.com> - 2.5.1-8
689774
- Fix conditional include of python-paramiko
689774
689774
* Fri May 24 2013 Ondrej Oprala <ooprala@redhat.com> - 2.5.1-7
689774
- Turn off strict aliasing in CFLAGS
689774
689774
* Fri May 24 2013 Ondrej Oprala <ooprala@redhat.com> - 2.5.1-6
689774
- Add condition not to include python-paramiko in RHEL7 and above
689774
689774
* Fri May 24 2013 Ondrej Oprala <ooprala@redhat.com> - 2.5.1-5
689774
- Fix unpackaged files error
689774
689774
* Thu May 23 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 2.5.1-4
689774
- Patch for CVE-2013-2099
689774
- Trim changelog
689774
689774
* Thu Apr 25 2013 Ondrej Oprala 
689774
- Turn off strict aliasing in CFLAGS
689774
689774
* Thu Apr 25 2013 Ondrej Oprala 
689774
- Add condition not to include python-paramiko in RHEL7 and above
689774
689774
* Thu Apr 25 2013 Ondrej Oprala 
689774
- Fix unpackaged files error
689774
689774
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.1-3
689774
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
689774
689774
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.1-2
689774
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
689774
689774
* Wed May 30 2012 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.5.1-1
689774
- Upstream 2.5.1 bugfix release
689774
689774
* Fri Feb 24 2012 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.5.0-1
689774
- Upstream 2.5.0 stable release
689774
689774
* Thu Feb 23 2012 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.5-0.3.b5
689774
- Upstream 2.5b6 release
689774
689774
* Sun Feb  5 2012 Michel Salim <salimma@fedoraproject.org> - 2.5-0.2.b5
689774
- Fix problem in generating documentation
689774
689774
* Tue Jan 17 2012 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.5-0.1.b5
689774
- 2.5b5 final beta release of bzr 2.5
689774
689774
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.2-2
689774
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
689774
689774
* Thu Nov 03 2011 Henrik Nordstrom <henrik@henriknordstorm.net> - 2.4.2-1
689774
- Upstream 2.4.2 bugfix release
689774
689774
* Fri Sep 09 2011 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.4.1-1
689774
- Upstream 2.4.1 bugfix release
689774
689774
* Fri Aug 12 2011 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.4.0-1
689774
- Upstream 2.4.0 release
689774
689774
* Sun Jul 31 2011 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.4-0.5.b5
689774
- Rebuilt for dependency changes
689774
689774
* Tue Jul 12 2011 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.4-0.4.b5
689774
- Upstream 2.4b5 release
689774
689774
* Tue May 31 2011 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.4-0.3.b3
689774
- Upstream 2.4b3 release
689774
689774
* Thu Apr 28 2011 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.4-0.2.b2
689774
- Upstream 2.4b2 release
689774
689774
* Sun Mar 20 2011 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.4-0.1.b1
689774
- Upstream 2.4b1 release
689774
689774
* Sun Mar 20 2011 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.3.1-1
689774
- Upstream 2.3.1 bugfix release
689774
689774
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.0-2
689774
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
689774
689774
* Fri Feb 04 2011 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.3.0-1
689774
- Upstream 2.3.0 stable release
689774
689774
* Wed Jan 26 2011 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.3-0.4.b5
689774
- Upstream 2.3b5 release
689774
689774
* Thu Dec 02 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.3-0.3.b4
689774
- Upstream 2.3b4 release
689774
689774
* Sat Nov 06 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.3-0.2.b3
689774
- Upstream 2.3b3 release
689774
689774
* Fri Oct 29 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.3-0.1.b2
689774
- Upstream 2.3b2 release
689774
689774
* Wed Sep 29 2010 jkeating - 2.2.1-3
689774
- Rebuilt for gcc bug 634757
689774
689774
* Sun Sep 21 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.2.1-2
689774
- Backport bzr.dev rev 5439 change fixing lp: branch references
689774
  (Toshio Kuratomi)
689774
689774
* Sun Sep 21 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.2.1-1
689774
- Upstream 2.2.1 bugfix release
689774
689774
* Sat Aug 21 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.2.0-1
689774
- Upstream 2.2.0 release
689774
689774
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 2.2-0.10.b4
689774
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
689774
689774
* Fri Jul 16 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.2-0.9.b4
689774
- Upstream 2.2b4 release
689774
689774
* Mon May 31 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.2-0.8.b3
689774
- Upstream 2.2b3 release
689774
689774
* Mon May 31 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 2.2-0.6.b1
689774
- Add an icon for bzr.  This lets the gtk and qbzr plugins share the same icon
689774
  for things like associating an image with a file type.
689774
689774
* Tue Apr 13 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 2.2-0.5.b1
689774
- Clean up rhel/fedora conditionals bz#537254
689774
689774
* Mon Apr 12 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 2.2-0.4.b1
689774
- Clean up some rpmlint warnings
689774
689774
* Mon Apr 12 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 2.2-0.3.b1
689774
- Fixes so this spec file will also build on EL-5
689774
- define => global
689774
689774
* Thu Apr 01 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.2-0.1.b1
689774
- Upstream 2.2b1 beta release
689774
689774
* Tue Mar 30 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.1.1-1
689774
- Upstream 2.1.1 bugfix release
689774
689774
* Wed Mar 03 2010 Henrik Nordstrom <henrik@henriknordstrom.net> -  2.1.0-1
689774
- Update to 2.1.0
689774
689774
* Sat Feb 06 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.1.0-0.6.rc2
689774
- Build HTML documentation and package in separate bzr-doc package
689774
  (Bug #562392, Patch by Cheese Lee)
689774
689774
* Fri Feb 05 2010 Henrik Nordstrom <henrik@henriknordstrom.net> -  2.1.0-0.5.rc2
689774
- Update to 2.1.0rc2
689774
689774
* Thu Dec 17 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.1.0-0.4.b4
689774
- Update to 2.1.0b4
689774
689774
* Wed Oct 28 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.1.0-0.1.b1
689774
- Highlights for this release include support for `bzr+ssh://host/~/homedir`
689774
  style urls, finer control over the plugin search path via extended
689774
  BZR_PLUGIN_PATH syntax, visible warnings when extension modules fail to
689774
  load, and improved error handling during unlocking.
689774
689774
* Fri Sep 25 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.0.0-1
689774
- Update to 2.0.0
689774
689774
* Thu Sep 10 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 2.0-0.1rc2
689774
- Update to 2.0rc2 with new default repository format 2a
689774
689774
* Wed Aug 26 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 1.18-1
689774
- Update to 1.18
689774
689774
* Thu Aug 20 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 1.18-0.1.rc1
689774
- Update to 1.18rc1
689774
689774
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.17-2
689774
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
689774
689774
* Mon Jul 20 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 1.17-1
689774
- Update to 1.17
689774
689774
* Mon Jul 13 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 1.17-0.1.rc1
689774
- Update to 1.17rc1
689774
689774
* Fri Jun 26 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 1.16.1-1
689774
- Update to 1.16.1
689774
689774
* Thu Jun 18 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 1.16-1
689774
- Update to 1.16
689774
689774
* Wed Jun 10 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 1.15.1-1
689774
- Update to 1.15.1
689774
689774
* Sat May 23 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 1.15-2
689774
- Update to 1.15final
689774
689774
* Sat May 16 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 1.15-0.1.rc1
689774
- Update to 1.15rc1
689774
689774
* Sat May 02 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 1.14.1-1
689774
- Update to 1.14.1
689774
689774
* Wed Apr 29 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 1.14-1
689774
- Update to 1.14
689774
689774
* Mon Apr 20 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 1.14-0.3.rc2
689774
- Update to 1.14rc2
689774
689774
* Sat Apr 11 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 1.14-0.2.rc1
689774
- Correct build dependencies
689774
689774
* Thu Apr 09 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 1.14-0.1.rc1
689774
- Update to 1.14rc1
689774
689774
* Tue Mar 24 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 1.13.1-1
689774
- Update to 1.13.1
689774
689774
* Mon Mar 16 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 1.13-1
689774
- Update to 1.13
689774
689774
* Tue Mar 10 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 1.13-0.1.rc1
689774
- Update to 1.13rc1
689774
689774
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.12-2
689774
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
689774
689774
* Fri Feb 13 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 1.12-1
689774
- Update to 1.12
689774
689774
* Tue Feb 10 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 1.12-0.1.rc1
689774
- Update to 1.12rc1
689774
689774
* Mon Jan 19 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 1.11-1
689774
- Update to 1.11
689774
689774
* Wed Dec 10 2008 Toshio Kuratomi <toshio@fedoraproject.org> - 1.10-1
689774
- Update to 1.10
689774
689774
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.9-2
689774
- Rebuild for Python 2.6
689774
689774
* Thu Nov 13 2008 Toshio Kuratomi <toshio@fedoraproject.org> - 1.9-1
689774
- Update to 1.9
689774
689774
* Thu Sep 25 2008 Toshio Kuratomi <toshio@fedoraproject.org> - 1.7-1
689774
- 1.7 Final
689774
689774
* Wed Sep 3 2008 Toshio Kuratomi <toshio@fedoraproject.org> - 1.7-0.1.rc2
689774
- 1.7rc2
689774
- Remove executable permission from a %%doc file
689774
689774
* Wed Sep 3 2008 Toshio Kuratomi <toshio@fedoraproject.org> - 1.6.1-0.1.rc2
689774
- New upstream bugfix release.
689774
689774
* Thu May 21 2008 Toshio Kuratomi <toshio@fedoraproject.org> - 1.5-2
689774
- Upload tarball.
689774
689774
* Wed May 21 2008 Toshio Kuratomi <toshio@fedoraproject.org> - 1.5-1
689774
- Update to 1.5.
689774
689774
* Thu May 15 2008 Toshio Kuratomi <toshio@fedoraproject.org> - 1.4-2
689774
- Workaround upstream Bug# 230223 by Requiring python-pycurl.
689774
689774
* Mon May 5 2008 Toshio Kuratomi <toshio@fedoraproject.org> - 1.4-1
689774
- Update to 1.4.
689774
689774
* Sun Apr 27 2008 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3.1-1
689774
- Paramiko/sftp backport from 1.4.0. bz#444325
689774
- Update to 1.3.1 final.
689774
689774
* Sat Apr 4 2008 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3.1-0.1.rc1
689774
- Update to 1.3.1rc1 to fix a bug when you have a pack based remote repo and
689774
  knit based local branch.
689774
689774
* Wed Mar 26 2008 Warren Togami <wtogami@redhat.com> - 1.3-1
689774
- Update to 1.3.
689774
689774
* Mon Feb 25 2008 Toshio Kuratomi <toshio@fedoraproject.org> - 1.2-1
689774
- Update to 1.2.
689774
689774
* Fri Feb 8 2008 Toshio Kuratomi <toshio@fedoraproject.org> - 1.1-2
689774
- Rebuild for new gcc.
689774
689774
* Mon Jan 21 2008 Toshio Kuratomi <a.badger@gmail.com> - 1.1-1
689774
- Upstream 1.1 bugfix and performance enhancement release.
689774
- Enable bash completion script from the contrib directory.
689774
689774
* Thu Dec 13 2007 Toshio Kuratomi <a.badger@gmail.com> - 1.0-1
689774
- Update to 1.0 final.
689774
689774
* Tue Dec 11 2007 Toshio Kuratomi <a.badger@gmail.com> - 1.0-0.1.rc3
689774
- Update to 1.0rc3
689774
- The new rawhide python package generates egg-info files.
689774
689774
* Fri Nov 30 2007 Toshio Kuratomi <a.badger@gmail.com> - 1.0-0.1.rc2
689774
- Update to 1.0rc2
689774
689774
* Tue Aug 28 2007 Toshio Kuratomi <a.badger@gmail.com> - 0.91-1
689774
- Update to 0.91.
689774
  + Fixes some issues with using tag-enabled branches.
689774
689774
* Tue Aug 28 2007 Toshio Kuratomi <a.badger@gmail.com> - 0.90-1
689774
- Update to 0.90
689774
689774
* Mon Aug 27 2007 Toshio Kuratomi <a.badger@gmail.com> - 0.90-0.1.rc1
689774
- Update to 0.90rc1.
689774
- 0.90 contains some pyrex code to speed things up.  bzr is now arch specific.
689774
- Update license tag.
689774
689774
* Wed Jul 25 2007 Warren Togami <wtogami@redhat.com> - 0.18-1
689774
- Update to 0.18.
689774
689774
* Tue Jun 26 2007 Warren Togami <wtogami@redhat.com>  - 0.17-2
689774
- Update to 0.17.
689774
689774
* Tue May 08 2007 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.16-1
689774
- Update to 0.16.
689774
689774
* Thu Mar 22 2007 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.15-1
689774
- Update to 0.15.
689774
- Simplify the %%files list.
689774
689774
* Tue Jan 23 2007 Toshio Kuratomi <toshio@tiki-lounge.com> - 0.14-1
689774
- Update to 0.14