Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Sep 2004 17:13:12 +0200
From:      Nils M Holm <nmh@t3x.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/72079: lang/alisp maintainer update
Message-ID:  <2004092515131200-1724@Freedom.T3X.ORG>
Resent-Message-ID: <200409251520.i8PFKNsN046094@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         72079
>Category:       ports
>Synopsis:       lang/alisp maintainer update
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Sat Sep 25 15:20:23 GMT 2004
>Closed-Date:
>Last-Modified:
>Originator:     Nils M Holm
>Release:        FreeBSD 4.9-RELEASE i386
>Organization:
T3X.ORG
>Environment:
System: FreeBSD Freedom.T3X.ORG 4.9-RELEASE FreeBSD 4.9-RELEASE #0: Fri May 7 18:12:57 CEST 2004 nmh@Freedom.T3X.ORG:/usr/src/sys/compile/FREEDOM i386

>Description:

Update to version 20040924.
Changed scoping strategy to lexical scoping.

>How-To-Repeat:
>Fix:

diff -ru lang/alisp-old/Makefile lang/alisp/Makefile
--- lang/alisp-old/Makefile	Fri Feb 13 05:57:13 2004
+++ lang/alisp/Makefile	Sat Sep 25 17:08:27 2004
@@ -6,38 +6,21 @@
 #
 
 PORTNAME=	alisp
-PORTVERSION=	20040206
+PORTVERSION=	20040924
 CATEGORIES=	lang devel lisp
-MASTER_SITES=	http://t3x.dyndns.org/files/ \
-		http://www.t3x.org/files/
+MASTER_SITES=	http://t3x.dyndns.org/files/
 
 MAINTAINER=	nmh@t3x.org
 COMMENT=	A tail-recursive interpreter for purely symbolic LISP
 
-BUILD_DEPENDS=	tx:${PORTSDIR}/lang/t3x \
-		${LOCALBASE}/t3x/r8/tide:${PORTSDIR}/devel/tide
+BUILD_DEPENDS=	tx:${PORTSDIR}/lang/t3x
 
 MAN7=		alisp.7
 MANCOMPRESSED=	no
 
 MAKE_ENV+=	T3XDIR=${LOCALBASE}/t3x/r8 \
 		BINOWN=${BINOWN} \
-		BINGRP=${BINGRP}
-
-USE_REINPLACE=	yes
-
-post-patch:
-	${REINPLACE_CMD} \
-		-e 's,/usr/local,${PREFIX},g' \
-		${WRKSRC}/Makefile
-	${REINPLACE_CMD} \
-		-e 's,/usr/local,${PREFIX},g' \
-		${WRKSRC}/util/Alisp.sh
-	${REINPLACE_CMD} \
-		-e 's,/usr/local,${PREFIX},g' \
-		${WRKSRC}/cnf/unix.dfl
-	${REINPLACE_CMD} \
-		-e 's,/usr/local,${PREFIX},g' \
-		${WRKSRC}/cnf/unix-1.dfl
+		BINGRP=${BINGRP} \
+		PREFIX=${PREFIX}
 
 .include <bsd.port.mk>
diff -ru lang/alisp-old/distinfo lang/alisp/distinfo
--- lang/alisp-old/distinfo	Fri Feb 13 05:57:13 2004
+++ lang/alisp/distinfo	Sat Sep 25 17:08:27 2004
@@ -1 +1,2 @@
-MD5 (alisp-20040206.tar.gz) = 28e7f62c399a9b172641596e447dd703
+MD5 (alisp-20040924.tar.gz) = 8b93abe0f08f19e41a4e5e7e02548a8f
+SIZE (alisp-20040924.tar.gz) = 111428
diff -ru lang/alisp-old/pkg-descr lang/alisp/pkg-descr
--- lang/alisp-old/pkg-descr	Fri Feb 13 05:57:13 2004
+++ lang/alisp/pkg-descr	Sat Sep 25 17:08:27 2004
@@ -1,12 +1,8 @@
-ArrowLISP is a purely symbolic, tail-recursive, dynamically scoped
+ArrowLISP is a purely symbolic, tail-recursive, lexically scoped
 and (mostly) side-effect-free implementation of LISP. It may be
 considered an implementation of pure LISP (plus DEFINE and DEFUN).
 
-This package contains
-
-- the ArrowLISP interpreter
-- IAI, the Interactive ArrowLISP interface (TTY-based IDE)
-- a library containing many frequently used LISP functions
-- some example programs
+This package contains the ArrowLISP interpreter and library, the
+reference manual, and some example programs.
 
 WWW: http://www.t3x.org/LISP/ALISP
diff -ru lang/alisp-old/pkg-plist lang/alisp/pkg-plist
--- lang/alisp-old/pkg-plist	Fri Feb 13 05:57:13 2004
+++ lang/alisp/pkg-plist	Sat Sep 25 17:08:27 2004
@@ -1,16 +1,8 @@
 bin/Alisp
 bin/alisp
 bin/alisp_install
-bin/iai
-bin/iai-1
-bin/iai_color
-bin/iai_pfmt
 share/alisp/LICENSE
 share/alisp/alisp.image
-share/alisp/black.rc
-share/alisp/blue.rc
-share/alisp/default.rc
-share/alisp/default-1.rc
 share/alisp/ext/date-after-p.l
 share/alisp/ext/date-before-p.l
 share/alisp/ext/date-difference.l
@@ -18,6 +10,7 @@
 share/alisp/ext/date.l
 share/alisp/ext/ext-date.l
 share/alisp/ext/ext-tree.l
+share/alisp/ext/fixed-point.l
 share/alisp/ext/tree-assoc.l
 share/alisp/ext/tree-balance.l
 share/alisp/ext/tree-flatten.l
@@ -153,7 +146,6 @@
 share/alisp/lib/unique.l
 share/alisp/lib/unsort.l
 share/alisp/lib/zerop.l
-share/alisp/monochrm.rc
 share/alisp/src/bottles.l
 share/alisp/src/bubblesort.l
 share/alisp/src/evaluate.l
@@ -165,10 +157,7 @@
 share/alisp/src/queens.l
 share/alisp/src/unlabel.l
 share/alisp/src/xeval.l
-share/alisp/white.rc
 share/doc/alisp/alisp.sd
-share/doc/alisp/helpfile
-share/doc/alisp/helpfile-1
 @dirrm share/alisp/ext
 @dirrm share/alisp/lib
 @dirrm share/alisp/src
-- 
Nils M Holm <nmh@t3x.org> -- http://www.t3x.org/nmh/
>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?2004092515131200-1724>