Skip to content

Commit 55fd59d

Browse files
authored
Moved python-cryptography from makedepends to depends (archlinux#3558)
1 parent dd686b2 commit 55fd59d

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

PKGBUILD

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
# Maintainer: David Runge <dvzrv@archlinux.org>
22
# Maintainer: Giancarlo Razzolini <grazzolini@archlinux.org>
3+
# Maintainer: Anton Hvornum <torxed@archlinux.org>
34
# Contributor: Anton Hvornum <anton@hvornum.se>
45
# Contributor: demostanis worlds <demostanis@protonmail.com>
56

67
pkgname=archinstall
78
pkgver=3.0.7
8-
pkgrel=1
9+
pkgrel=3
910
pkgdesc="Just another guided/automated Arch Linux installer with a twist"
1011
arch=(any)
1112
url="https://github.com/archlinux/archinstall"
12-
license=(GPL3)
13+
license=(GPL-3.0-only)
1314
depends=(
1415
'arch-install-scripts'
1516
'btrfs-progs'
@@ -24,6 +25,7 @@ depends=(
2425
'pciutils'
2526
'procps-ng'
2627
'python'
28+
'python-cryptography'
2729
'python-pydantic'
2830
'python-pyparted'
2931
'systemd'
@@ -34,13 +36,15 @@ depends=(
3436
'ntfs-3g'
3537
)
3638
makedepends=(
37-
'python-cryptography'
38-
'python-setuptools'
39-
'python-sphinx'
4039
'python-build'
4140
'python-installer'
41+
'python-setuptools'
42+
'python-sphinx'
4243
'python-wheel'
4344
'python-sphinx_rtd_theme'
45+
'python-pylint'
46+
'python-pylint-pydantic'
47+
'ruff'
4448
)
4549
optdepends=(
4650
'python-systemd: Adds journald logging'
@@ -54,19 +58,17 @@ source=(
5458
)
5559
sha512sums=()
5660
b2sums=()
57-
validpgpkeys=('256F73CEEFC6705C6BBAB20E5FBBB32941E3740A') # Anton Hvornum (Torxed) <anton@hvornum.se>
61+
validpgpkeys=('8AA2213C8464C82D879C8127D4B58E897A929F2E') # torxed@archlinux.org
5862

59-
pkgver() {
63+
check() {
6064
cd $pkgname-$pkgver
61-
62-
awk '$1 ~ /^__version__/ {gsub("\"", ""); print $3}' archinstall/__init__.py
65+
ruff check
6366
}
6467

65-
prepare() {
68+
pkgver() {
6669
cd $pkgname-$pkgver
6770

68-
# use real directories for examples and profiles, as symlinks do not work
69-
rm -fv $pkgname/{examples,profiles}
71+
awk '$1 ~ /^__version__/ {gsub("\"", ""); print $3}' archinstall/__init__.py
7072
}
7173

7274
build() {

0 commit comments

Comments
 (0)