This repository was archived by the owner on May 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pyelftools: add python3 recipe and add python- prefix
This has been implemented similarly to other python packages in meta-openembedded/meta-python/recipes-devtools/python which have a python-packagename.bb python3-packagename.bb and python-packagename.inc with the common parts. This now allows packages to depend on python3 variant of pyelftools e.g. DEPENDS = python3-pyelftools-native Signed-off-by: Peter Griffin <[email protected]>
- Loading branch information
1 parent
e048e7e
commit cdb0fd7
Showing
3 changed files
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
inherit setuptools | ||
require python-pyelftools.inc | ||
|
||
RDEPENDS_${PN} = "python python-contextlib python-debugger python-pprint" | ||
RDEPENDS_${PN}_class-native = "python" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
inherit setuptools3 | ||
require python-pyelftools.inc | ||
|
||
RDEPENDS_${PN} = "python3 python3-contextlib python3-debugger python3-pprint" | ||
RDEPENDS_${PN}_class-native = "python3" | ||
|