Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--PKGBUILD4
-rwxr-xr-xmake.sh8
-rw-r--r--setup.py2
3 files changed, 7 insertions, 7 deletions
diff --git a/PKGBUILD b/PKGBUILD
index ac760a11..ef30ba55 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,9 +1,9 @@
# Maintainer: Anton Hvornum anton@hvornum.se
# Contributor: Anton Hvornum anton@hvornum.se
pkgname="archinstall"
-pkgver="v2.0.3"
+pkgver="v2.0.4rc2"
pkgdesc="Installs a pre-built binary of ${pkgname}"
-pkgrel=1
+pkgrel=2
url="https://github.com/Torxed/archinstall"
license=('GPLv3')
provides=("${pkgname}")
diff --git a/make.sh b/make.sh
index 448e8c78..7f217348 100755
--- a/make.sh
+++ b/make.sh
@@ -1,15 +1,15 @@
#!/bin/bash
# Description: Crude build/maker script for PKGBUILD dependencies and stuff.
-rm -rf archinstall.egg-info/ build/ src/ pkg/ dist/ archinstall.build/ archinstall-v2.0.3-x86_64/ *.pkg.*.xz archinstall-*.tar.gz
+rm -rf archinstall.egg-info/ build/ src/ pkg/ dist/ archinstall.build/ archinstall-v2.0.4rc2-x86_64/ *.pkg.*.xz archinstall-*.tar.gz
nuitka3 --standalone --show-progress archinstall
cp -r examples/ archinstall.dist/
-mv archinstall.dist archinstall-v2.0.3-x86_64
-tar -czvf archinstall-v2.0.3.tar.gz archinstall-v2.0.3-x86_64
+mv archinstall.dist archinstall-v2.0.4rc2-x86_64
+tar -czvf archinstall-v2.0.4rc2.tar.gz archinstall-v2.0.4rc2-x86_64
makepkg -f
python3 setup.py sdist bdist_wheel
echo 'python3 -m twine upload dist/*'
-rm -rf archinstall.egg-info/ build/ dist/ src/ pkg/ archinstall.build/ archinstall-v2.0.3-x86_64/
+rm -rf archinstall.egg-info/ build/ dist/ src/ pkg/ archinstall.build/ archinstall-v2.0.4rc2-x86_64/
diff --git a/setup.py b/setup.py
index 9c80f35c..7437f92a 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setuptools.setup(
name="archinstall",
- version="2.0.3",
+ version="v2.0.4rc2",
author="Anton Hvornum",
author_email="anton@hvornum.se",
description="Arch Linux installer - guided, templates etc.",