[arch-commits] Commit in fish/repos/community-x86_64 (4 files)
Filipe Laíns
ffy00 at archlinux.org
Tue Oct 15 07:47:13 UTC 2019
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
===================================================================
--- PKGBUILD 2019-10-15 07:46:49 UTC (rev 516101)
+++ PKGBUILD 2019-10-15 07:47:12 UTC (rev 516102)
@@ -1,43 +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.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)
+++ PKGBUILD 2019-10-15 07:47:12 UTC (rev 516102)
@@ -0,0 +1,47 @@
+# 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.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.install 2019-10-15 07:46:49 UTC (rev 516101)
+++ fish.install 2019-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.install 2019-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:
More information about the arch-commits
mailing list