Update package version to 6.16

This commit is contained in:
2025-11-01 14:23:27 +02:00
parent 1c672d0f2c
commit 15c265f8d1
2 changed files with 7 additions and 9 deletions
+6 -1
View File
@@ -1,6 +1,6 @@
name: man-pages name: man-pages
description: Linux manual pages description: Linux manual pages
version: "6.15" version: "6.16"
revision: 1 revision: 1
url: https://www.kernel.org/doc/man-pages/ url: https://www.kernel.org/doc/man-pages/
license: Linux-man-pages-1-para,Linux-man-pages-copyleft,Linux-man-pages-copyleft-var,Linux-man-pages-copyleft-2-para,BSD-2-Clause,BSD-3-Clause,BSD-4-Clause-UC,GPL1-or-later,GPL2-only,GPL2-or-later,MIT license: Linux-man-pages-1-para,Linux-man-pages-copyleft,Linux-man-pages-copyleft-var,Linux-man-pages-copyleft-2-para,BSD-2-Clause,BSD-3-Clause,BSD-4-Clause-UC,GPL1-or-later,GPL2-only,GPL2-or-later,MIT
@@ -11,3 +11,8 @@ make_depends:
- bash - bash
- coreutils - coreutils
- make - make
downloads:
- url: https://www.kernel.org/pub/linux/docs/man-pages/man-pages-${BPM_PKG_VERSION}.tar.xz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: 8e247abd75cd80809cfe08696c81b8c70690583b045749484b242fb43631d7a3
+1 -8
View File
@@ -2,16 +2,9 @@
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE # BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
DOWNLOAD="https://www.kernel.org/pub/linux/docs/man-pages/man-pages-${BPM_PKG_VERSION}.tar.xz"
FILENAME="${DOWNLOAD##*/}"
# The prepare function is executed in the root of the temp directory # The prepare function is executed in the root of the temp directory
# This function is used for downloading files and putting them into the correct location # This function is used for putting downloaded files to the correct location or applying patches
prepare() { prepare() {
echo "$DOWNLOAD"
wget "$DOWNLOAD"
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
# Libxcrypt manpages are instaleld through the 'libxcrypt' package # Libxcrypt manpages are instaleld through the 'libxcrypt' package
rm "$BPM_SOURCE"/man3/crypt* rm "$BPM_SOURCE"/man3/crypt*
} }