Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Dec 2001 17:40:06 -0600 (CST)
From:      Ryan Thompson <ryan@sasknow.com>
To:        FreeBSD-gnats-submit@freebsd.org
Cc:        ryan@sasknow.com
Subject:   ports/32915: Change maintainer, update port: editors/lpe
Message-ID:  <200112162340.fBGNe6V12066@catalyst.sasknow.net>

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

>Number:         32915
>Category:       ports
>Synopsis:       Change maintainer, update port: editors/lpe
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Sun Dec 16 15:40:00 PST 2001
>Closed-Date:
>Last-Modified:
>Originator:     Ryan Thompson <ryan@sasknow.com>
>Release:        FreeBSD 4.4-RELEASE i386
>Organization:
SaskNow Technologies
>Environment:
System: FreeBSD catalyst.sasknow.net 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Sun Dec 9 15:21:10 CST 2001 hutenosa@catalyst.sasknow.net:/usr/src/sys/compile/CATALYST i386

>Description:

The following changes to editors/lpe are included:

o Change maintainer to ryan@sasknow.com 
  (current maintainer seems to be unresponsive)
o Update lpe from 1.2.5_2 to newest release, 1.2.6
o Update MASTER_SITES, WWW, and author's email to 
  reflect new location
o Update/delete patch files for new version:
    + Bug fix patches corrected by 1.2.6 removed
    + New bug fix to correct man page language (cz vs. cs)
    + New bug fix to correct syntax highlighting in some
      editing modes
    (New bug fixes have been sent to the author for
    inclusion in the next official release)
o Update plist

>How-To-Repeat:
n/a

>Fix:

cd /usr/ports/editors
patch -E <this-file
find lpe -name "*.orig" -delete


diff -ruN lpe.orig/Makefile lpe/Makefile
--- lpe.orig/Makefile	Tue Apr 24 03:35:58 2001
+++ lpe/Makefile	Sun Dec 16 16:39:08 2001
@@ -6,14 +6,12 @@
 #
 
 PORTNAME=	lpe
-PORTVERSION=	1.2.5
-PORTREVISION=	2
+PORTVERSION=	1.2.6
 CATEGORIES=	editors
-MASTER_SITES=	${MASTER_SITE_SOURCEFORGE} \
-		http://cdsmith.twu.net/opensource/lpe/
+MASTER_SITES=	ftp://ftp.twu.net/users/cdsmith/lpe/
 MASTER_SITE_SUBDIR=	${PORTNAME}
 
-MAINTAINER=	calle.madestrand@norrgarden.se
+MAINTAINER=	ryan@sasknow.com
 
 LIB_DEPENDS=	slang.1:${PORTSDIR}/devel/libslang \
 		intl.1:${PORTSDIR}/devel/gettext
@@ -26,6 +24,6 @@
 CONFIGURE_ARGS=	--includedir=${LOCALBASE}/include
 
 MAN1=		lpe.1
-MANLANG=	bg cz de es fr pl ru
+MANLANG=	bg cs de es fr pl ru
 
 .include <bsd.port.mk>
diff -ruN lpe.orig/distinfo lpe/distinfo
--- lpe.orig/distinfo	Fri Jan 26 13:56:01 2001
+++ lpe/distinfo	Sun Dec 16 16:39:08 2001
@@ -1 +1 @@
-MD5 (lpe-1.2.5.tar.gz) = b7d327a9d381621033986fd13f9d30d6
+MD5 (lpe-1.2.6.tar.gz) = 59feaf93bb6b57e8c3b876261b2bcaa3
diff -ruN lpe.orig/files/patch-af lpe/files/patch-af
--- lpe.orig/files/patch-af	Mon Apr 23 16:39:55 2001
+++ lpe/files/patch-af	Wed Dec 31 18:00:00 1969
@@ -1,25 +0,0 @@
---- src/lpe.c	Thu Apr 19 02:16:41 2001
-+++ src/lpe.c	Thu Apr 19 03:08:30 2001
-@@ -48,13 +48,17 @@
- {
-     buffer *node;
- 
--    while (the_buf->next != the_buf)
-+    if (the_buf->text != NULL)
-     {
--        node = the_buf->next;
--        the_buf->next = the_buf->next->next;
--        the_buf->next->prev = the_buf;
--        free(node);
-+    	while (the_buf->next != the_buf)
-+    	{
-+	        node = the_buf->next;
-+	        the_buf->next = the_buf->next->next;
-+	        the_buf->next->prev = the_buf;
-+	        free(node);
-+    	}
-     }
-+    	
-     free(the_buf);
- }
- 
diff -ruN lpe.orig/files/patch-perlmode.c lpe/files/patch-perlmode.c
--- lpe.orig/files/patch-perlmode.c	Wed Dec 31 18:00:00 1969
+++ lpe/files/patch-perlmode.c	Sun Dec 16 16:39:08 2001
@@ -0,0 +1,12 @@
+--- src/modes/perlmode.c.orig	Sun Dec  9 16:54:40 2001
++++ src/modes/perlmode.c	Sun Dec  9 16:54:56 2001
+@@ -156,7 +156,7 @@
+     mode_util_set_slang_color ( "cmode", "illegal", COLOR_ILLEGAL, COLOR_ILLEGAL_FG, COLOR_ILLEGAL_BG );
+     mode_util_set_slang_color ( "cmode", "debug", COLOR_DEBUG, COLOR_DEBUG_FG, COLOR_DEBUG_BG );
+     mode_util_set_slang_color ( "perlmode", "variable", COLOR_VARIABLE, "brightcyan", "black" );
+-    mode_util_set_slang_color ( "perlmode", "shell", COLOR_SHELL, "magneta", "black" );
++    mode_util_set_slang_color ( "perlmode", "shell", COLOR_SHELL, "magenta", "black" );
+ #ifdef HIGHLIGHT_REGEXPS
+-    mode_util_set_slang_color ( "perlmode", "regexp", COLOR_REGEXP, "magneta", "black" );
++    mode_util_set_slang_color ( "perlmode", "regexp", COLOR_REGEXP, "magenta", "black" );
+ #endif /* HIGHLIGHT_REGEXPS */
diff -ruN lpe.orig/files/patch-sgmlmode.c lpe/files/patch-sgmlmode.c
--- lpe.orig/files/patch-sgmlmode.c	Wed Dec 31 18:00:00 1969
+++ lpe/files/patch-sgmlmode.c	Sun Dec 16 16:39:08 2001
@@ -0,0 +1,11 @@
+--- src/modes/sgmlmode.c.orig	Sun Dec  9 21:23:46 2001
++++ src/modes/sgmlmode.c	Sun Dec  9 21:24:16 2001
+@@ -71,7 +71,7 @@
+     mode_util_set_slang_color("sgmlmode", "argument", COLOR_ARGUMENT, "blue", "black" );
+     mode_util_set_slang_color("sgmlmode", "special", COLOR_SPECIAL, "brown", "black" );
+     mode_util_set_slang_color("sgmlmode", "value", COLOR_VALUE, "brightblue", "black" );
+-    mode_util_set_slang_color("sgmlmode", "slash_text", COLOR_SLASH_TEXT, "magneta", "black" );
++    mode_util_set_slang_color("sgmlmode", "slash_text", COLOR_SLASH_TEXT, "magenta", "black" );
+     mode_util_set_slang_color("sgmlmode", "symbol", COLOR_SYMBOL, COLOR_SYMBOL_FG, COLOR_SYMBOL_BG );
+     mode_util_set_slang_color("sgmlmode", "brace", COLOR_BRACE, COLOR_BRACE_FG, COLOR_BRACE_BG );
+     mode_util_set_slang_color("sgmlmode", "illegal", COLOR_ILLEGAL, COLOR_ILLEGAL_FG, COLOR_ILLEGAL_BG );
diff -ruN lpe.orig/files/patch-src_cfg-core.c lpe/files/patch-src_cfg-core.c
--- lpe.orig/files/patch-src_cfg-core.c	Mon Apr  9 01:44:18 2001
+++ lpe/files/patch-src_cfg-core.c	Wed Dec 31 18:00:00 1969
@@ -1,14 +0,0 @@
-
-$FreeBSD: ports/editors/lpe/files/patch-src_cfg-core.c,v 1.1 2001/04/09 07:44:18 sobomax Exp $
-
---- src/cfg-core.c	2001/04/08 15:27:13	1.1
-+++ src/cfg-core.c	2001/04/08 15:27:39
-@@ -62,7 +62,7 @@
-     /* 
-      * We search for "\n[name]=" in the lookup table...
-      */
--    t_sstring = (char *) malloc (strlen (name) + 5);
-+    t_sstring = (char *) alloca (strlen (name) + 5);
-     sprintf (t_sstring, "\n%s=", name);
-     if ((t_hentry = strstr (LpeOptionHash, t_sstring)) != NULL)
-     {
diff -ruN lpe.orig/pkg-descr lpe/pkg-descr
--- lpe.orig/pkg-descr	Fri Jan 26 13:56:01 2001
+++ lpe/pkg-descr	Sun Dec 16 16:39:08 2001
@@ -3,7 +3,7 @@
 
 Author: Chris Smith <cd_smith@ou.edu>
 
-WWW: http://cdsmith.twu.net/opensource/lpe/
+WWW: http://cdsmith.twu.net/professional/opensource/lpe.html
 
--Chris Piazza
-cpiazza@FreeBSD.org
+-Ryan Thompson
+ryan@sasknow.com
diff -ruN lpe.orig/pkg-plist lpe/pkg-plist
--- lpe.orig/pkg-plist	Fri Jan 26 13:56:01 2001
+++ lpe/pkg-plist	Sun Dec 16 16:39:08 2001
@@ -18,7 +18,7 @@
 share/doc/lpe/TODO
 share/doc/lpe/examples/custom.ex
 share/locale/bg/LC_MESSAGES/lpe.mo
-share/locale/cz/LC_MESSAGES/lpe.mo
+share/locale/cs/LC_MESSAGES/lpe.mo
 share/locale/de/LC_MESSAGES/lpe.mo
 share/locale/es/LC_MESSAGES/lpe.mo
 share/locale/fr/LC_MESSAGES/lpe.mo
>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




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