]> code.ossystems Code Review - openembedded-core.git/commitdiff
python3-manifest: add the _pydecimal files to the numbers package
authorDerek Straka <derek@asterius.io>
Thu, 25 Jan 2018 16:59:29 +0000 (11:59 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 29 Jan 2018 08:49:44 +0000 (08:49 +0000)
The _pydecimal files are required to use the numbers package
and downstream packages are currently required to add a RDEPENDS
on python3-misc to avoid an import error

Signed-off-by: Derek Straka <derek@asterius.io>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-devtools/python/python3/python3-manifest.json

index ef9826f02cd1ceee8f9febd5f27ca3a82754f304..5b7b70b346e78f3474ddbc7ae1835ee474d0fd5c 100644 (file)
         "cached": [
             "${libdir}/python3.5/__pycache__/decimal.*.pyc",
             "${libdir}/python3.5/__pycache__/fractions.*.pyc",
-            "${libdir}/python3.5/__pycache__/numbers.*.pyc"
+            "${libdir}/python3.5/__pycache__/numbers.*.pyc",
+            "${libdir}/python3.5/__pycache__/_pydecimal.*.pyc"
         ],
         "files": [
             "${libdir}/python3.5/decimal.py",
             "${libdir}/python3.5/fractions.py",
             "${libdir}/python3.5/lib-dynload/_decimal.*.so",
-            "${libdir}/python3.5/numbers.py"
+            "${libdir}/python3.5/numbers.py",
+            "${libdir}/python3.5/_pydecimal.py"
         ],
         "rdepends": [
             "core"
         ],
         "summary": "Python XML-RPC support"
     }
-}
\ No newline at end of file
+}