pkg: remove everything for relocation

This commit is contained in:
Thomas Hobson 2021-03-13 19:50:22 +13:00
parent 98782b0a17
commit 69c854cb99
No known key found for this signature in database
GPG Key ID: 9F1FD9D87950DB6F
26 changed files with 0 additions and 125 deletions

View File

@ -1,5 +0,0 @@
curl -L https://github.com/denoland/deno/releases/download/v1.7.5/deno-x86_64-unknown-linux-gnu.zip --output deno.zip
unzip -o deno.zip
rm deno.zip
chmod +x deno

View File

@ -1 +0,0 @@
export PATH=$PWD:$PATH

View File

@ -1,6 +0,0 @@
{
"language": "deno",
"version": "1.7.5",
"author": "Thomas Hobson <thomas@hexf.me>",
"aliases": ["deno-ts", "deno-js"]
}

View File

@ -1,2 +0,0 @@
#!/bin/bash
DENO_DIR=$PWD deno run $*

View File

@ -1 +0,0 @@
console.log("OK")

View File

@ -1,19 +0,0 @@
#!/bin/bash
mkdir -p build/tmp build/mono
cd build
curl "https://download.mono-project.com/sources/mono/mono-6.12.0.122.tar.xz" -o mono.tar.xz
tar xf mono.tar.xz --strip-components=1 -C mono
cd mono
./configure --prefix /piston/packages/mono/6.12.0/mono-6.12.0
make -j$(nproc)
DESTDIR=build/tmp make install -j$(nproc)
mv build/tmp/piston/packages/mono/6.12.0/mono-6.12.0 ../../mono-6.12.0
cd ../../
rm -rf build

View File

@ -1,3 +0,0 @@
#!/bin/bash
csc $*

View File

@ -1 +0,0 @@
export PATH=$PWD/mono-6.12.0:$PATH

View File

@ -1,6 +0,0 @@
{
"language": "mono",
"version": "6.12.0",
"author": "Thomas Hobson <thomas@hexf.me>",
"aliases": ["csharp", "cs"]
}

View File

@ -1,5 +0,0 @@
#!/bin/bash
CODE=${1/cs/exe}
shift
mono $CODE $*

View File

@ -1,9 +0,0 @@
using System;
public class Test
{
public static void Main(string[] args)
{
Console.WriteLine("OK");
}
}

View File

@ -1,4 +0,0 @@
#!/bin/bash
curl "https://nodejs.org/dist/v15.10.0/node-v15.10.0-linux-x64.tar.xz" -o node.tar.xz
tar xf node.tar.xz --strip-components=1
rm node.tar.xz

View File

@ -1 +0,0 @@
export PATH=$PWD/bin:$PATH

View File

@ -1,6 +0,0 @@
{
"language": "node",
"version": "15.10.0",
"author": "Martin Kos <martinkos007@gmail.com>",
"aliases": ["node-javascript", "node-js", "javascript", "js"]
}

View File

@ -1,3 +0,0 @@
#!/bin/bash
node $*

View File

@ -1 +0,0 @@
console.log("OK")

View File

@ -1,20 +0,0 @@
#!/bin/bash
mkdir -p build/tmp build/php
cd build
curl "https://www.php.net/distributions/php-8.0.2.tar.gz" -o php.tar.gz
tar xzf php.tar.gz --strip-components=1 -C php
cd php
./configure --prefix /piston/packages/php/8.0.2/php-8.0.2
make -j$(nproc)
INSTALL_ROOT=build/tmp make install -j$(nproc)
mv build/tmp/piston/packages/php/8.0.2/php-8.0.2 ../../php-8.0.2

View File

@ -1 +0,0 @@
export PATH=$PWD/php-8.0.2/bin:$PATH

View File

@ -1,6 +0,0 @@
{
"language": "php",
"version": "8.0.2",
"author": "Martin Kos <martinkos007@gmail.com>",
"aliases": ["php8","html"]
}

View File

@ -1,3 +0,0 @@
#!/bin/bash
php $*

View File

@ -1 +0,0 @@
OK

View File

@ -1,10 +0,0 @@
#!/bin/bash
curl "https://www.python.org/ftp/python/3.9.1/Python-3.9.1.tgz" -o python.tar.gz
tar xzf python.tar.gz --strip-components=1
rm python.tar.gz
./configure --prefix /piston/packages/python/3.9.1/python-3.9.1
make -j$(nproc)
ln -s python python3.9

View File

@ -1 +0,0 @@
export PATH=$PWD:$PATH

View File

@ -1,6 +0,0 @@
{
"language": "python",
"version": "3.9.1",
"author": "Thomas Hobson <thomas@hexf.me>",
"aliases": ["py", "python3"]
}

View File

@ -1,3 +0,0 @@
#!/bin/bash
python3.9 $*

View File

@ -1 +0,0 @@
print("OK")