When reising an error, print the error too.
bump for release
This commit is contained in:
parent
36c629a262
commit
829f90aa5f
@ -1,5 +1,6 @@
|
|||||||
* Sat Jul 28 2007 Jesse Keating <jkeating@redhat.com>
|
* Sat Jul 28 2007 Jesse Keating <jkeating@redhat.com>
|
||||||
- Split the createrepo call into it's own function
|
- Split the createrepo call into it's own function
|
||||||
|
- When raising an error, print the error too.
|
||||||
|
|
||||||
* Tue Jul 24 2007 Jesse Keating <jkeating@redhat.com>
|
* Tue Jul 24 2007 Jesse Keating <jkeating@redhat.com>
|
||||||
- Add a few more desktopy things to manifest
|
- Add a few more desktopy things to manifest
|
||||||
|
@ -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: 0.3.9
|
Version: 0.4.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Distribution compose tool
|
Summary: Distribution compose tool
|
||||||
|
|
||||||
@ -46,6 +46,11 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Jul 28 2007 Jesse Keating <jkeating@redhat.com> - 0.4.0-1
|
||||||
|
- split createrepo call to it's own function. This enables rawhide
|
||||||
|
composes to happen once again. Also breaks API.
|
||||||
|
- When raising an error, print the error too
|
||||||
|
|
||||||
* Tue Jul 24 2007 Jesse Keating <jkeating@redhat.com> - 0.3.9-1
|
* Tue Jul 24 2007 Jesse Keating <jkeating@redhat.com> - 0.3.9-1
|
||||||
- Add a few more desktopy things to manifest
|
- Add a few more desktopy things to manifest
|
||||||
- Rename f7 files to f8; set up config files for f8test1
|
- Rename f7 files to f8; set up config files for f8test1
|
||||||
|
@ -77,7 +77,7 @@ class Pungi:
|
|||||||
if p1.returncode != 0:
|
if p1.returncode != 0:
|
||||||
log.error("Got an error from %s" % command[0])
|
log.error("Got an error from %s" % command[0])
|
||||||
log.error(err)
|
log.error(err)
|
||||||
raise OSError, "Got an error from %s" % command[0]
|
raise OSError, "Got an error from %s: %s" % (command[0], err)
|
||||||
|
|
||||||
def doCreaterepo(self):
|
def doCreaterepo(self):
|
||||||
"""Run createrepo to generate repodata in the tree."""
|
"""Run createrepo to generate repodata in the tree."""
|
||||||
|
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='0.3.9',
|
version='0.4.0',
|
||||||
description='Distribution compose tool',
|
description='Distribution compose tool',
|
||||||
author='Jesse Keating',
|
author='Jesse Keating',
|
||||||
author_email='jkeating@redhat.com',
|
author_email='jkeating@redhat.com',
|
||||||
|
Loading…
Reference in New Issue
Block a user