1
0
mirror of https://aur.archlinux.org/linux-vfio.git synced 2025-02-23 07:59:35 +00:00
This commit is contained in:
xiota 2025-02-10 00:46:31 +00:00
parent 34b02eec7e
commit d086629c9f
2 changed files with 28 additions and 10 deletions

View File

@ -1,9 +1,12 @@
pkgbase = linux-vfio pkgbase = linux-vfio
pkgdesc = Linux pkgdesc = Linux
pkgver = 6.13.1 pkgver = 6.13.2
pkgrel = 1 pkgrel = 1
url = https://www.kernel.org url = https://www.kernel.org
arch = x86_64 arch = x86_64
arch = x86_64_v2
arch = x86_64_v3
arch = x86_64_v4
license = GPL-2.0-or-later license = GPL-2.0-or-later
makedepends = bc makedepends = bc
makedepends = cpio makedepends = cpio
@ -21,17 +24,17 @@ pkgbase = linux-vfio
makedepends = texlive-latexextra makedepends = texlive-latexextra
options = !debug options = !debug
options = !strip options = !strip
source = https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.13.1.tar.xz source = https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.13.2.tar.xz
source = https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.13.1.tar.sign source = https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.13.2.tar.sign
source = config-6.13.1::https://gitlab.archlinux.org/archlinux/packaging/packages/linux/-/raw/main/config source = config-6.13.2::https://gitlab.archlinux.org/archlinux/packaging/packages/linux/-/raw/main/config
source = 1001-6.13.0-add-acs-overrides.patch source = 1001-6.13.0-add-acs-overrides.patch
source = 1002-6.13.0-i915-vga-arbiter.patch source = 1002-6.13.0-i915-vga-arbiter.patch
source = https://github.com/archlinux/linux/releases/download/v6.13.1-arch1/linux-v6.13.1-arch1.patch.zst source = https://github.com/archlinux/linux/releases/download/v6.13.2-arch1/linux-v6.13.2-arch1.patch.zst
source = https://github.com/archlinux/linux/releases/download/v6.13.1-arch1/linux-v6.13.1-arch1.patch.zst.sig source = https://github.com/archlinux/linux/releases/download/v6.13.2-arch1/linux-v6.13.2-arch1.patch.zst.sig
validpgpkeys = ABAF11C65A2970B130ABE3C479BE3E4300411886 validpgpkeys = ABAF11C65A2970B130ABE3C479BE3E4300411886
validpgpkeys = 647F28654894E3BD457199BE38DBBDC86092693E validpgpkeys = 647F28654894E3BD457199BE38DBBDC86092693E
validpgpkeys = 83BC8889351B5DEBBB68416EB8AC08600F108CDF validpgpkeys = 83BC8889351B5DEBBB68416EB8AC08600F108CDF
sha256sums = f011f6c8ea471df1b3dbbdd1eb261b29c92e43360503c3ebd005beec2155b66a sha256sums = cdf62981906bbbe9701aeb73c4f9fcc807a09846c288731663d62717ed1ae705
sha256sums = SKIP sha256sums = SKIP
sha256sums = SKIP sha256sums = SKIP
sha256sums = 569742a1c7ce7996ee4c650c444ed13d650fff7b84f23a16e6358693e58aee9f sha256sums = 569742a1c7ce7996ee4c650c444ed13d650fff7b84f23a16e6358693e58aee9f

View File

@ -11,9 +11,10 @@
: ${_build_vfio:=true} : ${_build_vfio:=true}
: ${_build_lts:=false} : ${_build_lts:=false}
: ${_build_level:=1} : ${_build_level:=1}
: ${_cksum:=f011f6c8ea471df1b3dbbdd1eb261b29c92e43360503c3ebd005beec2155b66a} : ${_cksum:=cdf62981906bbbe9701aeb73c4f9fcc807a09846c288731663d62717ed1ae705}
unset _pkgtype unset _pkgtype
[[ ${_build_vfio::1} == "t" ]] && _pkgtype+="-vfio" [[ ${_build_vfio::1} == "t" ]] && _pkgtype+="-vfio"
@ -25,12 +26,12 @@ unset _pkgtype
_gitname="linux" _gitname="linux"
_pkgname="$_gitname${_pkgtype:-}" _pkgname="$_gitname${_pkgtype:-}"
pkgbase="$_pkgname" pkgbase="$_pkgname"
pkgver=6.13.1 pkgver=6.13.2
pkgrel=1 pkgrel=1
pkgdesc='Linux' pkgdesc='Linux'
url='https://www.kernel.org' url='https://www.kernel.org'
license=('GPL-2.0-or-later') license=('GPL-2.0-or-later')
arch=('x86_64') arch=('x86_64' 'x86_64_v2' 'x86_64_v3' 'x86_64_v4')
makedepends=( makedepends=(
bc bc
@ -93,6 +94,20 @@ if [[ ${_build_arch_patch::1} == "t" ]]; then
) )
fi fi
case "$CARCH" in
x86_64_v2)
_build_level=2
;;
x86_64_v3)
_build_level=3
;;
x86_64_v4)
_build_level=4
;;
*) # no changes; may be user defined
;;
esac
if [[ ${_build_clang::1} == "t" ]]; then if [[ ${_build_clang::1} == "t" ]]; then
makedepends+=(clang llvm lld) makedepends+=(clang llvm lld)