From nobody@FreeBSD.org  Wed Dec 12 13:20:39 2012
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 62E97908
	for <freebsd-gnats-submit@FreeBSD.org>; Wed, 12 Dec 2012 13:20:39 +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 313028FC08
	for <freebsd-gnats-submit@FreeBSD.org>; Wed, 12 Dec 2012 13:20:39 +0000 (UTC)
Received: from red.freebsd.org (localhost [127.0.0.1])
	by red.freebsd.org (8.14.5/8.14.5) with ESMTP id qBCDKcaa094732
	for <freebsd-gnats-submit@FreeBSD.org>; Wed, 12 Dec 2012 13:20:38 GMT
	(envelope-from nobody@red.freebsd.org)
Received: (from nobody@localhost)
	by red.freebsd.org (8.14.5/8.14.5/Submit) id qBCDKcqQ094731;
	Wed, 12 Dec 2012 13:20:38 GMT
	(envelope-from nobody)
Message-Id: <201212121320.qBCDKcqQ094731@red.freebsd.org>
Date: Wed, 12 Dec 2012 13:20:38 GMT
From: Markus Golser <markus@weihergut.it>
To: freebsd-gnats-submit@FreeBSD.org
Subject: py27-exiv2 is outdated need updating.
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         174394
>Category:       ports
>Synopsis:       graphics/py-exiv2 is outdated need updating.
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-multimedia
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Dec 12 13:30:00 UTC 2012
>Closed-Date:    Wed Dec 26 09:17:35 UTC 2012
>Last-Modified:  Wed Dec 26 09:20:01 UTC 2012
>Originator:     Markus Golser
>Release:        Freensd 9.1
>Organization:
>Environment:
>Description:
The latest version in ports is py-exiv2 0.3.0_1
This version does *not* support utf8 filenames.

Please update to 0.3.2 this version has somebugfixes and does support utf8 filenames.
>How-To-Repeat:

>Fix:


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs 
Responsible-Changed-By: linimon 
Responsible-Changed-When: Wed Dec 12 13:40:00 UTC 2012 
Responsible-Changed-Why:  
ports PR. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=174394 
Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Wed Dec 12 13:40:30 UTC 2012 
Responsible-Changed-Why:  
Over to maintainer (via the GNATS Auto Assign Tool) 

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

From: Ruslan Makhmatkhanov <cvs-src@yandex.ru>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/174394: graphics/py-exiv2 is outdated need updating.
Date: Tue, 18 Dec 2012 15:14:27 +0400

 This is a multi-part message in MIME format.
 --------------080605060504070608050709
 Content-Type: text/plain; charset=ISO-8859-1; format=flowed
 Content-Transfer-Encoding: 7bit
 
 
 Here is the patch. Log:
 - update to 0.3.2
 - trim Makefile header
 - remove shlib versions from LIB_DEPENDS (portlint warning)
 - limit python version to 2.x only
 - add tests
 
 -- 
 Regards,
 Ruslan
 
 Tinderboxing kills... the drives.
 
 --------------080605060504070608050709
 Content-Type: text/plain; charset=UTF-8;
  name="exiv2.diff.txt"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: attachment;
  filename="exiv2.diff.txt"
 
 Index: Makefile
 ===================================================================
 --- Makefile	(revision 309160)
 +++ Makefile	(working copy)
 @@ -1,26 +1,20 @@
 -# New ports collection makefile for:	py-exiv2
 -# Date created:		2008-06-01
 -# Whom:			Denis Barov <dindin@dindin.ru>
 -#
 +# Created by: Denis Barov <dindin@dindin.ru>
  # $FreeBSD$
 -#
  
  PORTNAME=	exiv2
 -PORTVERSION=	0.3.0
 -PORTREVISION=	1
 +PORTVERSION=	0.3.2
  CATEGORIES=	graphics python
 -MASTER_SITES=	http://launchpadlibrarian.net/61465005/ \
 -		http://www.dindin.ru/download/
 +MASTER_SITES=	https://launchpadlibrarian.net/83595798/
  PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
  DISTNAME=	py${PORTNAME}-${PORTVERSION}
  
  MAINTAINER=	multimedia@FreeBSD.org
  COMMENT=	Python bindings for exiv2
  
 -LIB_DEPENDS=	exiv2.12:${PORTSDIR}/graphics/exiv2\
 -		boost_python.4:${PORTSDIR}/devel/boost-python-libs
 +LIB_DEPENDS=	exiv2:${PORTSDIR}/graphics/exiv2\
 +		boost_python:${PORTSDIR}/devel/boost-python-libs
  
 -USE_PYTHON=	yes
 +USE_PYTHON=	-2.7
  USE_GMAKE=	yes
  USE_BZIP2=	yes
  USE_SCONS=	yes
 @@ -40,4 +34,7 @@
  	${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \
  		${PYTHON_SITELIBDIR}/pyexiv2
  
 +regression-test: build
 +	@cd ${WRKSRC} && ${SCONS_BIN} test
 +
  .include <bsd.port.mk>
 Index: distinfo
 ===================================================================
 --- distinfo	(revision 309160)
 +++ distinfo	(working copy)
 @@ -1,2 +1,2 @@
 -SHA256 (pyexiv2-0.3.0.tar.bz2) = e96549feab366de85070aa2f8cedcc4d0017d53b78faea5067c60425c117f9f8
 -SIZE (pyexiv2-0.3.0.tar.bz2) = 202714
 +SHA256 (pyexiv2-0.3.2.tar.bz2) = 0abc117c6afa71f54266cb91979a5227f60361db1fcfdb68ae9615398d7a2127
 +SIZE (pyexiv2-0.3.2.tar.bz2) = 283163
 
 --------------080605060504070608050709--
State-Changed-From-To: open->closed 
State-Changed-By: rm 
State-Changed-When: Wed Dec 26 09:17:34 UTC 2012 
State-Changed-Why:  
Committed, thank you! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/174394: commit references a PR
Date: Wed, 26 Dec 2012 09:16:07 +0000 (UTC)

 Author: rm
 Date: Wed Dec 26 09:15:45 2012
 New Revision: 309504
 URL: http://svnweb.freebsd.org/changeset/ports/309504
 
 Log:
   - update to 0.3.2
   - trim Makefile header
   - remove shlib versions from LIB_DEPENDS (portlint warning)
   - limit python version to 2.x only
   - add tests
   
   PR:		174394
   Reported by:	Markus Golser <markus@weihergut.it>
   Approved by:	maintainer timeout (2 weeks)
 
 Modified:
   head/graphics/py-exiv2/Makefile
   head/graphics/py-exiv2/distinfo
 
 Modified: head/graphics/py-exiv2/Makefile
 ==============================================================================
 --- head/graphics/py-exiv2/Makefile	Wed Dec 26 09:13:23 2012	(r309503)
 +++ head/graphics/py-exiv2/Makefile	Wed Dec 26 09:15:45 2012	(r309504)
 @@ -1,26 +1,20 @@
 -# New ports collection makefile for:	py-exiv2
 -# Date created:		2008-06-01
 -# Whom:			Denis Barov <dindin@dindin.ru>
 -#
 +# Created by: Denis Barov <dindin@dindin.ru>
  # $FreeBSD$
 -#
  
  PORTNAME=	exiv2
 -PORTVERSION=	0.3.0
 -PORTREVISION=	1
 +PORTVERSION=	0.3.2
  CATEGORIES=	graphics python
 -MASTER_SITES=	http://launchpadlibrarian.net/61465005/ \
 -		http://www.dindin.ru/download/
 +MASTER_SITES=	https://launchpadlibrarian.net/83595798/
  PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
  DISTNAME=	py${PORTNAME}-${PORTVERSION}
  
  MAINTAINER=	multimedia@FreeBSD.org
  COMMENT=	Python bindings for exiv2
  
 -LIB_DEPENDS=	exiv2.12:${PORTSDIR}/graphics/exiv2\
 -		boost_python.4:${PORTSDIR}/devel/boost-python-libs
 +LIB_DEPENDS=	exiv2:${PORTSDIR}/graphics/exiv2\
 +		boost_python:${PORTSDIR}/devel/boost-python-libs
  
 -USE_PYTHON=	yes
 +USE_PYTHON=	-2.7
  USE_GMAKE=	yes
  USE_BZIP2=	yes
  USE_SCONS=	yes
 @@ -40,4 +34,7 @@ post-install:
  	${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \
  		${PYTHON_SITELIBDIR}/pyexiv2
  
 +regression-test: build
 +	@cd ${WRKSRC} && ${SCONS_BIN} test
 +
  .include <bsd.port.mk>
 
 Modified: head/graphics/py-exiv2/distinfo
 ==============================================================================
 --- head/graphics/py-exiv2/distinfo	Wed Dec 26 09:13:23 2012	(r309503)
 +++ head/graphics/py-exiv2/distinfo	Wed Dec 26 09:15:45 2012	(r309504)
 @@ -1,2 +1,2 @@
 -SHA256 (pyexiv2-0.3.0.tar.bz2) = e96549feab366de85070aa2f8cedcc4d0017d53b78faea5067c60425c117f9f8
 -SIZE (pyexiv2-0.3.0.tar.bz2) = 202714
 +SHA256 (pyexiv2-0.3.2.tar.bz2) = 0abc117c6afa71f54266cb91979a5227f60361db1fcfdb68ae9615398d7a2127
 +SIZE (pyexiv2-0.3.2.tar.bz2) = 283163
 _______________________________________________
 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:
