From umq@ueo.co.jp  Wed Jan 18 01:50:13 2006
Return-Path: <umq@ueo.co.jp>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 75B3B16A41F
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 18 Jan 2006 01:50:13 +0000 (GMT)
	(envelope-from umq@ueo.co.jp)
Received: from mvs5.plala.or.jp (c158133.vh.plala.or.jp [210.150.158.133])
	by mx1.FreeBSD.org (Postfix) with ESMTP id D50E743D45
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 18 Jan 2006 01:50:12 +0000 (GMT)
	(envelope-from umq@ueo.co.jp)
Received: from eupheme.kaumoge.org ([58.93.18.28]) by mvs2.plala.or.jp
          with ESMTP
          id <20060118014058.KYBC16182.mvs2.plala.or.jp@eupheme.kaumoge.org>
          for <FreeBSD-gnats-submit@freebsd.org>;
          Wed, 18 Jan 2006 10:40:58 +0900
Received: from calliope.kaumoge.org (calliope.kaumoge.org [192.168.233.120])
	by eupheme.kaumoge.org (8.12.11/8.12.11/20030713) with ESMTP id k0I1fKNS091805
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 18 Jan 2006 10:41:20 +0900 (JST)
	(envelope-from umq@ueo.co.jp)
Message-Id: <86d5iqgvo5.wl%umq@ueo.co.jp>
Date: Wed, 18 Jan 2006 10:40:58 +0900
From: Hirohisa Yamaguchi <umq@ueo.co.jp>
Reply-To: Hirohisa Yamaguchi <umq@ueo.co.jp>
To: FreeBSD-gnats-submit@freebsd.org
Subject: [update] lang/haskell-mode.el update to 2.1
X-Send-Pr-Version: 3.113

>Number:         91934
>Category:       ports
>Synopsis:       [update] lang/haskell-mode.el update to 2.1
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    pav
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jan 18 02:00:11 GMT 2006
>Closed-Date:    Wed Jan 25 17:50:29 GMT 2006
>Last-Modified:  Thu Jan 26 10:20:03 GMT 2006
>Originator:     Hirohisa Yamaguchi
>Release:        FreeBSD 7.0-CURRENT amd64
>Organization:
<organization of PR author (multiple lines)>
>Environment:
System: FreeBSD calliope.****.org 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Mon Nov 7 17:32:33 JST 2005 root@calliope.****.org:/usr/obj/usr/src/sys/CALLIOPE64 amd64
>Description:
	lang/haskell-mode.el needs update to the latest version.
>How-To-Repeat:
>Fix:

	the patch follows:

diff -pruw ports.orig/lang/haskell-mode.el/Makefile ports/lang/haskell-mode.el/Makefile
--- ports.orig/lang/haskell-mode.el/Makefile	Mon Jul 26 21:06:07 2004
+++ ports/lang/haskell-mode.el/Makefile	Wed Jan 18 03:11:25 2006
@@ -6,9 +6,9 @@
 #
 
 PORTNAME=	haskell-mode
-PORTVERSION=	1.44
+PORTVERSION=	2.1
 CATEGORIES=	lang elisp
-MASTER_SITES=	http://www.haskell.org/haskell-mode/
+MASTER_SITES=	http://www.iro.umontreal.ca/~monnier/elisp/
 
 MAINTAINER=	jre@vineyard.net
 COMMENT=	An Emacs lisp mode for editing haskell programs
@@ -18,11 +18,17 @@ NO_BUILD=	yes
 ELISPDIR=	${PREFIX}/${PLIST_DIRS}
 ELISPFILES=	haskell-decl-scan.el haskell-doc.el haskell-font-lock.el \
 		haskell-ghci.el haskell-hugs.el haskell-indent.el \
-		haskell-mode.el haskell-simple-indent.el
+		haskell-mode.el haskell-simple-indent.el haskell-site-file.el \
+		inf-haskell.el
 
 PLIST_DIRS=	share/emacs/site-lisp/${PORTNAME}/
 PLIST_FILES=	${ELISPFILES:C/^| [^ ]/${PLIST_DIRS}/g}
 
+.if !defined(NOPORTDOCS)
+PORTDOCS=	ChangeLog NEWS fontlock.hs indent.hs \
+		index.html installation-guide.html
+.endif
+
 do-install:
 	${MKDIR} ${ELISPDIR}
 .for i in ${ELISPFILES}
@@ -30,6 +36,12 @@ do-install:
 .endfor
 
 post-install:
+.if !defined(NOPORTDOCS)
+	${MKDIR} ${DOCSDIR}
+.  for i in ${PORTDOCS}
+	${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
+.  endfor
+.endif
 	@${CAT} ${PKGMESSAGE}
 
 .include <bsd.port.mk>
diff -pruw ports.orig/lang/haskell-mode.el/distinfo ports/lang/haskell-mode.el/distinfo
--- ports.orig/lang/haskell-mode.el/distinfo	Sun Mar  7 06:53:20 2004
+++ ports/lang/haskell-mode.el/distinfo	Sun Jan 15 03:46:25 2006
@@ -1,2 +1,3 @@
-MD5 (haskell-mode-1.44.tar.gz) = 8317d8bf8588e254e753977e48ad3bf6
-SIZE (haskell-mode-1.44.tar.gz) = 58601
+MD5 (haskell-mode-2.1.tar.gz) = df6c6d62777c2ea6cdd5455a0010e7e2
+SHA256 (haskell-mode-2.1.tar.gz) = 51c7529b217aafdf3cef843e0fc25b3735bebb259effd9c8bc6e8f72a4b65046
+SIZE (haskell-mode-2.1.tar.gz) = 73855
diff -pruw ports.orig/lang/haskell-mode.el/pkg-message ports/lang/haskell-mode.el/pkg-message
--- ports.orig/lang/haskell-mode.el/pkg-message	Sun Mar  7 06:53:20 2004
+++ ports/lang/haskell-mode.el/pkg-message	Wed Jan 18 10:21:39 2006
@@ -12,12 +12,11 @@ To use haskell-mode in Emacs, add the fo
 
 Add the following lines according to which modules you want to use:
 
-(add-hook 'haskell-mode-hook 'turn-on-haskell-font-lock)
 (add-hook 'haskell-mode-hook 'turn-on-haskell-decl-scan)
 (add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode)
 (add-hook 'haskell-mode-hook 'turn-on-haskell-indent)
 ;(add-hook 'haskell-mode-hook 'turn-on-haskell-simple-indent)
-(add-hook 'haskell-mode-hook 'turn-on-haskell-hugs)
+(add-hook 'haskell-mode-hook 'turn-on-font-lock)
 
 Note that the two indentation modules are mutually exclusive - add at
 most one.
>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->feedback 
State-Changed-By: pav 
State-Changed-When: Wed Jan 18 21:01:42 UTC 2006 
State-Changed-Why:  
Asked maintainer for approval 


Responsible-Changed-From-To: freebsd-ports-bugs->pav 
Responsible-Changed-By: pav 
Responsible-Changed-When: Wed Jan 18 21:01:42 UTC 2006 
Responsible-Changed-Why:  
Track 

http://www.freebsd.org/cgi/query-pr.cgi?pr=91934 

From: Pav Lucistnik <pav@FreeBSD.org>
To: bug-followup@FreeBSD.org, jre@vineyard.net
Cc:  
Subject: Re: ports/91934: [update] lang/haskell-mode.el update to 2.1
Date: Wed, 18 Jan 2006 22:01:39 +0100

 Dear maintainer of FreeBSD port lang/haskell-mode.el, please take a look
 at
 
 http://www.freebsd.org/cgi/query-pr.cgi?q=91934
 
 Do you approve this update?
 
 -- 
 Pav Lucistnik <pav@oook.cz>
               <pav@FreeBSD.org>
 
 Thank God we're theoretical physicists so we don't have to get our
 hands dirty with particle accelerators and other heavy machinery.

From: Josh Elsasser <joshe@vineyard.net>
To: Pav Lucistnik <pav@FreeBSD.org>
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/91934: [update] lang/haskell-mode.el update to 2.1
Date: Wed, 25 Jan 2006 12:39:19 -0500

 On Wed, Jan 18, 2006 at 10:01:39PM +0100, Pav Lucistnik wrote:
 > Dear maintainer of FreeBSD port lang/haskell-mode.el, please take a look
 > at
 > 
 > http://www.freebsd.org/cgi/query-pr.cgi?q=91934
 > 
 > Do you approve this update?
 
 That looks fine to me, although I haven't tested it.  You should
 probably remove me as maintainer since I don't actually use this now.
 
  -jre
State-Changed-From-To: feedback->closed 
State-Changed-By: pav 
State-Changed-When: Wed Jan 25 17:50:17 UTC 2006 
State-Changed-Why:  
Committed, thanks! 

Do you want to become a new maintainer of this port? 

http://www.freebsd.org/cgi/query-pr.cgi?pr=91934 

From: Hirohisa Yamaguchi <umq@ueo.co.jp>
To: pav@FreeBSD.org, bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/91934: [update] lang/haskell-mode.el update to 2.1
Date: Thu, 26 Jan 2006 09:50:51 +0900

 At Wed, 25 Jan 2006 17:50:28 GMT,
 Pav Lucistnik wrote:
 > Do you want to become a new maintainer of this port?
 
 > http://www.freebsd.org/cgi/query-pr.cgi?pr=91934
 
 Though I am a novice haskell user, I'll take maintainership
 for the port and try my best.
 
 
 -- 
 umq

From: Hirohisa Yamaguchi <umq@ueo.co.jp>
To: bug-followup@freebsd.org, pav@freebsd.org
Cc:  
Subject: Re: ports/91934: [update] lang/haskell-mode.el update to 2.1
Date: Thu, 26 Jan 2006 19:08:40 +0900

 At Wed, 25 Jan 2006 17:50:28 GMT,
 Pav Lucistnik wrote:
 > 
 > Synopsis: [update] lang/haskell-mode.el update to 2.1
 > 
 > State-Changed-From-To: feedback->closed
 > State-Changed-By: pav
 > State-Changed-When: Wed Jan 25 17:50:17 UTC 2006
 > State-Changed-Why: 
 > Committed, thanks!
 > 
 > Do you want to become a new maintainer of this port?
 > 
 > http://www.freebsd.org/cgi/query-pr.cgi?pr=91934
 
 Uh, oh
 There seems to be an extra SIZE line in distinfo
 http://www.freebsd.org/cgi/cvsweb.cgi/ports/lang/haskell-mode.el/distinfo.diff?r1=1.2&r2=1.3
 
 Would you please re-open and fix it?
 
 
 -- 
 umq

From: Pav Lucistnik <pav@FreeBSD.org>
To: Hirohisa Yamaguchi <umq@ueo.co.jp>
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/91934: [update] lang/haskell-mode.el update to 2.1
Date: Thu, 26 Jan 2006 11:11:39 +0100

 --=-hwBScZMdncY5hGrNz+Dg
 Content-Type: text/plain; charset=ISO8859-2
 Content-Transfer-Encoding: quoted-printable
 
 Hirohisa Yamaguchi p=ED=B9e v =E8t 26. 01. 2006 v 19:08 +0900:
 > At Wed, 25 Jan 2006 17:50:28 GMT,
 > Pav Lucistnik wrote:
 > >=20
 > > Synopsis: [update] lang/haskell-mode.el update to 2.1
 > >=20
 > > State-Changed-From-To: feedback->closed
 > > State-Changed-By: pav
 > > State-Changed-When: Wed Jan 25 17:50:17 UTC 2006
 > > State-Changed-Why:=20
 > > Committed, thanks!
 > >=20
 > > Do you want to become a new maintainer of this port?
 > >=20
 > > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D91934
 >=20
 > Uh, oh
 > There seems to be an extra SIZE line in distinfo
 > http://www.freebsd.org/cgi/cvsweb.cgi/ports/lang/haskell-mode.el/distinfo=
 .diff?r1=3D1.2&r2=3D1.3
 >=20
 > Would you please re-open and fix it?
 
 Sorry, just fixed!
 
 --=20
 Pav Lucistnik <pav@oook.cz>
               <pav@FreeBSD.org>
 
 East or west, ~ is best.
 
 --=-hwBScZMdncY5hGrNz+Dg
 Content-Type: application/pgp-signature; name=signature.asc
 Content-Description: Toto je =?iso-8859-2?Q?digit=E1ln=EC?=
 	=?ISO-8859-1?Q?_podepsan=E1?= =?iso-8859-2?Q?_=E8=E1st?=
 	=?ISO-8859-1?Q?_zpr=E1vy?=
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.2 (FreeBSD)
 
 iD8DBQBD2KBbntdYP8FOsoIRAtmZAKDAIBQI9XA6N1bwgjSBWox7RO071QCgkb0D
 bKxjzH/2SFZZf27PKxVg3pg=
 =ZggG
 -----END PGP SIGNATURE-----
 
 --=-hwBScZMdncY5hGrNz+Dg--
>Unformatted:
