Blob Blame History Raw
%global module_name gitifyhg

Name:           gitifyhg
Version:        0.8.4
Release:        1%{?dist}
Summary:        Use git as a client for Mercurial repos
License:        GPLv3+
URL:            https://github.com/buchuki/gitifyhg
Source0:        http://pypi.python.org/packages/source/g/%{name}/%{name}-%{version}.tar.gz
BuildArch:      noarch
BuildRequires:  python2-devel
BuildRequires:  python-setuptools

Requires:       git
Requires:       mercurial
Requires:       python-path

%description
This git remote allows you to do local development in a git repository and push 
changes to an upstream mercurial repository. It does this seamlessly and allows 
pushing and pulling to named branches in the upstream repository.

%prep
%setup -q
rm -r *.egg-info

%build
%{__python} setup.py build

%install
%{__python} setup.py install --skip-build --root %{buildroot}

%files
%doc README.rst LICENSE.txt
%{_bindir}/git-remote-gitifyhg
%{python_sitelib}/%{module_name}
%{python_sitelib}/%{module_name}*.egg-info

%changelog
* Mon Nov 18 2013 Dan Callaghan <dcallagh@redhat.com> - 0.8.4-1
- upstream bug fix release 0.8.4

* Tue Oct 08 2013 Dan Callaghan <dcallagh@redhat.com> - 0.8.3-1
- upstream bug fix release 0.8.3

* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild

* Thu Jun 06 2013 Dan Callaghan <dcallagh@redhat.com> - 0.8.2-2
- fix missing license

* Fri May 31 2013 Dan Callaghan <dcallagh@redhat.com> - 0.8.2-1
- initial version