Date: Saturday, August 25, 2018 @ 16:00:04 Author: anthraxx Revision: 333008
upgpkg: linux-hardened 4.18.5.a-1 Modified: linux-hardened/trunk/PKGBUILD ----------+ PKGBUILD | 30 +++++++++++++++++++++++++----- 1 file changed, 25 insertions(+), 5 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2018-08-25 14:33:40 UTC (rev 333007) +++ PKGBUILD 2018-08-25 16:00:04 UTC (rev 333008) @@ -4,7 +4,7 @@ # Contributor: Thomas Baechler <[email protected]> pkgbase=linux-hardened -_pkgver=4.18.2 +_pkgver=4.18.5 _hardenedver=a _srcname=linux-${_pkgver} pkgver=${_pkgver}.${_hardenedver} @@ -12,7 +12,7 @@ url='https://github.com/anthraxx/linux-hardened' arch=('x86_64') license=('GPL2') -makedepends=('xmlto' 'kmod' 'inetutils' 'bc' 'libelf') +makedepends=('xmlto' 'kmod' 'inetutils' 'bc' 'libelf' 'python-sphinx' 'graphviz') options=('!strip') source=(https://www.kernel.org/pub/linux/kernel/v4.x/linux-${_pkgver}.tar.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-${_pkgver}.tar.sign @@ -25,9 +25,9 @@ increase-timeout-in-lspcon_wait_mode.patch ) replaces=('linux-grsec') -sha256sums=('d56082dd9d895c32ab5d898096abb3e7f5525bb0a603e5c3be9f83921484eda5' +sha256sums=('fb090a3680eddf6f10bf895bc3075bd3f830e3d2429ce469982db5a28df647bd' 'SKIP' - 'fc50a9b4c735229161bca195e4a3d9c6815e2884a7dcfcf6b7738bfe08bef6ce' + 'a06238ea0ce66d090fa899d6951c9d40fa993c7b4975088dded2c1e660c1ff69' 'SKIP' '7d91d3e22235724e4d1b3eafaf3e592ceb3f8344a7761f8b3ce0909e3ed17747' 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21' @@ -72,7 +72,7 @@ build() { cd $_srcname - make bzImage modules + make bzImage modules htmldocs } _package() { @@ -203,6 +203,10 @@ esac done < <(find "$builddir" -type f -perm -u+x ! -name vmlinux -print0) + msg2 "Adding symlink..." + mkdir -p "$pkgdir/usr/src" + ln -sr "$builddir" "$pkgdir/usr/src/$pkgbase-$pkgver" + msg2 "Fixing permissions..." chmod -Rc u=rwX,go=rX "$pkgdir" } @@ -218,6 +222,22 @@ mkdir -p "$builddir" cp -t "$builddir" -a Documentation + msg2 "Removing doctrees..." + rm -r "$builddir/Documentation/output/.doctrees" + + msg2 "Moving HTML docs..." + local src dst + while read -rd '' src; do + dst="$builddir/Documentation/${src#$builddir/Documentation/output/}" + mkdir -p "${dst%/*}" + mv "$src" "$dst" + rmdir -p --ignore-fail-on-non-empty "${src%/*}" + done < <(find "$builddir/Documentation/output" -type f -print0) + + msg2 "Adding symlink..." + mkdir -p "$pkgdir/usr/share/doc" + ln -sr "$builddir/Documentation" "$pkgdir/usr/share/doc/$pkgbase" + msg2 "Fixing permissions..." chmod -Rc u=rwX,go=rX "$pkgdir" }
