Compare commits

...

17 Commits

Author SHA1 Message Date
lyxal 692195d005
Merge 379b35ff74 into 59338eee33 2024-08-02 20:33:29 +12:00
Lyxal 379b35ff74
pkg(vyxal-2.18.0): while the PR is still open, bump to newer ver 2022-10-03 00:15:23 +11:00
Lyxal ac49e47b34
pkg(vyxal-2.18.0): while the PR is still open, bump to newer ver 2022-10-03 00:14:54 +11:00
Lyxal 675bdcd248
pkg(vyxal-2.18.0): while the PR is still open, bump to newer ver 2022-10-03 00:14:27 +11:00
Lyxal 05d1fe9645
pkg(vyxal-2.18.0): while the PR is still open, bump to newer ver 2022-10-03 00:13:49 +11:00
Lyxal ed2cae530f
pkg(vyxal-2.18.0): while the PR is still open, bump to newly released 2.18.0 2022-10-03 00:12:59 +11:00
Lyxal 7868c17e6e
Merge branch 'master' into vyxal-package-update 2022-09-24 11:55:41 +10:00
Lyxal 927d620ccd
pkg(vyxal-2.17.1): move the test file into the new directory 2022-09-18 22:12:40 +10:00
Lyxal 666b8924a5
pkg(vyxal-2.17.1): make the run file use $@ instead of $1 2022-09-18 22:08:50 +10:00
Lyxal 2c8f1848bb
pkg(vyxal-2.17.1): bump the vyxal version again 2022-09-18 22:06:33 +10:00
Lyxal 3728cb3236
pkg(vyxal-2.17.1): move the environment file into the new directory 2022-09-18 22:05:58 +10:00
Lyxal ff6c89313f
pkg(vyxal-2.17.1): while the PR is still open, bump to newly released 2.17.1 2022-09-18 22:05:20 +10:00
Lyxal eac8fb449c
pkg(vyxal-2.17.0): move the test file into the new directory 2022-09-14 23:58:59 +10:00
Lyxal c1c559f8ff
pkg(vyxal-2.17.0): Update the run command to just use the pip installed command 2022-09-14 23:58:16 +10:00
Lyxal f22e015f72
pkg(vyxal-2.17.0): bump vyxal version in metadata 2022-09-14 23:57:08 +10:00
Lyxal 782e9db1af
pkg(vyxal-2.17.0) clean up environment file 2022-09-14 23:56:16 +10:00
Lyxal fda6104cba
pkg(vyxal-2.17.0): update build.sh and update version 2022-09-14 23:55:13 +10:00
9 changed files with 19 additions and 32 deletions

9
packages/vyxal/2.18.0/build.sh vendored Normal file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
# get Python source
source ../../python/3.9.4/build.sh
# And install the package
pip install vyxal==2.18.0

4
packages/vyxal/2.18.0/environment vendored Normal file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
# Python path
export PATH=$PWD/bin:$PATH

View File

@ -1,5 +1,5 @@
{
"language": "vyxal",
"version": "2.4.1",
"version": "2.18.0",
"aliases": []
}
}

3
packages/vyxal/2.18.0/run vendored Normal file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env bash
vyxal "$@"

1
packages/vyxal/2.18.0/test.vyxal vendored Normal file
View File

@ -0,0 +1 @@
`OK

View File

@ -1,18 +0,0 @@
#!/usr/bin/env bash
# get Python source
source ../../python/3.9.4/build.sh
# add regex and pwn modules
bin/pip3 install regex pwn
# make vyxal directory
mkdir vyxal
cd vyxal
# Vyxal install
curl -L "https://github.com/Vyxal/Vyxal/archive/refs/tags/v2.4.1.tar.gz" -o vyxal.tar.xz
tar xf vyxal.tar.xz --strip-components=1
rm vyxal.tar.xz
cd ..

View File

@ -1,8 +0,0 @@
#!/usr/bin/env bash
# Python and Vyxal path
export PATH=$PWD/bin:$PATH
export VYXAL_PATH=$PWD/vyxal
# export term to fix curses warning
export TERM=xterm

View File

@ -1,3 +0,0 @@
#!/usr/bin/env bash
python3 "$VYXAL_PATH"/Vyxal.py "$1"

View File

@ -1 +0,0 @@
`OK