[arch-commits] Commit in fish/repos (8 files)
Bartłomiej Piotrowski
bpiotrowski at nymeria.archlinux.org
Mon Oct 28 19:00:44 UTC 2013
Date: Monday, October 28, 2013 @ 20:00:44
Author: bpiotrowski
Revision: 99431
archrelease: copy trunk to community-i686, community-x86_64
Added:
fish/repos/community-i686/PKGBUILD
(from rev 99430, fish/trunk/PKGBUILD)
fish/repos/community-i686/fish.install
(from rev 99430, fish/trunk/fish.install)
fish/repos/community-x86_64/PKGBUILD
(from rev 99430, fish/trunk/PKGBUILD)
fish/repos/community-x86_64/fish.install
(from rev 99430, fish/trunk/fish.install)
Deleted:
fish/repos/community-i686/PKGBUILD
fish/repos/community-i686/fish.install
fish/repos/community-x86_64/PKGBUILD
fish/repos/community-x86_64/fish.install
-------------------------------+
/PKGBUILD | 70 ++++++++++++++++++++++++++++++++++++++++
/fish.install | 22 ++++++++++++
community-i686/PKGBUILD | 37 ---------------------
community-i686/fish.install | 11 ------
community-x86_64/PKGBUILD | 37 ---------------------
community-x86_64/fish.install | 11 ------
6 files changed, 92 insertions(+), 96 deletions(-)
Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD 2013-10-28 19:00:41 UTC (rev 99430)
+++ community-i686/PKGBUILD 2013-10-28 19:00:44 UTC (rev 99431)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Kaiting Chen <kaitocracy at gmail.com>
-# Maintainer: Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
-# 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=2.0.0
-pkgrel=2
-pkgdesc='Smart and user friendly shell intended mostly for interactive use'
-arch=('i686' 'x86_64')
-url='http://fishshell.com/'
-license=('GPL2')
-depends=('python2' 'inetutils')
-makedepends=('doxygen' 'python')
-install=fish.install
-source=(fish-$pkgver.tar.gz::http://fishshell.com/files/$pkgver/fish.tar.gz)
-md5sums=('fe5907e6af61607d4128ce891a1f6501')
-
-build() {
- set -x
- cd fish
- autoconf
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --without-xsel
- make
-}
-
-package() {
- cd fish
- make DESTDIR="$pkgdir" install
-
- # use python2
- find "$pkgdir"/usr/share/fish/tools/ -type f -exec sed -e "1s|python|python2|" -i {} \;
-}
Copied: fish/repos/community-i686/PKGBUILD (from rev 99430, fish/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-10-28 19:00:44 UTC (rev 99431)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Kaiting Chen <kaitocracy at gmail.com>
+# Maintainer: Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
+# 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=2.1.0
+pkgrel=1
+pkgdesc='Smart and user friendly shell intended mostly for interactive use'
+arch=('i686' 'x86_64')
+url='http://fishshell.com/'
+license=('GPL2')
+depends=('python2' 'inetutils')
+makedepends=('doxygen' 'python')
+install=fish.install
+source=(http://fishshell.com/files/$pkgver/fish-$pkgver.tar.gz)
+md5sums=('3a29aebde522b8f52d9975d7423db99e')
+
+build() {
+ cd fish-$pkgver
+ ./configure --prefix=/usr \
+ --sysconfdir=/etc \
+ --without-xsel
+ make
+}
+
+package() {
+ cd fish-$pkgver
+ make DESTDIR="$pkgdir" install
+
+ # use python2
+ find "$pkgdir"/usr/share/fish/tools/ -type f -exec sed -e "1s|python|python2|" -i {} \;
+}
Deleted: community-i686/fish.install
===================================================================
--- community-i686/fish.install 2013-10-28 19:00:41 UTC (rev 99430)
+++ community-i686/fish.install 2013-10-28 19:00:44 UTC (rev 99431)
@@ -1,11 +0,0 @@
-post_install() {
- grep -q '/usr/bin/fish' etc/shells || echo '/usr/bin/fish' >> etc/shells
-}
-
-post_upgrade() {
- post_install
-}
-
-pre_remove() {
- sed -i '/^\/usr\/bin\/fish/d' /etc/shells
-}
Copied: fish/repos/community-i686/fish.install (from rev 99430, fish/trunk/fish.install)
===================================================================
--- community-i686/fish.install (rev 0)
+++ community-i686/fish.install 2013-10-28 19:00:44 UTC (rev 99431)
@@ -0,0 +1,11 @@
+post_install() {
+ grep -q '/usr/bin/fish' etc/shells || echo '/usr/bin/fish' >> etc/shells
+}
+
+post_upgrade() {
+ post_install
+}
+
+pre_remove() {
+ sed -i '/^\/usr\/bin\/fish/d' /etc/shells
+}
Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD 2013-10-28 19:00:41 UTC (rev 99430)
+++ community-x86_64/PKGBUILD 2013-10-28 19:00:44 UTC (rev 99431)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Kaiting Chen <kaitocracy at gmail.com>
-# Maintainer: Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
-# 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=2.0.0
-pkgrel=2
-pkgdesc='Smart and user friendly shell intended mostly for interactive use'
-arch=('i686' 'x86_64')
-url='http://fishshell.com/'
-license=('GPL2')
-depends=('python2' 'inetutils')
-makedepends=('doxygen' 'python')
-install=fish.install
-source=(fish-$pkgver.tar.gz::http://fishshell.com/files/$pkgver/fish.tar.gz)
-md5sums=('fe5907e6af61607d4128ce891a1f6501')
-
-build() {
- set -x
- cd fish
- autoconf
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --without-xsel
- make
-}
-
-package() {
- cd fish
- make DESTDIR="$pkgdir" install
-
- # use python2
- find "$pkgdir"/usr/share/fish/tools/ -type f -exec sed -e "1s|python|python2|" -i {} \;
-}
Copied: fish/repos/community-x86_64/PKGBUILD (from rev 99430, fish/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2013-10-28 19:00:44 UTC (rev 99431)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Kaiting Chen <kaitocracy at gmail.com>
+# Maintainer: Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
+# 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=2.1.0
+pkgrel=1
+pkgdesc='Smart and user friendly shell intended mostly for interactive use'
+arch=('i686' 'x86_64')
+url='http://fishshell.com/'
+license=('GPL2')
+depends=('python2' 'inetutils')
+makedepends=('doxygen' 'python')
+install=fish.install
+source=(http://fishshell.com/files/$pkgver/fish-$pkgver.tar.gz)
+md5sums=('3a29aebde522b8f52d9975d7423db99e')
+
+build() {
+ cd fish-$pkgver
+ ./configure --prefix=/usr \
+ --sysconfdir=/etc \
+ --without-xsel
+ make
+}
+
+package() {
+ cd fish-$pkgver
+ make DESTDIR="$pkgdir" install
+
+ # use python2
+ find "$pkgdir"/usr/share/fish/tools/ -type f -exec sed -e "1s|python|python2|" -i {} \;
+}
Deleted: community-x86_64/fish.install
===================================================================
--- community-x86_64/fish.install 2013-10-28 19:00:41 UTC (rev 99430)
+++ community-x86_64/fish.install 2013-10-28 19:00:44 UTC (rev 99431)
@@ -1,11 +0,0 @@
-post_install() {
- grep -q '/usr/bin/fish' etc/shells || echo '/usr/bin/fish' >> etc/shells
-}
-
-post_upgrade() {
- post_install
-}
-
-pre_remove() {
- sed -i '/^\/usr\/bin\/fish/d' /etc/shells
-}
Copied: fish/repos/community-x86_64/fish.install (from rev 99430, fish/trunk/fish.install)
===================================================================
--- community-x86_64/fish.install (rev 0)
+++ community-x86_64/fish.install 2013-10-28 19:00:44 UTC (rev 99431)
@@ -0,0 +1,11 @@
+post_install() {
+ grep -q '/usr/bin/fish' etc/shells || echo '/usr/bin/fish' >> etc/shells
+}
+
+post_upgrade() {
+ post_install
+}
+
+pre_remove() {
+ sed -i '/^\/usr\/bin\/fish/d' /etc/shells
+}
More information about the arch-commits
mailing list