- add bugurl config option for anaconda betanag
prepare for release
This commit is contained in:
parent
6142220517
commit
05868a33ac
@ -2,6 +2,7 @@
|
|||||||
- Update the comps file again from F7
|
- Update the comps file again from F7
|
||||||
- Fix the ppc boot flags
|
- Fix the ppc boot flags
|
||||||
- Clean up SRPM-disc junk
|
- Clean up SRPM-disc junk
|
||||||
|
- add bugurl config option for anaconda betanag
|
||||||
|
|
||||||
* Thu Jan 25 2007 Jesse Keating <jkeating@redhat.com>
|
* Thu Jan 25 2007 Jesse Keating <jkeating@redhat.com>
|
||||||
- Update the comps file from F7
|
- Update the comps file from F7
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
product_name = Fedora Core
|
product_name = Fedora Core
|
||||||
product_path = Fedora
|
product_path = Fedora
|
||||||
iso_basename = FC
|
iso_basename = FC
|
||||||
|
bugurl = http://bugzilla.redhat.com
|
||||||
comps = /etc/pungi/comps-fc7.xml
|
comps = /etc/pungi/comps-fc7.xml
|
||||||
manifest = /etc/pungi/minimal-manifest
|
manifest = /etc/pungi/minimal-manifest
|
||||||
yumconf = /etc/pungi/yum.conf.x86_64
|
yumconf = /etc/pungi/yum.conf.x86_64
|
||||||
|
@ -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.2.1
|
Version: 0.2.2
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Distribution compose tool
|
Summary: Distribution compose tool
|
||||||
|
|
||||||
@ -46,6 +46,12 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jan 29 2007 Jesse Keating <jkeating@redhat.com> - 0.2.2-1
|
||||||
|
- Update the comps file again from F7
|
||||||
|
- Fix the ppc boot flags
|
||||||
|
- Clean up SRPM-disc junk
|
||||||
|
- add bugurl config option for anaconda betanag
|
||||||
|
|
||||||
* Thu Jan 25 2007 Jesse Keating <jkeating@redhat.com> - 0.2.1-1
|
* Thu Jan 25 2007 Jesse Keating <jkeating@redhat.com> - 0.2.1-1
|
||||||
- Add a "flavor" option (such as Desktop)
|
- Add a "flavor" option (such as Desktop)
|
||||||
- Move packageorder file into workdir
|
- Move packageorder file into workdir
|
||||||
|
@ -45,9 +45,10 @@ class Pungi:
|
|||||||
os.makedirs(os.path.join(self.topdir, self.config.get('default', 'product_path'), 'base'))
|
os.makedirs(os.path.join(self.topdir, self.config.get('default', 'product_path'), 'base'))
|
||||||
shutil.copy(self.config.get('default', 'comps'), os.path.join(self.topdir,
|
shutil.copy(self.config.get('default', 'comps'), os.path.join(self.topdir,
|
||||||
self.config.get('default', 'product_path'), 'base', 'comps.xml'))
|
self.config.get('default', 'product_path'), 'base', 'comps.xml'))
|
||||||
args = '--product "%s" --version %s --release "%s" --prodpath %s %s' % (self.config.get('default', 'product_name'),
|
args = '--product "%s" --version %s --release "%s" --prodpath %s --bugurl "%s" %s' % (self.config.get('default', 'product_name'),
|
||||||
self.config.get('default', 'version'), '%s %s' % (self.config.get('default', 'product_name'),
|
self.config.get('default', 'version'), '%s %s' % (self.config.get('default', 'product_name'),
|
||||||
self.config.get('default', 'version')), self.config.get('default', 'product_path'), self.topdir)
|
self.config.get('default', 'version')), self.config.get('default', 'product_path'),
|
||||||
|
self.config.get('default', 'bugurl'), self.topdir)
|
||||||
os.system('/usr/lib/anaconda-runtime/buildinstall %s' % args)
|
os.system('/usr/lib/anaconda-runtime/buildinstall %s' % args)
|
||||||
|
|
||||||
def doPackageorder(self):
|
def doPackageorder(self):
|
||||||
|
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.2.1',
|
version='0.2.2',
|
||||||
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