예제 #1
0
 def write_stamp(self):
   """Write stamp file containing pkg_info."""
   filename = util.get_install_stamp(self.NAME, self.config)
   make_dir_if_needed(filename)
   util.log_verbose('stamp: %s' % filename)
   pkg_info = self.get_pkg_info()
   with open(filename, 'w') as f:
     f.write(pkg_info)
예제 #2
0
파일: package.py 프로젝트: dsagal/webports
 def get_install_stamp(self):
   """Returns the name of install stamp for this package."""
   return util.get_install_stamp(self.NAME, self.config)
예제 #3
0
파일: package.py 프로젝트: sbc100/webports
 def get_install_stamp(self):
     """Returns the name of install stamp for this package."""
     return util.get_install_stamp(self.NAME, self.config)