Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 28 Dec 2011 07:22:42 GMT
From:      Armin Pirkovitsch <armin@frozen-zone.org>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/163658: [PATCH] java/jlint update to 3.1.2
Message-ID:  <201112280722.pBS7MgAR086996@red.freebsd.org>
Resent-Message-ID: <201112280730.pBS7UHbQ036818@freefall.freebsd.org>

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

>Number:         163658
>Category:       ports
>Synopsis:       [PATCH] java/jlint update to 3.1.2
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Dec 28 07:30:17 UTC 2011
>Closed-Date:
>Last-Modified:
>Originator:     Armin Pirkovitsch
>Release:        
>Organization:
>Environment:
>Description:

>How-To-Repeat:

>Fix:


Patch attached with submission follows:

Index: java/jlint/Makefile
===================================================================
RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/java/jlint/Makefile,v
retrieving revision 1.14
diff -u -r1.14 Makefile
--- java/jlint/Makefile	22 Aug 2009 00:24:27 -0000	1.14
+++ java/jlint/Makefile	27 Dec 2011 17:17:03 -0000
@@ -6,13 +6,17 @@
 #
 
 PORTNAME=	jlint
-PORTVERSION=	3.1
+PORTVERSION=	3.1.2
 CATEGORIES=	java devel
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
 
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Java program analyzer and checker
 
+PLIST_FILES=	bin/jlint \
+		bin/jlint.sh \
+		bin/antic
+
 .if !defined(NOPORTDOCS)
 PORTDOCS=	manual.pdf
 .endif
Index: java/jlint/distinfo
===================================================================
RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/java/jlint/distinfo,v
retrieving revision 1.8
diff -u -r1.8 distinfo
--- java/jlint/distinfo	20 Mar 2011 12:49:52 -0000	1.8
+++ java/jlint/distinfo	25 Dec 2011 20:00:17 -0000
@@ -1,2 +1,2 @@
-SHA256 (jlint-3.1.tar.gz) = 9f4bae0eee83bd3d9d2b87a47fa3938870e28cdef798b7b4f671a620f67e370b
-SIZE (jlint-3.1.tar.gz) = 268888
+SHA256 (jlint-3.1.2.tar.gz) = e36a25250e31c4caa99818b7f651d400c26eb05c41cf9b824f1c3de2de8206f5
+SIZE (jlint-3.1.2.tar.gz) = 269056
Index: java/jlint/pkg-plist
===================================================================
RCS file: java/jlint/pkg-plist
diff -N java/jlint/pkg-plist
--- java/jlint/pkg-plist	3 Nov 2004 12:39:23 -0000	1.3
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,3 +0,0 @@
-bin/jlint
-bin/jlint.sh
-bin/antic
Index: java/jlint/files/patch-jlint.cc
===================================================================
RCS file: java/jlint/files/patch-jlint.cc
diff -N java/jlint/files/patch-jlint.cc
--- java/jlint/files/patch-jlint.cc	6 Jul 2007 06:47:41 -0000	1.3
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,29 +0,0 @@
---- jlint.cc.orig	2007-07-06 08:26:42.000000000 +0000
-+++ jlint.cc	2007-07-06 08:29:08.000000000 +0000
-@@ -151,7 +151,7 @@
-     if (compound_message != NULL
-         && ((loop_id != 0 
-              && ((code != msg_loop && code != msg_sync_loop)
--                 || (int)parameter[2] != loop_id))
-+                 || (long)parameter[2] != loop_id))
-             || (loop_id == 0 && code != msg_wait_path)))
-       {
-         if (!message_node::find(compound_message)) { 
-@@ -226,7 +226,7 @@
-                            name.as_asciz()); 
-             break;
-           case 'd': // integer
--            dst += sprintf(dst, "%d", (int)parameter[index]);  
-+            dst += sprintf(dst, "%d", (long)parameter[index]);  
-             break;
-           default:
-             assert(false/*bad message parameter format*/);
-@@ -262,7 +262,7 @@
-               compound_message = strdup(his_buf);
-               first = last = new message_node(msg_buf);
-               if (code != msg_wait) { 
--                loop_id = (int)parameter[2];
-+                loop_id = (long)parameter[2];
-               }
-             } else if (!message_node::find(his_buf)) { 
-               fprintf(stdout, "%s\n", msg_buf);


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



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