Remove outdated PKGBUILD files
setup.cfg whitespace changes.
This commit is contained in:
parent
ecf7a2a237
commit
baaa70381b
44
PKGBUILD
44
PKGBUILD
|
|
@ -1,44 +0,0 @@
|
||||||
# Maintainer: Anton Hvornum <anton@hvornum.se>
|
|
||||||
# Contributor: Giancarlo Razzolini <grazzolini@archlinux.org>
|
|
||||||
# Contributor: demostanis worlds <demostanis@protonmail.com>
|
|
||||||
|
|
||||||
pkgbase=archinstall-git
|
|
||||||
pkgname=('archinstall-git' 'python-archinstall-git')
|
|
||||||
pkgver=$(git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g')
|
|
||||||
pkgrel=1
|
|
||||||
pkgdesc="Just another guided/automated Arch Linux installer with a twist"
|
|
||||||
arch=('any')
|
|
||||||
url="https://github.com/archlinux/archinstall"
|
|
||||||
license=('GPL')
|
|
||||||
depends=('python')
|
|
||||||
makedepends=('python-setuptools')
|
|
||||||
|
|
||||||
build() {
|
|
||||||
cd "$startdir"
|
|
||||||
|
|
||||||
python setup.py build
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
package_archinstall-git() {
|
|
||||||
depends=('python-archinstall-git')
|
|
||||||
conflicts=('archinstall')
|
|
||||||
cd "$startdir"
|
|
||||||
|
|
||||||
mkdir -p "${pkgdir}/usr/bin"
|
|
||||||
|
|
||||||
# Install a guided profile
|
|
||||||
cat - > "${pkgdir}/usr/bin/archinstall" <<EOF
|
|
||||||
#!/bin/sh
|
|
||||||
python -m archinstall $@
|
|
||||||
EOF
|
|
||||||
|
|
||||||
chmod +x "${pkgdir}/usr/bin/archinstall"
|
|
||||||
}
|
|
||||||
|
|
||||||
package_python-archinstall-git() {
|
|
||||||
conflicts=('python-archinstall')
|
|
||||||
cd "$startdir"
|
|
||||||
|
|
||||||
python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
|
|
||||||
}
|
|
||||||
|
|
@ -1,39 +0,0 @@
|
||||||
# Maintainer: Anton Hvornum anton@hvornum.se
|
|
||||||
# Contributor: Anton Hvornum anton@hvornum.se
|
|
||||||
|
|
||||||
pkgname="archinstall-bin"
|
|
||||||
pkgver="2.1.3"
|
|
||||||
pkgdesc="Installs a pre-built binary of ${pkgname}"
|
|
||||||
pkgrel=1
|
|
||||||
url="https://github.com/archlinux/archinstall"
|
|
||||||
license=('GPLv3')
|
|
||||||
provides=("${pkgname}")
|
|
||||||
arch=('x86_64')
|
|
||||||
source=("${pkgname}-v${pkgver}-x86_64.tar.gz::https://github.com/archlinux/archinstall/archive/v$pkgver.tar.gz")
|
|
||||||
#depends=('python>=3.8')
|
|
||||||
makedepends=('python>=3.8' 'nuitka')
|
|
||||||
optdepends=('pyttsx3: Adds text-to-speach support for log/screen output.')
|
|
||||||
sha256sums=('53c00f7e7ad245cd2cbbf041b5a735df2fc29454c24b1d369f678cc0610b7cea')
|
|
||||||
|
|
||||||
build() {
|
|
||||||
cd "${pkgname}-${pkgver}"
|
|
||||||
|
|
||||||
nuitka3 --standalone --show-progress archinstall
|
|
||||||
cp -r examples/ archinstall.dist/
|
|
||||||
}
|
|
||||||
|
|
||||||
package() {
|
|
||||||
echo "${srcdir}"
|
|
||||||
cd "${pkgname}-${pkgver}"
|
|
||||||
|
|
||||||
mkdir -p "${pkgdir}/var/lib/archinstall/"
|
|
||||||
mkdir -p "${pkgdir}/usr/bin"
|
|
||||||
|
|
||||||
mv archinstall.dist/* "${pkgdir}/var/lib/archinstall/"
|
|
||||||
|
|
||||||
echo '#!/bin/bash' > "${pkgdir}/usr/bin/archinstall-bin"
|
|
||||||
echo '(cd /var/lib/archinstall && exec ./archinstall)' >> "${pkgdir}/usr/bin/archinstall-bin"
|
|
||||||
|
|
||||||
chmod +x "${pkgdir}/var/lib/archinstall/archinstall"
|
|
||||||
chmod +x "${pkgdir}/usr/bin/archinstall-bin"
|
|
||||||
}
|
|
||||||
|
|
@ -1,30 +0,0 @@
|
||||||
# Maintainer: Anton Hvornum <anton@hvornum.se>
|
|
||||||
# Contributor: demostanis worlds <demostanis@protonmail.com>
|
|
||||||
|
|
||||||
pkgname="archinstall"
|
|
||||||
pkgver="2.1.3"
|
|
||||||
pkgdesc="Installs launcher scripts for archinstall"
|
|
||||||
pkgrel=1
|
|
||||||
url="https://github.com/archlinux/archinstall"
|
|
||||||
license=('GPLv3')
|
|
||||||
provides=("${pkgname}")
|
|
||||||
arch=('x86_64')
|
|
||||||
source=("${pkgname}-v${pkgver}-x86_64.tar.gz::https://github.com/archlinux/archinstall/archive/v$pkgver.tar.gz")
|
|
||||||
depends=('python-archinstall')
|
|
||||||
sha256sums=('53c00f7e7ad245cd2cbbf041b5a735df2fc29454c24b1d369f678cc0610b7cea')
|
|
||||||
|
|
||||||
package() {
|
|
||||||
mkdir -p "${pkgdir}/usr/bin"
|
|
||||||
|
|
||||||
# Install a guided profile
|
|
||||||
cat - > "${pkgdir}/usr/bin/archinstall" <<EOF
|
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
python -m archinstall $@
|
|
||||||
EOF
|
|
||||||
|
|
||||||
chmod +x "${pkgdir}/usr/bin/archinstall"
|
|
||||||
}
|
|
||||||
|
|
||||||
# vim:ft=sh
|
|
||||||
|
|
||||||
|
|
@ -1,40 +0,0 @@
|
||||||
# Maintainer: Anton Hvornum <anton@hvornum.se>
|
|
||||||
# Contributor: demostanis worlds <demostanis@protonmail.com>
|
|
||||||
|
|
||||||
pkgname="python-archinstall"
|
|
||||||
pkgver="2.1.3"
|
|
||||||
pkgdesc="Installs ${pkgname} as a python library."
|
|
||||||
pkgrel=1
|
|
||||||
url="https://github.com/archlinux/archinstall"
|
|
||||||
source=("${pkgname}-v${pkgver}-x86_64.tar.gz::https://github.com/archlinux/archinstall/archive/v$pkgver.tar.gz")
|
|
||||||
license=('GPLv3')
|
|
||||||
provides=("${pkgname}")
|
|
||||||
arch=('x86_64')
|
|
||||||
depends=('python>=3.8')
|
|
||||||
makedepends=('python-setuptools')
|
|
||||||
optdepends=('pyttsx3: Adds text-to-speech support for log/screen output.')
|
|
||||||
sha256sums=('53c00f7e7ad245cd2cbbf041b5a735df2fc29454c24b1d369f678cc0610b7cea')
|
|
||||||
|
|
||||||
build() {
|
|
||||||
cd "archinstall-${pkgver}"
|
|
||||||
|
|
||||||
python setup.py build
|
|
||||||
|
|
||||||
# Build man pages
|
|
||||||
cd docs
|
|
||||||
make man
|
|
||||||
}
|
|
||||||
|
|
||||||
package() {
|
|
||||||
cd "archinstall-${pkgver}"
|
|
||||||
|
|
||||||
python setup.py install \
|
|
||||||
--prefix=/usr \
|
|
||||||
--root="${pkgdir}" \
|
|
||||||
--optimize=1
|
|
||||||
|
|
||||||
install -Dm644 docs/_build/man/archinstall.1 "${pkgdir}"/usr/share/man/man1/archinstall.1
|
|
||||||
}
|
|
||||||
|
|
||||||
# vim:ft=sh
|
|
||||||
|
|
||||||
|
|
@ -14,10 +14,10 @@ project_urls =
|
||||||
Documentation = https://archinstall.readthedocs.io/
|
Documentation = https://archinstall.readthedocs.io/
|
||||||
classifers =
|
classifers =
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
||||||
Operating System :: POSIX :: Linux
|
Operating System :: POSIX :: Linux
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
packages = find:
|
packages = find:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue