Version bump.
This commit is contained in:
parent
196d4a178e
commit
850d0d2ec9
4
PKGBUILD
4
PKGBUILD
|
|
@ -1,9 +1,9 @@
|
||||||
# Maintainer: Anton Hvornum anton@hvornum.se
|
# Maintainer: Anton Hvornum anton@hvornum.se
|
||||||
# Contributor: Anton Hvornum anton@hvornum.se
|
# Contributor: Anton Hvornum anton@hvornum.se
|
||||||
pkgname="archinstall"
|
pkgname="archinstall"
|
||||||
pkgver="v2.0.4rc2"
|
pkgver="v2.0.4rc3"
|
||||||
pkgdesc="Installs a pre-built binary of ${pkgname}"
|
pkgdesc="Installs a pre-built binary of ${pkgname}"
|
||||||
pkgrel=2
|
pkgrel=1
|
||||||
url="https://github.com/Torxed/archinstall"
|
url="https://github.com/Torxed/archinstall"
|
||||||
license=('GPLv3')
|
license=('GPLv3')
|
||||||
provides=("${pkgname}")
|
provides=("${pkgname}")
|
||||||
|
|
|
||||||
8
make.sh
8
make.sh
|
|
@ -1,15 +1,15 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Description: Crude build/maker script for PKGBUILD dependencies and stuff.
|
# Description: Crude build/maker script for PKGBUILD dependencies and stuff.
|
||||||
|
|
||||||
rm -rf archinstall.egg-info/ build/ src/ pkg/ dist/ archinstall.build/ archinstall-v2.0.4rc2-x86_64/ *.pkg.*.xz archinstall-*.tar.gz
|
rm -rf archinstall.egg-info/ build/ src/ pkg/ dist/ archinstall.build/ archinstall-v2.0.4rc3-x86_64/ *.pkg.*.xz archinstall-*.tar.gz
|
||||||
|
|
||||||
nuitka3 --standalone --show-progress archinstall
|
nuitka3 --standalone --show-progress archinstall
|
||||||
cp -r examples/ archinstall.dist/
|
cp -r examples/ archinstall.dist/
|
||||||
mv archinstall.dist archinstall-v2.0.4rc2-x86_64
|
mv archinstall.dist archinstall-v2.0.4rc3-x86_64
|
||||||
tar -czvf archinstall-v2.0.4rc2.tar.gz archinstall-v2.0.4rc2-x86_64
|
tar -czvf archinstall-v2.0.4rc3.tar.gz archinstall-v2.0.4rc3-x86_64
|
||||||
makepkg -f
|
makepkg -f
|
||||||
|
|
||||||
python3 setup.py sdist bdist_wheel
|
python3 setup.py sdist bdist_wheel
|
||||||
echo 'python3 -m twine upload dist/*'
|
echo 'python3 -m twine upload dist/*'
|
||||||
|
|
||||||
rm -rf archinstall.egg-info/ build/ dist/ src/ pkg/ archinstall.build/ archinstall-v2.0.4rc2-x86_64/
|
rm -rf archinstall.egg-info/ build/ dist/ src/ pkg/ archinstall.build/ archinstall-v2.0.4rc3-x86_64/
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="archinstall",
|
name="archinstall",
|
||||||
version="v2.0.4rc2",
|
version="v2.0.4rc3",
|
||||||
author="Anton Hvornum",
|
author="Anton Hvornum",
|
||||||
author_email="anton@hvornum.se",
|
author_email="anton@hvornum.se",
|
||||||
description="Arch Linux installer - guided, templates etc.",
|
description="Arch Linux installer - guided, templates etc.",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue