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

Levente Polyak anthraxx at archlinux.org
Thu Jul 16 22:26:10 UTC 2015


    Date: Friday, July 17, 2015 @ 00:26:10
  Author: anthraxx
Revision: 137027

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

Added:
  fish/repos/community-i686/PKGBUILD
    (from rev 137026, fish/trunk/PKGBUILD)
  fish/repos/community-i686/fish.install
    (from rev 137026, fish/trunk/fish.install)
  fish/repos/community-x86_64/PKGBUILD
    (from rev 137026, fish/trunk/PKGBUILD)
  fish/repos/community-x86_64/fish.install
    (from rev 137026, fish/trunk/fish.install)
Deleted:
  fish/repos/community-i686/PKGBUILD
  fish/repos/community-i686/fish.install
  fish/repos/community-x86_64/PKGBUILD
  fish/repos/community-x86_64/fish.install

-------------------------------+
 /PKGBUILD                     |   86 ++++++++++++++++++++++++++++++++++++++++
 /fish.install                 |   38 +++++++++++++++++
 community-i686/PKGBUILD       |   39 ------------------
 community-i686/fish.install   |   19 --------
 community-x86_64/PKGBUILD     |   39 ------------------
 community-x86_64/fish.install |   19 --------
 6 files changed, 124 insertions(+), 116 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2015-07-16 21:44:27 UTC (rev 137026)
+++ community-i686/PKGBUILD	2015-07-16 22:26:10 UTC (rev 137027)
@@ -1,39 +0,0 @@
-# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
-# Contributor: Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
-# Contributor: Kaiting Chen <kaitocracy at gmail.com>
-# Contributor: Abhishek Dasgupta <abhidg at gmail.com>
-# Contributor: Eric Belanger <eric at archlinux.org>
-# Contributor: Jan Fader <jan.fader at web.de>
-
-pkgname=fish
-pkgver=2.2.0
-pkgrel=1
-pkgdesc='Smart and user friendly shell intended mostly for interactive use'
-url='http://fishshell.com/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('bc' 'gcc-libs' 'inetutils' 'ncurses' 'which')
-optdepends=('python: for manual page completion parser and web configuration tool')
-makedepends=('doxygen')
-install=fish.install
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/fish-shell/fish-shell/archive/${pkgver}.tar.gz)
-sha512sums=('a1108a8d5c96bcac1b1ced74e6f28287094fa68f28756811f6a6604bde2b4de88d7637da21874b602723fce129a407be7e24affecab468997158442af208308a')
-
-prepare() {
-  cd fish-shell-${pkgver}
-  echo ${pkgver} > version
-  autoconf -i
-}
-
-build() {
-  cd fish-shell-${pkgver}
-  ./configure --prefix=/usr \
-    --sysconfdir=/etc
-  make
-}
-
-package() {
-  make -C fish-shell-${pkgver} DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fish/repos/community-i686/PKGBUILD (from rev 137026, fish/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2015-07-16 22:26:10 UTC (rev 137027)
@@ -0,0 +1,43 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
+# Contributor: Kaiting Chen <kaitocracy at gmail.com>
+# Contributor: Abhishek Dasgupta <abhidg at gmail.com>
+# Contributor: Eric Belanger <eric at archlinux.org>
+# Contributor: Jan Fader <jan.fader at web.de>
+
+pkgname=fish
+pkgver=2.2.0
+pkgrel=2
+pkgdesc='Smart and user friendly shell intended mostly for interactive use'
+url='http://fishshell.com/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('bc' 'gcc-libs' 'inetutils' 'ncurses' 'which')
+optdepends=('python: for manual page completion parser and web configuration tool')
+makedepends=('doxygen')
+install=fish.install
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/fish-shell/fish-shell/archive/${pkgver}.tar.gz)
+sha512sums=('a1108a8d5c96bcac1b1ced74e6f28287094fa68f28756811f6a6604bde2b4de88d7637da21874b602723fce129a407be7e24affecab468997158442af208308a')
+
+prepare() {
+  cd fish-shell-${pkgver}
+  echo ${pkgver} > version
+  autoconf -i
+}
+
+build() {
+  cd fish-shell-${pkgver}
+  ./configure --prefix=/usr \
+    --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd fish-shell-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # remove completions which are provided by upstream
+  rm "${pkgdir}/usr/share/fish/completions/docker.fish"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/fish.install
===================================================================
--- community-i686/fish.install	2015-07-16 21:44:27 UTC (rev 137026)
+++ community-i686/fish.install	2015-07-16 22:26:10 UTC (rev 137027)
@@ -1,19 +0,0 @@
-post_install() {
-  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
-}
-
-post_upgrade() {
-  post_install
-
-  if [[ "$(vercmp $2 2.1.1)" -lt 0 ]]; then
-    echo ":: With fish 2.1.1 release, the fishd socket has changed location due"
-    echo "   to security concerns. To make fish pick up the changes, kill all"
-    echo "   fishd processes."
-  fi
-}
-
-pre_remove() {
-  sed -ri '\|^/usr/bin/fish$|d' etc/shells
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fish/repos/community-i686/fish.install (from rev 137026, fish/trunk/fish.install)
===================================================================
--- community-i686/fish.install	                        (rev 0)
+++ community-i686/fish.install	2015-07-16 22:26:10 UTC (rev 137027)
@@ -0,0 +1,19 @@
+post_install() {
+  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
+}
+
+post_upgrade() {
+  post_install
+
+  if [[ "$(vercmp $2 2.1.1)" -lt 0 ]]; then
+    echo ":: With fish 2.1.1 release, the fishd socket has changed location due"
+    echo "   to security concerns. To make fish pick up the changes, kill all"
+    echo "   fishd processes."
+  fi
+}
+
+pre_remove() {
+  sed -ri '\|^/usr/bin/fish$|d' etc/shells
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2015-07-16 21:44:27 UTC (rev 137026)
+++ community-x86_64/PKGBUILD	2015-07-16 22:26:10 UTC (rev 137027)
@@ -1,39 +0,0 @@
-# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
-# Contributor: Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
-# Contributor: Kaiting Chen <kaitocracy at gmail.com>
-# Contributor: Abhishek Dasgupta <abhidg at gmail.com>
-# Contributor: Eric Belanger <eric at archlinux.org>
-# Contributor: Jan Fader <jan.fader at web.de>
-
-pkgname=fish
-pkgver=2.2.0
-pkgrel=1
-pkgdesc='Smart and user friendly shell intended mostly for interactive use'
-url='http://fishshell.com/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('bc' 'gcc-libs' 'inetutils' 'ncurses' 'which')
-optdepends=('python: for manual page completion parser and web configuration tool')
-makedepends=('doxygen')
-install=fish.install
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/fish-shell/fish-shell/archive/${pkgver}.tar.gz)
-sha512sums=('a1108a8d5c96bcac1b1ced74e6f28287094fa68f28756811f6a6604bde2b4de88d7637da21874b602723fce129a407be7e24affecab468997158442af208308a')
-
-prepare() {
-  cd fish-shell-${pkgver}
-  echo ${pkgver} > version
-  autoconf -i
-}
-
-build() {
-  cd fish-shell-${pkgver}
-  ./configure --prefix=/usr \
-    --sysconfdir=/etc
-  make
-}
-
-package() {
-  make -C fish-shell-${pkgver} DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/PKGBUILD (from rev 137026, fish/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2015-07-16 22:26:10 UTC (rev 137027)
@@ -0,0 +1,43 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
+# Contributor: Kaiting Chen <kaitocracy at gmail.com>
+# Contributor: Abhishek Dasgupta <abhidg at gmail.com>
+# Contributor: Eric Belanger <eric at archlinux.org>
+# Contributor: Jan Fader <jan.fader at web.de>
+
+pkgname=fish
+pkgver=2.2.0
+pkgrel=2
+pkgdesc='Smart and user friendly shell intended mostly for interactive use'
+url='http://fishshell.com/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('bc' 'gcc-libs' 'inetutils' 'ncurses' 'which')
+optdepends=('python: for manual page completion parser and web configuration tool')
+makedepends=('doxygen')
+install=fish.install
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/fish-shell/fish-shell/archive/${pkgver}.tar.gz)
+sha512sums=('a1108a8d5c96bcac1b1ced74e6f28287094fa68f28756811f6a6604bde2b4de88d7637da21874b602723fce129a407be7e24affecab468997158442af208308a')
+
+prepare() {
+  cd fish-shell-${pkgver}
+  echo ${pkgver} > version
+  autoconf -i
+}
+
+build() {
+  cd fish-shell-${pkgver}
+  ./configure --prefix=/usr \
+    --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd fish-shell-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # remove completions which are provided by upstream
+  rm "${pkgdir}/usr/share/fish/completions/docker.fish"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/fish.install
===================================================================
--- community-x86_64/fish.install	2015-07-16 21:44:27 UTC (rev 137026)
+++ community-x86_64/fish.install	2015-07-16 22:26:10 UTC (rev 137027)
@@ -1,19 +0,0 @@
-post_install() {
-  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
-}
-
-post_upgrade() {
-  post_install
-
-  if [[ "$(vercmp $2 2.1.1)" -lt 0 ]]; then
-    echo ":: With fish 2.1.1 release, the fishd socket has changed location due"
-    echo "   to security concerns. To make fish pick up the changes, kill all"
-    echo "   fishd processes."
-  fi
-}
-
-pre_remove() {
-  sed -ri '\|^/usr/bin/fish$|d' etc/shells
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/fish.install (from rev 137026, fish/trunk/fish.install)
===================================================================
--- community-x86_64/fish.install	                        (rev 0)
+++ community-x86_64/fish.install	2015-07-16 22:26:10 UTC (rev 137027)
@@ -0,0 +1,19 @@
+post_install() {
+  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
+}
+
+post_upgrade() {
+  post_install
+
+  if [[ "$(vercmp $2 2.1.1)" -lt 0 ]]; then
+    echo ":: With fish 2.1.1 release, the fishd socket has changed location due"
+    echo "   to security concerns. To make fish pick up the changes, kill all"
+    echo "   fishd processes."
+  fi
+}
+
+pre_remove() {
+  sed -ri '\|^/usr/bin/fish$|d' etc/shells
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list