3.02 release

This commit is contained in:
Dennis Gilmore 2013-10-31 19:05:59 -05:00
parent 23977a90de
commit e7d19b70ee
3 changed files with 6 additions and 4 deletions

View File

@ -1,7 +1,7 @@
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
Name: pungi
Version: 3.01
Version: 3.02
Release: 1%{?dist}
Summary: Distribution compose tool
@ -9,7 +9,6 @@ Group: Development/Tools
License: GPLv2
URL: https://fedorahosted.org/pungi
Source0: https://fedorahosted.org/pungi/attachment/wiki/%{version}/%{name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: createrepo >= 0.4.11
Requires: yum => 3.4.3-28
Requires: lorax
@ -57,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT
/var/cache/pungi
%changelog
* Thu Oct 31 2013 Dennis Gilmore <dennis@ausil.us> - 3.02-1
- fix typo in call to __version__ (Dennis Gilmore)
* Sun Oct 27 2013 Daniel Mach <dmach@redhat.com> - 3.01-1
- Add 'make log' command to print changelog for spec. (Daniel Mach)
- Implement %prepopulate config section as an additional package input. (Daniel Mach)

View File

@ -2,7 +2,7 @@ from distutils.core import setup
import glob
setup(name='pungi',
version='3.01', # make sure it matches pypungi.__version__
version='3.02', # make sure it matches pypungi.__version__
description='Distribution compose tool',
author='Dennis Gilmore',
author_email='dgilmore@fedoraproject.org',

View File

@ -15,7 +15,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
__version__ = "3.01"
__version__ = "3.02"
import yum