[arch-commits] Commit in fish/repos/community-x86_64 (4 files)
Levente Polyak
anthraxx at archlinux.org
Sat Apr 4 13:05:43 UTC 2020
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
===================================================================
--- PKGBUILD 2020-04-04 13:05:35 UTC (rev 611579)
+++ PKGBUILD 2020-04-04 13:05:42 UTC (rev 611580)
@@ -1,44 +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.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 <zanchey at gmail.com>
-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)
+++ PKGBUILD 2020-04-04 13:05:42 UTC (rev 611580)
@@ -0,0 +1,46 @@
+# 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.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 <zanchey at gmail.com>
+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.install 2020-04-04 13:05:35 UTC (rev 611579)
+++ fish.install 2020-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.install 2020-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
+}
+
+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