Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 7 Apr 2006 15:49:08 GMT
From:      "Matthew X. Economou" <xenophon+fbsdports@irtnog.org>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/95476: [maintainer update] Update devel/cl-uffi to version 1.5.9
Message-ID:  <200604071549.k37Fn8as094691@www.freebsd.org>
Resent-Message-ID: <200604071550.k37FoEMT058935@freefall.freebsd.org>

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

>Number:         95476
>Category:       ports
>Synopsis:       [maintainer update] Update devel/cl-uffi to version 1.5.9
>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:   Fri Apr 07 15:50:14 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     Matthew X. Economou
>Release:        5.4-RELEASE
>Organization:
IRTNOG.ORG
>Environment:
FreeBSD xenophoncinl1.irtnog.org 5.4-SECURITY FreeBSD 5.4-SECURITY #0: Tue Feb 28 20:13:51 UTC 2006     root@builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC  i386

>Description:
Kevin Rosenberg has made several new releases of UFFI since I last updated the port.  This change updates the port to Kevin's latest release.
>How-To-Repeat:
N/A
>Fix:
Index: cl-uffi/Makefile
===================================================================
RCS file: /home/ncvs/ports/devel/cl-uffi/Makefile,v
retrieving revision 1.2
diff -u -r1.2 Makefile
--- cl-uffi/Makefile	16 Oct 2005 14:48:07 -0000	1.2
+++ cl-uffi/Makefile	7 Apr 2006 15:27:46 -0000
@@ -6,9 +6,10 @@
 #
 
 PORTNAME=	uffi
-PORTVERSION=	1.4.37
+PORTVERSION=	1.5.9
 CATEGORIES=	devel lisp
 MASTER_SITES=	http://files.b9.com/uffi/
+MASTER_SITE_SUBDIR= . Archive
 PKGNAMEPREFIX=	cl-
 
 MAINTAINER=	xenophon+fbsdports@irtnog.org
@@ -19,9 +20,14 @@
 
 DOCSDIR?=	${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
 NO_BUILD=	yes
-CL_LIBDIR=	${PREFIX}/lib/common-lisp
+CL_LIBDIR?=	${LOCALBASE}/lib/common-lisp
 
-LPORTDOCS=	README NEWS TODO doc/uffi.pdf doc/html.tar.gz
+LPORTDOCS=	AUTHORS ChangeLog INSTALL LICENSE Makefile.common NEWS README TODO \
+		doc/uffi.pdf doc/html.tar.gz
+LPORTEXAMPLES=	Makefile Makefile.msvc acl-compat-tester.lisp arrays.lisp atoifl.lisp \
+		c-test-fns.c c-test-fns.lisp compress.lisp file-socket.lisp getenv.lisp \
+		gethostname.lisp getshells.lisp gettime.lisp run-examples.lisp \
+		strtol.lisp test-examples.lisp union.lisp
 
 do-install:
 	${MKDIR} ${CL_LIBDIR}/uffi
@@ -30,10 +36,14 @@
 	${INSTALL_DATA} ${WRKSRC}/src/*.lisp ${CL_LIBDIR}/uffi/src/
 	${LN} -sf ${CL_LIBDIR}/uffi/uffi.asd ${CL_LIBDIR}/system-registry/uffi.asd
 .if !defined(NOPORTDOCS)
-.for i in ${LPORTDOCS}
 	${MKDIR} ${DOCSDIR}
+.for i in ${LPORTDOCS}
 	${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}/
 .endfor
+	${MKDIR} ${DOCSDIR}/examples
+.for i in ${LPORTEXAMPLES}
+	${INSTALL_DATA} ${WRKSRC}/examples/${i} ${DOCSDIR}/examples/
+.endfor
 .endif
 
 .include <bsd.port.mk>
Index: cl-uffi/distinfo
===================================================================
RCS file: /home/ncvs/ports/devel/cl-uffi/distinfo,v
retrieving revision 1.2
diff -u -r1.2 distinfo
--- cl-uffi/distinfo	22 Jan 2006 08:27:56 -0000	1.2
+++ cl-uffi/distinfo	7 Apr 2006 15:27:46 -0000
@@ -1,3 +1,2 @@
-MD5 (uffi-1.4.37.tar.gz) = 891c71969d1e8e1cc14935aced222f79
-SHA256 (uffi-1.4.37.tar.gz) = 20c645953a7d29b803291f71f178d3879cf8bfe13cda0237a8ffe05d5f1d478c
-SIZE (uffi-1.4.37.tar.gz) = 141671
+MD5 (uffi-1.5.9.tar.gz) = 2a8d3fc21d39dbcf0c84a25b20038abe
+SIZE (uffi-1.5.9.tar.gz) = 143829
Index: cl-uffi/pkg-plist
===================================================================
RCS file: /home/ncvs/ports/devel/cl-uffi/pkg-plist,v
retrieving revision 1.1
diff -u -r1.1 pkg-plist
--- cl-uffi/pkg-plist	14 Apr 2005 10:34:18 -0000	1.1
+++ cl-uffi/pkg-plist	7 Apr 2006 15:27:46 -0000
@@ -9,11 +9,34 @@
 lib/common-lisp/uffi/src/primitives.lisp
 lib/common-lisp/uffi/src/readmacros-mcl.lisp
 lib/common-lisp/uffi/src/strings.lisp
-%%PORTDOCS%%share/doc/cl-uffi/README
+%%PORTDOCS%%share/doc/cl-uffi/AUTHORS
+%%PORTDOCS%%share/doc/cl-uffi/ChangeLog
+%%PORTDOCS%%share/doc/cl-uffi/INSTALL
+%%PORTDOCS%%share/doc/cl-uffi/LICENSE
+%%PORTDOCS%%share/doc/cl-uffi/Makefile.common
 %%PORTDOCS%%share/doc/cl-uffi/NEWS
+%%PORTDOCS%%share/doc/cl-uffi/README
 %%PORTDOCS%%share/doc/cl-uffi/TODO
+%%PORTDOCS%%share/doc/cl-uffi/examples/Makefile
+%%PORTDOCS%%share/doc/cl-uffi/examples/Makefile.msvc
+%%PORTDOCS%%share/doc/cl-uffi/examples/acl-compat-tester.lisp
+%%PORTDOCS%%share/doc/cl-uffi/examples/arrays.lisp
+%%PORTDOCS%%share/doc/cl-uffi/examples/atoifl.lisp
+%%PORTDOCS%%share/doc/cl-uffi/examples/c-test-fns.c
+%%PORTDOCS%%share/doc/cl-uffi/examples/c-test-fns.lisp
+%%PORTDOCS%%share/doc/cl-uffi/examples/compress.lisp
+%%PORTDOCS%%share/doc/cl-uffi/examples/file-socket.lisp
+%%PORTDOCS%%share/doc/cl-uffi/examples/getenv.lisp
+%%PORTDOCS%%share/doc/cl-uffi/examples/gethostname.lisp
+%%PORTDOCS%%share/doc/cl-uffi/examples/getshells.lisp
+%%PORTDOCS%%share/doc/cl-uffi/examples/gettime.lisp
+%%PORTDOCS%%share/doc/cl-uffi/examples/run-examples.lisp
+%%PORTDOCS%%share/doc/cl-uffi/examples/strtol.lisp
+%%PORTDOCS%%share/doc/cl-uffi/examples/test-examples.lisp
+%%PORTDOCS%%share/doc/cl-uffi/examples/union.lisp
 %%PORTDOCS%%share/doc/cl-uffi/uffi.pdf
 %%PORTDOCS%%share/doc/cl-uffi/html.tar.gz
 @dirrm lib/common-lisp/uffi/src
 @dirrm lib/common-lisp/uffi
+@dirrm share/doc/cl-uffi/examples
 @dirrm share/doc/cl-uffi

>Release-Note:
>Audit-Trail:
>Unformatted:



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