ipk.py
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:6k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. """SCons.Tool.Packaging.ipk
  2. """
  3. #
  4. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundation
  5. # Permission is hereby granted, free of charge, to any person obtaining
  6. # a copy of this software and associated documentation files (the
  7. # "Software"), to deal in the Software without restriction, including
  8. # without limitation the rights to use, copy, modify, merge, publish,
  9. # distribute, sublicense, and/or sell copies of the Software, and to
  10. # permit persons to whom the Software is furnished to do so, subject to
  11. # the following conditions:
  12. #
  13. # The above copyright notice and this permission notice shall be included
  14. # in all copies or substantial portions of the Software.
  15. #
  16. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  17. # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  18. # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  19. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  20. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  21. # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  22. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  23. #
  24. __revision__ = "src/engine/SCons/Tool/packaging/ipk.py 3057 2008/06/09 22:21:00 knight"
  25. import SCons.Builder
  26. import SCons.Node.FS
  27. import os
  28. from SCons.Tool.packaging import stripinstallbuilder, putintopackageroot
  29. def package(env, target, source, PACKAGEROOT, NAME, VERSION, DESCRIPTION,
  30.             SUMMARY, X_IPK_PRIORITY, X_IPK_SECTION, SOURCE_URL,
  31.             X_IPK_MAINTAINER, X_IPK_DEPENDS, **kw):
  32.     """ this function prepares the packageroot directory for packaging with the
  33.     ipkg builder.
  34.     """
  35.     SCons.Tool.Tool('ipkg').generate(env)
  36.     # setup the Ipkg builder
  37.     bld = env['BUILDERS']['Ipkg']
  38.     target, source = stripinstallbuilder(target, source, env)
  39.     target, source = putintopackageroot(target, source, env, PACKAGEROOT)
  40.     # This should be overridable from the construction environment,
  41.     # which it is by using ARCHITECTURE=.
  42.     # Guessing based on what os.uname() returns at least allows it
  43.     # to work for both i386 and x86_64 Linux systems.
  44.     archmap = {
  45.         'i686'  : 'i386',
  46.         'i586'  : 'i386',
  47.         'i486'  : 'i386',
  48.     }
  49.     buildarchitecture = os.uname()[4]
  50.     buildarchitecture = archmap.get(buildarchitecture, buildarchitecture)
  51.     if kw.has_key('ARCHITECTURE'):
  52.         buildarchitecture = kw['ARCHITECTURE']
  53.     # setup the kw to contain the mandatory arguments to this fucntion.
  54.     # do this before calling any builder or setup function
  55.     loc=locals()
  56.     del loc['kw']
  57.     kw.update(loc)
  58.     del kw['source'], kw['target'], kw['env']
  59.     # generate the specfile
  60.     specfile = gen_ipk_dir(PACKAGEROOT, source, env, kw)
  61.     # override the default target.
  62.     if str(target[0])=="%s-%s"%(NAME, VERSION):
  63.         target=[ "%s_%s_%s.ipk"%(NAME, VERSION, buildarchitecture) ]
  64.     # now apply the Ipkg builder
  65.     return apply(bld, [env, target, specfile], kw)
  66. def gen_ipk_dir(proot, source, env, kw):
  67.     # make sure the packageroot is a Dir object.
  68.     if SCons.Util.is_String(proot): proot=env.Dir(proot)
  69.     #  create the specfile builder
  70.     s_bld=SCons.Builder.Builder(
  71.         action  = build_specfiles,
  72.         )
  73.     # create the specfile targets
  74.     spec_target=[]
  75.     control=proot.Dir('CONTROL')
  76.     spec_target.append(control.File('control'))
  77.     spec_target.append(control.File('conffiles'))
  78.     spec_target.append(control.File('postrm'))
  79.     spec_target.append(control.File('prerm'))
  80.     spec_target.append(control.File('postinst'))
  81.     spec_target.append(control.File('preinst'))
  82.     # apply the builder to the specfile targets
  83.     apply(s_bld, [env, spec_target, source], kw)
  84.     # the packageroot directory does now contain the specfiles.
  85.     return proot
  86. def build_specfiles(source, target, env):
  87.     """ filter the targets for the needed files and use the variables in env
  88.     to create the specfile.
  89.     """
  90.     #
  91.     # At first we care for the CONTROL/control file, which is the main file for ipk.
  92.     #
  93.     # For this we need to open multiple files in random order, so we store into
  94.     # a dict so they can be easily accessed.
  95.     #
  96.     #
  97.     opened_files={}
  98.     def open_file(needle, haystack):
  99.         try:
  100.             return opened_files[needle]
  101.         except KeyError:
  102.             file=filter(lambda x: x.get_path().rfind(needle)!=-1, haystack)[0]
  103.             opened_files[needle]=open(file.abspath, 'w')
  104.             return opened_files[needle]
  105.     control_file=open_file('control', target)
  106.     if not env.has_key('X_IPK_DESCRIPTION'):
  107.         env['X_IPK_DESCRIPTION']="%sn %s"%(env['SUMMARY'],
  108.                                             env['DESCRIPTION'].replace('n', 'n '))
  109.     content = """
  110. Package: $NAME
  111. Version: $VERSION
  112. Priority: $X_IPK_PRIORITY
  113. Section: $X_IPK_SECTION
  114. Source: $SOURCE_URL
  115. Architecture: $ARCHITECTURE
  116. Maintainer: $X_IPK_MAINTAINER
  117. Depends: $X_IPK_DEPENDS
  118. Description: $X_IPK_DESCRIPTION
  119. """
  120.     control_file.write(env.subst(content))
  121.     #
  122.     # now handle the various other files, which purpose it is to set post-, 
  123.     # pre-scripts and mark files as config files.
  124.     #
  125.     # We do so by filtering the source files for files which are marked with
  126.     # the "config" tag and afterwards we do the same for x_ipk_postrm,
  127.     # x_ipk_prerm, x_ipk_postinst and x_ipk_preinst tags.
  128.     #
  129.     # The first one will write the name of the file into the file
  130.     # CONTROL/configfiles, the latter add the content of the x_ipk_* variable
  131.     # into the same named file.
  132.     #
  133.     for f in [x for x in source if 'PACKAGING_CONFIG' in dir(x)]:
  134.         config=open_file('conffiles')
  135.         config.write(f.PACKAGING_INSTALL_LOCATION)
  136.         config.write('n')
  137.     for str in 'POSTRM PRERM POSTINST PREINST'.split():
  138.         name="PACKAGING_X_IPK_%s"%str
  139.         for f in [x for x in source if name in dir(x)]:
  140.             file=open_file(name)
  141.             file.write(env[str])
  142.     #
  143.     # close all opened files
  144.     for f in opened_files.values():
  145.         f.close()
  146.     # call a user specified function
  147.     if env.has_key('CHANGE_SPECFILE'):
  148.         content += env['CHANGE_SPECFILE'](target)
  149.     return 0