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
|
||||
# Contributor: Anton Hvornum anton@hvornum.se
|
||||
pkgname="archinstall"
|
||||
pkgver="v2.0.4rc3"
|
||||
pkgver="v2.0.4rc4"
|
||||
pkgdesc="Installs a pre-built binary of ${pkgname}"
|
||||
pkgrel=1
|
||||
url="https://github.com/Torxed/archinstall"
|
||||
|
|
|
|||
|
|
@ -92,6 +92,7 @@ class Installer():
|
|||
return True
|
||||
|
||||
def activate_ntp(self):
|
||||
log(f'Adding bootloader to {self.boot_partition}')
|
||||
if self.pacstrap('ntp'):
|
||||
if self.enable_service('ntpd'):
|
||||
return True
|
||||
|
|
|
|||
8
make.sh
8
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.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
|
||||
cp -r examples/ archinstall.dist/
|
||||
mv archinstall.dist archinstall-v2.0.4rc3-x86_64
|
||||
tar -czvf archinstall-v2.0.4rc3.tar.gz archinstall-v2.0.4rc3-x86_64
|
||||
mv archinstall.dist archinstall-v2.0.4rc4-x86_64
|
||||
tar -czvf archinstall-v2.0.4rc4.tar.gz archinstall-v2.0.4rc4-x86_64
|
||||
makepkg -f
|
||||
|
||||
python3 setup.py sdist bdist_wheel
|
||||
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/
|
||||
|
|
|
|||
Loading…
Reference in New Issue