On Thu Mar 23, 2017 at 10:07:05PM +0000, Edd Barrett wrote:
> Thanks.
> 
> On Thu, Feb 02, 2017 at 08:01:45AM +0100, Rafael Sadowski wrote:
> > Very simple bug-fix release update.
> 
> I've just applied this. Will run with it for a day or so and let you
> know how I get on.
> 
> > - fix: longer than 80 chars in Makefile
> 
> There's another long line you could fix if you liked.
> 

Oh, you're right. portcheck(1) ignores the line length in "pre-configure".

New diff below, thanks for all!

Rafael


Index: Makefile
===================================================================
RCS file: /cvs/ports/shells/zsh/Makefile,v
retrieving revision 1.83
diff -u -p -u -p -r1.83 Makefile
--- Makefile    2 Feb 2017 03:41:12 -0000       1.83
+++ Makefile    23 Mar 2017 22:25:02 -0000
@@ -2,7 +2,7 @@
 
 COMMENT=       Z shell, Bourne shell-compatible
 
-V=             5.3
+V=             5.3.1
 DISTNAME=      zsh-$V
 CATEGORIES=    shells
 
@@ -42,12 +42,15 @@ TEST_FLAGS= INSTALL_PROGRAM="install -c 
                INSTALL="install -c" \
                TMPPREFIX=${WRKBUILD}/tmp \
                TERM=xterm
-EXTFILES=      Misc/checkmail Misc/run-help Misc/sticky-note Misc/zcalc 
Misc/zed Misc/zkbd \
+EXTFILES=      Misc/checkmail Misc/run-help \
+               Misc/sticky-note Misc/zcalc \
+               Misc/zed Misc/zkbd \
                Calendar/calendar_add Example/cat Example/zless
 
 pre-configure:
 .for i in ${EXTFILES}
-       sed -i -e "s,/bin/zsh,${TRUEPREFIX}/bin/zsh,g" ${WRKSRC}/Functions/${i}
+       sed -i -e "s,/bin/zsh,${TRUEPREFIX}/bin/zsh,g" \
+               ${WRKSRC}/Functions/${i}
 .endfor
        @find ${WRKSRC} -name "*.orig" -exec rm -f {} \;
 
Index: distinfo
===================================================================
RCS file: /cvs/ports/shells/zsh/distinfo,v
retrieving revision 1.23
diff -u -p -u -p -r1.23 distinfo
--- distinfo    2 Feb 2017 03:41:12 -0000       1.23
+++ distinfo    23 Mar 2017 22:25:02 -0000
@@ -1,2 +1,2 @@
-SHA256 (zsh-5.3.tar.gz) = HaJz+pYEGzle6fYo0U8q/wj5pi6YQjqZAhji6gN7mm0=
-SIZE (zsh-5.3.tar.gz) = 4403492
+SHA256 (zsh-5.3.1.tar.gz) = PZSlkP88Vi7POH2nisNW1r6nmwUKnvgePsufjuUTBA4=
+SIZE (zsh-5.3.1.tar.gz) = 4404164

Reply via email to