-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Linux powerpc64le. (#262)
- Loading branch information
Showing
14 changed files
with
190 additions
and
9 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,21 @@ | ||
{ | ||
"scie": { | ||
"lift": { | ||
"name": "default-only", | ||
"boot": { | ||
"commands": { | ||
"": { | ||
"exe": "{cpython}/python/bin/python3.11", | ||
"args": ["-c", "import sys; print('.'.join(map(str, sys.version_info[:3])))"] | ||
} | ||
} | ||
}, | ||
"files": [ | ||
{ | ||
"name": "cpython-3.11.11+20241206-ppc64le-unknown-linux-gnu-install_only_stripped.tar.gz", | ||
"key": "cpython" | ||
} | ||
] | ||
} | ||
} | ||
} |
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,18 @@ | ||
{ | ||
"scie": { | ||
"lift": { | ||
"name": "no-commands", | ||
"boot": { | ||
"commands": {} | ||
}, | ||
"files": [ | ||
{ | ||
"name": "cpython-3.11.11+20241206-ppc64le-unknown-linux-gnu-install_only_stripped.tar.gz" | ||
} | ||
] | ||
} | ||
}, | ||
"fetch": [ | ||
"https://github.com/indygreg/python-build-standalone/releases/download/20241206/cpython-3.11.11+20241206-ppc64le-unknown-linux-gnu-install_only_stripped.tar.gz" | ||
] | ||
} |
36 changes: 36 additions & 0 deletions
36
examples/busybox/mixed-no-default-desc-lift.linux-powerpc64.json
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,36 @@ | ||
{ | ||
"scie": { | ||
"lift": { | ||
"name": "mixed-no-default-desc", | ||
"description": "The scie's overall description.", | ||
"boot": { | ||
"commands": { | ||
"": { | ||
"exe": "{cpython}/python/bin/python3.11", | ||
"args": ["-c", "import sys; print('.'.join(map(str, sys.version_info[:3])))"] | ||
}, | ||
"foo": { | ||
"description": "Prints foo.", | ||
"exe": "{cpython}/python/bin/python3.11", | ||
"args": ["-c", "print('foo')"] | ||
}, | ||
"bar": { | ||
"exe": "{cpython}/python/bin/python3.11", | ||
"args": ["-c", "print('bar')"] | ||
}, | ||
"runs-baz": { | ||
"description": "Runs baz.", | ||
"exe": "{cpython}/python/bin/python3.11", | ||
"args": ["-c", "print('ran baz')"] | ||
} | ||
} | ||
}, | ||
"files": [ | ||
{ | ||
"name": "cpython-3.11.11+20241206-ppc64le-unknown-linux-gnu-install_only_stripped.tar.gz", | ||
"key": "cpython" | ||
} | ||
] | ||
} | ||
} | ||
} |
37 changes: 37 additions & 0 deletions
37
examples/busybox/mixed-with-default-desc-lift.linux-powerpc64.json
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,37 @@ | ||
{ | ||
"scie": { | ||
"lift": { | ||
"name": "mixed-with-default-desc", | ||
"description": "The scie's overall description.", | ||
"boot": { | ||
"commands": { | ||
"": { | ||
"description": "Prints the Python version.", | ||
"exe": "{cpython}/python/bin/python3.11", | ||
"args": ["-c", "import sys; print('.'.join(map(str, sys.version_info[:3])))"] | ||
}, | ||
"foo": { | ||
"description": "Prints foo.", | ||
"exe": "{cpython}/python/bin/python3.11", | ||
"args": ["-c", "print('foo')"] | ||
}, | ||
"bar": { | ||
"exe": "{cpython}/python/bin/python3.11", | ||
"args": ["-c", "print('bar')"] | ||
}, | ||
"runs-baz": { | ||
"description": "Runs baz.", | ||
"exe": "{cpython}/python/bin/python3.11", | ||
"args": ["-c", "print('ran baz')"] | ||
} | ||
} | ||
}, | ||
"files": [ | ||
{ | ||
"name": "cpython-3.11.11+20241206-ppc64le-unknown-linux-gnu-install_only_stripped.tar.gz", | ||
"key": "cpython" | ||
} | ||
] | ||
} | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
examples/busybox/named-commands-only-no-desc-lift.linux-powerpc64.json
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,25 @@ | ||
{ | ||
"scie": { | ||
"lift": { | ||
"name": "named-commands-only-no-desc", | ||
"boot": { | ||
"commands": { | ||
"foo": { | ||
"exe": "{cpython}/python/bin/python3.11", | ||
"args": ["-c", "print('foo')"] | ||
}, | ||
"bar": { | ||
"exe": "{cpython}/python/bin/python3.11", | ||
"args": ["-c", "print('bar')"] | ||
} | ||
} | ||
}, | ||
"files": [ | ||
{ | ||
"name": "cpython-3.11.11+20241206-ppc64le-unknown-linux-gnu-install_only_stripped.tar.gz", | ||
"key": "cpython" | ||
} | ||
] | ||
} | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
examples/busybox/named-commands-only-with-desc-lift.linux-powerpc64.json
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,31 @@ | ||
{ | ||
"scie": { | ||
"lift": { | ||
"name": "named-commands-only-with-desc", | ||
"boot": { | ||
"commands": { | ||
"foo": { | ||
"description": "Prints foo.", | ||
"exe": "{cpython}/python/bin/python3.11", | ||
"args": ["-c", "print('foo')"] | ||
}, | ||
"bar": { | ||
"exe": "{cpython}/python/bin/python3.11", | ||
"args": ["-c", "print('bar')"] | ||
}, | ||
"runs-baz": { | ||
"description": "Runs baz.", | ||
"exe": "{cpython}/python/bin/python3.11", | ||
"args": ["-c", "print('ran baz')"] | ||
} | ||
} | ||
}, | ||
"files": [ | ||
{ | ||
"name": "cpython-3.11.11+20241206-ppc64le-unknown-linux-gnu-install_only_stripped.tar.gz", | ||
"key": "cpython" | ||
} | ||
] | ||
} | ||
} | ||
} |
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