summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Severance2023-08-31 14:18:56 -0400
committerChris Severance2023-08-31 14:18:56 -0400
commitf3e7a429a30f9f25f1955d0fd24b8a8b38a18f6f (patch)
treefc5c179638c119469a021410e4eb0555e7211ea1
parent872853a09137d32f1b3193ac8f92951f93ad7cc0 (diff)
downloadaur-f3e7a429a30f9f25f1955d0fd24b8a8b38a18f6f.tar.gz
autu: Update to 5.10.193-1
-rw-r--r--.SRCINFO13
-rw-r--r--0003-Sphinx-7.2.2-8.0-PosixPath.patch24
-rw-r--r--PKGBUILD15
3 files changed, 41 insertions, 11 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 6e203f2aa4fe..1a97ed1f87eb 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = linux-lts510
pkgdesc = LTS 5.10 Linux
- pkgver = 5.10.191
+ pkgver = 5.10.193
pkgrel = 1
url = https://www.kernel.org/
arch = x86_64
@@ -20,20 +20,23 @@ pkgbase = linux-lts510
makedepends = graphviz
makedepends = imagemagick
options = !strip
- source = https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.191.tar.xz
- source = https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.191.tar.sign
+ source = https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.193.tar.xz
+ source = https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.193.tar.sign
source = config
source = 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch
+ source = 0003-Sphinx-7.2.2-8.0-PosixPath.patch
validpgpkeys = ABAF11C65A2970B130ABE3C479BE3E4300411886
validpgpkeys = 647F28654894E3BD457199BE38DBBDC86092693E
- md5sums = 621a955bc0b89c3ae8facc62a828bf9f
+ md5sums = 28cb3c45440a60cc4c85c16541eeaa05
md5sums = SKIP
md5sums = 8b8fa773fe9c7938a76ba07ca2933ed8
md5sums = d31360693fb06a0d69c1f126350baa6d
- sha256sums = cb54660ed4917cc4f9a9ab93d117defefd8bcbe745ec6082d909bbfd5ae962c2
+ md5sums = c1f10e50f7ca23d07ae83ae6252854d5
+ sha256sums = bd4036da47612d0d8c5f8c43e7700e8c996ae3b51084aa8fc6530c9d00f1ded0
sha256sums = SKIP
sha256sums = ddc8d7c604a2f8373a25674d06cd377fdf80adca9bd426f4c8a50f3d52403001
sha256sums = 96a72e1652314215da7140956c3abcf495cafd00811eda3cf4ce03ec5f791f1e
+ sha256sums = 453ad77883c50b5d5b1373241a5a27a5f7cdc11c5b66dd929338fc622de6cf14
pkgname = linux-lts510
pkgdesc = The LTS 5.10 Linux kernel and modules
diff --git a/0003-Sphinx-7.2.2-8.0-PosixPath.patch b/0003-Sphinx-7.2.2-8.0-PosixPath.patch
new file mode 100644
index 000000000000..3f2bca74fed3
--- /dev/null
+++ b/0003-Sphinx-7.2.2-8.0-PosixPath.patch
@@ -0,0 +1,24 @@
+diff -ru a/Documentation/sphinx/kerneldoc.py b/Documentation/sphinx/kerneldoc.py
+--- a/Documentation/sphinx/kerneldoc.py 2023-08-16 12:21:03.000000000 -0400
++++ b/Documentation/sphinx/kerneldoc.py 2023-08-22 10:54:28.646583489 -0400
+@@ -148,7 +148,7 @@
+ lineoffset = int(match.group(1)) - 1
+ # we must eat our comments since the upset the markup
+ else:
+- doc = env.srcdir + "/" + env.docname + ":" + str(self.lineno)
++ doc = str(env.srcdir) + "/" + str(env.docname) + ":" + str(self.lineno)
+ result.append(line, doc + ": " + filename, lineoffset)
+ lineoffset += 1
+
+diff -ru a/Documentation/sphinx/kfigure.py b/Documentation/sphinx/kfigure.py
+--- a/Documentation/sphinx/kfigure.py 2023-08-16 12:21:03.000000000 -0400
++++ b/Documentation/sphinx/kfigure.py 2023-08-22 10:54:07.629742553 -0400
+@@ -266,7 +266,7 @@
+ if dst_fname:
+ # the builder needs not to copy one more time, so pop it if exists.
+ translator.builder.images.pop(img_node['uri'], None)
+- _name = dst_fname[len(translator.builder.outdir) + 1:]
++ _name = dst_fname[len(str(translator.builder.outdir)) + 1:]
+
+ if isNewer(dst_fname, src_fname):
+ kernellog.verbose(app,
diff --git a/PKGBUILD b/PKGBUILD
index d1348e2357c8..57d3cd375821 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
# Contributor: Andreas Radke <andyrtr@archlinux.org>
pkgbase=linux-lts510
-pkgver=5.10.191
+pkgver=5.10.193
pkgrel=1
pkgdesc='LTS 5.10 Linux'
url="https://www.kernel.org/"
@@ -21,20 +21,23 @@ source=(
0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch
# https://build.opensuse.org/package/show/home:curb:ArchLinux/linux-lts510
#0002-reorganize-gimple-includes-for-GCC-13.patch # https://lore.kernel.org/lkml/20230118202355.never.520-kees@kernel.org/raw
+ '0003-Sphinx-7.2.2-8.0-PosixPath.patch'
)
validpgpkeys=(
'ABAF11C65A2970B130ABE3C479BE3E4300411886' # Linus Torvalds
'647F28654894E3BD457199BE38DBBDC86092693E' # Greg Kroah-Hartman
)
# https://www.kernel.org/pub/linux/kernel/v5.x/sha256sums.asc
-md5sums=('621a955bc0b89c3ae8facc62a828bf9f'
+md5sums=('28cb3c45440a60cc4c85c16541eeaa05'
'SKIP'
'8b8fa773fe9c7938a76ba07ca2933ed8'
- 'd31360693fb06a0d69c1f126350baa6d')
-sha256sums=('cb54660ed4917cc4f9a9ab93d117defefd8bcbe745ec6082d909bbfd5ae962c2'
+ 'd31360693fb06a0d69c1f126350baa6d'
+ 'c1f10e50f7ca23d07ae83ae6252854d5')
+sha256sums=('bd4036da47612d0d8c5f8c43e7700e8c996ae3b51084aa8fc6530c9d00f1ded0'
'SKIP'
'ddc8d7c604a2f8373a25674d06cd377fdf80adca9bd426f4c8a50f3d52403001'
- '96a72e1652314215da7140956c3abcf495cafd00811eda3cf4ce03ec5f791f1e')
+ '96a72e1652314215da7140956c3abcf495cafd00811eda3cf4ce03ec5f791f1e'
+ '453ad77883c50b5d5b1373241a5a27a5f7cdc11c5b66dd929338fc622de6cf14')
export KBUILD_BUILD_HOST=archlinux
export KBUILD_BUILD_USER=$pkgbase
@@ -68,7 +71,7 @@ prepare() {
build() {
cd $_srcname
make all
- make htmldocs
+ make htmldocs SPHINXOPTS='-T'
}
_package() {