Lines Matching full:lines
332 # get rid of commented lines and also strip the package strings
362 Create the lines refering to the download information of the
365 lines = []
369 lines.append(version_line)
378 lines.append(targz_line)
388 lines.append(site_line)
389 return lines
403 lines = []
407 lines.append(setup_type_line)
408 return lines
478 Create the lines referring to the package's license informations of the
485 lines = []
491 lines.append(self.__get_license_names(self.license_files))
505 lines.append(license_file_line)
511 return lines
515 Create the lines referring to the dependencies of the of the
522 lines = []
527 lines.append(dependencies_line)
528 return lines
532 Create the lines corresponding to the <package_name>.mk file
537 lines = self.__create_mk_header()
538 lines += self.__create_mk_download_info()
539 lines += self.__create_mk_setup()
540 lines += self.__create_mk_license()
542 lines.append('\n')
543 lines.append('$(eval $(python-package))')
544 lines.append('\n')
546 mk_file.writelines(lines)
550 Create the lines corresponding to the <package_name>.hash files
555 lines = []
559 lines.append(hash_header)
564 lines.append(hash_line)
569 lines.append(hash_line)
572 lines.append('# Locally computed sha256 checksums\n')
585 lines.append(hash_line)
588 hash_file.writelines(lines)
596 lines = []
599 lines.append(config_line)
602 lines.append(bool_line)
608 lines.append(dep_line)
610 lines.append('\thelp\n')
624 lines += help_lines
627 config_file.writelines(lines)