diff options
Diffstat (limited to 'scripts/contrib')
-rwxr-xr-x | scripts/contrib/python/generate-manifest-3.3.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/scripts/contrib/python/generate-manifest-3.3.py b/scripts/contrib/python/generate-manifest-3.3.py index 288def293d..48cc84d4e0 100755 --- a/scripts/contrib/python/generate-manifest-3.3.py +++ b/scripts/contrib/python/generate-manifest-3.3.py | |||
@@ -166,15 +166,15 @@ if __name__ == "__main__": | |||
166 | # Parameters: revision, name, description, dependencies, filenames | 166 | # Parameters: revision, name, description, dependencies, filenames |
167 | # | 167 | # |
168 | 168 | ||
169 | m.addPackage( "${PN}-core", "Python interpreter and core modules", "${PN}-lang ${PN}-re", | 169 | m.addPackage( "${PN}-core", "Python interpreter and core modules", "${PN}-lang ${PN}-re ${PN}-reprlib ${PN}-codecs ${PN}-io ${PN}-math", |
170 | "__future__.* _abcoll.* abc.* copy.* copy_reg.* ConfigParser.* " + | 170 | "__future__.* _abcoll.* abc.* copy.* copyreg.* ConfigParser.* " + |
171 | "genericpath.* getopt.* linecache.* new.* " + | 171 | "genericpath.* getopt.* linecache.* new.* " + |
172 | "os.* posixpath.* struct.* " + | 172 | "os.* posixpath.* struct.* " + |
173 | "warnings.* site.* stat.* " + | 173 | "warnings.* site.* stat.* " + |
174 | "UserDict.* UserList.* UserString.* " + | 174 | "UserDict.* UserList.* UserString.* " + |
175 | "lib-dynload/binascii.*.so lib-dynload/_struct.*.so lib-dynload/time.*.so " + | 175 | "lib-dynload/binascii.*.so lib-dynload/_struct.*.so lib-dynload/time.*.so " + |
176 | "lib-dynload/xreadlines.*.so types.* platform.* ${bindir}/python* " + | 176 | "lib-dynload/xreadlines.*.so types.* platform.* ${bindir}/python* " + |
177 | "_weakrefset.* sysconfig.* config/Makefile " + | 177 | "_weakrefset.* sysconfig.* _sysconfigdata.* config/Makefile " + |
178 | "${includedir}/python${PYTHON_MAJMIN}/pyconfig*.h " + | 178 | "${includedir}/python${PYTHON_MAJMIN}/pyconfig*.h " + |
179 | "${libdir}/python${PYTHON_MAJMIN}/collections " + | 179 | "${libdir}/python${PYTHON_MAJMIN}/collections " + |
180 | "${libdir}/python${PYTHON_MAJMIN}/sitecustomize.py ") | 180 | "${libdir}/python${PYTHON_MAJMIN}/sitecustomize.py ") |
@@ -329,6 +329,9 @@ if __name__ == "__main__": | |||
329 | m.addPackage( "${PN}-readline", "Python readline support", "${PN}-core", | 329 | m.addPackage( "${PN}-readline", "Python readline support", "${PN}-core", |
330 | "lib-dynload/readline.*.so rlcompleter.*" ) | 330 | "lib-dynload/readline.*.so rlcompleter.*" ) |
331 | 331 | ||
332 | m.addPackage( "${PN}-reprlib", "Python alternate repr() implementation", "${PN}-core", | ||
333 | "${libdir}/python3.3/reprlib.py" ) | ||
334 | |||
332 | m.addPackage( "${PN}-resource", "Python resource control interface", "${PN}-core", | 335 | m.addPackage( "${PN}-resource", "Python resource control interface", "${PN}-core", |
333 | "lib-dynload/resource.*.so" ) | 336 | "lib-dynload/resource.*.so" ) |
334 | 337 | ||