pungi/pungi

197 lines
7.9 KiB
Plaintext
Raw Normal View History

2006-10-24 01:46:30 +00:00
#!/usr/bin/python -tt
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
2006-10-24 13:44:11 +00:00
# the Free Software Foundation; version 2 of the License.
2006-10-24 01:46:30 +00:00
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Library General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
import os
import pypungi.gather
import pypungi.pungi
2006-10-24 01:46:30 +00:00
import yum
import pykickstart.parser
import pykickstart.version
2006-10-24 01:46:30 +00:00
from ConfigParser import SafeConfigParser
2006-10-24 01:46:30 +00:00
def main():
# Set some default variables, can be overrided in config file
# Turn this into a dict someday, to iterate over when setting defaults
osdir = "os"
sourcedir = "source"
debugdir = "debug"
isodir = "iso"
cdsize = "4608.0"
relnotefilere = "eula.txt fedora.css GPL README-BURNING-ISOS-en_US.txt RELEASE-NOTES-en_US.html ^RPM-GPG"
relnotedirre = "images stylesheet-images"
relnotepkgs = "fedora-release fedora-release-notes"
2006-10-24 01:46:30 +00:00
(opts, args) = get_arguments()
# Set up the kickstart parser and pass in the kickstart file we were handed
ksparser = pykickstart.parser.KickstartParser(pykickstart.version.makeVersion())
ksparser.readKickstart(opts.config)
config = SafeConfigParser()
config.add_section('default')
# add some sections here before setting stuff.
# hard coded non-options
config.set('default', 'osdir', osdir)
config.set('default', 'sourcedir', sourcedir)
config.set('default', 'debugdir', debugdir)
config.set('default', 'isodir', isodir)
config.set('default', 'relnotefilere', relnotefilere)
config.set('default', 'relnotedirre', relnotedirre)
config.set('default', 'relnotepkgs', relnotepkgs)
config.set('default', 'product_path', 'Packages')
config.set('default', 'cachedir', '/srv/pungi/cache') # needs to be handled better
# set configs from cli options
2007-08-24 13:15:58 +00:00
config.set('default', 'name', opts.name)
config.set('default', 'version', opts.ver)
config.set('default', 'flavor', opts.flavor)
config.set('default', 'destdir', opts.destdir)
config.set('default', 'bugurl', opts.bugurl)
config.set('default', 'discs', opts.discs)
# set some other defaults
2007-08-24 13:15:58 +00:00
config.set('default', 'iso_basename', config.get('default', 'name'))
config.set('default', 'cdsize', cdsize)
for part in ksparser.handler.partition.partitions:
if part.mountpoint == 'iso':
config.set('default', 'cdsize', part.size)
# Set up our directories
if not os.path.exists(config.get('default', 'destdir')):
2006-10-24 01:46:30 +00:00
try:
os.makedirs(config.get('default', 'destdir'))
2006-10-24 01:46:30 +00:00
except OSError, e:
print >> sys.stderr, "Error: Cannot create destination dir %s" % config.get('default', 'destdir')
2006-10-24 01:46:30 +00:00
sys.exit(1)
cachedir = config.get('default', 'cachedir')
if not os.path.exists(cachedir):
2006-10-24 01:46:30 +00:00
try:
os.makedirs(cachedir)
2006-10-24 01:46:30 +00:00
except OSError, e:
print >> sys.stderr, "Error: Cannot create cache dir %s" % cachedir
2006-10-24 01:46:30 +00:00
sys.exit(1)
# Actually do work.
if not opts.sourceisos:
if opts.do_all or opts.do_gather:
mygather = pypungi.gather.Gather(config, ksparser)
mygather.getPackageObjects()
mygather.downloadPackages()
mygather.makeCompsFile()
if not opts.nosource:
mygather.getSRPMList()
mygather.downloadSRPMs()
2007-08-16 14:03:13 +00:00
del mygather
mypungi = pypungi.pungi.Pungi(config)
2007-07-28 14:59:14 +00:00
if opts.do_all or opts.do_createrepo:
mypungi.doCreaterepo()
if opts.do_all or opts.do_buildinstall:
mypungi.doBuildinstall()
mypungi.doGetRelnotes()
if opts.do_all or opts.do_packageorder:
mypungi.doPackageorder()
if opts.do_all or opts.do_splittree:
mypungi.doSplittree()
if opts.do_all or opts.do_createiso:
mypungi.doCreateSplitrepo()
2007-02-13 22:12:39 +00:00
mypungi.doCreateIsos()
# Do things slightly different for src.
if config.get('default', 'arch') == 'source':
# we already have all the content gathered
mypungi = pypungi.pungi.Pungi(config)
mypungi.topdir = os.path.join(config.get('default', 'destdir'),
config.get('default', 'version'),
2007-01-29 21:06:08 +00:00
config.get('default', 'flavor'),
'source', 'SRPM')
if opts.do_all or opts.do_splittree:
mypungi.doSplitSRPMs()
if opts.do_all or opts.do_createiso:
mypungi.doCreateIsos()
2006-10-24 01:46:30 +00:00
print "All done!"
2006-10-24 01:46:30 +00:00
if __name__ == '__main__':
from optparse import OptionParser
import sys
import time
today = time.strftime('%Y%m%d', time.localtime())
2006-10-24 01:46:30 +00:00
def get_arguments():
2007-08-22 02:04:07 +00:00
parser = OptionParser(version="%prog 0.5.0")
# Pulled in from config file to be cli options as part of pykickstart conversion
parser.add_option("--name", default="Fedora", dest="name",
help='the name for your distribution (defaults to "Fedora")')
parser.add_option("--ver", default=today, dest="ver",
help='the version of your distribution (defaults to datestamp)')
parser.add_option("--flavor", dest="flavor",
help='the flavor of your distribution spin (optional)')
parser.add_option("--destdir", default=".", dest="destdir",
help='destination directory (defaults to current directory)')
parser.add_option("--bugurl", default="http://bugzilla.redhat.com", dest="bugurl",
help='the url for your bug system (defaults to http://bugzilla.redhat.com)')
parser.add_option("--discs", default='1', dest="discs",
help='the number of discs you want to create (defaults to 1)')
parser.add_option("--nosource", action="store_true", dest="nosource",
help='the flavor of your distribution spin (optional)')
parser.add_option("--sourceisos", default=False, action="store_true", dest="sourceisos",
help='Create the source isos (other arch runs must be done)')
parser.add_option("-c", "--config", dest="config",
help='Path to kickstart config file')
parser.add_option("--all-stages", action="store_true", default=True, dest="do_all",
help="Enable ALL stages")
parser.add_option("-G", action="store_true", default=False, dest="do_gather",
help="Flag to enable processing the Gather stage")
2007-07-28 14:59:14 +00:00
parser.add_option("-C", action="store_true", default=False, dest="do_createrepo",
help="Flag to enable processing the Createrepo stage")
parser.add_option("-B", action="store_true", default=False, dest="do_buildinstall",
help="Flag to enable processing the BuildInstall stage")
parser.add_option("-P", action="store_true", default=False, dest="do_packageorder",
help="Flag to enable processing the Package Order stage")
parser.add_option("-S", action="store_true", default=False, dest="do_splittree",
help="Flag to enable processing the SplitTree stage")
parser.add_option("-I", action="store_true", default=False, dest="do_createiso",
help="Flag to enable processing the CreateISO stage")
2006-10-24 01:46:30 +00:00
(opts, args) = parser.parse_args()
#if not '-c' in sys.argv or not '--config' in sys.argv:
# parser.print_help()
# sys.exit(0)
2006-10-24 01:46:30 +00:00
if opts.do_gather or opts.do_createrepo or opts.do_buildinstall or opts.do_packageorder or opts.do_splittree or opts.do_createiso:
opts.do_all = False
return (opts, args)
2006-10-24 01:46:30 +00:00
main()