Version bump rc4
This commit is contained in:
parent
928654ae35
commit
2dea2426b2
2
PKGBUILD
2
PKGBUILD
|
|
@ -1,7 +1,7 @@
|
||||||
# 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.4rc3"
|
pkgver="v2.0.4rc4"
|
||||||
pkgdesc="Installs a pre-built binary of ${pkgname}"
|
pkgdesc="Installs a pre-built binary of ${pkgname}"
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
url="https://github.com/Torxed/archinstall"
|
url="https://github.com/Torxed/archinstall"
|
||||||
|
|
|
||||||
|
|
@ -92,6 +92,7 @@ class Installer():
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def activate_ntp(self):
|
def activate_ntp(self):
|
||||||
|
log(f'Adding bootloader to {self.boot_partition}')
|
||||||
if self.pacstrap('ntp'):
|
if self.pacstrap('ntp'):
|
||||||
if self.enable_service('ntpd'):
|
if self.enable_service('ntpd'):
|
||||||
return True
|
return True
|
||||||
|
|
|
||||||
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.4rc3-x86_64/ *.pkg.*.xz archinstall-*.tar.gz
|
rm -rf archinstall.egg-info/ build/ src/ pkg/ dist/ archinstall.build/ archinstall-v2.0.4rc4-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.4rc3-x86_64
|
mv archinstall.dist archinstall-v2.0.4rc4-x86_64
|
||||||
tar -czvf archinstall-v2.0.4rc3.tar.gz archinstall-v2.0.4rc3-x86_64
|
tar -czvf archinstall-v2.0.4rc4.tar.gz archinstall-v2.0.4rc4-x86_64
|
||||||
makepkg -f
|
makepkg -f
|
||||||
|
|
||||||
python3 setup.py sdist bdist_wheel
|
python3 setup.py sdist bdist_wheel
|
||||||
echo 'python3 -m twine upload dist/*; rm -rf dist/'
|
echo 'python3 -m twine upload dist/*; rm -rf dist/'
|
||||||
|
|
||||||
rm -rf archinstall.egg-info/ build/ src/ pkg/ archinstall.build/ archinstall-v2.0.4rc3-x86_64/
|
rm -rf archinstall.egg-info/ build/ src/ pkg/ archinstall.build/ archinstall-v2.0.4rc4-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.4rc3",
|
version="v2.0.4rc4",
|
||||||
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