Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2021-03-08 13:08:44 +0100
committerAnton Hvornum <anton.feeds@gmail.com>2021-03-08 13:08:44 +0100
commitbbf9face05fe573d760eb8ca662fdf5d34ed6902 (patch)
treed6e03513e3b520743a4d99a87714a962c1c13967
parentc55fc11cae264445579dc34674c24922c96f63d4 (diff)
Removing make script for building binary and pypi dist. These should be done separately and should be done with build instructions not a bash script (i think).
-rwxr-xr-xmake.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/make.sh b/make.sh
deleted file mode 100755
index f733ce10..00000000
--- a/make.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-# Description: Binary builder for https://archlinux.life/bin/
-
-VERSION=$(cat VERSION)
-
-rm -rf archinstall.egg-info/ build/ src/ pkg/ dist/ archinstall.build/ "archinstall-v${VERSION}-x86_64/" *.pkg.*.xz archinstall-*.tar.gz
-
-#nuitka3 --standalone --show-progress archinstall
-#cp -r examples/ archinstall.dist/
-#mv archinstall.dist "archinstall-v${VERSION}-x86_64"
-#tar -czvf "archinstall-v${VERSION}.tar.gz" "archinstall-v${VERSION}-x86_64"
-
-# makepkg -f
-python3 setup.py sdist bdist_wheel
-echo 'python3 -m twine upload dist/* && rm -rf dist/'
-python3 -m twine upload dist/* && rm -rf dist/
-
-rm -rf archinstall.egg-info/ build/ src/ pkg/ archinstall.build/ "archinstall-v${VERSION}-x86_64/"