From ddliu@readonline.info  Fri Dec 15 14:11:36 2006
Return-Path: <ddliu@readonline.info>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id AE90016A510
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 15 Dec 2006 14:11:36 +0000 (UTC)
	(envelope-from ddliu@readonline.info)
Received: from readonline.info (readonline.info [221.0.230.72])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 273FC43CB2
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 15 Dec 2006 14:09:49 +0000 (GMT)
	(envelope-from ddliu@readonline.info)
Received: from [127.0.0.1] (helo=readonline.info)
	by readonline.info with esmtps (TLSv1:AES256-SHA:256)
	(Exim 4.63 (FreeBSD))
	(envelope-from <ddliu@readonline.info>)
	id 1GvDma-00063J-DN
	for FreeBSD-gnats-submit@freebsd.org; Fri, 15 Dec 2006 22:11:28 +0800
Received: (from ddliu@localhost)
	by readonline.info (8.13.4/8.13.4/Submit) id kBFEAuNS023268;
	Fri, 15 Dec 2006 22:10:56 +0800 (CST)
	(envelope-from ddliu)
Message-Id: <200612151410.kBFEAuNS023268@readonline.info>
Date: Fri, 15 Dec 2006 22:10:56 +0800 (CST)
From: Dryice Liu <dryice@dryice.name>
Reply-To: Dryice Liu <dryice@dryice.name>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [maintainer] databases/py-sqlalchemy: update to 0.3.3
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         106778
>Category:       ports
>Synopsis:       [maintainer] databases/py-sqlalchemy: update to 0.3.3
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    alexbl
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Fri Dec 15 14:20:06 GMT 2006
>Closed-Date:    Sun Dec 17 09:49:58 GMT 2006
>Last-Modified:  Sun Dec 17 09:50:24 GMT 2006
>Originator:     Dryice Liu
>Release:        FreeBSD 6.0-STABLE i386
>Organization:
>Environment:
System: FreeBSD dryice.3322.org 6.0-STABLE FreeBSD 6.0-STABLE #0: Thu Dec 1 15:59:44 CST 2005


	
>Description:

	- update to 0.3.3

	- add PKGNAMEPREFIX

>How-To-Repeat:
	
>Fix:

	

--- attached file begins here ---
diff -ruN py-sqlalchemy.old/Makefile py-sqlalchemy/Makefile
--- py-sqlalchemy.old/Makefile	Tue Nov 28 14:19:05 2006
+++ py-sqlalchemy/Makefile	Fri Dec 15 22:07:15 2006
@@ -6,12 +6,13 @@
 #
 
 PORTNAME=	sqlalchemy
-PORTVERSION=	0.3.1
+PORTVERSION=	0.3.3
 CATEGORIES=	databases python
 MASTER_SITES=	${MASTER_SITE_SOURCEFORGE} \
 		http://cheeseshop.python.org/packages/source/S/SQLAlchemy/ \
 		http://dryice.name/computer/FreeBSD/distfiles/
 MASTER_SITE_SUBDIR=	sqlalchemy
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 DISTNAME=	SQLAlchemy-${PORTVERSION}
 
 MAINTAINER=	dryice@dryice.name
@@ -35,12 +36,15 @@
 PORTDOCS=	adv_datamapping.html alphaapi.html \
 		alphaimplementation.html datamapping.html \
 		dbengine.html docs.css docstrings.html \
-		index.html metadata.html \
+		documentation.html index.html metadata.html \
 		plugins.html pooling.html scripts.js \
 		sqlconstruction.html style.css syntaxhighlight.css \
 		tutorial.html types.html unitofwork.html
 .endif
 
+PORTEXAMPLES= adjacencytree association backref collections graphs \
+		pickle polymorph vertical
+
 .include <bsd.port.pre.mk>
 
 .if defined(WITH_FIREBIRD)
@@ -72,7 +76,7 @@
 .endif
 
 	${MKDIR} ${EXAMPLESDIR}
-.for i in adjacencytree backref polymorph vertical
+.for i in ${PORTEXAMPLES}
 	${CP} -r ${WRKSRC}/examples/${i} ${EXAMPLESDIR}
 .endfor
 
diff -ruN py-sqlalchemy.old/distinfo py-sqlalchemy/distinfo
--- py-sqlalchemy.old/distinfo	Tue Nov 28 14:19:05 2006
+++ py-sqlalchemy/distinfo	Fri Dec 15 21:51:58 2006
@@ -1,3 +1,3 @@
-MD5 (SQLAlchemy-0.3.1.tar.gz) = cb5e17096ed50389687c62bad8c5a67a
-SHA256 (SQLAlchemy-0.3.1.tar.gz) = ddf34423d55233fcf39005bf10767dcf7aa8021039289615aa9e80419ccff93e
-SIZE (SQLAlchemy-0.3.1.tar.gz) = 585351
+MD5 (SQLAlchemy-0.3.3.tar.gz) = 1336d87f659944f131f7f2c340e81e02
+SHA256 (SQLAlchemy-0.3.3.tar.gz) = fd425065ba70ce199508c3bde9cf7198dd84dd72980ca36a05a24bcbdd095c15
+SIZE (SQLAlchemy-0.3.3.tar.gz) = 737019
diff -ruN py-sqlalchemy.old/pkg-plist py-sqlalchemy/pkg-plist
--- py-sqlalchemy.old/pkg-plist	Sat Aug 12 22:07:01 2006
+++ py-sqlalchemy/pkg-plist	Fri Dec 15 22:04:51 2006
@@ -1,13 +1,22 @@
 %%PYTHON_SITELIBDIR%%/SQLAlchemy-%%PORTVERSION%%-py%%PYTHONVERSION%%.egg
 %%EXAMPLEDIR%%/adjacencytree/basic_tree.py
 %%EXAMPLEDIR%%/adjacencytree/byroot_tree.py
+%%EXAMPLEDIR%%/association/basic_association.py
+%%EXAMPLEDIR%%/association/proxied_association.py
 %%EXAMPLEDIR%%/backref/backref_tree.py
+%%EXAMPLEDIR%%/collections/large_collection.py
+%%EXAMPLEDIR%%/graphs/graph1.py
+%%EXAMPLEDIR%%/pickle/custom_pickler.py
 %%EXAMPLEDIR%%/polymorph/concrete.py
 %%EXAMPLEDIR%%/polymorph/polymorph.py
 %%EXAMPLEDIR%%/polymorph/single.py
 %%EXAMPLEDIR%%/vertical/vertical.py
 @dirrm %%EXAMPLEDIR%%/adjacencytree
+@dirrm %%EXAMPLEDIR%%/association
 @dirrm %%EXAMPLEDIR%%/backref
+@dirrm %%EXAMPLEDIR%%/collections
+@dirrm %%EXAMPLEDIR%%/graphs
+@dirrm %%EXAMPLEDIR%%/pickle
 @dirrm %%EXAMPLEDIR%%/polymorph
 @dirrm %%EXAMPLEDIR%%/vertical
 @dirrm %%EXAMPLEDIR%%
--- attached file ends here ---


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Fri Dec 15 14:20:29 UTC 2006 
Responsible-Changed-Why:  
freebsd-python@ wants to have py- PRs 

http://www.freebsd.org/cgi/query-pr.cgi?pr=106778 
Responsible-Changed-From-To: freebsd-python->miwi 
Responsible-Changed-By: miwi 
Responsible-Changed-When: Fri Dec 15 15:13:29 UTC 2006 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=106778 
Responsible-Changed-From-To: miwi->alexbl 
Responsible-Changed-By: alexbl 
Responsible-Changed-When: Fri Dec 15 18:12:06 UTC 2006 
Responsible-Changed-Why:  
I will take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=106778 
State-Changed-From-To: open->closed 
State-Changed-By: alexbl 
State-Changed-When: Sun Dec 17 09:49:55 UTC 2006 
State-Changed-Why:  
Committed, thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/106778: commit references a PR
Date: Sun, 17 Dec 2006 09:50:00 +0000 (UTC)

 alexbl      2006-12-17 09:49:46 UTC
 
   FreeBSD ports repository
 
   Modified files:
     databases/py-sqlalchemy Makefile distinfo pkg-plist 
   Log:
    - Update to 0.3.3
   
   PR:             106778
   Submitted by:   Dryice Liu <dryice@dryice.name> (maintainer)
   
   Revision  Changes    Path
   1.6       +7 -3      ports/databases/py-sqlalchemy/Makefile
   1.6       +3 -3      ports/databases/py-sqlalchemy/distinfo
   1.2       +9 -0      ports/databases/py-sqlalchemy/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:
