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

(-)Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	rhodecode
4
PORTNAME=	rhodecode
5
PORTVERSION=	1.5.3
5
PORTVERSION=	1.5.4
6
CATEGORIES=	www devel python
6
CATEGORIES=	www devel 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 (RhodeCode-1.5.3.tar.gz) = 4024a28840bd9b9b2d2e47cdf225349e008745b5282e79af7a7357cb6b94330d
1
SHA256 (RhodeCode-1.5.4.tar.gz) = 3dd730f5b23093eb9cd3976476c90608aba602550be41412e0650b3bb2972eae
2
SIZE (RhodeCode-1.5.3.tar.gz) = 2569673
2
SIZE (RhodeCode-1.5.4.tar.gz) = 2572673
(-)files/patch-setup.py (-3 / +5 lines)
Lines 1-13 Link Here
1
diff --git setup.py setup.py
1
diff --git setup.py setup.py
2
index 70b6aa5..6f2c869 100644
2
index 3e48554..2ff6cd7 100644
3
--- setup.py
3
--- setup.py
4
+++ setup.py
4
+++ setup.py
5
@@ -33,23 +33,23 @@ __platform__ = platform.system()
5
@@ -33,24 +33,24 @@ __platform__ = platform.system()
6
 is_windows = __platform__ in _get_meta_var('PLATFORM_WIN', _metadata)
6
 is_windows = __platform__ in _get_meta_var('PLATFORM_WIN', _metadata)
7
 
7
 
8
 requirements = [
8
 requirements = [
9
-    "waitress==0.8.1",
9
-    "waitress==0.8.1",
10
-    "webob==1.0.8",
10
-    "webob==1.0.8",
11
-    "webtest==1.4.3",
11
-    "Pylons==1.0.0",
12
-    "Pylons==1.0.0",
12
-    "Beaker==1.6.4",
13
-    "Beaker==1.6.4",
13
-    "WebHelpers==1.3",
14
-    "WebHelpers==1.3",
Lines 16-21 Link Here
16
-    "Mako==0.7.3",
17
-    "Mako==0.7.3",
17
+    "waitress>=0.8.1",
18
+    "waitress>=0.8.1",
18
+    "webob>=1.0.8",
19
+    "webob>=1.0.8",
20
+    "webtest>=1.4.3",
19
+    "Pylons>=1.0.0",
21
+    "Pylons>=1.0.0",
20
+    "Beaker>=1.6.4",
22
+    "Beaker>=1.6.4",
21
+    "WebHelpers>=1.3",
23
+    "WebHelpers>=1.3",
Lines 40-46 Link Here
40
     "mock",
42
     "mock",
41
 ]
43
 ]
42
 
44
 
43
@@ -64,7 +64,7 @@ if is_windows:
45
@@ -65,7 +65,7 @@ if is_windows:
44
     requirements.append("mercurial==2.4.2")
46
     requirements.append("mercurial==2.4.2")
45
 else:
47
 else:
46
     requirements.append("py-bcrypt")
48
     requirements.append("py-bcrypt")

Return to bug 176854