- 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
|
||||
- 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>
|
||||
- Update the comps file from F7
|
||||
|
@ -5,6 +5,7 @@
|
||||
product_name = Fedora Core
|
||||
product_path = Fedora
|
||||
iso_basename = FC
|
||||
bugurl = http://bugzilla.redhat.com
|
||||
comps = /etc/pungi/comps-fc7.xml
|
||||
manifest = /etc/pungi/minimal-manifest
|
||||
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()")}
|
||||
|
||||
Name: pungi
|
||||
Version: 0.2.1
|
||||
Version: 0.2.2
|
||||
Release: 1%{?dist}
|
||||
Summary: Distribution compose tool
|
||||
|
||||
@ -46,6 +46,12 @@ rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
|
||||
%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
|
||||
- Add a "flavor" option (such as Desktop)
|
||||
- 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'))
|
||||
shutil.copy(self.config.get('default', 'comps'), os.path.join(self.topdir,
|
||||
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')), 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)
|
||||
|
||||
def doPackageorder(self):
|
||||
|
Loading…
Reference in New Issue
Block a user