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

Bartłomiej Piotrowski bpiotrowski at archlinux.org
Mon Feb 29 15:11:45 UTC 2016


    Date: Monday, February 29, 2016 @ 16:11:44
  Author: bpiotrowski
Revision: 260399

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  texinfo/repos/testing-i686/
  texinfo/repos/testing-i686/PKGBUILD
    (from rev 260398, texinfo/trunk/PKGBUILD)
  texinfo/repos/testing-i686/texinfo-6.0-disable-failing-info-test.patch
    (from rev 260398, texinfo/trunk/texinfo-6.0-disable-failing-info-test.patch)
  texinfo/repos/testing-i686/texinfo.install
    (from rev 260398, texinfo/trunk/texinfo.install)
  texinfo/repos/testing-x86_64/
  texinfo/repos/testing-x86_64/PKGBUILD
    (from rev 260398, texinfo/trunk/PKGBUILD)
  texinfo/repos/testing-x86_64/texinfo-6.0-disable-failing-info-test.patch
    (from rev 260398, texinfo/trunk/texinfo-6.0-disable-failing-info-test.patch)
  texinfo/repos/testing-x86_64/texinfo.install
    (from rev 260398, texinfo/trunk/texinfo.install)

------------------------------------------------------------+
 testing-i686/PKGBUILD                                      |   40 +++++++++++
 testing-i686/texinfo-6.0-disable-failing-info-test.patch   |   11 +++
 testing-i686/texinfo.install                               |   21 +++++
 testing-x86_64/PKGBUILD                                    |   40 +++++++++++
 testing-x86_64/texinfo-6.0-disable-failing-info-test.patch |   11 +++
 testing-x86_64/texinfo.install                             |   21 +++++
 6 files changed, 144 insertions(+)

Copied: texinfo/repos/testing-i686/PKGBUILD (from rev 260398, texinfo/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2016-02-29 15:11:44 UTC (rev 260399)
@@ -0,0 +1,40 @@
+# $Id$
+# 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.1
+pkgrel=1
+pkgdesc='GNU documentation system for on-line information and printed output'
+arch=('i686' 'x86_64')
+url='http://www.gnu.org/software/texinfo/'
+license=('GPL3')
+groups=('base' 'base-devel')
+depends=('ncurses' 'findutils' 'gzip' 'perl' 'sh')
+install=texinfo.install
+source=(ftp://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}
+        texinfo-6.0-disable-failing-info-test.patch)
+md5sums=('1d7ec1888fae00730693597852b00cde'
+         'SKIP'
+         '8bfaa21315a8a6184811de8478005d22')
+validpgpkeys=('EAF669B31E31E1DECBD11513DDBC579DAB37FBA9') # Gavin Smith
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../texinfo-6.0-disable-failing-info-test.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  make -C $pkgname-$pkgver check
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+}

Copied: texinfo/repos/testing-i686/texinfo-6.0-disable-failing-info-test.patch (from rev 260398, texinfo/trunk/texinfo-6.0-disable-failing-info-test.patch)
===================================================================
--- testing-i686/texinfo-6.0-disable-failing-info-test.patch	                        (rev 0)
+++ testing-i686/texinfo-6.0-disable-failing-info-test.patch	2016-02-29 15:11:44 UTC (rev 260399)
@@ -0,0 +1,11 @@
+diff -up texinfo-6.0/info/Makefile.in.orig texinfo-6.0/info/Makefile.in
+--- texinfo-6.0/info/Makefile.in.orig	2015-07-14 13:17:44.298882856 +0200
++++ texinfo-6.0/info/Makefile.in	2015-07-14 13:18:13.082004108 +0200
+@@ -1695,7 +1695,6 @@ TESTS = \
+ 	t/end-of-line.sh \
+ 	t/goal-column.sh \
+ 	t/star-note-non-whitespace.sh \
+-	t/c-u-m-x-scroll-forward.sh \
+ 	t/last-no-history.sh \
+ 	t/split-footnotes.sh \
+ 	t/window-split-dir.sh \

Copied: texinfo/repos/testing-i686/texinfo.install (from rev 260398, texinfo/trunk/texinfo.install)
===================================================================
--- testing-i686/texinfo.install	                        (rev 0)
+++ testing-i686/texinfo.install	2016-02-29 15:11:44 UTC (rev 260399)
@@ -0,0 +1,21 @@
+infodir=usr/share/info
+filelist=(info.info info-stnd.info texinfo.info{,-1,-2,-3})
+
+post_install() {
+  # Scan *all* info files on install
+  for file in $(find $infodir -type f ! -name dir); do
+      install-info $file $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  for file in ${filelist[@]}; do
+    install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+
+pre_remove() {
+  for file in ${filelist[@]}; do
+    install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}

Copied: texinfo/repos/testing-x86_64/PKGBUILD (from rev 260398, texinfo/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2016-02-29 15:11:44 UTC (rev 260399)
@@ -0,0 +1,40 @@
+# $Id$
+# 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.1
+pkgrel=1
+pkgdesc='GNU documentation system for on-line information and printed output'
+arch=('i686' 'x86_64')
+url='http://www.gnu.org/software/texinfo/'
+license=('GPL3')
+groups=('base' 'base-devel')
+depends=('ncurses' 'findutils' 'gzip' 'perl' 'sh')
+install=texinfo.install
+source=(ftp://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}
+        texinfo-6.0-disable-failing-info-test.patch)
+md5sums=('1d7ec1888fae00730693597852b00cde'
+         'SKIP'
+         '8bfaa21315a8a6184811de8478005d22')
+validpgpkeys=('EAF669B31E31E1DECBD11513DDBC579DAB37FBA9') # Gavin Smith
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../texinfo-6.0-disable-failing-info-test.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  make -C $pkgname-$pkgver check
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+}

Copied: texinfo/repos/testing-x86_64/texinfo-6.0-disable-failing-info-test.patch (from rev 260398, texinfo/trunk/texinfo-6.0-disable-failing-info-test.patch)
===================================================================
--- testing-x86_64/texinfo-6.0-disable-failing-info-test.patch	                        (rev 0)
+++ testing-x86_64/texinfo-6.0-disable-failing-info-test.patch	2016-02-29 15:11:44 UTC (rev 260399)
@@ -0,0 +1,11 @@
+diff -up texinfo-6.0/info/Makefile.in.orig texinfo-6.0/info/Makefile.in
+--- texinfo-6.0/info/Makefile.in.orig	2015-07-14 13:17:44.298882856 +0200
++++ texinfo-6.0/info/Makefile.in	2015-07-14 13:18:13.082004108 +0200
+@@ -1695,7 +1695,6 @@ TESTS = \
+ 	t/end-of-line.sh \
+ 	t/goal-column.sh \
+ 	t/star-note-non-whitespace.sh \
+-	t/c-u-m-x-scroll-forward.sh \
+ 	t/last-no-history.sh \
+ 	t/split-footnotes.sh \
+ 	t/window-split-dir.sh \

Copied: texinfo/repos/testing-x86_64/texinfo.install (from rev 260398, texinfo/trunk/texinfo.install)
===================================================================
--- testing-x86_64/texinfo.install	                        (rev 0)
+++ testing-x86_64/texinfo.install	2016-02-29 15:11:44 UTC (rev 260399)
@@ -0,0 +1,21 @@
+infodir=usr/share/info
+filelist=(info.info info-stnd.info texinfo.info{,-1,-2,-3})
+
+post_install() {
+  # Scan *all* info files on install
+  for file in $(find $infodir -type f ! -name dir); do
+      install-info $file $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  for file in ${filelist[@]}; do
+    install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+
+pre_remove() {
+  for file in ${filelist[@]}; do
+    install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}



More information about the arch-commits mailing list