From 7f7e34c9f5f7c10b63c07aa9a0a0f652b02bcfd8 Mon Sep 17 00:00:00 2001 From: Michael 'Mickey' Lauer Date: Fri, 12 Dec 2008 21:31:04 +0100 Subject: python 2.6.1: ship generic module in python-core, get rid of individual subpackage revision --- contrib/python/generate-manifest-2.6.py | 354 ++++++++++++++++++++++++++++++++ 1 file changed, 354 insertions(+) create mode 100755 contrib/python/generate-manifest-2.6.py (limited to 'contrib') diff --git a/contrib/python/generate-manifest-2.6.py b/contrib/python/generate-manifest-2.6.py new file mode 100755 index 0000000000..01e4527dcb --- /dev/null +++ b/contrib/python/generate-manifest-2.6.py @@ -0,0 +1,354 @@ +#!/usr/bin/env python + +# generate Python Manifest for the OpenEmbedded build system +# (C) 2002-2008 Michael 'Mickey' Lauer +# (C) 2007 Jeremy Laine +# licensed under MIT, see COPYING.MIT + +import os +import sys +import time + +VERSION = "2.6.1" +BASEREV = 0 + +__author__ = "Michael 'Mickey' Lauer " +__version__ = "20081209" + +class MakefileMaker: + + def __init__( self, outfile ): + """initialize""" + self.packages = {} + self.targetPrefix = "${libdir}/python%s/" % VERSION[:3] + self.output = outfile + self.out( """ +# WARNING: This file is AUTO GENERATED: Manual edits will be lost next time I regenerate the file. +# Generator: '%s' Version %s (C) 2002-2008 Michael 'Mickey' Lauer +# Visit the Python for Embedded Systems Site => http://www.Vanille.de/projects/python.spy +""" % ( sys.argv[0], __version__ ) ) + + # + # helper functions + # + + def out( self, data ): + """print a line to the output file""" + self.output.write( "%s\n" % data ) + + def setPrefix( self, targetPrefix ): + """set a file prefix for addPackage files""" + self.targetPrefix = targetPrefix + + def doProlog( self ): + self.out( """ """ ) + self.out( "" ) + + def addPackage( self, name, description, dependencies, filenames ): + """add a package to the Makefile""" + if type( filenames ) == type( "" ): + filenames = filenames.split() + fullFilenames = [] + for filename in filenames: + if filename[0] != "$": + fullFilenames.append( "%s%s" % ( self.targetPrefix, filename ) ) + else: + fullFilenames.append( filename ) + self.packages[name] = description, dependencies, fullFilenames + + def doBody( self ): + """generate body of Makefile""" + + global VERSION + + # + # generate provides line + # + + provideLine = 'PROVIDES+="' + for name in self.packages: + provideLine += "%s " % name + provideLine += '"' + + self.out( provideLine ) + self.out( "" ) + + # + # generate package line + # + + packageLine = 'PACKAGES="' + for name in self.packages: + packageLine += "%s " % name + packageLine += ' python-modules"' + + self.out( packageLine ) + self.out( "" ) + + # + # generate package variables + # + + for name, data in self.packages.iteritems(): + desc, deps, files = data + + # + # write out the description, revision and dependencies + # + self.out( 'DESCRIPTION_%s="%s"' % ( name, desc ) ) + self.out( 'RDEPENDS_%s="%s"' % ( name, deps ) ) + + line = 'FILES_%s="' % name + + # + # check which directories to make in the temporary directory + # + + dirset = {} # if python had a set-datatype this would be sufficient. for now, we're using a dict instead. + for target in files: + dirset[os.path.dirname( target )] = True + + # + # generate which files to copy for the target (-dfR because whole directories are also allowed) + # + + for target in files: + line += "%s " % target + + line += '"' + self.out( line ) + self.out( "" ) + + self.out( 'DESCRIPTION_python-modules="All Python modules"' ) + line = 'RDEPENDS_python-modules="' + + for name, data in self.packages.iteritems(): + if name != 'python-core-dbg': + line += "%s " % name + + self.out( "%s \"" % line ) + self.out( 'ALLOW_EMPTY_python-modules = "1"' ) + + def doEpilog( self ): + self.out( """""" ) + self.out( "" ) + + def make( self ): + self.doProlog() + self.doBody() + self.doEpilog() + +if __name__ == "__main__": + + if len( sys.argv ) > 1: + os.popen( "rm -f ./%s" % sys.argv[1] ) + outfile = file( sys.argv[1], "w" ) + else: + outfile = sys.stdout + + m = MakefileMaker( outfile ) + + # Add packages here. Only specify dlopen-style library dependencies here, no ldd-style dependencies! + # Parameters: revision, name, description, dependencies, filenames + # + + m.addPackage( "python-core", "Python Interpreter and core modules (needed!)", "", + "__future__.* copy.* copy_reg.* ConfigParser.* " + + "genericpath.* getopt.* linecache.* new.* " + + "os.* posixpath.* struct.* " + + "warnings.* site.* stat.* " + + "UserDict.* UserList.* UserString.* " + + "lib-dynload/binascii.so lib-dynload/_struct.so lib-dynload/time.so " + + "lib-dynload/xreadlines.so types.* ${bindir}/python*" ) + + m.addPackage( "python-core-dbg", "Python core module debug information", "python-core", + "lib-dynload/.debug ${bindir}/.debug ${libdir}/.debug" ) + + m.addPackage( "python-devel", "Python Development Package", "python-core", + "${includedir} config" ) # package + + m.addPackage( "python-idle", "Python Integrated Development Environment", "python-core python-tkinter", + "${bindir}/idle idlelib" ) # package + + m.addPackage( "python-pydoc", "Python Interactive Help Support", "python-core python-lang python-stringold python-re", + "${bindir}/pydoc pydoc.*" ) + + m.addPackage( "python-smtpd", "Python Simple Mail Transport Daemon", "python-core python-netserver python-email python-mime", + "${bindir}/smtpd.*" ) + + m.addPackage( "python-audio", "Python Audio Handling", "python-core", + "wave.* chunk.* sndhdr.* lib-dynload/ossaudiodev.so lib-dynload/audioop.so" ) + + m.addPackage( "python-bsddb", "Python Berkeley Database Bindings", "python-core", + "bsddb lib-dynload/_bsddb.so" ) # package + + m.addPackage( "python-codecs", "Python Codecs, Encodings & i18n Support", "python-core python-lang", + "codecs.* encodings gettext.* locale.* lib-dynload/_locale.so lib-dynload/unicodedata.so stringprep.* xdrlib.*" ) + + m.addPackage( "python-compile", "Python Bytecode Compilation Support", "python-core", + "py_compile.* compileall.*" ) + + m.addPackage( "python-compiler", "Python Compiler Support", "python-core", + "compiler" ) # package + + m.addPackage( "python-compression", "Python High Level Compression Support", "python-core python-zlib", + "gzip.* zipfile.* tarfile.*" ) + + m.addPackage( "python-crypt", "Python Basic Cryptographic and Hashing Support", "python-core", + "hashlib.* md5.* sha.* lib-dynload/crypt.so lib-dynload/_hashlib.so lib-dynload/_sha256.so lib-dynload/_sha512.so" ) + + m.addPackage( "python-textutils", "Python Option Parsing, Text Wrapping and Comma-Separated-Value Support", "python-core python-io python-re python-stringold", + "lib-dynload/_csv.so csv.* optparse.* textwrap.*" ) + + m.addPackage( "python-curses", "Python Curses Support", "python-core", + "curses lib-dynload/_curses.so lib-dynload/_curses_panel.so" ) # directory + low level module + + m.addPackage( "python-ctypes", "Python C Types Support", "python-core", + "ctypes lib-dynload/_ctypes.so" ) # directory + low level module + + m.addPackage( "python-datetime", "Python Calendar and Time support", "python-core python-codecs", + "_strptime.* calendar.* lib-dynload/datetime.so" ) + + m.addPackage( "python-db", "Python File-Based Database Support", "python-core", + "anydbm.* dumbdbm.* whichdb.* " ) + + m.addPackage( "python-debugger", "Python Debugger", "python-core python-io python-lang python-re python-stringold python-shell python-pprint", + "bdb.* pdb.*" ) + + m.addPackage( "python-difflib", "Python helpers for computing deltas between objects.", "python-lang python-re", + "difflib.*" ) + + m.addPackage( "python-distutils", "Python Distribution Utilities", "python-core", + "config distutils" ) # package + + m.addPackage( "python-doctest", "Python framework for running examples in docstrings.", "python-core python-lang python-io python-re python-unittest python-debugger python-difflib", + "doctest.*" ) + + m.addPackage( "python-email", "Python Email Support", "python-core python-io python-re python-mime python-audio python-image", + "email" ) # package + + m.addPackage( "python-fcntl", "Python's fcntl Interface", "python-core", + "lib-dynload/fcntl.so" ) + + m.addPackage( "python-hotshot", "Python Hotshot Profiler", "python-core", + "hotshot lib-dynload/_hotshot.so" ) + + m.addPackage( "python-html", "Python HTML Processing", "python-core", + "formatter.* htmlentitydefs.* htmllib.* markupbase.* sgmllib.* " ) + + m.addPackage( "python-gdbm", "Python GNU Database Support", "python-core", + "lib-dynload/gdbm.so" ) + + m.addPackage( "python-image", "Python Graphical Image Handling", "python-core", + "colorsys.* imghdr.* lib-dynload/imageop.so lib-dynload/rgbimg.so" ) + + m.addPackage( "python-io", "Python Low-Level I/O", "python-core python-math", + "lib-dynload/_socket.so lib-dynload/_ssl.so lib-dynload/select.so lib-dynload/termios.so lib-dynload/cStringIO.so " + "pipes.* socket.* tempfile.* StringIO.* " ) + + m.addPackage( "python-lang", "Python Low-Level Language Support", "python-core", + "lib-dynload/array.so lib-dynload/parser.so lib-dynload/operator.so lib-dynload/_weakref.so " + + "lib-dynload/itertools.so lib-dynload/collections.so lib-dynload/_bisect.so lib-dynload/_heapq.so " + + "atexit.* bisect.* code.* codeop.* dis.* heapq.* inspect.* keyword.* opcode.* symbol.* repr.* token.* " + + " tokenize.* traceback.* linecache.* weakref.*" ) + + m.addPackage( "python-logging", "Python Logging Support", "python-core python-io python-lang python-pickle python-stringold", + "logging" ) # package + + m.addPackage( "python-tkinter", "Python Tcl/Tk Bindings", "python-core", + "lib-dynload/_tkinter.so lib-tk" ) # package + + m.addPackage( "python-math", "Python Math Support", "python-core", + "lib-dynload/cmath.so lib-dynload/math.so lib-dynload/_random.so random.* sets.*" ) + + m.addPackage( "python-mime", "Python MIME Handling APIs", "python-core python-io", + "mimetools.* uu.* quopri.* rfc822.*" ) + + m.addPackage( "python-mmap", "Python Memory-Mapped-File Support", "python-core python-io", + "lib-dynload/mmap.so " ) + + m.addPackage( "python-unixadmin", "Python Unix Administration Support", "python-core", + "lib-dynload/nis.so lib-dynload/grp.so lib-dynload/pwd.so getpass.*" ) + + m.addPackage( "python-netclient", "Python Internet Protocol Clients", "python-core python-crypt python-datetime python-io python-lang python-logging python-mime", + "*Cookie*.* " + + "base64.* cookielib.* ftplib.* gopherlib.* hmac.* httplib.* mimetypes.* nntplib.* poplib.* smtplib.* telnetlib.* urllib.* urllib2.* urlparse.* uuid.*" ) + + m.addPackage( "python-netserver", "Python Internet Protocol Servers", "python-core python-netclient", + "cgi.* BaseHTTPServer.* SimpleHTTPServer.* SocketServer.*" ) + + m.addPackage( "python-pickle", "Python Persistence Support", "python-core python-codecs python-io python-re", + "pickle.* shelve.* lib-dynload/cPickle.so" ) + + m.addPackage( "python-pkgutil", "Python Package Extension Utility Support", "python-core", + "pkgutil.*") + + m.addPackage( "python-pprint", "Python Pretty-Print Support", "python-core", + "pprint.*" ) + + m.addPackage( "python-profile", "Python Basic Profiling Support", "python-core python-textutils", + "profile.* pstats.* cProfile.* lib-dynload/_lsprof.so" ) + + m.addPackage( "python-re", "Python Regular Expression APIs", "python-core", + "re.* sre.* sre_compile.* sre_constants* sre_parse.*" ) # _sre is builtin + + m.addPackage( "python-readline", "Python Readline Support", "python-core", + "lib-dynload/readline.so rlcompleter.*" ) + + m.addPackage( "python-resource", "Python Resource Control Interface", "python-core", + "lib-dynload/resource.so" ) + + m.addPackage( "python-shell", "Python Shell-Like Functionality", "python-core python-re", + "cmd.* commands.* dircache.* fnmatch.* glob.* popen2.* shlex.* shutil.*" ) + + m.addPackage( "python-robotparser", "Python robots.txt parser", "python-core python-netclient", + "robotparser.*") + + m.addPackage( "python-subprocess", "Python Subprocess Support", "python-core python-io python-re python-fcntl python-pickle", + "subprocess.*" ) + + m.addPackage( "python-sqlite3", "Python Sqlite3 Database Support", "python-core python-datetime python-lang python-crypt python-io python-threading python-zlib", + "lib-dynload/_sqlite3.so sqlite3/dbapi2.* sqlite3/__init__.*" ) + + m.addPackage( "python-sqlite3-tests", "Python Sqlite3 Database Support Tests", "python-core python-sqlite3", + "sqlite3/test" ) + + m.addPackage( "python-stringold", "Python String APIs [deprecated]", "python-core python-re", + "lib-dynload/strop.so string.*" ) + + m.addPackage( "python-syslog", "Python's Syslog Interface", "python-core", + "lib-dynload/syslog.so" ) + + m.addPackage( "python-terminal", "Python Terminal Controlling Support", "python-core python-io", + "pty.* tty.*" ) + + m.addPackage( "python-tests", "Python Tests", "python-core", + "test" ) # package + + m.addPackage( "python-threading", "Python Threading & Synchronization Support", "python-core python-lang", + "_threading_local.* dummy_thread.* dummy_threading.* mutex.* threading.* Queue.*" ) + + m.addPackage( "python-unittest", "Python Unit Testing Framework", "python-core python-stringold python-lang", + "unittest.*" ) + + m.addPackage( "python-xml", "Python basic XML support.", "python-core python-re", + "lib-dynload/pyexpat.so xml xmllib.*" ) # package + + m.addPackage( "python-xmlrpc", "Python XMLRPC Support", "python-core python-xml python-netserver python-lang", + "xmlrpclib.* SimpleXMLRPCServer.*" ) + + m.addPackage( "python-zlib", "Python zlib Support.", "python-core", + "lib-dynload/zlib.so" ) + + m.addPackage( "python-mailbox", "Python Mailbox Format Support", "python-core python-mime", + "mailbox.*" ) + + # FIXME consider adding to python-compression + m.addPackage( "python-bzip2", "Python bzip2 support", "python-core", + "lib-dynload/bz2.so" ) + + # FIXME consider adding to some higher level package + m.addPackage( "python-elementtree", "Python elementree", "python-core", + "lib-dynload/_elementtree.so" ) + + m.make() -- cgit 1.2.3-korg