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

Felix Yan felixonmars at archlinux.org
Tue Mar 23 23:36:56 UTC 2021


    Date: Tuesday, March 23, 2021 @ 23:36:56
  Author: felixonmars
Revision: 901377

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-03-23 23:36:42 UTC (rev 901376)
+++ PKGBUILD	2021-03-23 23:36:56 UTC (rev 901377)
@@ -1,52 +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=3.2.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')
-checkdepends=('expect' 'procps-ng')
-install=fish.install
-backup=(etc/fish/config.fish)
-source=(https://github.com/fish-shell/fish-shell/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.xz{,.asc})
-validpgpkeys=(003837986104878835FA516D7A67D962D88A709A) # David Adam <zanchey at gmail.com>
-sha256sums=('4f0293ed9f6a6b77e47d41efabe62f3319e86efc8bf83cc58733044fbc6f9211'
-            'SKIP')
-sha512sums=('4525b8dd991179f77a298080d389813d1da8557bd394d174ded9238570715137e3aeec009d123811b34c07856d5f7cbe0ad35dc599d748f8f305036c3b74face'
-            '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:

Copied: fish/repos/community-x86_64/PKGBUILD (from rev 901376, fish/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-03-23 23:36:56 UTC (rev 901377)
@@ -0,0 +1,52 @@
+# 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=3.2.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')
+checkdepends=('expect' 'procps-ng')
+install=fish.install
+backup=(etc/fish/config.fish)
+source=(https://github.com/fish-shell/fish-shell/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.xz{,.asc})
+validpgpkeys=(003837986104878835FA516D7A67D962D88A709A) # David Adam <zanchey at gmail.com>
+sha256sums=('d8e49f4090d3778df17dd825e4a2a80192015682423cd9dd02b6675d65c3af5b'
+            'SKIP')
+sha512sums=('bf565bac93e7d163af5253b4053f9c9e760508b929624440fd8a160504a127c34013882576293c72a47ce7f285f87e0b594d61d7cebcefcc3be4e92c572926bc'
+            '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.install	2021-03-23 23:36:42 UTC (rev 901376)
+++ fish.install	2021-03-23 23:36:56 UTC (rev 901377)
@@ -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 901376, fish/trunk/fish.install)
===================================================================
--- fish.install	                        (rev 0)
+++ fish.install	2021-03-23 23:36:56 UTC (rev 901377)
@@ -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 '\|^/usr/bin/fish$|d' -e '\|^/bin/fish$|d' etc/shells
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list