mirror of
https://git.yoctoproject.org/poky
synced 2026-04-04 23:02:22 +02:00
python3: Fixes several python3 dependency problems
This patch adds the packages python3-signal, python3-enum and python3-selectors, while it also fixes python3-subprocess which in turn fix the installation of python3-modules [YOCTO #10276] (From OE-Core rev: 8c0f2775bcc25f460d7a0b38031690fa10a0f11d) Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
260ff60f93
commit
d2ca721d31
@@ -259,6 +259,9 @@ if __name__ == "__main__":
|
||||
m.addPackage( "${PN}-email", "Python email support", "${PN}-core ${PN}-io ${PN}-re ${PN}-mime ${PN}-audio ${PN}-image ${PN}-netclient",
|
||||
"imaplib.* email" ) # package
|
||||
|
||||
m.addPackage( "${PN}-enum", "Python support for enumerations", "${PN}-core",
|
||||
"enum.*" )
|
||||
|
||||
m.addPackage( "${PN}-fcntl", "Python's fcntl interface", "${PN}-core",
|
||||
"lib-dynload/fcntl.*.so" )
|
||||
|
||||
@@ -339,12 +342,18 @@ if __name__ == "__main__":
|
||||
m.addPackage( "${PN}-resource", "Python resource control interface", "${PN}-core",
|
||||
"lib-dynload/resource.*.so" )
|
||||
|
||||
m.addPackage( "${PN}-selectors", "Python High-level I/O multiplexing", "${PN}-core",
|
||||
"selectors.*" )
|
||||
|
||||
m.addPackage( "${PN}-shell", "Python shell-like functionality", "${PN}-core ${PN}-re",
|
||||
"cmd.* commands.* dircache.* fnmatch.* glob.* popen2.* shlex.* shutil.*" )
|
||||
|
||||
m.addPackage( "${PN}-subprocess", "Python subprocess support", "${PN}-core ${PN}-io ${PN}-re ${PN}-fcntl ${PN}-pickle",
|
||||
m.addPackage( "${PN}-subprocess", "Python subprocess support", "${PN}-core ${PN}-io ${PN}-re ${PN}-fcntl ${PN}-pickle ${PN}-signal ${PN}-selectors",
|
||||
"subprocess.*" )
|
||||
|
||||
m.addPackage( "${PN}-signal", "Python set handlers for asynchronous events support", "${PN}-core",
|
||||
"signal.*" )
|
||||
|
||||
m.addPackage( "${PN}-sqlite3", "Python Sqlite3 database support", "${PN}-core ${PN}-datetime ${PN}-lang ${PN}-crypt ${PN}-io ${PN}-threading",
|
||||
"lib-dynload/_sqlite3.*.so sqlite3/dbapi2.* sqlite3/__init__.* sqlite3/dump.*" )
|
||||
|
||||
|
||||
Reference in New Issue
Block a user