From peter@rulingia.com  Sun Dec 16 04:52:35 2012
Return-Path: <peter@rulingia.com>
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 9D156581
	for <FreeBSD-gnats-submit@freebsd.org>; Sun, 16 Dec 2012 04:52:35 +0000 (UTC)
	(envelope-from peter@rulingia.com)
Received: from vps.rulingia.com (host-122-100-2-194.octopus.com.au [122.100.2.194])
	by mx1.freebsd.org (Postfix) with ESMTP id 34B528FC0A
	for <FreeBSD-gnats-submit@freebsd.org>; Sun, 16 Dec 2012 04:52:34 +0000 (UTC)
Received: from server.rulingia.com (c220-239-237-241.belrs5.nsw.optusnet.com.au [220.239.237.241])
	by vps.rulingia.com (8.14.5/8.14.5) with ESMTP id qBG4qWDt029050
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK)
	for <FreeBSD-gnats-submit@freebsd.org>; Sun, 16 Dec 2012 15:52:33 +1100 (EST)
	(envelope-from peter@rulingia.com)
Received: from server.rulingia.com (localhost.rulingia.com [127.0.0.1])
	by server.rulingia.com (8.14.5/8.14.5) with ESMTP id qBG4qR5J051632
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
	Sun, 16 Dec 2012 15:52:27 +1100 (EST)
	(envelope-from peter@server.rulingia.com)
Received: (from peter@localhost)
	by server.rulingia.com (8.14.5/8.14.5/Submit) id qBG4qRfX051630;
	Sun, 16 Dec 2012 15:52:27 +1100 (EST)
	(envelope-from peter)
Message-Id: <201212160452.qBG4qRfX051630@server.rulingia.com>
Date: Sun, 16 Dec 2012 15:52:27 +1100 (EST)
From: Peter Jeremy <peter@rulingia.com>
Reply-To: Peter Jeremy <peter@rulingia.com>
To: FreeBSD-gnats-submit@freebsd.org
Subject: [patch] Update devel/mspdebug
X-Send-Pr-Version: 3.114
X-GNATS-Notify: peterjeremy@acm.org

>Number:         174468
>Category:       ports
>Synopsis:       [patch] Update devel/mspdebug
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    eadler
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sun Dec 16 05:00:00 UTC 2012
>Closed-Date:    Sun Dec 16 05:21:22 UTC 2012
>Last-Modified:  Sun Dec 16 05:21:22 UTC 2012
>Originator:     Peter Jeremy
>Release:        FreeBSD 8.3-STABLE amd64
>Organization:
FreeBSD
>Environment:
System: FreeBSD server.rulingia.com 8.3-STABLE FreeBSD 8.3-STABLE #19 r242865M: Sun Nov 11 09:49:48 EST 2012 root@server.rulingia.com:/var/obj/usr/src/sys/server amd64

[Note that it has not been possible to test this update other than in
the above environment]

>Description:

Update to 0.21.  Changes include:
  * Support for flat binary files.
  * Various bug fixes, including many disassembly fixes, an issue
    causing FRAM reset-vector corruption and refactoring of drivers.
  * Support for UIF BSL access via USB.
  * Support for Olimex MSP430-JTAG-ISO-MK2, including power profiling.
  * Support for parallel JTAG.
  * Support for many new chips when using Olimex drivers.
  * Add new interface mode for use with front-ends.
  * Support for new chips: MSP430F6736, MSP430F2252, MSP430G2403,
    MSP430F6435.
  * Support for watchpoints using MSP430.DLL (tilib) driver.
  * Support for GoodFET (memory access/programming only).
  * Basic C++ demangling support.
  * New commands: "fill" and "verify".
  * Erase requests are now ignored when using FRAM chips.

>How-To-Repeat:
	n/a
>Fix:

Index: Makefile
===================================================================
--- Makefile	(revision 308943)
+++ Makefile	(working copy)
@@ -7,7 +7,7 @@
 # Based on the OpenBSD port by:		Jasper Lievisse Adriaanse <jasper@openbsd.org>
 
 PORTNAME=		mspdebug
-PORTVERSION=		0.19
+PORTVERSION=		0.21
 CATEGORIES=		devel
 MASTER_SITES=		SF/${PORTNAME}
 
Index: distinfo
===================================================================
--- distinfo	(revision 308943)
+++ distinfo	(working copy)
@@ -1,2 +1,2 @@
-SHA256 (mspdebug-0.19.tar.gz) = 0410ee3c30ae50d028bacee0fe27ec0d0b6cda3163cae51d02cda9aaa8814b6a
-SIZE (mspdebug-0.19.tar.gz) = 174126
+SHA256 (mspdebug-0.21.tar.gz) = 37c0c83851e1ff7048012c733e21cd2fe5bef21f67814a462c6a7049dc709988
+SIZE (mspdebug-0.21.tar.gz) = 228413
Index: files/patch-Makefile
===================================================================
--- files/patch-Makefile	(revision 308943)
+++ files/patch-Makefile	(working copy)
@@ -1,16 +1,16 @@
---- Makefile.orig	2011-11-08 08:11:49.000000000 +1100
-+++ Makefile	2012-02-25 09:33:44.098219483 +1100
-@@ -43,8 +43,14 @@
- 	PORTS_CFLAGS = `pkg-config --cflags libusb`
- 	PORTS_LDFLAGS = `pkg-config --libs libusb` -ltermcap -pthread
+--- Makefile.orig	2012-11-26 10:27:48.000000000 +1100
++++ Makefile	2012-12-16 15:13:34.359453238 +1100
+@@ -45,8 +45,14 @@
+ 	PORTS_CFLAGS := $(shell pkg-config --cflags libusb)
+ 	PORTS_LDFLAGS := $(shell pkg-config --libs libusb) -ltermcap -pthread
    else
-+    ifeq ($(UNAME),FreeBSD) # FreeBSD Ports stuff
++    ifeq ($(UNAME_S),FreeBSD) # FreeBSD Ports stuff
 +# This is only needed prior to FreeBSD 8.x to find libusb
-+	PORTS_CFLAGS = -I${LOCALBASE}/include
-+	PORTS_LDFLAGS = -L${LOCALBASE}/lib
++	PORTS_CFLAGS := -I${LOCALBASE}/include
++	PORTS_LDFLAGS := -L${LOCALBASE}/lib
 +    else
- 	PORTS_CFLAGS =
- 	PORTS_LDFLAGS =
+ 	PORTS_CFLAGS :=
+ 	PORTS_LDFLAGS :=
 +    endif
    endif
  endif
>Release-Note:
>Audit-Trail:
Class-Changed-From-To: maintainer-update->change-request 
Class-Changed-By: edwin 
Class-Changed-When: Sun Dec 16 05:00:10 UTC 2012 
Class-Changed-Why:  
Fix category (submitter is not maintainer) (via the GNATS Auto Assign 
Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=174468 
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Sun Dec 16 05:00:12 UTC 2012 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

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

From: Edwin Groothuis <edwin@FreeBSD.org>
To: peterjeremy@acm.org
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/174468: [patch] Update devel/mspdebug
Date: Sun, 16 Dec 2012 05:00:11 UT

 Maintainer of devel/mspdebug,
 
 Please note that PR ports/174468 has just been submitted.
 
 If it contains a patch for an upgrade, an enhancement or a bug fix
 you agree on, reply to this email stating that you approve the patch
 and a committer will take care of it.
 
 The full text of the PR can be found at:
     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/174468
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org
Responsible-Changed-From-To: freebsd-ports-bugs->eadler 
Responsible-Changed-By: eadler 
Responsible-Changed-When: Sun Dec 16 05:12:43 UTC 2012 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=174468 
State-Changed-From-To: feedback->closed 
State-Changed-By: eadler 
State-Changed-When: Sun Dec 16 05:21:21 UTC 2012 
State-Changed-Why:  
Committed. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=174468 
>Unformatted:
