From nobody@FreeBSD.org  Sun Jun 19 11:05:24 2011
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 53296106564A
	for <freebsd-gnats-submit@FreeBSD.org>; Sun, 19 Jun 2011 11:05:24 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22])
	by mx1.freebsd.org (Postfix) with ESMTP id 298E78FC1C
	for <freebsd-gnats-submit@FreeBSD.org>; Sun, 19 Jun 2011 11:05:24 +0000 (UTC)
Received: from red.freebsd.org (localhost [127.0.0.1])
	by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p5JB5Orh081123
	for <freebsd-gnats-submit@FreeBSD.org>; Sun, 19 Jun 2011 11:05:24 GMT
	(envelope-from nobody@red.freebsd.org)
Received: (from nobody@localhost)
	by red.freebsd.org (8.14.4/8.14.4/Submit) id p5JB5NT8081122;
	Sun, 19 Jun 2011 11:05:23 GMT
	(envelope-from nobody)
Message-Id: <201106191105.p5JB5NT8081122@red.freebsd.org>
Date: Sun, 19 Jun 2011 11:05:23 GMT
From: David Naylor <naylor.b.david@gmail.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: [patch] update portbuilder 0.1.2 -> 0.1.3
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         158025
>Category:       ports
>Synopsis:       [patch] update ports-mgmt/portbuilder 0.1.2 -> 0.1.3
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    dhn
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Sun Jun 19 11:10:10 UTC 2011
>Closed-Date:    Sun Jun 19 19:56:25 UTC 2011
>Last-Modified:  Sun Jun 19 20:00:24 UTC 2011
>Originator:     David Naylor
>Release:        
>Organization:
Private
>Environment:
>Description:
0.1.3: 2011 June 19:
 * Implemented a kqueue (external) event handler
 * Remove the use of callback (use Signal instead)
 * Add multiple methods (with fallback) to resolve a port
 * Obey -DUSE_PACKAGE_DEPENDS (see previous item)
 * Create a persistent stage (and stage) tracker based on signals from builders
 * Improve performance by:
   * Skipping exception check from subprocess
   * Caching variables used by Mk/bsd.port.mk and Mk/bsd.port.subdir.mk
   * Use StateTracker for Top UI

>How-To-Repeat:

>Fix:


Patch attached with submission follows:

diff -u /usr/ports/ports-mgmt/portbuilder/Makefile port/Makefile
--- /usr/ports/ports-mgmt/portbuilder/Makefile	2011-04-30 11:54:14.000000000 +0200
+++ portbuilder/Makefile	2011-06-19 12:44:25.000000000 +0200
@@ -2,10 +2,10 @@
 # Date created:				2011/04/03
 # Whom:					David Naylor <naylor.b.david@gmail.com>
 #
-# $FreeBSD: ports/ports-mgmt/portbuilder/Makefile,v 1.1 2011/04/30 09:54:14 makc Exp $
+# $FreeBSD$
 
 PORTNAME=	portbuilder
-DISTVERSION=	0.1.2
+DISTVERSION=	0.1.3
 CATEGORIES=	ports-mgmt
 MASTER_SITES=	http://cloud.github.com/downloads/DragonSA/portbuilder/
 
diff -u /usr/ports/ports-mgmt/portbuilder/distinfo port/distinfo
--- /usr/ports/ports-mgmt/portbuilder/distinfo	2011-04-30 11:54:14.000000000 +0200
+++ portbuilder/distinfo	2011-06-19 12:44:26.000000000 +0200
@@ -1,2 +1,2 @@
-SHA256 (portbuilder-0.1.2.tar.xz) = 188b0db6cdfe0a2390e805c9d0fa846958312c4f3338fcbcb0f65cbee22d3046
-SIZE (portbuilder-0.1.2.tar.xz) = 25908
+SHA256 (portbuilder-0.1.3.tar.xz) = fa9b0022e612adf17b5aa21a77d71dba2a77edf6e00c83b9fbd96f85e3a618c4
+SIZE (portbuilder-0.1.3.tar.xz) = 30412
diff -u /usr/ports/ports-mgmt/portbuilder/pkg-plist port/pkg-plist
--- /usr/ports/ports-mgmt/portbuilder/pkg-plist	2011-04-30 11:54:14.000000000 +0200
+++ portbuilder/pkg-plist	2011-06-19 12:44:25.000000000 +0200
@@ -41,8 +41,5 @@
 %%PYTHON_SITELIBDIR%%/libpb/signal.py
 %%PYTHON_SITELIBDIR%%/libpb/signal.pyc
 %%PYTHON_SITELIBDIR%%/libpb/signal.pyo
-%%PYTHON_SITELIBDIR%%/libpb/subprocess.py
-%%PYTHON_SITELIBDIR%%/libpb/subprocess.pyc
-%%PYTHON_SITELIBDIR%%/libpb/subprocess.pyo
 @dirrm %%PYTHON_SITELIBDIR%%/libpb/port
 @dirrm %%PYTHON_SITELIBDIR%%/libpb


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->dhn 
Responsible-Changed-By: dhn 
Responsible-Changed-When: Sun Jun 19 11:31:50 UTC 2011 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=158025 
State-Changed-From-To: open->closed 
State-Changed-By: dhn 
State-Changed-When: Sun Jun 19 19:56:23 UTC 2011 
State-Changed-Why:  
Committed. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/158025: commit references a PR
Date: Sun, 19 Jun 2011 19:56:22 +0000 (UTC)

 dhn         2011-06-19 19:56:08 UTC
 
   FreeBSD ports repository
 
   Modified files:
     ports-mgmt/portbuilder Makefile distinfo pkg-plist 
   Log:
   - Update to 0.1.3
   
   PR:             ports/158025
   Submitted by:   David Naylor <naylor.b.david@gmail.com> (maintainer)
   
   Revision  Changes    Path
   1.2       +1 -1      ports/ports-mgmt/portbuilder/Makefile
   1.2       +2 -2      ports/ports-mgmt/portbuilder/distinfo
   1.2       +0 -3      ports/ports-mgmt/portbuilder/pkg-plist
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
