diff options
author | Fabio Berton <fabio.berton@ossystems.com.br> | 2016-08-16 15:47:28 -0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-23 17:44:05 +0100 |
commit | 21130e2afc4762ad84c86e377146b99224d16032 (patch) | |
tree | d9887ea04e1838cb1acc7b4378bb8d7c62d919aa /meta/recipes-devtools/python | |
parent | 7540b9e68d56e7779b478d2bc09fbbedcf28976b (diff) | |
download | openembedded-core-21130e2afc4762ad84c86e377146b99224d16032.tar.gz openembedded-core-21130e2afc4762ad84c86e377146b99224d16032.tar.bz2 openembedded-core-21130e2afc4762ad84c86e377146b99224d16032.zip |
python3-native: Change code style for rprovides
Use a more readable code style for RPROVIDES and sort recipes
alphabetically.
Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python')
-rw-r--r-- | meta/recipes-devtools/python/python3-native_3.5.2.bb | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python3-native_3.5.2.bb b/meta/recipes-devtools/python/python3-native_3.5.2.bb index 061b5951d1..3334cbacfc 100644 --- a/meta/recipes-devtools/python/python3-native_3.5.2.bb +++ b/meta/recipes-devtools/python/python3-native_3.5.2.bb @@ -42,7 +42,14 @@ DEPENDS = "openssl-native bzip2-replacement-native zlib-native readline-native s inherit native -RPROVIDES += "python3-distutils-native python3-compression-native python3-textutils-native python3-core-native python3-importlib-native python3-io-native" +RPROVIDES += " \ + python3-compression-native \ + python3-core-native \ + python3-distutils-native \ + python3-importlib-native \ + python3-io-native \ + python3-textutils-native \ +" EXTRA_OECONF_append = " --bindir=${bindir}/${PN} --without-ensurepip" |