[arch-commits] Commit in fish/repos/community-x86_64 (4 files)

2020-05-23 Thread Levente Polyak via arch-commits
Date: Saturday, May 23, 2020 @ 22:02:01
  Author: anthraxx
Revision: 632649

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   98 ++---
 fish.install |   28 
 2 files changed, 66 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-23 22:01:55 UTC (rev 632648)
+++ PKGBUILD2020-05-23 22:02:01 UTC (rev 632649)
@@ -1,46 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Kaiting Chen 
-# Contributor: Abhishek Dasgupta 
-# Contributor: Eric Belanger 
-# Contributor: Jan Fader 
-
-pkgname=fish
-pkgver=3.1.2
-pkgrel=1
-pkgdesc='Smart and user friendly shell intended mostly for interactive use'
-url='https://fishshell.com/'
-arch=('x86_64')
-license=('GPL2')
-depends=('glibc' 'gcc-libs' 'ncurses' 'pcre2')
-optdepends=('python: man page completion parser / web config tool'
-'pkgfile: command-not-found hook')
-makedepends=('cmake' 'python-sphinx')
-install=fish.install
-backup=(etc/fish/config.fish)
-source=(https://github.com/fish-shell/fish-shell/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
-validpgpkeys=(003837986104878835FA516D7A67D962D88A709A) # David Adam 

-sha256sums=('d5b927203b5ca95da16f514969e2a91a537b2f75bec9b21a584c4cd1c7aa74ed'
-'SKIP')
-sha512sums=('b6ae2c928774a2eaccf35312d3a9446bfa3e1335182c8f2b2d6198161d0916904f4964fb20ed13a5bf850c1c819e003905d13db3bc8b1faa5b401a60b47dc563'
-'SKIP')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  export CXXFLAGS+=" ${CPPFLAGS}"
-  cmake \
--B build \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_SYSCONFDIR=/etc \
--DCMAKE_BUILD_TYPE=None \
--DBUILD_DOCS=True \
--Wno-dev
-  make -C build VERBOSE=1
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make -C build DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/PKGBUILD (from rev 632648, 
fish/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-23 22:02:01 UTC (rev 632649)
@@ -0,0 +1,52 @@
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Kaiting Chen 
+# Contributor: Abhishek Dasgupta 
+# Contributor: Eric Belanger 
+# Contributor: Jan Fader 
+
+pkgname=fish
+pkgver=3.1.2
+pkgrel=2
+pkgdesc='Smart and user friendly shell intended mostly for interactive use'
+url='https://fishshell.com/'
+arch=('x86_64')
+license=('GPL2')
+depends=('glibc' 'gcc-libs' 'ncurses' 'pcre2')
+optdepends=('python: man page completion parser / web config tool'
+'pkgfile: command-not-found hook')
+makedepends=('cmake' 'python-sphinx')
+checkdepends=('expect')
+install=fish.install
+backup=(etc/fish/config.fish)
+source=(https://github.com/fish-shell/fish-shell/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
+validpgpkeys=(003837986104878835FA516D7A67D962D88A709A) # David Adam 

+sha256sums=('d5b927203b5ca95da16f514969e2a91a537b2f75bec9b21a584c4cd1c7aa74ed'
+'SKIP')
+sha512sums=('b6ae2c928774a2eaccf35312d3a9446bfa3e1335182c8f2b2d6198161d0916904f4964fb20ed13a5bf850c1c819e003905d13db3bc8b1faa5b401a60b47dc563'
+'SKIP')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  export CXXFLAGS+=" ${CPPFLAGS}"
+  cmake \
+-B build \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_SYSCONFDIR=/etc \
+-DCMAKE_BUILD_TYPE=None \
+-DBUILD_DOCS=True \
+-Wno-dev
+  make -C build VERBOSE=1
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make -C build test
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make -C build DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: fish.install
===
--- fish.install2020-05-23 22:01:55 UTC (rev 632648)
+++ fish.install2020-05-23 22:02:01 UTC (rev 632649)
@@ -1,14 +0,0 @@
-post_install() {
-  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
-  grep -qe '^/bin/fish$' etc/shells || echo '/bin/fish' >> etc/shells
-}
-
-post_upgrade() {
-  post_install
-}
-
-pre_remove() {
-  sed -ri -e '\|^/usr/bin/fish$|d' -e '\|^/bin/fish$|d' etc/shells
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/fish.install (from rev 632648, 
fish/trunk/fish.install)
===
--- fish.install(rev 0)
+++ fish.install2020-05-23 22:02:01 UTC (rev 632649)
@@ -0,0 +1,14 @@
+post_install() {
+  grep -qe 

[arch-commits] Commit in fish/repos/community-x86_64 (4 files)

2020-05-09 Thread Levente Polyak via arch-commits
Date: Saturday, May 9, 2020 @ 22:57:14
  Author: anthraxx
Revision: 626094

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   92 -
 fish.install |   28 -
 2 files changed, 60 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-09 22:57:09 UTC (rev 626093)
+++ PKGBUILD2020-05-09 22:57:14 UTC (rev 626094)
@@ -1,46 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Kaiting Chen 
-# Contributor: Abhishek Dasgupta 
-# Contributor: Eric Belanger 
-# Contributor: Jan Fader 
-
-pkgname=fish
-pkgver=3.1.1
-pkgrel=1
-pkgdesc='Smart and user friendly shell intended mostly for interactive use'
-url='https://fishshell.com/'
-arch=('x86_64')
-license=('GPL2')
-depends=('glibc' 'gcc-libs' 'ncurses' 'pcre2')
-optdepends=('python: man page completion parser / web config tool'
-'pkgfile: command-not-found hook')
-makedepends=('cmake' 'python-sphinx')
-install=fish.install
-backup=(etc/fish/config.fish)
-source=(https://github.com/fish-shell/fish-shell/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
-validpgpkeys=(003837986104878835FA516D7A67D962D88A709A) # David Adam 

-sha256sums=('07dc78eea3bc4cbd490b2f2a2e19e5771ac9e3b6b1a75893039ad8b34d6122b8'
-'SKIP')
-sha512sums=('edda6739427b7ba140445430b93388ada116c7c9064da7deb6924f2ace3832de7da8e1e20730bfd12b081ab1cc4b7ffaf8f60c5ee5204f59e65889e30c913eae'
-'SKIP')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  export CXXFLAGS+=" ${CPPFLAGS}"
-  cmake \
--B build \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_SYSCONFDIR=/etc \
--DCMAKE_BUILD_TYPE=None \
--DBUILD_DOCS=True \
--Wno-dev
-  make -C build VERBOSE=1
-}
-
-package() {
-  cd ${pkgname}-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/PKGBUILD (from rev 626093, 
fish/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-09 22:57:14 UTC (rev 626094)
@@ -0,0 +1,46 @@
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Kaiting Chen 
+# Contributor: Abhishek Dasgupta 
+# Contributor: Eric Belanger 
+# Contributor: Jan Fader 
+
+pkgname=fish
+pkgver=3.1.2
+pkgrel=1
+pkgdesc='Smart and user friendly shell intended mostly for interactive use'
+url='https://fishshell.com/'
+arch=('x86_64')
+license=('GPL2')
+depends=('glibc' 'gcc-libs' 'ncurses' 'pcre2')
+optdepends=('python: man page completion parser / web config tool'
+'pkgfile: command-not-found hook')
+makedepends=('cmake' 'python-sphinx')
+install=fish.install
+backup=(etc/fish/config.fish)
+source=(https://github.com/fish-shell/fish-shell/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
+validpgpkeys=(003837986104878835FA516D7A67D962D88A709A) # David Adam 

+sha256sums=('d5b927203b5ca95da16f514969e2a91a537b2f75bec9b21a584c4cd1c7aa74ed'
+'SKIP')
+sha512sums=('b6ae2c928774a2eaccf35312d3a9446bfa3e1335182c8f2b2d6198161d0916904f4964fb20ed13a5bf850c1c819e003905d13db3bc8b1faa5b401a60b47dc563'
+'SKIP')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  export CXXFLAGS+=" ${CPPFLAGS}"
+  cmake \
+-B build \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_SYSCONFDIR=/etc \
+-DCMAKE_BUILD_TYPE=None \
+-DBUILD_DOCS=True \
+-Wno-dev
+  make -C build VERBOSE=1
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make -C build DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: fish.install
===
--- fish.install2020-05-09 22:57:09 UTC (rev 626093)
+++ fish.install2020-05-09 22:57:14 UTC (rev 626094)
@@ -1,14 +0,0 @@
-post_install() {
-  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
-  grep -qe '^/bin/fish$' etc/shells || echo '/bin/fish' >> etc/shells
-}
-
-post_upgrade() {
-  post_install
-}
-
-pre_remove() {
-  sed -ri -e '\|^/usr/bin/fish$|d' -e '\|^/bin/fish$|d' etc/shells
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/fish.install (from rev 626093, 
fish/trunk/fish.install)
===
--- fish.install(rev 0)
+++ fish.install2020-05-09 22:57:14 UTC (rev 626094)
@@ -0,0 +1,14 @@
+post_install() {
+  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
+  grep -qe '^/bin/fish$' etc/shells || 

[arch-commits] Commit in fish/repos/community-x86_64 (4 files)

2020-04-29 Thread Levente Polyak via arch-commits
Date: Wednesday, April 29, 2020 @ 08:31:05
  Author: anthraxx
Revision: 622212

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   92 -
 fish.install |   28 -
 2 files changed, 60 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-29 08:31:00 UTC (rev 622211)
+++ PKGBUILD2020-04-29 08:31:05 UTC (rev 622212)
@@ -1,46 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Kaiting Chen 
-# Contributor: Abhishek Dasgupta 
-# Contributor: Eric Belanger 
-# Contributor: Jan Fader 
-
-pkgname=fish
-pkgver=3.1.0
-pkgrel=3
-pkgdesc='Smart and user friendly shell intended mostly for interactive use'
-url='https://fishshell.com/'
-arch=('x86_64')
-license=('GPL2')
-depends=('glibc' 'gcc-libs' 'ncurses' 'pcre2')
-optdepends=('python: man page completion parser / web config tool'
-'pkgfile: command-not-found hook')
-makedepends=('cmake' 'python-sphinx')
-install=fish.install
-backup=(etc/fish/config.fish)
-source=(https://github.com/fish-shell/fish-shell/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
-validpgpkeys=(003837986104878835FA516D7A67D962D88A709A) # David Adam 

-sha256sums=('e5db1e6839685c56f172e1000c138e290add4aa521f187df4cd79d4eab294368'
-'SKIP')
-sha512sums=('143e462b5329790fa9834e135109e1397c3525756a0209d0ec68a53f7d2a1f581cd45fbbdcde6a5b53dff447da18ed6a62277993d851e7b18ef7f1a6b6d49cff'
-'SKIP')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  export CXXFLAGS+=" ${CPPFLAGS}"
-  cmake \
--B build \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_SYSCONFDIR=/etc \
--DCMAKE_BUILD_TYPE=None \
--DBUILD_DOCS=True \
--Wno-dev
-  make -C build VERBOSE=1
-}
-
-package() {
-  cd ${pkgname}-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/PKGBUILD (from rev 622211, 
fish/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-29 08:31:05 UTC (rev 622212)
@@ -0,0 +1,46 @@
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Kaiting Chen 
+# Contributor: Abhishek Dasgupta 
+# Contributor: Eric Belanger 
+# Contributor: Jan Fader 
+
+pkgname=fish
+pkgver=3.1.1
+pkgrel=1
+pkgdesc='Smart and user friendly shell intended mostly for interactive use'
+url='https://fishshell.com/'
+arch=('x86_64')
+license=('GPL2')
+depends=('glibc' 'gcc-libs' 'ncurses' 'pcre2')
+optdepends=('python: man page completion parser / web config tool'
+'pkgfile: command-not-found hook')
+makedepends=('cmake' 'python-sphinx')
+install=fish.install
+backup=(etc/fish/config.fish)
+source=(https://github.com/fish-shell/fish-shell/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
+validpgpkeys=(003837986104878835FA516D7A67D962D88A709A) # David Adam 

+sha256sums=('07dc78eea3bc4cbd490b2f2a2e19e5771ac9e3b6b1a75893039ad8b34d6122b8'
+'SKIP')
+sha512sums=('edda6739427b7ba140445430b93388ada116c7c9064da7deb6924f2ace3832de7da8e1e20730bfd12b081ab1cc4b7ffaf8f60c5ee5204f59e65889e30c913eae'
+'SKIP')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  export CXXFLAGS+=" ${CPPFLAGS}"
+  cmake \
+-B build \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_SYSCONFDIR=/etc \
+-DCMAKE_BUILD_TYPE=None \
+-DBUILD_DOCS=True \
+-Wno-dev
+  make -C build VERBOSE=1
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: fish.install
===
--- fish.install2020-04-29 08:31:00 UTC (rev 622211)
+++ fish.install2020-04-29 08:31:05 UTC (rev 622212)
@@ -1,14 +0,0 @@
-post_install() {
-  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
-  grep -qe '^/bin/fish$' etc/shells || echo '/bin/fish' >> etc/shells
-}
-
-post_upgrade() {
-  post_install
-}
-
-pre_remove() {
-  sed -ri -e '\|^/usr/bin/fish$|d' -e '\|^/bin/fish$|d' etc/shells
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/fish.install (from rev 622211, 
fish/trunk/fish.install)
===
--- fish.install(rev 0)
+++ fish.install2020-04-29 08:31:05 UTC (rev 622212)
@@ -0,0 +1,14 @@
+post_install() {
+  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
+  grep -qe '^/bin/fish$' etc/shells || 

[arch-commits] Commit in fish/repos/community-x86_64 (4 files)

2020-04-04 Thread Levente Polyak via arch-commits
Date: Saturday, April 4, 2020 @ 13:05:42
  Author: anthraxx
Revision: 611580

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   90 +
 fish.install |   28 -
 2 files changed, 60 insertions(+), 58 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-04 13:05:35 UTC (rev 611579)
+++ PKGBUILD2020-04-04 13:05:42 UTC (rev 611580)
@@ -1,44 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Kaiting Chen 
-# Contributor: Abhishek Dasgupta 
-# Contributor: Eric Belanger 
-# Contributor: Jan Fader 
-
-pkgname=fish
-pkgver=3.1.0
-pkgrel=2
-pkgdesc='Smart and user friendly shell intended mostly for interactive use'
-url='https://fishshell.com/'
-arch=('x86_64')
-license=('GPL2')
-depends=('glibc' 'gcc-libs' 'ncurses' 'pcre2')
-optdepends=('python: man page completion parser / web config tool'
-'pkgfile: command-not-found hook')
-makedepends=('cmake' 'python-sphinx')
-install=fish.install
-backup=(etc/fish/config.fish)
-source=(https://github.com/fish-shell/fish-shell/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
-validgpgkeys=(003837986104878835FA516D7A67D962D88A709A) # David Adam 

-sha256sums=('e5db1e6839685c56f172e1000c138e290add4aa521f187df4cd79d4eab294368'
-'SKIP')
-sha512sums=('143e462b5329790fa9834e135109e1397c3525756a0209d0ec68a53f7d2a1f581cd45fbbdcde6a5b53dff447da18ed6a62277993d851e7b18ef7f1a6b6d49cff'
-'SKIP')
-
-build() {
-  mkdir ${pkgname}-${pkgver}/build
-  cd ${pkgname}-${pkgver}/build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_SYSCONFDIR=/etc \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_DOCS=True
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/PKGBUILD (from rev 611579, 
fish/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-04 13:05:42 UTC (rev 611580)
@@ -0,0 +1,46 @@
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Kaiting Chen 
+# Contributor: Abhishek Dasgupta 
+# Contributor: Eric Belanger 
+# Contributor: Jan Fader 
+
+pkgname=fish
+pkgver=3.1.0
+pkgrel=3
+pkgdesc='Smart and user friendly shell intended mostly for interactive use'
+url='https://fishshell.com/'
+arch=('x86_64')
+license=('GPL2')
+depends=('glibc' 'gcc-libs' 'ncurses' 'pcre2')
+optdepends=('python: man page completion parser / web config tool'
+'pkgfile: command-not-found hook')
+makedepends=('cmake' 'python-sphinx')
+install=fish.install
+backup=(etc/fish/config.fish)
+source=(https://github.com/fish-shell/fish-shell/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
+validpgpkeys=(003837986104878835FA516D7A67D962D88A709A) # David Adam 

+sha256sums=('e5db1e6839685c56f172e1000c138e290add4aa521f187df4cd79d4eab294368'
+'SKIP')
+sha512sums=('143e462b5329790fa9834e135109e1397c3525756a0209d0ec68a53f7d2a1f581cd45fbbdcde6a5b53dff447da18ed6a62277993d851e7b18ef7f1a6b6d49cff'
+'SKIP')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  export CXXFLAGS+=" ${CPPFLAGS}"
+  cmake \
+-B build \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_SYSCONFDIR=/etc \
+-DCMAKE_BUILD_TYPE=None \
+-DBUILD_DOCS=True \
+-Wno-dev
+  make -C build VERBOSE=1
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: fish.install
===
--- fish.install2020-04-04 13:05:35 UTC (rev 611579)
+++ fish.install2020-04-04 13:05:42 UTC (rev 611580)
@@ -1,14 +0,0 @@
-post_install() {
-  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
-  grep -qe '^/bin/fish$' etc/shells || echo '/bin/fish' >> etc/shells
-}
-
-post_upgrade() {
-  post_install
-}
-
-pre_remove() {
-  sed -ri -e '\|^/usr/bin/fish$|d' -e '\|^/bin/fish$|d' etc/shells
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/fish.install (from rev 611579, 
fish/trunk/fish.install)
===
--- fish.install(rev 0)
+++ fish.install2020-04-04 13:05:42 UTC (rev 611580)
@@ -0,0 +1,14 @@
+post_install() {
+  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
+  grep -qe '^/bin/fish$' etc/shells || echo '/bin/fish' >> etc/shells
+}
+

[arch-commits] Commit in fish/repos/community-x86_64 (4 files)

2020-03-03 Thread Filipe Laíns via arch-commits
Date: Tuesday, March 3, 2020 @ 22:58:23
  Author: ffy00
Revision: 589860

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   87 -
 fish.install |   28 +-
 2 files changed, 58 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-03 22:58:18 UTC (rev 589859)
+++ PKGBUILD2020-03-03 22:58:23 UTC (rev 589860)
@@ -1,43 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Kaiting Chen 
-# Contributor: Abhishek Dasgupta 
-# Contributor: Eric Belanger 
-# Contributor: Jan Fader 
-
-pkgname=fish
-pkgver=3.1.0
-pkgrel=1
-pkgdesc='Smart and user friendly shell intended mostly for interactive use'
-url='https://fishshell.com/'
-arch=('x86_64')
-license=('GPL2')
-depends=('glibc' 'gcc-libs' 'ncurses' 'pcre2')
-optdepends=('python: man page completion parser / web config tool'
-'pkgfile: command-not-found hook')
-makedepends=('cmake' 'python-sphinx')
-install=fish.install
-source=(https://github.com/fish-shell/fish-shell/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
-validgpgkeys=(003837986104878835FA516D7A67D962D88A709A) # David Adam 

-sha256sums=('e5db1e6839685c56f172e1000c138e290add4aa521f187df4cd79d4eab294368'
-'SKIP')
-sha512sums=('143e462b5329790fa9834e135109e1397c3525756a0209d0ec68a53f7d2a1f581cd45fbbdcde6a5b53dff447da18ed6a62277993d851e7b18ef7f1a6b6d49cff'
-'SKIP')
-
-build() {
-  mkdir ${pkgname}-${pkgver}/build
-  cd ${pkgname}-${pkgver}/build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_SYSCONFDIR=/etc \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_DOCS=True
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/PKGBUILD (from rev 589859, 
fish/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-03 22:58:23 UTC (rev 589860)
@@ -0,0 +1,44 @@
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Kaiting Chen 
+# Contributor: Abhishek Dasgupta 
+# Contributor: Eric Belanger 
+# Contributor: Jan Fader 
+
+pkgname=fish
+pkgver=3.1.0
+pkgrel=2
+pkgdesc='Smart and user friendly shell intended mostly for interactive use'
+url='https://fishshell.com/'
+arch=('x86_64')
+license=('GPL2')
+depends=('glibc' 'gcc-libs' 'ncurses' 'pcre2')
+optdepends=('python: man page completion parser / web config tool'
+'pkgfile: command-not-found hook')
+makedepends=('cmake' 'python-sphinx')
+install=fish.install
+backup=(etc/fish/config.fish)
+source=(https://github.com/fish-shell/fish-shell/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
+validgpgkeys=(003837986104878835FA516D7A67D962D88A709A) # David Adam 

+sha256sums=('e5db1e6839685c56f172e1000c138e290add4aa521f187df4cd79d4eab294368'
+'SKIP')
+sha512sums=('143e462b5329790fa9834e135109e1397c3525756a0209d0ec68a53f7d2a1f581cd45fbbdcde6a5b53dff447da18ed6a62277993d851e7b18ef7f1a6b6d49cff'
+'SKIP')
+
+build() {
+  mkdir ${pkgname}-${pkgver}/build
+  cd ${pkgname}-${pkgver}/build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_SYSCONFDIR=/etc \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_DOCS=True
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: fish.install
===
--- fish.install2020-03-03 22:58:18 UTC (rev 589859)
+++ fish.install2020-03-03 22:58:23 UTC (rev 589860)
@@ -1,14 +0,0 @@
-post_install() {
-  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
-  grep -qe '^/bin/fish$' etc/shells || echo '/bin/fish' >> etc/shells
-}
-
-post_upgrade() {
-  post_install
-}
-
-pre_remove() {
-  sed -ri -e '\|^/usr/bin/fish$|d' -e '\|^/bin/fish$|d' etc/shells
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/fish.install (from rev 589859, 
fish/trunk/fish.install)
===
--- fish.install(rev 0)
+++ fish.install2020-03-03 22:58:23 UTC (rev 589860)
@@ -0,0 +1,14 @@
+post_install() {
+  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
+  grep -qe '^/bin/fish$' etc/shells || echo '/bin/fish' >> etc/shells
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  sed -ri -e 

[arch-commits] Commit in fish/repos/community-x86_64 (4 files)

2020-02-29 Thread Filipe Laíns via arch-commits
Date: Saturday, February 29, 2020 @ 13:22:00
  Author: ffy00
Revision: 586894

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   90 +++--
 fish.install |   28 -
 2 files changed, 57 insertions(+), 61 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-29 13:21:50 UTC (rev 586893)
+++ PKGBUILD2020-02-29 13:22:00 UTC (rev 586894)
@@ -1,47 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Kaiting Chen 
-# Contributor: Abhishek Dasgupta 
-# Contributor: Eric Belanger 
-# Contributor: Jan Fader 
-
-pkgname=fish
-pkgver=3.0.2
-pkgrel=3
-pkgdesc='Smart and user friendly shell intended mostly for interactive use'
-url='https://fishshell.com/'
-arch=('x86_64')
-license=('GPL2')
-depends=('glibc' 'gcc-libs' 'jq' 'ncurses' 'pcre2')
-optdepends=('python: man page completion parser / web config tool'
-'pkgfile: command-not-found hook')
-makedepends=('doxygen')
-install=fish.install
-source=(https://github.com/fish-shell/fish-shell/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
-
fish-fix-systemd-version.patch::https://github.com/fish-shell/fish-shell/commit/c6ec4235136e82c709e8d7b455f7c463f9714b48.patch)
-sha256sums=('0421a3fdf5df54c14cddd4d764bc0931bbb4d37fb799205a9457c6eaba513166'
-'b74077f1ae695ec4cd31acc8e1d4140ed2323716e1d0fac1cc2c66d06329431a')
-sha512sums=('d3a24f85d4ada891ec4f6b14733edb236ae67f34868b0c9115fa5ebae99202a747ee9aeec7c6b04702f9a608019d5964b9cdc9abc4e3edfd7aaa9335093d8881'
-
'f4762c4fc6fcff7c52a9d10aa9b32d3470e0f5cee222927e2beccd0bb7fccf27fb628b33a9db7971362c38e53c2452f5cca513495bd6227e6b140afbd186217e')
-
-prepare() {
-  cd fish-shell-${pkgver}
-  patch -p1 < ../fish-fix-systemd-version.patch
-  echo ${pkgver} > version
-  autoreconf -fiv
-}
-
-build() {
-  cd fish-shell-${pkgver}
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-package() {
-  cd fish-shell-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/PKGBUILD (from rev 586893, 
fish/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-29 13:22:00 UTC (rev 586894)
@@ -0,0 +1,43 @@
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Kaiting Chen 
+# Contributor: Abhishek Dasgupta 
+# Contributor: Eric Belanger 
+# Contributor: Jan Fader 
+
+pkgname=fish
+pkgver=3.1.0
+pkgrel=1
+pkgdesc='Smart and user friendly shell intended mostly for interactive use'
+url='https://fishshell.com/'
+arch=('x86_64')
+license=('GPL2')
+depends=('glibc' 'gcc-libs' 'ncurses' 'pcre2')
+optdepends=('python: man page completion parser / web config tool'
+'pkgfile: command-not-found hook')
+makedepends=('cmake' 'python-sphinx')
+install=fish.install
+source=(https://github.com/fish-shell/fish-shell/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
+validgpgkeys=(003837986104878835FA516D7A67D962D88A709A) # David Adam 

+sha256sums=('e5db1e6839685c56f172e1000c138e290add4aa521f187df4cd79d4eab294368'
+'SKIP')
+sha512sums=('143e462b5329790fa9834e135109e1397c3525756a0209d0ec68a53f7d2a1f581cd45fbbdcde6a5b53dff447da18ed6a62277993d851e7b18ef7f1a6b6d49cff'
+'SKIP')
+
+build() {
+  mkdir ${pkgname}-${pkgver}/build
+  cd ${pkgname}-${pkgver}/build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_SYSCONFDIR=/etc \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_DOCS=True
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: fish.install
===
--- fish.install2020-02-29 13:21:50 UTC (rev 586893)
+++ fish.install2020-02-29 13:22:00 UTC (rev 586894)
@@ -1,14 +0,0 @@
-post_install() {
-  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
-  grep -qe '^/bin/fish$' etc/shells || echo '/bin/fish' >> etc/shells
-}
-
-post_upgrade() {
-  post_install
-}
-
-pre_remove() {
-  sed -ri -e '\|^/usr/bin/fish$|d' -e '\|^/bin/fish$|d' etc/shells
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/fish.install (from rev 586893, 
fish/trunk/fish.install)
===
--- fish.install(rev 0)
+++ fish.install2020-02-29 13:22:00 UTC (rev 586894)
@@ -0,0 +1,14 @@
+post_install() {
+  grep -qe 

[arch-commits] Commit in fish/repos/community-x86_64 (4 files)

2019-11-16 Thread Filipe Laíns via arch-commits
Date: Sunday, November 17, 2019 @ 00:45:59
  Author: ffy00
Revision: 529853

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   94 -
 fish.install |   27 
 2 files changed, 61 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-11-17 00:45:21 UTC (rev 529852)
+++ PKGBUILD2019-11-17 00:45:59 UTC (rev 529853)
@@ -1,47 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Kaiting Chen 
-# Contributor: Abhishek Dasgupta 
-# Contributor: Eric Belanger 
-# Contributor: Jan Fader 
-
-pkgname=fish
-pkgver=3.0.2
-pkgrel=2
-pkgdesc='Smart and user friendly shell intended mostly for interactive use'
-url='https://fishshell.com/'
-arch=('x86_64')
-license=('GPL2')
-depends=('glibc' 'gcc-libs' 'jq' 'ncurses' 'pcre2')
-optdepends=('python: man page completion parser / web config tool'
-'pkgfile: command-not-found hook')
-makedepends=('doxygen')
-install=fish.install
-source=(https://github.com/fish-shell/fish-shell/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
-
fish-fix-systemd-version.patch::https://github.com/fish-shell/fish-shell/commit/c6ec4235136e82c709e8d7b455f7c463f9714b48.patch)
-sha256sums=('0421a3fdf5df54c14cddd4d764bc0931bbb4d37fb799205a9457c6eaba513166'
-'b74077f1ae695ec4cd31acc8e1d4140ed2323716e1d0fac1cc2c66d06329431a')
-sha512sums=('d3a24f85d4ada891ec4f6b14733edb236ae67f34868b0c9115fa5ebae99202a747ee9aeec7c6b04702f9a608019d5964b9cdc9abc4e3edfd7aaa9335093d8881'
-
'f4762c4fc6fcff7c52a9d10aa9b32d3470e0f5cee222927e2beccd0bb7fccf27fb628b33a9db7971362c38e53c2452f5cca513495bd6227e6b140afbd186217e')
-
-prepare() {
-  cd fish-shell-${pkgver}
-  patch -p1 < ../fish-fix-systemd-version.patch
-  echo ${pkgver} > version
-  autoreconf -fiv
-}
-
-build() {
-  cd fish-shell-${pkgver}
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-package() {
-  cd fish-shell-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/PKGBUILD (from rev 529852, 
fish/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-11-17 00:45:59 UTC (rev 529853)
@@ -0,0 +1,47 @@
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Kaiting Chen 
+# Contributor: Abhishek Dasgupta 
+# Contributor: Eric Belanger 
+# Contributor: Jan Fader 
+
+pkgname=fish
+pkgver=3.0.2
+pkgrel=3
+pkgdesc='Smart and user friendly shell intended mostly for interactive use'
+url='https://fishshell.com/'
+arch=('x86_64')
+license=('GPL2')
+depends=('glibc' 'gcc-libs' 'jq' 'ncurses' 'pcre2')
+optdepends=('python: man page completion parser / web config tool'
+'pkgfile: command-not-found hook')
+makedepends=('doxygen')
+install=fish.install
+source=(https://github.com/fish-shell/fish-shell/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
+
fish-fix-systemd-version.patch::https://github.com/fish-shell/fish-shell/commit/c6ec4235136e82c709e8d7b455f7c463f9714b48.patch)
+sha256sums=('0421a3fdf5df54c14cddd4d764bc0931bbb4d37fb799205a9457c6eaba513166'
+'b74077f1ae695ec4cd31acc8e1d4140ed2323716e1d0fac1cc2c66d06329431a')
+sha512sums=('d3a24f85d4ada891ec4f6b14733edb236ae67f34868b0c9115fa5ebae99202a747ee9aeec7c6b04702f9a608019d5964b9cdc9abc4e3edfd7aaa9335093d8881'
+
'f4762c4fc6fcff7c52a9d10aa9b32d3470e0f5cee222927e2beccd0bb7fccf27fb628b33a9db7971362c38e53c2452f5cca513495bd6227e6b140afbd186217e')
+
+prepare() {
+  cd fish-shell-${pkgver}
+  patch -p1 < ../fish-fix-systemd-version.patch
+  echo ${pkgver} > version
+  autoreconf -fiv
+}
+
+build() {
+  cd fish-shell-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc
+  make
+}
+
+package() {
+  cd fish-shell-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: fish.install
===
--- fish.install2019-11-17 00:45:21 UTC (rev 529852)
+++ fish.install2019-11-17 00:45:59 UTC (rev 529853)
@@ -1,13 +0,0 @@
-post_install() {
-  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
-}
-
-post_upgrade() {
-  post_install
-}
-
-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 529852, 
fish/trunk/fish.install)
===
--- fish.install

[arch-commits] Commit in fish/repos/community-x86_64 (4 files)

2019-10-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, October 15, 2019 @ 07:47:12
  Author: ffy00
Revision: 516102

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   90 +
 fish.install |   26 
 2 files changed, 60 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-15 07:46:49 UTC (rev 516101)
+++ PKGBUILD2019-10-15 07:47:12 UTC (rev 516102)
@@ -1,43 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Kaiting Chen 
-# Contributor: Abhishek Dasgupta 
-# Contributor: Eric Belanger 
-# Contributor: Jan Fader 
-
-pkgname=fish
-pkgver=3.0.2
-pkgrel=1
-pkgdesc='Smart and user friendly shell intended mostly for interactive use'
-url='https://fishshell.com/'
-arch=('x86_64')
-license=('GPL2')
-depends=('glibc' 'gcc-libs' 'jq' 'ncurses' 'pcre2')
-optdepends=('python: man page completion parser / web config tool'
-'pkgfile: command-not-found hook')
-makedepends=('doxygen')
-install=fish.install
-source=(https://github.com/fish-shell/fish-shell/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('0421a3fdf5df54c14cddd4d764bc0931bbb4d37fb799205a9457c6eaba513166')
-sha512sums=('d3a24f85d4ada891ec4f6b14733edb236ae67f34868b0c9115fa5ebae99202a747ee9aeec7c6b04702f9a608019d5964b9cdc9abc4e3edfd7aaa9335093d8881')
-
-prepare() {
-  cd fish-shell-${pkgver}
-  echo ${pkgver} > version
-  autoreconf -fiv
-}
-
-build() {
-  cd fish-shell-${pkgver}
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-package() {
-  cd fish-shell-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/PKGBUILD (from rev 516101, 
fish/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-15 07:47:12 UTC (rev 516102)
@@ -0,0 +1,47 @@
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Kaiting Chen 
+# Contributor: Abhishek Dasgupta 
+# Contributor: Eric Belanger 
+# Contributor: Jan Fader 
+
+pkgname=fish
+pkgver=3.0.2
+pkgrel=2
+pkgdesc='Smart and user friendly shell intended mostly for interactive use'
+url='https://fishshell.com/'
+arch=('x86_64')
+license=('GPL2')
+depends=('glibc' 'gcc-libs' 'jq' 'ncurses' 'pcre2')
+optdepends=('python: man page completion parser / web config tool'
+'pkgfile: command-not-found hook')
+makedepends=('doxygen')
+install=fish.install
+source=(https://github.com/fish-shell/fish-shell/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
+
fish-fix-systemd-version.patch::https://github.com/fish-shell/fish-shell/commit/c6ec4235136e82c709e8d7b455f7c463f9714b48.patch)
+sha256sums=('0421a3fdf5df54c14cddd4d764bc0931bbb4d37fb799205a9457c6eaba513166'
+'b74077f1ae695ec4cd31acc8e1d4140ed2323716e1d0fac1cc2c66d06329431a')
+sha512sums=('d3a24f85d4ada891ec4f6b14733edb236ae67f34868b0c9115fa5ebae99202a747ee9aeec7c6b04702f9a608019d5964b9cdc9abc4e3edfd7aaa9335093d8881'
+
'f4762c4fc6fcff7c52a9d10aa9b32d3470e0f5cee222927e2beccd0bb7fccf27fb628b33a9db7971362c38e53c2452f5cca513495bd6227e6b140afbd186217e')
+
+prepare() {
+  cd fish-shell-${pkgver}
+  patch -p1 < ../fish-fix-systemd-version.patch
+  echo ${pkgver} > version
+  autoreconf -fiv
+}
+
+build() {
+  cd fish-shell-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc
+  make
+}
+
+package() {
+  cd fish-shell-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: fish.install
===
--- fish.install2019-10-15 07:46:49 UTC (rev 516101)
+++ fish.install2019-10-15 07:47:12 UTC (rev 516102)
@@ -1,13 +0,0 @@
-post_install() {
-  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
-}
-
-post_upgrade() {
-  post_install
-}
-
-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 516101, 
fish/trunk/fish.install)
===
--- fish.install(rev 0)
+++ fish.install2019-10-15 07:47:12 UTC (rev 516102)
@@ -0,0 +1,13 @@
+post_install() {
+  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  sed -ri '\|^/usr/bin/fish$|d' etc/shells
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in fish/repos/community-x86_64 (4 files)

2019-03-06 Thread Levente Polyak via arch-commits
Date: Wednesday, March 6, 2019 @ 21:27:13
  Author: anthraxx
Revision: 437906

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   84 +
 fish.install |   26 -
 2 files changed, 56 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-03-06 21:27:07 UTC (rev 437905)
+++ PKGBUILD2019-03-06 21:27:13 UTC (rev 437906)
@@ -1,41 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Kaiting Chen 
-# Contributor: Abhishek Dasgupta 
-# Contributor: Eric Belanger 
-# Contributor: Jan Fader 
-
-pkgname=fish
-pkgver=3.0.1
-pkgrel=1
-pkgdesc='Smart and user friendly shell intended mostly for interactive use'
-url='https://fishshell.com/'
-arch=('x86_64')
-license=('GPL2')
-depends=('bc' 'gcc-libs' 'inetutils' 'ncurses' 'which' 'pcre2')
-optdepends=('python: for manual page completion parser and web configuration 
tool')
-makedepends=('doxygen')
-install=fish.install
-source=(https://github.com/fish-shell/fish-shell/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('6203b317c503b92c6f742eeb06f9e01558c6a31394ea73134c90b1cf0acebc5b88cdfe18cacf17f70d9b1612289f610e78a7cb683ffbfd9d616e1848f9861bcf')
-
-prepare() {
-  cd fish-shell-${pkgver}
-  echo ${pkgver} > version
-  autoreconf -fiv
-}
-
-build() {
-  cd fish-shell-${pkgver}
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-package() {
-  cd fish-shell-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/PKGBUILD (from rev 437905, 
fish/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-03-06 21:27:13 UTC (rev 437906)
@@ -0,0 +1,43 @@
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Kaiting Chen 
+# Contributor: Abhishek Dasgupta 
+# Contributor: Eric Belanger 
+# Contributor: Jan Fader 
+
+pkgname=fish
+pkgver=3.0.2
+pkgrel=1
+pkgdesc='Smart and user friendly shell intended mostly for interactive use'
+url='https://fishshell.com/'
+arch=('x86_64')
+license=('GPL2')
+depends=('glibc' 'gcc-libs' 'jq' 'ncurses' 'pcre2')
+optdepends=('python: man page completion parser / web config tool'
+'pkgfile: command-not-found hook')
+makedepends=('doxygen')
+install=fish.install
+source=(https://github.com/fish-shell/fish-shell/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('0421a3fdf5df54c14cddd4d764bc0931bbb4d37fb799205a9457c6eaba513166')
+sha512sums=('d3a24f85d4ada891ec4f6b14733edb236ae67f34868b0c9115fa5ebae99202a747ee9aeec7c6b04702f9a608019d5964b9cdc9abc4e3edfd7aaa9335093d8881')
+
+prepare() {
+  cd fish-shell-${pkgver}
+  echo ${pkgver} > version
+  autoreconf -fiv
+}
+
+build() {
+  cd fish-shell-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc
+  make
+}
+
+package() {
+  cd fish-shell-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: fish.install
===
--- fish.install2019-03-06 21:27:07 UTC (rev 437905)
+++ fish.install2019-03-06 21:27:13 UTC (rev 437906)
@@ -1,13 +0,0 @@
-post_install() {
-  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
-}
-
-post_upgrade() {
-  post_install
-}
-
-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 437905, 
fish/trunk/fish.install)
===
--- fish.install(rev 0)
+++ fish.install2019-03-06 21:27:13 UTC (rev 437906)
@@ -0,0 +1,13 @@
+post_install() {
+  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  sed -ri '\|^/usr/bin/fish$|d' etc/shells
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in fish/repos/community-x86_64 (4 files)

2019-02-11 Thread Levente Polyak via arch-commits
Date: Monday, February 11, 2019 @ 20:07:21
  Author: anthraxx
Revision: 431768

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   81 -
 fish.install |   26 +-
 2 files changed, 54 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-11 20:07:15 UTC (rev 431767)
+++ PKGBUILD2019-02-11 20:07:21 UTC (rev 431768)
@@ -1,40 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Kaiting Chen 
-# Contributor: Abhishek Dasgupta 
-# Contributor: Eric Belanger 
-# Contributor: Jan Fader 
-
-pkgname=fish
-pkgver=3.0.0
-pkgrel=1
-pkgdesc='Smart and user friendly shell intended mostly for interactive use'
-url='https://fishshell.com/'
-arch=('x86_64')
-license=('GPL2')
-depends=('bc' 'gcc-libs' 'inetutils' 'ncurses' 'which' 'pcre2')
-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=('97efb67c34860794787b44c04fbb8ebc1b7a8c37da00e7f6d93daab6707f198a2e0455e956a3b1c6a0c1711fa2d0f024ba42a3f82fbb17e857c518a858bb2ffb')
-
-prepare() {
-  cd fish-shell-${pkgver}
-  echo ${pkgver} > version
-  autoreconf -fiv
-}
-
-build() {
-  cd fish-shell-${pkgver}
-  ./configure --prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-package() {
-  cd fish-shell-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/PKGBUILD (from rev 431767, 
fish/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-11 20:07:21 UTC (rev 431768)
@@ -0,0 +1,41 @@
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Kaiting Chen 
+# Contributor: Abhishek Dasgupta 
+# Contributor: Eric Belanger 
+# Contributor: Jan Fader 
+
+pkgname=fish
+pkgver=3.0.1
+pkgrel=1
+pkgdesc='Smart and user friendly shell intended mostly for interactive use'
+url='https://fishshell.com/'
+arch=('x86_64')
+license=('GPL2')
+depends=('bc' 'gcc-libs' 'inetutils' 'ncurses' 'which' 'pcre2')
+optdepends=('python: for manual page completion parser and web configuration 
tool')
+makedepends=('doxygen')
+install=fish.install
+source=(https://github.com/fish-shell/fish-shell/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('6203b317c503b92c6f742eeb06f9e01558c6a31394ea73134c90b1cf0acebc5b88cdfe18cacf17f70d9b1612289f610e78a7cb683ffbfd9d616e1848f9861bcf')
+
+prepare() {
+  cd fish-shell-${pkgver}
+  echo ${pkgver} > version
+  autoreconf -fiv
+}
+
+build() {
+  cd fish-shell-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc
+  make
+}
+
+package() {
+  cd fish-shell-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: fish.install
===
--- fish.install2019-02-11 20:07:15 UTC (rev 431767)
+++ fish.install2019-02-11 20:07:21 UTC (rev 431768)
@@ -1,13 +0,0 @@
-post_install() {
-  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
-}
-
-post_upgrade() {
-  post_install
-}
-
-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 431767, 
fish/trunk/fish.install)
===
--- fish.install(rev 0)
+++ fish.install2019-02-11 20:07:21 UTC (rev 431768)
@@ -0,0 +1,13 @@
+post_install() {
+  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  sed -ri '\|^/usr/bin/fish$|d' etc/shells
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in fish/repos/community-x86_64 (4 files)

2019-01-10 Thread Levente Polyak via arch-commits
Date: Thursday, January 10, 2019 @ 22:16:54
  Author: anthraxx
Revision: 422189

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   80 -
 fish.install |   26 +-
 2 files changed, 53 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 22:16:49 UTC (rev 422188)
+++ PKGBUILD2019-01-10 22:16:54 UTC (rev 422189)
@@ -1,40 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Kaiting Chen 
-# Contributor: Abhishek Dasgupta 
-# Contributor: Eric Belanger 
-# Contributor: Jan Fader 
-
-pkgname=fish
-pkgver=2.7.1
-pkgrel=1
-pkgdesc='Smart and user friendly shell intended mostly for interactive use'
-url='https://fishshell.com/'
-arch=('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=('53eb8082812f28386b491ea18caa4a51ac66ead87fa78d5584275c66f1335b8705fad266170dc2ed6ee9e5d1febcdf0869c37ed2f95b58c10a74faf4ad95e610')
-
-prepare() {
-  cd fish-shell-${pkgver}
-  echo ${pkgver} > version
-  autoreconf -fiv
-}
-
-build() {
-  cd fish-shell-${pkgver}
-  ./configure --prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-package() {
-  cd fish-shell-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/PKGBUILD (from rev 422188, 
fish/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-10 22:16:54 UTC (rev 422189)
@@ -0,0 +1,40 @@
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Kaiting Chen 
+# Contributor: Abhishek Dasgupta 
+# Contributor: Eric Belanger 
+# Contributor: Jan Fader 
+
+pkgname=fish
+pkgver=3.0.0
+pkgrel=1
+pkgdesc='Smart and user friendly shell intended mostly for interactive use'
+url='https://fishshell.com/'
+arch=('x86_64')
+license=('GPL2')
+depends=('bc' 'gcc-libs' 'inetutils' 'ncurses' 'which' 'pcre2')
+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=('97efb67c34860794787b44c04fbb8ebc1b7a8c37da00e7f6d93daab6707f198a2e0455e956a3b1c6a0c1711fa2d0f024ba42a3f82fbb17e857c518a858bb2ffb')
+
+prepare() {
+  cd fish-shell-${pkgver}
+  echo ${pkgver} > version
+  autoreconf -fiv
+}
+
+build() {
+  cd fish-shell-${pkgver}
+  ./configure --prefix=/usr \
+--sysconfdir=/etc
+  make
+}
+
+package() {
+  cd fish-shell-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: fish.install
===
--- fish.install2019-01-10 22:16:49 UTC (rev 422188)
+++ fish.install2019-01-10 22:16:54 UTC (rev 422189)
@@ -1,13 +0,0 @@
-post_install() {
-  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
-}
-
-post_upgrade() {
-  post_install
-}
-
-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 422188, 
fish/trunk/fish.install)
===
--- fish.install(rev 0)
+++ fish.install2019-01-10 22:16:54 UTC (rev 422189)
@@ -0,0 +1,13 @@
+post_install() {
+  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  sed -ri '\|^/usr/bin/fish$|d' etc/shells
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in fish/repos/community-x86_64 (4 files)

2018-01-14 Thread Levente Polyak via arch-commits
Date: Sunday, January 14, 2018 @ 23:26:31
  Author: anthraxx
Revision: 282276

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   80 -
 fish.install |   26 +-
 2 files changed, 53 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-14 23:26:21 UTC (rev 282275)
+++ PKGBUILD2018-01-14 23:26:31 UTC (rev 282276)
@@ -1,40 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Kaiting Chen 
-# Contributor: Abhishek Dasgupta 
-# Contributor: Eric Belanger 
-# Contributor: Jan Fader 
-
-pkgname=fish
-pkgver=2.7.0
-pkgrel=1
-pkgdesc='Smart and user friendly shell intended mostly for interactive use'
-url='http://fishshell.com/'
-arch=('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=('c2006dec05e0398c88a5d627017243e8bffefa0e48415b1242487f211f3948ba9fdd849502630f0f02823ad5263358d14588b8dc812947a21f22ed6fe3542d93')
-
-prepare() {
-  cd fish-shell-${pkgver}
-  echo ${pkgver} > version
-  autoreconf -fiv
-}
-
-build() {
-  cd fish-shell-${pkgver}
-  ./configure --prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-package() {
-  cd fish-shell-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/PKGBUILD (from rev 282275, 
fish/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-14 23:26:31 UTC (rev 282276)
@@ -0,0 +1,40 @@
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Kaiting Chen 
+# Contributor: Abhishek Dasgupta 
+# Contributor: Eric Belanger 
+# Contributor: Jan Fader 
+
+pkgname=fish
+pkgver=2.7.1
+pkgrel=1
+pkgdesc='Smart and user friendly shell intended mostly for interactive use'
+url='https://fishshell.com/'
+arch=('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=('53eb8082812f28386b491ea18caa4a51ac66ead87fa78d5584275c66f1335b8705fad266170dc2ed6ee9e5d1febcdf0869c37ed2f95b58c10a74faf4ad95e610')
+
+prepare() {
+  cd fish-shell-${pkgver}
+  echo ${pkgver} > version
+  autoreconf -fiv
+}
+
+build() {
+  cd fish-shell-${pkgver}
+  ./configure --prefix=/usr \
+--sysconfdir=/etc
+  make
+}
+
+package() {
+  cd fish-shell-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: fish.install
===
--- fish.install2018-01-14 23:26:21 UTC (rev 282275)
+++ fish.install2018-01-14 23:26:31 UTC (rev 282276)
@@ -1,13 +0,0 @@
-post_install() {
-  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
-}
-
-post_upgrade() {
-  post_install
-}
-
-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 282275, 
fish/trunk/fish.install)
===
--- fish.install(rev 0)
+++ fish.install2018-01-14 23:26:31 UTC (rev 282276)
@@ -0,0 +1,13 @@
+post_install() {
+  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  sed -ri '\|^/usr/bin/fish$|d' etc/shells
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in fish/repos/community-x86_64 (4 files)

2017-11-26 Thread Levente Polyak via arch-commits
Date: Sunday, November 26, 2017 @ 22:56:00
  Author: anthraxx
Revision: 269091

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   80 -
 fish.install |   26 +-
 2 files changed, 53 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-26 22:55:53 UTC (rev 269090)
+++ PKGBUILD2017-11-26 22:56:00 UTC (rev 269091)
@@ -1,40 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Kaiting Chen 
-# Contributor: Abhishek Dasgupta 
-# Contributor: Eric Belanger 
-# Contributor: Jan Fader 
-
-pkgname=fish
-pkgver=2.6.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=('9ee9dbfee84af142c152b7b33c66aa930400e789776f38767f24c36ef0fa93d5939f6c1be0f17e01231b588d0cdc4dd622257bd61043e576de495cda0d61067c')
-
-prepare() {
-  cd fish-shell-${pkgver}
-  echo ${pkgver} > version
-  autoreconf -fiv
-}
-
-build() {
-  cd fish-shell-${pkgver}
-  ./configure --prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-package() {
-  cd fish-shell-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: fish/repos/community-x86_64/PKGBUILD (from rev 269090, 
fish/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-26 22:56:00 UTC (rev 269091)
@@ -0,0 +1,40 @@
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Kaiting Chen 
+# Contributor: Abhishek Dasgupta 
+# Contributor: Eric Belanger 
+# Contributor: Jan Fader 
+
+pkgname=fish
+pkgver=2.7.0
+pkgrel=1
+pkgdesc='Smart and user friendly shell intended mostly for interactive use'
+url='http://fishshell.com/'
+arch=('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=('c2006dec05e0398c88a5d627017243e8bffefa0e48415b1242487f211f3948ba9fdd849502630f0f02823ad5263358d14588b8dc812947a21f22ed6fe3542d93')
+
+prepare() {
+  cd fish-shell-${pkgver}
+  echo ${pkgver} > version
+  autoreconf -fiv
+}
+
+build() {
+  cd fish-shell-${pkgver}
+  ./configure --prefix=/usr \
+--sysconfdir=/etc
+  make
+}
+
+package() {
+  cd fish-shell-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: fish.install
===
--- fish.install2017-11-26 22:55:53 UTC (rev 269090)
+++ fish.install2017-11-26 22:56:00 UTC (rev 269091)
@@ -1,13 +0,0 @@
-post_install() {
-  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
-}
-
-post_upgrade() {
-  post_install
-}
-
-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 269090, 
fish/trunk/fish.install)
===
--- fish.install(rev 0)
+++ fish.install2017-11-26 22:56:00 UTC (rev 269091)
@@ -0,0 +1,13 @@
+post_install() {
+  grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  sed -ri '\|^/usr/bin/fish$|d' etc/shells
+}
+
+# vim:set ts=2 sw=2 et: