This project requires Python 3.6.
This project isn't packaged, and traditionally uses:
$ python -m venv venv
$ source venv/bin/activate
$ pip install "${pypi_deps[@]}"
| diff -Naur xmoto-0.5.10/configure xmoto-0.5.10-new/configure | |
| --- xmoto-0.5.10/configure 2012-05-04 05:07:06 | |
| +++ xmoto-0.5.10-new/configure 2012-06-23 05:19:03 | |
| @@ -5974,7 +5974,7 @@ | |
| $as_echo_n "(cached) " >&6 | |
| else | |
| ac_check_lib_save_LIBS=$LIBS | |
| -LIBS="-lGLU $LIBS" | |
| +LIBS="-lGL -lGLU $LIBS" | |
| cat confdefs.h - <<_ACEOF >conftest.$ac_ext |
| diff --git a/changes.txt b/changes.txt | |
| new file mode 100644 | |
| index 0000000..3aba1b5 | |
| --- /dev/null | |
| +++ b/changes.txt | |
| @@ -0,0 +1,9 @@ | |
| +Change log file for X-Moto-PSP | |
| + | |
| +version 0.2 (2008-12-28) | |
| + * fix compilation with latest SDK |
| // Copyright 2020 Dusk <[email protected]> | |
| // SPDX-License-Identifier: 0BSD | |
| class RingBuffer<T> { | |
| buffer: T[]; | |
| readIx: number; | |
| writeIx: number; | |
| ixMask: number; | |
| canGrow: boolean; | |
| canDrop: boolean; |
| bb010g ~/.../c/mrsh % ./build/mrsh -c 'true; foo="`true``false`$? `printf "%s\n" "$?"``false`"; printf "%s\n" "$? $foo"' 2>&1 | |
| main (post mrsh_parse_line): program | |
| ├─command_list ─ pipeline | |
| │ └─simple_command | |
| │ └─name ─ word_string [1:1 → 1:5] true | |
| ├─command_list ─ pipeline | |
| │ └─simple_command | |
| │ └─assignment | |
| │ ├─name foo | |
| │ └─value ─ word_list (quoted) |
| #!/usr/bin/env zsh | |
| emulate -R zsh | |
| autoload -Uz zmathfunc; zmathfunc | |
| # zmodload -F zsh/mathfunc | |
| unset ENV | |
| unset BASH_ENV | |
| case $NIXPKGS in '') NIXPKGS="nixpkgs/ee084c02040e864eeeb4cf4f8538d92f7c675671";; esac |
| export class IntervalCancelledError extends Error { | |
| constructor(intervalCount, ...args) { | |
| super(...args); | |
| if (Error.captureStackTrace) { | |
| Error.captureStackTrace(this, IntervalCancelledError); | |
| } | |
| this.name = "IntervalCancelledError"; | |
| this.intervalCount = intervalCount; | |
| } | |
| } |