From fmysh@quad.dyndns.org  Thu Oct 19 16:26:32 2006
Return-Path: <fmysh@quad.dyndns.org>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 7EBD116A47E
	for <FreeBSD-gnats-submit@freebsd.org>; Thu, 19 Oct 2006 16:26:32 +0000 (UTC)
	(envelope-from fmysh@quad.dyndns.org)
Received: from xeon.quad.dyndns.org (228.142.138.210.bn.2iij.net [210.138.142.228])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 8A31843D78
	for <FreeBSD-gnats-submit@freebsd.org>; Thu, 19 Oct 2006 16:26:16 +0000 (GMT)
	(envelope-from fmysh@quad.dyndns.org)
Received: from localhost (localhost [127.0.0.1])
	by xeon.quad.dyndns.org (Postfix) with ESMTP id 1211315344C;
	Fri, 20 Oct 2006 01:26:15 +0900 (JST)
Received: from xeon.quad.dyndns.org ([127.0.0.1])
	by localhost (xeon.quad.dyndns.org [127.0.0.1]) (amavisd-new, port 10024)
	with LMTP id xOdSefyd25LR; Fri, 20 Oct 2006 01:26:01 +0900 (JST)
Received: by xeon.quad.dyndns.org (Postfix, from userid 1001)
	id 8CD86153584; Fri, 20 Oct 2006 00:33:11 +0900 (JST)
Message-Id: <20061019153311.8CD86153584@xeon.quad.dyndns.org>
Date: Fri, 20 Oct 2006 00:33:11 +0900 (JST)
From: TAOKA Fumiyoshi <fmysh@iijmio-mail.jp>
Reply-To: TAOKA Fumiyoshi <fmysh@iijmio-mail.jp>
To: FreeBSD-gnats-submit@freebsd.org
Cc: TAOKA Fumiyoshi <fmysh@iijmio-mail.jp>
Subject: Update port: www/plone to 2.1.4
X-Send-Pr-Version: 3.113
X-GNATS-Notify: filippo.natali@gmail.com

>Number:         104576
>Category:       ports
>Synopsis:       Update port: www/plone to 2.1.4
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    miwi
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Oct 19 16:30:17 GMT 2006
>Closed-Date:    Sun Nov 05 20:15:55 GMT 2006
>Last-Modified:  Sun Nov  5 20:20:22 GMT 2006
>Originator:     TAOKA Fumiyoshi
>Release:        
>Organization:
>Environment:
>Description:

[1] Update to Plone 2.1.4. 

    http://plone.org/products/plone/releases/2.1.4 said:
	Fourth maintenance release in the Plone 2.1 series.
	This features a number of important security and bug
	fixes, and is a required upgrade for Plone 2.1 users.

[2] Add a dependency on py-imaging, which is now required by
    Plone 2.1.4.

[3] Keep hotfix things in Makefile for the future.
	
>How-To-Repeat:
>Fix:

Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/www/plone/Makefile,v
retrieving revision 1.20
diff -u -r1.20 Makefile
--- Makefile	10 May 2006 18:50:33 -0000	1.20
+++ Makefile	19 Oct 2006 15:22:18 -0000
@@ -6,21 +6,23 @@
 #
 
 PORTNAME=	plone
-PORTVERSION=	2.1.2
-PORTREVISION=	1
+PORTVERSION=	2.1.4
 CATEGORIES=	www zope
-MASTER_SITES=	${MASTER_SITE_SOURCEFORGE:S/$/plone\/:src/g} \
-		http://plone.org/products/plonehotfix20060410/releases/1.0/:hotfix
-DISTFILES=	Plone-${PORTVERSION}.tar.gz:src ${HOTFIX}.tar.gz:hotfix
+MASTER_SITES=	${MASTER_SITE_SOURCEFORGE:S/$/plone\/:src/g}
+DISTFILES=	Plone-${PORTVERSION}.tar.gz:src
 DIST_SUBDIR=	zope
+#HOTFIX=		PloneHotfix20060410
+#MASTER_SITES+=	http://plone.org/products/plonehotfix20060410/releases/1.0/:hotfix
+#DISTFILES+=	${HOTFIX}.tar.gz:hotfix
 
 MAINTAINER=	filippo.natali@gmail.com
 COMMENT=	A user friendly implementation of the CMF written on top of ZOPE
 
+RUN_DEPENDS=	${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging
+
 WRKSRC=	${WRKDIR}/Plone-${PORTVERSION}
 USE_ZOPE=	yes
 USE_PYTHON=	yes
-HOTFIX=	PloneHotfix20060410
 PLIST=	${WRKDIR}/pkg-plist
 
 CONFLICTS=	zope-archetypes-[0-9]* \
@@ -63,7 +65,9 @@
 .for m in ${_MODULES}
 	-${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/$m
 .endfor
+.if defined(HOTFIX)
 	-${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKDIR}/${HOTFIX}
+.endif
 
 pre-install:
 	@${RM} -f ${PLIST}
@@ -77,6 +81,7 @@
 			${ECHO_CMD} @dirrm %%ZOPEBASEDIR%%/Products/$${i} >> ${PLIST}; \
 		done; \
 	done
+.if defined(HOTFIX)
 	@cd ${WRKDIR}; \
 	for i in `${FIND} ${HOTFIX} -type f`; do \
 		${ECHO_CMD} %%ZOPEBASEDIR%%/Products/$${i} >> ${PLIST}; \
@@ -84,6 +89,7 @@
 	for i in `${FIND} -d ${HOTFIX} -type d`; do \
 		${ECHO_CMD} @dirrm %%ZOPEBASEDIR%%/Products/$${i} >> ${PLIST}; \
 	done
+.endif
 
 do-install:
 	@${MKDIR} ${ZOPEBASEDIR}/${ZOPEPRODUCTDIR}
@@ -92,9 +98,11 @@
 	@${FIND} ${ZOPEBASEDIR}/${ZOPEPRODUCTDIR}/$m -type f -print0 \
 		| ${XARGS} -0 -- ${CHMOD} a-w
 .endfor
+.if defined(HOTFIX)
 	@${CP} -R ${WRKDIR}/${HOTFIX} ${ZOPEBASEDIR}/${ZOPEPRODUCTDIR}
 	@${FIND} ${ZOPEBASEDIR}/${ZOPEPRODUCTDIR}/${HOTFIX} -type f -print0 \
 		| ${XARGS} -0 -- ${CHMOD} a-w
+.endif
 
 post-install:
 .if !defined(BATCH)
Index: distinfo
===================================================================
RCS file: /home/ncvs/ports/www/plone/distinfo,v
retrieving revision 1.11
diff -u -r1.11 distinfo
--- distinfo	18 Apr 2006 13:48:23 -0000	1.11
+++ distinfo	19 Oct 2006 15:06:44 -0000
@@ -1,6 +1,3 @@
-MD5 (zope/Plone-2.1.2.tar.gz) = 863311e29550f9b4bf6c2502fdbed1fa
-SHA256 (zope/Plone-2.1.2.tar.gz) = e9c0b53d887b53310daab656ef83b0abecdde39b679806a0f04f3cda222fbac2
-SIZE (zope/Plone-2.1.2.tar.gz) = 7126486
-MD5 (zope/PloneHotfix20060410.tar.gz) = fecdb36acae4751f6a8975c2068247c3
-SHA256 (zope/PloneHotfix20060410.tar.gz) = f1d86b78c39392d4b9e81f9a3e854cccdcc1bcd8bf51fb6468cc1c8c9a4d30f1
-SIZE (zope/PloneHotfix20060410.tar.gz) = 2972
+MD5 (zope/Plone-2.1.4.tar.gz) = 0b938c37102137daa086b51f140e4322
+SHA256 (zope/Plone-2.1.4.tar.gz) = 9409dc2d6fe13eb05aa991420173e2be632eb5862f98312e7449efe74dec9764
+SIZE (zope/Plone-2.1.4.tar.gz) = 7549024
>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Thu Oct 19 16:33:14 UTC 2006 
State-Changed-Why:  
Awaiting maintainers feedback 

http://www.freebsd.org/cgi/query-pr.cgi?pr=104576 
Responsible-Changed-From-To: freebsd-ports-bugs->miwi 
Responsible-Changed-By: miwi 
Responsible-Changed-When: Thu Oct 19 16:44:57 UTC 2006 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=104576 
State-Changed-From-To: feedback->closed 
State-Changed-By: miwi 
State-Changed-When: Sun Nov 5 20:15:53 UTC 2006 
State-Changed-Why:  
Committed. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/104576: commit references a PR
Date: Sun,  5 Nov 2006 20:15:59 +0000 (UTC)

 miwi        2006-11-05 20:15:31 UTC
 
   FreeBSD ports repository
 
   Modified files:
     www/plone            Makefile distinfo 
   Log:
   - Update to 2.1.4
   
   PR:             ports/104576
   Submitted by:   TAOKA Fumiyoshi <fmysh@iijmio-mail.jp>
   Approved by:    maintainer (timeout)
   Security:       http://www.vuxml.org/freebsd/b6c18956-5fa3-11db-ad2d-0016179b2dd5.html
   Sponsored by:   FreeBSD Bug-a-thon #2
   
   Revision  Changes    Path
   1.21      +5 -17     ports/www/plone/Makefile
   1.12      +3 -6      ports/www/plone/distinfo
 _______________________________________________
 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:
