Moved python-cryptography from makedepends to depends (#3558)

This commit is contained in:
Anton Hvornum 2025-05-31 13:19:37 +02:00 committed by GitHub
parent dd686b291c
commit 55fd59d94e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 15 additions and 13 deletions

View File

@ -1,15 +1,16 @@
# Maintainer: David Runge <dvzrv@archlinux.org> # Maintainer: David Runge <dvzrv@archlinux.org>
# Maintainer: Giancarlo Razzolini <grazzolini@archlinux.org> # Maintainer: Giancarlo Razzolini <grazzolini@archlinux.org>
# Maintainer: Anton Hvornum <torxed@archlinux.org>
# Contributor: Anton Hvornum <anton@hvornum.se> # Contributor: Anton Hvornum <anton@hvornum.se>
# Contributor: demostanis worlds <demostanis@protonmail.com> # Contributor: demostanis worlds <demostanis@protonmail.com>
pkgname=archinstall pkgname=archinstall
pkgver=3.0.7 pkgver=3.0.7
pkgrel=1 pkgrel=3
pkgdesc="Just another guided/automated Arch Linux installer with a twist" pkgdesc="Just another guided/automated Arch Linux installer with a twist"
arch=(any) arch=(any)
url="https://github.com/archlinux/archinstall" url="https://github.com/archlinux/archinstall"
license=(GPL3) license=(GPL-3.0-only)
depends=( depends=(
'arch-install-scripts' 'arch-install-scripts'
'btrfs-progs' 'btrfs-progs'
@ -24,6 +25,7 @@ depends=(
'pciutils' 'pciutils'
'procps-ng' 'procps-ng'
'python' 'python'
'python-cryptography'
'python-pydantic' 'python-pydantic'
'python-pyparted' 'python-pyparted'
'systemd' 'systemd'
@ -34,13 +36,15 @@ depends=(
'ntfs-3g' 'ntfs-3g'
) )
makedepends=( makedepends=(
'python-cryptography'
'python-setuptools'
'python-sphinx'
'python-build' 'python-build'
'python-installer' 'python-installer'
'python-setuptools'
'python-sphinx'
'python-wheel' 'python-wheel'
'python-sphinx_rtd_theme' 'python-sphinx_rtd_theme'
'python-pylint'
'python-pylint-pydantic'
'ruff'
) )
optdepends=( optdepends=(
'python-systemd: Adds journald logging' 'python-systemd: Adds journald logging'
@ -54,7 +58,12 @@ source=(
) )
sha512sums=() sha512sums=()
b2sums=() b2sums=()
validpgpkeys=('256F73CEEFC6705C6BBAB20E5FBBB32941E3740A') # Anton Hvornum (Torxed) <anton@hvornum.se> validpgpkeys=('8AA2213C8464C82D879C8127D4B58E897A929F2E') # torxed@archlinux.org
check() {
cd $pkgname-$pkgver
ruff check
}
pkgver() { pkgver() {
cd $pkgname-$pkgver cd $pkgname-$pkgver
@ -62,13 +71,6 @@ pkgver() {
awk '$1 ~ /^__version__/ {gsub("\"", ""); print $3}' archinstall/__init__.py awk '$1 ~ /^__version__/ {gsub("\"", ""); print $3}' archinstall/__init__.py
} }
prepare() {
cd $pkgname-$pkgver
# use real directories for examples and profiles, as symlinks do not work
rm -fv $pkgname/{examples,profiles}
}
build() { build() {
cd $pkgname-$pkgver cd $pkgname-$pkgver