blob: c325bee6d219c805915f45d10cb8e68820a8020c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#!/bin/bash
basedir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
oldpwd=$(pwd)
cd $basedir
sh ./deps/python3-flit_core/python3-flit_core.SlackBuild
upgradepkg --install-new /tmp/python3-flit_core-*
sh ./deps/python3-installer/python3-installer.SlackBuild
upgradepkg --install-new /tmp/python3-installer-*
sh ./deps/python3-pyproject-hooks/python3-pyproject-hooks.SlackBuild
upgradepkg --install-new /tmp/python3-pyproject-hooks-*
sh ./deps/python3-build/python3-build.SlackBuild
upgradepkg --install-new /tmp/python3-build-*
sh ./deps/python3-poetry-core/python3-poetry-core.SlackBuild
upgradepkg --install-new /tmp/python3-poetry-core-*
sh ./deps/python3-tomlkit/python3-tomlkit.SlackBuild
upgradepkg --install-new /tmp/python3-tomlkit-*
sh ./deps/python3-pythondialog/python3-pythondialog.SlackBuild
upgradepkg --install-new /tmp/python3-pythondialog-*
wget https://gitlab.com/dslackw/slpkg/-/archive/5.2.5/slpkg-5.2.5.tar.gz
tar -xvf slpkg-5.2.5.tar.gz
cd slpkg-5.2.5
./install.sh
cp -f $basedir/repositories.toml /etc/slpkg/repositories.toml
cp -f $basedir/slpkg.toml /etc/slpkg/slpkg.toml
slpkg -U
cd $oldpwd
|