Skip to content

Commit

Permalink
Fix version in the spec and the setup.py
Browse files Browse the repository at this point in the history
And fix the download url in the spec file
  • Loading branch information
pypingou committed Jun 18, 2012
1 parent 24bbb89 commit 605314d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions pypi2spec.spec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Name: pypi2spec
Version: 0.2.0
Version: 0.2.2
Release: 1%{?dist}
Summary: Python script to generate spec file for pypi projects

License: GPLv3+
URL: http://github.com/pypingou/pypi2spec
Source0: %{name}-%{version}.tar.gz
Source0: http://pypi.python.org/packages/source/p/%{name}/%{name}-%{version}.tar.gz

BuildArch: noarch
BuildRequires: python-devel,python-setuptools
Expand Down Expand Up @@ -40,6 +40,10 @@ chmod -x %{buildroot}/%{python_sitelib}/pypi2spec/specfile.tpl
%{_bindir}/%{name}

%changelog
* Mon Jun 18 2012 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.2.2-1
- Roll up a 0.2.2 release with the correct download url in the setup.py
- Fix the Source0 url

* Mon Jun 18 2012 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.2.0-1
- Roll up a 0.2.0 release which includes a number of fixes from Ralph

Expand Down
2 changes: 1 addition & 1 deletion pypi2spec/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
logging.basicConfig()
LOG = logging.getLogger('Pypi2spec')
#LOG.setLevel('DEBUG')
__version__ = '0.2.0'
__version__ = '0.2.2'


def create_conf(configfile):
Expand Down

0 comments on commit 605314d

Please sign in to comment.