From root@dx.burplex.com  Thu Jun 13 10:12:06 2013
Return-Path: <root@dx.burplex.com>
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
	by hub.freebsd.org (Postfix) with ESMTP id D37E6F69
	for <FreeBSD-gnats-submit@freebsd.org>; Thu, 13 Jun 2013 10:12:06 +0000 (UTC)
	(envelope-from root@dx.burplex.com)
Received: from dx.burplex.com (dx.burplex.com [50.197.134.185])
	by mx1.freebsd.org (Postfix) with ESMTP id 9CB491360
	for <FreeBSD-gnats-submit@freebsd.org>; Thu, 13 Jun 2013 10:12:06 +0000 (UTC)
Received: by dx.burplex.com (Postfix, from userid 0)
	id CA4DB36F48D1; Thu, 13 Jun 2013 03:11:59 -0700 (PDT)
Message-Id: <20130613101159.CA4DB36F48D1@dx.burplex.com>
Date: Thu, 13 Jun 2013 03:11:59 -0700 (PDT)
From: Waitman Gobble <uzimac@da3m0n8t3r.com>
Reply-To: Waitman Gobble <uzimac@da3m0n8t3r.com>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: Update port: devel/uthash to 1.9.8p2
X-Send-Pr-Version: 3.114
X-GNATS-Notify:

>Number:         179535
>Category:       ports
>Synopsis:       Update port: devel/uthash to 1.9.8p2
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    zi
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Jun 13 10:20:01 UTC 2013
>Closed-Date:    Mon Jun 24 11:50:36 UTC 2013
>Last-Modified:  Mon Jun 24 12:00:02 UTC 2013
>Originator:     Waitman Gobble
>Release:        FreeBSD 10.0-CURRENT amd64
>Organization:
Waitman Gobble
>Environment:
System: FreeBSD dx.burplex.com 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r251357: Mon Jun 3 20:42:39 PDT 2013 root@dx.burplex.com:/usr/obj/usr/src/sys/FURAHA amd64


	
>Description:

New Version devel/uthash 1.9.8p2 released 4/15/2013
* fix missing argument in `HASH_REPLACE_STR`
* add `HASH_OVERHEAD` macro to get overhead size for hash table
* `HASH_REPLACE` now in uthash (thanks, Nick Vatamaniuc!)
* fixed clang warnings
* fixed `utarray_insert` when inserting past array end

Port Makefile updates:
* update new style header
* use ${PORT_OPTIONS:MDOCS}
* update docs list, doc src path change
* src repo moved from SF to GH

>How-To-Repeat:
	
>Fix:

	

--- uthash.shar begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	uthash
#	uthash/Makefile
#	uthash/distinfo
#	uthash/pkg-descr
#
echo c - uthash
mkdir -p uthash > /dev/null 2>&1
echo x - uthash/Makefile
sed 's/^X//' >uthash/Makefile << '6b6d9d9a84d4bf983683fa63ecdf4a31'
X# Created by: "Ryan Steinmetz" <zi@FreeBSD.org>
X# $FreeBSD: head/devel/uthash/Makefile 305616 2012-10-09 22:38:05Z zi $
X
XPORTNAME=	uthash
XPORTVERSION=	1.9.8p2
XCATEGORIES=	devel
XMASTER_SITES=	GH
X
XMAINTAINER=	zi@FreeBSD.org
XCOMMENT=	A hash table for C structures
X
XLICENSE=        BSD
XLICENSE_FILE=   ${WRKSRC}/LICENSE
X
XNO_BUILD=	yes
X
XUSE_GITHUB=     yes
XGH_ACCOUNT=     troydhanson
XGH_TAGNAME=     ${GH_COMMIT}
XGH_COMMIT=      d10c46a
X
XPORTDOCS=	ChangeLog.txt todo.txt userguide.txt utarray.txt utlist.txt \
X		utstring.txt
XPLIST_FILES=	include/utarray.h include/uthash.h include/utlist.h \
X		include/utstring.h
X
Xdo-install:
X	@${INSTALL_DATA} ${WRKSRC}/src/utarray.h ${PREFIX}/include/
X	@${INSTALL_DATA} ${WRKSRC}/src/uthash.h ${PREFIX}/include/
X	@${INSTALL_DATA} ${WRKSRC}/src/utlist.h ${PREFIX}/include/
X	@${INSTALL_DATA} ${WRKSRC}/src/utstring.h ${PREFIX}/include/
X
X.include <bsd.port.options.mk>
X
Xpost-install:
X.if ${PORT_OPTIONS:MDOCS}
X	@${MKDIR} ${DOCSDIR}
X.for f in ${PORTDOCS}
X	@${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DOCSDIR}
X.endfor
X.endif
X
X.include <bsd.port.mk>
6b6d9d9a84d4bf983683fa63ecdf4a31
echo x - uthash/distinfo
sed 's/^X//' >uthash/distinfo << 'aa2100f76318fc38e0ad02354a4921f1'
XSHA256 (uthash-1.9.8p2.tar.gz) = 4f459db321a773a499414f679a60793efbac4aeffd4c8900d843c718d13abed1
XSIZE (uthash-1.9.8p2.tar.gz) = 225268
aa2100f76318fc38e0ad02354a4921f1
echo x - uthash/pkg-descr
sed 's/^X//' >uthash/pkg-descr << 'ef099bf75e62b64885f0822b99d51727'
XThis is a hash table, implemented in C, supporting constant-time
Xadd/find/remove of C structures. Any structure having a unique,
Xarbitrarily-typed key member can be hashed by adding a UT_hash_handle
Xmember to the structure and calling these macros.
X
XWWW: http://uthash.sourceforge.net/
ef099bf75e62b64885f0822b99d51727
exit
--- uthash.shar ends here ---


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->zi 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Thu Jun 13 10:20:10 UTC 2013 
Responsible-Changed-Why:  
Over to maintainer (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=179535 
State-Changed-From-To: open->closed 
State-Changed-By: zi 
State-Changed-When: Mon Jun 24 11:50:35 UTC 2013 
State-Changed-Why:  
Committed, with minor changes. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/179535: commit references a PR
Date: Mon, 24 Jun 2013 11:50:28 +0000 (UTC)

 Author: zi
 Date: Mon Jun 24 11:50:20 2013
 New Revision: 321676
 URL: http://svnweb.freebsd.org/changeset/ports/321676
 
 Log:
   - Update to 1.9.8p2
   
   PR:		ports/179535
   Submitted by:	Waitman Gobble <uzimac@da3m0n8t3r.com>
 
 Modified:
   head/devel/uthash/Makefile   (contents, props changed)
   head/devel/uthash/distinfo   (contents, props changed)
 
 Modified: head/devel/uthash/Makefile
 ==============================================================================
 --- head/devel/uthash/Makefile	Mon Jun 24 11:19:03 2013	(r321675)
 +++ head/devel/uthash/Makefile	Mon Jun 24 11:50:20 2013	(r321676)
 @@ -1,15 +1,10 @@
 -# New ports collection makefile for:	uthash
 -# Date created:				06 May 2012
 -# Whom:					Ryan Steinmetz <zi@FreeBSD.org>
 -#
 +# Created by: Ryan Steinmetz <zi@FreeBSD.org>
  # $FreeBSD$
 -#
  
  PORTNAME=	uthash
 -PORTVERSION=	1.9.7
 +PORTVERSION=	1.9.8p2
  CATEGORIES=	devel
 -MASTER_SITES=	SF
 -MASTER_SITE_SUBDIR=	${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
 +MASTER_SITES=	GH
  
  MAINTAINER=	zi@FreeBSD.org
  COMMENT=	A hash table for C structures
 @@ -19,22 +14,27 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
  
  USE_BZIP2=	yes
  NO_BUILD=	yes
 +USE_GITHUB=	yes
 +GH_ACCOUNT=	troydhanson
 +GH_COMMIT=	d10c46a
 +GH_TAGNAME=	${GH_COMMIT}
  
 -PORTDOCS=	ChangeLog.txt sflogo.txt toc.txt topnav.txt topnav_utarray.txt \
 -		topnav_utlist.txt topnav_utstring.txt userguide.txt utarray.txt \
 +PORTDOCS=	ChangeLog.txt todo.txt userguide.txt utarray.txt \
  		utlist.txt utstring.txt
  PLIST_FILES=	include/utarray.h include/uthash.h include/utlist.h \
  		include/utstring.h
  
 +.include <bsd.port.options.mk>
 +
  do-install:
  	@${INSTALL_DATA} ${WRKSRC}/src/utarray.h ${PREFIX}/include/
  	@${INSTALL_DATA} ${WRKSRC}/src/uthash.h ${PREFIX}/include/
  	@${INSTALL_DATA} ${WRKSRC}/src/utlist.h ${PREFIX}/include/
  	@${INSTALL_DATA} ${WRKSRC}/src/utstring.h ${PREFIX}/include/
 -.if !defined(NOPORTDOCS)
 +.if ${PORT_OPTIONS:MDOCS}
  	@${MKDIR} ${DOCSDIR}
  .for f in ${PORTDOCS}
 -	@${INSTALL_DATA} ${WRKSRC}/doc/txt/${f} ${DOCSDIR}
 +	@${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DOCSDIR}
  .endfor
  .endif
  
 
 Modified: head/devel/uthash/distinfo
 ==============================================================================
 --- head/devel/uthash/distinfo	Mon Jun 24 11:19:03 2013	(r321675)
 +++ head/devel/uthash/distinfo	Mon Jun 24 11:50:20 2013	(r321676)
 @@ -1,2 +1,2 @@
 -SHA256 (uthash-1.9.7.tar.bz2) = 956f5c99798349c413275fe4c9ff128d72e280655dadbe4365f8e9fbda91393f
 -SIZE (uthash-1.9.7.tar.bz2) = 373059
 +SHA256 (uthash-1.9.8p2.tar.bz2) = 4f459db321a773a499414f679a60793efbac4aeffd4c8900d843c718d13abed1
 +SIZE (uthash-1.9.8p2.tar.bz2) = 225268
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
>Unformatted:
