View | Details | Raw Unified | Return to bug 199997
Collapse All | Expand All

(-)Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	hiredis
4
PORTNAME=	hiredis
5
PORTVERSION=	0.1.2
5
PORTVERSION=	0.2.0
6
CATEGORIES=	databases python
6
CATEGORIES=	databases python
7
MASTER_SITES=	CHEESESHOP
7
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (hiredis-0.1.2.tar.gz) = c44df954d9dcc9f57682bf8fabf172a112edf53ff35bb5ce8f8fff1b1985abb1
1
SHA256 (hiredis-0.2.0.tar.gz) = ca958e13128e49674aa4a96f02746f5de5973f39b57297b84d59fd44d314d5b5
2
SIZE (hiredis-0.1.2.tar.gz) = 36951
2
SIZE (hiredis-0.2.0.tar.gz) = 46113
(-)files/patch-setup.py (-5 / +6 lines)
Lines 1-16 Link Here
1
--- ./setup.py.orig	2014-01-06 19:08:27.000000000 +0400
1
--- setup.py.orig	2015-04-03 14:08:45 UTC
2
+++ ./setup.py	2014-01-07 15:36:44.000000000 +0400
2
+++ setup.py
3
@@ -41,7 +41,8 @@
3
@@ -45,7 +45,9 @@ lib = ("hiredis_for_hiredis_py", {
4
 
4
 
5
 ext = Extension("hiredis.hiredis",
5
 ext = Extension("hiredis.hiredis",
6
   sources=glob.glob("src/*.c"),
6
   sources=glob.glob("src/*.c"),
7
-  include_dirs=["vendor"])
7
-  include_dirs=["vendor"])
8
+  include_dirs=["%%LOCALBASE%%/include"],
8
+  include_dirs=["%%LOCALBASE%%/include"],
9
+  library_dirs=["%%LOCALBASE%%/lib"],)
9
+  library_dirs=["%%LOCALBASE%%/lib"],
10
+  libraries=["hiredis"],)
10
 
11
 
11
 setup(
12
 setup(
12
   name="hiredis",
13
   name="hiredis",
13
@@ -53,7 +54,6 @@
14
@@ -57,7 +59,6 @@ setup(
14
   keywords=["Redis"],
15
   keywords=["Redis"],
15
   license="BSD",
16
   license="BSD",
16
   packages=["hiredis"],
17
   packages=["hiredis"],

Return to bug 199997