3.02 release
This commit is contained in:
parent
23977a90de
commit
e7d19b70ee
@ -1,7 +1,7 @@
|
|||||||
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||||
|
|
||||||
Name: pungi
|
Name: pungi
|
||||||
Version: 3.01
|
Version: 3.02
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Distribution compose tool
|
Summary: Distribution compose tool
|
||||||
|
|
||||||
@ -9,7 +9,6 @@ Group: Development/Tools
|
|||||||
License: GPLv2
|
License: GPLv2
|
||||||
URL: https://fedorahosted.org/pungi
|
URL: https://fedorahosted.org/pungi
|
||||||
Source0: https://fedorahosted.org/pungi/attachment/wiki/%{version}/%{name}-%{version}.tar.bz2
|
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: createrepo >= 0.4.11
|
||||||
Requires: yum => 3.4.3-28
|
Requires: yum => 3.4.3-28
|
||||||
Requires: lorax
|
Requires: lorax
|
||||||
@ -57,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
/var/cache/pungi
|
/var/cache/pungi
|
||||||
|
|
||||||
%changelog
|
%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
|
* Sun Oct 27 2013 Daniel Mach <dmach@redhat.com> - 3.01-1
|
||||||
- Add 'make log' command to print changelog for spec. (Daniel Mach)
|
- Add 'make log' command to print changelog for spec. (Daniel Mach)
|
||||||
- Implement %prepopulate config section as an additional package input. (Daniel Mach)
|
- Implement %prepopulate config section as an additional package input. (Daniel Mach)
|
||||||
|
2
setup.py
2
setup.py
@ -2,7 +2,7 @@ from distutils.core import setup
|
|||||||
import glob
|
import glob
|
||||||
|
|
||||||
setup(name='pungi',
|
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',
|
description='Distribution compose tool',
|
||||||
author='Dennis Gilmore',
|
author='Dennis Gilmore',
|
||||||
author_email='dgilmore@fedoraproject.org',
|
author_email='dgilmore@fedoraproject.org',
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
|
|
||||||
__version__ = "3.01"
|
__version__ = "3.02"
|
||||||
|
|
||||||
|
|
||||||
import yum
|
import yum
|
||||||
|
Loading…
Reference in New Issue
Block a user