From owner-freebsd-multimedia@FreeBSD.ORG Tue Dec 18 11:20:01 2012 Return-Path: Delivered-To: freebsd-multimedia@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B1F031B0 for ; Tue, 18 Dec 2012 11:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 74F818FC0C for ; Tue, 18 Dec 2012 11:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id qBIBK1vK010376 for ; Tue, 18 Dec 2012 11:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id qBIBK1Lb010375; Tue, 18 Dec 2012 11:20:01 GMT (envelope-from gnats) Date: Tue, 18 Dec 2012 11:20:01 GMT Message-Id: <201212181120.qBIBK1Lb010375@freefall.freebsd.org> To: freebsd-multimedia@FreeBSD.org Cc: From: Ruslan Makhmatkhanov Subject: Re: ports/174394: graphics/py-exiv2 is outdated need updating. X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Ruslan Makhmatkhanov List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Dec 2012 11:20:01 -0000 The following reply was made to PR ports/174394; it has been noted by GNATS. From: Ruslan Makhmatkhanov 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 -# +# Created by: Denis Barov # $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 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--