[arch-commits] Commit in readline/repos (6 files)

Bartłomiej Piotrowski bpiotrowski at archlinux.org
Mon Jan 30 07:29:38 UTC 2017


    Date: Monday, January 30, 2017 @ 07:29:38
  Author: bpiotrowski
Revision: 287755

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

Added:
  readline/repos/testing-i686/
  readline/repos/testing-i686/PKGBUILD
    (from rev 287754, readline/trunk/PKGBUILD)
  readline/repos/testing-i686/inputrc
    (from rev 287754, readline/trunk/inputrc)
  readline/repos/testing-x86_64/
  readline/repos/testing-x86_64/PKGBUILD
    (from rev 287754, readline/trunk/PKGBUILD)
  readline/repos/testing-x86_64/inputrc
    (from rev 287754, readline/trunk/inputrc)

-------------------------+
 testing-i686/PKGBUILD   |   63 ++++++++++++++++++++++++++++++++++++++++++++++
 testing-i686/inputrc    |   36 ++++++++++++++++++++++++++
 testing-x86_64/PKGBUILD |   63 ++++++++++++++++++++++++++++++++++++++++++++++
 testing-x86_64/inputrc  |   36 ++++++++++++++++++++++++++
 4 files changed, 198 insertions(+)

Copied: readline/repos/testing-i686/PKGBUILD (from rev 287754, readline/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2017-01-30 07:29:38 UTC (rev 287755)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: judd <jvinet at zeroflux.org>
+
+pkgname=readline
+_basever=7.0
+_patchlevel=003
+pkgver=${_basever}.${_patchlevel}
+pkgrel=1
+pkgdesc='GNU readline library'
+arch=('i686' 'x86_64')
+url='http://tiswww.case.edu/php/chet/readline/rltop.html'
+license=('GPL')
+backup=('etc/inputrc')
+depends=('glibc' 'ncurses' 'libncursesw.so')
+provides=('libhistory.so' 'libreadline.so')
+options=('!emptydirs')
+source=(https://ftp.gnu.org/gnu/readline/readline-$_basever.tar.gz{,.sig}
+        inputrc)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [ $_patchlevel -gt 0 ]; then
+    for (( _p=1; _p <= $((10#${_patchlevel})); _p++ )); do
+        source=(${source[@]} https://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//.}-$(printf "%03d" $_p){,.sig})
+    done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+  for (( _p=1; _p <= $((10#${_patchlevel})); _p++ )); do
+    msg "applying patch readline${_basever//.}-$(printf "%03d" $_p)"
+    patch -p0 -i ../readline${_basever//.}-$(printf "%03d" $_p)
+  done
+
+  # remove RPATH from shared objects (FS#14366)
+  sed -i 's|-Wl,-rpath,$(libdir) ||g' support/shobj-conf
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  # build with -fPIC for x86_64 (FS#15634)
+  [[ $CARCH == "x86_64" ]] && CFLAGS="$CFLAGS -fPIC"
+
+  ./configure --prefix=/usr
+  make SHLIB_LIBS=-lncurses
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  install -Dm644 inputrc "$pkgdir"/etc/inputrc
+}
+
+md5sums=('205b03a87fc83dab653b628c59b9fc91'
+         'SKIP'
+         '58d54966c1191db45973cb3191ac621a'
+         'e299384458a4cbefaaac3f30e9cc2bba'
+         'SKIP'
+         'f9071a353e2fd52a91d32667b23715d6'
+         'SKIP'
+         '03595464cf0283286a6e07f4f01c4a70'
+         'SKIP')

Copied: readline/repos/testing-i686/inputrc (from rev 287754, readline/trunk/inputrc)
===================================================================
--- testing-i686/inputrc	                        (rev 0)
+++ testing-i686/inputrc	2017-01-30 07:29:38 UTC (rev 287755)
@@ -0,0 +1,36 @@
+# do not bell on tab-completion
+#set bell-style none
+
+set meta-flag on
+set input-meta on
+set convert-meta off
+set output-meta on
+
+$if mode=emacs
+
+# for linux console and RH/Debian xterm
+"\e[1~": beginning-of-line
+"\e[4~": end-of-line
+"\e[5~": beginning-of-history
+"\e[6~": end-of-history
+"\e[7~": beginning-of-line
+"\e[3~": delete-char
+"\e[2~": quoted-insert
+"\e[5C": forward-word
+"\e[5D": backward-word
+"\e\e[C": forward-word
+"\e\e[D": backward-word
+"\e[1;5C": forward-word
+"\e[1;5D": backward-word
+
+# for rxvt
+"\e[8~": end-of-line
+
+# for non RH/Debian xterm, can't hurt for RH/DEbian xterm
+"\eOH": beginning-of-line
+"\eOF": end-of-line
+
+# for freebsd console
+"\e[H": beginning-of-line
+"\e[F": end-of-line
+$endif

Copied: readline/repos/testing-x86_64/PKGBUILD (from rev 287754, readline/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2017-01-30 07:29:38 UTC (rev 287755)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: judd <jvinet at zeroflux.org>
+
+pkgname=readline
+_basever=7.0
+_patchlevel=003
+pkgver=${_basever}.${_patchlevel}
+pkgrel=1
+pkgdesc='GNU readline library'
+arch=('i686' 'x86_64')
+url='http://tiswww.case.edu/php/chet/readline/rltop.html'
+license=('GPL')
+backup=('etc/inputrc')
+depends=('glibc' 'ncurses' 'libncursesw.so')
+provides=('libhistory.so' 'libreadline.so')
+options=('!emptydirs')
+source=(https://ftp.gnu.org/gnu/readline/readline-$_basever.tar.gz{,.sig}
+        inputrc)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [ $_patchlevel -gt 0 ]; then
+    for (( _p=1; _p <= $((10#${_patchlevel})); _p++ )); do
+        source=(${source[@]} https://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//.}-$(printf "%03d" $_p){,.sig})
+    done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+  for (( _p=1; _p <= $((10#${_patchlevel})); _p++ )); do
+    msg "applying patch readline${_basever//.}-$(printf "%03d" $_p)"
+    patch -p0 -i ../readline${_basever//.}-$(printf "%03d" $_p)
+  done
+
+  # remove RPATH from shared objects (FS#14366)
+  sed -i 's|-Wl,-rpath,$(libdir) ||g' support/shobj-conf
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  # build with -fPIC for x86_64 (FS#15634)
+  [[ $CARCH == "x86_64" ]] && CFLAGS="$CFLAGS -fPIC"
+
+  ./configure --prefix=/usr
+  make SHLIB_LIBS=-lncurses
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  install -Dm644 inputrc "$pkgdir"/etc/inputrc
+}
+
+md5sums=('205b03a87fc83dab653b628c59b9fc91'
+         'SKIP'
+         '58d54966c1191db45973cb3191ac621a'
+         'e299384458a4cbefaaac3f30e9cc2bba'
+         'SKIP'
+         'f9071a353e2fd52a91d32667b23715d6'
+         'SKIP'
+         '03595464cf0283286a6e07f4f01c4a70'
+         'SKIP')

Copied: readline/repos/testing-x86_64/inputrc (from rev 287754, readline/trunk/inputrc)
===================================================================
--- testing-x86_64/inputrc	                        (rev 0)
+++ testing-x86_64/inputrc	2017-01-30 07:29:38 UTC (rev 287755)
@@ -0,0 +1,36 @@
+# do not bell on tab-completion
+#set bell-style none
+
+set meta-flag on
+set input-meta on
+set convert-meta off
+set output-meta on
+
+$if mode=emacs
+
+# for linux console and RH/Debian xterm
+"\e[1~": beginning-of-line
+"\e[4~": end-of-line
+"\e[5~": beginning-of-history
+"\e[6~": end-of-history
+"\e[7~": beginning-of-line
+"\e[3~": delete-char
+"\e[2~": quoted-insert
+"\e[5C": forward-word
+"\e[5D": backward-word
+"\e\e[C": forward-word
+"\e\e[D": backward-word
+"\e[1;5C": forward-word
+"\e[1;5D": backward-word
+
+# for rxvt
+"\e[8~": end-of-line
+
+# for non RH/Debian xterm, can't hurt for RH/DEbian xterm
+"\eOH": beginning-of-line
+"\eOF": end-of-line
+
+# for freebsd console
+"\e[H": beginning-of-line
+"\e[F": end-of-line
+$endif



More information about the arch-commits mailing list