Date: Wednesday, October 12, 2022 @ 14:15:30
Author: andyrtr
Revision: 457773
archrelease: copy trunk to testing-any
Added:
man-pages/repos/testing-any/
man-pages/repos/testing-any/PKGBUILD
(from rev 457772, man-pages/trunk/PKGBUILD)
man-pages/repos/testing-any/keys/
----------+
PKGBUILD | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 55 insertions(+)
Copied: man-pages/repos/testing-any/PKGBUILD (from rev 457772,
man-pages/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD (rev 0)
+++ testing-any/PKGBUILD 2022-10-12 14:15:30 UTC (rev 457773)
@@ -0,0 +1,55 @@
+# Maintainer: Andreas Radke <[email protected]>
+
+pkgname=man-pages
+_commit=324e1d8289644e5159d43a04945df0841c45b966 # 2022-10-09 = 6.00 release
+pkgver=6.00
+_posixver=2017-a
+pkgrel=1
+pkgdesc="Linux man pages"
+arch=('any')
+license=('GPL' 'custom')
+url="https://www.kernel.org/doc/man-pages/"
+makedepends=('man2html' 'git')
+# https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/
+source=(#https://www.kernel.org/pub/linux/docs/man-pages/$pkgname-$pkgver.tar.{xz,sign}
+
"git+https://git.kernel.org/pub/scm/docs/man-pages/man-pages#commit=$_commit" #
no tarball release for 6.00
+
https://www.kernel.org/pub/linux/docs/man-pages/man-pages-posix/$pkgname-posix-${_posixver}.tar.{xz,sign})
+# https://www.kernel.org/pub/linux/docs/man-pages/sha256sums.asc
+#sha256sums=('614dae3efe7dfd480986763a2a2a8179215032a5a4526c0be5e899a25f096b8b'
+# 'SKIP'
+# 'ce67bb25b5048b20dad772e405a83f4bc70faf051afa289361c81f9660318bc3'
+# 'SKIP')
+sha256sums=('SKIP'
+ 'ce67bb25b5048b20dad772e405a83f4bc70faf051afa289361c81f9660318bc3'
+ 'SKIP')
+validpgpkeys=('E522595B52EDA4E6BFCCCB5E856199113A35CE5E') # Michael Kerrisk
(Linux man-pages maintainer) <[email protected]>
+
+prepare() {
+ cd "${srcdir}"/$pkgname #-$pkgver
+
+# sed -i "s|prefix := /usr/local|prefix := /usr|g" Makefile
+
+ # included in shadow
+ rm man5/passwd.5
+ rm man3/getspnam.3
+ # included in tzdata
+ rm man5/tzfile.5 man8/{tzselect,zdump,zic}.8
+ # included in libxcrypt
+ rm man3/crypt*.3
+}
+
+package() {
+ cd "${srcdir}"/$pkgname #-$pkgver
+
+ # install man-pages
+ make DESTDIR="${pkgdir}" prefix=/usr install
+
+ # install posix pages
+ pushd "${srcdir}"/$pkgname-posix-${_posixver%-*}
+ make DESTDIR="${pkgdir}" install
+ popd
+
+ # posix pages have a custom license
+ install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+ install -m644 "${srcdir}"/$pkgname-posix-${_posixver%-*}/POSIX-COPYRIGHT
"${pkgdir}/usr/share/licenses/${pkgname}/POSIX-COPYRIGHT"
+}