[arch-commits] Commit in ecl/trunk (PKGBUILD)

2020-06-28 Thread Antonio Rojas via arch-commits
Date: Sunday, June 28, 2020 @ 09:55:37
  Author: arojas
Revision: 390536

Backport crash fix for sagemath, quote variables

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |   15 +--
 1 file changed, 9 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-28 09:45:05 UTC (rev 390535)
+++ PKGBUILD2020-06-28 09:55:37 UTC (rev 390536)
@@ -3,7 +3,7 @@
 
 pkgname=ecl
 pkgver=20.4.24 # Remember to rebuild sagemath when the soname changes 
-pkgrel=1
+pkgrel=2
 pkgdesc="Embeddable Common Lisp"
 arch=('x86_64')
 url="https://common-lisp.net/project/ecl/;
@@ -12,18 +12,21 @@
 makedepends=('texinfo')
 provides=('common-lisp' 'cl-asdf')
 options=('!makeflags')
-source=("https://common-lisp.net/project/ecl/static/files/release/${pkgname}-${pkgver}.tgz;)
-sha256sums=('670838edf258a936b522fdb620da336de7e575aa0d27e34841727252726d0f07')
+source=("https://common-lisp.net/project/ecl/static/files/release/${pkgname}-${pkgver}.tgz;
+ https://gitlab.com/embeddable-common-lisp/ecl/-/commit/75877dd8.patch)
+sha256sums=('670838edf258a936b522fdb620da336de7e575aa0d27e34841727252726d0f07'
+'2c4896efc51114c0db0c0203a57379b3f1407e1107bf3443fe956d358221292c')
 
 prepare() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
 
+  patch -p1 -i ../75877dd8.patch # Fix segfaults in sagemath
   # upstream patch: 
https://gitlab.com/sagemath/dev/trac/-/commit/ed7bc14f751a76ad88c506cd33beb7f3e1030ff5
   sed -i "s/FFI_SYSV/FFI_UNIX64/" src/c/ffi.d
 }
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure
   CFLAGS+=" -fcommon"
   ./configure \
@@ -43,5 +46,5 @@
 }
 
 package() {
-  make -C $srcdir/$pkgname-$pkgver DESTDIR=$pkgdir install
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
 }


[arch-commits] Commit in ecl/trunk (PKGBUILD)

2020-06-21 Thread Antonio Rojas via arch-commits
Date: Sunday, June 21, 2020 @ 21:40:17
  Author: arojas
Revision: 390105

Add reminder to rebuild sagemath, it was forgotten again

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-21 21:36:52 UTC (rev 390104)
+++ PKGBUILD2020-06-21 21:40:17 UTC (rev 390105)
@@ -2,7 +2,7 @@
 # Maintainer: juergen 
 
 pkgname=ecl
-pkgver=20.4.24
+pkgver=20.4.24 # Remember to rebuild sagemath when the soname changes 
 pkgrel=1
 pkgdesc="Embeddable Common Lisp"
 arch=('x86_64')


[arch-commits] Commit in ecl/trunk (PKGBUILD)

2020-06-21 Thread Jürgen Hötzel via arch-commits
Date: Sunday, June 21, 2020 @ 18:43:29
  Author: juergen
Revision: 389934

upgpkg: ecl 20.4.24-1

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-21 18:37:07 UTC (rev 389933)
+++ PKGBUILD2020-06-21 18:43:29 UTC (rev 389934)
@@ -2,8 +2,8 @@
 # Maintainer: juergen 
 
 pkgname=ecl
-pkgver=16.1.3
-pkgrel=4
+pkgver=20.4.24
+pkgrel=1
 pkgdesc="Embeddable Common Lisp"
 arch=('x86_64')
 url="https://common-lisp.net/project/ecl/;
@@ -13,7 +13,7 @@
 provides=('common-lisp' 'cl-asdf')
 options=('!makeflags')
 
source=("https://common-lisp.net/project/ecl/static/files/release/${pkgname}-${pkgver}.tgz;)
-sha256sums=('76a585c616e8fa83a6b7209325a309da5bc0ca68e0658f396f49955638111254')
+sha256sums=('670838edf258a936b522fdb620da336de7e575aa0d27e34841727252726d0f07')
 
 prepare() {
   cd $srcdir/$pkgname-$pkgver


[arch-commits] Commit in ecl/trunk (PKGBUILD)

2020-05-19 Thread Allan McRae via arch-commits
Date: Wednesday, May 20, 2020 @ 01:31:57
  Author: allan
Revision: 386971

upgpkg: ecl 16.1.3-4: fix FTBFS

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-19 22:44:08 UTC (rev 386970)
+++ PKGBUILD2020-05-20 01:31:57 UTC (rev 386971)
@@ -3,7 +3,7 @@
 
 pkgname=ecl
 pkgver=16.1.3
-pkgrel=3
+pkgrel=4
 pkgdesc="Embeddable Common Lisp"
 arch=('x86_64')
 url="https://common-lisp.net/project/ecl/;
@@ -15,9 +15,17 @@
 
source=("https://common-lisp.net/project/ecl/static/files/release/${pkgname}-${pkgver}.tgz;)
 sha256sums=('76a585c616e8fa83a6b7209325a309da5bc0ca68e0658f396f49955638111254')
 
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # upstream patch: 
https://gitlab.com/sagemath/dev/trac/-/commit/ed7bc14f751a76ad88c506cd33beb7f3e1030ff5
+  sed -i "s/FFI_SYSV/FFI_UNIX64/" src/c/ffi.d
+}
+
 build() {
   cd $srcdir/$pkgname-$pkgver
   sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure
+  CFLAGS+=" -fcommon"
   ./configure \
 --build=$CHOST \
 --prefix=/usr \


[arch-commits] Commit in ecl/trunk (PKGBUILD)

2018-11-09 Thread Felix Yan via arch-commits
Date: Friday, November 9, 2018 @ 23:17:10
  Author: felixonmars
Revision: 338762

PIE/BUILDINFO rebuild

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-11-09 23:16:13 UTC (rev 338761)
+++ PKGBUILD2018-11-09 23:17:10 UTC (rev 338762)
@@ -3,7 +3,7 @@
 
 pkgname=ecl
 pkgver=16.1.3
-pkgrel=2
+pkgrel=3
 pkgdesc="Embeddable Common Lisp"
 arch=('x86_64')
 url="https://common-lisp.net/project/ecl/;


[arch-commits] Commit in ecl/trunk (PKGBUILD)

2017-07-12 Thread Antonio Rojas
Date: Wednesday, July 12, 2017 @ 17:36:30
  Author: arojas
Revision: 300165

PIE rebuild

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-07-12 17:26:55 UTC (rev 300164)
+++ PKGBUILD2017-07-12 17:36:30 UTC (rev 300165)
@@ -3,7 +3,7 @@
 
 pkgname=ecl
 pkgver=16.1.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Embeddable Common Lisp"
 arch=('i686' 'x86_64')
 url="https://common-lisp.net/project/ecl/;


[arch-commits] Commit in ecl/trunk (PKGBUILD)

2017-06-07 Thread Jürgen Hötzel
Date: Wednesday, June 7, 2017 @ 18:29:53
  Author: juergen
Revision: 298137

upgpkg: ecl 16.1.3-1

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-07 16:19:05 UTC (rev 298136)
+++ PKGBUILD2017-06-07 18:29:53 UTC (rev 298137)
@@ -2,7 +2,7 @@
 # Maintainer: juergen 
 
 pkgname=ecl
-pkgver=16.1.2
+pkgver=16.1.3
 pkgrel=1
 pkgdesc="Embeddable Common Lisp"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 provides=('common-lisp' 'cl-asdf')
 options=('!makeflags')
 
source=("https://common-lisp.net/project/ecl/static/files/release/${pkgname}-${pkgver}.tgz;)
-sha256sums=('2d482b1a0a4fbd5d881434517032279d808cb6405e22dd91ef6d733534464b99')
+sha256sums=('76a585c616e8fa83a6b7209325a309da5bc0ca68e0658f396f49955638111254')
 
 build() {
   cd $srcdir/$pkgname-$pkgver


[arch-commits] Commit in ecl/trunk (PKGBUILD)

2016-06-06 Thread Jürgen Hötzel
Date: Monday, June 6, 2016 @ 12:58:53
  Author: juergen
Revision: 269067

upgpkg: ecl 16.1.2-1

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |   16 
 1 file changed, 8 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-06-05 22:53:44 UTC (rev 269066)
+++ PKGBUILD2016-06-06 10:58:53 UTC (rev 269067)
@@ -1,9 +1,8 @@
-# $Id$
 # Contributor: John Proctor 
 # Maintainer: juergen 
 
 pkgname=ecl
-pkgver=16.0.0
+pkgver=16.1.2
 pkgrel=1
 pkgdesc="Embeddable Common Lisp"
 arch=('i686' 'x86_64')
@@ -13,23 +12,24 @@
 makedepends=('texinfo')
 provides=('common-lisp' 'cl-asdf')
 options=('!makeflags')
-source=(https://common-lisp.net/project/ecl/files/ecl-${pkgver}.tgz)
-sha1sums=('3309b5f4126d1a024f7eacaec6aca0e391dd3c75')
+source=("https://common-lisp.net/project/ecl/static/files/release/${pkgname}-${pkgver}.tgz;)
+sha256sums=('2d482b1a0a4fbd5d881434517032279d808cb6405e22dd91ef6d733534464b99')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
-  sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure 
+  sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure
   ./configure \
 --build=$CHOST \
 --prefix=/usr \
 --with-tcp \
+--with-serve-event \
 --with-clos-streams \
---enable-shared \
---enable-boehm=included \
 --with-system-gmp \
 --without-x \
+--without-clx \
 --enable-threads \
---without-clx
+--enable-shared \
+--enable-boehm=included \
 
   make
 }


[arch-commits] Commit in ecl/trunk (PKGBUILD)

2015-10-08 Thread Jürgen Hötzel
Date: Thursday, October 8, 2015 @ 16:11:37
  Author: juergen
Revision: 248499

upgpkg: ecl 16.0.0-1

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-10-08 13:49:41 UTC (rev 248498)
+++ PKGBUILD2015-10-08 14:11:37 UTC (rev 248499)
@@ -3,18 +3,18 @@
 # Maintainer: juergen 
 
 pkgname=ecl
-pkgver=15.3.7
+pkgver=16.0.0
 pkgrel=1
 pkgdesc="Embeddable Common Lisp"
 arch=('i686' 'x86_64')
-url="http://sourceforge.net/projects/ecls/;
+url="https://common-lisp.net/project/ecl/;
 license=('LGPL')
 depends=('bash' 'gmp')
 makedepends=('texinfo')
 provides=('common-lisp' 'cl-asdf')
 options=('!makeflags')
-source=(http://downloads.sourceforge.net/project/ecls/ecls/15.3/ecl-${pkgver}.tgz)
-md5sums=('39f4fb924c88e47ce31e6d57ac2a6de8')
+source=(https://common-lisp.net/project/ecl/files/ecl-${pkgver}.tgz)
+sha1sums=('3309b5f4126d1a024f7eacaec6aca0e391dd3c75')
 
 build() {
   cd $srcdir/$pkgname-$pkgver


[arch-commits] Commit in ecl/trunk (PKGBUILD)

2015-06-11 Thread Jürgen Hötzel
Date: Thursday, June 11, 2015 @ 22:06:42
  Author: juergen
Revision: 240610

upgpkg: ecl 15.3.7-1

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-11 19:57:34 UTC (rev 240609)
+++ PKGBUILD2015-06-11 20:06:42 UTC (rev 240610)
@@ -3,8 +3,8 @@
 # Maintainer: juergen juer...@archlinux.org
 
 pkgname=ecl
-pkgver=13.5.1
-pkgrel=2
+pkgver=15.3.7
+pkgrel=1
 pkgdesc=Embeddable Common Lisp
 arch=('i686' 'x86_64')
 url=http://sourceforge.net/projects/ecls/;
@@ -13,8 +13,8 @@
 makedepends=('texinfo')
 provides=('common-lisp' 'cl-asdf')
 options=('!makeflags')
-source=(http://downloads.sourceforge.net/project/ecls/ecls/13.5/ecl-${pkgver}.tgz)
-md5sums=('f6bb59d9383c51fc94e1c7ca5cf1c586')
+source=(http://downloads.sourceforge.net/project/ecls/ecls/15.3/ecl-${pkgver}.tgz)
+md5sums=('39f4fb924c88e47ce31e6d57ac2a6de8')
 
 build() {
   cd $srcdir/$pkgname-$pkgver


[arch-commits] Commit in ecl/trunk (PKGBUILD)

2014-01-03 Thread Bartłomiej Piotrowski
Date: Friday, January 3, 2014 @ 10:30:04
  Author: bpiotrowski
Revision: 203067

upgpkg: ecl 13.5.1-2

remove static libraries

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-01-03 09:19:21 UTC (rev 203066)
+++ PKGBUILD2014-01-03 09:30:04 UTC (rev 203067)
@@ -4,7 +4,7 @@
 
 pkgname=ecl
 pkgver=13.5.1
-pkgrel=1
+pkgrel=2
 pkgdesc=Embeddable Common Lisp
 arch=('i686' 'x86_64')
 url=http://sourceforge.net/projects/ecls/;



[arch-commits] Commit in ecl/trunk (PKGBUILD)

2013-08-13 Thread Jürgen Hötzel
Date: Tuesday, August 13, 2013 @ 10:44:15
  Author: juergen
Revision: 192490

upgpkg: ecl 13.5.1-1

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-13 06:26:20 UTC (rev 192489)
+++ PKGBUILD2013-08-13 08:44:15 UTC (rev 192490)
@@ -3,7 +3,7 @@
 # Maintainer: juergen juer...@archlinux.org
 
 pkgname=ecl
-pkgver=12.12.1
+pkgver=13.5.1
 pkgrel=1
 pkgdesc=Embeddable Common Lisp
 arch=('i686' 'x86_64')
@@ -13,8 +13,8 @@
 makedepends=('texinfo')
 provides=('common-lisp' 'cl-asdf')
 options=('!makeflags')
-source=(http://downloads.sourceforge.net/project/ecls/ecls/12.12/ecl-${pkgver}.tgz)
-md5sums=('014856bdfe265672f9d4b86a060a7aba')
+source=(http://downloads.sourceforge.net/project/ecls/ecls/13.5/ecl-${pkgver}.tgz)
+md5sums=('f6bb59d9383c51fc94e1c7ca5cf1c586')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



[arch-commits] Commit in ecl/trunk (PKGBUILD)

2013-03-18 Thread Jürgen Hötzel
Date: Monday, March 18, 2013 @ 14:28:25
  Author: juergen
Revision: 180161

upgpkg: ecl 12.12.1-1

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-18 13:15:20 UTC (rev 180160)
+++ PKGBUILD2013-03-18 13:28:25 UTC (rev 180161)
@@ -3,7 +3,7 @@
 # Maintainer: juergen juer...@archlinux.org
 
 pkgname=ecl
-pkgver=12.7.1
+pkgver=12.12.1
 pkgrel=1
 pkgdesc=Embeddable Common Lisp
 arch=('i686' 'x86_64')
@@ -13,8 +13,8 @@
 makedepends=('texinfo')
 provides=('common-lisp' 'cl-asdf')
 options=('!makeflags')
-source=(http://downloads.sourceforge.net/project/ecls/ecls/12.7/ecl-12.7.1.tar.gz)
-md5sums=('ce8dd2136fbbc74e44a1c41b32db1f3c')
+source=(http://downloads.sourceforge.net/project/ecls/ecls/12.12/ecl-${pkgver}.tgz)
+md5sums=('014856bdfe265672f9d4b86a060a7aba')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



[arch-commits] Commit in ecl/trunk (PKGBUILD)

2012-08-02 Thread Juergen Hoetzel
Date: Thursday, August 2, 2012 @ 04:56:48
  Author: juergen
Revision: 164664

upgpkg: ecl 12.7.1-1

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-08-02 07:31:34 UTC (rev 164663)
+++ PKGBUILD2012-08-02 08:56:48 UTC (rev 164664)
@@ -3,8 +3,8 @@
 # Maintainer: juergen juer...@archlinux.org
 
 pkgname=ecl
-pkgver=12.2.1
-pkgrel=2
+pkgver=12.7.1
+pkgrel=1
 pkgdesc=Embeddable Common Lisp
 arch=('i686' 'x86_64')
 url=http://sourceforge.net/projects/ecls/;
@@ -13,8 +13,8 @@
 makedepends=('texinfo')
 provides=('common-lisp' 'cl-asdf')
 options=('!makeflags')
-source=(http://downloads.sourceforge.net/project/ecls/ecls/12.2/ecl-12.2.1.tgz)
-md5sums=('1a54b733e7cd07af2b1cb6d7f8b716d2')
+source=(http://downloads.sourceforge.net/project/ecls/ecls/12.7/ecl-12.7.1.tar.gz)
+md5sums=('ce8dd2136fbbc74e44a1c41b32db1f3c')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



[arch-commits] Commit in ecl/trunk (PKGBUILD)

2012-05-25 Thread Juergen Hoetzel
Date: Friday, May 25, 2012 @ 18:32:12
  Author: juergen
Revision: 159615

enable thread support

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |   25 +
 1 file changed, 13 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-05-25 21:30:09 UTC (rev 159614)
+++ PKGBUILD2012-05-25 22:32:12 UTC (rev 159615)
@@ -4,7 +4,7 @@
 
 pkgname=ecl
 pkgver=12.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc=Embeddable Common Lisp
 arch=('i686' 'x86_64')
 url=http://sourceforge.net/projects/ecls/;
@@ -19,20 +19,21 @@
 build() {
   cd $srcdir/$pkgname-$pkgver
   sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure 
-  ./configure --build=$CHOST \
-  --prefix=/usr   \
-  --with-tcp  \
-  --with-clos-streams \
-  --enable-shared \
-  --enable-boehm=included \
-  --with-system-gmp \
-  --without-x \
-  --without-clx \
-  --disable-threads
+  ./configure \
+--build=$CHOST \
+--prefix=/usr \
+--with-tcp \
+--with-clos-streams \
+--enable-shared \
+--enable-boehm=included \
+--with-system-gmp \
+--without-x \
+--enable-threads \
+--without-clx
 
   make
 }
 
 package() {
   make -C $srcdir/$pkgname-$pkgver DESTDIR=$pkgdir install
-}
\ No newline at end of file
+}



[arch-commits] Commit in ecl/trunk (PKGBUILD)

2012-02-20 Thread Juergen Hoetzel
Date: Monday, February 20, 2012 @ 15:55:17
  Author: juergen
Revision: 150702

update to 12.2.1

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-20 20:48:33 UTC (rev 150701)
+++ PKGBUILD2012-02-20 20:55:17 UTC (rev 150702)
@@ -3,7 +3,7 @@
 # Maintainer: juergen juer...@archlinux.org
 
 pkgname=ecl
-pkgver=11.1.1
+pkgver=12.2.1
 pkgrel=1
 pkgdesc=Embeddable Common Lisp
 arch=('i686' 'x86_64')
@@ -13,8 +13,8 @@
 makedepends=('texinfo')
 provides=('common-lisp' 'cl-asdf')
 options=('!makeflags')
-source=(http://downloads.sourceforge.net/project/ecls/ecls/11.1/ecl-11.1.1.tar.gz)
-md5sums=('6963cfa00e1c6d4a2123fd62100b02e6')
+source=(http://downloads.sourceforge.net/project/ecls/ecls/12.2/ecl-12.2.1.tgz)
+md5sums=('1a54b733e7cd07af2b1cb6d7f8b716d2')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
@@ -24,7 +24,7 @@
   --with-tcp  \
   --with-clos-streams \
   --enable-shared \
-  --enable-boehm=local \
+  --enable-boehm=included \
   --with-system-gmp \
   --without-x \
   --without-clx \



[arch-commits] Commit in ecl/trunk (PKGBUILD)

2012-02-20 Thread Juergen Hoetzel
Date: Monday, February 20, 2012 @ 16:04:32
  Author: juergen
Revision: 150705

use package() for install

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-20 21:01:49 UTC (rev 150704)
+++ PKGBUILD2012-02-20 21:04:32 UTC (rev 150705)
@@ -18,7 +18,7 @@
 
 build() {
   cd $srcdir/$pkgname-$pkgver
-  sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure || return 1
+  sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure 
   ./configure --build=$CHOST \
   --prefix=/usr   \
   --with-tcp  \
@@ -30,6 +30,9 @@
   --without-clx \
   --disable-threads
 
-  make || return 1
-  make DESTDIR=$pkgdir install || return 1
+  make
 }
+
+package() {
+  make -C $srcdir/$pkgname-$pkgver DESTDIR=$pkgdir install
+}
\ No newline at end of file



[arch-commits] Commit in ecl/trunk (PKGBUILD)

2011-06-16 Thread Juergen Hoetzel
Date: Thursday, June 16, 2011 @ 04:47:04
  Author: juergen
Revision: 127540

update to 11.1.1

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-06-16 08:28:42 UTC (rev 127539)
+++ PKGBUILD2011-06-16 08:47:04 UTC (rev 127540)
@@ -3,7 +3,7 @@
 # Maintainer: juergen juer...@archlinux.org
 
 pkgname=ecl
-pkgver=10.4.1
+pkgver=11.1.1
 pkgrel=1
 pkgdesc=Embeddable Common Lisp
 arch=('i686' 'x86_64')
@@ -13,8 +13,8 @@
 makedepends=('texinfo')
 provides=('common-lisp' 'cl-asdf')
 options=('!makeflags')
-source=(http://downloads.sourceforge.net/project/ecls/ecls/10.4/ecl-10.4.1.tar.gz)
-md5sums=('be53f5e55a3f07c7cfb5fb5cd9a2a3f0')
+source=(http://downloads.sourceforge.net/project/ecls/ecls/11.1/ecl-11.1.1.tar.gz)
+md5sums=('6963cfa00e1c6d4a2123fd62100b02e6')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



[arch-commits] Commit in ecl/trunk (PKGBUILD)

2010-04-16 Thread Juergen Hoetzel
Date: Friday, April 16, 2010 @ 07:15:06
  Author: juergen
Revision: 77589

update to 10.4.1

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-04-16 11:07:25 UTC (rev 77588)
+++ PKGBUILD2010-04-16 11:15:06 UTC (rev 77589)
@@ -3,8 +3,8 @@
 # Maintainer: juergen juer...@archlinux.org
 
 pkgname=ecl
-pkgver=9.12.3
-pkgrel=2
+pkgver=10.4.1
+pkgrel=1
 pkgdesc=Embeddable Common Lisp
 arch=('i686' 'x86_64')
 url=http://sourceforge.net/projects/ecls/;
@@ -13,8 +13,8 @@
 makedepends=('texinfo')
 provides=('common-lisp' 'cl-asdf')
 options=('!makeflags')
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}s/${pkgname}-${pkgver}.tgz)
-md5sums=('52b29c24bc29c5144f3314dac8cdd42d')
+source=(http://downloads.sourceforge.net/project/ecls/ecls/10.4/ecl-10.4.1.tar.gz)
+md5sums=('be53f5e55a3f07c7cfb5fb5cd9a2a3f0')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



[arch-commits] Commit in ecl/trunk (PKGBUILD)

2010-03-19 Thread Allan McRae
Date: Friday, March 19, 2010 @ 23:41:11
  Author: allan
Revision: 72801

upgpkg: ecl 9.12.3-2
gmp5 rebuild

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-03-20 03:32:00 UTC (rev 72800)
+++ PKGBUILD2010-03-20 03:41:11 UTC (rev 72801)
@@ -4,7 +4,7 @@
 
 pkgname=ecl
 pkgver=9.12.3
-pkgrel=1
+pkgrel=2
 pkgdesc=Embeddable Common Lisp
 arch=('i686' 'x86_64')
 url=http://sourceforge.net/projects/ecls/;



[arch-commits] Commit in ecl/trunk (PKGBUILD)

2010-01-31 Thread Giovanni Scafora
Date: Sunday, January 31, 2010 @ 20:59:32
  Author: giovanni
Revision: 66611

upgpkg: ecl 9.12.3-1
upstream release

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-02-01 01:50:50 UTC (rev 66610)
+++ PKGBUILD2010-02-01 01:59:32 UTC (rev 66611)
@@ -3,7 +3,7 @@
 # Maintainer: juergen juer...@archlinux.org
 
 pkgname=ecl
-pkgver=9.12.1
+pkgver=9.12.3
 pkgrel=1
 pkgdesc=Embeddable Common Lisp
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 provides=('common-lisp' 'cl-asdf')
 options=('!makeflags')
 
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}s/${pkgname}-${pkgver}.tgz)
-md5sums=('fb37d1ff252960f939d29299269ab205')
+md5sums=('52b29c24bc29c5144f3314dac8cdd42d')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



[arch-commits] Commit in ecl/trunk (PKGBUILD)

2009-12-02 Thread Ionut Biru
Date: Wednesday, December 2, 2009 @ 11:30:07
  Author: ibiru
Revision: 60268

upgpkg: ecl 9.12.1-1
update to 9.12.1

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2009-12-02 16:29:45 UTC (rev 60267)
+++ PKGBUILD2009-12-02 16:30:07 UTC (rev 60268)
@@ -3,7 +3,7 @@
 # Maintainer: juergen juer...@archlinux.org
 
 pkgname=ecl
-pkgver=9.10.2
+pkgver=9.12.1
 pkgrel=1
 pkgdesc=Embeddable Common Lisp
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 provides=('common-lisp' 'cl-asdf')
 options=('!makeflags')
 
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}s/${pkgname}-${pkgver}.tgz)
-md5sums=('10de08ba4a86592247ee1d1ce0c920e3')
+md5sums=('fb37d1ff252960f939d29299269ab205')
 
 build() {
   cd $srcdir/$pkgname-$pkgver