From owner-svn-ports-head@FreeBSD.ORG Thu May 7 08:18:12 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BBF933A1; Thu, 7 May 2015 08:18:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 904C81CDA; Thu, 7 May 2015 08:18:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t478ICaa069241; Thu, 7 May 2015 08:18:12 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t478IBPe069238; Thu, 7 May 2015 08:18:11 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201505070818.t478IBPe069238@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 7 May 2015 08:18:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385599 - in head/databases/py-hiredis: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 May 2015 08:18:12 -0000 Author: olgeni Date: Thu May 7 08:18:11 2015 New Revision: 385599 URL: https://svnweb.freebsd.org/changeset/ports/385599 Log: Upgrade to 0.2.0 and fix linking with libhiredis. PR: 199997 Submitted by: olgeni Approved by: maintainer Modified: head/databases/py-hiredis/Makefile head/databases/py-hiredis/distinfo (contents, props changed) head/databases/py-hiredis/files/patch-setup.py (contents, props changed) Modified: head/databases/py-hiredis/Makefile ============================================================================== --- head/databases/py-hiredis/Makefile Thu May 7 07:41:28 2015 (r385598) +++ head/databases/py-hiredis/Makefile Thu May 7 08:18:11 2015 (r385599) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= hiredis -PORTVERSION= 0.1.2 +PORTVERSION= 0.2.0 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/databases/py-hiredis/distinfo ============================================================================== --- head/databases/py-hiredis/distinfo Thu May 7 07:41:28 2015 (r385598) +++ head/databases/py-hiredis/distinfo Thu May 7 08:18:11 2015 (r385599) @@ -1,2 +1,2 @@ -SHA256 (hiredis-0.1.2.tar.gz) = c44df954d9dcc9f57682bf8fabf172a112edf53ff35bb5ce8f8fff1b1985abb1 -SIZE (hiredis-0.1.2.tar.gz) = 36951 +SHA256 (hiredis-0.2.0.tar.gz) = ca958e13128e49674aa4a96f02746f5de5973f39b57297b84d59fd44d314d5b5 +SIZE (hiredis-0.2.0.tar.gz) = 46113 Modified: head/databases/py-hiredis/files/patch-setup.py ============================================================================== --- head/databases/py-hiredis/files/patch-setup.py Thu May 7 07:41:28 2015 (r385598) +++ head/databases/py-hiredis/files/patch-setup.py Thu May 7 08:18:11 2015 (r385599) @@ -1,16 +1,17 @@ ---- ./setup.py.orig 2014-01-06 19:08:27.000000000 +0400 -+++ ./setup.py 2014-01-07 15:36:44.000000000 +0400 -@@ -41,7 +41,8 @@ +--- setup.py.orig 2015-04-03 14:08:45 UTC ++++ setup.py +@@ -45,7 +45,9 @@ lib = ("hiredis_for_hiredis_py", { ext = Extension("hiredis.hiredis", sources=glob.glob("src/*.c"), - include_dirs=["vendor"]) + include_dirs=["%%LOCALBASE%%/include"], -+ library_dirs=["%%LOCALBASE%%/lib"],) ++ library_dirs=["%%LOCALBASE%%/lib"], ++ libraries=["hiredis"],) setup( name="hiredis", -@@ -53,7 +54,6 @@ +@@ -57,7 +59,6 @@ setup( keywords=["Redis"], license="BSD", packages=["hiredis"],