From root@poudriere.ithil.palantiri.org  Tue Apr 15 09:13:45 2014
Return-Path: <root@poudriere.ithil.palantiri.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1])
	(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by hub.freebsd.org (Postfix) with ESMTPS id C370DB6D
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 15 Apr 2014 09:13:45 +0000 (UTC)
Received: from poudriere.ithil.palantiri.org (ithil.palantiri.org [144.76.36.55])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(Client CN "0254-fbsd-10-amd64", Issuer "0254-fbsd-10-amd64" (not verified))
	by mx1.freebsd.org (Postfix) with ESMTPS id 2DA2810CD
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 15 Apr 2014 09:13:44 +0000 (UTC)
Received: from poudriere.ithil.palantiri.org (localhost [127.0.0.1])
	by poudriere.ithil.palantiri.org (8.14.8/8.14.8) with ESMTP id s3F9Devb015408
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO);
	Tue, 15 Apr 2014 11:13:41 +0200 (CEST)
	(envelope-from root@poudriere.ithil.palantiri.org)
Received: (from root@localhost)
	by poudriere.ithil.palantiri.org (8.14.8/8.14.8/Submit) id s3F9DdIX015407;
	Tue, 15 Apr 2014 11:13:39 +0200 (CEST)
	(envelope-from root)
Message-Id: <201404150913.s3F9DdIX015407@poudriere.ithil.palantiri.org>
Date: Tue, 15 Apr 2014 11:13:39 +0200 (CEST)
From: Bartek Rutkowski <ports@robakdesign.com>
To: FreeBSD-gnats-submit@freebsd.org
Cc: gnb@itga.com.au
Subject: [PATCH] databases/py-sybase: stage
X-Send-Pr-Version: 3.113
X-GNATS-Notify: gnb@itga.com.au

>Number:         188646
>Category:       ports
>Synopsis:       [PATCH] databases/py-sybase: stage
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    swills
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Apr 15 09:20:00 UTC 2014
>Closed-Date:    Tue Apr 15 15:54:09 UTC 2014
>Last-Modified:  Tue Apr 15 16:00:01 UTC 2014
>Originator:     Bartek Rutkowski
>Release:        FreeBSD 11.0-CURRENT amd64
>Organization:
Pixeware LTD
>Environment:
System: FreeBSD poudriere.ithil.palantiri.org 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r264341: Fri Apr 11 15:28:07 CEST
>Description:
- Stage
- Add LICENSE
- Pet portlint

http://poudriere.ithil.palantiri.org:8080/latest-per-pkg/py27-sybase/0.37_3/

Port maintainer (gnb@itga.com.au) is cc'd.

Generated with FreeBSD Port Tools 1.00.2014.03.23 (mode: change, diff: SVN)
>How-To-Repeat:
>Fix:

--- py-sybase-0.37.patch begins here ---
Index: Makefile
===================================================================
--- Makefile	(revision 351315)
+++ Makefile	(working copy)
@@ -10,8 +10,10 @@
 DISTFILES=	${DISTNAME}${EXTRACT_SUFX} ${PORTNAME}-html${EXTRACT_SUFX}
 
 MAINTAINER=	gnb@itga.com.au
-COMMENT=	A Python Database API interface to the Sybase RDBMS
+COMMENT=	Python Database API interface to the Sybase RDBMS
 
+LICENSE=	BSD
+
 LIB_DEPENDS=	libtds.so:${PORTSDIR}/databases/freetds
 
 USE_PYTHON=	yes
@@ -20,9 +22,9 @@
 .if defined(TDS_VERSION)
 TDS_SUF="=${TDS_VERSION}"
 .else
-NO_STAGE=	yes
+
 pre-fetch:
-	@V=`${PKG_INFO} | sed -ne 's/^freetds-0.\(..\).*/\1/p'` ; \
+	@V=`${PKG_INFO} | ${SED} -ne 's/^freetds-0.\(..\).*/\1/p'` ; \
 	if [ $$V -le 60 ]; then \
 		${ECHO_MSG} "Suggest you update your FreeTDS port to at least version 0.61" ; \
 		${ECHO_MSG} "Otherwise, you will need to add TDS_VERSION=$$V to the Make command" ; \
@@ -45,9 +47,9 @@
 
 post-install:
 .if !defined(NOPORTDOCS)
-	@${MKDIR} ${EXAMPLESDIR} ${DOCSDIR}
-	@${TAR} -cf - -C ${WRKSRC}/examples . | ${TAR} -xf - -C ${EXAMPLESDIR}
-	@${TAR} -cf - -C ${WRKDIR}/${PORTNAME} . | ${TAR} -xf - -C ${DOCSDIR}
+	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${STAGEDIR}${DOCSDIR}
+	@${TAR} -cf - -C ${WRKSRC}/examples . | ${TAR} -xf - -C ${STAGEDIR}${EXAMPLESDIR}
+	@${TAR} -cf - -C ${WRKDIR}/${PORTNAME} . | ${TAR} -xf - -C ${STAGEDIR}${DOCSDIR}
 .endif
 
 .include <bsd.port.mk>
Index: pkg-descr
===================================================================
--- pkg-descr	(revision 351315)
+++ pkg-descr	(working copy)
@@ -3,4 +3,4 @@
 with extensions.
 
 Author: Dave Cole <djc@object-craft.com.au>
-WWW:    http://object-craft.com.au/projects/sybase/
+WWW: http://object-craft.com.au/projects/sybase/
--- py-sybase-0.37.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->swills 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Tue Apr 15 09:20:05 UTC 2014 
Responsible-Changed-Why:  
swills@ wants this submitter's PRs (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=188646 
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Tue Apr 15 09:20:07 UTC 2014 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

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

From: Edwin Groothuis <edwin@FreeBSD.org>
To: gnb@itga.com.au
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/188646: [PATCH] databases/py-sybase: stage
Date: Tue, 15 Apr 2014 09:20:06 UT

 Maintainer of databases/py-sybase,
 
 Please note that PR ports/188646 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/188646
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org
State-Changed-From-To: feedback->closed 
State-Changed-By: swills 
State-Changed-When: Tue Apr 15 15:54:08 UTC 2014 
State-Changed-Why:  
Committed, with minor changes. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/188646: commit references a PR
Date: Tue, 15 Apr 2014 15:54:03 +0000 (UTC)

 Author: swills
 Date: Tue Apr 15 15:53:59 2014
 New Revision: 351344
 URL: http://svnweb.freebsd.org/changeset/ports/351344
 QAT: https://qat.redports.org/buildarchive/r351344/
 
 Log:
   - Stage [1]
   - Add LICENSE [1]
   - Pet portlint [1]
   - Move freetds version check to pre-build to avoid issues when patching when freetds isn't installed
   
   PR:		ports/188646
   Submitted by:	Bartek Rutkowski <ports@robakdesign.com>
   Approved by:	portmgr@ (blanket)
 
 Modified:
   head/databases/py-sybase/Makefile
   head/databases/py-sybase/pkg-descr
 
 Modified: head/databases/py-sybase/Makefile
 ==============================================================================
 --- head/databases/py-sybase/Makefile	Tue Apr 15 15:29:47 2014	(r351343)
 +++ head/databases/py-sybase/Makefile	Tue Apr 15 15:53:59 2014	(r351344)
 @@ -3,14 +3,16 @@
  
  PORTNAME=	sybase
  PORTVERSION=	0.37
 -PORTREVISION=	3
 +PORTREVISION=	4
  CATEGORIES=	databases python
  MASTER_SITES=	http://object-craft.com.au/projects/sybase/download/
  PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
  DISTFILES=	${DISTNAME}${EXTRACT_SUFX} ${PORTNAME}-html${EXTRACT_SUFX}
  
  MAINTAINER=	gnb@itga.com.au
 -COMMENT=	A Python Database API interface to the Sybase RDBMS
 +COMMENT=	Python Database API interface to the Sybase RDBMS
 +
 +LICENSE=	BSD3CLAUSE
  
  LIB_DEPENDS=	libtds.so:${PORTSDIR}/databases/freetds
  
 @@ -20,9 +22,9 @@ USE_PYDISTUTILS=	yes
  .if defined(TDS_VERSION)
  TDS_SUF="=${TDS_VERSION}"
  .else
 -NO_STAGE=	yes
 -pre-fetch:
 -	@V=`${PKG_INFO} | sed -ne 's/^freetds-0.\(..\).*/\1/p'` ; \
 +
 +pre-build:
 +	@V=`${PKG_INFO} | ${SED} -ne 's/^freetds-0.\(..\).*/\1/p'` ; \
  	if [ $$V -le 60 ]; then \
  		${ECHO_MSG} "Suggest you update your FreeTDS port to at least version 0.61" ; \
  		${ECHO_MSG} "Otherwise, you will need to add TDS_VERSION=$$V to the Make command" ; \
 @@ -45,9 +47,9 @@ do-build:
  
  post-install:
  .if !defined(NOPORTDOCS)
 -	@${MKDIR} ${EXAMPLESDIR} ${DOCSDIR}
 -	@${TAR} -cf - -C ${WRKSRC}/examples . | ${TAR} -xf - -C ${EXAMPLESDIR}
 -	@${TAR} -cf - -C ${WRKDIR}/${PORTNAME} . | ${TAR} -xf - -C ${DOCSDIR}
 +	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${STAGEDIR}${DOCSDIR}
 +	@${TAR} -cf - -C ${WRKSRC}/examples . | ${TAR} -xf - -C ${STAGEDIR}${EXAMPLESDIR}
 +	@${TAR} -cf - -C ${WRKDIR}/${PORTNAME} . | ${TAR} -xf - -C ${STAGEDIR}${DOCSDIR}
  .endif
  
  .include <bsd.port.mk>
 
 Modified: head/databases/py-sybase/pkg-descr
 ==============================================================================
 --- head/databases/py-sybase/pkg-descr	Tue Apr 15 15:29:47 2014	(r351343)
 +++ head/databases/py-sybase/pkg-descr	Tue Apr 15 15:53:59 2014	(r351344)
 @@ -3,4 +3,4 @@ Sybase package supports all of the Pytho
  with extensions.
  
  Author: Dave Cole <djc@object-craft.com.au>
 -WWW:    http://object-craft.com.au/projects/sybase/
 +WWW: http://object-craft.com.au/projects/sybase/
 _______________________________________________
 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:
