[arch-commits] Commit in texinfo/repos (4 files)

Andreas Radke andyrtr at archlinux.org
Sun Apr 26 10:55:40 UTC 2020


    Date: Sunday, April 26, 2020 @ 10:55:40
  Author: andyrtr
Revision: 381602

archrelease: copy trunk to testing-x86_64

Added:
  texinfo/repos/testing-x86_64/
  texinfo/repos/testing-x86_64/PKGBUILD
    (from rev 381601, texinfo/trunk/PKGBUILD)
  texinfo/repos/testing-x86_64/texinfo-install.hook
    (from rev 381601, texinfo/trunk/texinfo-install.hook)
  texinfo/repos/testing-x86_64/texinfo-remove.hook
    (from rev 381601, texinfo/trunk/texinfo-remove.hook)

----------------------+
 PKGBUILD             |   38 ++++++++++++++++++++++++++++++++++++++
 texinfo-install.hook |   11 +++++++++++
 texinfo-remove.hook  |   10 ++++++++++
 3 files changed, 59 insertions(+)

Copied: texinfo/repos/testing-x86_64/PKGBUILD (from rev 381601, texinfo/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2020-04-26 10:55:40 UTC (rev 381602)
@@ -0,0 +1,38 @@
+# Maintainer:  Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
+
+pkgname=texinfo
+pkgver=6.7
+pkgrel=3
+pkgdesc='GNU documentation system for on-line information and printed output'
+arch=(x86_64)
+url='https://www.gnu.org/software/texinfo/'
+license=(GPL3)
+groups=(base-devel)
+depends=(ncurses gzip perl sh)
+source=(https://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}
+        texinfo-install.hook
+        texinfo-remove.hook)
+md5sums=('d4c5d8cc84438c5993ec5163a59522a6'
+         'SKIP'
+         '38b77649656db93b3c35f2e653ffc858'
+         '21205a4b3b5235649490600c739d3c1a')
+validpgpkeys=('EAF669B31E31E1DECBD11513DDBC579DAB37FBA9') # Gavin Smith
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  make -C $pkgname-$pkgver check
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+
+  install -dm755 "$pkgdir"/usr/share/libalpm/hooks/
+  install -m644 texinfo-{install,remove}.hook "$pkgdir"/usr/share/libalpm/hooks/
+}

Copied: texinfo/repos/testing-x86_64/texinfo-install.hook (from rev 381601, texinfo/trunk/texinfo-install.hook)
===================================================================
--- testing-x86_64/texinfo-install.hook	                        (rev 0)
+++ testing-x86_64/texinfo-install.hook	2020-04-26 10:55:40 UTC (rev 381602)
@@ -0,0 +1,11 @@
+[Trigger]
+Type = Path
+Operation = Install
+Operation = Upgrade
+Target = usr/share/info/*
+
+[Action]
+Description = Updating the info directory file...
+When = PostTransaction
+Exec = /bin/sh -c 'while read -r f; do install-info "$f" /usr/share/info/dir 2> /dev/null; done'
+NeedsTargets

Copied: texinfo/repos/testing-x86_64/texinfo-remove.hook (from rev 381601, texinfo/trunk/texinfo-remove.hook)
===================================================================
--- testing-x86_64/texinfo-remove.hook	                        (rev 0)
+++ testing-x86_64/texinfo-remove.hook	2020-04-26 10:55:40 UTC (rev 381602)
@@ -0,0 +1,10 @@
+[Trigger]
+Type = Path
+Operation = Remove
+Target = usr/share/info/*
+
+[Action]
+Description = Removing old entries from the info directory file...
+When = PreTransaction
+Exec = /bin/sh -c 'while read -r f; do install-info --delete "$f" /usr/share/info/dir 2> /dev/null; done'
+NeedsTargets



More information about the arch-commits mailing list