From owner-freebsd-python@FreeBSD.ORG Wed Dec 19 21:00:01 2012 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DA97992A for ; Wed, 19 Dec 2012 21:00: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 A62E28FC0C for ; Wed, 19 Dec 2012 21:00: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 qBJL01al007103 for ; Wed, 19 Dec 2012 21:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id qBJL01LG007102; Wed, 19 Dec 2012 21:00:01 GMT (envelope-from gnats) Date: Wed, 19 Dec 2012 21:00:01 GMT Message-Id: <201212192100.qBJL01LG007102@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: Subject: Re: ports/174318: New port: dns/py-idnkit2 update from 2.1 to 2.2 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: fbsd@grid.einherjar.de List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Dec 2012 21:00:01 -0000 The following reply was made to PR ports/174318; it has been noted by GNATS. From: To: bug-followup@freebsd.org Cc: Subject: Re: ports/174318: New port: dns/py-idnkit2 update from 2.1 to 2.2 Date: Wed, 19 Dec 2012 21:53:03 +0100 --=-=-= Content-Type: text/plain Hi, it is an update not new port, sorry for that! --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=py-idnkit2.2.patch diff -urN py-idnkit2_old/Makefile py-idnkit2/Makefile --- py-idnkit2_old/Makefile 2012-11-17 06:57:10.000000000 +0100 +++ py-idnkit2/Makefile 2012-12-19 21:42:28.000000000 +0100 @@ -5,7 +5,7 @@ # $FreeBSD: ports/dns/py-idnkit2/Makefile,v 1.3 2012/11/17 05:57:10 svnexp Exp $ PORTNAME= idnkit-python -PORTVERSION= 2.1 +PORTVERSION= 2.2 CATEGORIES= dns MASTER_SITES= http://jprs.co.jp/idn/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,6 +13,7 @@ MAINTAINER= fbsd@grid.einherjar.de COMMENT= Python bindings for Internationalized Domain Name toolkit 2 +BUILD_DEPENDS= idnkit2>=2.2:${PORTSDIR}/dns/idnkit2 LIB_DEPENDS= idnkitlite.2:${PORTSDIR}/dns/idnkit2 USE_BZIP2= yes diff -urN py-idnkit2_old/distinfo py-idnkit2/distinfo --- py-idnkit2_old/distinfo 2011-11-24 15:16:46.000000000 +0100 +++ py-idnkit2/distinfo 2012-12-19 21:42:28.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (idnkit-python-2.1.tar.bz2) = c53bbf220baaeb7e7a94a249a04b65f9a850858651f91b2515c8cfb2b72a5aed -SIZE (idnkit-python-2.1.tar.bz2) = 31129 +SHA256 (idnkit-python-2.2.tar.bz2) = a5851831386f24374c7b18eae886f95a21d28bc9439dc3779676d7b2dd8a9909 +SIZE (idnkit-python-2.2.tar.bz2) = 31331 diff -urN py-idnkit2_old/files/patch-setup.py py-idnkit2/files/patch-setup.py --- py-idnkit2_old/files/patch-setup.py 2011-11-24 15:16:47.000000000 +0100 +++ py-idnkit2/files/patch-setup.py 2012-12-19 21:42:28.000000000 +0100 @@ -1,5 +1,5 @@ ---- setup.py.orgi 2011-11-24 22:05:06.191148712 +0000 -+++ setup.py 2011-11-24 22:05:37.913149693 +0000 +--- setup.py.orgi 2012-12-10 07:42:52.000000000 +0100 ++++ setup.py 2012-12-10 07:43:05.000000000 +0100 @@ -4,10 +4,10 @@ import glob @@ -12,4 +12,4 @@ +idnkit_library_dir = '%%LOCALBASE%%/lib' setup(name='idnkit-python', - version='2.1', + version='2.2', --=-=-=--