[arch-commits] Commit in gauche/repos (8 files)

Alexander Rødseth arodseth at archlinux.org
Mon Apr 10 09:52:21 UTC 2017


    Date: Monday, April 10, 2017 @ 09:52:21
  Author: arodseth
Revision: 221747

archrelease: copy trunk to community-x86_64, community-i686

Added:
  gauche/repos/community-i686/PKGBUILD
    (from rev 221746, gauche/trunk/PKGBUILD)
  gauche/repos/community-i686/gauche.install
    (from rev 221746, gauche/trunk/gauche.install)
  gauche/repos/community-x86_64/PKGBUILD
    (from rev 221746, gauche/trunk/PKGBUILD)
  gauche/repos/community-x86_64/gauche.install
    (from rev 221746, gauche/trunk/gauche.install)
Deleted:
  gauche/repos/community-i686/PKGBUILD
  gauche/repos/community-i686/gauche.install
  gauche/repos/community-x86_64/PKGBUILD
  gauche/repos/community-x86_64/gauche.install

---------------------------------+
 /PKGBUILD                       |   76 ++++++++++++++++++++++++++++++++++++++
 /gauche.install                 |   42 +++++++++++++++++++++
 community-i686/PKGBUILD         |   34 -----------------
 community-i686/gauche.install   |   21 ----------
 community-x86_64/PKGBUILD       |   34 -----------------
 community-x86_64/gauche.install |   21 ----------
 6 files changed, 118 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2017-04-10 09:52:10 UTC (rev 221746)
+++ community-i686/PKGBUILD	2017-04-10 09:52:21 UTC (rev 221747)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
-# Contributor: Stefan Husmann <stefan-husmann at t-online.de>
-# Contributor: Motohiro Ueki <ueki.com at gmail.com>
-# Contributor: nkoizu <nkoizu at gmail.com>
-
-pkgname=gauche
-pkgver=0.9.5
-pkgrel=1
-url='http://practical-scheme.net/gauche/'
-pkgdesc='R5RS Scheme implementation (provides gosh)'
-depends=('slib' 'libatomic_ops')
-license=('BSD')
-arch=('x86_64' 'i686')
-install=$pkgname.install
-source=("http://downloads.sourceforge.net/$pkgname/Gauche-$pkgver.tgz")
-sha256sums=('4c8a53213de112708bbda5fa9648c21497d43ebf809ed5b32b15f21266b4e73c')
-
-build() {
-  cd "Gauche-$pkgver"
-
-  ./configure --enable-multibyte=utf-8 --prefix=/usr
-  make
-}
-
-package() {
-  cd "Gauche-$pkgver"
-
-  make DESTDIR="$pkgdir" install-pkg install-doc
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# getver: practical-scheme.net/gauche/gmemo/index.cgi?ReleaseNotes
-# vim:set ts=2 sw=2 et:

Copied: gauche/repos/community-i686/PKGBUILD (from rev 221746, gauche/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2017-04-10 09:52:21 UTC (rev 221747)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+# Contributor: Stefan Husmann <stefan-husmann at t-online.de>
+# Contributor: Motohiro Ueki <ueki.com at gmail.com>
+# Contributor: nkoizu <nkoizu at gmail.com>
+
+pkgname=gauche
+pkgver=0.9.5
+pkgrel=2
+url='https://practical-scheme.net/gauche/'
+pkgdesc='R5RS Scheme implementation (provides gosh)'
+depends=('slib' 'libatomic_ops')
+license=('BSD')
+arch=('x86_64' 'i686')
+install=$pkgname.install
+source=("https://downloads.sourceforge.net/$pkgname/Gauche-$pkgver.tgz")
+sha256sums=('4c8a53213de112708bbda5fa9648c21497d43ebf809ed5b32b15f21266b4e73c')
+
+prepare() {
+  ln -sf "Gauche-$pkgver" "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --enable-multibyte=utf-8 --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install-pkg install-doc
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# getver: practical-scheme.net/gauche/gmemo/index.cgi?ReleaseNotes
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/gauche.install
===================================================================
--- community-i686/gauche.install	2017-04-10 09:52:10 UTC (rev 221746)
+++ community-i686/gauche.install	2017-04-10 09:52:21 UTC (rev 221747)
@@ -1,21 +0,0 @@
-infodir=/usr/share/info
-filelist=(gauche-refe.info gauche-refj.info)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-    install-info $infodir/$file.gz $infodir/dir 2> /dev/null
-  done
-  /usr/bin/gosh -ftest -uslib -E"require 'new-catalog" -Eexit;
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-    install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
-  done
-}

Copied: gauche/repos/community-i686/gauche.install (from rev 221746, gauche/trunk/gauche.install)
===================================================================
--- community-i686/gauche.install	                        (rev 0)
+++ community-i686/gauche.install	2017-04-10 09:52:21 UTC (rev 221747)
@@ -0,0 +1,21 @@
+infodir=/usr/share/info
+filelist=(gauche-refe.info gauche-refj.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+    install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+  /usr/bin/gosh -ftest -uslib -E"require 'new-catalog" -Eexit;
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+    install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2017-04-10 09:52:10 UTC (rev 221746)
+++ community-x86_64/PKGBUILD	2017-04-10 09:52:21 UTC (rev 221747)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
-# Contributor: Stefan Husmann <stefan-husmann at t-online.de>
-# Contributor: Motohiro Ueki <ueki.com at gmail.com>
-# Contributor: nkoizu <nkoizu at gmail.com>
-
-pkgname=gauche
-pkgver=0.9.5
-pkgrel=1
-url='http://practical-scheme.net/gauche/'
-pkgdesc='R5RS Scheme implementation (provides gosh)'
-depends=('slib' 'libatomic_ops')
-license=('BSD')
-arch=('x86_64' 'i686')
-install=$pkgname.install
-source=("http://downloads.sourceforge.net/$pkgname/Gauche-$pkgver.tgz")
-sha256sums=('4c8a53213de112708bbda5fa9648c21497d43ebf809ed5b32b15f21266b4e73c')
-
-build() {
-  cd "Gauche-$pkgver"
-
-  ./configure --enable-multibyte=utf-8 --prefix=/usr
-  make
-}
-
-package() {
-  cd "Gauche-$pkgver"
-
-  make DESTDIR="$pkgdir" install-pkg install-doc
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# getver: practical-scheme.net/gauche/gmemo/index.cgi?ReleaseNotes
-# vim:set ts=2 sw=2 et:

Copied: gauche/repos/community-x86_64/PKGBUILD (from rev 221746, gauche/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2017-04-10 09:52:21 UTC (rev 221747)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+# Contributor: Stefan Husmann <stefan-husmann at t-online.de>
+# Contributor: Motohiro Ueki <ueki.com at gmail.com>
+# Contributor: nkoizu <nkoizu at gmail.com>
+
+pkgname=gauche
+pkgver=0.9.5
+pkgrel=2
+url='https://practical-scheme.net/gauche/'
+pkgdesc='R5RS Scheme implementation (provides gosh)'
+depends=('slib' 'libatomic_ops')
+license=('BSD')
+arch=('x86_64' 'i686')
+install=$pkgname.install
+source=("https://downloads.sourceforge.net/$pkgname/Gauche-$pkgver.tgz")
+sha256sums=('4c8a53213de112708bbda5fa9648c21497d43ebf809ed5b32b15f21266b4e73c')
+
+prepare() {
+  ln -sf "Gauche-$pkgver" "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --enable-multibyte=utf-8 --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install-pkg install-doc
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# getver: practical-scheme.net/gauche/gmemo/index.cgi?ReleaseNotes
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/gauche.install
===================================================================
--- community-x86_64/gauche.install	2017-04-10 09:52:10 UTC (rev 221746)
+++ community-x86_64/gauche.install	2017-04-10 09:52:21 UTC (rev 221747)
@@ -1,21 +0,0 @@
-infodir=/usr/share/info
-filelist=(gauche-refe.info gauche-refj.info)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-    install-info $infodir/$file.gz $infodir/dir 2> /dev/null
-  done
-  /usr/bin/gosh -ftest -uslib -E"require 'new-catalog" -Eexit;
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-    install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
-  done
-}

Copied: gauche/repos/community-x86_64/gauche.install (from rev 221746, gauche/trunk/gauche.install)
===================================================================
--- community-x86_64/gauche.install	                        (rev 0)
+++ community-x86_64/gauche.install	2017-04-10 09:52:21 UTC (rev 221747)
@@ -0,0 +1,21 @@
+infodir=/usr/share/info
+filelist=(gauche-refe.info gauche-refj.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+    install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+  /usr/bin/gosh -ftest -uslib -E"require 'new-catalog" -Eexit;
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+    install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}



More information about the arch-commits mailing list