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