summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Severance2019-06-22 19:53:53 -0400
committerChris Severance2019-06-22 19:53:53 -0400
commit909d3d9f151089dd4f679e550411d4e23c26dedc (patch)
tree3416774ff216e03771ae56431f037ca99279d1cf
parentd07d7adad7e95961b99fe22825d22ad26e752aae (diff)
downloadaur-909d3d9f151089dd4f679e550411d4e23c26dedc.tar.gz
autu: Update to 4.14.129-1
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD16
2 files changed, 19 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 07d6b8746e51..a52b920f6974 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
# Generated by mksrcinfo v8
-# Thu Jun 20 03:21:55 UTC 2019
+# Sat Jun 22 23:53:53 UTC 2019
pkgbase = linux-lts414
- pkgver = 4.14.128
+ pkgver = 4.14.129
pkgrel = 1
url = https://www.kernel.org/
arch = x86_64
@@ -13,7 +13,7 @@ pkgbase = linux-lts414
makedepends = libelf
options = !strip
source = https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz
- source = https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.14.128.xz
+ source = https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.14.129.xz
source = config
source = 60-linux.hook
source = 90-linux.hook
@@ -21,7 +21,7 @@ pkgbase = linux-lts414
source = 0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch
source = 0003-Revert-drm-i915-edp-Allow-alternate-fixed-mode-for-e.patch
sha256sums = f81d59477e90a130857ce18dc02f4fbe5725854911db1e7ba770c7cd350f96a7
- sha256sums = 3b067d3e6121ea3449596abddc00a349b1754860d5e892a65c467f23eaec20ac
+ sha256sums = 7f64e22f9db25c555ef38be0be3fbec4d35482dd80dff96f274a2994d32aec44
sha256sums = 110d716c119321de712640d683124042ddcbdcac5222645c1b2620a99dd1b00a
sha256sums = ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21
sha256sums = 75f99f5239e03238f88d1a834c50043ec32b1dc568f2cc291b07d04718483919
@@ -37,12 +37,12 @@ pkgname = linux-lts414
depends = kmod
depends = mkinitcpio>=0.7
optdepends = crda: to set the correct wireless channels of your country
- provides = linux=4.14.128
+ provides = linux=4.14.129
backup = etc/mkinitcpio.d/linux-lts414.preset
pkgname = linux-lts414-headers
pkgdesc = Header files and scripts for building modules for Linux-lts414 kernel
- provides = linux-headers=4.14.128
+ provides = linux-headers=4.14.129
pkgname = linux-lts414-docs
pkgdesc = Kernel hackers manual - HTML documentation that comes with the Linux-lts414 kernel
diff --git a/PKGBUILD b/PKGBUILD
index 0eb439d5f82c..232ba05cd329 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@ set -u
pkgbase=linux-lts414
#pkgbase=linux-lts-custom
_srcname=linux-4.14
-pkgver=4.14.128
+pkgver=4.14.129
pkgrel=1
arch=('x86_64')
url="https://www.kernel.org/"
@@ -26,7 +26,7 @@ validpgpkeys=('ABAF11C65A2970B130ABE3C479BE3E4300411886' # Linus Torvalds <torva
)
# https://www.kernel.org/pub/linux/kernel/v4.x/sha256sums.asc
sha256sums=('f81d59477e90a130857ce18dc02f4fbe5725854911db1e7ba770c7cd350f96a7'
- '3b067d3e6121ea3449596abddc00a349b1754860d5e892a65c467f23eaec20ac'
+ '7f64e22f9db25c555ef38be0be3fbec4d35482dd80dff96f274a2994d32aec44'
'110d716c119321de712640d683124042ddcbdcac5222645c1b2620a99dd1b00a'
'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'
'75f99f5239e03238f88d1a834c50043ec32b1dc568f2cc291b07d04718483919'
@@ -63,7 +63,17 @@ prepare() {
patch -Nup1 -i ../0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch
# https://bugs.archlinux.org/task/56711
- patch -Np1 -i ../0003-Revert-drm-i915-edp-Allow-alternate-fixed-mode-for-e.patch
+ patch -Nup1 -i ../0003-Revert-drm-i915-edp-Allow-alternate-fixed-mode-for-e.patch
+
+ # Local or private patches
+ shopt -s nullglob
+ local _lpatch
+ for _lpatch in "${startdir}"/*.localpatch; do
+ set +u; msg2 "Local patch: ${_lpatch##*/}"; set -u
+ patch -Nup1 -i "${_lpatch}"
+ done
+ unset _lpatch
+ shopt -u nullglob
declare -A _config=([x86_64]='config')
cat "${srcdir}/${_config[${CARCH}]}" > './.config'