summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorBalazs Vinarz2022-12-04 22:45:08 +0100
committerBalazs Vinarz2022-12-04 22:45:08 +0100
commit5292cd206c3db80f8216bec7a7059e59786b7bac (patch)
tree1846367509f7f5abfb6d47c33d1191cc68a969eb
parent7125939bf778795244e6001260dab7817c91a597 (diff)
downloadaur-linux-ck-lts.tar.gz
bump to version 5.10.157, remove gcc patch for subcmd-util
-rw-r--r--.SRCINFO7
-rw-r--r--0003-gcc12.patch31
-rw-r--r--PKGBUILD3
3 files changed, 4 insertions, 37 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 628cb39014a6..cce78fb13a9a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,5 +1,5 @@
pkgbase = linux-ck-lts
- pkgver = 5.10.90
+ pkgver = 5.10.157
pkgrel = 2
url = https://wiki.archlinux.org/index.php/Linux-ck
arch = x86_64
@@ -12,14 +12,13 @@ pkgbase = linux-ck-lts
makedepends = tar
makedepends = xz
options = !strip
- source = https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.10.90.tar.xz
- source = https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.10.90.tar.sign
+ source = https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.10.157.tar.xz
+ source = https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.10.157.tar.sign
source = config
source = enable_additional_cpu_optimizations-20201113.tar.gz::https://github.com/graysky2/kernel_compiler_patch/archive/20201113.tar.gz
source = http://ck.kolivas.org/patches/5.0/5.10/5.10-ck1/patch-5.10-ck1.xz
source = 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch
source = 0002-HID-quirks-Add-Apple-Magic-Trackpad-2-to-hid_have_sp.patch
- source = 0003-gcc12.patch
validpgpkeys = ABAF11C65A2970B130ABE3C479BE3E4300411886
validpgpkeys = 647F28654894E3BD457199BE38DBBDC86092693E
b2sums = 8ee89f5cac2044e6cd9ff3be25cd59450cdab89aaeccdc90cc9dae4a121d719e0cfd71b9c80818a8a2ceb28f47d17f518aab5691ddbba25b65f57fe147543801
diff --git a/0003-gcc12.patch b/0003-gcc12.patch
deleted file mode 100644
index 797b251e7fcc..000000000000
--- a/0003-gcc12.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
-Cc: Jakub Jelinek <jakub@redhat.com>
-
----
- tools/lib/subcmd/subcmd-util.h | 9 ++++-----
- 1 file changed, 4 insertions(+), 5 deletions(-)
-
-diff --git a/tools/lib/subcmd/subcmd-util.h b/tools/lib/subcmd/subcmd-util.h
-index 794a375dad36..7009fc176636 100644
---- a/tools/lib/subcmd/subcmd-util.h
-+++ b/tools/lib/subcmd/subcmd-util.h
-@@ -49,13 +49,12 @@ static NORETURN inline void die(const char *err, ...)
-
- static inline void *xrealloc(void *ptr, size_t size)
- {
-- void *ret = realloc(ptr, size);
-- if (!ret && !size)
-- ret = realloc(ptr, 1);
-+ void *ret;
-+ if (!size)
-+ size = 1;
-+ ret = realloc(ptr, size);
- if (!ret) {
- ret = realloc(ptr, size);
-- if (!ret && !size)
-- ret = realloc(ptr, 1);
- if (!ret)
- die("Out of memory, realloc failed");
- }
---
-2.34.1
diff --git a/PKGBUILD b/PKGBUILD
index 89d02003ae57..4c5a8697ef19 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -65,7 +65,7 @@ _localmodcfg=yes
### IMPORTANT: Do no edit below this line unless you know what you're doing
pkgbase=linux-ck-lts
-pkgver=5.10.90
+pkgver=5.10.157
pkgrel=2
_ckpatchversion=1
arch=(x86_64)
@@ -84,7 +84,6 @@ source=(
"http://ck.kolivas.org/patches/5.0/5.10/5.10-ck${_ckpatchversion}/$_ckpatch.xz"
0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch
0002-HID-quirks-Add-Apple-Magic-Trackpad-2-to-hid_have_sp.patch
- 0003-gcc12.patch
)
validpgpkeys=(
'ABAF11C65A2970B130ABE3C479BE3E4300411886' # Linus Torvalds