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

Levente Polyak anthraxx at gemini.archlinux.org
Thu Mar 31 20:06:18 UTC 2022


    Date: Thursday, March 31, 2022 @ 20:06:18
  Author: anthraxx
Revision: 1177976

archrelease: copy trunk to community-x86_64

Added:
  fish/repos/community-x86_64/PKGBUILD
    (from rev 1177975, fish/trunk/PKGBUILD)
  fish/repos/community-x86_64/fish.install
    (from rev 1177975, 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	2022-03-31 20:06:11 UTC (rev 1177975)
+++ PKGBUILD	2022-03-31 20:06:18 UTC (rev 1177976)
@@ -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.3.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=('b5b4ee1a5269762cbbe993a4bd6507e675e4100ce9bbe84214a5eeb2b19fae89'
-            'SKIP')
-sha512sums=('fc50ca44fab3f2d942284d4f714150f7ccf1e49c73da36f8d4ae4a33a9b3280f98bed15848839f5d443b4274fd0ff90174bafa6a8e9a4da226dda63d7766a660'
-            '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 1177975, fish/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2022-03-31 20:06:18 UTC (rev 1177976)
@@ -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.4.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=('b6f23b3843b04db6b0a90fea1f6f0d0e40cc027b4a732098200863f2864a94ea'
+            'SKIP')
+sha512sums=('20a2892ec0c413c4c3fcfe5fbf52fb2398de35a9172758728bd2ccdccc5fb6e0e18712a664d02db67543d47180a4d04f3998a6297d23088926b6d03baefdf981'
+            '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	2022-03-31 20:06:11 UTC (rev 1177975)
+++ fish.install	2022-03-31 20:06:18 UTC (rev 1177976)
@@ -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 1177975, fish/trunk/fish.install)
===================================================================
--- fish.install	                        (rev 0)
+++ fish.install	2022-03-31 20:06:18 UTC (rev 1177976)
@@ -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