summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandyrtr <andyrtr@eb2447ed-0c53-47e4-bac8-5bc4a241df78>2019-11-24 13:58:52 +0000
committerandyrtr <andyrtr@eb2447ed-0c53-47e4-bac8-5bc4a241df78>2019-11-24 13:58:52 +0000
commit15b7a109a241020500ea825f5bd09af505c90f6f (patch)
treef9367ef30912cfc9c07719ee7ddc8f5ff357fbf8
parent3cc34ef7fa27eb37e4c0837b981751cd6c7c92a9 (diff)
db-move: moved man-pages from [testing] to [core] (any)
git-svn-id: file:///srv/repos/svn-packages/svn@369719 eb2447ed-0c53-47e4-bac8-5bc4a241df78
-rw-r--r--man-pages/repos/core-any/PKGBUILD6
-rw-r--r--man-pages/repos/testing-any/PKGBUILD61
2 files changed, 3 insertions, 64 deletions
diff --git a/man-pages/repos/core-any/PKGBUILD b/man-pages/repos/core-any/PKGBUILD
index f7846287eb9..2092f0fb80f 100644
--- a/man-pages/repos/core-any/PKGBUILD
+++ b/man-pages/repos/core-any/PKGBUILD
@@ -1,9 +1,9 @@
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
pkgname=man-pages
-pkgver=5.03
+pkgver=5.04
_posixver=2013-a
-pkgrel=2
+pkgrel=1
pkgdesc="Linux man pages"
arch=('any')
license=('GPL' 'custom')
@@ -11,7 +11,7 @@ url="http://man7.org/linux/man-pages/index.html"
source=(https://www.kernel.org/pub/linux/docs/man-pages/$pkgname-$pkgver.tar.{xz,sign}
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=('7fe13aeaf9081f4c134c711270a66e264dce24dae3df7e9fec3dd18c8a485120'
+sha256sums=('7d04fb1094bb7bd218cf7a9e4493871903576054e7d1e89d8f06cb4584e6a4af'
'SKIP'
'19633a5c75ff7deab35b1d2c3d5b7748e7bd4ef4ab598b647bb7e7f60b90a808'
'SKIP')
diff --git a/man-pages/repos/testing-any/PKGBUILD b/man-pages/repos/testing-any/PKGBUILD
deleted file mode 100644
index 2092f0fb80f..00000000000
--- a/man-pages/repos/testing-any/PKGBUILD
+++ /dev/null
@@ -1,61 +0,0 @@
-# Maintainer: Andreas Radke <andyrtr@archlinux.org>
-
-pkgname=man-pages
-pkgver=5.04
-_posixver=2013-a
-pkgrel=1
-pkgdesc="Linux man pages"
-arch=('any')
-license=('GPL' 'custom')
-url="http://man7.org/linux/man-pages/index.html"
-source=(https://www.kernel.org/pub/linux/docs/man-pages/$pkgname-$pkgver.tar.{xz,sign}
- 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=('7d04fb1094bb7bd218cf7a9e4493871903576054e7d1e89d8f06cb4584e6a4af'
- 'SKIP'
- '19633a5c75ff7deab35b1d2c3d5b7748e7bd4ef4ab598b647bb7e7f60b90a808'
- 'SKIP')
-validpgpkeys=('E522595B52EDA4E6BFCCCB5E856199113A35CE5E') #Michael Kerrisk (Linux man-pages maintainer) <mtk.manpages@gmail.com>
-
-build() {
- cd "${srcdir}"/$pkgname-$pkgver
-
- # move the posix pages
- mkdir -p "${srcdir}"/$pkgname-$pkgver/man0
- for sect in 0 1 3; do
- sed -i "/^\.so /s/man${sect}p/man$sect/" "${srcdir}/$pkgname-posix-${_posixver}/man${sect}p"/*
- mv -iv "${srcdir}/$pkgname-posix-${_posixver}/man${sect}p"/* "${srcdir}/$pkgname-$pkgver/man$sect/"
- done
-}
-
-package() {
- cd "${srcdir}"/$pkgname-$pkgver
-
- make prefix="${pkgdir}"/usr install
-
- # 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"
-
- cd "${pkgdir}"/usr/share/man
- # included in coreutils
- rm -f man1/{chgrp,chmod,chown,cp,dir,dd}.1
- rm -f man1/{df,dircolors,du,install,ln,ls}.1
- rm -f man1/{mkdir,mkfifo,mknod,mv,rm,rmdir}.1
- rm -f man1/{touch,vdir}.1
- # included in shadow
- rm -f man5/passwd.5
- rm -f man3/getspnam.3
- # included in diffutils
- rm -f man1/diff.1
- # included in xf86-input-mouse
- rm -f man4/mouse.4
- # included in attr
- rm -f man5/attr.5
- # included in lirc
- rm -f man4/lirc.4
- # included in keyutils
- rm -f man7/{keyrings.7,persistent-keyring.7,process-keyring.7,session-keyring.7,thread-keyring.7,user-keyring.7,user-session-keyring.7}
- # included in tzdata
- rm -f man5/tzfile.5 man8/{tzselect,zdump,zic}.8
-}