mirror of
https://github.com/ivabus/pantry
synced 2024-11-26 18:25:08 +03:00
Tidy virtual-env creation script
This commit is contained in:
parent
a55998598f
commit
fea7d8ad6d
2 changed files with 11 additions and 12 deletions
|
@ -10,8 +10,7 @@ dependencies:
|
||||||
gnu.org/bash: '>=2' # for our venv/relocation scripts: feel free to fix that
|
gnu.org/bash: '>=2' # for our venv/relocation scripts: feel free to fix that
|
||||||
|
|
||||||
build:
|
build:
|
||||||
script: |
|
python-venv.sh "{{prefix}}/bin/meson"
|
||||||
python-venv.sh meson mesonbuild.com {{version}} {{prefix}} {{deps.python.org.version}} {{deps.python.org.version.major}} {{deps.python.org.version.minor}}
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
CMD_NAME=$1
|
CMD_NAME=$(basename "$1")
|
||||||
PROJECT_NAME=$2
|
PREFIX="$(dirname "$(dirname "$1")")"
|
||||||
VERSION=$3
|
PROJECT_NAME=$(basename "$(dirname "$PREFIX")")
|
||||||
PREFIX=$4
|
VERSION=$(basename "$PREFIX")
|
||||||
PYTHON_VERSION=$5
|
PYTHON_VERSION=$(python --version | cut -d' ' -f2)
|
||||||
PYTHON_VERSION_MAJ=$6
|
PYTHON_VERSION_MAJ=$(echo $PYTHON_VERSION | cut -d. -f1)
|
||||||
PYTHON_VERSION_MIN=$7
|
PYTHON_VERSION_MIN=$(echo $PYTHON_VERSION | cut -d. -f1,2)
|
||||||
|
|
||||||
python -m venv $PREFIX/libexec
|
python -m venv $PREFIX/libexec
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue