[arch-commits] Commit in bash-completion/repos (3 files)

Bartłomiej Piotrowski bpiotrowski at nymeria.archlinux.org
Mon Mar 17 11:04:39 UTC 2014


    Date: Monday, March 17, 2014 @ 12:04:39
  Author: bpiotrowski
Revision: 208062

archrelease: copy trunk to testing-any

Added:
  bash-completion/repos/testing-any/
  bash-completion/repos/testing-any/PKGBUILD
    (from rev 208061, bash-completion/trunk/PKGBUILD)
  bash-completion/repos/testing-any/bash-4.3.patch
    (from rev 208061, bash-completion/trunk/bash-4.3.patch)

----------------+
 PKGBUILD       |   57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 bash-4.3.patch |   27 ++++++++++++++++++++++++++
 2 files changed, 84 insertions(+)

Copied: bash-completion/repos/testing-any/PKGBUILD (from rev 208061, bash-completion/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD	                        (rev 0)
+++ testing-any/PKGBUILD	2014-03-17 11:04:39 UTC (rev 208062)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Eric Bélanger <eric at archlinux.org>
+
+pkgname=bash-completion
+pkgver=2.1
+pkgrel=3
+pkgdesc="Programmable completion for the bash shell"
+arch=('any')
+url="http://bash-completion.alioth.debian.org/"
+license=('GPL')
+depends=('bash')
+options=('!emptydirs' '!makeflags')
+source=(http://bash-completion.alioth.debian.org/files/${pkgname}-${pkgver}.tar.bz2
+        bash-4.3.patch)
+md5sums=('4e2a9f11a4042a38ee79ddcd048e8b9e'
+         'f964553680d88a89dbe8a7275e94bd3b')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i ../bash-4.3.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+# bash-completion is sourced in /etc/bash.bashrc so that non-bash shell don't source it
+  rm "${pkgdir}/etc/profile.d/bash_completion.sh"
+
+# remove Slackware's makepkg completion
+  rm "${pkgdir}/usr/share/bash-completion/completions/makepkg"
+
+# provided by networkmanager
+  rm "${pkgdir}/usr/share/bash-completion/completions/nmcli"
+
+# provided by util-linux
+  rm "${pkgdir}/usr/share/bash-completion/completions/cal"
+  rm "${pkgdir}/usr/share/bash-completion/completions/chsh"
+  rm "${pkgdir}/usr/share/bash-completion/completions/dmesg"
+  rm "${pkgdir}/usr/share/bash-completion/completions/eject"
+  rm "${pkgdir}/usr/share/bash-completion/completions/hd"
+  rm "${pkgdir}/usr/share/bash-completion/completions/hexdump"
+  rm "${pkgdir}/usr/share/bash-completion/completions/hwclock"
+  rm "${pkgdir}/usr/share/bash-completion/completions/ionice"
+  rm "${pkgdir}/usr/share/bash-completion/completions/look"
+  rm "${pkgdir}/usr/share/bash-completion/completions/ncal"
+  rm "${pkgdir}/usr/share/bash-completion/completions/newgrp"
+  rm "${pkgdir}/usr/share/bash-completion/completions/renice"
+  rm "${pkgdir}/usr/share/bash-completion/completions/rtcwake"
+  rm "${pkgdir}/usr/share/bash-completion/completions/su"
+}

Copied: bash-completion/repos/testing-any/bash-4.3.patch (from rev 208061, bash-completion/trunk/bash-4.3.patch)
===================================================================
--- testing-any/bash-4.3.patch	                        (rev 0)
+++ testing-any/bash-4.3.patch	2014-03-17 11:04:39 UTC (rev 208062)
@@ -0,0 +1,27 @@
+--- a/bash_completion	2014-03-09 17:38:14 +0000
++++ b/bash_completion	2014-03-13 23:26:44 +0000
+@@ -536,13 +536,23 @@
+ # @param $2  Name of variable to return result to
+ _quote_readline_by_ref()
+ {
+-    if [[ $1 == \'* ]]; then
++    if [ -z "$1" ]; then
++        # avoid quoting if empty
++        printf -v $2 %s "$1"
++    elif [[ $1 == \'* ]]; then
+         # Leave out first character
+         printf -v $2 %s "${1:1}"
++    elif [[ $1 == ~* ]]; then
++        # avoid escaping first ~
++        printf -v $2 ~%q "${1:1}"
+     else
+         printf -v $2 %q "$1"
+     fi
+ 
++    # Replace double escaping ( \\ ) by single ( \ )
++    # This happens always when argument is already escaped at cmdline,
++    # and passed to this function as e.g.: file\ with\ spaces
++    [[ ${!2} == *\\* ]] && printf -v $2 %s "${1//\\\\/\\}"
+     # If result becomes quoted like this: $'string', re-evaluate in order to
+     # drop the additional quoting.  See also: http://www.mail-archive.com/
+     # bash-completion-devel at lists.alioth.debian.org/msg01942.html




More information about the arch-commits mailing list