Date: Wednesday, October 19, 2022 @ 05:58:15
Author: andyrtr
Revision: 458395
archrelease: copy trunk to testing-any
Added:
man-pages/repos/testing-any/
man-pages/repos/testing-any/PKGBUILD
(from rev 458394, man-pages/trunk/PKGBUILD)
man-pages/repos/testing-any/keys/
----------+
PKGBUILD | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
Copied: man-pages/repos/testing-any/PKGBUILD (from rev 458394,
man-pages/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD (rev 0)
+++ testing-any/PKGBUILD 2022-10-19 05:58:15 UTC (rev 458395)
@@ -0,0 +1,54 @@
+# Maintainer: Andreas Radke <[email protected]>
+
+pkgname=man-pages
+#_commit=324e1d8289644e5159d43a04945df0841c45b966 # 2022-10-09 = 6.00 release
+pkgver=6.01
+_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=('8be5177b2788c480a984517947d602ffaa64edeaed83edf4bd04f35163cb5c0b'
+ 'SKIP'
+ 'ce67bb25b5048b20dad772e405a83f4bc70faf051afa289361c81f9660318bc3'
+ 'SKIP')
+#sha256sums=('SKIP'
+# 'ce67bb25b5048b20dad772e405a83f4bc70faf051afa289361c81f9660318bc3'
+# 'SKIP')
+validpgpkeys=('E522595B52EDA4E6BFCCCB5E856199113A35CE5E') # Michael Kerrisk
(Linux man-pages maintainer) <[email protected]>
+validpgpkeys+=('A9348594CE31283A826FBDD8D57633D441E25BB5') # Alejandro Colomar
Andres <[email protected]>
+
+prepare() {
+ cd "${srcdir}"/$pkgname-$pkgver
+
+ # 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"
+}